From: Mikulas Patocka <mpatocka@redhat.com>
To: Ming-Hung Tsai <mingnus@gmail.com>
Cc: Dipendra Khadka <kdipendra88@gmail.com>,
agk@redhat.com, snitzer@kernel.org, dm-devel@lists.linux.dev,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Return error code for failure input for sscanf in parse_cblock_range()
Date: Mon, 23 Sep 2024 17:09:53 +0200 (CEST) [thread overview]
Message-ID: <87139a89-4256-fceb-5ca2-c1077b036eef@redhat.com> (raw)
In-Reply-To: <CAAYit8TfBD40aRchLiOWsvqwpAR0x6nW9zObza4vLVzg93N+eA@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2080 bytes --]
On Mon, 23 Sep 2024, Ming-Hung Tsai wrote:
> On Mon, Sep 23, 2024 at 12:47 AM Dipendra Khadka <kdipendra88@gmail.com> wrote:
> >
> > Smatch reported following:
> > '''
> > drivers/md/dm-cache-target.c:3204 parse_cblock_range() warn: sscanf doesn't return error codes
> > drivers/md/dm-cache-target.c:3217 parse_cblock_range() warn: sscanf doesn't return error codes
> > '''
> >
> > Since, the only negative value that is returned by sscanf is -1.
> > Returning -ENVAL when sscanf returns -1.
> >
> > Signed-off-by: Dipendra Khadka <kdipendra88@gmail.com>
> > ---
> > drivers/md/dm-cache-target.c | 8 ++++----
> > 1 file changed, 4 insertions(+), 4 deletions(-)
> >
> > diff --git a/drivers/md/dm-cache-target.c b/drivers/md/dm-cache-target.c
> > index 17f0fab1e254..c35d65e310d6 100644
> > --- a/drivers/md/dm-cache-target.c
> > +++ b/drivers/md/dm-cache-target.c
> > @@ -3200,8 +3200,8 @@ static int parse_cblock_range(struct cache *cache, const char *str,
> > * Try and parse form (ii) first.
> > */
> > r = sscanf(str, "%llu-%llu%c", &b, &e, &dummy);
> > - if (r < 0)
> > - return r;
> > + if (r == -1)
> > + return -EINVAL;
> >
> > if (r == 2) {
> > result->begin = to_cblock(b);
> > @@ -3213,8 +3213,8 @@ static int parse_cblock_range(struct cache *cache, const char *str,
> > * That didn't work, try form (i).
> > */
> > r = sscanf(str, "%llu%c", &b, &dummy);
> > - if (r < 0)
> > - return r;
> > + if (r == -1)
> > + return -EINVAL;
> >
> > if (r == 1) {
> > result->begin = to_cblock(b);
>
>
> Could you please clarify how to reproduce unexpected results? From
> what I observe, the kernel's sscanf doesn't return -1 on an empty
> input. Even if a negative value other than -EINVAL is returned, it is
> handled by the callers.
>
> Hank
I applied the patch, but I deleted the conditions "if (r == -1) return
-EINVAL;"
sscanf in the kernel doesn't return negative numbers.
Mikulas
next prev parent reply other threads:[~2024-09-23 15:10 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-22 16:47 Dipendra Khadka
2024-09-23 9:40 ` Ming-Hung Tsai
2024-09-23 15:09 ` Mikulas Patocka [this message]
2024-09-23 15:35 ` Dipendra Khadka
2024-09-23 15:59 ` Mikulas Patocka
2024-09-23 16:05 ` Dipendra Khadka
2024-09-23 13:26 ` Mikulas Patocka
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=87139a89-4256-fceb-5ca2-c1077b036eef@redhat.com \
--to=mpatocka@redhat.com \
--cc=agk@redhat.com \
--cc=dm-devel@lists.linux.dev \
--cc=kdipendra88@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingnus@gmail.com \
--cc=snitzer@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®