devio.c 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271
  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/signal.h>
  38. #include <linux/poll.h>
  39. #include <linux/module.h>
  40. #include <linux/string.h>
  41. #include <linux/usb.h>
  42. #include <linux/usbdevice_fs.h>
  43. #include <linux/usb/hcd.h> /* for usbcore internals */
  44. #include <linux/cdev.h>
  45. #include <linux/notifier.h>
  46. #include <linux/security.h>
  47. #include <linux/user_namespace.h>
  48. #include <linux/scatterlist.h>
  49. #include <linux/uaccess.h>
  50. #include <asm/byteorder.h>
  51. #include <linux/moduleparam.h>
  52. #include "usb.h"
  53. #define USB_MAXBUS 64
  54. #define USB_DEVICE_MAX (USB_MAXBUS * 128)
  55. #define USB_SG_SIZE 16384 /* split-size for large txs */
  56. /* Mutual exclusion for removal, open, and release */
  57. DEFINE_MUTEX(usbfs_mutex);
  58. struct dev_state {
  59. struct list_head list; /* state list */
  60. struct usb_device *dev;
  61. struct file *file;
  62. spinlock_t lock; /* protects the async urb lists */
  63. struct list_head async_pending;
  64. struct list_head async_completed;
  65. wait_queue_head_t wait; /* wake up if a request completed */
  66. unsigned int discsignr;
  67. struct pid *disc_pid;
  68. const struct cred *cred;
  69. void __user *disccontext;
  70. unsigned long ifclaimed;
  71. u32 secid;
  72. u32 disabled_bulk_eps;
  73. };
  74. struct async {
  75. struct list_head asynclist;
  76. struct dev_state *ps;
  77. struct pid *pid;
  78. const struct cred *cred;
  79. unsigned int signr;
  80. unsigned int ifnum;
  81. void __user *userbuffer;
  82. void __user *userurb;
  83. struct urb *urb;
  84. unsigned int mem_usage;
  85. int status;
  86. u32 secid;
  87. u8 bulk_addr;
  88. u8 bulk_status;
  89. };
  90. static bool usbfs_snoop;
  91. module_param(usbfs_snoop, bool, S_IRUGO | S_IWUSR);
  92. MODULE_PARM_DESC(usbfs_snoop, "true to log all usbfs traffic");
  93. #define snoop(dev, format, arg...) \
  94. do { \
  95. if (usbfs_snoop) \
  96. dev_info(dev , format , ## arg); \
  97. } while (0)
  98. enum snoop_when {
  99. SUBMIT, COMPLETE
  100. };
  101. #define USB_DEVICE_DEV MKDEV(USB_DEVICE_MAJOR, 0)
  102. /* Limit on the total amount of memory we can allocate for transfers */
  103. static unsigned usbfs_memory_mb = 16;
  104. module_param(usbfs_memory_mb, uint, 0644);
  105. MODULE_PARM_DESC(usbfs_memory_mb,
  106. "maximum MB allowed for usbfs buffers (0 = no limit)");
  107. /* Hard limit, necessary to avoid aithmetic overflow */
  108. #define USBFS_XFER_MAX (UINT_MAX / 2 - 1000000)
  109. static atomic_t usbfs_memory_usage; /* Total memory currently allocated */
  110. /* Check whether it's okay to allocate more memory for a transfer */
  111. static int usbfs_increase_memory_usage(unsigned amount)
  112. {
  113. unsigned lim;
  114. /*
  115. * Convert usbfs_memory_mb to bytes, avoiding overflows.
  116. * 0 means use the hard limit (effectively unlimited).
  117. */
  118. lim = ACCESS_ONCE(usbfs_memory_mb);
  119. if (lim == 0 || lim > (USBFS_XFER_MAX >> 20))
  120. lim = USBFS_XFER_MAX;
  121. else
  122. lim <<= 20;
  123. atomic_add(amount, &usbfs_memory_usage);
  124. if (atomic_read(&usbfs_memory_usage) <= lim)
  125. return 0;
  126. atomic_sub(amount, &usbfs_memory_usage);
  127. return -ENOMEM;
  128. }
  129. /* Memory for a transfer is being deallocated */
  130. static void usbfs_decrease_memory_usage(unsigned amount)
  131. {
  132. atomic_sub(amount, &usbfs_memory_usage);
  133. }
  134. static int connected(struct dev_state *ps)
  135. {
  136. return (!list_empty(&ps->list) &&
  137. ps->dev->state != USB_STATE_NOTATTACHED);
  138. }
  139. static loff_t usbdev_lseek(struct file *file, loff_t offset, int orig)
  140. {
  141. loff_t ret;
  142. mutex_lock(&file_inode(file)->i_mutex);
  143. switch (orig) {
  144. case 0:
  145. file->f_pos = offset;
  146. ret = file->f_pos;
  147. break;
  148. case 1:
  149. file->f_pos += offset;
  150. ret = file->f_pos;
  151. break;
  152. case 2:
  153. default:
  154. ret = -EINVAL;
  155. }
  156. mutex_unlock(&file_inode(file)->i_mutex);
  157. return ret;
  158. }
  159. static ssize_t usbdev_read(struct file *file, char __user *buf, size_t nbytes,
  160. loff_t *ppos)
  161. {
  162. struct dev_state *ps = file->private_data;
  163. struct usb_device *dev = ps->dev;
  164. ssize_t ret = 0;
  165. unsigned len;
  166. loff_t pos;
  167. int i;
  168. pos = *ppos;
  169. usb_lock_device(dev);
  170. if (!connected(ps)) {
  171. ret = -ENODEV;
  172. goto err;
  173. } else if (pos < 0) {
  174. ret = -EINVAL;
  175. goto err;
  176. }
  177. if (pos < sizeof(struct usb_device_descriptor)) {
  178. /* 18 bytes - fits on the stack */
  179. struct usb_device_descriptor temp_desc;
  180. memcpy(&temp_desc, &dev->descriptor, sizeof(dev->descriptor));
  181. le16_to_cpus(&temp_desc.bcdUSB);
  182. le16_to_cpus(&temp_desc.idVendor);
  183. le16_to_cpus(&temp_desc.idProduct);
  184. le16_to_cpus(&temp_desc.bcdDevice);
  185. len = sizeof(struct usb_device_descriptor) - pos;
  186. if (len > nbytes)
  187. len = nbytes;
  188. if (copy_to_user(buf, ((char *)&temp_desc) + pos, len)) {
  189. ret = -EFAULT;
  190. goto err;
  191. }
  192. *ppos += len;
  193. buf += len;
  194. nbytes -= len;
  195. ret += len;
  196. }
  197. pos = sizeof(struct usb_device_descriptor);
  198. for (i = 0; nbytes && i < dev->descriptor.bNumConfigurations; i++) {
  199. struct usb_config_descriptor *config =
  200. (struct usb_config_descriptor *)dev->rawdescriptors[i];
  201. unsigned int length = le16_to_cpu(config->wTotalLength);
  202. if (*ppos < pos + length) {
  203. /* The descriptor may claim to be longer than it
  204. * really is. Here is the actual allocated length. */
  205. unsigned alloclen =
  206. le16_to_cpu(dev->config[i].desc.wTotalLength);
  207. len = length - (*ppos - pos);
  208. if (len > nbytes)
  209. len = nbytes;
  210. /* Simply don't write (skip over) unallocated parts */
  211. if (alloclen > (*ppos - pos)) {
  212. alloclen -= (*ppos - pos);
  213. if (copy_to_user(buf,
  214. dev->rawdescriptors[i] + (*ppos - pos),
  215. min(len, alloclen))) {
  216. ret = -EFAULT;
  217. goto err;
  218. }
  219. }
  220. *ppos += len;
  221. buf += len;
  222. nbytes -= len;
  223. ret += len;
  224. }
  225. pos += length;
  226. }
  227. err:
  228. usb_unlock_device(dev);
  229. return ret;
  230. }
  231. /*
  232. * async list handling
  233. */
  234. static struct async *alloc_async(unsigned int numisoframes)
  235. {
  236. struct async *as;
  237. as = kzalloc(sizeof(struct async), GFP_KERNEL);
  238. if (!as)
  239. return NULL;
  240. as->urb = usb_alloc_urb(numisoframes, GFP_KERNEL);
  241. if (!as->urb) {
  242. kfree(as);
  243. return NULL;
  244. }
  245. return as;
  246. }
  247. static void free_async(struct async *as)
  248. {
  249. int i;
  250. put_pid(as->pid);
  251. if (as->cred)
  252. put_cred(as->cred);
  253. for (i = 0; i < as->urb->num_sgs; i++) {
  254. if (sg_page(&as->urb->sg[i]))
  255. kfree(sg_virt(&as->urb->sg[i]));
  256. }
  257. kfree(as->urb->sg);
  258. kfree(as->urb->transfer_buffer);
  259. kfree(as->urb->setup_packet);
  260. usb_free_urb(as->urb);
  261. usbfs_decrease_memory_usage(as->mem_usage);
  262. kfree(as);
  263. }
  264. static void async_newpending(struct async *as)
  265. {
  266. struct dev_state *ps = as->ps;
  267. unsigned long flags;
  268. spin_lock_irqsave(&ps->lock, flags);
  269. list_add_tail(&as->asynclist, &ps->async_pending);
  270. spin_unlock_irqrestore(&ps->lock, flags);
  271. }
  272. static void async_removepending(struct async *as)
  273. {
  274. struct dev_state *ps = as->ps;
  275. unsigned long flags;
  276. spin_lock_irqsave(&ps->lock, flags);
  277. list_del_init(&as->asynclist);
  278. spin_unlock_irqrestore(&ps->lock, flags);
  279. }
  280. static struct async *async_getcompleted(struct dev_state *ps)
  281. {
  282. unsigned long flags;
  283. struct async *as = NULL;
  284. spin_lock_irqsave(&ps->lock, flags);
  285. if (!list_empty(&ps->async_completed)) {
  286. as = list_entry(ps->async_completed.next, struct async,
  287. asynclist);
  288. list_del_init(&as->asynclist);
  289. }
  290. spin_unlock_irqrestore(&ps->lock, flags);
  291. return as;
  292. }
  293. static struct async *async_getpending(struct dev_state *ps,
  294. void __user *userurb)
  295. {
  296. struct async *as;
  297. list_for_each_entry(as, &ps->async_pending, asynclist)
  298. if (as->userurb == userurb) {
  299. list_del_init(&as->asynclist);
  300. return as;
  301. }
  302. return NULL;
  303. }
  304. static void snoop_urb(struct usb_device *udev,
  305. void __user *userurb, int pipe, unsigned length,
  306. int timeout_or_status, enum snoop_when when,
  307. unsigned char *data, unsigned data_len)
  308. {
  309. static const char *types[] = {"isoc", "int", "ctrl", "bulk"};
  310. static const char *dirs[] = {"out", "in"};
  311. int ep;
  312. const char *t, *d;
  313. if (!usbfs_snoop)
  314. return;
  315. ep = usb_pipeendpoint(pipe);
  316. t = types[usb_pipetype(pipe)];
  317. d = dirs[!!usb_pipein(pipe)];
  318. if (userurb) { /* Async */
  319. if (when == SUBMIT)
  320. dev_info(&udev->dev, "userurb %p, ep%d %s-%s, "
  321. "length %u\n",
  322. userurb, ep, t, d, length);
  323. else
  324. dev_info(&udev->dev, "userurb %p, ep%d %s-%s, "
  325. "actual_length %u status %d\n",
  326. userurb, ep, t, d, length,
  327. timeout_or_status);
  328. } else {
  329. if (when == SUBMIT)
  330. dev_info(&udev->dev, "ep%d %s-%s, length %u, "
  331. "timeout %d\n",
  332. ep, t, d, length, timeout_or_status);
  333. else
  334. dev_info(&udev->dev, "ep%d %s-%s, actual_length %u, "
  335. "status %d\n",
  336. ep, t, d, length, timeout_or_status);
  337. }
  338. if (data && data_len > 0) {
  339. print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
  340. data, data_len, 1);
  341. }
  342. }
  343. static void snoop_urb_data(struct urb *urb, unsigned len)
  344. {
  345. int i, size;
  346. if (!usbfs_snoop)
  347. return;
  348. if (urb->num_sgs == 0) {
  349. print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
  350. urb->transfer_buffer, len, 1);
  351. return;
  352. }
  353. for (i = 0; i < urb->num_sgs && len; i++) {
  354. size = (len > USB_SG_SIZE) ? USB_SG_SIZE : len;
  355. print_hex_dump(KERN_DEBUG, "data: ", DUMP_PREFIX_NONE, 32, 1,
  356. sg_virt(&urb->sg[i]), size, 1);
  357. len -= size;
  358. }
  359. }
  360. static int copy_urb_data_to_user(u8 __user *userbuffer, struct urb *urb)
  361. {
  362. unsigned i, len, size;
  363. if (urb->number_of_packets > 0) /* Isochronous */
  364. len = urb->transfer_buffer_length;
  365. else /* Non-Isoc */
  366. len = urb->actual_length;
  367. if (urb->num_sgs == 0) {
  368. if (copy_to_user(userbuffer, urb->transfer_buffer, len))
  369. return -EFAULT;
  370. return 0;
  371. }
  372. for (i = 0; i < urb->num_sgs && len; i++) {
  373. size = (len > USB_SG_SIZE) ? USB_SG_SIZE : len;
  374. if (copy_to_user(userbuffer, sg_virt(&urb->sg[i]), size))
  375. return -EFAULT;
  376. userbuffer += size;
  377. len -= size;
  378. }
  379. return 0;
  380. }
  381. #define AS_CONTINUATION 1
  382. #define AS_UNLINK 2
  383. static void cancel_bulk_urbs(struct dev_state *ps, unsigned bulk_addr)
  384. __releases(ps->lock)
  385. __acquires(ps->lock)
  386. {
  387. struct urb *urb;
  388. struct async *as;
  389. /* Mark all the pending URBs that match bulk_addr, up to but not
  390. * including the first one without AS_CONTINUATION. If such an
  391. * URB is encountered then a new transfer has already started so
  392. * the endpoint doesn't need to be disabled; otherwise it does.
  393. */
  394. list_for_each_entry(as, &ps->async_pending, asynclist) {
  395. if (as->bulk_addr == bulk_addr) {
  396. if (as->bulk_status != AS_CONTINUATION)
  397. goto rescan;
  398. as->bulk_status = AS_UNLINK;
  399. as->bulk_addr = 0;
  400. }
  401. }
  402. ps->disabled_bulk_eps |= (1 << bulk_addr);
  403. /* Now carefully unlink all the marked pending URBs */
  404. rescan:
  405. list_for_each_entry(as, &ps->async_pending, asynclist) {
  406. if (as->bulk_status == AS_UNLINK) {
  407. as->bulk_status = 0; /* Only once */
  408. urb = as->urb;
  409. usb_get_urb(urb);
  410. spin_unlock(&ps->lock); /* Allow completions */
  411. usb_unlink_urb(urb);
  412. usb_put_urb(urb);
  413. spin_lock(&ps->lock);
  414. goto rescan;
  415. }
  416. }
  417. }
  418. static void async_completed(struct urb *urb)
  419. {
  420. struct async *as = urb->context;
  421. struct dev_state *ps = as->ps;
  422. struct siginfo sinfo;
  423. struct pid *pid = NULL;
  424. u32 secid = 0;
  425. const struct cred *cred = NULL;
  426. int signr;
  427. spin_lock(&ps->lock);
  428. list_move_tail(&as->asynclist, &ps->async_completed);
  429. as->status = urb->status;
  430. signr = as->signr;
  431. if (signr) {
  432. sinfo.si_signo = as->signr;
  433. sinfo.si_errno = as->status;
  434. sinfo.si_code = SI_ASYNCIO;
  435. sinfo.si_addr = as->userurb;
  436. pid = get_pid(as->pid);
  437. cred = get_cred(as->cred);
  438. secid = as->secid;
  439. }
  440. snoop(&urb->dev->dev, "urb complete\n");
  441. snoop_urb(urb->dev, as->userurb, urb->pipe, urb->actual_length,
  442. as->status, COMPLETE, NULL, 0);
  443. if ((urb->transfer_flags & URB_DIR_MASK) == USB_DIR_IN)
  444. snoop_urb_data(urb, urb->actual_length);
  445. if (as->status < 0 && as->bulk_addr && as->status != -ECONNRESET &&
  446. as->status != -ENOENT)
  447. cancel_bulk_urbs(ps, as->bulk_addr);
  448. spin_unlock(&ps->lock);
  449. if (signr) {
  450. kill_pid_info_as_cred(sinfo.si_signo, &sinfo, pid, cred, secid);
  451. put_pid(pid);
  452. put_cred(cred);
  453. }
  454. wake_up(&ps->wait);
  455. }
  456. static void destroy_async(struct dev_state *ps, struct list_head *list)
  457. {
  458. struct urb *urb;
  459. struct async *as;
  460. unsigned long flags;
  461. spin_lock_irqsave(&ps->lock, flags);
  462. while (!list_empty(list)) {
  463. as = list_entry(list->next, struct async, asynclist);
  464. list_del_init(&as->asynclist);
  465. urb = as->urb;
  466. usb_get_urb(urb);
  467. /* drop the spinlock so the completion handler can run */
  468. spin_unlock_irqrestore(&ps->lock, flags);
  469. usb_kill_urb(urb);
  470. usb_put_urb(urb);
  471. spin_lock_irqsave(&ps->lock, flags);
  472. }
  473. spin_unlock_irqrestore(&ps->lock, flags);
  474. }
  475. static void destroy_async_on_interface(struct dev_state *ps,
  476. unsigned int ifnum)
  477. {
  478. struct list_head *p, *q, hitlist;
  479. unsigned long flags;
  480. INIT_LIST_HEAD(&hitlist);
  481. spin_lock_irqsave(&ps->lock, flags);
  482. list_for_each_safe(p, q, &ps->async_pending)
  483. if (ifnum == list_entry(p, struct async, asynclist)->ifnum)
  484. list_move_tail(p, &hitlist);
  485. spin_unlock_irqrestore(&ps->lock, flags);
  486. destroy_async(ps, &hitlist);
  487. }
  488. static void destroy_all_async(struct dev_state *ps)
  489. {
  490. destroy_async(ps, &ps->async_pending);
  491. }
  492. /*
  493. * interface claims are made only at the request of user level code,
  494. * which can also release them (explicitly or by closing files).
  495. * they're also undone when devices disconnect.
  496. */
  497. static int driver_probe(struct usb_interface *intf,
  498. const struct usb_device_id *id)
  499. {
  500. return -ENODEV;
  501. }
  502. static void driver_disconnect(struct usb_interface *intf)
  503. {
  504. struct dev_state *ps = usb_get_intfdata(intf);
  505. unsigned int ifnum = intf->altsetting->desc.bInterfaceNumber;
  506. if (!ps)
  507. return;
  508. /* NOTE: this relies on usbcore having canceled and completed
  509. * all pending I/O requests; 2.6 does that.
  510. */
  511. if (likely(ifnum < 8*sizeof(ps->ifclaimed)))
  512. clear_bit(ifnum, &ps->ifclaimed);
  513. else
  514. dev_warn(&intf->dev, "interface number %u out of range\n",
  515. ifnum);
  516. usb_set_intfdata(intf, NULL);
  517. /* force async requests to complete */
  518. destroy_async_on_interface(ps, ifnum);
  519. }
  520. /* The following routines are merely placeholders. There is no way
  521. * to inform a user task about suspend or resumes.
  522. */
  523. static int driver_suspend(struct usb_interface *intf, pm_message_t msg)
  524. {
  525. return 0;
  526. }
  527. static int driver_resume(struct usb_interface *intf)
  528. {
  529. return 0;
  530. }
  531. struct usb_driver usbfs_driver = {
  532. .name = "usbfs",
  533. .probe = driver_probe,
  534. .disconnect = driver_disconnect,
  535. .suspend = driver_suspend,
  536. .resume = driver_resume,
  537. };
  538. static int claimintf(struct dev_state *ps, unsigned int ifnum)
  539. {
  540. struct usb_device *dev = ps->dev;
  541. struct usb_interface *intf;
  542. int err;
  543. if (ifnum >= 8*sizeof(ps->ifclaimed))
  544. return -EINVAL;
  545. /* already claimed */
  546. if (test_bit(ifnum, &ps->ifclaimed))
  547. return 0;
  548. intf = usb_ifnum_to_if(dev, ifnum);
  549. if (!intf)
  550. err = -ENOENT;
  551. else
  552. err = usb_driver_claim_interface(&usbfs_driver, intf, ps);
  553. if (err == 0)
  554. set_bit(ifnum, &ps->ifclaimed);
  555. return err;
  556. }
  557. static int releaseintf(struct dev_state *ps, unsigned int ifnum)
  558. {
  559. struct usb_device *dev;
  560. struct usb_interface *intf;
  561. int err;
  562. err = -EINVAL;
  563. if (ifnum >= 8*sizeof(ps->ifclaimed))
  564. return err;
  565. dev = ps->dev;
  566. intf = usb_ifnum_to_if(dev, ifnum);
  567. if (!intf)
  568. err = -ENOENT;
  569. else if (test_and_clear_bit(ifnum, &ps->ifclaimed)) {
  570. usb_driver_release_interface(&usbfs_driver, intf);
  571. err = 0;
  572. }
  573. return err;
  574. }
  575. static int checkintf(struct dev_state *ps, unsigned int ifnum)
  576. {
  577. if (ps->dev->state != USB_STATE_CONFIGURED)
  578. return -EHOSTUNREACH;
  579. if (ifnum >= 8*sizeof(ps->ifclaimed))
  580. return -EINVAL;
  581. if (test_bit(ifnum, &ps->ifclaimed))
  582. return 0;
  583. /* if not yet claimed, claim it for the driver */
  584. dev_warn(&ps->dev->dev, "usbfs: process %d (%s) did not claim "
  585. "interface %u before use\n", task_pid_nr(current),
  586. current->comm, ifnum);
  587. return claimintf(ps, ifnum);
  588. }
  589. static int findintfep(struct usb_device *dev, unsigned int ep)
  590. {
  591. unsigned int i, j, e;
  592. struct usb_interface *intf;
  593. struct usb_host_interface *alts;
  594. struct usb_endpoint_descriptor *endpt;
  595. if (ep & ~(USB_DIR_IN|0xf))
  596. return -EINVAL;
  597. if (!dev->actconfig)
  598. return -ESRCH;
  599. for (i = 0; i < dev->actconfig->desc.bNumInterfaces; i++) {
  600. intf = dev->actconfig->interface[i];
  601. for (j = 0; j < intf->num_altsetting; j++) {
  602. alts = &intf->altsetting[j];
  603. for (e = 0; e < alts->desc.bNumEndpoints; e++) {
  604. endpt = &alts->endpoint[e].desc;
  605. if (endpt->bEndpointAddress == ep)
  606. return alts->desc.bInterfaceNumber;
  607. }
  608. }
  609. }
  610. return -ENOENT;
  611. }
  612. static int check_ctrlrecip(struct dev_state *ps, unsigned int requesttype,
  613. unsigned int request, unsigned int index)
  614. {
  615. int ret = 0;
  616. struct usb_host_interface *alt_setting;
  617. if (ps->dev->state != USB_STATE_UNAUTHENTICATED
  618. && ps->dev->state != USB_STATE_ADDRESS
  619. && ps->dev->state != USB_STATE_CONFIGURED)
  620. return -EHOSTUNREACH;
  621. if (USB_TYPE_VENDOR == (USB_TYPE_MASK & requesttype))
  622. return 0;
  623. /*
  624. * check for the special corner case 'get_device_id' in the printer
  625. * class specification, where wIndex is (interface << 8 | altsetting)
  626. * instead of just interface
  627. */
  628. if (requesttype == 0xa1 && request == 0) {
  629. alt_setting = usb_find_alt_setting(ps->dev->actconfig,
  630. index >> 8, index & 0xff);
  631. if (alt_setting
  632. && alt_setting->desc.bInterfaceClass == USB_CLASS_PRINTER)
  633. index >>= 8;
  634. }
  635. index &= 0xff;
  636. switch (requesttype & USB_RECIP_MASK) {
  637. case USB_RECIP_ENDPOINT:
  638. if ((index & ~USB_DIR_IN) == 0)
  639. return 0;
  640. ret = findintfep(ps->dev, index);
  641. if (ret >= 0)
  642. ret = checkintf(ps, ret);
  643. break;
  644. case USB_RECIP_INTERFACE:
  645. ret = checkintf(ps, index);
  646. break;
  647. }
  648. return ret;
  649. }
  650. static int match_devt(struct device *dev, void *data)
  651. {
  652. return dev->devt == (dev_t) (unsigned long) data;
  653. }
  654. static struct usb_device *usbdev_lookup_by_devt(dev_t devt)
  655. {
  656. struct device *dev;
  657. dev = bus_find_device(&usb_bus_type, NULL,
  658. (void *) (unsigned long) devt, match_devt);
  659. if (!dev)
  660. return NULL;
  661. return container_of(dev, struct usb_device, dev);
  662. }
  663. /*
  664. * file operations
  665. */
  666. static int usbdev_open(struct inode *inode, struct file *file)
  667. {
  668. struct usb_device *dev = NULL;
  669. struct dev_state *ps;
  670. int ret;
  671. ret = -ENOMEM;
  672. ps = kmalloc(sizeof(struct dev_state), GFP_KERNEL);
  673. if (!ps)
  674. goto out_free_ps;
  675. ret = -ENODEV;
  676. /* Protect against simultaneous removal or release */
  677. mutex_lock(&usbfs_mutex);
  678. /* usbdev device-node */
  679. if (imajor(inode) == USB_DEVICE_MAJOR)
  680. dev = usbdev_lookup_by_devt(inode->i_rdev);
  681. mutex_unlock(&usbfs_mutex);
  682. if (!dev)
  683. goto out_free_ps;
  684. usb_lock_device(dev);
  685. if (dev->state == USB_STATE_NOTATTACHED)
  686. goto out_unlock_device;
  687. ret = usb_autoresume_device(dev);
  688. if (ret)
  689. goto out_unlock_device;
  690. ps->dev = dev;
  691. ps->file = file;
  692. spin_lock_init(&ps->lock);
  693. INIT_LIST_HEAD(&ps->list);
  694. INIT_LIST_HEAD(&ps->async_pending);
  695. INIT_LIST_HEAD(&ps->async_completed);
  696. init_waitqueue_head(&ps->wait);
  697. ps->discsignr = 0;
  698. ps->disc_pid = get_pid(task_pid(current));
  699. ps->cred = get_current_cred();
  700. ps->disccontext = NULL;
  701. ps->ifclaimed = 0;
  702. security_task_getsecid(current, &ps->secid);
  703. smp_wmb();
  704. list_add_tail(&ps->list, &dev->filelist);
  705. file->private_data = ps;
  706. usb_unlock_device(dev);
  707. snoop(&dev->dev, "opened by process %d: %s\n", task_pid_nr(current),
  708. current->comm);
  709. return ret;
  710. out_unlock_device:
  711. usb_unlock_device(dev);
  712. usb_put_dev(dev);
  713. out_free_ps:
  714. kfree(ps);
  715. return ret;
  716. }
  717. static int usbdev_release(struct inode *inode, struct file *file)
  718. {
  719. struct dev_state *ps = file->private_data;
  720. struct usb_device *dev = ps->dev;
  721. unsigned int ifnum;
  722. struct async *as;
  723. usb_lock_device(dev);
  724. usb_hub_release_all_ports(dev, ps);
  725. list_del_init(&ps->list);
  726. for (ifnum = 0; ps->ifclaimed && ifnum < 8*sizeof(ps->ifclaimed);
  727. ifnum++) {
  728. if (test_bit(ifnum, &ps->ifclaimed))
  729. releaseintf(ps, ifnum);
  730. }
  731. destroy_all_async(ps);
  732. usb_autosuspend_device(dev);
  733. usb_unlock_device(dev);
  734. usb_put_dev(dev);
  735. put_pid(ps->disc_pid);
  736. put_cred(ps->cred);
  737. as = async_getcompleted(ps);
  738. while (as) {
  739. free_async(as);
  740. as = async_getcompleted(ps);
  741. }
  742. kfree(ps);
  743. return 0;
  744. }
  745. static int proc_control(struct dev_state *ps, void __user *arg)
  746. {
  747. struct usb_device *dev = ps->dev;
  748. struct usbdevfs_ctrltransfer ctrl;
  749. unsigned int tmo;
  750. unsigned char *tbuf;
  751. unsigned wLength;
  752. int i, pipe, ret;
  753. if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
  754. return -EFAULT;
  755. ret = check_ctrlrecip(ps, ctrl.bRequestType, ctrl.bRequest,
  756. ctrl.wIndex);
  757. if (ret)
  758. return ret;
  759. wLength = ctrl.wLength; /* To suppress 64k PAGE_SIZE warning */
  760. if (wLength > PAGE_SIZE)
  761. return -EINVAL;
  762. ret = usbfs_increase_memory_usage(PAGE_SIZE + sizeof(struct urb) +
  763. sizeof(struct usb_ctrlrequest));
  764. if (ret)
  765. return ret;
  766. tbuf = (unsigned char *)__get_free_page(GFP_KERNEL);
  767. if (!tbuf) {
  768. ret = -ENOMEM;
  769. goto done;
  770. }
  771. tmo = ctrl.timeout;
  772. snoop(&dev->dev, "control urb: bRequestType=%02x "
  773. "bRequest=%02x wValue=%04x "
  774. "wIndex=%04x wLength=%04x\n",
  775. ctrl.bRequestType, ctrl.bRequest,
  776. __le16_to_cpup(&ctrl.wValue),
  777. __le16_to_cpup(&ctrl.wIndex),
  778. __le16_to_cpup(&ctrl.wLength));
  779. if (ctrl.bRequestType & 0x80) {
  780. if (ctrl.wLength && !access_ok(VERIFY_WRITE, ctrl.data,
  781. ctrl.wLength)) {
  782. ret = -EINVAL;
  783. goto done;
  784. }
  785. pipe = usb_rcvctrlpipe(dev, 0);
  786. snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT, NULL, 0);
  787. usb_unlock_device(dev);
  788. i = usb_control_msg(dev, pipe, ctrl.bRequest,
  789. ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
  790. tbuf, ctrl.wLength, tmo);
  791. usb_lock_device(dev);
  792. snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE,
  793. tbuf, max(i, 0));
  794. if ((i > 0) && ctrl.wLength) {
  795. if (copy_to_user(ctrl.data, tbuf, i)) {
  796. ret = -EFAULT;
  797. goto done;
  798. }
  799. }
  800. } else {
  801. if (ctrl.wLength) {
  802. if (copy_from_user(tbuf, ctrl.data, ctrl.wLength)) {
  803. ret = -EFAULT;
  804. goto done;
  805. }
  806. }
  807. pipe = usb_sndctrlpipe(dev, 0);
  808. snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT,
  809. tbuf, ctrl.wLength);
  810. usb_unlock_device(dev);
  811. i = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), ctrl.bRequest,
  812. ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
  813. tbuf, ctrl.wLength, tmo);
  814. usb_lock_device(dev);
  815. snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE, NULL, 0);
  816. }
  817. if (i < 0 && i != -EPIPE) {
  818. dev_printk(KERN_DEBUG, &dev->dev, "usbfs: USBDEVFS_CONTROL "
  819. "failed cmd %s rqt %u rq %u len %u ret %d\n",
  820. current->comm, ctrl.bRequestType, ctrl.bRequest,
  821. ctrl.wLength, i);
  822. }
  823. ret = i;
  824. done:
  825. free_page((unsigned long) tbuf);
  826. usbfs_decrease_memory_usage(PAGE_SIZE + sizeof(struct urb) +
  827. sizeof(struct usb_ctrlrequest));
  828. return ret;
  829. }
  830. static int proc_bulk(struct dev_state *ps, void __user *arg)
  831. {
  832. struct usb_device *dev = ps->dev;
  833. struct usbdevfs_bulktransfer bulk;
  834. unsigned int tmo, len1, pipe;
  835. int len2;
  836. unsigned char *tbuf;
  837. int i, ret;
  838. if (copy_from_user(&bulk, arg, sizeof(bulk)))
  839. return -EFAULT;
  840. ret = findintfep(ps->dev, bulk.ep);
  841. if (ret < 0)
  842. return ret;
  843. ret = checkintf(ps, ret);
  844. if (ret)
  845. return ret;
  846. if (bulk.ep & USB_DIR_IN)
  847. pipe = usb_rcvbulkpipe(dev, bulk.ep & 0x7f);
  848. else
  849. pipe = usb_sndbulkpipe(dev, bulk.ep & 0x7f);
  850. if (!usb_maxpacket(dev, pipe, !(bulk.ep & USB_DIR_IN)))
  851. return -EINVAL;
  852. len1 = bulk.len;
  853. if (len1 >= USBFS_XFER_MAX)
  854. return -EINVAL;
  855. ret = usbfs_increase_memory_usage(len1 + sizeof(struct urb));
  856. if (ret)
  857. return ret;
  858. if (!(tbuf = kmalloc(len1, GFP_KERNEL))) {
  859. ret = -ENOMEM;
  860. goto done;
  861. }
  862. tmo = bulk.timeout;
  863. if (bulk.ep & 0x80) {
  864. if (len1 && !access_ok(VERIFY_WRITE, bulk.data, len1)) {
  865. ret = -EINVAL;
  866. goto done;
  867. }
  868. snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, NULL, 0);
  869. usb_unlock_device(dev);
  870. i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
  871. usb_lock_device(dev);
  872. snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, tbuf, len2);
  873. if (!i && len2) {
  874. if (copy_to_user(bulk.data, tbuf, len2)) {
  875. ret = -EFAULT;
  876. goto done;
  877. }
  878. }
  879. } else {
  880. if (len1) {
  881. if (copy_from_user(tbuf, bulk.data, len1)) {
  882. ret = -EFAULT;
  883. goto done;
  884. }
  885. }
  886. snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, tbuf, len1);
  887. usb_unlock_device(dev);
  888. i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
  889. usb_lock_device(dev);
  890. snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, NULL, 0);
  891. }
  892. ret = (i < 0 ? i : len2);
  893. done:
  894. kfree(tbuf);
  895. usbfs_decrease_memory_usage(len1 + sizeof(struct urb));
  896. return ret;
  897. }
  898. static int proc_resetep(struct dev_state *ps, void __user *arg)
  899. {
  900. unsigned int ep;
  901. int ret;
  902. if (get_user(ep, (unsigned int __user *)arg))
  903. return -EFAULT;
  904. ret = findintfep(ps->dev, ep);
  905. if (ret < 0)
  906. return ret;
  907. ret = checkintf(ps, ret);
  908. if (ret)
  909. return ret;
  910. usb_reset_endpoint(ps->dev, ep);
  911. return 0;
  912. }
  913. static int proc_clearhalt(struct dev_state *ps, void __user *arg)
  914. {
  915. unsigned int ep;
  916. int pipe;
  917. int ret;
  918. if (get_user(ep, (unsigned int __user *)arg))
  919. return -EFAULT;
  920. ret = findintfep(ps->dev, ep);
  921. if (ret < 0)
  922. return ret;
  923. ret = checkintf(ps, ret);
  924. if (ret)
  925. return ret;
  926. if (ep & USB_DIR_IN)
  927. pipe = usb_rcvbulkpipe(ps->dev, ep & 0x7f);
  928. else
  929. pipe = usb_sndbulkpipe(ps->dev, ep & 0x7f);
  930. return usb_clear_halt(ps->dev, pipe);
  931. }
  932. static int proc_getdriver(struct dev_state *ps, void __user *arg)
  933. {
  934. struct usbdevfs_getdriver gd;
  935. struct usb_interface *intf;
  936. int ret;
  937. if (copy_from_user(&gd, arg, sizeof(gd)))
  938. return -EFAULT;
  939. intf = usb_ifnum_to_if(ps->dev, gd.interface);
  940. if (!intf || !intf->dev.driver)
  941. ret = -ENODATA;
  942. else {
  943. strlcpy(gd.driver, intf->dev.driver->name,
  944. sizeof(gd.driver));
  945. ret = (copy_to_user(arg, &gd, sizeof(gd)) ? -EFAULT : 0);
  946. }
  947. return ret;
  948. }
  949. static int proc_connectinfo(struct dev_state *ps, void __user *arg)
  950. {
  951. struct usbdevfs_connectinfo ci = {
  952. .devnum = ps->dev->devnum,
  953. .slow = ps->dev->speed == USB_SPEED_LOW
  954. };
  955. if (copy_to_user(arg, &ci, sizeof(ci)))
  956. return -EFAULT;
  957. return 0;
  958. }
  959. static int proc_resetdevice(struct dev_state *ps)
  960. {
  961. return usb_reset_device(ps->dev);
  962. }
  963. static int proc_setintf(struct dev_state *ps, void __user *arg)
  964. {
  965. struct usbdevfs_setinterface setintf;
  966. int ret;
  967. if (copy_from_user(&setintf, arg, sizeof(setintf)))
  968. return -EFAULT;
  969. if ((ret = checkintf(ps, setintf.interface)))
  970. return ret;
  971. return usb_set_interface(ps->dev, setintf.interface,
  972. setintf.altsetting);
  973. }
  974. static int proc_setconfig(struct dev_state *ps, void __user *arg)
  975. {
  976. int u;
  977. int status = 0;
  978. struct usb_host_config *actconfig;
  979. if (get_user(u, (int __user *)arg))
  980. return -EFAULT;
  981. actconfig = ps->dev->actconfig;
  982. /* Don't touch the device if any interfaces are claimed.
  983. * It could interfere with other drivers' operations, and if
  984. * an interface is claimed by usbfs it could easily deadlock.
  985. */
  986. if (actconfig) {
  987. int i;
  988. for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
  989. if (usb_interface_claimed(actconfig->interface[i])) {
  990. dev_warn(&ps->dev->dev,
  991. "usbfs: interface %d claimed by %s "
  992. "while '%s' sets config #%d\n",
  993. actconfig->interface[i]
  994. ->cur_altsetting
  995. ->desc.bInterfaceNumber,
  996. actconfig->interface[i]
  997. ->dev.driver->name,
  998. current->comm, u);
  999. status = -EBUSY;
  1000. break;
  1001. }
  1002. }
  1003. }
  1004. /* SET_CONFIGURATION is often abused as a "cheap" driver reset,
  1005. * so avoid usb_set_configuration()'s kick to sysfs
  1006. */
  1007. if (status == 0) {
  1008. if (actconfig && actconfig->desc.bConfigurationValue == u)
  1009. status = usb_reset_configuration(ps->dev);
  1010. else
  1011. status = usb_set_configuration(ps->dev, u);
  1012. }
  1013. return status;
  1014. }
  1015. static int proc_do_submiturb(struct dev_state *ps, struct usbdevfs_urb *uurb,
  1016. struct usbdevfs_iso_packet_desc __user *iso_frame_desc,
  1017. void __user *arg)
  1018. {
  1019. struct usbdevfs_iso_packet_desc *isopkt = NULL;
  1020. struct usb_host_endpoint *ep;
  1021. struct async *as = NULL;
  1022. struct usb_ctrlrequest *dr = NULL;
  1023. unsigned int u, totlen, isofrmlen;
  1024. int i, ret, is_in, num_sgs = 0, ifnum = -1;
  1025. void *buf;
  1026. if (uurb->flags & ~(USBDEVFS_URB_ISO_ASAP |
  1027. USBDEVFS_URB_SHORT_NOT_OK |
  1028. USBDEVFS_URB_BULK_CONTINUATION |
  1029. USBDEVFS_URB_NO_FSBR |
  1030. USBDEVFS_URB_ZERO_PACKET |
  1031. USBDEVFS_URB_NO_INTERRUPT))
  1032. return -EINVAL;
  1033. if (uurb->buffer_length > 0 && !uurb->buffer)
  1034. return -EINVAL;
  1035. if (!(uurb->type == USBDEVFS_URB_TYPE_CONTROL &&
  1036. (uurb->endpoint & ~USB_ENDPOINT_DIR_MASK) == 0)) {
  1037. ifnum = findintfep(ps->dev, uurb->endpoint);
  1038. if (ifnum < 0)
  1039. return ifnum;
  1040. ret = checkintf(ps, ifnum);
  1041. if (ret)
  1042. return ret;
  1043. }
  1044. if ((uurb->endpoint & USB_ENDPOINT_DIR_MASK) != 0) {
  1045. is_in = 1;
  1046. ep = ps->dev->ep_in[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
  1047. } else {
  1048. is_in = 0;
  1049. ep = ps->dev->ep_out[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
  1050. }
  1051. if (!ep)
  1052. return -ENOENT;
  1053. u = 0;
  1054. switch(uurb->type) {
  1055. case USBDEVFS_URB_TYPE_CONTROL:
  1056. if (!usb_endpoint_xfer_control(&ep->desc))
  1057. return -EINVAL;
  1058. /* min 8 byte setup packet */
  1059. if (uurb->buffer_length < 8)
  1060. return -EINVAL;
  1061. dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
  1062. if (!dr)
  1063. return -ENOMEM;
  1064. if (copy_from_user(dr, uurb->buffer, 8)) {
  1065. ret = -EFAULT;
  1066. goto error;
  1067. }
  1068. if (uurb->buffer_length < (le16_to_cpup(&dr->wLength) + 8)) {
  1069. ret = -EINVAL;
  1070. goto error;
  1071. }
  1072. ret = check_ctrlrecip(ps, dr->bRequestType, dr->bRequest,
  1073. le16_to_cpup(&dr->wIndex));
  1074. if (ret)
  1075. goto error;
  1076. uurb->number_of_packets = 0;
  1077. uurb->buffer_length = le16_to_cpup(&dr->wLength);
  1078. uurb->buffer += 8;
  1079. if ((dr->bRequestType & USB_DIR_IN) && uurb->buffer_length) {
  1080. is_in = 1;
  1081. uurb->endpoint |= USB_DIR_IN;
  1082. } else {
  1083. is_in = 0;
  1084. uurb->endpoint &= ~USB_DIR_IN;
  1085. }
  1086. snoop(&ps->dev->dev, "control urb: bRequestType=%02x "
  1087. "bRequest=%02x wValue=%04x "
  1088. "wIndex=%04x wLength=%04x\n",
  1089. dr->bRequestType, dr->bRequest,
  1090. __le16_to_cpup(&dr->wValue),
  1091. __le16_to_cpup(&dr->wIndex),
  1092. __le16_to_cpup(&dr->wLength));
  1093. u = sizeof(struct usb_ctrlrequest);
  1094. break;
  1095. case USBDEVFS_URB_TYPE_BULK:
  1096. switch (usb_endpoint_type(&ep->desc)) {
  1097. case USB_ENDPOINT_XFER_CONTROL:
  1098. case USB_ENDPOINT_XFER_ISOC:
  1099. return -EINVAL;
  1100. case USB_ENDPOINT_XFER_INT:
  1101. /* allow single-shot interrupt transfers */
  1102. uurb->type = USBDEVFS_URB_TYPE_INTERRUPT;
  1103. goto interrupt_urb;
  1104. }
  1105. uurb->number_of_packets = 0;
  1106. num_sgs = DIV_ROUND_UP(uurb->buffer_length, USB_SG_SIZE);
  1107. if (num_sgs == 1 || num_sgs > ps->dev->bus->sg_tablesize)
  1108. num_sgs = 0;
  1109. break;
  1110. case USBDEVFS_URB_TYPE_INTERRUPT:
  1111. if (!usb_endpoint_xfer_int(&ep->desc))
  1112. return -EINVAL;
  1113. interrupt_urb:
  1114. uurb->number_of_packets = 0;
  1115. break;
  1116. case USBDEVFS_URB_TYPE_ISO:
  1117. /* arbitrary limit */
  1118. if (uurb->number_of_packets < 1 ||
  1119. uurb->number_of_packets > 128)
  1120. return -EINVAL;
  1121. if (!usb_endpoint_xfer_isoc(&ep->desc))
  1122. return -EINVAL;
  1123. isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) *
  1124. uurb->number_of_packets;
  1125. if (!(isopkt = kmalloc(isofrmlen, GFP_KERNEL)))
  1126. return -ENOMEM;
  1127. if (copy_from_user(isopkt, iso_frame_desc, isofrmlen)) {
  1128. ret = -EFAULT;
  1129. goto error;
  1130. }
  1131. for (totlen = u = 0; u < uurb->number_of_packets; u++) {
  1132. /* arbitrary limit,
  1133. * sufficient for USB 2.0 high-bandwidth iso */
  1134. if (isopkt[u].length > 8192) {
  1135. ret = -EINVAL;
  1136. goto error;
  1137. }
  1138. totlen += isopkt[u].length;
  1139. }
  1140. u *= sizeof(struct usb_iso_packet_descriptor);
  1141. uurb->buffer_length = totlen;
  1142. break;
  1143. default:
  1144. return -EINVAL;
  1145. }
  1146. if (uurb->buffer_length >= USBFS_XFER_MAX) {
  1147. ret = -EINVAL;
  1148. goto error;
  1149. }
  1150. if (uurb->buffer_length > 0 &&
  1151. !access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
  1152. uurb->buffer, uurb->buffer_length)) {
  1153. ret = -EFAULT;
  1154. goto error;
  1155. }
  1156. as = alloc_async(uurb->number_of_packets);
  1157. if (!as) {
  1158. ret = -ENOMEM;
  1159. goto error;
  1160. }
  1161. u += sizeof(struct async) + sizeof(struct urb) + uurb->buffer_length +
  1162. num_sgs * sizeof(struct scatterlist);
  1163. ret = usbfs_increase_memory_usage(u);
  1164. if (ret)
  1165. goto error;
  1166. as->mem_usage = u;
  1167. if (num_sgs) {
  1168. as->urb->sg = kmalloc(num_sgs * sizeof(struct scatterlist),
  1169. GFP_KERNEL);
  1170. if (!as->urb->sg) {
  1171. ret = -ENOMEM;
  1172. goto error;
  1173. }
  1174. as->urb->num_sgs = num_sgs;
  1175. sg_init_table(as->urb->sg, as->urb->num_sgs);
  1176. totlen = uurb->buffer_length;
  1177. for (i = 0; i < as->urb->num_sgs; i++) {
  1178. u = (totlen > USB_SG_SIZE) ? USB_SG_SIZE : totlen;
  1179. buf = kmalloc(u, GFP_KERNEL);
  1180. if (!buf) {
  1181. ret = -ENOMEM;
  1182. goto error;
  1183. }
  1184. sg_set_buf(&as->urb->sg[i], buf, u);
  1185. if (!is_in) {
  1186. if (copy_from_user(buf, uurb->buffer, u)) {
  1187. ret = -EFAULT;
  1188. goto error;
  1189. }
  1190. uurb->buffer += u;
  1191. }
  1192. totlen -= u;
  1193. }
  1194. } else if (uurb->buffer_length > 0) {
  1195. as->urb->transfer_buffer = kmalloc(uurb->buffer_length,
  1196. GFP_KERNEL);
  1197. if (!as->urb->transfer_buffer) {
  1198. ret = -ENOMEM;
  1199. goto error;
  1200. }
  1201. if (!is_in) {
  1202. if (copy_from_user(as->urb->transfer_buffer,
  1203. uurb->buffer,
  1204. uurb->buffer_length)) {
  1205. ret = -EFAULT;
  1206. goto error;
  1207. }
  1208. } else if (uurb->type == USBDEVFS_URB_TYPE_ISO) {
  1209. /*
  1210. * Isochronous input data may end up being
  1211. * discontiguous if some of the packets are short.
  1212. * Clear the buffer so that the gaps don't leak
  1213. * kernel data to userspace.
  1214. */
  1215. memset(as->urb->transfer_buffer, 0,
  1216. uurb->buffer_length);
  1217. }
  1218. }
  1219. as->urb->dev = ps->dev;
  1220. as->urb->pipe = (uurb->type << 30) |
  1221. __create_pipe(ps->dev, uurb->endpoint & 0xf) |
  1222. (uurb->endpoint & USB_DIR_IN);
  1223. /* This tedious sequence is necessary because the URB_* flags
  1224. * are internal to the kernel and subject to change, whereas
  1225. * the USBDEVFS_URB_* flags are a user API and must not be changed.
  1226. */
  1227. u = (is_in ? URB_DIR_IN : URB_DIR_OUT);
  1228. if (uurb->flags & USBDEVFS_URB_ISO_ASAP)
  1229. u |= URB_ISO_ASAP;
  1230. if (uurb->flags & USBDEVFS_URB_SHORT_NOT_OK)
  1231. u |= URB_SHORT_NOT_OK;
  1232. if (uurb->flags & USBDEVFS_URB_NO_FSBR)
  1233. u |= URB_NO_FSBR;
  1234. if (uurb->flags & USBDEVFS_URB_ZERO_PACKET)
  1235. u |= URB_ZERO_PACKET;
  1236. if (uurb->flags & USBDEVFS_URB_NO_INTERRUPT)
  1237. u |= URB_NO_INTERRUPT;
  1238. as->urb->transfer_flags = u;
  1239. as->urb->transfer_buffer_length = uurb->buffer_length;
  1240. as->urb->setup_packet = (unsigned char *)dr;
  1241. dr = NULL;
  1242. as->urb->start_frame = uurb->start_frame;
  1243. as->urb->number_of_packets = uurb->number_of_packets;
  1244. if (uurb->type == USBDEVFS_URB_TYPE_ISO ||
  1245. ps->dev->speed == USB_SPEED_HIGH)
  1246. as->urb->interval = 1 << min(15, ep->desc.bInterval - 1);
  1247. else
  1248. as->urb->interval = ep->desc.bInterval;
  1249. as->urb->context = as;
  1250. as->urb->complete = async_completed;
  1251. for (totlen = u = 0; u < uurb->number_of_packets; u++) {
  1252. as->urb->iso_frame_desc[u].offset = totlen;
  1253. as->urb->iso_frame_desc[u].length = isopkt[u].length;
  1254. totlen += isopkt[u].length;
  1255. }
  1256. kfree(isopkt);
  1257. isopkt = NULL;
  1258. as->ps = ps;
  1259. as->userurb = arg;
  1260. if (is_in && uurb->buffer_length > 0)
  1261. as->userbuffer = uurb->buffer;
  1262. else
  1263. as->userbuffer = NULL;
  1264. as->signr = uurb->signr;
  1265. as->ifnum = ifnum;
  1266. as->pid = get_pid(task_pid(current));
  1267. as->cred = get_current_cred();
  1268. security_task_getsecid(current, &as->secid);
  1269. snoop_urb(ps->dev, as->userurb, as->urb->pipe,
  1270. as->urb->transfer_buffer_length, 0, SUBMIT,
  1271. NULL, 0);
  1272. if (!is_in)
  1273. snoop_urb_data(as->urb, as->urb->transfer_buffer_length);
  1274. async_newpending(as);
  1275. if (usb_endpoint_xfer_bulk(&ep->desc)) {
  1276. spin_lock_irq(&ps->lock);
  1277. /* Not exactly the endpoint address; the direction bit is
  1278. * shifted to the 0x10 position so that the value will be
  1279. * between 0 and 31.
  1280. */
  1281. as->bulk_addr = usb_endpoint_num(&ep->desc) |
  1282. ((ep->desc.bEndpointAddress & USB_ENDPOINT_DIR_MASK)
  1283. >> 3);
  1284. /* If this bulk URB is the start of a new transfer, re-enable
  1285. * the endpoint. Otherwise mark it as a continuation URB.
  1286. */
  1287. if (uurb->flags & USBDEVFS_URB_BULK_CONTINUATION)
  1288. as->bulk_status = AS_CONTINUATION;
  1289. else
  1290. ps->disabled_bulk_eps &= ~(1 << as->bulk_addr);
  1291. /* Don't accept continuation URBs if the endpoint is
  1292. * disabled because of an earlier error.
  1293. */
  1294. if (ps->disabled_bulk_eps & (1 << as->bulk_addr))
  1295. ret = -EREMOTEIO;
  1296. else
  1297. ret = usb_submit_urb(as->urb, GFP_ATOMIC);
  1298. spin_unlock_irq(&ps->lock);
  1299. } else {
  1300. ret = usb_submit_urb(as->urb, GFP_KERNEL);
  1301. }
  1302. if (ret) {
  1303. dev_printk(KERN_DEBUG, &ps->dev->dev,
  1304. "usbfs: usb_submit_urb returned %d\n", ret);
  1305. snoop_urb(ps->dev, as->userurb, as->urb->pipe,
  1306. 0, ret, COMPLETE, NULL, 0);
  1307. async_removepending(as);
  1308. goto error;
  1309. }
  1310. return 0;
  1311. error:
  1312. kfree(isopkt);
  1313. kfree(dr);
  1314. if (as)
  1315. free_async(as);
  1316. return ret;
  1317. }
  1318. static int proc_submiturb(struct dev_state *ps, void __user *arg)
  1319. {
  1320. struct usbdevfs_urb uurb;
  1321. if (copy_from_user(&uurb, arg, sizeof(uurb)))
  1322. return -EFAULT;
  1323. return proc_do_submiturb(ps, &uurb,
  1324. (((struct usbdevfs_urb __user *)arg)->iso_frame_desc),
  1325. arg);
  1326. }
  1327. static int proc_unlinkurb(struct dev_state *ps, void __user *arg)
  1328. {
  1329. struct urb *urb;
  1330. struct async *as;
  1331. unsigned long flags;
  1332. spin_lock_irqsave(&ps->lock, flags);
  1333. as = async_getpending(ps, arg);
  1334. if (!as) {
  1335. spin_unlock_irqrestore(&ps->lock, flags);
  1336. return -EINVAL;
  1337. }
  1338. urb = as->urb;
  1339. usb_get_urb(urb);
  1340. spin_unlock_irqrestore(&ps->lock, flags);
  1341. usb_kill_urb(urb);
  1342. usb_put_urb(urb);
  1343. return 0;
  1344. }
  1345. static int processcompl(struct async *as, void __user * __user *arg)
  1346. {
  1347. struct urb *urb = as->urb;
  1348. struct usbdevfs_urb __user *userurb = as->userurb;
  1349. void __user *addr = as->userurb;
  1350. unsigned int i;
  1351. if (as->userbuffer && urb->actual_length) {
  1352. if (copy_urb_data_to_user(as->userbuffer, urb))
  1353. goto err_out;
  1354. }
  1355. if (put_user(as->status, &userurb->status))
  1356. goto err_out;
  1357. if (put_user(urb->actual_length, &userurb->actual_length))
  1358. goto err_out;
  1359. if (put_user(urb->error_count, &userurb->error_count))
  1360. goto err_out;
  1361. if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
  1362. for (i = 0; i < urb->number_of_packets; i++) {
  1363. if (put_user(urb->iso_frame_desc[i].actual_length,
  1364. &userurb->iso_frame_desc[i].actual_length))
  1365. goto err_out;
  1366. if (put_user(urb->iso_frame_desc[i].status,
  1367. &userurb->iso_frame_desc[i].status))
  1368. goto err_out;
  1369. }
  1370. }
  1371. if (put_user(addr, (void __user * __user *)arg))
  1372. return -EFAULT;
  1373. return 0;
  1374. err_out:
  1375. return -EFAULT;
  1376. }
  1377. static struct async *reap_as(struct dev_state *ps)
  1378. {
  1379. DECLARE_WAITQUEUE(wait, current);
  1380. struct async *as = NULL;
  1381. struct usb_device *dev = ps->dev;
  1382. add_wait_queue(&ps->wait, &wait);
  1383. for (;;) {
  1384. __set_current_state(TASK_INTERRUPTIBLE);
  1385. as = async_getcompleted(ps);
  1386. if (as)
  1387. break;
  1388. if (signal_pending(current))
  1389. break;
  1390. usb_unlock_device(dev);
  1391. schedule();
  1392. usb_lock_device(dev);
  1393. }
  1394. remove_wait_queue(&ps->wait, &wait);
  1395. set_current_state(TASK_RUNNING);
  1396. return as;
  1397. }
  1398. static int proc_reapurb(struct dev_state *ps, void __user *arg)
  1399. {
  1400. struct async *as = reap_as(ps);
  1401. if (as) {
  1402. int retval = processcompl(as, (void __user * __user *)arg);
  1403. free_async(as);
  1404. return retval;
  1405. }
  1406. if (signal_pending(current))
  1407. return -EINTR;
  1408. return -EIO;
  1409. }
  1410. static int proc_reapurbnonblock(struct dev_state *ps, void __user *arg)
  1411. {
  1412. int retval;
  1413. struct async *as;
  1414. as = async_getcompleted(ps);
  1415. retval = -EAGAIN;
  1416. if (as) {
  1417. retval = processcompl(as, (void __user * __user *)arg);
  1418. free_async(as);
  1419. }
  1420. return retval;
  1421. }
  1422. #ifdef CONFIG_COMPAT
  1423. static int proc_control_compat(struct dev_state *ps,
  1424. struct usbdevfs_ctrltransfer32 __user *p32)
  1425. {
  1426. struct usbdevfs_ctrltransfer __user *p;
  1427. __u32 udata;
  1428. p = compat_alloc_user_space(sizeof(*p));
  1429. if (copy_in_user(p, p32, (sizeof(*p32) - sizeof(compat_caddr_t))) ||
  1430. get_user(udata, &p32->data) ||
  1431. put_user(compat_ptr(udata), &p->data))
  1432. return -EFAULT;
  1433. return proc_control(ps, p);
  1434. }
  1435. static int proc_bulk_compat(struct dev_state *ps,
  1436. struct usbdevfs_bulktransfer32 __user *p32)
  1437. {
  1438. struct usbdevfs_bulktransfer __user *p;
  1439. compat_uint_t n;
  1440. compat_caddr_t addr;
  1441. p = compat_alloc_user_space(sizeof(*p));
  1442. if (get_user(n, &p32->ep) || put_user(n, &p->ep) ||
  1443. get_user(n, &p32->len) || put_user(n, &p->len) ||
  1444. get_user(n, &p32->timeout) || put_user(n, &p->timeout) ||
  1445. get_user(addr, &p32->data) || put_user(compat_ptr(addr), &p->data))
  1446. return -EFAULT;
  1447. return proc_bulk(ps, p);
  1448. }
  1449. static int proc_disconnectsignal_compat(struct dev_state *ps, void __user *arg)
  1450. {
  1451. struct usbdevfs_disconnectsignal32 ds;
  1452. if (copy_from_user(&ds, arg, sizeof(ds)))
  1453. return -EFAULT;
  1454. ps->discsignr = ds.signr;
  1455. ps->disccontext = compat_ptr(ds.context);
  1456. return 0;
  1457. }
  1458. static int get_urb32(struct usbdevfs_urb *kurb,
  1459. struct usbdevfs_urb32 __user *uurb)
  1460. {
  1461. __u32 uptr;
  1462. if (!access_ok(VERIFY_READ, uurb, sizeof(*uurb)) ||
  1463. __get_user(kurb->type, &uurb->type) ||
  1464. __get_user(kurb->endpoint, &uurb->endpoint) ||
  1465. __get_user(kurb->status, &uurb->status) ||
  1466. __get_user(kurb->flags, &uurb->flags) ||
  1467. __get_user(kurb->buffer_length, &uurb->buffer_length) ||
  1468. __get_user(kurb->actual_length, &uurb->actual_length) ||
  1469. __get_user(kurb->start_frame, &uurb->start_frame) ||
  1470. __get_user(kurb->number_of_packets, &uurb->number_of_packets) ||
  1471. __get_user(kurb->error_count, &uurb->error_count) ||
  1472. __get_user(kurb->signr, &uurb->signr))
  1473. return -EFAULT;
  1474. if (__get_user(uptr, &uurb->buffer))
  1475. return -EFAULT;
  1476. kurb->buffer = compat_ptr(uptr);
  1477. if (__get_user(uptr, &uurb->usercontext))
  1478. return -EFAULT;
  1479. kurb->usercontext = compat_ptr(uptr);
  1480. return 0;
  1481. }
  1482. static int proc_submiturb_compat(struct dev_state *ps, void __user *arg)
  1483. {
  1484. struct usbdevfs_urb uurb;
  1485. if (get_urb32(&uurb, (struct usbdevfs_urb32 __user *)arg))
  1486. return -EFAULT;
  1487. return proc_do_submiturb(ps, &uurb,
  1488. ((struct usbdevfs_urb32 __user *)arg)->iso_frame_desc,
  1489. arg);
  1490. }
  1491. static int processcompl_compat(struct async *as, void __user * __user *arg)
  1492. {
  1493. struct urb *urb = as->urb;
  1494. struct usbdevfs_urb32 __user *userurb = as->userurb;
  1495. void __user *addr = as->userurb;
  1496. unsigned int i;
  1497. if (as->userbuffer && urb->actual_length) {
  1498. if (copy_urb_data_to_user(as->userbuffer, urb))
  1499. return -EFAULT;
  1500. }
  1501. if (put_user(as->status, &userurb->status))
  1502. return -EFAULT;
  1503. if (put_user(urb->actual_length, &userurb->actual_length))
  1504. return -EFAULT;
  1505. if (put_user(urb->error_count, &userurb->error_count))
  1506. return -EFAULT;
  1507. if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
  1508. for (i = 0; i < urb->number_of_packets; i++) {
  1509. if (put_user(urb->iso_frame_desc[i].actual_length,
  1510. &userurb->iso_frame_desc[i].actual_length))
  1511. return -EFAULT;
  1512. if (put_user(urb->iso_frame_desc[i].status,
  1513. &userurb->iso_frame_desc[i].status))
  1514. return -EFAULT;
  1515. }
  1516. }
  1517. if (put_user(ptr_to_compat(addr), (u32 __user *)arg))
  1518. return -EFAULT;
  1519. return 0;
  1520. }
  1521. static int proc_reapurb_compat(struct dev_state *ps, void __user *arg)
  1522. {
  1523. struct async *as = reap_as(ps);
  1524. if (as) {
  1525. int retval = processcompl_compat(as, (void __user * __user *)arg);
  1526. free_async(as);
  1527. return retval;
  1528. }
  1529. if (signal_pending(current))
  1530. return -EINTR;
  1531. return -EIO;
  1532. }
  1533. static int proc_reapurbnonblock_compat(struct dev_state *ps, void __user *arg)
  1534. {
  1535. int retval;
  1536. struct async *as;
  1537. retval = -EAGAIN;
  1538. as = async_getcompleted(ps);
  1539. if (as) {
  1540. retval = processcompl_compat(as, (void __user * __user *)arg);
  1541. free_async(as);
  1542. }
  1543. return retval;
  1544. }
  1545. #endif
  1546. static int proc_disconnectsignal(struct dev_state *ps, void __user *arg)
  1547. {
  1548. struct usbdevfs_disconnectsignal ds;
  1549. if (copy_from_user(&ds, arg, sizeof(ds)))
  1550. return -EFAULT;
  1551. ps->discsignr = ds.signr;
  1552. ps->disccontext = ds.context;
  1553. return 0;
  1554. }
  1555. static int proc_claiminterface(struct dev_state *ps, void __user *arg)
  1556. {
  1557. unsigned int ifnum;
  1558. if (get_user(ifnum, (unsigned int __user *)arg))
  1559. return -EFAULT;
  1560. return claimintf(ps, ifnum);
  1561. }
  1562. static int proc_releaseinterface(struct dev_state *ps, void __user *arg)
  1563. {
  1564. unsigned int ifnum;
  1565. int ret;
  1566. if (get_user(ifnum, (unsigned int __user *)arg))
  1567. return -EFAULT;
  1568. if ((ret = releaseintf(ps, ifnum)) < 0)
  1569. return ret;
  1570. destroy_async_on_interface (ps, ifnum);
  1571. return 0;
  1572. }
  1573. static int proc_ioctl(struct dev_state *ps, struct usbdevfs_ioctl *ctl)
  1574. {
  1575. int size;
  1576. void *buf = NULL;
  1577. int retval = 0;
  1578. struct usb_interface *intf = NULL;
  1579. struct usb_driver *driver = NULL;
  1580. /* alloc buffer */
  1581. if ((size = _IOC_SIZE(ctl->ioctl_code)) > 0) {
  1582. if ((buf = kmalloc(size, GFP_KERNEL)) == NULL)
  1583. return -ENOMEM;
  1584. if ((_IOC_DIR(ctl->ioctl_code) & _IOC_WRITE)) {
  1585. if (copy_from_user(buf, ctl->data, size)) {
  1586. kfree(buf);
  1587. return -EFAULT;
  1588. }
  1589. } else {
  1590. memset(buf, 0, size);
  1591. }
  1592. }
  1593. if (!connected(ps)) {
  1594. kfree(buf);
  1595. return -ENODEV;
  1596. }
  1597. if (ps->dev->state != USB_STATE_CONFIGURED)
  1598. retval = -EHOSTUNREACH;
  1599. else if (!(intf = usb_ifnum_to_if(ps->dev, ctl->ifno)))
  1600. retval = -EINVAL;
  1601. else switch (ctl->ioctl_code) {
  1602. /* disconnect kernel driver from interface */
  1603. case USBDEVFS_DISCONNECT:
  1604. if (intf->dev.driver) {
  1605. driver = to_usb_driver(intf->dev.driver);
  1606. dev_dbg(&intf->dev, "disconnect by usbfs\n");
  1607. usb_driver_release_interface(driver, intf);
  1608. } else
  1609. retval = -ENODATA;
  1610. break;
  1611. /* let kernel drivers try to (re)bind to the interface */
  1612. case USBDEVFS_CONNECT:
  1613. if (!intf->dev.driver)
  1614. retval = device_attach(&intf->dev);
  1615. else
  1616. retval = -EBUSY;
  1617. break;
  1618. /* talk directly to the interface's driver */
  1619. default:
  1620. if (intf->dev.driver)
  1621. driver = to_usb_driver(intf->dev.driver);
  1622. if (driver == NULL || driver->unlocked_ioctl == NULL) {
  1623. retval = -ENOTTY;
  1624. } else {
  1625. retval = driver->unlocked_ioctl(intf, ctl->ioctl_code, buf);
  1626. if (retval == -ENOIOCTLCMD)
  1627. retval = -ENOTTY;
  1628. }
  1629. }
  1630. /* cleanup and return */
  1631. if (retval >= 0
  1632. && (_IOC_DIR(ctl->ioctl_code) & _IOC_READ) != 0
  1633. && size > 0
  1634. && copy_to_user(ctl->data, buf, size) != 0)
  1635. retval = -EFAULT;
  1636. kfree(buf);
  1637. return retval;
  1638. }
  1639. static int proc_ioctl_default(struct dev_state *ps, void __user *arg)
  1640. {
  1641. struct usbdevfs_ioctl ctrl;
  1642. if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
  1643. return -EFAULT;
  1644. return proc_ioctl(ps, &ctrl);
  1645. }
  1646. #ifdef CONFIG_COMPAT
  1647. static int proc_ioctl_compat(struct dev_state *ps, compat_uptr_t arg)
  1648. {
  1649. struct usbdevfs_ioctl32 __user *uioc;
  1650. struct usbdevfs_ioctl ctrl;
  1651. u32 udata;
  1652. uioc = compat_ptr((long)arg);
  1653. if (!access_ok(VERIFY_READ, uioc, sizeof(*uioc)) ||
  1654. __get_user(ctrl.ifno, &uioc->ifno) ||
  1655. __get_user(ctrl.ioctl_code, &uioc->ioctl_code) ||
  1656. __get_user(udata, &uioc->data))
  1657. return -EFAULT;
  1658. ctrl.data = compat_ptr(udata);
  1659. return proc_ioctl(ps, &ctrl);
  1660. }
  1661. #endif
  1662. static int proc_claim_port(struct dev_state *ps, void __user *arg)
  1663. {
  1664. unsigned portnum;
  1665. int rc;
  1666. if (get_user(portnum, (unsigned __user *) arg))
  1667. return -EFAULT;
  1668. rc = usb_hub_claim_port(ps->dev, portnum, ps);
  1669. if (rc == 0)
  1670. snoop(&ps->dev->dev, "port %d claimed by process %d: %s\n",
  1671. portnum, task_pid_nr(current), current->comm);
  1672. return rc;
  1673. }
  1674. static int proc_release_port(struct dev_state *ps, void __user *arg)
  1675. {
  1676. unsigned portnum;
  1677. if (get_user(portnum, (unsigned __user *) arg))
  1678. return -EFAULT;
  1679. return usb_hub_release_port(ps->dev, portnum, ps);
  1680. }
  1681. static int proc_get_capabilities(struct dev_state *ps, void __user *arg)
  1682. {
  1683. __u32 caps;
  1684. caps = USBDEVFS_CAP_ZERO_PACKET | USBDEVFS_CAP_NO_PACKET_SIZE_LIM;
  1685. if (!ps->dev->bus->no_stop_on_short)
  1686. caps |= USBDEVFS_CAP_BULK_CONTINUATION;
  1687. if (ps->dev->bus->sg_tablesize)
  1688. caps |= USBDEVFS_CAP_BULK_SCATTER_GATHER;
  1689. if (put_user(caps, (__u32 __user *)arg))
  1690. return -EFAULT;
  1691. return 0;
  1692. }
  1693. static int proc_disconnect_claim(struct dev_state *ps, void __user *arg)
  1694. {
  1695. struct usbdevfs_disconnect_claim dc;
  1696. struct usb_interface *intf;
  1697. if (copy_from_user(&dc, arg, sizeof(dc)))
  1698. return -EFAULT;
  1699. intf = usb_ifnum_to_if(ps->dev, dc.interface);
  1700. if (!intf)
  1701. return -EINVAL;
  1702. if (intf->dev.driver) {
  1703. struct usb_driver *driver = to_usb_driver(intf->dev.driver);
  1704. if ((dc.flags & USBDEVFS_DISCONNECT_CLAIM_IF_DRIVER) &&
  1705. strncmp(dc.driver, intf->dev.driver->name,
  1706. sizeof(dc.driver)) != 0)
  1707. return -EBUSY;
  1708. if ((dc.flags & USBDEVFS_DISCONNECT_CLAIM_EXCEPT_DRIVER) &&
  1709. strncmp(dc.driver, intf->dev.driver->name,
  1710. sizeof(dc.driver)) == 0)
  1711. return -EBUSY;
  1712. dev_dbg(&intf->dev, "disconnect by usbfs\n");
  1713. usb_driver_release_interface(driver, intf);
  1714. }
  1715. return claimintf(ps, dc.interface);
  1716. }
  1717. /*
  1718. * NOTE: All requests here that have interface numbers as parameters
  1719. * are assuming that somehow the configuration has been prevented from
  1720. * changing. But there's no mechanism to ensure that...
  1721. */
  1722. static long usbdev_do_ioctl(struct file *file, unsigned int cmd,
  1723. void __user *p)
  1724. {
  1725. struct dev_state *ps = file->private_data;
  1726. struct inode *inode = file_inode(file);
  1727. struct usb_device *dev = ps->dev;
  1728. int ret = -ENOTTY;
  1729. if (!(file->f_mode & FMODE_WRITE))
  1730. return -EPERM;
  1731. usb_lock_device(dev);
  1732. if (!connected(ps)) {
  1733. usb_unlock_device(dev);
  1734. return -ENODEV;
  1735. }
  1736. switch (cmd) {
  1737. case USBDEVFS_CONTROL:
  1738. snoop(&dev->dev, "%s: CONTROL\n", __func__);
  1739. ret = proc_control(ps, p);
  1740. if (ret >= 0)
  1741. inode->i_mtime = CURRENT_TIME;
  1742. break;
  1743. case USBDEVFS_BULK:
  1744. snoop(&dev->dev, "%s: BULK\n", __func__);
  1745. ret = proc_bulk(ps, p);
  1746. if (ret >= 0)
  1747. inode->i_mtime = CURRENT_TIME;
  1748. break;
  1749. case USBDEVFS_RESETEP:
  1750. snoop(&dev->dev, "%s: RESETEP\n", __func__);
  1751. ret = proc_resetep(ps, p);
  1752. if (ret >= 0)
  1753. inode->i_mtime = CURRENT_TIME;
  1754. break;
  1755. case USBDEVFS_RESET:
  1756. snoop(&dev->dev, "%s: RESET\n", __func__);
  1757. ret = proc_resetdevice(ps);
  1758. break;
  1759. case USBDEVFS_CLEAR_HALT:
  1760. snoop(&dev->dev, "%s: CLEAR_HALT\n", __func__);
  1761. ret = proc_clearhalt(ps, p);
  1762. if (ret >= 0)
  1763. inode->i_mtime = CURRENT_TIME;
  1764. break;
  1765. case USBDEVFS_GETDRIVER:
  1766. snoop(&dev->dev, "%s: GETDRIVER\n", __func__);
  1767. ret = proc_getdriver(ps, p);
  1768. break;
  1769. case USBDEVFS_CONNECTINFO:
  1770. snoop(&dev->dev, "%s: CONNECTINFO\n", __func__);
  1771. ret = proc_connectinfo(ps, p);
  1772. break;
  1773. case USBDEVFS_SETINTERFACE:
  1774. snoop(&dev->dev, "%s: SETINTERFACE\n", __func__);
  1775. ret = proc_setintf(ps, p);
  1776. break;
  1777. case USBDEVFS_SETCONFIGURATION:
  1778. snoop(&dev->dev, "%s: SETCONFIGURATION\n", __func__);
  1779. ret = proc_setconfig(ps, p);
  1780. break;
  1781. case USBDEVFS_SUBMITURB:
  1782. snoop(&dev->dev, "%s: SUBMITURB\n", __func__);
  1783. ret = proc_submiturb(ps, p);
  1784. if (ret >= 0)
  1785. inode->i_mtime = CURRENT_TIME;
  1786. break;
  1787. #ifdef CONFIG_COMPAT
  1788. case USBDEVFS_CONTROL32:
  1789. snoop(&dev->dev, "%s: CONTROL32\n", __func__);
  1790. ret = proc_control_compat(ps, p);
  1791. if (ret >= 0)
  1792. inode->i_mtime = CURRENT_TIME;
  1793. break;
  1794. case USBDEVFS_BULK32:
  1795. snoop(&dev->dev, "%s: BULK32\n", __func__);
  1796. ret = proc_bulk_compat(ps, p);
  1797. if (ret >= 0)
  1798. inode->i_mtime = CURRENT_TIME;
  1799. break;
  1800. case USBDEVFS_DISCSIGNAL32:
  1801. snoop(&dev->dev, "%s: DISCSIGNAL32\n", __func__);
  1802. ret = proc_disconnectsignal_compat(ps, p);
  1803. break;
  1804. case USBDEVFS_SUBMITURB32:
  1805. snoop(&dev->dev, "%s: SUBMITURB32\n", __func__);
  1806. ret = proc_submiturb_compat(ps, p);
  1807. if (ret >= 0)
  1808. inode->i_mtime = CURRENT_TIME;
  1809. break;
  1810. case USBDEVFS_REAPURB32:
  1811. snoop(&dev->dev, "%s: REAPURB32\n", __func__);
  1812. ret = proc_reapurb_compat(ps, p);
  1813. break;
  1814. case USBDEVFS_REAPURBNDELAY32:
  1815. snoop(&dev->dev, "%s: REAPURBNDELAY32\n", __func__);
  1816. ret = proc_reapurbnonblock_compat(ps, p);
  1817. break;
  1818. case USBDEVFS_IOCTL32:
  1819. snoop(&dev->dev, "%s: IOCTL32\n", __func__);
  1820. ret = proc_ioctl_compat(ps, ptr_to_compat(p));
  1821. break;
  1822. #endif
  1823. case USBDEVFS_DISCARDURB:
  1824. snoop(&dev->dev, "%s: DISCARDURB\n", __func__);
  1825. ret = proc_unlinkurb(ps, p);
  1826. break;
  1827. case USBDEVFS_REAPURB:
  1828. snoop(&dev->dev, "%s: REAPURB\n", __func__);
  1829. ret = proc_reapurb(ps, p);
  1830. break;
  1831. case USBDEVFS_REAPURBNDELAY:
  1832. snoop(&dev->dev, "%s: REAPURBNDELAY\n", __func__);
  1833. ret = proc_reapurbnonblock(ps, p);
  1834. break;
  1835. case USBDEVFS_DISCSIGNAL:
  1836. snoop(&dev->dev, "%s: DISCSIGNAL\n", __func__);
  1837. ret = proc_disconnectsignal(ps, p);
  1838. break;
  1839. case USBDEVFS_CLAIMINTERFACE:
  1840. snoop(&dev->dev, "%s: CLAIMINTERFACE\n", __func__);
  1841. ret = proc_claiminterface(ps, p);
  1842. break;
  1843. case USBDEVFS_RELEASEINTERFACE:
  1844. snoop(&dev->dev, "%s: RELEASEINTERFACE\n", __func__);
  1845. ret = proc_releaseinterface(ps, p);
  1846. break;
  1847. case USBDEVFS_IOCTL:
  1848. snoop(&dev->dev, "%s: IOCTL\n", __func__);
  1849. ret = proc_ioctl_default(ps, p);
  1850. break;
  1851. case USBDEVFS_CLAIM_PORT:
  1852. snoop(&dev->dev, "%s: CLAIM_PORT\n", __func__);
  1853. ret = proc_claim_port(ps, p);
  1854. break;
  1855. case USBDEVFS_RELEASE_PORT:
  1856. snoop(&dev->dev, "%s: RELEASE_PORT\n", __func__);
  1857. ret = proc_release_port(ps, p);
  1858. break;
  1859. case USBDEVFS_GET_CAPABILITIES:
  1860. ret = proc_get_capabilities(ps, p);
  1861. break;
  1862. case USBDEVFS_DISCONNECT_CLAIM:
  1863. ret = proc_disconnect_claim(ps, p);
  1864. break;
  1865. }
  1866. usb_unlock_device(dev);
  1867. if (ret >= 0)
  1868. inode->i_atime = CURRENT_TIME;
  1869. return ret;
  1870. }
  1871. static long usbdev_ioctl(struct file *file, unsigned int cmd,
  1872. unsigned long arg)
  1873. {
  1874. int ret;
  1875. ret = usbdev_do_ioctl(file, cmd, (void __user *)arg);
  1876. return ret;
  1877. }
  1878. #ifdef CONFIG_COMPAT
  1879. static long usbdev_compat_ioctl(struct file *file, unsigned int cmd,
  1880. unsigned long arg)
  1881. {
  1882. int ret;
  1883. ret = usbdev_do_ioctl(file, cmd, compat_ptr(arg));
  1884. return ret;
  1885. }
  1886. #endif
  1887. /* No kernel lock - fine */
  1888. static unsigned int usbdev_poll(struct file *file,
  1889. struct poll_table_struct *wait)
  1890. {
  1891. struct dev_state *ps = file->private_data;
  1892. unsigned int mask = 0;
  1893. poll_wait(file, &ps->wait, wait);
  1894. if (file->f_mode & FMODE_WRITE && !list_empty(&ps->async_completed))
  1895. mask |= POLLOUT | POLLWRNORM;
  1896. if (!connected(ps))
  1897. mask |= POLLERR | POLLHUP;
  1898. return mask;
  1899. }
  1900. const struct file_operations usbdev_file_operations = {
  1901. .owner = THIS_MODULE,
  1902. .llseek = usbdev_lseek,
  1903. .read = usbdev_read,
  1904. .poll = usbdev_poll,
  1905. .unlocked_ioctl = usbdev_ioctl,
  1906. #ifdef CONFIG_COMPAT
  1907. .compat_ioctl = usbdev_compat_ioctl,
  1908. #endif
  1909. .open = usbdev_open,
  1910. .release = usbdev_release,
  1911. };
  1912. static void usbdev_remove(struct usb_device *udev)
  1913. {
  1914. struct dev_state *ps;
  1915. struct siginfo sinfo;
  1916. while (!list_empty(&udev->filelist)) {
  1917. ps = list_entry(udev->filelist.next, struct dev_state, list);
  1918. destroy_all_async(ps);
  1919. wake_up_all(&ps->wait);
  1920. list_del_init(&ps->list);
  1921. if (ps->discsignr) {
  1922. sinfo.si_signo = ps->discsignr;
  1923. sinfo.si_errno = EPIPE;
  1924. sinfo.si_code = SI_ASYNCIO;
  1925. sinfo.si_addr = ps->disccontext;
  1926. kill_pid_info_as_cred(ps->discsignr, &sinfo,
  1927. ps->disc_pid, ps->cred, ps->secid);
  1928. }
  1929. }
  1930. }
  1931. static int usbdev_notify(struct notifier_block *self,
  1932. unsigned long action, void *dev)
  1933. {
  1934. switch (action) {
  1935. case USB_DEVICE_ADD:
  1936. break;
  1937. case USB_DEVICE_REMOVE:
  1938. usbdev_remove(dev);
  1939. break;
  1940. }
  1941. return NOTIFY_OK;
  1942. }
  1943. static struct notifier_block usbdev_nb = {
  1944. .notifier_call = usbdev_notify,
  1945. };
  1946. static struct cdev usb_device_cdev;
  1947. int __init usb_devio_init(void)
  1948. {
  1949. int retval;
  1950. retval = register_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX,
  1951. "usb_device");
  1952. if (retval) {
  1953. printk(KERN_ERR "Unable to register minors for usb_device\n");
  1954. goto out;
  1955. }
  1956. cdev_init(&usb_device_cdev, &usbdev_file_operations);
  1957. retval = cdev_add(&usb_device_cdev, USB_DEVICE_DEV, USB_DEVICE_MAX);
  1958. if (retval) {
  1959. printk(KERN_ERR "Unable to get usb_device major %d\n",
  1960. USB_DEVICE_MAJOR);
  1961. goto error_cdev;
  1962. }
  1963. usb_register_notify(&usbdev_nb);
  1964. out:
  1965. return retval;
  1966. error_cdev:
  1967. unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
  1968. goto out;
  1969. }
  1970. void usb_devio_cleanup(void)
  1971. {
  1972. usb_unregister_notify(&usbdev_nb);
  1973. cdev_del(&usb_device_cdev);
  1974. unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
  1975. }