devio.c 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  1. /*****************************************************************************/
  2. /*
  3. * devio.c -- User space communication with USB devices.
  4. *
  5. * Copyright (C) 1999-2000 Thomas Sailer (sailer@ife.ee.ethz.ch)
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. *
  21. * This file implements the usbfs/x/y files, where
  22. * x is the bus number and y the device number.
  23. *
  24. * It allows user space programs/"drivers" to communicate directly
  25. * with USB devices without intervening kernel driver.
  26. *
  27. * Revision history
  28. * 22.12.1999 0.1 Initial release (split from proc_usb.c)
  29. * 04.01.2000 0.2 Turned into its own filesystem
  30. * 30.09.2005 0.3 Fix user-triggerable oops in async URB delivery
  31. * (CAN-2005-3055)
  32. */
  33. /*****************************************************************************/
  34. #include <linux/fs.h>
  35. #include <linux/mm.h>
  36. #include <linux/slab.h>
  37. #include <linux/smp_lock.h>
  38. #include <linux/signal.h>
  39. #include <linux/poll.h>
  40. #include <linux/module.h>
  41. #include <linux/usb.h>
  42. #include <linux/usbdevice_fs.h>
  43. #include <linux/cdev.h>
  44. #include <linux/notifier.h>
  45. #include <linux/security.h>
  46. #include <asm/uaccess.h>
  47. #include <asm/byteorder.h>
  48. #include <linux/moduleparam.h>
  49. #include "hcd.h" /* for usbcore internals */
  50. #include "usb.h"
  51. #define USB_MAXBUS 64
  52. #define USB_DEVICE_MAX USB_MAXBUS * 128
  53. /* Mutual exclusion for removal, open, and release */
  54. DEFINE_MUTEX(usbfs_mutex);
  55. struct dev_state {
  56. struct list_head list; /* state list */
  57. struct usb_device *dev;
  58. struct file *file;
  59. spinlock_t lock; /* protects the async urb lists */
  60. struct list_head async_pending;
  61. struct list_head async_completed;
  62. wait_queue_head_t wait; /* wake up if a request completed */
  63. unsigned int discsignr;
  64. struct pid *disc_pid;
  65. uid_t disc_uid, disc_euid;
  66. void __user *disccontext;
  67. unsigned long ifclaimed;
  68. u32 secid;
  69. };
  70. struct async {
  71. struct list_head asynclist;
  72. struct dev_state *ps;
  73. struct pid *pid;
  74. uid_t uid, euid;
  75. unsigned int signr;
  76. unsigned int ifnum;
  77. void __user *userbuffer;
  78. void __user *userurb;
  79. struct urb *urb;
  80. int status;
  81. u32 secid;
  82. };
  83. static int usbfs_snoop;
  84. module_param(usbfs_snoop, bool, S_IRUGO | S_IWUSR);
  85. MODULE_PARM_DESC(usbfs_snoop, "true to log all usbfs traffic");
  86. #define snoop(dev, format, arg...) \
  87. do { \
  88. if (usbfs_snoop) \
  89. dev_info(dev , format , ## arg); \
  90. } while (0)
  91. #define USB_DEVICE_DEV MKDEV(USB_DEVICE_MAJOR, 0)
  92. #define MAX_USBFS_BUFFER_SIZE 16384
  93. static inline int connected(struct dev_state *ps)
  94. {
  95. return (!list_empty(&ps->list) &&
  96. ps->dev->state != USB_STATE_NOTATTACHED);
  97. }
  98. static loff_t usbdev_lseek(struct file *file, loff_t offset, int orig)
  99. {
  100. loff_t ret;
  101. lock_kernel();
  102. switch (orig) {
  103. case 0:
  104. file->f_pos = offset;
  105. ret = file->f_pos;
  106. break;
  107. case 1:
  108. file->f_pos += offset;
  109. ret = file->f_pos;
  110. break;
  111. case 2:
  112. default:
  113. ret = -EINVAL;
  114. }
  115. unlock_kernel();
  116. return ret;
  117. }
  118. static ssize_t usbdev_read(struct file *file, char __user *buf, size_t nbytes,
  119. loff_t *ppos)
  120. {
  121. struct dev_state *ps = file->private_data;
  122. struct usb_device *dev = ps->dev;
  123. ssize_t ret = 0;
  124. unsigned len;
  125. loff_t pos;
  126. int i;
  127. pos = *ppos;
  128. usb_lock_device(dev);
  129. if (!connected(ps)) {
  130. ret = -ENODEV;
  131. goto err;
  132. } else if (pos < 0) {
  133. ret = -EINVAL;
  134. goto err;
  135. }
  136. if (pos < sizeof(struct usb_device_descriptor)) {
  137. /* 18 bytes - fits on the stack */
  138. struct usb_device_descriptor temp_desc;
  139. memcpy(&temp_desc, &dev->descriptor, sizeof(dev->descriptor));
  140. le16_to_cpus(&temp_desc.bcdUSB);
  141. le16_to_cpus(&temp_desc.idVendor);
  142. le16_to_cpus(&temp_desc.idProduct);
  143. le16_to_cpus(&temp_desc.bcdDevice);
  144. len = sizeof(struct usb_device_descriptor) - pos;
  145. if (len > nbytes)
  146. len = nbytes;
  147. if (copy_to_user(buf, ((char *)&temp_desc) + pos, len)) {
  148. ret = -EFAULT;
  149. goto err;
  150. }
  151. *ppos += len;
  152. buf += len;
  153. nbytes -= len;
  154. ret += len;
  155. }
  156. pos = sizeof(struct usb_device_descriptor);
  157. for (i = 0; nbytes && i < dev->descriptor.bNumConfigurations; i++) {
  158. struct usb_config_descriptor *config =
  159. (struct usb_config_descriptor *)dev->rawdescriptors[i];
  160. unsigned int length = le16_to_cpu(config->wTotalLength);
  161. if (*ppos < pos + length) {
  162. /* The descriptor may claim to be longer than it
  163. * really is. Here is the actual allocated length. */
  164. unsigned alloclen =
  165. le16_to_cpu(dev->config[i].desc.wTotalLength);
  166. len = length - (*ppos - pos);
  167. if (len > nbytes)
  168. len = nbytes;
  169. /* Simply don't write (skip over) unallocated parts */
  170. if (alloclen > (*ppos - pos)) {
  171. alloclen -= (*ppos - pos);
  172. if (copy_to_user(buf,
  173. dev->rawdescriptors[i] + (*ppos - pos),
  174. min(len, alloclen))) {
  175. ret = -EFAULT;
  176. goto err;
  177. }
  178. }
  179. *ppos += len;
  180. buf += len;
  181. nbytes -= len;
  182. ret += len;
  183. }
  184. pos += length;
  185. }
  186. err:
  187. usb_unlock_device(dev);
  188. return ret;
  189. }
  190. /*
  191. * async list handling
  192. */
  193. static struct async *alloc_async(unsigned int numisoframes)
  194. {
  195. struct async *as;
  196. as = kzalloc(sizeof(struct async), GFP_KERNEL);
  197. if (!as)
  198. return NULL;
  199. as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL);
  200. if (!as->urb) {
  201. kfree(as);
  202. return NULL;
  203. }
  204. return as;
  205. }
  206. static void free_async(struct async *as)
  207. {
  208. put_pid(as->pid);
  209. kfree(as->urb->transfer_buffer);
  210. kfree(as->urb->setup_packet);
  211. usb_free_urb(as->urb);
  212. kfree(as);
  213. }
  214. static inline void async_newpending(struct async *as)
  215. {
  216. struct dev_state *ps = as->ps;
  217. unsigned long flags;
  218. spin_lock_irqsave(&ps->lock, flags);
  219. list_add_tail(&as->asynclist, &ps->async_pending);
  220. spin_unlock_irqrestore(&ps->lock, flags);
  221. }
  222. static inline void async_removepending(struct async *as)
  223. {
  224. struct dev_state *ps = as->ps;
  225. unsigned long flags;
  226. spin_lock_irqsave(&ps->lock, flags);
  227. list_del_init(&as->asynclist);
  228. spin_unlock_irqrestore(&ps->lock, flags);
  229. }
  230. static inline struct async *async_getcompleted(struct dev_state *ps)
  231. {
  232. unsigned long flags;
  233. struct async *as = NULL;
  234. spin_lock_irqsave(&ps->lock, flags);
  235. if (!list_empty(&ps->async_completed)) {
  236. as = list_entry(ps->async_completed.next, struct async,
  237. asynclist);
  238. list_del_init(&as->asynclist);
  239. }
  240. spin_unlock_irqrestore(&ps->lock, flags);
  241. return as;
  242. }
  243. static inline struct async *async_getpending(struct dev_state *ps,
  244. void __user *userurb)
  245. {
  246. unsigned long flags;
  247. struct async *as;
  248. spin_lock_irqsave(&ps->lock, flags);
  249. list_for_each_entry(as, &ps->async_pending, asynclist)
  250. if (as->userurb == userurb) {
  251. list_del_init(&as->asynclist);
  252. spin_unlock_irqrestore(&ps->lock, flags);
  253. return as;
  254. }
  255. spin_unlock_irqrestore(&ps->lock, flags);
  256. return NULL;
  257. }
  258. static void snoop_urb(struct urb *urb, void __user *userurb)
  259. {
  260. int j;
  261. unsigned char *data = urb->transfer_buffer;
  262. if (!usbfs_snoop)
  263. return;
  264. dev_info(&urb->dev->dev, "direction=%s\n",
  265. usb_urb_dir_in(urb) ? "IN" : "OUT");
  266. dev_info(&urb->dev->dev, "userurb=%p\n", userurb);
  267. dev_info(&urb->dev->dev, "transfer_buffer_length=%d\n",
  268. urb->transfer_buffer_length);
  269. dev_info(&urb->dev->dev, "actual_length=%d\n", urb->actual_length);
  270. dev_info(&urb->dev->dev, "data: ");
  271. for (j = 0; j < urb->transfer_buffer_length; ++j)
  272. printk("%02x ", data[j]);
  273. printk("\n");
  274. }
  275. static void async_completed(struct urb *urb)
  276. {
  277. struct async *as = urb->context;
  278. struct dev_state *ps = as->ps;
  279. struct siginfo sinfo;
  280. spin_lock(&ps->lock);
  281. list_move_tail(&as->asynclist, &ps->async_completed);
  282. spin_unlock(&ps->lock);
  283. as->status = urb->status;
  284. if (as->signr) {
  285. sinfo.si_signo = as->signr;
  286. sinfo.si_errno = as->status;
  287. sinfo.si_code = SI_ASYNCIO;
  288. sinfo.si_addr = as->userurb;
  289. kill_pid_info_as_uid(as->signr, &sinfo, as->pid, as->uid,
  290. as->euid, as->secid);
  291. }
  292. snoop(&urb->dev->dev, "urb complete\n");
  293. snoop_urb(urb, as->userurb);
  294. wake_up(&ps->wait);
  295. }
  296. static void destroy_async(struct dev_state *ps, struct list_head *list)
  297. {
  298. struct async *as;
  299. unsigned long flags;
  300. spin_lock_irqsave(&ps->lock, flags);
  301. while (!list_empty(list)) {
  302. as = list_entry(list->next, struct async, asynclist);
  303. list_del_init(&as->asynclist);
  304. /* drop the spinlock so the completion handler can run */
  305. spin_unlock_irqrestore(&ps->lock, flags);
  306. usb_kill_urb(as->urb);
  307. spin_lock_irqsave(&ps->lock, flags);
  308. }
  309. spin_unlock_irqrestore(&ps->lock, flags);
  310. as = async_getcompleted(ps);
  311. while (as) {
  312. free_async(as);
  313. as = async_getcompleted(ps);
  314. }
  315. }
  316. static void destroy_async_on_interface(struct dev_state *ps,
  317. unsigned int ifnum)
  318. {
  319. struct list_head *p, *q, hitlist;
  320. unsigned long flags;
  321. INIT_LIST_HEAD(&hitlist);
  322. spin_lock_irqsave(&ps->lock, flags);
  323. list_for_each_safe(p, q, &ps->async_pending)
  324. if (ifnum == list_entry(p, struct async, asynclist)->ifnum)
  325. list_move_tail(p, &hitlist);
  326. spin_unlock_irqrestore(&ps->lock, flags);
  327. destroy_async(ps, &hitlist);
  328. }
  329. static inline void destroy_all_async(struct dev_state *ps)
  330. {
  331. destroy_async(ps, &ps->async_pending);
  332. }
  333. /*
  334. * interface claims are made only at the request of user level code,
  335. * which can also release them (explicitly or by closing files).
  336. * they're also undone when devices disconnect.
  337. */
  338. static int driver_probe(struct usb_interface *intf,
  339. const struct usb_device_id *id)
  340. {
  341. return -ENODEV;
  342. }
  343. static void driver_disconnect(struct usb_interface *intf)
  344. {
  345. struct dev_state *ps = usb_get_intfdata(intf);
  346. unsigned int ifnum = intf->altsetting->desc.bInterfaceNumber;
  347. if (!ps)
  348. return;
  349. /* NOTE: this relies on usbcore having canceled and completed
  350. * all pending I/O requests; 2.6 does that.
  351. */
  352. if (likely(ifnum < 8*sizeof(ps->ifclaimed)))
  353. clear_bit(ifnum, &ps->ifclaimed);
  354. else
  355. dev_warn(&intf->dev, "interface number %u out of range\n",
  356. ifnum);
  357. usb_set_intfdata(intf, NULL);
  358. /* force async requests to complete */
  359. destroy_async_on_interface(ps, ifnum);
  360. }
  361. /* The following routines are merely placeholders. There is no way
  362. * to inform a user task about suspend or resumes.
  363. */
  364. static int driver_suspend(struct usb_interface *intf, pm_message_t msg)
  365. {
  366. return 0;
  367. }
  368. static int driver_resume(struct usb_interface *intf)
  369. {
  370. return 0;
  371. }
  372. struct usb_driver usbfs_driver = {
  373. .name = "usbfs",
  374. .probe = driver_probe,
  375. .disconnect = driver_disconnect,
  376. .suspend = driver_suspend,
  377. .resume = driver_resume,
  378. };
  379. static int claimintf(struct dev_state *ps, unsigned int ifnum)
  380. {
  381. struct usb_device *dev = ps->dev;
  382. struct usb_interface *intf;
  383. int err;
  384. if (ifnum >= 8*sizeof(ps->ifclaimed))
  385. return -EINVAL;
  386. /* already claimed */
  387. if (test_bit(ifnum, &ps->ifclaimed))
  388. return 0;
  389. intf = usb_ifnum_to_if(dev, ifnum);
  390. if (!intf)
  391. err = -ENOENT;
  392. else
  393. err = usb_driver_claim_interface(&usbfs_driver, intf, ps);
  394. if (err == 0)
  395. set_bit(ifnum, &ps->ifclaimed);
  396. return err;
  397. }
  398. static int releaseintf(struct dev_state *ps, unsigned int ifnum)
  399. {
  400. struct usb_device *dev;
  401. struct usb_interface *intf;
  402. int err;
  403. err = -EINVAL;
  404. if (ifnum >= 8*sizeof(ps->ifclaimed))
  405. return err;
  406. dev = ps->dev;
  407. intf = usb_ifnum_to_if(dev, ifnum);
  408. if (!intf)
  409. err = -ENOENT;
  410. else if (test_and_clear_bit(ifnum, &ps->ifclaimed)) {
  411. usb_driver_release_interface(&usbfs_driver, intf);
  412. err = 0;
  413. }
  414. return err;
  415. }
  416. static int checkintf(struct dev_state *ps, unsigned int ifnum)
  417. {
  418. if (ps->dev->state != USB_STATE_CONFIGURED)
  419. return -EHOSTUNREACH;
  420. if (ifnum >= 8*sizeof(ps->ifclaimed))
  421. return -EINVAL;
  422. if (test_bit(ifnum, &ps->ifclaimed))
  423. return 0;
  424. /* if not yet claimed, claim it for the driver */
  425. dev_warn(&ps->dev->dev, "usbfs: process %d (%s) did not claim "
  426. "interface %u before use\n", task_pid_nr(current),
  427. current->comm, ifnum);
  428. return claimintf(ps, ifnum);
  429. }
  430. static int findintfep(struct usb_device *dev, unsigned int ep)
  431. {
  432. unsigned int i, j, e;
  433. struct usb_interface *intf;
  434. struct usb_host_interface *alts;
  435. struct usb_endpoint_descriptor *endpt;
  436. if (ep & ~(USB_DIR_IN|0xf))
  437. return -EINVAL;
  438. if (!dev->actconfig)
  439. return -ESRCH;
  440. for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
  441. intf = dev->actconfig->interface[i];
  442. for (j = 0; j < intf->num_altsetting; j++) {
  443. alts = &intf->altsetting[j];
  444. for (e = 0; e < alts->desc.bNumEndpoints; e++) {
  445. endpt = &alts->endpoint[e].desc;
  446. if (endpt->bEndpointAddress == ep)
  447. return alts->desc.bInterfaceNumber;
  448. }
  449. }
  450. }
  451. return -ENOENT;
  452. }
  453. static int check_ctrlrecip(struct dev_state *ps, unsigned int requesttype,
  454. unsigned int index)
  455. {
  456. int ret = 0;
  457. if (ps->dev->state != USB_STATE_ADDRESS
  458. && ps->dev->state != USB_STATE_CONFIGURED)
  459. return -EHOSTUNREACH;
  460. if (USB_TYPE_VENDOR == (USB_TYPE_MASK & requesttype))
  461. return 0;
  462. index &= 0xff;
  463. switch (requesttype & USB_RECIP_MASK) {
  464. case USB_RECIP_ENDPOINT:
  465. ret = findintfep(ps->dev, index);
  466. if (ret >= 0)
  467. ret = checkintf(ps, ret);
  468. break;
  469. case USB_RECIP_INTERFACE:
  470. ret = checkintf(ps, index);
  471. break;
  472. }
  473. return ret;
  474. }
  475. static int match_devt(struct device *dev, void *data)
  476. {
  477. return dev->devt == (dev_t) (unsigned long) data;
  478. }
  479. static struct usb_device *usbdev_lookup_by_devt(dev_t devt)
  480. {
  481. struct device *dev;
  482. dev = bus_find_device(&usb_bus_type, NULL,
  483. (void *) (unsigned long) devt, match_devt);
  484. if (!dev)
  485. return NULL;
  486. return container_of(dev, struct usb_device, dev);
  487. }
  488. /*
  489. * file operations
  490. */
  491. static int usbdev_open(struct inode *inode, struct file *file)
  492. {
  493. struct usb_device *dev = NULL;
  494. struct dev_state *ps;
  495. const struct cred *cred = current_cred();
  496. int ret;
  497. lock_kernel();
  498. /* Protect against simultaneous removal or release */
  499. mutex_lock(&usbfs_mutex);
  500. ret = -ENOMEM;
  501. ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL);
  502. if (!ps)
  503. goto out;
  504. ret = -ENOENT;
  505. /* usbdev device-node */
  506. if (imajor(inode) == USB_DEVICE_MAJOR)
  507. dev = usbdev_lookup_by_devt(inode->i_rdev);
  508. #ifdef CONFIG_USB_DEVICEFS
  509. /* procfs file */
  510. if (!dev) {
  511. dev = inode->i_private;
  512. if (dev && dev->usbfs_dentry &&
  513. dev->usbfs_dentry->d_inode == inode)
  514. usb_get_dev(dev);
  515. else
  516. dev = NULL;
  517. }
  518. #endif
  519. if (!dev || dev->state == USB_STATE_NOTATTACHED)
  520. goto out;
  521. ret = usb_autoresume_device(dev);
  522. if (ret)
  523. goto out;
  524. ret = 0;
  525. ps->dev = dev;
  526. ps->file = file;
  527. spin_lock_init(&ps->lock);
  528. INIT_LIST_HEAD(&ps->list);
  529. INIT_LIST_HEAD(&ps->async_pending);
  530. INIT_LIST_HEAD(&ps->async_completed);
  531. init_waitqueue_head(&ps->wait);
  532. ps->discsignr = 0;
  533. ps->disc_pid = get_pid(task_pid(current));
  534. ps->disc_uid = cred->uid;
  535. ps->disc_euid = cred->euid;
  536. ps->disccontext = NULL;
  537. ps->ifclaimed = 0;
  538. security_task_getsecid(current, &ps->secid);
  539. smp_wmb();
  540. list_add_tail(&ps->list, &dev->filelist);
  541. file->private_data = ps;
  542. snoop(&dev->dev, "opened by process %d: %s\n", task_pid_nr(current),
  543. current->comm);
  544. out:
  545. if (ret) {
  546. kfree(ps);
  547. usb_put_dev(dev);
  548. }
  549. mutex_unlock(&usbfs_mutex);
  550. unlock_kernel();
  551. return ret;
  552. }
  553. static int usbdev_release(struct inode *inode, struct file *file)
  554. {
  555. struct dev_state *ps = file->private_data;
  556. struct usb_device *dev = ps->dev;
  557. unsigned int ifnum;
  558. usb_lock_device(dev);
  559. /* Protect against simultaneous open */
  560. mutex_lock(&usbfs_mutex);
  561. list_del_init(&ps->list);
  562. mutex_unlock(&usbfs_mutex);
  563. for (ifnum = 0; ps->ifclaimed && ifnum < 8*sizeof(ps->ifclaimed);
  564. ifnum++) {
  565. if (test_bit(ifnum, &ps->ifclaimed))
  566. releaseintf(ps, ifnum);
  567. }
  568. destroy_all_async(ps);
  569. usb_autosuspend_device(dev);
  570. usb_unlock_device(dev);
  571. usb_put_dev(dev);
  572. put_pid(ps->disc_pid);
  573. kfree(ps);
  574. return 0;
  575. }
  576. static int proc_control(struct dev_state *ps, void __user *arg)
  577. {
  578. struct usb_device *dev = ps->dev;
  579. struct usbdevfs_ctrltransfer ctrl;
  580. unsigned int tmo;
  581. unsigned char *tbuf;
  582. unsigned wLength;
  583. int i, j, ret;
  584. if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
  585. return -EFAULT;
  586. ret = check_ctrlrecip(ps, ctrl.bRequestType, ctrl.wIndex);
  587. if (ret)
  588. return ret;
  589. wLength = ctrl.wLength; /* To suppress 64k PAGE_SIZE warning */
  590. if (wLength > PAGE_SIZE)
  591. return -EINVAL;
  592. tbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
  593. if (!tbuf)
  594. return -ENOMEM;
  595. tmo = ctrl.timeout;
  596. if (ctrl.bRequestType & 0x80) {
  597. if (ctrl.wLength && !access_ok(VERIFY_WRITE, ctrl.data,
  598. ctrl.wLength)) {
  599. free_page((unsigned long)tbuf);
  600. return -EINVAL;
  601. }
  602. snoop(&dev->dev, "control read: bRequest=%02x "
  603. "bRrequestType=%02x wValue=%04x "
  604. "wIndex=%04x wLength=%04x\n",
  605. ctrl.bRequest, ctrl.bRequestType, ctrl.wValue,
  606. ctrl.wIndex, ctrl.wLength);
  607. usb_unlock_device(dev);
  608. i = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), ctrl.bRequest,
  609. ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
  610. tbuf, ctrl.wLength, tmo);
  611. usb_lock_device(dev);
  612. if ((i > 0) && ctrl.wLength) {
  613. if (usbfs_snoop) {
  614. dev_info(&dev->dev, "control read: data ");
  615. for (j = 0; j < i; ++j)
  616. printk("%02x ", (u8)(tbuf)[j]);
  617. printk("\n");
  618. }
  619. if (copy_to_user(ctrl.data, tbuf, i)) {
  620. free_page((unsigned long)tbuf);
  621. return -EFAULT;
  622. }
  623. }
  624. } else {
  625. if (ctrl.wLength) {
  626. if (copy_from_user(tbuf, ctrl.data, ctrl.wLength)) {
  627. free_page((unsigned long)tbuf);
  628. return -EFAULT;
  629. }
  630. }
  631. snoop(&dev->dev, "control write: bRequest=%02x "
  632. "bRrequestType=%02x wValue=%04x "
  633. "wIndex=%04x wLength=%04x\n",
  634. ctrl.bRequest, ctrl.bRequestType, ctrl.wValue,
  635. ctrl.wIndex, ctrl.wLength);
  636. if (usbfs_snoop) {
  637. dev_info(&dev->dev, "control write: data: ");
  638. for (j = 0; j < ctrl.wLength; ++j)
  639. printk("%02x ", (unsigned char)(tbuf)[j]);
  640. printk("\n");
  641. }
  642. usb_unlock_device(dev);
  643. i = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), ctrl.bRequest,
  644. ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
  645. tbuf, ctrl.wLength, tmo);
  646. usb_lock_device(dev);
  647. }
  648. free_page((unsigned long)tbuf);
  649. if (i < 0 && i != -EPIPE) {
  650. dev_printk(KERN_DEBUG, &dev->dev, "usbfs: USBDEVFS_CONTROL "
  651. "failed cmd %s rqt %u rq %u len %u ret %d\n",
  652. current->comm, ctrl.bRequestType, ctrl.bRequest,
  653. ctrl.wLength, i);
  654. }
  655. return i;
  656. }
  657. static int proc_bulk(struct dev_state *ps, void __user *arg)
  658. {
  659. struct usb_device *dev = ps->dev;
  660. struct usbdevfs_bulktransfer bulk;
  661. unsigned int tmo, len1, pipe;
  662. int len2;
  663. unsigned char *tbuf;
  664. int i, j, ret;
  665. if (copy_from_user(&bulk, arg, sizeof(bulk)))
  666. return -EFAULT;
  667. ret = findintfep(ps->dev, bulk.ep);
  668. if (ret < 0)
  669. return ret;
  670. ret = checkintf(ps, ret);
  671. if (ret)
  672. return ret;
  673. if (bulk.ep & USB_DIR_IN)
  674. pipe = usb_rcvbulkpipe(dev, bulk.ep & 0x7f);
  675. else
  676. pipe = usb_sndbulkpipe(dev, bulk.ep & 0x7f);
  677. if (!usb_maxpacket(dev, pipe, !(bulk.ep & USB_DIR_IN)))
  678. return -EINVAL;
  679. len1 = bulk.len;
  680. if (len1 > MAX_USBFS_BUFFER_SIZE)
  681. return -EINVAL;
  682. if (!(tbuf = kmalloc(len1, GFP_KERNEL)))
  683. return -ENOMEM;
  684. tmo = bulk.timeout;
  685. if (bulk.ep & 0x80) {
  686. if (len1 && !access_ok(VERIFY_WRITE, bulk.data, len1)) {
  687. kfree(tbuf);
  688. return -EINVAL;
  689. }
  690. snoop(&dev->dev, "bulk read: len=0x%02x timeout=%04d\n",
  691. bulk.len, bulk.timeout);
  692. usb_unlock_device(dev);
  693. i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
  694. usb_lock_device(dev);
  695. if (!i && len2) {
  696. if (usbfs_snoop) {
  697. dev_info(&dev->dev, "bulk read: data ");
  698. for (j = 0; j < len2; ++j)
  699. printk("%02x ", (u8)(tbuf)[j]);
  700. printk("\n");
  701. }
  702. if (copy_to_user(bulk.data, tbuf, len2)) {
  703. kfree(tbuf);
  704. return -EFAULT;
  705. }
  706. }
  707. } else {
  708. if (len1) {
  709. if (copy_from_user(tbuf, bulk.data, len1)) {
  710. kfree(tbuf);
  711. return -EFAULT;
  712. }
  713. }
  714. snoop(&dev->dev, "bulk write: len=0x%02x timeout=%04d\n",
  715. bulk.len, bulk.timeout);
  716. if (usbfs_snoop) {
  717. dev_info(&dev->dev, "bulk write: data: ");
  718. for (j = 0; j < len1; ++j)
  719. printk("%02x ", (unsigned char)(tbuf)[j]);
  720. printk("\n");
  721. }
  722. usb_unlock_device(dev);
  723. i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
  724. usb_lock_device(dev);
  725. }
  726. kfree(tbuf);
  727. if (i < 0)
  728. return i;
  729. return len2;
  730. }
  731. static int proc_resetep(struct dev_state *ps, void __user *arg)
  732. {
  733. unsigned int ep;
  734. int ret;
  735. if (get_user(ep, (unsigned int __user *)arg))
  736. return -EFAULT;
  737. ret = findintfep(ps->dev, ep);
  738. if (ret < 0)
  739. return ret;
  740. ret = checkintf(ps, ret);
  741. if (ret)
  742. return ret;
  743. usb_settoggle(ps->dev, ep & 0xf, !(ep & USB_DIR_IN), 0);
  744. return 0;
  745. }
  746. static int proc_clearhalt(struct dev_state *ps, void __user *arg)
  747. {
  748. unsigned int ep;
  749. int pipe;
  750. int ret;
  751. if (get_user(ep, (unsigned int __user *)arg))
  752. return -EFAULT;
  753. ret = findintfep(ps->dev, ep);
  754. if (ret < 0)
  755. return ret;
  756. ret = checkintf(ps, ret);
  757. if (ret)
  758. return ret;
  759. if (ep & USB_DIR_IN)
  760. pipe = usb_rcvbulkpipe(ps->dev, ep & 0x7f);
  761. else
  762. pipe = usb_sndbulkpipe(ps->dev, ep & 0x7f);
  763. return usb_clear_halt(ps->dev, pipe);
  764. }
  765. static int proc_getdriver(struct dev_state *ps, void __user *arg)
  766. {
  767. struct usbdevfs_getdriver gd;
  768. struct usb_interface *intf;
  769. int ret;
  770. if (copy_from_user(&gd, arg, sizeof(gd)))
  771. return -EFAULT;
  772. intf = usb_ifnum_to_if(ps->dev, gd.interface);
  773. if (!intf || !intf->dev.driver)
  774. ret = -ENODATA;
  775. else {
  776. strncpy(gd.driver, intf->dev.driver->name,
  777. sizeof(gd.driver));
  778. ret = (copy_to_user(arg, &gd, sizeof(gd)) ? -EFAULT : 0);
  779. }
  780. return ret;
  781. }
  782. static int proc_connectinfo(struct dev_state *ps, void __user *arg)
  783. {
  784. struct usbdevfs_connectinfo ci;
  785. ci.devnum = ps->dev->devnum;
  786. ci.slow = ps->dev->speed == USB_SPEED_LOW;
  787. if (copy_to_user(arg, &ci, sizeof(ci)))
  788. return -EFAULT;
  789. return 0;
  790. }
  791. static int proc_resetdevice(struct dev_state *ps)
  792. {
  793. return usb_reset_device(ps->dev);
  794. }
  795. static int proc_setintf(struct dev_state *ps, void __user *arg)
  796. {
  797. struct usbdevfs_setinterface setintf;
  798. int ret;
  799. if (copy_from_user(&setintf, arg, sizeof(setintf)))
  800. return -EFAULT;
  801. if ((ret = checkintf(ps, setintf.interface)))
  802. return ret;
  803. return usb_set_interface(ps->dev, setintf.interface,
  804. setintf.altsetting);
  805. }
  806. static int proc_setconfig(struct dev_state *ps, void __user *arg)
  807. {
  808. int u;
  809. int status = 0;
  810. struct usb_host_config *actconfig;
  811. if (get_user(u, (int __user *)arg))
  812. return -EFAULT;
  813. actconfig = ps->dev->actconfig;
  814. /* Don't touch the device if any interfaces are claimed.
  815. * It could interfere with other drivers' operations, and if
  816. * an interface is claimed by usbfs it could easily deadlock.
  817. */
  818. if (actconfig) {
  819. int i;
  820. for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
  821. if (usb_interface_claimed(actconfig->interface[i])) {
  822. dev_warn(&ps->dev->dev,
  823. "usbfs: interface %d claimed by %s "
  824. "while '%s' sets config #%d\n",
  825. actconfig->interface[i]
  826. ->cur_altsetting
  827. ->desc.bInterfaceNumber,
  828. actconfig->interface[i]
  829. ->dev.driver->name,
  830. current->comm, u);
  831. status = -EBUSY;
  832. break;
  833. }
  834. }
  835. }
  836. /* SET_CONFIGURATION is often abused as a "cheap" driver reset,
  837. * so avoid usb_set_configuration()'s kick to sysfs
  838. */
  839. if (status == 0) {
  840. if (actconfig && actconfig->desc.bConfigurationValue == u)
  841. status = usb_reset_configuration(ps->dev);
  842. else
  843. status = usb_set_configuration(ps->dev, u);
  844. }
  845. return status;
  846. }
  847. static int proc_do_submiturb(struct dev_state *ps, struct usbdevfs_urb *uurb,
  848. struct usbdevfs_iso_packet_desc __user *iso_frame_desc,
  849. void __user *arg)
  850. {
  851. struct usbdevfs_iso_packet_desc *isopkt = NULL;
  852. struct usb_host_endpoint *ep;
  853. struct async *as;
  854. struct usb_ctrlrequest *dr = NULL;
  855. const struct cred *cred = current_cred();
  856. unsigned int u, totlen, isofrmlen;
  857. int ret, ifnum = -1;
  858. int is_in;
  859. if (uurb->flags & ~(USBDEVFS_URB_ISO_ASAP |
  860. USBDEVFS_URB_SHORT_NOT_OK |
  861. USBDEVFS_URB_NO_FSBR |
  862. USBDEVFS_URB_ZERO_PACKET |
  863. USBDEVFS_URB_NO_INTERRUPT))
  864. return -EINVAL;
  865. if (!uurb->buffer)
  866. return -EINVAL;
  867. if (!(uurb->type == USBDEVFS_URB_TYPE_CONTROL &&
  868. (uurb->endpoint & ~USB_ENDPOINT_DIR_MASK) == 0)) {
  869. ifnum = findintfep(ps->dev, uurb->endpoint);
  870. if (ifnum < 0)
  871. return ifnum;
  872. ret = checkintf(ps, ifnum);
  873. if (ret)
  874. return ret;
  875. }
  876. if ((uurb->endpoint & USB_ENDPOINT_DIR_MASK) != 0) {
  877. is_in = 1;
  878. ep = ps->dev->ep_in[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
  879. } else {
  880. is_in = 0;
  881. ep = ps->dev->ep_out[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
  882. }
  883. if (!ep)
  884. return -ENOENT;
  885. switch(uurb->type) {
  886. case USBDEVFS_URB_TYPE_CONTROL:
  887. if (!usb_endpoint_xfer_control(&ep->desc))
  888. return -EINVAL;
  889. /* min 8 byte setup packet,
  890. * max 8 byte setup plus an arbitrary data stage */
  891. if (uurb->buffer_length < 8 ||
  892. uurb->buffer_length > (8 + MAX_USBFS_BUFFER_SIZE))
  893. return -EINVAL;
  894. dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
  895. if (!dr)
  896. return -ENOMEM;
  897. if (copy_from_user(dr, uurb->buffer, 8)) {
  898. kfree(dr);
  899. return -EFAULT;
  900. }
  901. if (uurb->buffer_length < (le16_to_cpup(&dr->wLength) + 8)) {
  902. kfree(dr);
  903. return -EINVAL;
  904. }
  905. ret = check_ctrlrecip(ps, dr->bRequestType,
  906. le16_to_cpup(&dr->wIndex));
  907. if (ret) {
  908. kfree(dr);
  909. return ret;
  910. }
  911. uurb->number_of_packets = 0;
  912. uurb->buffer_length = le16_to_cpup(&dr->wLength);
  913. uurb->buffer += 8;
  914. if ((dr->bRequestType & USB_DIR_IN) && uurb->buffer_length) {
  915. is_in = 1;
  916. uurb->endpoint |= USB_DIR_IN;
  917. } else {
  918. is_in = 0;
  919. uurb->endpoint &= ~USB_DIR_IN;
  920. }
  921. if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
  922. uurb->buffer, uurb->buffer_length)) {
  923. kfree(dr);
  924. return -EFAULT;
  925. }
  926. snoop(&ps->dev->dev, "control urb: bRequest=%02x "
  927. "bRrequestType=%02x wValue=%04x "
  928. "wIndex=%04x wLength=%04x\n",
  929. dr->bRequest, dr->bRequestType,
  930. __le16_to_cpup(&dr->wValue),
  931. __le16_to_cpup(&dr->wIndex),
  932. __le16_to_cpup(&dr->wLength));
  933. break;
  934. case USBDEVFS_URB_TYPE_BULK:
  935. switch (usb_endpoint_type(&ep->desc)) {
  936. case USB_ENDPOINT_XFER_CONTROL:
  937. case USB_ENDPOINT_XFER_ISOC:
  938. return -EINVAL;
  939. /* allow single-shot interrupt transfers, at bogus rates */
  940. }
  941. uurb->number_of_packets = 0;
  942. if (uurb->buffer_length > MAX_USBFS_BUFFER_SIZE)
  943. return -EINVAL;
  944. if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
  945. uurb->buffer, uurb->buffer_length))
  946. return -EFAULT;
  947. snoop(&ps->dev->dev, "bulk urb\n");
  948. break;
  949. case USBDEVFS_URB_TYPE_ISO:
  950. /* arbitrary limit */
  951. if (uurb->number_of_packets < 1 ||
  952. uurb->number_of_packets > 128)
  953. return -EINVAL;
  954. if (!usb_endpoint_xfer_isoc(&ep->desc))
  955. return -EINVAL;
  956. isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) *
  957. uurb->number_of_packets;
  958. if (!(isopkt = kmalloc(isofrmlen, GFP_KERNEL)))
  959. return -ENOMEM;
  960. if (copy_from_user(isopkt, iso_frame_desc, isofrmlen)) {
  961. kfree(isopkt);
  962. return -EFAULT;
  963. }
  964. for (totlen = u = 0; u < uurb->number_of_packets; u++) {
  965. /* arbitrary limit,
  966. * sufficient for USB 2.0 high-bandwidth iso */
  967. if (isopkt[u].length > 8192) {
  968. kfree(isopkt);
  969. return -EINVAL;
  970. }
  971. totlen += isopkt[u].length;
  972. }
  973. if (totlen > 32768) {
  974. kfree(isopkt);
  975. return -EINVAL;
  976. }
  977. uurb->buffer_length = totlen;
  978. snoop(&ps->dev->dev, "iso urb\n");
  979. break;
  980. case USBDEVFS_URB_TYPE_INTERRUPT:
  981. uurb->number_of_packets = 0;
  982. if (!usb_endpoint_xfer_int(&ep->desc))
  983. return -EINVAL;
  984. if (uurb->buffer_length > MAX_USBFS_BUFFER_SIZE)
  985. return -EINVAL;
  986. if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
  987. uurb->buffer, uurb->buffer_length))
  988. return -EFAULT;
  989. snoop(&ps->dev->dev, "interrupt urb\n");
  990. break;
  991. default:
  992. return -EINVAL;
  993. }
  994. as = alloc_async(uurb->number_of_packets);
  995. if (!as) {
  996. kfree(isopkt);
  997. kfree(dr);
  998. return -ENOMEM;
  999. }
  1000. as->urb->transfer_buffer = kmalloc(uurb->buffer_length, GFP_KERNEL);
  1001. if (!as->urb->transfer_buffer) {
  1002. kfree(isopkt);
  1003. kfree(dr);
  1004. free_async(as);
  1005. return -ENOMEM;
  1006. }
  1007. as->urb->dev = ps->dev;
  1008. as->urb->pipe = (uurb->type << 30) |
  1009. __create_pipe(ps->dev, uurb->endpoint & 0xf) |
  1010. (uurb->endpoint & USB_DIR_IN);
  1011. /* This tedious sequence is necessary because the URB_* flags
  1012. * are internal to the kernel and subject to change, whereas
  1013. * the USBDEVFS_URB_* flags are a user API and must not be changed.
  1014. */
  1015. u = (is_in ? URB_DIR_IN : URB_DIR_OUT);
  1016. if (uurb->flags & USBDEVFS_URB_ISO_ASAP)
  1017. u |= URB_ISO_ASAP;
  1018. if (uurb->flags & USBDEVFS_URB_SHORT_NOT_OK)
  1019. u |= URB_SHORT_NOT_OK;
  1020. if (uurb->flags & USBDEVFS_URB_NO_FSBR)
  1021. u |= URB_NO_FSBR;
  1022. if (uurb->flags & USBDEVFS_URB_ZERO_PACKET)
  1023. u |= URB_ZERO_PACKET;
  1024. if (uurb->flags & USBDEVFS_URB_NO_INTERRUPT)
  1025. u |= URB_NO_INTERRUPT;
  1026. as->urb->transfer_flags = u;
  1027. as->urb->transfer_buffer_length = uurb->buffer_length;
  1028. as->urb->setup_packet = (unsigned char *)dr;
  1029. as->urb->start_frame = uurb->start_frame;
  1030. as->urb->number_of_packets = uurb->number_of_packets;
  1031. if (uurb->type == USBDEVFS_URB_TYPE_ISO ||
  1032. ps->dev->speed == USB_SPEED_HIGH)
  1033. as->urb->interval = 1 << min(15, ep->desc.bInterval - 1);
  1034. else
  1035. as->urb->interval = ep->desc.bInterval;
  1036. as->urb->context = as;
  1037. as->urb->complete = async_completed;
  1038. for (totlen = u = 0; u < uurb->number_of_packets; u++) {
  1039. as->urb->iso_frame_desc[u].offset = totlen;
  1040. as->urb->iso_frame_desc[u].length = isopkt[u].length;
  1041. totlen += isopkt[u].length;
  1042. }
  1043. kfree(isopkt);
  1044. as->ps = ps;
  1045. as->userurb = arg;
  1046. if (uurb->endpoint & USB_DIR_IN)
  1047. as->userbuffer = uurb->buffer;
  1048. else
  1049. as->userbuffer = NULL;
  1050. as->signr = uurb->signr;
  1051. as->ifnum = ifnum;
  1052. as->pid = get_pid(task_pid(current));
  1053. as->uid = cred->uid;
  1054. as->euid = cred->euid;
  1055. security_task_getsecid(current, &as->secid);
  1056. if (!is_in) {
  1057. if (copy_from_user(as->urb->transfer_buffer, uurb->buffer,
  1058. as->urb->transfer_buffer_length)) {
  1059. free_async(as);
  1060. return -EFAULT;
  1061. }
  1062. }
  1063. snoop_urb(as->urb, as->userurb);
  1064. async_newpending(as);
  1065. if ((ret = usb_submit_urb(as->urb, GFP_KERNEL))) {
  1066. dev_printk(KERN_DEBUG, &ps->dev->dev,
  1067. "usbfs: usb_submit_urb returned %d\n", ret);
  1068. async_removepending(as);
  1069. free_async(as);
  1070. return ret;
  1071. }
  1072. return 0;
  1073. }
  1074. static int proc_submiturb(struct dev_state *ps, void __user *arg)
  1075. {
  1076. struct usbdevfs_urb uurb;
  1077. if (copy_from_user(&uurb, arg, sizeof(uurb)))
  1078. return -EFAULT;
  1079. return proc_do_submiturb(ps, &uurb,
  1080. (((struct usbdevfs_urb __user *)arg)->iso_frame_desc),
  1081. arg);
  1082. }
  1083. static int proc_unlinkurb(struct dev_state *ps, void __user *arg)
  1084. {
  1085. struct async *as;
  1086. as = async_getpending(ps, arg);
  1087. if (!as)
  1088. return -EINVAL;
  1089. usb_kill_urb(as->urb);
  1090. return 0;
  1091. }
  1092. static int processcompl(struct async *as, void __user * __user *arg)
  1093. {
  1094. struct urb *urb = as->urb;
  1095. struct usbdevfs_urb __user *userurb = as->userurb;
  1096. void __user *addr = as->userurb;
  1097. unsigned int i;
  1098. if (as->userbuffer)
  1099. if (copy_to_user(as->userbuffer, urb->transfer_buffer,
  1100. urb->transfer_buffer_length))
  1101. return -EFAULT;
  1102. if (put_user(as->status, &userurb->status))
  1103. return -EFAULT;
  1104. if (put_user(urb->actual_length, &userurb->actual_length))
  1105. return -EFAULT;
  1106. if (put_user(urb->error_count, &userurb->error_count))
  1107. return -EFAULT;
  1108. if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
  1109. for (i = 0; i < urb->number_of_packets; i++) {
  1110. if (put_user(urb->iso_frame_desc[i].actual_length,
  1111. &userurb->iso_frame_desc[i].actual_length))
  1112. return -EFAULT;
  1113. if (put_user(urb->iso_frame_desc[i].status,
  1114. &userurb->iso_frame_desc[i].status))
  1115. return -EFAULT;
  1116. }
  1117. }
  1118. free_async(as);
  1119. if (put_user(addr, (void __user * __user *)arg))
  1120. return -EFAULT;
  1121. return 0;
  1122. }
  1123. static struct async *reap_as(struct dev_state *ps)
  1124. {
  1125. DECLARE_WAITQUEUE(wait, current);
  1126. struct async *as = NULL;
  1127. struct usb_device *dev = ps->dev;
  1128. add_wait_queue(&ps->wait, &wait);
  1129. for (;;) {
  1130. __set_current_state(TASK_INTERRUPTIBLE);
  1131. as = async_getcompleted(ps);
  1132. if (as)
  1133. break;
  1134. if (signal_pending(current))
  1135. break;
  1136. usb_unlock_device(dev);
  1137. schedule();
  1138. usb_lock_device(dev);
  1139. }
  1140. remove_wait_queue(&ps->wait, &wait);
  1141. set_current_state(TASK_RUNNING);
  1142. return as;
  1143. }
  1144. static int proc_reapurb(struct dev_state *ps, void __user *arg)
  1145. {
  1146. struct async *as = reap_as(ps);
  1147. if (as)
  1148. return processcompl(as, (void __user * __user *)arg);
  1149. if (signal_pending(current))
  1150. return -EINTR;
  1151. return -EIO;
  1152. }
  1153. static int proc_reapurbnonblock(struct dev_state *ps, void __user *arg)
  1154. {
  1155. struct async *as;
  1156. if (!(as = async_getcompleted(ps)))
  1157. return -EAGAIN;
  1158. return processcompl(as, (void __user * __user *)arg);
  1159. }
  1160. #ifdef CONFIG_COMPAT
  1161. static int get_urb32(struct usbdevfs_urb *kurb,
  1162. struct usbdevfs_urb32 __user *uurb)
  1163. {
  1164. __u32 uptr;
  1165. if (get_user(kurb->type, &uurb->type) ||
  1166. __get_user(kurb->endpoint, &uurb->endpoint) ||
  1167. __get_user(kurb->status, &uurb->status) ||
  1168. __get_user(kurb->flags, &uurb->flags) ||
  1169. __get_user(kurb->buffer_length, &uurb->buffer_length) ||
  1170. __get_user(kurb->actual_length, &uurb->actual_length) ||
  1171. __get_user(kurb->start_frame, &uurb->start_frame) ||
  1172. __get_user(kurb->number_of_packets, &uurb->number_of_packets) ||
  1173. __get_user(kurb->error_count, &uurb->error_count) ||
  1174. __get_user(kurb->signr, &uurb->signr))
  1175. return -EFAULT;
  1176. if (__get_user(uptr, &uurb->buffer))
  1177. return -EFAULT;
  1178. kurb->buffer = compat_ptr(uptr);
  1179. if (__get_user(uptr, &uurb->usercontext))
  1180. return -EFAULT;
  1181. kurb->usercontext = compat_ptr(uptr);
  1182. return 0;
  1183. }
  1184. static int proc_submiturb_compat(struct dev_state *ps, void __user *arg)
  1185. {
  1186. struct usbdevfs_urb uurb;
  1187. if (get_urb32(&uurb, (struct usbdevfs_urb32 __user *)arg))
  1188. return -EFAULT;
  1189. return proc_do_submiturb(ps, &uurb,
  1190. ((struct usbdevfs_urb32 __user *)arg)->iso_frame_desc,
  1191. arg);
  1192. }
  1193. static int processcompl_compat(struct async *as, void __user * __user *arg)
  1194. {
  1195. struct urb *urb = as->urb;
  1196. struct usbdevfs_urb32 __user *userurb = as->userurb;
  1197. void __user *addr = as->userurb;
  1198. unsigned int i;
  1199. if (as->userbuffer)
  1200. if (copy_to_user(as->userbuffer, urb->transfer_buffer,
  1201. urb->transfer_buffer_length))
  1202. return -EFAULT;
  1203. if (put_user(as->status, &userurb->status))
  1204. return -EFAULT;
  1205. if (put_user(urb->actual_length, &userurb->actual_length))
  1206. return -EFAULT;
  1207. if (put_user(urb->error_count, &userurb->error_count))
  1208. return -EFAULT;
  1209. if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
  1210. for (i = 0; i < urb->number_of_packets; i++) {
  1211. if (put_user(urb->iso_frame_desc[i].actual_length,
  1212. &userurb->iso_frame_desc[i].actual_length))
  1213. return -EFAULT;
  1214. if (put_user(urb->iso_frame_desc[i].status,
  1215. &userurb->iso_frame_desc[i].status))
  1216. return -EFAULT;
  1217. }
  1218. }
  1219. free_async(as);
  1220. if (put_user(ptr_to_compat(addr), (u32 __user *)arg))
  1221. return -EFAULT;
  1222. return 0;
  1223. }
  1224. static int proc_reapurb_compat(struct dev_state *ps, void __user *arg)
  1225. {
  1226. struct async *as = reap_as(ps);
  1227. if (as)
  1228. return processcompl_compat(as, (void __user * __user *)arg);
  1229. if (signal_pending(current))
  1230. return -EINTR;
  1231. return -EIO;
  1232. }
  1233. static int proc_reapurbnonblock_compat(struct dev_state *ps, void __user *arg)
  1234. {
  1235. struct async *as;
  1236. if (!(as = async_getcompleted(ps)))
  1237. return -EAGAIN;
  1238. return processcompl_compat(as, (void __user * __user *)arg);
  1239. }
  1240. #endif
  1241. static int proc_disconnectsignal(struct dev_state *ps, void __user *arg)
  1242. {
  1243. struct usbdevfs_disconnectsignal ds;
  1244. if (copy_from_user(&ds, arg, sizeof(ds)))
  1245. return -EFAULT;
  1246. ps->discsignr = ds.signr;
  1247. ps->disccontext = ds.context;
  1248. return 0;
  1249. }
  1250. static int proc_claiminterface(struct dev_state *ps, void __user *arg)
  1251. {
  1252. unsigned int ifnum;
  1253. if (get_user(ifnum, (unsigned int __user *)arg))
  1254. return -EFAULT;
  1255. return claimintf(ps, ifnum);
  1256. }
  1257. static int proc_releaseinterface(struct dev_state *ps, void __user *arg)
  1258. {
  1259. unsigned int ifnum;
  1260. int ret;
  1261. if (get_user(ifnum, (unsigned int __user *)arg))
  1262. return -EFAULT;
  1263. if ((ret = releaseintf(ps, ifnum)) < 0)
  1264. return ret;
  1265. destroy_async_on_interface (ps, ifnum);
  1266. return 0;
  1267. }
  1268. static int proc_ioctl(struct dev_state *ps, struct usbdevfs_ioctl *ctl)
  1269. {
  1270. int size;
  1271. void *buf = NULL;
  1272. int retval = 0;
  1273. struct usb_interface *intf = NULL;
  1274. struct usb_driver *driver = NULL;
  1275. /* alloc buffer */
  1276. if ((size = _IOC_SIZE(ctl->ioctl_code)) > 0) {
  1277. if ((buf = kmalloc(size, GFP_KERNEL)) == NULL)
  1278. return -ENOMEM;
  1279. if ((_IOC_DIR(ctl->ioctl_code) & _IOC_WRITE)) {
  1280. if (copy_from_user(buf, ctl->data, size)) {
  1281. kfree(buf);
  1282. return -EFAULT;
  1283. }
  1284. } else {
  1285. memset(buf, 0, size);
  1286. }
  1287. }
  1288. if (!connected(ps)) {
  1289. kfree(buf);
  1290. return -ENODEV;
  1291. }
  1292. if (ps->dev->state != USB_STATE_CONFIGURED)
  1293. retval = -EHOSTUNREACH;
  1294. else if (!(intf = usb_ifnum_to_if(ps->dev, ctl->ifno)))
  1295. retval = -EINVAL;
  1296. else switch (ctl->ioctl_code) {
  1297. /* disconnect kernel driver from interface */
  1298. case USBDEVFS_DISCONNECT:
  1299. if (intf->dev.driver) {
  1300. driver = to_usb_driver(intf->dev.driver);
  1301. dev_dbg(&intf->dev, "disconnect by usbfs\n");
  1302. usb_driver_release_interface(driver, intf);
  1303. } else
  1304. retval = -ENODATA;
  1305. break;
  1306. /* let kernel drivers try to (re)bind to the interface */
  1307. case USBDEVFS_CONNECT:
  1308. if (!intf->dev.driver)
  1309. retval = device_attach(&intf->dev);
  1310. else
  1311. retval = -EBUSY;
  1312. break;
  1313. /* talk directly to the interface's driver */
  1314. default:
  1315. if (intf->dev.driver)
  1316. driver = to_usb_driver(intf->dev.driver);
  1317. if (driver == NULL || driver->ioctl == NULL) {
  1318. retval = -ENOTTY;
  1319. } else {
  1320. retval = driver->ioctl(intf, ctl->ioctl_code, buf);
  1321. if (retval == -ENOIOCTLCMD)
  1322. retval = -ENOTTY;
  1323. }
  1324. }
  1325. /* cleanup and return */
  1326. if (retval >= 0
  1327. && (_IOC_DIR(ctl->ioctl_code) & _IOC_READ) != 0
  1328. && size > 0
  1329. && copy_to_user(ctl->data, buf, size) != 0)
  1330. retval = -EFAULT;
  1331. kfree(buf);
  1332. return retval;
  1333. }
  1334. static int proc_ioctl_default(struct dev_state *ps, void __user *arg)
  1335. {
  1336. struct usbdevfs_ioctl ctrl;
  1337. if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
  1338. return -EFAULT;
  1339. return proc_ioctl(ps, &ctrl);
  1340. }
  1341. #ifdef CONFIG_COMPAT
  1342. static int proc_ioctl_compat(struct dev_state *ps, compat_uptr_t arg)
  1343. {
  1344. struct usbdevfs_ioctl32 __user *uioc;
  1345. struct usbdevfs_ioctl ctrl;
  1346. u32 udata;
  1347. uioc = compat_ptr((long)arg);
  1348. if (get_user(ctrl.ifno, &uioc->ifno) ||
  1349. get_user(ctrl.ioctl_code, &uioc->ioctl_code) ||
  1350. __get_user(udata, &uioc->data))
  1351. return -EFAULT;
  1352. ctrl.data = compat_ptr(udata);
  1353. return proc_ioctl(ps, &ctrl);
  1354. }
  1355. #endif
  1356. /*
  1357. * NOTE: All requests here that have interface numbers as parameters
  1358. * are assuming that somehow the configuration has been prevented from
  1359. * changing. But there's no mechanism to ensure that...
  1360. */
  1361. static int usbdev_ioctl(struct inode *inode, struct file *file,
  1362. unsigned int cmd, unsigned long arg)
  1363. {
  1364. struct dev_state *ps = file->private_data;
  1365. struct usb_device *dev = ps->dev;
  1366. void __user *p = (void __user *)arg;
  1367. int ret = -ENOTTY;
  1368. if (!(file->f_mode & FMODE_WRITE))
  1369. return -EPERM;
  1370. usb_lock_device(dev);
  1371. if (!connected(ps)) {
  1372. usb_unlock_device(dev);
  1373. return -ENODEV;
  1374. }
  1375. switch (cmd) {
  1376. case USBDEVFS_CONTROL:
  1377. snoop(&dev->dev, "%s: CONTROL\n", __func__);
  1378. ret = proc_control(ps, p);
  1379. if (ret >= 0)
  1380. inode->i_mtime = CURRENT_TIME;
  1381. break;
  1382. case USBDEVFS_BULK:
  1383. snoop(&dev->dev, "%s: BULK\n", __func__);
  1384. ret = proc_bulk(ps, p);
  1385. if (ret >= 0)
  1386. inode->i_mtime = CURRENT_TIME;
  1387. break;
  1388. case USBDEVFS_RESETEP:
  1389. snoop(&dev->dev, "%s: RESETEP\n", __func__);
  1390. ret = proc_resetep(ps, p);
  1391. if (ret >= 0)
  1392. inode->i_mtime = CURRENT_TIME;
  1393. break;
  1394. case USBDEVFS_RESET:
  1395. snoop(&dev->dev, "%s: RESET\n", __func__);
  1396. ret = proc_resetdevice(ps);
  1397. break;
  1398. case USBDEVFS_CLEAR_HALT:
  1399. snoop(&dev->dev, "%s: CLEAR_HALT\n", __func__);
  1400. ret = proc_clearhalt(ps, p);
  1401. if (ret >= 0)
  1402. inode->i_mtime = CURRENT_TIME;
  1403. break;
  1404. case USBDEVFS_GETDRIVER:
  1405. snoop(&dev->dev, "%s: GETDRIVER\n", __func__);
  1406. ret = proc_getdriver(ps, p);
  1407. break;
  1408. case USBDEVFS_CONNECTINFO:
  1409. snoop(&dev->dev, "%s: CONNECTINFO\n", __func__);
  1410. ret = proc_connectinfo(ps, p);
  1411. break;
  1412. case USBDEVFS_SETINTERFACE:
  1413. snoop(&dev->dev, "%s: SETINTERFACE\n", __func__);
  1414. ret = proc_setintf(ps, p);
  1415. break;
  1416. case USBDEVFS_SETCONFIGURATION:
  1417. snoop(&dev->dev, "%s: SETCONFIGURATION\n", __func__);
  1418. ret = proc_setconfig(ps, p);
  1419. break;
  1420. case USBDEVFS_SUBMITURB:
  1421. snoop(&dev->dev, "%s: SUBMITURB\n", __func__);
  1422. ret = proc_submiturb(ps, p);
  1423. if (ret >= 0)
  1424. inode->i_mtime = CURRENT_TIME;
  1425. break;
  1426. #ifdef CONFIG_COMPAT
  1427. case USBDEVFS_SUBMITURB32:
  1428. snoop(&dev->dev, "%s: SUBMITURB32\n", __func__);
  1429. ret = proc_submiturb_compat(ps, p);
  1430. if (ret >= 0)
  1431. inode->i_mtime = CURRENT_TIME;
  1432. break;
  1433. case USBDEVFS_REAPURB32:
  1434. snoop(&dev->dev, "%s: REAPURB32\n", __func__);
  1435. ret = proc_reapurb_compat(ps, p);
  1436. break;
  1437. case USBDEVFS_REAPURBNDELAY32:
  1438. snoop(&dev->dev, "%s: REAPURBDELAY32\n", __func__);
  1439. ret = proc_reapurbnonblock_compat(ps, p);
  1440. break;
  1441. case USBDEVFS_IOCTL32:
  1442. snoop(&dev->dev, "%s: IOCTL\n", __func__);
  1443. ret = proc_ioctl_compat(ps, ptr_to_compat(p));
  1444. break;
  1445. #endif
  1446. case USBDEVFS_DISCARDURB:
  1447. snoop(&dev->dev, "%s: DISCARDURB\n", __func__);
  1448. ret = proc_unlinkurb(ps, p);
  1449. break;
  1450. case USBDEVFS_REAPURB:
  1451. snoop(&dev->dev, "%s: REAPURB\n", __func__);
  1452. ret = proc_reapurb(ps, p);
  1453. break;
  1454. case USBDEVFS_REAPURBNDELAY:
  1455. snoop(&dev->dev, "%s: REAPURBDELAY\n", __func__);
  1456. ret = proc_reapurbnonblock(ps, p);
  1457. break;
  1458. case USBDEVFS_DISCSIGNAL:
  1459. snoop(&dev->dev, "%s: DISCSIGNAL\n", __func__);
  1460. ret = proc_disconnectsignal(ps, p);
  1461. break;
  1462. case USBDEVFS_CLAIMINTERFACE:
  1463. snoop(&dev->dev, "%s: CLAIMINTERFACE\n", __func__);
  1464. ret = proc_claiminterface(ps, p);
  1465. break;
  1466. case USBDEVFS_RELEASEINTERFACE:
  1467. snoop(&dev->dev, "%s: RELEASEINTERFACE\n", __func__);
  1468. ret = proc_releaseinterface(ps, p);
  1469. break;
  1470. case USBDEVFS_IOCTL:
  1471. snoop(&dev->dev, "%s: IOCTL\n", __func__);
  1472. ret = proc_ioctl_default(ps, p);
  1473. break;
  1474. }
  1475. usb_unlock_device(dev);
  1476. if (ret >= 0)
  1477. inode->i_atime = CURRENT_TIME;
  1478. return ret;
  1479. }
  1480. /* No kernel lock - fine */
  1481. static unsigned int usbdev_poll(struct file *file,
  1482. struct poll_table_struct *wait)
  1483. {
  1484. struct dev_state *ps = file->private_data;
  1485. unsigned int mask = 0;
  1486. poll_wait(file, &ps->wait, wait);
  1487. if (file->f_mode & FMODE_WRITE && !list_empty(&ps->async_completed))
  1488. mask |= POLLOUT | POLLWRNORM;
  1489. if (!connected(ps))
  1490. mask |= POLLERR | POLLHUP;
  1491. return mask;
  1492. }
  1493. const struct file_operations usbdev_file_operations = {
  1494. .owner = THIS_MODULE,
  1495. .llseek = usbdev_lseek,
  1496. .read = usbdev_read,
  1497. .poll = usbdev_poll,
  1498. .ioctl = usbdev_ioctl,
  1499. .open = usbdev_open,
  1500. .release = usbdev_release,
  1501. };
  1502. static void usbdev_remove(struct usb_device *udev)
  1503. {
  1504. struct dev_state *ps;
  1505. struct siginfo sinfo;
  1506. while (!list_empty(&udev->filelist)) {
  1507. ps = list_entry(udev->filelist.next, struct dev_state, list);
  1508. destroy_all_async(ps);
  1509. wake_up_all(&ps->wait);
  1510. list_del_init(&ps->list);
  1511. if (ps->discsignr) {
  1512. sinfo.si_signo = ps->discsignr;
  1513. sinfo.si_errno = EPIPE;
  1514. sinfo.si_code = SI_ASYNCIO;
  1515. sinfo.si_addr = ps->disccontext;
  1516. kill_pid_info_as_uid(ps->discsignr, &sinfo,
  1517. ps->disc_pid, ps->disc_uid,
  1518. ps->disc_euid, ps->secid);
  1519. }
  1520. }
  1521. }
  1522. #ifdef CONFIG_USB_DEVICE_CLASS
  1523. static struct class *usb_classdev_class;
  1524. static int usb_classdev_add(struct usb_device *dev)
  1525. {
  1526. struct device *cldev;
  1527. cldev = device_create(usb_classdev_class, &dev->dev, dev->dev.devt,
  1528. NULL, "usbdev%d.%d", dev->bus->busnum,
  1529. dev->devnum);
  1530. if (IS_ERR(cldev))
  1531. return PTR_ERR(cldev);
  1532. dev->usb_classdev = cldev;
  1533. return 0;
  1534. }
  1535. static void usb_classdev_remove(struct usb_device *dev)
  1536. {
  1537. if (dev->usb_classdev)
  1538. device_unregister(dev->usb_classdev);
  1539. }
  1540. #else
  1541. #define usb_classdev_add(dev) 0
  1542. #define usb_classdev_remove(dev) do {} while (0)
  1543. #endif
  1544. static int usbdev_notify(struct notifier_block *self,
  1545. unsigned long action, void *dev)
  1546. {
  1547. switch (action) {
  1548. case USB_DEVICE_ADD:
  1549. if (usb_classdev_add(dev))
  1550. return NOTIFY_BAD;
  1551. break;
  1552. case USB_DEVICE_REMOVE:
  1553. usb_classdev_remove(dev);
  1554. usbdev_remove(dev);
  1555. break;
  1556. }
  1557. return NOTIFY_OK;
  1558. }
  1559. static struct notifier_block usbdev_nb = {
  1560. .notifier_call = usbdev_notify,
  1561. };
  1562. static struct cdev usb_device_cdev;
  1563. int __init usb_devio_init(void)
  1564. {
  1565. int retval;
  1566. retval = register_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX,
  1567. "usb_device");
  1568. if (retval) {
  1569. printk(KERN_ERR "Unable to register minors for usb_device\n");
  1570. goto out;
  1571. }
  1572. cdev_init(&usb_device_cdev, &usbdev_file_operations);
  1573. retval = cdev_add(&usb_device_cdev, USB_DEVICE_DEV, USB_DEVICE_MAX);
  1574. if (retval) {
  1575. printk(KERN_ERR "Unable to get usb_device major %d\n",
  1576. USB_DEVICE_MAJOR);
  1577. goto error_cdev;
  1578. }
  1579. #ifdef CONFIG_USB_DEVICE_CLASS
  1580. usb_classdev_class = class_create(THIS_MODULE, "usb_device");
  1581. if (IS_ERR(usb_classdev_class)) {
  1582. printk(KERN_ERR "Unable to register usb_device class\n");
  1583. retval = PTR_ERR(usb_classdev_class);
  1584. cdev_del(&usb_device_cdev);
  1585. usb_classdev_class = NULL;
  1586. goto out;
  1587. }
  1588. /* devices of this class shadow the major:minor of their parent
  1589. * device, so clear ->dev_kobj to prevent adding duplicate entries
  1590. * to /sys/dev
  1591. */
  1592. usb_classdev_class->dev_kobj = NULL;
  1593. #endif
  1594. usb_register_notify(&usbdev_nb);
  1595. out:
  1596. return retval;
  1597. error_cdev:
  1598. unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
  1599. goto out;
  1600. }
  1601. void usb_devio_cleanup(void)
  1602. {
  1603. usb_unregister_notify(&usbdev_nb);
  1604. #ifdef CONFIG_USB_DEVICE_CLASS
  1605. class_destroy(usb_classdev_class);
  1606. #endif
  1607. cdev_del(&usb_device_cdev);
  1608. unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
  1609. }