From: Rasmus Villemoes <linux@rasmusvillemoes.dk>
To: Jessica Yu <jeyu@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
Kees Cook <keescook@chromium.org>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH v4] sscanf: implement basic character sets
Date: Thu, 03 Mar 2016 00:49:53 +0100 [thread overview]
Message-ID: <87r3fs4ezi.fsf@rasmusvillemoes.dk> (raw)
In-Reply-To: <1456518059-7472-1-git-send-email-jeyu@redhat.com> (Jessica Yu's message of "Fri, 26 Feb 2016 15:20:59 -0500")
On Fri, Feb 26 2016, Jessica Yu <jeyu@redhat.com> wrote:
> @@ -2714,6 +2718,57 @@ int vsscanf(const char *buf, const char *fmt, va_list args)
> num++;
> }
> continue;
> + /*
> + * Warning: This implementation of the '[' conversion specifier
> + * deviates from its glibc counterpart in the following ways:
> + * (1) It does NOT support ranges i.e. '-' is NOT a special character
> + * (2) It cannot match the closing bracket ']' itself
> + * (3) A field width is required
> + * (4) '%*[' (discard matching input) is currently not supported
> + *
> + * Example usage:
> + * ret = sscanf("00:0a:95","%2[^:]:%2[^:]:%2[^:]", buf1, buf2, buf3);
> + * if (ret < 3)
> + * // etc..
> + */
> + case '[':
> + {
> + char *s = (char *)va_arg(args, char *);
> + DECLARE_BITMAP(set, 256) = {0};
> + unsigned int len = 0;
> + bool negate = (*fmt == '^');
> +
> + /* field width is required */
> + if (field_width == -1)
> + return num;
> +
> + if (negate)
> + ++fmt;
> +
> + for ( ; *fmt && *fmt != ']'; ++fmt, ++len)
> + set_bit((u8)*fmt, set);
> +
> + /* no ']' or no character set found */
> + if (!*fmt || !len)
> + return num;
> + ++fmt;
> +
I think it might be useful to be able to do [^] to match any sequence of
characters. If the user passed [] the code below won't match anything,
so we'll return num anyway. In other words, I'd just omit the test for
empty character set. Other than that, LGTM.
Rasmus
next prev parent reply other threads:[~2016-03-02 23:50 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-26 20:20 Jessica Yu
2016-02-26 20:28 ` Jessica Yu
2016-03-07 23:12 ` Jessica Yu
2016-03-07 23:24 ` Andrew Morton
2016-03-07 23:32 ` Rasmus Villemoes
2016-03-08 1:07 ` Jessica Yu
2016-03-02 23:49 ` Rasmus Villemoes [this message]
2016-03-07 23:09 ` Jessica Yu
2016-04-05 14:32 [PATCH v4] " Shahbaz Youssefi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87r3fs4ezi.fsf@rasmusvillemoes.dk \
--to=linux@rasmusvillemoes.dk \
--cc=akpm@linux-foundation.org \
--cc=andriy.shevchenko@linux.intel.com \
--cc=jeyu@redhat.com \
--cc=keescook@chromium.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®