lkml.org 
[lkml]   [2013]   [Nov]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v4 3/4] usb: ffs: check quirk to pad epout buf size when not aligned to maxpacketsize
On Wed, 6 Nov 2013, Michal Nazarewicz wrote:

> On Tue, Nov 05 2013, Alan Stern wrote:
> > Maybe Michal can enlighten us.
>
> Sorry for late response, this thread fell under my radar for some
> reason.
>
> So here's how it works:
>
> epfile represents an end point file on the fuctionfs file system,
> i.e. what user space is seeing. It's numbering is independent of which
> USB configuration is chosen.
>
> A FunctionFS user space daemon may read/write to those files regardless
> of whether the function is enabled. If it is not, the operation will
> block until host enables the function.

What happens if the userspace daemon writes to epfile but the host
changes the config or altsetting before all the data can be sent? Does
the remaining data get flushed?

Similarly, what happens if the config or altsetting changes before a
read of epfile completes? Does the read get terminated?

> epfile->ep represents an actual USB end point, and it's number does not
> have to correspond to the epfile file name, and may be different in
> different configuration. FunctionFS hides all that from the user space
> daemon.
>
> epfile->ep is set when host changes configuration (i.e. function's
> set_alt or disable callbacks). IIRC this implies that epfile->ep cannot
> be protected by a mutex, and therefore is protected by a spinlock.
>
> Since it is protected by a spinlock, the ffs_epfile_io function cannot
> lock it and then proceed to allocating memory and copying data from user
> space. That's why there is the need for the loop since there is no way
> to guarantee that while the memory was allocated and data was read from
> user space (if it is a write), the function has not been disabled and
> re-enabled.

I'm still a little unclear on this. Disabling the function ought to
have much the same effect as changing the config or altsetting: Writes
to endpoint files should be flushed and reads should be terminated.
Otherwise you would end up sending stale data to the host or reading
data that the daemon isn't prepared for.

Given that, there doesn't seem to be any need for a loop. Copy the
data; if the function was disabled in the meantime then throw away the
data and return an appropriate error code.

I don't see any reason why you should ever have to copy the same data
from userspace multiple times.

> However, I'm not sure whether maxpacketsize can change. It is part of
> endpoint's descriptor and even though the endpoint number can change
> while ffs_epfile_io is running, all the other descriptor fields should
> stay the same.

If the config or altsetting can change then the maxpacket size can
change too. However, the reasoning above indicates that this should be
moot.

Alan Stern



\
 
 \ /
  Last update: 2013-11-07 17:41    [W:1.024 / U:0.140 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site