devio.c 44 KB

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