From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
To: Chuansheng Liu <chuansheng.liu@intel.com>,
balbi@ti.com, gregkh@linuxfoundation.org
Cc: linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org,
mina86@mina86.com, david.a.cohen@linux.intel.com
Subject: Re: [PATCH v2] usb: gadget: return the right length in ffs_epfile_io()
Date: Tue, 04 Mar 2014 20:01:15 +0300 [thread overview]
Message-ID: <531606DB.4010601@cogentembedded.com> (raw)
In-Reply-To: <1393918497-30916-1-git-send-email-chuansheng.liu@intel.com>
Hello.
On 03/04/2014 10:34 AM, Chuansheng Liu wrote:
> When the request length is aligned to maxpacketsize, sometimes
> the return length ret > the user space requested len.
> At that time, we will use min_t(size_t, ret, len) to limit the
> size in case of user data buffer overflow.
> But we need return the min_t(size_t, ret, len) to tell the user
> space rightly also.
> Acked-by: Michal Nazarewicz <mina86@mina86.com>
> Reviewed-by: David Cohen <david.a.cohen@linux.intel.com>
> Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
> ---
> drivers/usb/gadget/f_fs.c | 14 ++++++++------
> 1 file changed, 8 insertions(+), 6 deletions(-)
> diff --git a/drivers/usb/gadget/f_fs.c b/drivers/usb/gadget/f_fs.c
> index 42f7a0e..780f877 100644
> --- a/drivers/usb/gadget/f_fs.c
> +++ b/drivers/usb/gadget/f_fs.c
> @@ -845,12 +845,14 @@ static ssize_t ffs_epfile_io(struct file *file, struct ffs_io_data *io_data)
> * we may end up with more data then user space has
> * space for.
> */
> - ret = ep->status;
> - if (io_data->read && ret > 0 &&
> - unlikely(copy_to_user(io_data->buf, data,
> - min_t(size_t, ret,
> - io_data->len))))
> - ret = -EFAULT;
> + ret = ep->status;
Why the indentation jumped suddenly to the right?
> + if (io_data->read && ret > 0) {
> + ret = min_t(size_t, ret, io_data->len);
> +
> + if (unlikely(copy_to_user(io_data->buf,
> + data, ret)))
> + ret = -EFAULT;
> + }
> }
> kfree(data);
WBR, Sergei
next prev parent reply other threads:[~2014-03-04 16:01 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-04 7:34 [PATCH v2] usb: gadget: return the right length in ffs_epfile_io() Chuansheng Liu
2014-03-04 17:01 ` Sergei Shtylyov [this message]
2014-03-04 16:06 ` Felipe Balbi
2014-03-04 19:53 ` Michal Nazarewicz
2014-03-04 19:55 ` Felipe Balbi
2014-03-04 23:38 ` Liu, Chuansheng
2014-03-05 15:22 ` Felipe Balbi
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=531606DB.4010601@cogentembedded.com \
--to=sergei.shtylyov@cogentembedded.com \
--cc=balbi@ti.com \
--cc=chuansheng.liu@intel.com \
--cc=david.a.cohen@linux.intel.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=mina86@mina86.com \
/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.