linux-serial.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] USB: kobil_sct: Remove unused transfer buffer allocs
       [not found] ` <544009D9.3090701@hurleysoftware.com>
@ 2014-10-19 17:12   ` Johan Hovold
  2014-10-22 11:40     ` Peter Hurley
  0 siblings, 1 reply; 4+ messages in thread
From: Johan Hovold @ 2014-10-19 17:12 UTC (permalink / raw)
  To: Peter Hurley
  Cc: Johan Hovold, Greg Kroah-Hartman, linux-usb, linux-serial,
	Jiri Slaby, One Thousand Gnomes

[ +CC: Jiri, Alan, linux-serial ]

On Thu, Oct 16, 2014 at 02:09:29PM -0400, Peter Hurley wrote:
> On 10/16/2014 01:59 PM, Peter Hurley wrote:
> > Commit 90419cfcb5d9c889b10dc51363c56a4d394d670e,
> > "USB: kobil_sct: fix control requests without data stage", removed
> > the bogus data buffer arguments, but still allocate transfer
> > buffers which are not used.
> > 
> > Cc: Johan Hovold <jhovold@gmail.com>
> > Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
> > ---
> >  drivers/usb/serial/kobil_sct.c | 15 ---------------
> >  1 file changed, 15 deletions(-)
> > 
> > diff --git a/drivers/usb/serial/kobil_sct.c b/drivers/usb/serial/kobil_sct.c
> > index 078f9ed..3d2bd65 100644
> > --- a/drivers/usb/serial/kobil_sct.c
> > +++ b/drivers/usb/serial/kobil_sct.c
> > @@ -414,8 +414,6 @@ static int kobil_tiocmset(struct tty_struct *tty,
> >  	int result;
> >  	int dtr = 0;
> >  	int rts = 0;
> > -	unsigned char *transfer_buffer;
> > -	int transfer_buffer_length = 8;
> >  
> >  	/* FIXME: locking ? */
> >  	priv = usb_get_serial_port_data(port);
> > @@ -425,11 +423,6 @@ static int kobil_tiocmset(struct tty_struct *tty,
> >  		return -EINVAL;
> >  	}
> >  
> > -	/* allocate memory for transfer buffer */
> > -	transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
> > -	if (!transfer_buffer)
> > -		return -ENOMEM;
> > -
> >  	if (set & TIOCM_RTS)
> >  		rts = 1;
> >  	if (set & TIOCM_DTR)
> > @@ -469,7 +462,6 @@ static int kobil_tiocmset(struct tty_struct *tty,
> >  			KOBIL_TIMEOUT);
> >  	}
> >  	dev_dbg(dev, "%s - Send set_status_line URB returns: %i\n", __func__, result);
> > -	kfree(transfer_buffer);
> >  	return (result < 0) ? result : 0;
> >  }
> >  
> > @@ -530,8 +522,6 @@ static int kobil_ioctl(struct tty_struct *tty,
> >  {
> >  	struct usb_serial_port *port = tty->driver_data;
> >  	struct kobil_private *priv = usb_get_serial_port_data(port);
> > -	unsigned char *transfer_buffer;
> > -	int transfer_buffer_length = 8;
> >  	int result;
> >  
> >  	if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
> > @@ -541,10 +531,6 @@ static int kobil_ioctl(struct tty_struct *tty,
> >  
> >  	switch (cmd) {
> >  	case TCFLSH:
> > -		transfer_buffer = kmalloc(transfer_buffer_length, GFP_KERNEL);
> > -		if (!transfer_buffer)
> > -			return -ENOBUFS;
> > -
> >  		result = usb_control_msg(port->serial->dev,
> >  			  usb_sndctrlpipe(port->serial->dev, 0),
> >  			  SUSBCRequest_Misc,
> > @@ -559,7 +545,6 @@ static int kobil_ioctl(struct tty_struct *tty,
> >  		dev_dbg(&port->dev,
> >  			"%s - Send reset_all_queues (FLUSH) URB returns: %i\n",
> >  			__func__, result);
> > -		kfree(transfer_buffer);
> >  		return (result < 0) ? -EIO: 0;
>                                            ^^^
> Returning 0 is almost certainly wrong; no further processing for
> TCFLSH is performed.

Indeed.

> Only this driver returns 0 (of all the tty drivers in mainline).
> 
> Returning -ENOIOCTLCMD allows further processing to continue;
> especially the line discipline's input flushing, if TCIFLUSH/TCIOFLUSH.

That doesn't seem like a very good idea, and only two *staging* drivers
try to play such games (i.e. pretending not to implement the ioctl) as
far as I can see.

The only non-staging tty driver which appears to implement TCFLSH,
ipwireless, calls tty_perform_flush directly to flush the ldisc buffers.
That doesn't seem right either.

Shouldn't this be fixed by removing TCFLSH from these tty drivers'
ioctl callbacks and implementing flush_buffer()?

The staging drivers also flush a device input buffer, which could be
done in a new callback if at all needed.

> Is it trying to avoid the tty_driver_flush_buffer() because it doesn't
> have an output buffer?

I don't think so. The author probably just assumed returning 0 for a
"handled" ioctl was the right thing to do.

I'll add flush_buffer support to usb-serial and fix up kobil_sct
meanwhile.

Thanks,
Johan

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] USB: kobil_sct: Remove unused transfer buffer allocs
  2014-10-19 17:12   ` [PATCH] USB: kobil_sct: Remove unused transfer buffer allocs Johan Hovold
@ 2014-10-22 11:40     ` Peter Hurley
  2014-10-30 12:08       ` Johan Hovold
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Hurley @ 2014-10-22 11:40 UTC (permalink / raw)
  To: Johan Hovold
  Cc: Johan Hovold, Greg Kroah-Hartman, linux-usb, linux-serial,
	Jiri Slaby, One Thousand Gnomes

On 10/19/2014 01:12 PM, Johan Hovold wrote:
> [ +CC: Jiri, Alan, linux-serial ]
> 
> On Thu, Oct 16, 2014 at 02:09:29PM -0400, Peter Hurley wrote:
>> On 10/16/2014 01:59 PM, Peter Hurley wrote:
>>> Commit 90419cfcb5d9c889b10dc51363c56a4d394d670e,
>>> "USB: kobil_sct: fix control requests without data stage", removed
>>> the bogus data buffer arguments, but still allocate transfer
>>> buffers which are not used.
>>>
>>> Cc: Johan Hovold <jhovold@gmail.com>
>>> Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
>>> ---
>>>  drivers/usb/serial/kobil_sct.c | 15 ---------------
>>>  1 file changed, 15 deletions(-)
>>>
>>> diff --git a/drivers/usb/serial/kobil_sct.c b/drivers/usb/serial/kobil_sct.c
>>> index 078f9ed..3d2bd65 100644
>>> --- a/drivers/usb/serial/kobil_sct.c
>>> +++ b/drivers/usb/serial/kobil_sct.c
>>> @@ -414,8 +414,6 @@ static int kobil_tiocmset(struct tty_struct *tty,
>>>  	int result;
>>>  	int dtr = 0;
>>>  	int rts = 0;
>>> -	unsigned char *transfer_buffer;
>>> -	int transfer_buffer_length = 8;
>>>  
>>>  	/* FIXME: locking ? */
>>>  	priv = usb_get_serial_port_data(port);
>>> @@ -425,11 +423,6 @@ static int kobil_tiocmset(struct tty_struct *tty,
>>>  		return -EINVAL;
>>>  	}
>>>  
>>> -	/* allocate memory for transfer buffer */
>>> -	transfer_buffer = kzalloc(transfer_buffer_length, GFP_KERNEL);
>>> -	if (!transfer_buffer)
>>> -		return -ENOMEM;
>>> -
>>>  	if (set & TIOCM_RTS)
>>>  		rts = 1;
>>>  	if (set & TIOCM_DTR)
>>> @@ -469,7 +462,6 @@ static int kobil_tiocmset(struct tty_struct *tty,
>>>  			KOBIL_TIMEOUT);
>>>  	}
>>>  	dev_dbg(dev, "%s - Send set_status_line URB returns: %i\n", __func__, result);
>>> -	kfree(transfer_buffer);
>>>  	return (result < 0) ? result : 0;
>>>  }
>>>  
>>> @@ -530,8 +522,6 @@ static int kobil_ioctl(struct tty_struct *tty,
>>>  {
>>>  	struct usb_serial_port *port = tty->driver_data;
>>>  	struct kobil_private *priv = usb_get_serial_port_data(port);
>>> -	unsigned char *transfer_buffer;
>>> -	int transfer_buffer_length = 8;
>>>  	int result;
>>>  
>>>  	if (priv->device_type == KOBIL_USBTWIN_PRODUCT_ID ||
>>> @@ -541,10 +531,6 @@ static int kobil_ioctl(struct tty_struct *tty,
>>>  
>>>  	switch (cmd) {
>>>  	case TCFLSH:
>>> -		transfer_buffer = kmalloc(transfer_buffer_length, GFP_KERNEL);
>>> -		if (!transfer_buffer)
>>> -			return -ENOBUFS;
>>> -
>>>  		result = usb_control_msg(port->serial->dev,
>>>  			  usb_sndctrlpipe(port->serial->dev, 0),
>>>  			  SUSBCRequest_Misc,
>>> @@ -559,7 +545,6 @@ static int kobil_ioctl(struct tty_struct *tty,
>>>  		dev_dbg(&port->dev,
>>>  			"%s - Send reset_all_queues (FLUSH) URB returns: %i\n",
>>>  			__func__, result);
>>> -		kfree(transfer_buffer);
>>>  		return (result < 0) ? -EIO: 0;
>>                                            ^^^
>> Returning 0 is almost certainly wrong; no further processing for
>> TCFLSH is performed.
> 
> Indeed.
> 
>> Only this driver returns 0 (of all the tty drivers in mainline).
>>
>> Returning -ENOIOCTLCMD allows further processing to continue;
>> especially the line discipline's input flushing, if TCIFLUSH/TCIOFLUSH.
> 
> That doesn't seem like a very good idea, and only two *staging* drivers
> try to play such games (i.e. pretending not to implement the ioctl) as
> far as I can see.

Well, returning EIONOCTLCMD is the standard method of ioctl passthrough
from driver to line discipline.

Since driver 'input buffer' flushing is not currently supported by the
core, this seems the only available workaround.

> The only non-staging tty driver which appears to implement TCFLSH,
> ipwireless, calls tty_perform_flush directly to flush the ldisc buffers.
> That doesn't seem right either.

I'm not sure why ipwireless does this; I can only guess that it's a
workaround for some line discipline that doesn't use n_tty_ioctl_helper().

> Shouldn't this be fixed by removing TCFLSH from these tty drivers'
> ioctl callbacks and implementing flush_buffer()?
>
> The staging drivers also flush a device input buffer, which could be
> done in a new callback if at all needed.

Yeah, that's why the Digi staging drivers are trapping TCFLSH; so they
can clear input buffers on TCIFLUSH/TCIOFLUSH.

I'd like to better understand the hardware and driver before extending
the core interface; this driver may not even run.

For example, this driver clears its 'input buffer' for
tcsetattr(TCSADRAIN or TCSAFLUSH). But that doesn't make sense considering
that the flip buffers could have data in them that isn't flushed; the tty
core doesn't dump the flip buffers because 'input processing' has not
happened on that data.

I think when/if these drivers are promoted is when/if the core interface
should address this. Just my opinion, though :)

>> Is it trying to avoid the tty_driver_flush_buffer() because it doesn't
>> have an output buffer?
> 
> I don't think so. The author probably just assumed returning 0 for a
> "handled" ioctl was the right thing to do.
> 
> I'll add flush_buffer support to usb-serial and fix up kobil_sct
> meanwhile.

Thanks.

Regards,
Peter Hurley


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] USB: kobil_sct: Remove unused transfer buffer allocs
  2014-10-22 11:40     ` Peter Hurley
@ 2014-10-30 12:08       ` Johan Hovold
  2014-10-30 13:08         ` Peter Hurley
  0 siblings, 1 reply; 4+ messages in thread
From: Johan Hovold @ 2014-10-30 12:08 UTC (permalink / raw)
  To: Peter Hurley
  Cc: Johan Hovold, Johan Hovold, Greg Kroah-Hartman, linux-usb,
	linux-serial, Jiri Slaby, One Thousand Gnomes

Hi Peter,

Forgot to reply to this one.

On Wed, Oct 22, 2014 at 07:40:20AM -0400, Peter Hurley wrote:
> On 10/19/2014 01:12 PM, Johan Hovold wrote:
> > [ +CC: Jiri, Alan, linux-serial ]
> > 
> > On Thu, Oct 16, 2014 at 02:09:29PM -0400, Peter Hurley wrote:
> >> On 10/16/2014 01:59 PM, Peter Hurley wrote:

> >>> @@ -541,10 +531,6 @@ static int kobil_ioctl(struct tty_struct *tty,
> >>>  
> >>>  	switch (cmd) {
> >>>  	case TCFLSH:
> >>> -		transfer_buffer = kmalloc(transfer_buffer_length, GFP_KERNEL);
> >>> -		if (!transfer_buffer)
> >>> -			return -ENOBUFS;
> >>> -
> >>>  		result = usb_control_msg(port->serial->dev,
> >>>  			  usb_sndctrlpipe(port->serial->dev, 0),
> >>>  			  SUSBCRequest_Misc,
> >>> @@ -559,7 +545,6 @@ static int kobil_ioctl(struct tty_struct *tty,
> >>>  		dev_dbg(&port->dev,
> >>>  			"%s - Send reset_all_queues (FLUSH) URB returns: %i\n",
> >>>  			__func__, result);
> >>> -		kfree(transfer_buffer);
> >>>  		return (result < 0) ? -EIO: 0;
> >>                                            ^^^
> >> Returning 0 is almost certainly wrong; no further processing for
> >> TCFLSH is performed.
> > 
> > Indeed.
> > 
> >> Only this driver returns 0 (of all the tty drivers in mainline).
> >>
> >> Returning -ENOIOCTLCMD allows further processing to continue;
> >> especially the line discipline's input flushing, if TCIFLUSH/TCIOFLUSH.
> > 
> > That doesn't seem like a very good idea, and only two *staging* drivers
> > try to play such games (i.e. pretending not to implement the ioctl) as
> > far as I can see.
> 
> Well, returning EIONOCTLCMD is the standard method of ioctl passthrough
> from driver to line discipline.

I disagree with you there. AFAICS only these two staging drivers are
abusing the meaning of EIONOCTLCMD (unrecognised ioctl) to have the
line discipline also act on the ioctl.

> Since driver 'input buffer' flushing is not currently supported by the
> core, this seems the only available workaround.

That is true. But I doubt we should use these two staging drivers as a
model for how this should be handled, if it's at all needed.

> > The only non-staging tty driver which appears to implement TCFLSH,
> > ipwireless, calls tty_perform_flush directly to flush the ldisc buffers.
> > That doesn't seem right either.
> 
> I'm not sure why ipwireless does this; I can only guess that it's a
> workaround for some line discipline that doesn't use n_tty_ioctl_helper().
> 
> > Shouldn't this be fixed by removing TCFLSH from these tty drivers'
> > ioctl callbacks and implementing flush_buffer()?
> >
> > The staging drivers also flush a device input buffer, which could be
> > done in a new callback if at all needed.
> 
> Yeah, that's why the Digi staging drivers are trapping TCFLSH; so they
> can clear input buffers on TCIFLUSH/TCIOFLUSH.
> 
> I'd like to better understand the hardware and driver before extending
> the core interface; this driver may not even run.

Agreed.

> For example, this driver clears its 'input buffer' for
> tcsetattr(TCSADRAIN or TCSAFLUSH). But that doesn't make sense considering
> that the flip buffers could have data in them that isn't flushed; the tty
> core doesn't dump the flip buffers because 'input processing' has not
> happened on that data.
> 
> I think when/if these drivers are promoted is when/if the core interface
> should address this. Just my opinion, though :)

I agree.

Johan

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] USB: kobil_sct: Remove unused transfer buffer allocs
  2014-10-30 12:08       ` Johan Hovold
@ 2014-10-30 13:08         ` Peter Hurley
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Hurley @ 2014-10-30 13:08 UTC (permalink / raw)
  To: Johan Hovold
  Cc: Johan Hovold, Greg Kroah-Hartman,
	linux-usb-u79uwXL29TY76Z2rM5mHXA,
	linux-serial-u79uwXL29TY76Z2rM5mHXA, Jiri Slaby,
	One Thousand Gnomes

On 10/30/2014 08:08 AM, Johan Hovold wrote:
> Hi Peter,
> 
> Forgot to reply to this one.
> 
> On Wed, Oct 22, 2014 at 07:40:20AM -0400, Peter Hurley wrote:
>> On 10/19/2014 01:12 PM, Johan Hovold wrote:
>>> [ +CC: Jiri, Alan, linux-serial ]
>>>
>>> On Thu, Oct 16, 2014 at 02:09:29PM -0400, Peter Hurley wrote:
>>>> On 10/16/2014 01:59 PM, Peter Hurley wrote:
> 
>>>>> @@ -541,10 +531,6 @@ static int kobil_ioctl(struct tty_struct *tty,
>>>>>  
>>>>>  	switch (cmd) {
>>>>>  	case TCFLSH:
>>>>> -		transfer_buffer = kmalloc(transfer_buffer_length, GFP_KERNEL);
>>>>> -		if (!transfer_buffer)
>>>>> -			return -ENOBUFS;
>>>>> -
>>>>>  		result = usb_control_msg(port->serial->dev,
>>>>>  			  usb_sndctrlpipe(port->serial->dev, 0),
>>>>>  			  SUSBCRequest_Misc,
>>>>> @@ -559,7 +545,6 @@ static int kobil_ioctl(struct tty_struct *tty,
>>>>>  		dev_dbg(&port->dev,
>>>>>  			"%s - Send reset_all_queues (FLUSH) URB returns: %i\n",
>>>>>  			__func__, result);
>>>>> -		kfree(transfer_buffer);
>>>>>  		return (result < 0) ? -EIO: 0;
>>>>                                            ^^^
>>>> Returning 0 is almost certainly wrong; no further processing for
>>>> TCFLSH is performed.
>>>
>>> Indeed.
>>>
>>>> Only this driver returns 0 (of all the tty drivers in mainline).
>>>>
>>>> Returning -ENOIOCTLCMD allows further processing to continue;
>>>> especially the line discipline's input flushing, if TCIFLUSH/TCIOFLUSH.
>>>
>>> That doesn't seem like a very good idea, and only two *staging* drivers
>>> try to play such games (i.e. pretending not to implement the ioctl) as
>>> far as I can see.
>>
>> Well, returning EIONOCTLCMD is the standard method of ioctl passthrough
>> from driver to line discipline.
> 
> I disagree with you there. AFAICS only these two staging drivers are
> abusing the meaning of EIONOCTLCMD (unrecognised ioctl) to have the
> line discipline also act on the ioctl.

Sorry, I wasn't as clear as I should have been here.

My point was that every driver gets ioctl(TCFLSH) and returns ENOIOCTLCMD
so that the line discipline will handle it. You're absolutely correct, in
that, only these drivers (and ipwireless) doing anything with TCFLSH

>> Since driver 'input buffer' flushing is not currently supported by the
>> core, this seems the only available workaround.
> 
> That is true. But I doubt we should use these two staging drivers as a
> model for how this should be handled, if it's at all needed.

Right. My comments implied approval of the design, which I don't.

The main problem with the existing design is that it allows for a
significant variation in how ioctl(WHATEVER) is handled by various
driver/ldisc combinations. That's a bad thing because it makes
audit/review really time-consuming and makes changes prone to userspace
regressions.

Regards,
Peter Hurley
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-10-30 13:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1413482362-14368-1-git-send-email-peter@hurleysoftware.com>
     [not found] ` <544009D9.3090701@hurleysoftware.com>
2014-10-19 17:12   ` [PATCH] USB: kobil_sct: Remove unused transfer buffer allocs Johan Hovold
2014-10-22 11:40     ` Peter Hurley
2014-10-30 12:08       ` Johan Hovold
2014-10-30 13:08         ` Peter Hurley

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).