From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Dan Carpenter <dan.carpenter@oracle.com>
Cc: linux-input@vger.kernel.org, kernel-janitors@vger.kernel.org
Subject: Re: [patch] Input: force feedback - potential integer wrap in input_ff_create()
Date: Sun, 9 Oct 2011 22:08:52 -0700 [thread overview]
Message-ID: <20111010050852.GA18794@core.coreip.homeip.net> (raw)
In-Reply-To: <20111009162524.GA14049@elgon.mountain>
Hi Dan,
On Sun, Oct 09, 2011 at 07:25:24PM +0300, Dan Carpenter wrote:
> Smatch complains about max_effects because it's an int and we cap the
> maximum size, but we don't check for negative. A negative value here
> could make "ff" smaller than sizeof(struct ff_device) and lead to
> memory corruption.
>
> I think max_effects can come from ->ff_effects_max in
> uinput_setup_device() and that comes from the user so potentially
> it could be negative. The call path is that uinput_setup_device()
> sets the value in the ->private_data struct. From there it is:
> -> uinput_ioctl_handler()
> -> uinput_create_device()
> -> input_ff_create(dev, udev->ff_effects_max);
>
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
>
> diff --git a/drivers/input/ff-core.c b/drivers/input/ff-core.c
> index 3367f76..12422ed 100644
> --- a/drivers/input/ff-core.c
> +++ b/drivers/input/ff-core.c
> @@ -319,6 +319,12 @@ int input_ff_create(struct input_dev *dev, int max_effects)
> return -EINVAL;
> }
>
> + if (max_effects < 0)
> + return -EINVAL;
> + if (sizeof(struct ff_device) + max_effects * sizeof(struct file *) <
> + max_effects)
> + return -EINVAL;
> +
Instead of doing this why don't we mark all relevant fields as unsigned
int?
Thanks.
--
Dmitry
next prev parent reply other threads:[~2011-10-10 5:09 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-09 16:25 [patch] Input: force feedback - potential integer wrap in input_ff_create() Dan Carpenter
2011-10-10 5:08 ` Dmitry Torokhov [this message]
2011-10-10 20:48 ` Dan Carpenter
2011-10-11 21:19 ` [patch v2] " Dan Carpenter
2011-10-13 4:36 ` Dmitry Torokhov
2011-10-15 14:24 ` walter harms
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=20111010050852.GA18794@core.coreip.homeip.net \
--to=dmitry.torokhov@gmail.com \
--cc=dan.carpenter@oracle.com \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-input@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;
as well as URLs for NNTP newsgroup(s).