devio.c 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809
  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. warn("interface number %u out of range", ifnum);
  356. usb_set_intfdata(intf, NULL);
  357. /* force async requests to complete */
  358. destroy_async_on_interface(ps, ifnum);
  359. }
  360. /* The following routines are merely placeholders. There is no way
  361. * to inform a user task about suspend or resumes.
  362. */
  363. static int driver_suspend(struct usb_interface *intf, pm_message_t msg)
  364. {
  365. return 0;
  366. }
  367. static int driver_resume(struct usb_interface *intf)
  368. {
  369. return 0;
  370. }
  371. struct usb_driver usbfs_driver = {
  372. .name = "usbfs",
  373. .probe = driver_probe,
  374. .disconnect = driver_disconnect,
  375. .suspend = driver_suspend,
  376. .resume = driver_resume,
  377. };
  378. static int claimintf(struct dev_state *ps, unsigned int ifnum)
  379. {
  380. struct usb_device *dev = ps->dev;
  381. struct usb_interface *intf;
  382. int err;
  383. if (ifnum >= 8*sizeof(ps->ifclaimed))
  384. return -EINVAL;
  385. /* already claimed */
  386. if (test_bit(ifnum, &ps->ifclaimed))
  387. return 0;
  388. intf = usb_ifnum_to_if(dev, ifnum);
  389. if (!intf)
  390. err = -ENOENT;
  391. else
  392. err = usb_driver_claim_interface(&usbfs_driver, intf, ps);
  393. if (err == 0)
  394. set_bit(ifnum, &ps->ifclaimed);
  395. return err;
  396. }
  397. static int releaseintf(struct dev_state *ps, unsigned int ifnum)
  398. {
  399. struct usb_device *dev;
  400. struct usb_interface *intf;
  401. int err;
  402. err = -EINVAL;
  403. if (ifnum >= 8*sizeof(ps->ifclaimed))
  404. return err;
  405. dev = ps->dev;
  406. intf = usb_ifnum_to_if(dev, ifnum);
  407. if (!intf)
  408. err = -ENOENT;
  409. else if (test_and_clear_bit(ifnum, &ps->ifclaimed)) {
  410. usb_driver_release_interface(&usbfs_driver, intf);
  411. err = 0;
  412. }
  413. return err;
  414. }
  415. static int checkintf(struct dev_state *ps, unsigned int ifnum)
  416. {
  417. if (ps->dev->state != USB_STATE_CONFIGURED)
  418. return -EHOSTUNREACH;
  419. if (ifnum >= 8*sizeof(ps->ifclaimed))
  420. return -EINVAL;
  421. if (test_bit(ifnum, &ps->ifclaimed))
  422. return 0;
  423. /* if not yet claimed, claim it for the driver */
  424. dev_warn(&ps->dev->dev, "usbfs: process %d (%s) did not claim "
  425. "interface %u before use\n", task_pid_nr(current),
  426. current->comm, ifnum);
  427. return claimintf(ps, ifnum);
  428. }
  429. static int findintfep(struct usb_device *dev, unsigned int ep)
  430. {
  431. unsigned int i, j, e;
  432. struct usb_interface *intf;
  433. struct usb_host_interface *alts;
  434. struct usb_endpoint_descriptor *endpt;
  435. if (ep & ~(USB_DIR_IN|0xf))
  436. return -EINVAL;
  437. if (!dev->actconfig)
  438. return -ESRCH;
  439. for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
  440. intf = dev->actconfig->interface[i];
  441. for (j = 0; j < intf->num_altsetting; j++) {
  442. alts = &intf->altsetting[j];
  443. for (e = 0; e < alts->desc.bNumEndpoints; e++) {
  444. endpt = &alts->endpoint[e].desc;
  445. if (endpt->bEndpointAddress == ep)
  446. return alts->desc.bInterfaceNumber;
  447. }
  448. }
  449. }
  450. return -ENOENT;
  451. }
  452. static int check_ctrlrecip(struct dev_state *ps, unsigned int requesttype,
  453. unsigned int index)
  454. {
  455. int ret = 0;
  456. if (ps->dev->state != USB_STATE_ADDRESS
  457. && ps->dev->state != USB_STATE_CONFIGURED)
  458. return -EHOSTUNREACH;
  459. if (USB_TYPE_VENDOR == (USB_TYPE_MASK & requesttype))
  460. return 0;
  461. index &= 0xff;
  462. switch (requesttype & USB_RECIP_MASK) {
  463. case USB_RECIP_ENDPOINT:
  464. ret = findintfep(ps->dev, index);
  465. if (ret >= 0)
  466. ret = checkintf(ps, ret);
  467. break;
  468. case USB_RECIP_INTERFACE:
  469. ret = checkintf(ps, index);
  470. break;
  471. }
  472. return ret;
  473. }
  474. static int __match_minor(struct device *dev, void *data)
  475. {
  476. int minor = *((int *)data);
  477. if (dev->devt == MKDEV(USB_DEVICE_MAJOR, minor))
  478. return 1;
  479. return 0;
  480. }
  481. static struct usb_device *usbdev_lookup_by_minor(int minor)
  482. {
  483. struct device *dev;
  484. dev = bus_find_device(&usb_bus_type, NULL, &minor, __match_minor);
  485. if (!dev)
  486. return NULL;
  487. put_device(dev);
  488. return container_of(dev, struct usb_device, dev);
  489. }
  490. /*
  491. * file operations
  492. */
  493. static int usbdev_open(struct inode *inode, struct file *file)
  494. {
  495. struct usb_device *dev = NULL;
  496. struct dev_state *ps;
  497. int ret;
  498. lock_kernel();
  499. /* Protect against simultaneous removal or release */
  500. mutex_lock(&usbfs_mutex);
  501. ret = -ENOMEM;
  502. ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL);
  503. if (!ps)
  504. goto out;
  505. ret = -ENOENT;
  506. /* usbdev device-node */
  507. if (imajor(inode) == USB_DEVICE_MAJOR)
  508. dev = usbdev_lookup_by_minor(iminor(inode));
  509. #ifdef CONFIG_USB_DEVICEFS
  510. /* procfs file */
  511. if (!dev)
  512. dev = inode->i_private;
  513. #endif
  514. if (!dev)
  515. goto out;
  516. ret = usb_autoresume_device(dev);
  517. if (ret)
  518. goto out;
  519. usb_get_dev(dev);
  520. ret = 0;
  521. ps->dev = dev;
  522. ps->file = file;
  523. spin_lock_init(&ps->lock);
  524. INIT_LIST_HEAD(&ps->list);
  525. INIT_LIST_HEAD(&ps->async_pending);
  526. INIT_LIST_HEAD(&ps->async_completed);
  527. init_waitqueue_head(&ps->wait);
  528. ps->discsignr = 0;
  529. ps->disc_pid = get_pid(task_pid(current));
  530. ps->disc_uid = current->uid;
  531. ps->disc_euid = current->euid;
  532. ps->disccontext = NULL;
  533. ps->ifclaimed = 0;
  534. security_task_getsecid(current, &ps->secid);
  535. smp_wmb();
  536. list_add_tail(&ps->list, &dev->filelist);
  537. file->private_data = ps;
  538. out:
  539. if (ret)
  540. kfree(ps);
  541. mutex_unlock(&usbfs_mutex);
  542. unlock_kernel();
  543. return ret;
  544. }
  545. static int usbdev_release(struct inode *inode, struct file *file)
  546. {
  547. struct dev_state *ps = file->private_data;
  548. struct usb_device *dev = ps->dev;
  549. unsigned int ifnum;
  550. usb_lock_device(dev);
  551. /* Protect against simultaneous open */
  552. mutex_lock(&usbfs_mutex);
  553. list_del_init(&ps->list);
  554. mutex_unlock(&usbfs_mutex);
  555. for (ifnum = 0; ps->ifclaimed && ifnum < 8*sizeof(ps->ifclaimed);
  556. ifnum++) {
  557. if (test_bit(ifnum, &ps->ifclaimed))
  558. releaseintf(ps, ifnum);
  559. }
  560. destroy_all_async(ps);
  561. usb_autosuspend_device(dev);
  562. usb_unlock_device(dev);
  563. usb_put_dev(dev);
  564. put_pid(ps->disc_pid);
  565. kfree(ps);
  566. return 0;
  567. }
  568. static int proc_control(struct dev_state *ps, void __user *arg)
  569. {
  570. struct usb_device *dev = ps->dev;
  571. struct usbdevfs_ctrltransfer ctrl;
  572. unsigned int tmo;
  573. unsigned char *tbuf;
  574. unsigned wLength;
  575. int i, j, ret;
  576. if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
  577. return -EFAULT;
  578. ret = check_ctrlrecip(ps, ctrl.bRequestType, ctrl.wIndex);
  579. if (ret)
  580. return ret;
  581. wLength = ctrl.wLength; /* To suppress 64k PAGE_SIZE warning */
  582. if (wLength > PAGE_SIZE)
  583. return -EINVAL;
  584. tbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
  585. if (!tbuf)
  586. return -ENOMEM;
  587. tmo = ctrl.timeout;
  588. if (ctrl.bRequestType & 0x80) {
  589. if (ctrl.wLength && !access_ok(VERIFY_WRITE, ctrl.data,
  590. ctrl.wLength)) {
  591. free_page((unsigned long)tbuf);
  592. return -EINVAL;
  593. }
  594. snoop(&dev->dev, "control read: bRequest=%02x "
  595. "bRrequestType=%02x wValue=%04x "
  596. "wIndex=%04x wLength=%04x\n",
  597. ctrl.bRequest, ctrl.bRequestType, ctrl.wValue,
  598. ctrl.wIndex, ctrl.wLength);
  599. usb_unlock_device(dev);
  600. i = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), ctrl.bRequest,
  601. ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
  602. tbuf, ctrl.wLength, tmo);
  603. usb_lock_device(dev);
  604. if ((i > 0) && ctrl.wLength) {
  605. if (usbfs_snoop) {
  606. dev_info(&dev->dev, "control read: data ");
  607. for (j = 0; j < i; ++j)
  608. printk("%02x ", (u8)(tbuf)[j]);
  609. printk("\n");
  610. }
  611. if (copy_to_user(ctrl.data, tbuf, i)) {
  612. free_page((unsigned long)tbuf);
  613. return -EFAULT;
  614. }
  615. }
  616. } else {
  617. if (ctrl.wLength) {
  618. if (copy_from_user(tbuf, ctrl.data, ctrl.wLength)) {
  619. free_page((unsigned long)tbuf);
  620. return -EFAULT;
  621. }
  622. }
  623. snoop(&dev->dev, "control write: bRequest=%02x "
  624. "bRrequestType=%02x wValue=%04x "
  625. "wIndex=%04x wLength=%04x\n",
  626. ctrl.bRequest, ctrl.bRequestType, ctrl.wValue,
  627. ctrl.wIndex, ctrl.wLength);
  628. if (usbfs_snoop) {
  629. dev_info(&dev->dev, "control write: data: ");
  630. for (j = 0; j < ctrl.wLength; ++j)
  631. printk("%02x ", (unsigned char)(tbuf)[j]);
  632. printk("\n");
  633. }
  634. usb_unlock_device(dev);
  635. i = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), ctrl.bRequest,
  636. ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
  637. tbuf, ctrl.wLength, tmo);
  638. usb_lock_device(dev);
  639. }
  640. free_page((unsigned long)tbuf);
  641. if (i < 0 && i != -EPIPE) {
  642. dev_printk(KERN_DEBUG, &dev->dev, "usbfs: USBDEVFS_CONTROL "
  643. "failed cmd %s rqt %u rq %u len %u ret %d\n",
  644. current->comm, ctrl.bRequestType, ctrl.bRequest,
  645. ctrl.wLength, i);
  646. }
  647. return i;
  648. }
  649. static int proc_bulk(struct dev_state *ps, void __user *arg)
  650. {
  651. struct usb_device *dev = ps->dev;
  652. struct usbdevfs_bulktransfer bulk;
  653. unsigned int tmo, len1, pipe;
  654. int len2;
  655. unsigned char *tbuf;
  656. int i, j, ret;
  657. if (copy_from_user(&bulk, arg, sizeof(bulk)))
  658. return -EFAULT;
  659. ret = findintfep(ps->dev, bulk.ep);
  660. if (ret < 0)
  661. return ret;
  662. ret = checkintf(ps, ret);
  663. if (ret)
  664. return ret;
  665. if (bulk.ep & USB_DIR_IN)
  666. pipe = usb_rcvbulkpipe(dev, bulk.ep & 0x7f);
  667. else
  668. pipe = usb_sndbulkpipe(dev, bulk.ep & 0x7f);
  669. if (!usb_maxpacket(dev, pipe, !(bulk.ep & USB_DIR_IN)))
  670. return -EINVAL;
  671. len1 = bulk.len;
  672. if (len1 > MAX_USBFS_BUFFER_SIZE)
  673. return -EINVAL;
  674. if (!(tbuf = kmalloc(len1, GFP_KERNEL)))
  675. return -ENOMEM;
  676. tmo = bulk.timeout;
  677. if (bulk.ep & 0x80) {
  678. if (len1 && !access_ok(VERIFY_WRITE, bulk.data, len1)) {
  679. kfree(tbuf);
  680. return -EINVAL;
  681. }
  682. snoop(&dev->dev, "bulk read: len=0x%02x timeout=%04d\n",
  683. bulk.len, bulk.timeout);
  684. usb_unlock_device(dev);
  685. i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
  686. usb_lock_device(dev);
  687. if (!i && len2) {
  688. if (usbfs_snoop) {
  689. dev_info(&dev->dev, "bulk read: data ");
  690. for (j = 0; j < len2; ++j)
  691. printk("%02x ", (u8)(tbuf)[j]);
  692. printk("\n");
  693. }
  694. if (copy_to_user(bulk.data, tbuf, len2)) {
  695. kfree(tbuf);
  696. return -EFAULT;
  697. }
  698. }
  699. } else {
  700. if (len1) {
  701. if (copy_from_user(tbuf, bulk.data, len1)) {
  702. kfree(tbuf);
  703. return -EFAULT;
  704. }
  705. }
  706. snoop(&dev->dev, "bulk write: len=0x%02x timeout=%04d\n",
  707. bulk.len, bulk.timeout);
  708. if (usbfs_snoop) {
  709. dev_info(&dev->dev, "bulk write: data: ");
  710. for (j = 0; j < len1; ++j)
  711. printk("%02x ", (unsigned char)(tbuf)[j]);
  712. printk("\n");
  713. }
  714. usb_unlock_device(dev);
  715. i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
  716. usb_lock_device(dev);
  717. }
  718. kfree(tbuf);
  719. if (i < 0)
  720. return i;
  721. return len2;
  722. }
  723. static int proc_resetep(struct dev_state *ps, void __user *arg)
  724. {
  725. unsigned int ep;
  726. int ret;
  727. if (get_user(ep, (unsigned int __user *)arg))
  728. return -EFAULT;
  729. ret = findintfep(ps->dev, ep);
  730. if (ret < 0)
  731. return ret;
  732. ret = checkintf(ps, ret);
  733. if (ret)
  734. return ret;
  735. usb_settoggle(ps->dev, ep & 0xf, !(ep & USB_DIR_IN), 0);
  736. return 0;
  737. }
  738. static int proc_clearhalt(struct dev_state *ps, void __user *arg)
  739. {
  740. unsigned int ep;
  741. int pipe;
  742. int ret;
  743. if (get_user(ep, (unsigned int __user *)arg))
  744. return -EFAULT;
  745. ret = findintfep(ps->dev, ep);
  746. if (ret < 0)
  747. return ret;
  748. ret = checkintf(ps, ret);
  749. if (ret)
  750. return ret;
  751. if (ep & USB_DIR_IN)
  752. pipe = usb_rcvbulkpipe(ps->dev, ep & 0x7f);
  753. else
  754. pipe = usb_sndbulkpipe(ps->dev, ep & 0x7f);
  755. return usb_clear_halt(ps->dev, pipe);
  756. }
  757. static int proc_getdriver(struct dev_state *ps, void __user *arg)
  758. {
  759. struct usbdevfs_getdriver gd;
  760. struct usb_interface *intf;
  761. int ret;
  762. if (copy_from_user(&gd, arg, sizeof(gd)))
  763. return -EFAULT;
  764. intf = usb_ifnum_to_if(ps->dev, gd.interface);
  765. if (!intf || !intf->dev.driver)
  766. ret = -ENODATA;
  767. else {
  768. strncpy(gd.driver, intf->dev.driver->name,
  769. sizeof(gd.driver));
  770. ret = (copy_to_user(arg, &gd, sizeof(gd)) ? -EFAULT : 0);
  771. }
  772. return ret;
  773. }
  774. static int proc_connectinfo(struct dev_state *ps, void __user *arg)
  775. {
  776. struct usbdevfs_connectinfo ci;
  777. ci.devnum = ps->dev->devnum;
  778. ci.slow = ps->dev->speed == USB_SPEED_LOW;
  779. if (copy_to_user(arg, &ci, sizeof(ci)))
  780. return -EFAULT;
  781. return 0;
  782. }
  783. static int proc_resetdevice(struct dev_state *ps)
  784. {
  785. return usb_reset_device(ps->dev);
  786. }
  787. static int proc_setintf(struct dev_state *ps, void __user *arg)
  788. {
  789. struct usbdevfs_setinterface setintf;
  790. int ret;
  791. if (copy_from_user(&setintf, arg, sizeof(setintf)))
  792. return -EFAULT;
  793. if ((ret = checkintf(ps, setintf.interface)))
  794. return ret;
  795. return usb_set_interface(ps->dev, setintf.interface,
  796. setintf.altsetting);
  797. }
  798. static int proc_setconfig(struct dev_state *ps, void __user *arg)
  799. {
  800. int u;
  801. int status = 0;
  802. struct usb_host_config *actconfig;
  803. if (get_user(u, (int __user *)arg))
  804. return -EFAULT;
  805. actconfig = ps->dev->actconfig;
  806. /* Don't touch the device if any interfaces are claimed.
  807. * It could interfere with other drivers' operations, and if
  808. * an interface is claimed by usbfs it could easily deadlock.
  809. */
  810. if (actconfig) {
  811. int i;
  812. for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
  813. if (usb_interface_claimed(actconfig->interface[i])) {
  814. dev_warn(&ps->dev->dev,
  815. "usbfs: interface %d claimed by %s "
  816. "while '%s' sets config #%d\n",
  817. actconfig->interface[i]
  818. ->cur_altsetting
  819. ->desc.bInterfaceNumber,
  820. actconfig->interface[i]
  821. ->dev.driver->name,
  822. current->comm, u);
  823. status = -EBUSY;
  824. break;
  825. }
  826. }
  827. }
  828. /* SET_CONFIGURATION is often abused as a "cheap" driver reset,
  829. * so avoid usb_set_configuration()'s kick to sysfs
  830. */
  831. if (status == 0) {
  832. if (actconfig && actconfig->desc.bConfigurationValue == u)
  833. status = usb_reset_configuration(ps->dev);
  834. else
  835. status = usb_set_configuration(ps->dev, u);
  836. }
  837. return status;
  838. }
  839. static int proc_do_submiturb(struct dev_state *ps, struct usbdevfs_urb *uurb,
  840. struct usbdevfs_iso_packet_desc __user *iso_frame_desc,
  841. void __user *arg)
  842. {
  843. struct usbdevfs_iso_packet_desc *isopkt = NULL;
  844. struct usb_host_endpoint *ep;
  845. struct async *as;
  846. struct usb_ctrlrequest *dr = NULL;
  847. unsigned int u, totlen, isofrmlen;
  848. int ret, ifnum = -1;
  849. int is_in;
  850. if (uurb->flags & ~(USBDEVFS_URB_ISO_ASAP |
  851. USBDEVFS_URB_SHORT_NOT_OK |
  852. USBDEVFS_URB_NO_FSBR |
  853. USBDEVFS_URB_ZERO_PACKET |
  854. USBDEVFS_URB_NO_INTERRUPT))
  855. return -EINVAL;
  856. if (!uurb->buffer)
  857. return -EINVAL;
  858. if (uurb->signr != 0 && (uurb->signr < SIGRTMIN ||
  859. uurb->signr > SIGRTMAX))
  860. return -EINVAL;
  861. if (!(uurb->type == USBDEVFS_URB_TYPE_CONTROL &&
  862. (uurb->endpoint & ~USB_ENDPOINT_DIR_MASK) == 0)) {
  863. ifnum = findintfep(ps->dev, uurb->endpoint);
  864. if (ifnum < 0)
  865. return ifnum;
  866. ret = checkintf(ps, ifnum);
  867. if (ret)
  868. return ret;
  869. }
  870. if ((uurb->endpoint & USB_ENDPOINT_DIR_MASK) != 0) {
  871. is_in = 1;
  872. ep = ps->dev->ep_in[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
  873. } else {
  874. is_in = 0;
  875. ep = ps->dev->ep_out[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
  876. }
  877. if (!ep)
  878. return -ENOENT;
  879. switch(uurb->type) {
  880. case USBDEVFS_URB_TYPE_CONTROL:
  881. if (!usb_endpoint_xfer_control(&ep->desc))
  882. return -EINVAL;
  883. /* min 8 byte setup packet,
  884. * max 8 byte setup plus an arbitrary data stage */
  885. if (uurb->buffer_length < 8 ||
  886. uurb->buffer_length > (8 + MAX_USBFS_BUFFER_SIZE))
  887. return -EINVAL;
  888. dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
  889. if (!dr)
  890. return -ENOMEM;
  891. if (copy_from_user(dr, uurb->buffer, 8)) {
  892. kfree(dr);
  893. return -EFAULT;
  894. }
  895. if (uurb->buffer_length < (le16_to_cpup(&dr->wLength) + 8)) {
  896. kfree(dr);
  897. return -EINVAL;
  898. }
  899. ret = check_ctrlrecip(ps, dr->bRequestType,
  900. le16_to_cpup(&dr->wIndex));
  901. if (ret) {
  902. kfree(dr);
  903. return ret;
  904. }
  905. uurb->number_of_packets = 0;
  906. uurb->buffer_length = le16_to_cpup(&dr->wLength);
  907. uurb->buffer += 8;
  908. if ((dr->bRequestType & USB_DIR_IN) && uurb->buffer_length) {
  909. is_in = 1;
  910. uurb->endpoint |= USB_DIR_IN;
  911. } else {
  912. is_in = 0;
  913. uurb->endpoint &= ~USB_DIR_IN;
  914. }
  915. if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
  916. uurb->buffer, uurb->buffer_length)) {
  917. kfree(dr);
  918. return -EFAULT;
  919. }
  920. snoop(&ps->dev->dev, "control urb: bRequest=%02x "
  921. "bRrequestType=%02x wValue=%04x "
  922. "wIndex=%04x wLength=%04x\n",
  923. dr->bRequest, dr->bRequestType,
  924. __le16_to_cpup(&dr->wValue),
  925. __le16_to_cpup(&dr->wIndex),
  926. __le16_to_cpup(&dr->wLength));
  927. break;
  928. case USBDEVFS_URB_TYPE_BULK:
  929. switch (usb_endpoint_type(&ep->desc)) {
  930. case USB_ENDPOINT_XFER_CONTROL:
  931. case USB_ENDPOINT_XFER_ISOC:
  932. return -EINVAL;
  933. /* allow single-shot interrupt transfers, at bogus rates */
  934. }
  935. uurb->number_of_packets = 0;
  936. if (uurb->buffer_length > MAX_USBFS_BUFFER_SIZE)
  937. return -EINVAL;
  938. if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
  939. uurb->buffer, uurb->buffer_length))
  940. return -EFAULT;
  941. snoop(&ps->dev->dev, "bulk urb\n");
  942. break;
  943. case USBDEVFS_URB_TYPE_ISO:
  944. /* arbitrary limit */
  945. if (uurb->number_of_packets < 1 ||
  946. uurb->number_of_packets > 128)
  947. return -EINVAL;
  948. if (!usb_endpoint_xfer_isoc(&ep->desc))
  949. return -EINVAL;
  950. isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) *
  951. uurb->number_of_packets;
  952. if (!(isopkt = kmalloc(isofrmlen, GFP_KERNEL)))
  953. return -ENOMEM;
  954. if (copy_from_user(isopkt, iso_frame_desc, isofrmlen)) {
  955. kfree(isopkt);
  956. return -EFAULT;
  957. }
  958. for (totlen = u = 0; u < uurb->number_of_packets; u++) {
  959. /* arbitrary limit,
  960. * sufficient for USB 2.0 high-bandwidth iso */
  961. if (isopkt[u].length > 8192) {
  962. kfree(isopkt);
  963. return -EINVAL;
  964. }
  965. totlen += isopkt[u].length;
  966. }
  967. if (totlen > 32768) {
  968. kfree(isopkt);
  969. return -EINVAL;
  970. }
  971. uurb->buffer_length = totlen;
  972. snoop(&ps->dev->dev, "iso urb\n");
  973. break;
  974. case USBDEVFS_URB_TYPE_INTERRUPT:
  975. uurb->number_of_packets = 0;
  976. if (!usb_endpoint_xfer_int(&ep->desc))
  977. return -EINVAL;
  978. if (uurb->buffer_length > MAX_USBFS_BUFFER_SIZE)
  979. return -EINVAL;
  980. if (!access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
  981. uurb->buffer, uurb->buffer_length))
  982. return -EFAULT;
  983. snoop(&ps->dev->dev, "interrupt urb\n");
  984. break;
  985. default:
  986. return -EINVAL;
  987. }
  988. as = alloc_async(uurb->number_of_packets);
  989. if (!as) {
  990. kfree(isopkt);
  991. kfree(dr);
  992. return -ENOMEM;
  993. }
  994. as->urb->transfer_buffer = kmalloc(uurb->buffer_length, GFP_KERNEL);
  995. if (!as->urb->transfer_buffer) {
  996. kfree(isopkt);
  997. kfree(dr);
  998. free_async(as);
  999. return -ENOMEM;
  1000. }
  1001. as->urb->dev = ps->dev;
  1002. as->urb->pipe = (uurb->type << 30) |
  1003. __create_pipe(ps->dev, uurb->endpoint & 0xf) |
  1004. (uurb->endpoint & USB_DIR_IN);
  1005. /* This tedious sequence is necessary because the URB_* flags
  1006. * are internal to the kernel and subject to change, whereas
  1007. * the USBDEVFS_URB_* flags are a user API and must not be changed.
  1008. */
  1009. u = (is_in ? URB_DIR_IN : URB_DIR_OUT);
  1010. if (uurb->flags & USBDEVFS_URB_ISO_ASAP)
  1011. u |= URB_ISO_ASAP;
  1012. if (uurb->flags & USBDEVFS_URB_SHORT_NOT_OK)
  1013. u |= URB_SHORT_NOT_OK;
  1014. if (uurb->flags & USBDEVFS_URB_NO_FSBR)
  1015. u |= URB_NO_FSBR;
  1016. if (uurb->flags & USBDEVFS_URB_ZERO_PACKET)
  1017. u |= URB_ZERO_PACKET;
  1018. if (uurb->flags & USBDEVFS_URB_NO_INTERRUPT)
  1019. u |= URB_NO_INTERRUPT;
  1020. as->urb->transfer_flags = u;
  1021. as->urb->transfer_buffer_length = uurb->buffer_length;
  1022. as->urb->setup_packet = (unsigned char *)dr;
  1023. as->urb->start_frame = uurb->start_frame;
  1024. as->urb->number_of_packets = uurb->number_of_packets;
  1025. if (uurb->type == USBDEVFS_URB_TYPE_ISO ||
  1026. ps->dev->speed == USB_SPEED_HIGH)
  1027. as->urb->interval = 1 << min(15, ep->desc.bInterval - 1);
  1028. else
  1029. as->urb->interval = ep->desc.bInterval;
  1030. as->urb->context = as;
  1031. as->urb->complete = async_completed;
  1032. for (totlen = u = 0; u < uurb->number_of_packets; u++) {
  1033. as->urb->iso_frame_desc[u].offset = totlen;
  1034. as->urb->iso_frame_desc[u].length = isopkt[u].length;
  1035. totlen += isopkt[u].length;
  1036. }
  1037. kfree(isopkt);
  1038. as->ps = ps;
  1039. as->userurb = arg;
  1040. if (uurb->endpoint & USB_DIR_IN)
  1041. as->userbuffer = uurb->buffer;
  1042. else
  1043. as->userbuffer = NULL;
  1044. as->signr = uurb->signr;
  1045. as->ifnum = ifnum;
  1046. as->pid = get_pid(task_pid(current));
  1047. as->uid = current->uid;
  1048. as->euid = current->euid;
  1049. security_task_getsecid(current, &as->secid);
  1050. if (!is_in) {
  1051. if (copy_from_user(as->urb->transfer_buffer, uurb->buffer,
  1052. as->urb->transfer_buffer_length)) {
  1053. free_async(as);
  1054. return -EFAULT;
  1055. }
  1056. }
  1057. snoop_urb(as->urb, as->userurb);
  1058. async_newpending(as);
  1059. if ((ret = usb_submit_urb(as->urb, GFP_KERNEL))) {
  1060. dev_printk(KERN_DEBUG, &ps->dev->dev,
  1061. "usbfs: usb_submit_urb returned %d\n", ret);
  1062. async_removepending(as);
  1063. free_async(as);
  1064. return ret;
  1065. }
  1066. return 0;
  1067. }
  1068. static int proc_submiturb(struct dev_state *ps, void __user *arg)
  1069. {
  1070. struct usbdevfs_urb uurb;
  1071. if (copy_from_user(&uurb, arg, sizeof(uurb)))
  1072. return -EFAULT;
  1073. return proc_do_submiturb(ps, &uurb,
  1074. (((struct usbdevfs_urb __user *)arg)->iso_frame_desc),
  1075. arg);
  1076. }
  1077. static int proc_unlinkurb(struct dev_state *ps, void __user *arg)
  1078. {
  1079. struct async *as;
  1080. as = async_getpending(ps, arg);
  1081. if (!as)
  1082. return -EINVAL;
  1083. usb_kill_urb(as->urb);
  1084. return 0;
  1085. }
  1086. static int processcompl(struct async *as, void __user * __user *arg)
  1087. {
  1088. struct urb *urb = as->urb;
  1089. struct usbdevfs_urb __user *userurb = as->userurb;
  1090. void __user *addr = as->userurb;
  1091. unsigned int i;
  1092. if (as->userbuffer)
  1093. if (copy_to_user(as->userbuffer, urb->transfer_buffer,
  1094. urb->transfer_buffer_length))
  1095. return -EFAULT;
  1096. if (put_user(as->status, &userurb->status))
  1097. return -EFAULT;
  1098. if (put_user(urb->actual_length, &userurb->actual_length))
  1099. return -EFAULT;
  1100. if (put_user(urb->error_count, &userurb->error_count))
  1101. return -EFAULT;
  1102. if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
  1103. for (i = 0; i < urb->number_of_packets; i++) {
  1104. if (put_user(urb->iso_frame_desc[i].actual_length,
  1105. &userurb->iso_frame_desc[i].actual_length))
  1106. return -EFAULT;
  1107. if (put_user(urb->iso_frame_desc[i].status,
  1108. &userurb->iso_frame_desc[i].status))
  1109. return -EFAULT;
  1110. }
  1111. }
  1112. free_async(as);
  1113. if (put_user(addr, (void __user * __user *)arg))
  1114. return -EFAULT;
  1115. return 0;
  1116. }
  1117. static struct async *reap_as(struct dev_state *ps)
  1118. {
  1119. DECLARE_WAITQUEUE(wait, current);
  1120. struct async *as = NULL;
  1121. struct usb_device *dev = ps->dev;
  1122. add_wait_queue(&ps->wait, &wait);
  1123. for (;;) {
  1124. __set_current_state(TASK_INTERRUPTIBLE);
  1125. as = async_getcompleted(ps);
  1126. if (as)
  1127. break;
  1128. if (signal_pending(current))
  1129. break;
  1130. usb_unlock_device(dev);
  1131. schedule();
  1132. usb_lock_device(dev);
  1133. }
  1134. remove_wait_queue(&ps->wait, &wait);
  1135. set_current_state(TASK_RUNNING);
  1136. return as;
  1137. }
  1138. static int proc_reapurb(struct dev_state *ps, void __user *arg)
  1139. {
  1140. struct async *as = reap_as(ps);
  1141. if (as)
  1142. return processcompl(as, (void __user * __user *)arg);
  1143. if (signal_pending(current))
  1144. return -EINTR;
  1145. return -EIO;
  1146. }
  1147. static int proc_reapurbnonblock(struct dev_state *ps, void __user *arg)
  1148. {
  1149. struct async *as;
  1150. if (!(as = async_getcompleted(ps)))
  1151. return -EAGAIN;
  1152. return processcompl(as, (void __user * __user *)arg);
  1153. }
  1154. #ifdef CONFIG_COMPAT
  1155. static int get_urb32(struct usbdevfs_urb *kurb,
  1156. struct usbdevfs_urb32 __user *uurb)
  1157. {
  1158. __u32 uptr;
  1159. if (get_user(kurb->type, &uurb->type) ||
  1160. __get_user(kurb->endpoint, &uurb->endpoint) ||
  1161. __get_user(kurb->status, &uurb->status) ||
  1162. __get_user(kurb->flags, &uurb->flags) ||
  1163. __get_user(kurb->buffer_length, &uurb->buffer_length) ||
  1164. __get_user(kurb->actual_length, &uurb->actual_length) ||
  1165. __get_user(kurb->start_frame, &uurb->start_frame) ||
  1166. __get_user(kurb->number_of_packets, &uurb->number_of_packets) ||
  1167. __get_user(kurb->error_count, &uurb->error_count) ||
  1168. __get_user(kurb->signr, &uurb->signr))
  1169. return -EFAULT;
  1170. if (__get_user(uptr, &uurb->buffer))
  1171. return -EFAULT;
  1172. kurb->buffer = compat_ptr(uptr);
  1173. if (__get_user(uptr, &uurb->buffer))
  1174. return -EFAULT;
  1175. kurb->usercontext = compat_ptr(uptr);
  1176. return 0;
  1177. }
  1178. static int proc_submiturb_compat(struct dev_state *ps, void __user *arg)
  1179. {
  1180. struct usbdevfs_urb uurb;
  1181. if (get_urb32(&uurb, (struct usbdevfs_urb32 __user *)arg))
  1182. return -EFAULT;
  1183. return proc_do_submiturb(ps, &uurb,
  1184. ((struct usbdevfs_urb32 __user *)arg)->iso_frame_desc,
  1185. arg);
  1186. }
  1187. static int processcompl_compat(struct async *as, void __user * __user *arg)
  1188. {
  1189. struct urb *urb = as->urb;
  1190. struct usbdevfs_urb32 __user *userurb = as->userurb;
  1191. void __user *addr = as->userurb;
  1192. unsigned int i;
  1193. if (as->userbuffer)
  1194. if (copy_to_user(as->userbuffer, urb->transfer_buffer,
  1195. urb->transfer_buffer_length))
  1196. return -EFAULT;
  1197. if (put_user(as->status, &userurb->status))
  1198. return -EFAULT;
  1199. if (put_user(urb->actual_length, &userurb->actual_length))
  1200. return -EFAULT;
  1201. if (put_user(urb->error_count, &userurb->error_count))
  1202. return -EFAULT;
  1203. if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
  1204. for (i = 0; i < urb->number_of_packets; i++) {
  1205. if (put_user(urb->iso_frame_desc[i].actual_length,
  1206. &userurb->iso_frame_desc[i].actual_length))
  1207. return -EFAULT;
  1208. if (put_user(urb->iso_frame_desc[i].status,
  1209. &userurb->iso_frame_desc[i].status))
  1210. return -EFAULT;
  1211. }
  1212. }
  1213. free_async(as);
  1214. if (put_user(ptr_to_compat(addr), (u32 __user *)arg))
  1215. return -EFAULT;
  1216. return 0;
  1217. }
  1218. static int proc_reapurb_compat(struct dev_state *ps, void __user *arg)
  1219. {
  1220. struct async *as = reap_as(ps);
  1221. if (as)
  1222. return processcompl_compat(as, (void __user * __user *)arg);
  1223. if (signal_pending(current))
  1224. return -EINTR;
  1225. return -EIO;
  1226. }
  1227. static int proc_reapurbnonblock_compat(struct dev_state *ps, void __user *arg)
  1228. {
  1229. struct async *as;
  1230. if (!(as = async_getcompleted(ps)))
  1231. return -EAGAIN;
  1232. return processcompl_compat(as, (void __user * __user *)arg);
  1233. }
  1234. #endif
  1235. static int proc_disconnectsignal(struct dev_state *ps, void __user *arg)
  1236. {
  1237. struct usbdevfs_disconnectsignal ds;
  1238. if (copy_from_user(&ds, arg, sizeof(ds)))
  1239. return -EFAULT;
  1240. if (ds.signr != 0 && (ds.signr < SIGRTMIN || ds.signr > SIGRTMAX))
  1241. return -EINVAL;
  1242. ps->discsignr = ds.signr;
  1243. ps->disccontext = ds.context;
  1244. return 0;
  1245. }
  1246. static int proc_claiminterface(struct dev_state *ps, void __user *arg)
  1247. {
  1248. unsigned int ifnum;
  1249. if (get_user(ifnum, (unsigned int __user *)arg))
  1250. return -EFAULT;
  1251. return claimintf(ps, ifnum);
  1252. }
  1253. static int proc_releaseinterface(struct dev_state *ps, void __user *arg)
  1254. {
  1255. unsigned int ifnum;
  1256. int ret;
  1257. if (get_user(ifnum, (unsigned int __user *)arg))
  1258. return -EFAULT;
  1259. if ((ret = releaseintf(ps, ifnum)) < 0)
  1260. return ret;
  1261. destroy_async_on_interface (ps, ifnum);
  1262. return 0;
  1263. }
  1264. static int proc_ioctl(struct dev_state *ps, struct usbdevfs_ioctl *ctl)
  1265. {
  1266. int size;
  1267. void *buf = NULL;
  1268. int retval = 0;
  1269. struct usb_interface *intf = NULL;
  1270. struct usb_driver *driver = NULL;
  1271. /* alloc buffer */
  1272. if ((size = _IOC_SIZE(ctl->ioctl_code)) > 0) {
  1273. if ((buf = kmalloc(size, GFP_KERNEL)) == NULL)
  1274. return -ENOMEM;
  1275. if ((_IOC_DIR(ctl->ioctl_code) & _IOC_WRITE)) {
  1276. if (copy_from_user(buf, ctl->data, size)) {
  1277. kfree(buf);
  1278. return -EFAULT;
  1279. }
  1280. } else {
  1281. memset(buf, 0, size);
  1282. }
  1283. }
  1284. if (!connected(ps)) {
  1285. kfree(buf);
  1286. return -ENODEV;
  1287. }
  1288. if (ps->dev->state != USB_STATE_CONFIGURED)
  1289. retval = -EHOSTUNREACH;
  1290. else if (!(intf = usb_ifnum_to_if(ps->dev, ctl->ifno)))
  1291. retval = -EINVAL;
  1292. else switch (ctl->ioctl_code) {
  1293. /* disconnect kernel driver from interface */
  1294. case USBDEVFS_DISCONNECT:
  1295. if (intf->dev.driver) {
  1296. driver = to_usb_driver(intf->dev.driver);
  1297. dev_dbg(&intf->dev, "disconnect by usbfs\n");
  1298. usb_driver_release_interface(driver, intf);
  1299. } else
  1300. retval = -ENODATA;
  1301. break;
  1302. /* let kernel drivers try to (re)bind to the interface */
  1303. case USBDEVFS_CONNECT:
  1304. if (!intf->dev.driver)
  1305. retval = device_attach(&intf->dev);
  1306. else
  1307. retval = -EBUSY;
  1308. break;
  1309. /* talk directly to the interface's driver */
  1310. default:
  1311. if (intf->dev.driver)
  1312. driver = to_usb_driver(intf->dev.driver);
  1313. if (driver == NULL || driver->ioctl == NULL) {
  1314. retval = -ENOTTY;
  1315. } else {
  1316. retval = driver->ioctl(intf, ctl->ioctl_code, buf);
  1317. if (retval == -ENOIOCTLCMD)
  1318. retval = -ENOTTY;
  1319. }
  1320. }
  1321. /* cleanup and return */
  1322. if (retval >= 0
  1323. && (_IOC_DIR(ctl->ioctl_code) & _IOC_READ) != 0
  1324. && size > 0
  1325. && copy_to_user(ctl->data, buf, size) != 0)
  1326. retval = -EFAULT;
  1327. kfree(buf);
  1328. return retval;
  1329. }
  1330. static int proc_ioctl_default(struct dev_state *ps, void __user *arg)
  1331. {
  1332. struct usbdevfs_ioctl ctrl;
  1333. if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
  1334. return -EFAULT;
  1335. return proc_ioctl(ps, &ctrl);
  1336. }
  1337. #ifdef CONFIG_COMPAT
  1338. static int proc_ioctl_compat(struct dev_state *ps, compat_uptr_t arg)
  1339. {
  1340. struct usbdevfs_ioctl32 __user *uioc;
  1341. struct usbdevfs_ioctl ctrl;
  1342. u32 udata;
  1343. uioc = compat_ptr((long)arg);
  1344. if (get_user(ctrl.ifno, &uioc->ifno) ||
  1345. get_user(ctrl.ioctl_code, &uioc->ioctl_code) ||
  1346. __get_user(udata, &uioc->data))
  1347. return -EFAULT;
  1348. ctrl.data = compat_ptr(udata);
  1349. return proc_ioctl(ps, &ctrl);
  1350. }
  1351. #endif
  1352. /*
  1353. * NOTE: All requests here that have interface numbers as parameters
  1354. * are assuming that somehow the configuration has been prevented from
  1355. * changing. But there's no mechanism to ensure that...
  1356. */
  1357. static int usbdev_ioctl(struct inode *inode, struct file *file,
  1358. unsigned int cmd, unsigned long arg)
  1359. {
  1360. struct dev_state *ps = file->private_data;
  1361. struct usb_device *dev = ps->dev;
  1362. void __user *p = (void __user *)arg;
  1363. int ret = -ENOTTY;
  1364. if (!(file->f_mode & FMODE_WRITE))
  1365. return -EPERM;
  1366. usb_lock_device(dev);
  1367. if (!connected(ps)) {
  1368. usb_unlock_device(dev);
  1369. return -ENODEV;
  1370. }
  1371. switch (cmd) {
  1372. case USBDEVFS_CONTROL:
  1373. snoop(&dev->dev, "%s: CONTROL\n", __func__);
  1374. ret = proc_control(ps, p);
  1375. if (ret >= 0)
  1376. inode->i_mtime = CURRENT_TIME;
  1377. break;
  1378. case USBDEVFS_BULK:
  1379. snoop(&dev->dev, "%s: BULK\n", __func__);
  1380. ret = proc_bulk(ps, p);
  1381. if (ret >= 0)
  1382. inode->i_mtime = CURRENT_TIME;
  1383. break;
  1384. case USBDEVFS_RESETEP:
  1385. snoop(&dev->dev, "%s: RESETEP\n", __func__);
  1386. ret = proc_resetep(ps, p);
  1387. if (ret >= 0)
  1388. inode->i_mtime = CURRENT_TIME;
  1389. break;
  1390. case USBDEVFS_RESET:
  1391. snoop(&dev->dev, "%s: RESET\n", __func__);
  1392. ret = proc_resetdevice(ps);
  1393. break;
  1394. case USBDEVFS_CLEAR_HALT:
  1395. snoop(&dev->dev, "%s: CLEAR_HALT\n", __func__);
  1396. ret = proc_clearhalt(ps, p);
  1397. if (ret >= 0)
  1398. inode->i_mtime = CURRENT_TIME;
  1399. break;
  1400. case USBDEVFS_GETDRIVER:
  1401. snoop(&dev->dev, "%s: GETDRIVER\n", __func__);
  1402. ret = proc_getdriver(ps, p);
  1403. break;
  1404. case USBDEVFS_CONNECTINFO:
  1405. snoop(&dev->dev, "%s: CONNECTINFO\n", __func__);
  1406. ret = proc_connectinfo(ps, p);
  1407. break;
  1408. case USBDEVFS_SETINTERFACE:
  1409. snoop(&dev->dev, "%s: SETINTERFACE\n", __func__);
  1410. ret = proc_setintf(ps, p);
  1411. break;
  1412. case USBDEVFS_SETCONFIGURATION:
  1413. snoop(&dev->dev, "%s: SETCONFIGURATION\n", __func__);
  1414. ret = proc_setconfig(ps, p);
  1415. break;
  1416. case USBDEVFS_SUBMITURB:
  1417. snoop(&dev->dev, "%s: SUBMITURB\n", __func__);
  1418. ret = proc_submiturb(ps, p);
  1419. if (ret >= 0)
  1420. inode->i_mtime = CURRENT_TIME;
  1421. break;
  1422. #ifdef CONFIG_COMPAT
  1423. case USBDEVFS_SUBMITURB32:
  1424. snoop(&dev->dev, "%s: SUBMITURB32\n", __func__);
  1425. ret = proc_submiturb_compat(ps, p);
  1426. if (ret >= 0)
  1427. inode->i_mtime = CURRENT_TIME;
  1428. break;
  1429. case USBDEVFS_REAPURB32:
  1430. snoop(&dev->dev, "%s: REAPURB32\n", __func__);
  1431. ret = proc_reapurb_compat(ps, p);
  1432. break;
  1433. case USBDEVFS_REAPURBNDELAY32:
  1434. snoop(&dev->dev, "%s: REAPURBDELAY32\n", __func__);
  1435. ret = proc_reapurbnonblock_compat(ps, p);
  1436. break;
  1437. case USBDEVFS_IOCTL32:
  1438. snoop(&dev->dev, "%s: IOCTL\n", __func__);
  1439. ret = proc_ioctl_compat(ps, ptr_to_compat(p));
  1440. break;
  1441. #endif
  1442. case USBDEVFS_DISCARDURB:
  1443. snoop(&dev->dev, "%s: DISCARDURB\n", __func__);
  1444. ret = proc_unlinkurb(ps, p);
  1445. break;
  1446. case USBDEVFS_REAPURB:
  1447. snoop(&dev->dev, "%s: REAPURB\n", __func__);
  1448. ret = proc_reapurb(ps, p);
  1449. break;
  1450. case USBDEVFS_REAPURBNDELAY:
  1451. snoop(&dev->dev, "%s: REAPURBDELAY\n", __func__);
  1452. ret = proc_reapurbnonblock(ps, p);
  1453. break;
  1454. case USBDEVFS_DISCSIGNAL:
  1455. snoop(&dev->dev, "%s: DISCSIGNAL\n", __func__);
  1456. ret = proc_disconnectsignal(ps, p);
  1457. break;
  1458. case USBDEVFS_CLAIMINTERFACE:
  1459. snoop(&dev->dev, "%s: CLAIMINTERFACE\n", __func__);
  1460. ret = proc_claiminterface(ps, p);
  1461. break;
  1462. case USBDEVFS_RELEASEINTERFACE:
  1463. snoop(&dev->dev, "%s: RELEASEINTERFACE\n", __func__);
  1464. ret = proc_releaseinterface(ps, p);
  1465. break;
  1466. case USBDEVFS_IOCTL:
  1467. snoop(&dev->dev, "%s: IOCTL\n", __func__);
  1468. ret = proc_ioctl_default(ps, p);
  1469. break;
  1470. }
  1471. usb_unlock_device(dev);
  1472. if (ret >= 0)
  1473. inode->i_atime = CURRENT_TIME;
  1474. return ret;
  1475. }
  1476. /* No kernel lock - fine */
  1477. static unsigned int usbdev_poll(struct file *file,
  1478. struct poll_table_struct *wait)
  1479. {
  1480. struct dev_state *ps = file->private_data;
  1481. unsigned int mask = 0;
  1482. poll_wait(file, &ps->wait, wait);
  1483. if (file->f_mode & FMODE_WRITE && !list_empty(&ps->async_completed))
  1484. mask |= POLLOUT | POLLWRNORM;
  1485. if (!connected(ps))
  1486. mask |= POLLERR | POLLHUP;
  1487. return mask;
  1488. }
  1489. const struct file_operations usbdev_file_operations = {
  1490. .owner = THIS_MODULE,
  1491. .llseek = usbdev_lseek,
  1492. .read = usbdev_read,
  1493. .poll = usbdev_poll,
  1494. .ioctl = usbdev_ioctl,
  1495. .open = usbdev_open,
  1496. .release = usbdev_release,
  1497. };
  1498. void usb_fs_classdev_common_remove(struct usb_device *udev)
  1499. {
  1500. struct dev_state *ps;
  1501. struct siginfo sinfo;
  1502. while (!list_empty(&udev->filelist)) {
  1503. ps = list_entry(udev->filelist.next, struct dev_state, list);
  1504. destroy_all_async(ps);
  1505. wake_up_all(&ps->wait);
  1506. list_del_init(&ps->list);
  1507. if (ps->discsignr) {
  1508. sinfo.si_signo = ps->discsignr;
  1509. sinfo.si_errno = EPIPE;
  1510. sinfo.si_code = SI_ASYNCIO;
  1511. sinfo.si_addr = ps->disccontext;
  1512. kill_pid_info_as_uid(ps->discsignr, &sinfo,
  1513. ps->disc_pid, ps->disc_uid,
  1514. ps->disc_euid, ps->secid);
  1515. }
  1516. }
  1517. }
  1518. #ifdef CONFIG_USB_DEVICE_CLASS
  1519. static struct class *usb_classdev_class;
  1520. static int usb_classdev_add(struct usb_device *dev)
  1521. {
  1522. int minor = ((dev->bus->busnum-1) * 128) + (dev->devnum-1);
  1523. dev->usb_classdev = device_create(usb_classdev_class, &dev->dev,
  1524. MKDEV(USB_DEVICE_MAJOR, minor),
  1525. "usbdev%d.%d", dev->bus->busnum, dev->devnum);
  1526. if (IS_ERR(dev->usb_classdev))
  1527. return PTR_ERR(dev->usb_classdev);
  1528. return 0;
  1529. }
  1530. static void usb_classdev_remove(struct usb_device *dev)
  1531. {
  1532. device_unregister(dev->usb_classdev);
  1533. usb_fs_classdev_common_remove(dev);
  1534. }
  1535. static int usb_classdev_notify(struct notifier_block *self,
  1536. unsigned long action, void *dev)
  1537. {
  1538. switch (action) {
  1539. case USB_DEVICE_ADD:
  1540. if (usb_classdev_add(dev))
  1541. return NOTIFY_BAD;
  1542. break;
  1543. case USB_DEVICE_REMOVE:
  1544. usb_classdev_remove(dev);
  1545. break;
  1546. }
  1547. return NOTIFY_OK;
  1548. }
  1549. static struct notifier_block usbdev_nb = {
  1550. .notifier_call = usb_classdev_notify,
  1551. };
  1552. #endif
  1553. static struct cdev usb_device_cdev;
  1554. int __init usb_devio_init(void)
  1555. {
  1556. int retval;
  1557. retval = register_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX,
  1558. "usb_device");
  1559. if (retval) {
  1560. err("unable to register minors for usb_device");
  1561. goto out;
  1562. }
  1563. cdev_init(&usb_device_cdev, &usbdev_file_operations);
  1564. retval = cdev_add(&usb_device_cdev, USB_DEVICE_DEV, USB_DEVICE_MAX);
  1565. if (retval) {
  1566. err("unable to get usb_device major %d", USB_DEVICE_MAJOR);
  1567. goto error_cdev;
  1568. }
  1569. #ifdef CONFIG_USB_DEVICE_CLASS
  1570. usb_classdev_class = class_create(THIS_MODULE, "usb_device");
  1571. if (IS_ERR(usb_classdev_class)) {
  1572. err("unable to register usb_device class");
  1573. retval = PTR_ERR(usb_classdev_class);
  1574. cdev_del(&usb_device_cdev);
  1575. usb_classdev_class = NULL;
  1576. goto out;
  1577. }
  1578. usb_register_notify(&usbdev_nb);
  1579. #endif
  1580. out:
  1581. return retval;
  1582. error_cdev:
  1583. unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
  1584. goto out;
  1585. }
  1586. void usb_devio_cleanup(void)
  1587. {
  1588. #ifdef CONFIG_USB_DEVICE_CLASS
  1589. usb_unregister_notify(&usbdev_nb);
  1590. class_destroy(usb_classdev_class);
  1591. #endif
  1592. cdev_del(&usb_device_cdev);
  1593. unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
  1594. }