devio.c 56 KB

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