From: Oliver Neukum <oliver@neukum.org>
To: Jiri Kosina <jkosina@suse.cz>
Cc: linux-usb@vger.kernel.org, linux-input@vger.kernel.org
Subject: Re: [patch]race between open and disconnect in usbhid
Date: Mon, 31 Mar 2008 15:47:55 +0200 [thread overview]
Message-ID: <200803311547.56448.oliver@neukum.org> (raw)
In-Reply-To: <Pine.LNX.4.64.0803311522110.5541@jikos.suse.cz>
Am Montag, 31. März 2008 15:23:50 schrieb Jiri Kosina:
> On Mon, 31 Mar 2008, Oliver Neukum wrote:
>
> > There is a window:
> > task A task B
> > spin_lock_irq(&usbhid->inlock); /* Sync with error handler */
> > usb_set_intfdata(intf, NULL);
> > spin_unlock_irq(&usbhid->inlock);
> > usb_kill_urb(usbhid->urbin);
> > usb_kill_urb(usbhid->urbout);
> > usb_kill_urb(usbhid->urbctrl);
> >
> > del_timer_sync(&usbhid->io_retry);
> > cancel_work_sync(&usbhid->reset_work);
> >
> > if (!hid->open++) {
> > res = usb_autopm_get_interface(usbhid->intf);
> > if (res < 0) {
> > hid->open--;
> > return -EIO;
> > }
> > }
> > if (hid_start_in(hid))
> >
> > if (hid->claimed & HID_CLAIMED_INPUT)
> > hidinput_disconnect(hid);
> > in which an open() to an already disconnected device will submit an URB
> > to an undead device. In case disconnect() was called by an ioctl,
> > this'll oops. Fix by introducing a reliable flag an checking it in
> > hid_start_in().
>
> Hi Oliver,
>
> thanks for checking this, good catch.
>
> > + char disconnected:1; /* indicates undead device - no use */
>
> Wouldn't introduction of new flag (HID_DISCONNECTED) to
> usbhid_device->iofl be cleaner?
A matter of taste. I don't use atomic ops if I don't have to, but if you
like it better the other way I can redo it.
Regards
Oliver
--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2008-03-31 13:29 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-31 13:35 [patch]race between open and disconnect in usbhid Oliver Neukum
2008-03-31 13:23 ` Jiri Kosina
2008-03-31 13:47 ` Oliver Neukum [this message]
[not found] ` <200803311547.56448.oliver-GvhC2dPhHPQdnm+yROfE0A@public.gmane.org>
2008-03-31 13:35 ` Jiri Kosina
[not found] ` <Pine.LNX.4.64.0803311534240.5541-YCXOAqNspd+N3ZZ/Hiejyg@public.gmane.org>
2008-03-31 14:25 ` Oliver Neukum
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=200803311547.56448.oliver@neukum.org \
--to=oliver@neukum.org \
--cc=jkosina@suse.cz \
--cc=linux-input@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox