Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1283031
| From | Lee Jones <lee.jones@linaro.org> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [RESEND v4 2/6] remoteproc: debugfs: Add ability to boot remote processor using debugfs |
| Date | 2015-12-03 14:10 +0100 |
| Message-ID | <qBBO1-5tU-11@gated-at.bofh.it> (permalink) |
| References | <qylFL-9v-1@gated-at.bofh.it> <qzuH0-5Kh-13@gated-at.bofh.it> <qBBbl-4U8-11@gated-at.bofh.it> <qBBuJ-53y-71@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Thu, 03 Dec 2015, Arnd Bergmann wrote:
> On Thursday 03 December 2015 12:26:34 Lee Jones wrote:
> > > >
> > > > +static ssize_t rproc_state_write(struct file *filp, const char __user *userbuf,
> > > > + size_t count, loff_t *ppos)
> > > > +{
> > > > + struct rproc *rproc = filp->private_data;
> > > > + char buf[10];
> > > > + int ret;
> > > > +
> > > > + if (count > sizeof(buf))
> > > > + return count;
> > > > + ret = copy_from_user(buf, userbuf, count);
> > > > + if (ret)
> > > > + return -EFAULT;
> > > > +
> > > > + if (buf[count - 1] == '\n')
> > > > + buf[count - 1] = '\0';
> > >
> > > I believe you can get here with count = 0.
> >
> > I'm pretty sure you can't.
> >
> > If you are sure that you can, if you can provide me with a way of
> > testing, I'd be happy to put in provisions.
> >
>
> I think that a zero-length write() from user space ends up in the write
> file operation.
I tested this and didn't see it enter write(). My conclusion was that
if the file doesn't change, then nothing is triggered.
> Also, we get a gcc warning about the out-of-bounds access for code like
> this, and checking that count is larger than zero avoids the warning.
I did however see this warning and wondered what it was talking
about. Thanks for clarifying. Will fix.
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: [RESEND v4 2/6] remoteproc: debugfs: Add ability to boot remote processor using debugfs Lee Jones <lee.jones@linaro.org> - 2015-12-03 13:30 +0100
Re: [RESEND v4 2/6] remoteproc: debugfs: Add ability to boot remote processor using debugfs Arnd Bergmann <arnd@arndb.de> - 2015-12-03 13:50 +0100
Re: [RESEND v4 2/6] remoteproc: debugfs: Add ability to boot remote processor using debugfs Lee Jones <lee.jones@linaro.org> - 2015-12-03 14:10 +0100
Re: [RESEND v4 2/6] remoteproc: debugfs: Add ability to boot remote processor using debugfs Arnd Bergmann <arnd@arndb.de> - 2015-12-03 14:30 +0100
Re: [RESEND v4 2/6] remoteproc: debugfs: Add ability to boot remote processor using debugfs Lee Jones <lee.jones@linaro.org> - 2015-12-03 18:30 +0100
Re: [RESEND v4 2/6] remoteproc: debugfs: Add ability to boot remote processor using debugfs Arnd Bergmann <arnd@arndb.de> - 2015-12-03 22:20 +0100
Re: [RESEND v4 2/6] remoteproc: debugfs: Add ability to boot remote processor using debugfs Bjorn Andersson <bjorn@kryo.se> - 2015-12-03 22:30 +0100
Re: [RESEND v4 2/6] remoteproc: debugfs: Add ability to boot remote processor using debugfs Lee Jones <lee.jones@linaro.org> - 2015-12-04 09:30 +0100
csiph-web