From: Johan Hovold <johan@kernel.org>
To: Sean Young <sean@mess.org>
Cc: linux-media@vger.kernel.org, linux-usb@vger.kernel.org,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Jon Rhees <support@usbuirt.com>, Oliver Neukum <oneukum@suse.com>
Subject: Re: [PATCH v5 1/2] media: rc: new driver for USB-UIRT device
Date: Fri, 2 Jul 2021 16:06:39 +0200 [thread overview]
Message-ID: <YN8db6Q/9np7C43h@hovoldconsulting.com> (raw)
In-Reply-To: <20210702132022.GC29760@gofer.mess.org>
On Fri, Jul 02, 2021 at 02:20:22PM +0100, Sean Young wrote:
> On Fri, Jul 02, 2021 at 02:23:48PM +0200, Johan Hovold wrote:
> > On Fri, Jul 02, 2021 at 12:42:18PM +0200, Johan Hovold wrote:
> > > On Fri, Jun 18, 2021 at 11:18:46AM +0100, Sean Young wrote:
> > > > This device uses an ftdi usb serial port, so this driver has a tiny
> > > > amount of usb ftdi code. It would be preferable to connect this driver via
> > > > serdev or line-discipline, but unfortunately neither support
> > > > hotplugging yet.
> > > >
> > > > See http://www.usbuirt.com/
> > > >
> > > > Signed-off-by: Sean Young <sean@mess.org>
> > > > ---
> >
> > > > +struct uirt {
> > > > + struct device *dev;
> > > > + struct usb_device *usbdev;
> > > > +
> > > > + struct rc_dev *rc;
> > > > + struct urb *urb_in, *urb_out;
> > > > +
> > > > + u8 *in;
> > > > + u8 *out;
> > > > + struct completion cmd_done;
> > > > + u8 freq;
> > > > + u8 high;
> > > > + bool wideband;
> > > > + u32 last_duration;
> > > > +
> > > > + enum cmd_state cmd_state;
> > > > + enum rx_state rx_state;
> > > > +
> > > > + void *tx_buf;
> > > > + u32 tx_len;
> > > > +
> > > > + char phys[64];
> > > > +};
> >
> > > > +static void uirt_response(struct uirt *uirt, u32 len)
> > > > +{
> > > > + int offset = 2;
> > > > + int i;
> > > > +
> > > > + dev_dbg(uirt->dev, "state:%d data: %*phN\n", uirt->cmd_state, len, uirt->in);
> > > > +
> > > > + // Do we have more IR to transmit and is Clear-To-Send set
> > > > + if (uirt->cmd_state == CMD_STATE_STREAMING_TX && len >= 2 &&
> > > > + uirt->tx_len && uirt->in[0] & FTDI_RS0_CTS) {
> > >
> > > Do you really need to handle this manually when you have hardware
> > > assisted flow control enabled?
> > >
> > > > + u32 len;
> > > > + int err;
> > > > +
> > > > + len = min_t(u32, uirt->tx_len, MAX_PACKET);
> > > > +
> > > > + memcpy(uirt->out, uirt->tx_buf, len);
> > > > + uirt->urb_out->transfer_buffer_length = len;
> > > > +
> > > > + uirt->tx_len -= len;
> > > > + uirt->tx_buf += len;
> > > > +
> > > > + err = usb_submit_urb(uirt->urb_out, GFP_ATOMIC);
> > > > + if (err != 0)
> > > > + dev_warn(uirt->dev,
> > > > + "failed to submit out urb: %d\n", err);
> >
> > Also, this looks entirely broken since you don't have any
> > synchronisation with uirt_command() below which may try to submit the
> > same URB in parallel.
>
> uirt_command() only gets called via lirc chardev ioctl/write ops; the lirc
> chardev code does locking for the drivers already. So, if someone does a
> write to /dev/lirc0 (which means transmit) the mutex is taken, no other
> writes/ioctls are allowed on /dev/lirc0; the uirt_tx() calls uirt_command()
> which waits for completion. During this period the code above can be
> executed, but not after the transmit succeeds or fails (when the lircdev
> chardev mutex is released, see:
>
> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/media/rc/lirc_dev.c#n337
>
> Having said all that this is not evident from code at all. A comment could
> really help.
My point is that uirt_command() may race with the bulk-in completion
handler and uirt_response() which can end up submitting the out urb in
parallel with uirt_command() and corrupting the tx state. There only
needs to be one ioctl()/write() for this to happen.
Johan
next prev parent reply other threads:[~2021-07-02 14:06 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-18 10:18 [PATCH v5 0/2] IR driver for USB-UIRT device Sean Young
2021-06-18 10:18 ` [PATCH v5 1/2] media: rc: new " Sean Young
2021-07-02 10:42 ` Johan Hovold
2021-07-02 12:23 ` Johan Hovold
2021-07-02 13:20 ` Sean Young
2021-07-02 14:06 ` Johan Hovold [this message]
2021-07-02 13:13 ` Sean Young
2021-07-02 14:01 ` Johan Hovold
2021-07-02 15:34 ` Sean Young
2021-06-18 10:18 ` [PATCH v5 2/2] USB: serial: blacklist USB-UIRT when driver is selected Sean Young
2021-07-02 10:01 ` [PATCH v5 0/2] IR driver for USB-UIRT device Johan Hovold
2021-07-02 12:59 ` Sean Young
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=YN8db6Q/9np7C43h@hovoldconsulting.com \
--to=johan@kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-media@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=oneukum@suse.com \
--cc=sean@mess.org \
--cc=support@usbuirt.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.