From: Zhang Zhen <zhenzhang.zhang@huawei.com>
To: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: MTD Maling List <linux-mtd@lists.infradead.org>,
adrian.hunter@intel.com, Artem Bityutskiy <dedekind1@gmail.com>
Subject: Re: [PATCH] ubifs: replace simple_strtoul() with kstrtoul()
Date: Tue, 20 May 2014 16:14:30 +0800 [thread overview]
Message-ID: <537B0EE6.60006@huawei.com> (raw)
In-Reply-To: <CAMuHMdUmw_aSWDw9JmBKX8P7Na4rd+zig4yo8gDVD3vh34-xng@mail.gmail.com>
On 2014/5/20 14:57, Geert Uytterhoeven wrote:
> On Tue, May 20, 2014 at 8:53 AM, Geert Uytterhoeven
> <geert@linux-m68k.org> wrote:
>> On Mon, May 19, 2014 at 11:49 AM, Zhang Zhen <zhenzhang.zhang@huawei.com> wrote:
>>> On 2014/5/19 17:13, Geert Uytterhoeven wrote:
>>>> Please don't add mindless casts!
>>>>
>>>> On Mon, May 19, 2014 at 5:26 AM, Zhang Zhen <zhenzhang.zhang@huawei.com> wrote:
>>>>> --- a/fs/ubifs/super.c
>>>>> +++ b/fs/ubifs/super.c
>>>>> @@ -1905,6 +1905,7 @@ static struct ubi_volume_desc *open_ubi(const char *name, int mode)
>>>>> struct ubi_volume_desc *ubi;
>>>>> int dev, vol;
>>>>
>>>> dev is int
>>>>
>>>>> char *endptr;
>>>>> + int ret;
>>>>>
>>>>> /* First, try to open using the device node path method */
>>>>> ubi = ubi_open_volume_path(name, mode);
>>>>> @@ -1922,7 +1923,10 @@ static struct ubi_volume_desc *open_ubi(const char *name, int mode)
>>>>> if (!isdigit(name[3]))
>>>>> return ERR_PTR(-EINVAL);
>>>>>
>>>>> - dev = simple_strtoul(name + 3, &endptr, 0);
>>>>> + endptr = (char *)name + 3;
>>>>> + ret = kstrtoul(endptr, 0, (unsigned long *)&dev);
>>>>
>>>> On 64-bit, long is 64-bit, hence this will write beyond dev and will corrupt
>>>> the stack.
>>>>
>>> Yeah, you are right. This really may write beyond dev.
>>>
>>> The kstrtoul(const char *s, unsigned int base, unsigned long *res) only accept unsigned long
>>> pointer as the third parameter.
>>> And the original function simple_strtoul() returns unsigned long type value.
>>> It is also cast. So this may not corrupt the stack.
>>
>> That's not a cast, but an implicit conversion (which may truncate the
>> value from 64-bit to 32-bit).
>>
>>> Or do you have any better suggestion about this?
>>
>> Change dev and vol to long?
>
> Oh, there exists a whole range of kstrto*() functions.
>
> So you can just use kstrtoint().
>
Hi Geert,
Thanks for your suggestion, i will send the version2 out.
> Gr{oetje,eeting}s,
>
> Geert
>
> --
> Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
>
> In personal conversations with technical people, I call myself a hacker. But
> when I'm talking to journalists I just say "programmer" or something like that.
> -- Linus Torvalds
>
>
prev parent reply other threads:[~2014-05-20 8:15 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1400469756-18212-1-git-send-email-zhenzhang.zhang@huawei.com>
2014-05-19 3:26 ` [PATCH] ubifs: replace simple_strtoul() with kstrtoul() Zhang Zhen
2014-05-19 9:13 ` Geert Uytterhoeven
2014-05-19 9:49 ` Zhang Zhen
2014-05-20 6:53 ` Geert Uytterhoeven
2014-05-20 6:57 ` Geert Uytterhoeven
2014-05-20 8:14 ` Zhang Zhen [this message]
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=537B0EE6.60006@huawei.com \
--to=zhenzhang.zhang@huawei.com \
--cc=adrian.hunter@intel.com \
--cc=dedekind1@gmail.com \
--cc=geert@linux-m68k.org \
--cc=linux-mtd@lists.infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.