cvs commit: src/sys/dev/usb ukbd.c
John Baldwin
jhb at FreeBSD.org
Fri Oct 12 12:47:43 PDT 2007
jhb 2007-10-12 19:47:42 UTC
FreeBSD src repository
Modified files:
sys/dev/usb ukbd.c
Log:
The ukbd driver has some questionable "magic" to for a default keyboard
which is ukbd0. Specifically, the keyboard driver structures for ukbd0
are not allocated/freed but are statically allocated via a persistent
global variable. There is some additional magic for the ukbd0 such that
if the keyboard is marked as probed in this global variable, then we
don't check to see if the device_t we are probing has an interface.
This causes a problem if an attach of ukbd0 fails without fulling clearing
the state in the global variable. Specifically, if the keyboard fails to
initialize in init_keyboard() or kbd_register(), then the keyboard will
still be marked as probed. The USB layer will then try to offer the
"generic" version of the USB keyboard device (as opposed to the
per-interface sub-devices) and the ukbd(4) driver will see that the
keyboard is marked probe and will skip the "is this a per-interface device"
check. Later in ukbd_attach() it panics because it tries to dereference
the interface pointer which is NULL.
The fix is to clear the flags in the persistent keyboard data for ukbd0
when init_keyboard() or kbd_register() fail.
MFC after: 1 week
Reviewed by: imp
Revision Changes Path
1.73 +8 -2 src/sys/dev/usb/ukbd.c
More information about the cvs-src
mailing list