devio.c 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274
  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, which we always want to allow as it is used
  626. * to query things like ink level, etc.
  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. return 0;
  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, ctrl.wValue,
  776. ctrl.wIndex, ctrl.wLength);
  777. if (ctrl.bRequestType & 0x80) {
  778. if (ctrl.wLength && !access_ok(VERIFY_WRITE, ctrl.data,
  779. ctrl.wLength)) {
  780. ret = -EINVAL;
  781. goto done;
  782. }
  783. pipe = usb_rcvctrlpipe(dev, 0);
  784. snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT, NULL, 0);
  785. usb_unlock_device(dev);
  786. i = usb_control_msg(dev, pipe, ctrl.bRequest,
  787. ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
  788. tbuf, ctrl.wLength, tmo);
  789. usb_lock_device(dev);
  790. snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE,
  791. tbuf, max(i, 0));
  792. if ((i > 0) && ctrl.wLength) {
  793. if (copy_to_user(ctrl.data, tbuf, i)) {
  794. ret = -EFAULT;
  795. goto done;
  796. }
  797. }
  798. } else {
  799. if (ctrl.wLength) {
  800. if (copy_from_user(tbuf, ctrl.data, ctrl.wLength)) {
  801. ret = -EFAULT;
  802. goto done;
  803. }
  804. }
  805. pipe = usb_sndctrlpipe(dev, 0);
  806. snoop_urb(dev, NULL, pipe, ctrl.wLength, tmo, SUBMIT,
  807. tbuf, ctrl.wLength);
  808. usb_unlock_device(dev);
  809. i = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), ctrl.bRequest,
  810. ctrl.bRequestType, ctrl.wValue, ctrl.wIndex,
  811. tbuf, ctrl.wLength, tmo);
  812. usb_lock_device(dev);
  813. snoop_urb(dev, NULL, pipe, max(i, 0), min(i, 0), COMPLETE, NULL, 0);
  814. }
  815. if (i < 0 && i != -EPIPE) {
  816. dev_printk(KERN_DEBUG, &dev->dev, "usbfs: USBDEVFS_CONTROL "
  817. "failed cmd %s rqt %u rq %u len %u ret %d\n",
  818. current->comm, ctrl.bRequestType, ctrl.bRequest,
  819. ctrl.wLength, i);
  820. }
  821. ret = i;
  822. done:
  823. free_page((unsigned long) tbuf);
  824. usbfs_decrease_memory_usage(PAGE_SIZE + sizeof(struct urb) +
  825. sizeof(struct usb_ctrlrequest));
  826. return ret;
  827. }
  828. static int proc_bulk(struct dev_state *ps, void __user *arg)
  829. {
  830. struct usb_device *dev = ps->dev;
  831. struct usbdevfs_bulktransfer bulk;
  832. unsigned int tmo, len1, pipe;
  833. int len2;
  834. unsigned char *tbuf;
  835. int i, ret;
  836. if (copy_from_user(&bulk, arg, sizeof(bulk)))
  837. return -EFAULT;
  838. ret = findintfep(ps->dev, bulk.ep);
  839. if (ret < 0)
  840. return ret;
  841. ret = checkintf(ps, ret);
  842. if (ret)
  843. return ret;
  844. if (bulk.ep & USB_DIR_IN)
  845. pipe = usb_rcvbulkpipe(dev, bulk.ep & 0x7f);
  846. else
  847. pipe = usb_sndbulkpipe(dev, bulk.ep & 0x7f);
  848. if (!usb_maxpacket(dev, pipe, !(bulk.ep & USB_DIR_IN)))
  849. return -EINVAL;
  850. len1 = bulk.len;
  851. if (len1 >= USBFS_XFER_MAX)
  852. return -EINVAL;
  853. ret = usbfs_increase_memory_usage(len1 + sizeof(struct urb));
  854. if (ret)
  855. return ret;
  856. if (!(tbuf = kmalloc(len1, GFP_KERNEL))) {
  857. ret = -ENOMEM;
  858. goto done;
  859. }
  860. tmo = bulk.timeout;
  861. if (bulk.ep & 0x80) {
  862. if (len1 && !access_ok(VERIFY_WRITE, bulk.data, len1)) {
  863. ret = -EINVAL;
  864. goto done;
  865. }
  866. snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, NULL, 0);
  867. usb_unlock_device(dev);
  868. i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
  869. usb_lock_device(dev);
  870. snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, tbuf, len2);
  871. if (!i && len2) {
  872. if (copy_to_user(bulk.data, tbuf, len2)) {
  873. ret = -EFAULT;
  874. goto done;
  875. }
  876. }
  877. } else {
  878. if (len1) {
  879. if (copy_from_user(tbuf, bulk.data, len1)) {
  880. ret = -EFAULT;
  881. goto done;
  882. }
  883. }
  884. snoop_urb(dev, NULL, pipe, len1, tmo, SUBMIT, tbuf, len1);
  885. usb_unlock_device(dev);
  886. i = usb_bulk_msg(dev, pipe, tbuf, len1, &len2, tmo);
  887. usb_lock_device(dev);
  888. snoop_urb(dev, NULL, pipe, len2, i, COMPLETE, NULL, 0);
  889. }
  890. ret = (i < 0 ? i : len2);
  891. done:
  892. kfree(tbuf);
  893. usbfs_decrease_memory_usage(len1 + sizeof(struct urb));
  894. return ret;
  895. }
  896. static int proc_resetep(struct dev_state *ps, void __user *arg)
  897. {
  898. unsigned int ep;
  899. int ret;
  900. if (get_user(ep, (unsigned int __user *)arg))
  901. return -EFAULT;
  902. ret = findintfep(ps->dev, ep);
  903. if (ret < 0)
  904. return ret;
  905. ret = checkintf(ps, ret);
  906. if (ret)
  907. return ret;
  908. usb_reset_endpoint(ps->dev, ep);
  909. return 0;
  910. }
  911. static int proc_clearhalt(struct dev_state *ps, void __user *arg)
  912. {
  913. unsigned int ep;
  914. int pipe;
  915. int ret;
  916. if (get_user(ep, (unsigned int __user *)arg))
  917. return -EFAULT;
  918. ret = findintfep(ps->dev, ep);
  919. if (ret < 0)
  920. return ret;
  921. ret = checkintf(ps, ret);
  922. if (ret)
  923. return ret;
  924. if (ep & USB_DIR_IN)
  925. pipe = usb_rcvbulkpipe(ps->dev, ep & 0x7f);
  926. else
  927. pipe = usb_sndbulkpipe(ps->dev, ep & 0x7f);
  928. return usb_clear_halt(ps->dev, pipe);
  929. }
  930. static int proc_getdriver(struct dev_state *ps, void __user *arg)
  931. {
  932. struct usbdevfs_getdriver gd;
  933. struct usb_interface *intf;
  934. int ret;
  935. if (copy_from_user(&gd, arg, sizeof(gd)))
  936. return -EFAULT;
  937. intf = usb_ifnum_to_if(ps->dev, gd.interface);
  938. if (!intf || !intf->dev.driver)
  939. ret = -ENODATA;
  940. else {
  941. strlcpy(gd.driver, intf->dev.driver->name,
  942. sizeof(gd.driver));
  943. ret = (copy_to_user(arg, &gd, sizeof(gd)) ? -EFAULT : 0);
  944. }
  945. return ret;
  946. }
  947. static int proc_connectinfo(struct dev_state *ps, void __user *arg)
  948. {
  949. struct usbdevfs_connectinfo ci = {
  950. .devnum = ps->dev->devnum,
  951. .slow = ps->dev->speed == USB_SPEED_LOW
  952. };
  953. if (copy_to_user(arg, &ci, sizeof(ci)))
  954. return -EFAULT;
  955. return 0;
  956. }
  957. static int proc_resetdevice(struct dev_state *ps)
  958. {
  959. return usb_reset_device(ps->dev);
  960. }
  961. static int proc_setintf(struct dev_state *ps, void __user *arg)
  962. {
  963. struct usbdevfs_setinterface setintf;
  964. int ret;
  965. if (copy_from_user(&setintf, arg, sizeof(setintf)))
  966. return -EFAULT;
  967. if ((ret = checkintf(ps, setintf.interface)))
  968. return ret;
  969. return usb_set_interface(ps->dev, setintf.interface,
  970. setintf.altsetting);
  971. }
  972. static int proc_setconfig(struct dev_state *ps, void __user *arg)
  973. {
  974. int u;
  975. int status = 0;
  976. struct usb_host_config *actconfig;
  977. if (get_user(u, (int __user *)arg))
  978. return -EFAULT;
  979. actconfig = ps->dev->actconfig;
  980. /* Don't touch the device if any interfaces are claimed.
  981. * It could interfere with other drivers' operations, and if
  982. * an interface is claimed by usbfs it could easily deadlock.
  983. */
  984. if (actconfig) {
  985. int i;
  986. for (i = 0; i < actconfig->desc.bNumInterfaces; ++i) {
  987. if (usb_interface_claimed(actconfig->interface[i])) {
  988. dev_warn(&ps->dev->dev,
  989. "usbfs: interface %d claimed by %s "
  990. "while '%s' sets config #%d\n",
  991. actconfig->interface[i]
  992. ->cur_altsetting
  993. ->desc.bInterfaceNumber,
  994. actconfig->interface[i]
  995. ->dev.driver->name,
  996. current->comm, u);
  997. status = -EBUSY;
  998. break;
  999. }
  1000. }
  1001. }
  1002. /* SET_CONFIGURATION is often abused as a "cheap" driver reset,
  1003. * so avoid usb_set_configuration()'s kick to sysfs
  1004. */
  1005. if (status == 0) {
  1006. if (actconfig && actconfig->desc.bConfigurationValue == u)
  1007. status = usb_reset_configuration(ps->dev);
  1008. else
  1009. status = usb_set_configuration(ps->dev, u);
  1010. }
  1011. return status;
  1012. }
  1013. static int proc_do_submiturb(struct dev_state *ps, struct usbdevfs_urb *uurb,
  1014. struct usbdevfs_iso_packet_desc __user *iso_frame_desc,
  1015. void __user *arg)
  1016. {
  1017. struct usbdevfs_iso_packet_desc *isopkt = NULL;
  1018. struct usb_host_endpoint *ep;
  1019. struct async *as = NULL;
  1020. struct usb_ctrlrequest *dr = NULL;
  1021. unsigned int u, totlen, isofrmlen;
  1022. int i, ret, is_in, num_sgs = 0, ifnum = -1;
  1023. void *buf;
  1024. if (uurb->flags & ~(USBDEVFS_URB_ISO_ASAP |
  1025. USBDEVFS_URB_SHORT_NOT_OK |
  1026. USBDEVFS_URB_BULK_CONTINUATION |
  1027. USBDEVFS_URB_NO_FSBR |
  1028. USBDEVFS_URB_ZERO_PACKET |
  1029. USBDEVFS_URB_NO_INTERRUPT))
  1030. return -EINVAL;
  1031. if (uurb->buffer_length > 0 && !uurb->buffer)
  1032. return -EINVAL;
  1033. if (!(uurb->type == USBDEVFS_URB_TYPE_CONTROL &&
  1034. (uurb->endpoint & ~USB_ENDPOINT_DIR_MASK) == 0)) {
  1035. ifnum = findintfep(ps->dev, uurb->endpoint);
  1036. if (ifnum < 0)
  1037. return ifnum;
  1038. ret = checkintf(ps, ifnum);
  1039. if (ret)
  1040. return ret;
  1041. }
  1042. if ((uurb->endpoint & USB_ENDPOINT_DIR_MASK) != 0) {
  1043. is_in = 1;
  1044. ep = ps->dev->ep_in[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
  1045. } else {
  1046. is_in = 0;
  1047. ep = ps->dev->ep_out[uurb->endpoint & USB_ENDPOINT_NUMBER_MASK];
  1048. }
  1049. if (!ep)
  1050. return -ENOENT;
  1051. u = 0;
  1052. switch(uurb->type) {
  1053. case USBDEVFS_URB_TYPE_CONTROL:
  1054. if (!usb_endpoint_xfer_control(&ep->desc))
  1055. return -EINVAL;
  1056. /* min 8 byte setup packet */
  1057. if (uurb->buffer_length < 8)
  1058. return -EINVAL;
  1059. dr = kmalloc(sizeof(struct usb_ctrlrequest), GFP_KERNEL);
  1060. if (!dr)
  1061. return -ENOMEM;
  1062. if (copy_from_user(dr, uurb->buffer, 8)) {
  1063. ret = -EFAULT;
  1064. goto error;
  1065. }
  1066. if (uurb->buffer_length < (le16_to_cpup(&dr->wLength) + 8)) {
  1067. ret = -EINVAL;
  1068. goto error;
  1069. }
  1070. ret = check_ctrlrecip(ps, dr->bRequestType, dr->bRequest,
  1071. le16_to_cpup(&dr->wIndex));
  1072. if (ret)
  1073. goto error;
  1074. uurb->number_of_packets = 0;
  1075. uurb->buffer_length = le16_to_cpup(&dr->wLength);
  1076. uurb->buffer += 8;
  1077. if ((dr->bRequestType & USB_DIR_IN) && uurb->buffer_length) {
  1078. is_in = 1;
  1079. uurb->endpoint |= USB_DIR_IN;
  1080. } else {
  1081. is_in = 0;
  1082. uurb->endpoint &= ~USB_DIR_IN;
  1083. }
  1084. snoop(&ps->dev->dev, "control urb: bRequestType=%02x "
  1085. "bRequest=%02x wValue=%04x "
  1086. "wIndex=%04x wLength=%04x\n",
  1087. dr->bRequestType, dr->bRequest,
  1088. __le16_to_cpup(&dr->wValue),
  1089. __le16_to_cpup(&dr->wIndex),
  1090. __le16_to_cpup(&dr->wLength));
  1091. u = sizeof(struct usb_ctrlrequest);
  1092. break;
  1093. case USBDEVFS_URB_TYPE_BULK:
  1094. switch (usb_endpoint_type(&ep->desc)) {
  1095. case USB_ENDPOINT_XFER_CONTROL:
  1096. case USB_ENDPOINT_XFER_ISOC:
  1097. return -EINVAL;
  1098. case USB_ENDPOINT_XFER_INT:
  1099. /* allow single-shot interrupt transfers */
  1100. uurb->type = USBDEVFS_URB_TYPE_INTERRUPT;
  1101. goto interrupt_urb;
  1102. }
  1103. uurb->number_of_packets = 0;
  1104. num_sgs = DIV_ROUND_UP(uurb->buffer_length, USB_SG_SIZE);
  1105. if (num_sgs == 1 || num_sgs > ps->dev->bus->sg_tablesize)
  1106. num_sgs = 0;
  1107. break;
  1108. case USBDEVFS_URB_TYPE_INTERRUPT:
  1109. if (!usb_endpoint_xfer_int(&ep->desc))
  1110. return -EINVAL;
  1111. interrupt_urb:
  1112. uurb->number_of_packets = 0;
  1113. break;
  1114. case USBDEVFS_URB_TYPE_ISO:
  1115. /* arbitrary limit */
  1116. if (uurb->number_of_packets < 1 ||
  1117. uurb->number_of_packets > 128)
  1118. return -EINVAL;
  1119. if (!usb_endpoint_xfer_isoc(&ep->desc))
  1120. return -EINVAL;
  1121. isofrmlen = sizeof(struct usbdevfs_iso_packet_desc) *
  1122. uurb->number_of_packets;
  1123. if (!(isopkt = kmalloc(isofrmlen, GFP_KERNEL)))
  1124. return -ENOMEM;
  1125. if (copy_from_user(isopkt, iso_frame_desc, isofrmlen)) {
  1126. ret = -EFAULT;
  1127. goto error;
  1128. }
  1129. for (totlen = u = 0; u < uurb->number_of_packets; u++) {
  1130. /*
  1131. * arbitrary limit need for USB 3.0
  1132. * bMaxBurst (0~15 allowed, 1~16 packets)
  1133. * bmAttributes (bit 1:0, mult 0~2, 1~3 packets)
  1134. * sizemax: 1024 * 16 * 3 = 49152
  1135. */
  1136. if (isopkt[u].length > 49152) {
  1137. ret = -EINVAL;
  1138. goto error;
  1139. }
  1140. totlen += isopkt[u].length;
  1141. }
  1142. u *= sizeof(struct usb_iso_packet_descriptor);
  1143. uurb->buffer_length = totlen;
  1144. break;
  1145. default:
  1146. return -EINVAL;
  1147. }
  1148. if (uurb->buffer_length >= USBFS_XFER_MAX) {
  1149. ret = -EINVAL;
  1150. goto error;
  1151. }
  1152. if (uurb->buffer_length > 0 &&
  1153. !access_ok(is_in ? VERIFY_WRITE : VERIFY_READ,
  1154. uurb->buffer, uurb->buffer_length)) {
  1155. ret = -EFAULT;
  1156. goto error;
  1157. }
  1158. as = alloc_async(uurb->number_of_packets);
  1159. if (!as) {
  1160. ret = -ENOMEM;
  1161. goto error;
  1162. }
  1163. u += sizeof(struct async) + sizeof(struct urb) + uurb->buffer_length +
  1164. num_sgs * sizeof(struct scatterlist);
  1165. ret = usbfs_increase_memory_usage(u);
  1166. if (ret)
  1167. goto error;
  1168. as->mem_usage = u;
  1169. if (num_sgs) {
  1170. as->urb->sg = kmalloc(num_sgs * sizeof(struct scatterlist),
  1171. GFP_KERNEL);
  1172. if (!as->urb->sg) {
  1173. ret = -ENOMEM;
  1174. goto error;
  1175. }
  1176. as->urb->num_sgs = num_sgs;
  1177. sg_init_table(as->urb->sg, as->urb->num_sgs);
  1178. totlen = uurb->buffer_length;
  1179. for (i = 0; i < as->urb->num_sgs; i++) {
  1180. u = (totlen > USB_SG_SIZE) ? USB_SG_SIZE : totlen;
  1181. buf = kmalloc(u, GFP_KERNEL);
  1182. if (!buf) {
  1183. ret = -ENOMEM;
  1184. goto error;
  1185. }
  1186. sg_set_buf(&as->urb->sg[i], buf, u);
  1187. if (!is_in) {
  1188. if (copy_from_user(buf, uurb->buffer, u)) {
  1189. ret = -EFAULT;
  1190. goto error;
  1191. }
  1192. uurb->buffer += u;
  1193. }
  1194. totlen -= u;
  1195. }
  1196. } else if (uurb->buffer_length > 0) {
  1197. as->urb->transfer_buffer = kmalloc(uurb->buffer_length,
  1198. GFP_KERNEL);
  1199. if (!as->urb->transfer_buffer) {
  1200. ret = -ENOMEM;
  1201. goto error;
  1202. }
  1203. if (!is_in) {
  1204. if (copy_from_user(as->urb->transfer_buffer,
  1205. uurb->buffer,
  1206. uurb->buffer_length)) {
  1207. ret = -EFAULT;
  1208. goto error;
  1209. }
  1210. } else if (uurb->type == USBDEVFS_URB_TYPE_ISO) {
  1211. /*
  1212. * Isochronous input data may end up being
  1213. * discontiguous if some of the packets are short.
  1214. * Clear the buffer so that the gaps don't leak
  1215. * kernel data to userspace.
  1216. */
  1217. memset(as->urb->transfer_buffer, 0,
  1218. uurb->buffer_length);
  1219. }
  1220. }
  1221. as->urb->dev = ps->dev;
  1222. as->urb->pipe = (uurb->type << 30) |
  1223. __create_pipe(ps->dev, uurb->endpoint & 0xf) |
  1224. (uurb->endpoint & USB_DIR_IN);
  1225. /* This tedious sequence is necessary because the URB_* flags
  1226. * are internal to the kernel and subject to change, whereas
  1227. * the USBDEVFS_URB_* flags are a user API and must not be changed.
  1228. */
  1229. u = (is_in ? URB_DIR_IN : URB_DIR_OUT);
  1230. if (uurb->flags & USBDEVFS_URB_ISO_ASAP)
  1231. u |= URB_ISO_ASAP;
  1232. if (uurb->flags & USBDEVFS_URB_SHORT_NOT_OK)
  1233. u |= URB_SHORT_NOT_OK;
  1234. if (uurb->flags & USBDEVFS_URB_NO_FSBR)
  1235. u |= URB_NO_FSBR;
  1236. if (uurb->flags & USBDEVFS_URB_ZERO_PACKET)
  1237. u |= URB_ZERO_PACKET;
  1238. if (uurb->flags & USBDEVFS_URB_NO_INTERRUPT)
  1239. u |= URB_NO_INTERRUPT;
  1240. as->urb->transfer_flags = u;
  1241. as->urb->transfer_buffer_length = uurb->buffer_length;
  1242. as->urb->setup_packet = (unsigned char *)dr;
  1243. dr = NULL;
  1244. as->urb->start_frame = uurb->start_frame;
  1245. as->urb->number_of_packets = uurb->number_of_packets;
  1246. if (uurb->type == USBDEVFS_URB_TYPE_ISO ||
  1247. ps->dev->speed == USB_SPEED_HIGH)
  1248. as->urb->interval = 1 << min(15, ep->desc.bInterval - 1);
  1249. else
  1250. as->urb->interval = ep->desc.bInterval;
  1251. as->urb->context = as;
  1252. as->urb->complete = async_completed;
  1253. for (totlen = u = 0; u < uurb->number_of_packets; u++) {
  1254. as->urb->iso_frame_desc[u].offset = totlen;
  1255. as->urb->iso_frame_desc[u].length = isopkt[u].length;
  1256. totlen += isopkt[u].length;
  1257. }
  1258. kfree(isopkt);
  1259. isopkt = NULL;
  1260. as->ps = ps;
  1261. as->userurb = arg;
  1262. if (is_in && uurb->buffer_length > 0)
  1263. as->userbuffer = uurb->buffer;
  1264. else
  1265. as->userbuffer = NULL;
  1266. as->signr = uurb->signr;
  1267. as->ifnum = ifnum;
  1268. as->pid = get_pid(task_pid(current));
  1269. as->cred = get_current_cred();
  1270. security_task_getsecid(current, &as->secid);
  1271. snoop_urb(ps->dev, as->userurb, as->urb->pipe,
  1272. as->urb->transfer_buffer_length, 0, SUBMIT,
  1273. NULL, 0);
  1274. if (!is_in)
  1275. snoop_urb_data(as->urb, as->urb->transfer_buffer_length);
  1276. async_newpending(as);
  1277. if (usb_endpoint_xfer_bulk(&ep->desc)) {
  1278. spin_lock_irq(&ps->lock);
  1279. /* Not exactly the endpoint address; the direction bit is
  1280. * shifted to the 0x10 position so that the value will be
  1281. * between 0 and 31.
  1282. */
  1283. as->bulk_addr = usb_endpoint_num(&ep->desc) |
  1284. ((ep->desc.bEndpointAddress & USB_ENDPOINT_DIR_MASK)
  1285. >> 3);
  1286. /* If this bulk URB is the start of a new transfer, re-enable
  1287. * the endpoint. Otherwise mark it as a continuation URB.
  1288. */
  1289. if (uurb->flags & USBDEVFS_URB_BULK_CONTINUATION)
  1290. as->bulk_status = AS_CONTINUATION;
  1291. else
  1292. ps->disabled_bulk_eps &= ~(1 << as->bulk_addr);
  1293. /* Don't accept continuation URBs if the endpoint is
  1294. * disabled because of an earlier error.
  1295. */
  1296. if (ps->disabled_bulk_eps & (1 << as->bulk_addr))
  1297. ret = -EREMOTEIO;
  1298. else
  1299. ret = usb_submit_urb(as->urb, GFP_ATOMIC);
  1300. spin_unlock_irq(&ps->lock);
  1301. } else {
  1302. ret = usb_submit_urb(as->urb, GFP_KERNEL);
  1303. }
  1304. if (ret) {
  1305. dev_printk(KERN_DEBUG, &ps->dev->dev,
  1306. "usbfs: usb_submit_urb returned %d\n", ret);
  1307. snoop_urb(ps->dev, as->userurb, as->urb->pipe,
  1308. 0, ret, COMPLETE, NULL, 0);
  1309. async_removepending(as);
  1310. goto error;
  1311. }
  1312. return 0;
  1313. error:
  1314. kfree(isopkt);
  1315. kfree(dr);
  1316. if (as)
  1317. free_async(as);
  1318. return ret;
  1319. }
  1320. static int proc_submiturb(struct dev_state *ps, void __user *arg)
  1321. {
  1322. struct usbdevfs_urb uurb;
  1323. if (copy_from_user(&uurb, arg, sizeof(uurb)))
  1324. return -EFAULT;
  1325. return proc_do_submiturb(ps, &uurb,
  1326. (((struct usbdevfs_urb __user *)arg)->iso_frame_desc),
  1327. arg);
  1328. }
  1329. static int proc_unlinkurb(struct dev_state *ps, void __user *arg)
  1330. {
  1331. struct urb *urb;
  1332. struct async *as;
  1333. unsigned long flags;
  1334. spin_lock_irqsave(&ps->lock, flags);
  1335. as = async_getpending(ps, arg);
  1336. if (!as) {
  1337. spin_unlock_irqrestore(&ps->lock, flags);
  1338. return -EINVAL;
  1339. }
  1340. urb = as->urb;
  1341. usb_get_urb(urb);
  1342. spin_unlock_irqrestore(&ps->lock, flags);
  1343. usb_kill_urb(urb);
  1344. usb_put_urb(urb);
  1345. return 0;
  1346. }
  1347. static int processcompl(struct async *as, void __user * __user *arg)
  1348. {
  1349. struct urb *urb = as->urb;
  1350. struct usbdevfs_urb __user *userurb = as->userurb;
  1351. void __user *addr = as->userurb;
  1352. unsigned int i;
  1353. if (as->userbuffer && urb->actual_length) {
  1354. if (copy_urb_data_to_user(as->userbuffer, urb))
  1355. goto err_out;
  1356. }
  1357. if (put_user(as->status, &userurb->status))
  1358. goto err_out;
  1359. if (put_user(urb->actual_length, &userurb->actual_length))
  1360. goto err_out;
  1361. if (put_user(urb->error_count, &userurb->error_count))
  1362. goto err_out;
  1363. if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
  1364. for (i = 0; i < urb->number_of_packets; i++) {
  1365. if (put_user(urb->iso_frame_desc[i].actual_length,
  1366. &userurb->iso_frame_desc[i].actual_length))
  1367. goto err_out;
  1368. if (put_user(urb->iso_frame_desc[i].status,
  1369. &userurb->iso_frame_desc[i].status))
  1370. goto err_out;
  1371. }
  1372. }
  1373. if (put_user(addr, (void __user * __user *)arg))
  1374. return -EFAULT;
  1375. return 0;
  1376. err_out:
  1377. return -EFAULT;
  1378. }
  1379. static struct async *reap_as(struct dev_state *ps)
  1380. {
  1381. DECLARE_WAITQUEUE(wait, current);
  1382. struct async *as = NULL;
  1383. struct usb_device *dev = ps->dev;
  1384. add_wait_queue(&ps->wait, &wait);
  1385. for (;;) {
  1386. __set_current_state(TASK_INTERRUPTIBLE);
  1387. as = async_getcompleted(ps);
  1388. if (as)
  1389. break;
  1390. if (signal_pending(current))
  1391. break;
  1392. usb_unlock_device(dev);
  1393. schedule();
  1394. usb_lock_device(dev);
  1395. }
  1396. remove_wait_queue(&ps->wait, &wait);
  1397. set_current_state(TASK_RUNNING);
  1398. return as;
  1399. }
  1400. static int proc_reapurb(struct dev_state *ps, void __user *arg)
  1401. {
  1402. struct async *as = reap_as(ps);
  1403. if (as) {
  1404. int retval = processcompl(as, (void __user * __user *)arg);
  1405. free_async(as);
  1406. return retval;
  1407. }
  1408. if (signal_pending(current))
  1409. return -EINTR;
  1410. return -EIO;
  1411. }
  1412. static int proc_reapurbnonblock(struct dev_state *ps, void __user *arg)
  1413. {
  1414. int retval;
  1415. struct async *as;
  1416. as = async_getcompleted(ps);
  1417. retval = -EAGAIN;
  1418. if (as) {
  1419. retval = processcompl(as, (void __user * __user *)arg);
  1420. free_async(as);
  1421. }
  1422. return retval;
  1423. }
  1424. #ifdef CONFIG_COMPAT
  1425. static int proc_control_compat(struct dev_state *ps,
  1426. struct usbdevfs_ctrltransfer32 __user *p32)
  1427. {
  1428. struct usbdevfs_ctrltransfer __user *p;
  1429. __u32 udata;
  1430. p = compat_alloc_user_space(sizeof(*p));
  1431. if (copy_in_user(p, p32, (sizeof(*p32) - sizeof(compat_caddr_t))) ||
  1432. get_user(udata, &p32->data) ||
  1433. put_user(compat_ptr(udata), &p->data))
  1434. return -EFAULT;
  1435. return proc_control(ps, p);
  1436. }
  1437. static int proc_bulk_compat(struct dev_state *ps,
  1438. struct usbdevfs_bulktransfer32 __user *p32)
  1439. {
  1440. struct usbdevfs_bulktransfer __user *p;
  1441. compat_uint_t n;
  1442. compat_caddr_t addr;
  1443. p = compat_alloc_user_space(sizeof(*p));
  1444. if (get_user(n, &p32->ep) || put_user(n, &p->ep) ||
  1445. get_user(n, &p32->len) || put_user(n, &p->len) ||
  1446. get_user(n, &p32->timeout) || put_user(n, &p->timeout) ||
  1447. get_user(addr, &p32->data) || put_user(compat_ptr(addr), &p->data))
  1448. return -EFAULT;
  1449. return proc_bulk(ps, p);
  1450. }
  1451. static int proc_disconnectsignal_compat(struct dev_state *ps, void __user *arg)
  1452. {
  1453. struct usbdevfs_disconnectsignal32 ds;
  1454. if (copy_from_user(&ds, arg, sizeof(ds)))
  1455. return -EFAULT;
  1456. ps->discsignr = ds.signr;
  1457. ps->disccontext = compat_ptr(ds.context);
  1458. return 0;
  1459. }
  1460. static int get_urb32(struct usbdevfs_urb *kurb,
  1461. struct usbdevfs_urb32 __user *uurb)
  1462. {
  1463. __u32 uptr;
  1464. if (!access_ok(VERIFY_READ, uurb, sizeof(*uurb)) ||
  1465. __get_user(kurb->type, &uurb->type) ||
  1466. __get_user(kurb->endpoint, &uurb->endpoint) ||
  1467. __get_user(kurb->status, &uurb->status) ||
  1468. __get_user(kurb->flags, &uurb->flags) ||
  1469. __get_user(kurb->buffer_length, &uurb->buffer_length) ||
  1470. __get_user(kurb->actual_length, &uurb->actual_length) ||
  1471. __get_user(kurb->start_frame, &uurb->start_frame) ||
  1472. __get_user(kurb->number_of_packets, &uurb->number_of_packets) ||
  1473. __get_user(kurb->error_count, &uurb->error_count) ||
  1474. __get_user(kurb->signr, &uurb->signr))
  1475. return -EFAULT;
  1476. if (__get_user(uptr, &uurb->buffer))
  1477. return -EFAULT;
  1478. kurb->buffer = compat_ptr(uptr);
  1479. if (__get_user(uptr, &uurb->usercontext))
  1480. return -EFAULT;
  1481. kurb->usercontext = compat_ptr(uptr);
  1482. return 0;
  1483. }
  1484. static int proc_submiturb_compat(struct dev_state *ps, void __user *arg)
  1485. {
  1486. struct usbdevfs_urb uurb;
  1487. if (get_urb32(&uurb, (struct usbdevfs_urb32 __user *)arg))
  1488. return -EFAULT;
  1489. return proc_do_submiturb(ps, &uurb,
  1490. ((struct usbdevfs_urb32 __user *)arg)->iso_frame_desc,
  1491. arg);
  1492. }
  1493. static int processcompl_compat(struct async *as, void __user * __user *arg)
  1494. {
  1495. struct urb *urb = as->urb;
  1496. struct usbdevfs_urb32 __user *userurb = as->userurb;
  1497. void __user *addr = as->userurb;
  1498. unsigned int i;
  1499. if (as->userbuffer && urb->actual_length) {
  1500. if (copy_urb_data_to_user(as->userbuffer, urb))
  1501. return -EFAULT;
  1502. }
  1503. if (put_user(as->status, &userurb->status))
  1504. return -EFAULT;
  1505. if (put_user(urb->actual_length, &userurb->actual_length))
  1506. return -EFAULT;
  1507. if (put_user(urb->error_count, &userurb->error_count))
  1508. return -EFAULT;
  1509. if (usb_endpoint_xfer_isoc(&urb->ep->desc)) {
  1510. for (i = 0; i < urb->number_of_packets; i++) {
  1511. if (put_user(urb->iso_frame_desc[i].actual_length,
  1512. &userurb->iso_frame_desc[i].actual_length))
  1513. return -EFAULT;
  1514. if (put_user(urb->iso_frame_desc[i].status,
  1515. &userurb->iso_frame_desc[i].status))
  1516. return -EFAULT;
  1517. }
  1518. }
  1519. if (put_user(ptr_to_compat(addr), (u32 __user *)arg))
  1520. return -EFAULT;
  1521. return 0;
  1522. }
  1523. static int proc_reapurb_compat(struct dev_state *ps, void __user *arg)
  1524. {
  1525. struct async *as = reap_as(ps);
  1526. if (as) {
  1527. int retval = processcompl_compat(as, (void __user * __user *)arg);
  1528. free_async(as);
  1529. return retval;
  1530. }
  1531. if (signal_pending(current))
  1532. return -EINTR;
  1533. return -EIO;
  1534. }
  1535. static int proc_reapurbnonblock_compat(struct dev_state *ps, void __user *arg)
  1536. {
  1537. int retval;
  1538. struct async *as;
  1539. retval = -EAGAIN;
  1540. as = async_getcompleted(ps);
  1541. if (as) {
  1542. retval = processcompl_compat(as, (void __user * __user *)arg);
  1543. free_async(as);
  1544. }
  1545. return retval;
  1546. }
  1547. #endif
  1548. static int proc_disconnectsignal(struct dev_state *ps, void __user *arg)
  1549. {
  1550. struct usbdevfs_disconnectsignal ds;
  1551. if (copy_from_user(&ds, arg, sizeof(ds)))
  1552. return -EFAULT;
  1553. ps->discsignr = ds.signr;
  1554. ps->disccontext = ds.context;
  1555. return 0;
  1556. }
  1557. static int proc_claiminterface(struct dev_state *ps, void __user *arg)
  1558. {
  1559. unsigned int ifnum;
  1560. if (get_user(ifnum, (unsigned int __user *)arg))
  1561. return -EFAULT;
  1562. return claimintf(ps, ifnum);
  1563. }
  1564. static int proc_releaseinterface(struct dev_state *ps, void __user *arg)
  1565. {
  1566. unsigned int ifnum;
  1567. int ret;
  1568. if (get_user(ifnum, (unsigned int __user *)arg))
  1569. return -EFAULT;
  1570. if ((ret = releaseintf(ps, ifnum)) < 0)
  1571. return ret;
  1572. destroy_async_on_interface (ps, ifnum);
  1573. return 0;
  1574. }
  1575. static int proc_ioctl(struct dev_state *ps, struct usbdevfs_ioctl *ctl)
  1576. {
  1577. int size;
  1578. void *buf = NULL;
  1579. int retval = 0;
  1580. struct usb_interface *intf = NULL;
  1581. struct usb_driver *driver = NULL;
  1582. /* alloc buffer */
  1583. if ((size = _IOC_SIZE(ctl->ioctl_code)) > 0) {
  1584. buf = kmalloc(size, GFP_KERNEL);
  1585. if (buf == NULL)
  1586. return -ENOMEM;
  1587. if ((_IOC_DIR(ctl->ioctl_code) & _IOC_WRITE)) {
  1588. if (copy_from_user(buf, ctl->data, size)) {
  1589. kfree(buf);
  1590. return -EFAULT;
  1591. }
  1592. } else {
  1593. memset(buf, 0, size);
  1594. }
  1595. }
  1596. if (!connected(ps)) {
  1597. kfree(buf);
  1598. return -ENODEV;
  1599. }
  1600. if (ps->dev->state != USB_STATE_CONFIGURED)
  1601. retval = -EHOSTUNREACH;
  1602. else if (!(intf = usb_ifnum_to_if(ps->dev, ctl->ifno)))
  1603. retval = -EINVAL;
  1604. else switch (ctl->ioctl_code) {
  1605. /* disconnect kernel driver from interface */
  1606. case USBDEVFS_DISCONNECT:
  1607. if (intf->dev.driver) {
  1608. driver = to_usb_driver(intf->dev.driver);
  1609. dev_dbg(&intf->dev, "disconnect by usbfs\n");
  1610. usb_driver_release_interface(driver, intf);
  1611. } else
  1612. retval = -ENODATA;
  1613. break;
  1614. /* let kernel drivers try to (re)bind to the interface */
  1615. case USBDEVFS_CONNECT:
  1616. if (!intf->dev.driver)
  1617. retval = device_attach(&intf->dev);
  1618. else
  1619. retval = -EBUSY;
  1620. break;
  1621. /* talk directly to the interface's driver */
  1622. default:
  1623. if (intf->dev.driver)
  1624. driver = to_usb_driver(intf->dev.driver);
  1625. if (driver == NULL || driver->unlocked_ioctl == NULL) {
  1626. retval = -ENOTTY;
  1627. } else {
  1628. retval = driver->unlocked_ioctl(intf, ctl->ioctl_code, buf);
  1629. if (retval == -ENOIOCTLCMD)
  1630. retval = -ENOTTY;
  1631. }
  1632. }
  1633. /* cleanup and return */
  1634. if (retval >= 0
  1635. && (_IOC_DIR(ctl->ioctl_code) & _IOC_READ) != 0
  1636. && size > 0
  1637. && copy_to_user(ctl->data, buf, size) != 0)
  1638. retval = -EFAULT;
  1639. kfree(buf);
  1640. return retval;
  1641. }
  1642. static int proc_ioctl_default(struct dev_state *ps, void __user *arg)
  1643. {
  1644. struct usbdevfs_ioctl ctrl;
  1645. if (copy_from_user(&ctrl, arg, sizeof(ctrl)))
  1646. return -EFAULT;
  1647. return proc_ioctl(ps, &ctrl);
  1648. }
  1649. #ifdef CONFIG_COMPAT
  1650. static int proc_ioctl_compat(struct dev_state *ps, compat_uptr_t arg)
  1651. {
  1652. struct usbdevfs_ioctl32 __user *uioc;
  1653. struct usbdevfs_ioctl ctrl;
  1654. u32 udata;
  1655. uioc = compat_ptr((long)arg);
  1656. if (!access_ok(VERIFY_READ, uioc, sizeof(*uioc)) ||
  1657. __get_user(ctrl.ifno, &uioc->ifno) ||
  1658. __get_user(ctrl.ioctl_code, &uioc->ioctl_code) ||
  1659. __get_user(udata, &uioc->data))
  1660. return -EFAULT;
  1661. ctrl.data = compat_ptr(udata);
  1662. return proc_ioctl(ps, &ctrl);
  1663. }
  1664. #endif
  1665. static int proc_claim_port(struct dev_state *ps, void __user *arg)
  1666. {
  1667. unsigned portnum;
  1668. int rc;
  1669. if (get_user(portnum, (unsigned __user *) arg))
  1670. return -EFAULT;
  1671. rc = usb_hub_claim_port(ps->dev, portnum, ps);
  1672. if (rc == 0)
  1673. snoop(&ps->dev->dev, "port %d claimed by process %d: %s\n",
  1674. portnum, task_pid_nr(current), current->comm);
  1675. return rc;
  1676. }
  1677. static int proc_release_port(struct dev_state *ps, void __user *arg)
  1678. {
  1679. unsigned portnum;
  1680. if (get_user(portnum, (unsigned __user *) arg))
  1681. return -EFAULT;
  1682. return usb_hub_release_port(ps->dev, portnum, ps);
  1683. }
  1684. static int proc_get_capabilities(struct dev_state *ps, void __user *arg)
  1685. {
  1686. __u32 caps;
  1687. caps = USBDEVFS_CAP_ZERO_PACKET | USBDEVFS_CAP_NO_PACKET_SIZE_LIM;
  1688. if (!ps->dev->bus->no_stop_on_short)
  1689. caps |= USBDEVFS_CAP_BULK_CONTINUATION;
  1690. if (ps->dev->bus->sg_tablesize)
  1691. caps |= USBDEVFS_CAP_BULK_SCATTER_GATHER;
  1692. if (put_user(caps, (__u32 __user *)arg))
  1693. return -EFAULT;
  1694. return 0;
  1695. }
  1696. static int proc_disconnect_claim(struct dev_state *ps, void __user *arg)
  1697. {
  1698. struct usbdevfs_disconnect_claim dc;
  1699. struct usb_interface *intf;
  1700. if (copy_from_user(&dc, arg, sizeof(dc)))
  1701. return -EFAULT;
  1702. intf = usb_ifnum_to_if(ps->dev, dc.interface);
  1703. if (!intf)
  1704. return -EINVAL;
  1705. if (intf->dev.driver) {
  1706. struct usb_driver *driver = to_usb_driver(intf->dev.driver);
  1707. if ((dc.flags & USBDEVFS_DISCONNECT_CLAIM_IF_DRIVER) &&
  1708. strncmp(dc.driver, intf->dev.driver->name,
  1709. sizeof(dc.driver)) != 0)
  1710. return -EBUSY;
  1711. if ((dc.flags & USBDEVFS_DISCONNECT_CLAIM_EXCEPT_DRIVER) &&
  1712. strncmp(dc.driver, intf->dev.driver->name,
  1713. sizeof(dc.driver)) == 0)
  1714. return -EBUSY;
  1715. dev_dbg(&intf->dev, "disconnect by usbfs\n");
  1716. usb_driver_release_interface(driver, intf);
  1717. }
  1718. return claimintf(ps, dc.interface);
  1719. }
  1720. /*
  1721. * NOTE: All requests here that have interface numbers as parameters
  1722. * are assuming that somehow the configuration has been prevented from
  1723. * changing. But there's no mechanism to ensure that...
  1724. */
  1725. static long usbdev_do_ioctl(struct file *file, unsigned int cmd,
  1726. void __user *p)
  1727. {
  1728. struct dev_state *ps = file->private_data;
  1729. struct inode *inode = file_inode(file);
  1730. struct usb_device *dev = ps->dev;
  1731. int ret = -ENOTTY;
  1732. if (!(file->f_mode & FMODE_WRITE))
  1733. return -EPERM;
  1734. usb_lock_device(dev);
  1735. if (!connected(ps)) {
  1736. usb_unlock_device(dev);
  1737. return -ENODEV;
  1738. }
  1739. switch (cmd) {
  1740. case USBDEVFS_CONTROL:
  1741. snoop(&dev->dev, "%s: CONTROL\n", __func__);
  1742. ret = proc_control(ps, p);
  1743. if (ret >= 0)
  1744. inode->i_mtime = CURRENT_TIME;
  1745. break;
  1746. case USBDEVFS_BULK:
  1747. snoop(&dev->dev, "%s: BULK\n", __func__);
  1748. ret = proc_bulk(ps, p);
  1749. if (ret >= 0)
  1750. inode->i_mtime = CURRENT_TIME;
  1751. break;
  1752. case USBDEVFS_RESETEP:
  1753. snoop(&dev->dev, "%s: RESETEP\n", __func__);
  1754. ret = proc_resetep(ps, p);
  1755. if (ret >= 0)
  1756. inode->i_mtime = CURRENT_TIME;
  1757. break;
  1758. case USBDEVFS_RESET:
  1759. snoop(&dev->dev, "%s: RESET\n", __func__);
  1760. ret = proc_resetdevice(ps);
  1761. break;
  1762. case USBDEVFS_CLEAR_HALT:
  1763. snoop(&dev->dev, "%s: CLEAR_HALT\n", __func__);
  1764. ret = proc_clearhalt(ps, p);
  1765. if (ret >= 0)
  1766. inode->i_mtime = CURRENT_TIME;
  1767. break;
  1768. case USBDEVFS_GETDRIVER:
  1769. snoop(&dev->dev, "%s: GETDRIVER\n", __func__);
  1770. ret = proc_getdriver(ps, p);
  1771. break;
  1772. case USBDEVFS_CONNECTINFO:
  1773. snoop(&dev->dev, "%s: CONNECTINFO\n", __func__);
  1774. ret = proc_connectinfo(ps, p);
  1775. break;
  1776. case USBDEVFS_SETINTERFACE:
  1777. snoop(&dev->dev, "%s: SETINTERFACE\n", __func__);
  1778. ret = proc_setintf(ps, p);
  1779. break;
  1780. case USBDEVFS_SETCONFIGURATION:
  1781. snoop(&dev->dev, "%s: SETCONFIGURATION\n", __func__);
  1782. ret = proc_setconfig(ps, p);
  1783. break;
  1784. case USBDEVFS_SUBMITURB:
  1785. snoop(&dev->dev, "%s: SUBMITURB\n", __func__);
  1786. ret = proc_submiturb(ps, p);
  1787. if (ret >= 0)
  1788. inode->i_mtime = CURRENT_TIME;
  1789. break;
  1790. #ifdef CONFIG_COMPAT
  1791. case USBDEVFS_CONTROL32:
  1792. snoop(&dev->dev, "%s: CONTROL32\n", __func__);
  1793. ret = proc_control_compat(ps, p);
  1794. if (ret >= 0)
  1795. inode->i_mtime = CURRENT_TIME;
  1796. break;
  1797. case USBDEVFS_BULK32:
  1798. snoop(&dev->dev, "%s: BULK32\n", __func__);
  1799. ret = proc_bulk_compat(ps, p);
  1800. if (ret >= 0)
  1801. inode->i_mtime = CURRENT_TIME;
  1802. break;
  1803. case USBDEVFS_DISCSIGNAL32:
  1804. snoop(&dev->dev, "%s: DISCSIGNAL32\n", __func__);
  1805. ret = proc_disconnectsignal_compat(ps, p);
  1806. break;
  1807. case USBDEVFS_SUBMITURB32:
  1808. snoop(&dev->dev, "%s: SUBMITURB32\n", __func__);
  1809. ret = proc_submiturb_compat(ps, p);
  1810. if (ret >= 0)
  1811. inode->i_mtime = CURRENT_TIME;
  1812. break;
  1813. case USBDEVFS_REAPURB32:
  1814. snoop(&dev->dev, "%s: REAPURB32\n", __func__);
  1815. ret = proc_reapurb_compat(ps, p);
  1816. break;
  1817. case USBDEVFS_REAPURBNDELAY32:
  1818. snoop(&dev->dev, "%s: REAPURBNDELAY32\n", __func__);
  1819. ret = proc_reapurbnonblock_compat(ps, p);
  1820. break;
  1821. case USBDEVFS_IOCTL32:
  1822. snoop(&dev->dev, "%s: IOCTL32\n", __func__);
  1823. ret = proc_ioctl_compat(ps, ptr_to_compat(p));
  1824. break;
  1825. #endif
  1826. case USBDEVFS_DISCARDURB:
  1827. snoop(&dev->dev, "%s: DISCARDURB\n", __func__);
  1828. ret = proc_unlinkurb(ps, p);
  1829. break;
  1830. case USBDEVFS_REAPURB:
  1831. snoop(&dev->dev, "%s: REAPURB\n", __func__);
  1832. ret = proc_reapurb(ps, p);
  1833. break;
  1834. case USBDEVFS_REAPURBNDELAY:
  1835. snoop(&dev->dev, "%s: REAPURBNDELAY\n", __func__);
  1836. ret = proc_reapurbnonblock(ps, p);
  1837. break;
  1838. case USBDEVFS_DISCSIGNAL:
  1839. snoop(&dev->dev, "%s: DISCSIGNAL\n", __func__);
  1840. ret = proc_disconnectsignal(ps, p);
  1841. break;
  1842. case USBDEVFS_CLAIMINTERFACE:
  1843. snoop(&dev->dev, "%s: CLAIMINTERFACE\n", __func__);
  1844. ret = proc_claiminterface(ps, p);
  1845. break;
  1846. case USBDEVFS_RELEASEINTERFACE:
  1847. snoop(&dev->dev, "%s: RELEASEINTERFACE\n", __func__);
  1848. ret = proc_releaseinterface(ps, p);
  1849. break;
  1850. case USBDEVFS_IOCTL:
  1851. snoop(&dev->dev, "%s: IOCTL\n", __func__);
  1852. ret = proc_ioctl_default(ps, p);
  1853. break;
  1854. case USBDEVFS_CLAIM_PORT:
  1855. snoop(&dev->dev, "%s: CLAIM_PORT\n", __func__);
  1856. ret = proc_claim_port(ps, p);
  1857. break;
  1858. case USBDEVFS_RELEASE_PORT:
  1859. snoop(&dev->dev, "%s: RELEASE_PORT\n", __func__);
  1860. ret = proc_release_port(ps, p);
  1861. break;
  1862. case USBDEVFS_GET_CAPABILITIES:
  1863. ret = proc_get_capabilities(ps, p);
  1864. break;
  1865. case USBDEVFS_DISCONNECT_CLAIM:
  1866. ret = proc_disconnect_claim(ps, p);
  1867. break;
  1868. }
  1869. usb_unlock_device(dev);
  1870. if (ret >= 0)
  1871. inode->i_atime = CURRENT_TIME;
  1872. return ret;
  1873. }
  1874. static long usbdev_ioctl(struct file *file, unsigned int cmd,
  1875. unsigned long arg)
  1876. {
  1877. int ret;
  1878. ret = usbdev_do_ioctl(file, cmd, (void __user *)arg);
  1879. return ret;
  1880. }
  1881. #ifdef CONFIG_COMPAT
  1882. static long usbdev_compat_ioctl(struct file *file, unsigned int cmd,
  1883. unsigned long arg)
  1884. {
  1885. int ret;
  1886. ret = usbdev_do_ioctl(file, cmd, compat_ptr(arg));
  1887. return ret;
  1888. }
  1889. #endif
  1890. /* No kernel lock - fine */
  1891. static unsigned int usbdev_poll(struct file *file,
  1892. struct poll_table_struct *wait)
  1893. {
  1894. struct dev_state *ps = file->private_data;
  1895. unsigned int mask = 0;
  1896. poll_wait(file, &ps->wait, wait);
  1897. if (file->f_mode & FMODE_WRITE && !list_empty(&ps->async_completed))
  1898. mask |= POLLOUT | POLLWRNORM;
  1899. if (!connected(ps))
  1900. mask |= POLLERR | POLLHUP;
  1901. return mask;
  1902. }
  1903. const struct file_operations usbdev_file_operations = {
  1904. .owner = THIS_MODULE,
  1905. .llseek = usbdev_lseek,
  1906. .read = usbdev_read,
  1907. .poll = usbdev_poll,
  1908. .unlocked_ioctl = usbdev_ioctl,
  1909. #ifdef CONFIG_COMPAT
  1910. .compat_ioctl = usbdev_compat_ioctl,
  1911. #endif
  1912. .open = usbdev_open,
  1913. .release = usbdev_release,
  1914. };
  1915. static void usbdev_remove(struct usb_device *udev)
  1916. {
  1917. struct dev_state *ps;
  1918. struct siginfo sinfo;
  1919. while (!list_empty(&udev->filelist)) {
  1920. ps = list_entry(udev->filelist.next, struct dev_state, list);
  1921. destroy_all_async(ps);
  1922. wake_up_all(&ps->wait);
  1923. list_del_init(&ps->list);
  1924. if (ps->discsignr) {
  1925. sinfo.si_signo = ps->discsignr;
  1926. sinfo.si_errno = EPIPE;
  1927. sinfo.si_code = SI_ASYNCIO;
  1928. sinfo.si_addr = ps->disccontext;
  1929. kill_pid_info_as_cred(ps->discsignr, &sinfo,
  1930. ps->disc_pid, ps->cred, ps->secid);
  1931. }
  1932. }
  1933. }
  1934. static int usbdev_notify(struct notifier_block *self,
  1935. unsigned long action, void *dev)
  1936. {
  1937. switch (action) {
  1938. case USB_DEVICE_ADD:
  1939. break;
  1940. case USB_DEVICE_REMOVE:
  1941. usbdev_remove(dev);
  1942. break;
  1943. }
  1944. return NOTIFY_OK;
  1945. }
  1946. static struct notifier_block usbdev_nb = {
  1947. .notifier_call = usbdev_notify,
  1948. };
  1949. static struct cdev usb_device_cdev;
  1950. int __init usb_devio_init(void)
  1951. {
  1952. int retval;
  1953. retval = register_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX,
  1954. "usb_device");
  1955. if (retval) {
  1956. printk(KERN_ERR "Unable to register minors for usb_device\n");
  1957. goto out;
  1958. }
  1959. cdev_init(&usb_device_cdev, &usbdev_file_operations);
  1960. retval = cdev_add(&usb_device_cdev, USB_DEVICE_DEV, USB_DEVICE_MAX);
  1961. if (retval) {
  1962. printk(KERN_ERR "Unable to get usb_device major %d\n",
  1963. USB_DEVICE_MAJOR);
  1964. goto error_cdev;
  1965. }
  1966. usb_register_notify(&usbdev_nb);
  1967. out:
  1968. return retval;
  1969. error_cdev:
  1970. unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
  1971. goto out;
  1972. }
  1973. void usb_devio_cleanup(void)
  1974. {
  1975. usb_unregister_notify(&usbdev_nb);
  1976. cdev_del(&usb_device_cdev);
  1977. unregister_chrdev_region(USB_DEVICE_DEV, USB_DEVICE_MAX);
  1978. }