devices.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:17k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * devices.c
  3.  * (C) Copyright 1999 Randy Dunlap.
  4.  * (C) Copyright 1999,2000 Thomas Sailer <sailer@ife.ee.ethz.ch>. (proc file per device)
  5.  * (C) Copyright 1999 Deti Fliegl (new USB architecture)
  6.  *
  7.  * $id$
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  22.  *
  23.  *************************************************************
  24.  *
  25.  * <mountpoint>/devices contains USB topology, device, config, class,
  26.  * interface, & endpoint data.
  27.  *
  28.  * I considered using /proc/bus/usb/devices/device# for each device
  29.  * as it is attached or detached, but I didn't like this for some
  30.  * reason -- maybe it's just too deep of a directory structure.
  31.  * I also don't like looking in multiple places to gather and view
  32.  * the data.  Having only one file for ./devices also prevents race
  33.  * conditions that could arise if a program was reading device info
  34.  * for devices that are being removed (unplugged).  (That is, the
  35.  * program may find a directory for devnum_12 then try to open it,
  36.  * but it was just unplugged, so the directory is now deleted.
  37.  * But programs would just have to be prepared for situations like
  38.  * this in any plug-and-play environment.)
  39.  *
  40.  * 1999-12-16: Thomas Sailer <sailer@ife.ee.ethz.ch>
  41.  *   Converted the whole proc stuff to real
  42.  *   read methods. Now not the whole device list needs to fit
  43.  *   into one page, only the device list for one bus.
  44.  *   Added a poll method to /proc/bus/usb/devices, to wake
  45.  *   up an eventual usbd
  46.  * 2000-01-04: Thomas Sailer <sailer@ife.ee.ethz.ch>
  47.  *   Turned into its own filesystem
  48.  * 2000-07-05: Ashley Montanaro <ashley@compsoc.man.ac.uk>
  49.  *   Converted file reading routine to dump to buffer once
  50.  *   per device, not per bus
  51.  *
  52.  * $Id: devices.c,v 1.5 2000/01/11 13:58:21 tom Exp $
  53.  */
  54. #include <linux/fs.h>
  55. #include <linux/mm.h>
  56. #include <linux/slab.h>
  57. #include <linux/poll.h>
  58. #include <linux/usb.h>
  59. #include <linux/smp_lock.h>
  60. #include <linux/usbdevice_fs.h>
  61. #include <asm/uaccess.h>
  62. #define MAX_TOPO_LEVEL 6
  63. /* Define ALLOW_SERIAL_NUMBER if you want to see the serial number of devices */
  64. #define ALLOW_SERIAL_NUMBER
  65. static char *format_topo =
  66. /* T:  Bus=dd Lev=dd Prnt=dd Port=dd Cnt=dd Dev#=ddd Spd=ddd MxCh=dd */
  67.   "T:  Bus=%2.2d Lev=%2.2d Prnt=%2.2d Port=%2.2d Cnt=%2.2d Dev#=%3d Spd=%3s MxCh=%2dn";
  68. static char *format_string_manufacturer =
  69. /* S:  Manufacturer=xxxx */
  70.   "S:  Manufacturer=%.100sn";
  71. static char *format_string_product =
  72. /* S:  Product=xxxx */
  73.   "S:  Product=%.100sn";
  74. #ifdef ALLOW_SERIAL_NUMBER
  75. static char *format_string_serialnumber =
  76. /* S:  SerialNumber=xxxx */
  77.   "S:  SerialNumber=%.100sn";
  78. #endif
  79. static char *format_bandwidth =
  80. /* B:  Alloc=ddd/ddd us (xx%), #Int=ddd, #Iso=ddd */
  81.   "B:  Alloc=%3d/%3d us (%2d%%), #Int=%3d, #Iso=%3dn";
  82.   
  83. static char *format_device1 =
  84. /* D:  Ver=xx.xx Cls=xx(sssss) Sub=xx Prot=xx MxPS=dd #Cfgs=dd */
  85.   "D:  Ver=%2x.%02x Cls=%02x(%-5s) Sub=%02x Prot=%02x MxPS=%2d #Cfgs=%3dn";
  86. static char *format_device2 =
  87. /* P:  Vendor=xxxx ProdID=xxxx Rev=xx.xx */
  88.   "P:  Vendor=%04x ProdID=%04x Rev=%2x.%02xn";
  89. static char *format_config =
  90. /* C:  #Ifs=dd Cfg#=dd Atr=xx MPwr=dddmA */
  91.   "C:%c #Ifs=%2d Cfg#=%2d Atr=%02x MxPwr=%3dmAn";
  92.   
  93. static char *format_iface =
  94. /* I:  If#=dd Alt=dd #EPs=dd Cls=xx(sssss) Sub=xx Prot=xx Driver=xxxx*/
  95.   "I:  If#=%2d Alt=%2d #EPs=%2d Cls=%02x(%-5s) Sub=%02x Prot=%02x Driver=%sn";
  96. static char *format_endpt =
  97. /* E:  Ad=xx(s) Atr=xx(ssss) MxPS=dddd Ivl=dddms */
  98.   "E:  Ad=%02x(%c) Atr=%02x(%-4s) MxPS=%4d Ivl=%3dmsn";
  99. /*
  100.  * Need access to the driver and USB bus lists.
  101.  * extern struct list_head usb_driver_list;
  102.  * extern struct list_head usb_bus_list;
  103.  * However, these will come from functions that return ptrs to each of them.
  104.  */
  105. static DECLARE_WAIT_QUEUE_HEAD(deviceconndiscwq);
  106. static unsigned int conndiscevcnt = 0;
  107. /* this struct stores the poll state for <mountpoint>/devices pollers */
  108. struct usb_device_status {
  109. unsigned int lastev;
  110. };
  111. struct class_info {
  112. int class;
  113. char *class_name;
  114. };
  115. static const struct class_info clas_info[] =
  116. { /* max. 5 chars. per name string */
  117. {USB_CLASS_PER_INTERFACE, ">ifc"},
  118. {USB_CLASS_AUDIO, "audio"},
  119. {USB_CLASS_COMM, "comm."},
  120. {USB_CLASS_HID, "HID"},
  121. {USB_CLASS_HUB, "hub"},
  122. {USB_CLASS_PHYSICAL, "PID"},
  123. {USB_CLASS_PRINTER, "print"},
  124. {USB_CLASS_MASS_STORAGE, "stor."},
  125. {USB_CLASS_CDC_DATA, "data"},
  126. {USB_CLASS_APP_SPEC, "app."},
  127. {USB_CLASS_VENDOR_SPEC, "vend."},
  128. {USB_CLASS_STILL_IMAGE, "still"},
  129. {USB_CLASS_CSCID, "scard"},
  130. {USB_CLASS_CONTENT_SEC, "c-sec"},
  131. {-1, "unk."} /* leave as last */
  132. };
  133. /*****************************************************************/
  134. void usbdevfs_conn_disc_event(void)
  135. {
  136. wake_up(&deviceconndiscwq);
  137. conndiscevcnt++;
  138. }
  139. static const char *class_decode(const int class)
  140. {
  141. int ix;
  142. for (ix = 0; clas_info[ix].class != -1; ix++)
  143. if (clas_info[ix].class == class)
  144. break;
  145. return (clas_info[ix].class_name);
  146. }
  147. static char *usb_dump_endpoint_descriptor(char *start, char *end, const struct usb_endpoint_descriptor *desc)
  148. {
  149. char *EndpointType [4] = {"Ctrl", "Isoc", "Bulk", "Int."};
  150. if (start > end)
  151. return start;
  152. start += sprintf(start, format_endpt, desc->bEndpointAddress,
  153.  (desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK) == USB_ENDPOINT_XFER_CONTROL
  154.   ? 'B' : /* bidirectional */
  155.  (desc->bEndpointAddress & USB_DIR_IN) ? 'I' : 'O',
  156.  desc->bmAttributes, EndpointType[desc->bmAttributes & USB_ENDPOINT_XFERTYPE_MASK],
  157.  desc->wMaxPacketSize, desc->bInterval);
  158. return start;
  159. }
  160. static char *usb_dump_endpoint(char *start, char *end, const struct usb_endpoint_descriptor *endpoint)
  161. {
  162. return usb_dump_endpoint_descriptor(start, end, endpoint);
  163. }
  164. static char *usb_dump_interface_descriptor(char *start, char *end, const struct usb_interface *iface, int setno)
  165. {
  166. struct usb_interface_descriptor *desc = &iface->altsetting[setno];
  167. if (start > end)
  168. return start;
  169. start += sprintf(start, format_iface,
  170.  desc->bInterfaceNumber,
  171.  desc->bAlternateSetting,
  172.  desc->bNumEndpoints,
  173.  desc->bInterfaceClass,
  174.  class_decode(desc->bInterfaceClass),
  175.  desc->bInterfaceSubClass,
  176.  desc->bInterfaceProtocol,
  177.  iface->driver ? iface->driver->name : "(none)");
  178. return start;
  179. }
  180. static char *usb_dump_interface(char *start, char *end, const struct usb_interface *iface, int setno)
  181. {
  182. struct usb_interface_descriptor *desc = &iface->altsetting[setno];
  183. int i;
  184. start = usb_dump_interface_descriptor(start, end, iface, setno);
  185. for (i = 0; i < desc->bNumEndpoints; i++) {
  186. if (start > end)
  187. return start;
  188. start = usb_dump_endpoint(start, end, desc->endpoint + i);
  189. }
  190. return start;
  191. }
  192. /* TBD:
  193.  * 0. TBDs
  194.  * 1. marking active config and ifaces (code lists all, but should mark
  195.  *    which ones are active, if any)
  196.  * 2. add <halted> status to each endpoint line
  197.  */
  198. static char *usb_dump_config_descriptor(char *start, char *end, const struct usb_config_descriptor *desc, int active)
  199. {
  200. if (start > end)
  201. return start;
  202. start += sprintf(start, format_config,
  203.  active ? '*' : ' ', /* mark active/actual/current cfg. */
  204.  desc->bNumInterfaces,
  205.  desc->bConfigurationValue,
  206.  desc->bmAttributes,
  207.  desc->MaxPower * 2);
  208. return start;
  209. }
  210. static char *usb_dump_config(char *start, char *end, const struct usb_config_descriptor *config, int active)
  211. {
  212. int i, j;
  213. struct usb_interface *interface;
  214. if (start > end)
  215. return start;
  216. if (!config) /* getting these some in 2.3.7; none in 2.3.6 */
  217. return start + sprintf(start, "(null Cfg. desc.)n");
  218. start = usb_dump_config_descriptor(start, end, config, active);
  219. for (i = 0; i < config->bNumInterfaces; i++) {
  220. interface = config->interface + i;
  221. if (!interface)
  222. break;
  223. for (j = 0; j < interface->num_altsetting; j++) {
  224. if (start > end)
  225. return start;
  226. start = usb_dump_interface(start, end, interface, j);
  227. }
  228. }
  229. return start;
  230. }
  231. /*
  232.  * Dump the different USB descriptors.
  233.  */
  234. static char *usb_dump_device_descriptor(char *start, char *end, const struct usb_device_descriptor *desc)
  235. {
  236. if (start > end)
  237. return start;
  238. start += sprintf (start, format_device1,
  239.   desc->bcdUSB >> 8, desc->bcdUSB & 0xff,
  240.   desc->bDeviceClass,
  241.   class_decode (desc->bDeviceClass),
  242.   desc->bDeviceSubClass,
  243.   desc->bDeviceProtocol,
  244.   desc->bMaxPacketSize0,
  245.   desc->bNumConfigurations);
  246. if (start > end)
  247. return start;
  248. start += sprintf(start, format_device2,
  249.  desc->idVendor, desc->idProduct,
  250.  desc->bcdDevice >> 8, desc->bcdDevice & 0xff);
  251. return start;
  252. }
  253. /*
  254.  * Dump the different strings that this device holds.
  255.  */
  256. static char *usb_dump_device_strings (char *start, char *end, struct usb_device *dev)
  257. {
  258. char *buf;
  259. if (start > end)
  260. return start;
  261. buf = kmalloc(128, GFP_KERNEL);
  262. if (!buf)
  263. return start;
  264. if (dev->descriptor.iManufacturer) {
  265. if (usb_string(dev, dev->descriptor.iManufacturer, buf, 128) > 0)
  266. start += sprintf(start, format_string_manufacturer, buf);
  267. }
  268. if (start > end)
  269. goto out;
  270. if (dev->descriptor.iProduct) {
  271. if (usb_string(dev, dev->descriptor.iProduct, buf, 128) > 0)
  272. start += sprintf(start, format_string_product, buf);
  273. }
  274. if (start > end)
  275. goto out;
  276. #ifdef ALLOW_SERIAL_NUMBER
  277. if (dev->descriptor.iSerialNumber) {
  278. if (usb_string(dev, dev->descriptor.iSerialNumber, buf, 128) > 0)
  279. start += sprintf(start, format_string_serialnumber, buf);
  280. }
  281. #endif
  282.  out:
  283. kfree(buf);
  284. return start;
  285. }
  286. static char *usb_dump_desc(char *start, char *end, struct usb_device *dev)
  287. {
  288. int i;
  289. if (start > end)
  290. return start;
  291. start = usb_dump_device_descriptor(start, end, &dev->descriptor);
  292. if (start > end)
  293. return start;
  294. start = usb_dump_device_strings (start, end, dev);
  295. for (i = 0; i < dev->descriptor.bNumConfigurations; i++) {
  296. if (start > end)
  297. return start;
  298. start = usb_dump_config(start, end, dev->config + i,
  299. (dev->config + i) == dev->actconfig); /* active ? */
  300. }
  301. return start;
  302. }
  303. #ifdef PROC_EXTRA /* TBD: may want to add this code later */
  304. static char *usb_dump_hub_descriptor(char *start, char *end, const struct usb_hub_descriptor * desc)
  305. {
  306. int leng = USB_DT_HUB_NONVAR_SIZE;
  307. unsigned char *ptr = (unsigned char *)desc;
  308. if (start > end)
  309. return start;
  310. start += sprintf(start, "Interface:");
  311. while (leng && start <= end) {
  312. start += sprintf(start, " %02x", *ptr);
  313. ptr++; leng--;
  314. }
  315. *start++ = 'n';
  316. return start;
  317. }
  318. static char *usb_dump_string(char *start, char *end, const struct usb_device *dev, char *id, int index)
  319. {
  320. if (start > end)
  321. return start;
  322. start += sprintf(start, "Interface:");
  323. if (index <= dev->maxstring && dev->stringindex && dev->stringindex[index])
  324. start += sprintf(start, "%s: %.100s ", id, dev->stringindex[index]);
  325. return start;
  326. }
  327. #endif /* PROC_EXTRA */
  328. /*****************************************************************/
  329. /* This is a recursive function. Parameters:
  330.  * buffer - the user-space buffer to write data into
  331.  * nbytes - the maximum number of bytes to write
  332.  * skip_bytes - the number of bytes to skip before writing anything
  333.  * file_offset - the offset into the devices file on completion
  334.  */
  335. static ssize_t usb_device_dump(char **buffer, size_t *nbytes, loff_t *skip_bytes, loff_t *file_offset,
  336. struct usb_device *usbdev, struct usb_bus *bus, int level, int index, int count)
  337. {
  338. int chix;
  339. int ret, cnt = 0;
  340. int parent_devnum = 0;
  341. char *pages_start, *data_end, *speed;
  342. unsigned int length;
  343. ssize_t total_written = 0;
  344. /* don't bother with anything else if we're not writing any data */
  345. if (*nbytes <= 0)
  346. return 0;
  347. if (level > MAX_TOPO_LEVEL)
  348. return total_written;
  349. /* allocate 2^1 pages = 8K (on i386); should be more than enough for one device */
  350.         if (!(pages_start = (char*) __get_free_pages(GFP_KERNEL,1)))
  351.                 return -ENOMEM;
  352. if (usbdev->parent && usbdev->parent->devnum != -1)
  353. parent_devnum = usbdev->parent->devnum;
  354. /*
  355.  * So the root hub's parent is 0 and any device that is
  356.  * plugged into the root hub has a parent of 0.
  357.  */
  358. switch (usbdev->speed) {
  359. case USB_SPEED_LOW:
  360. speed = "1.5"; break;
  361. case USB_SPEED_UNKNOWN: /* usb 1.1 root hub code */
  362. case USB_SPEED_FULL:
  363. speed = "12 "; break;
  364. case USB_SPEED_HIGH:
  365. speed = "480"; break;
  366. default:
  367. speed = "?? ";
  368. }
  369. data_end = pages_start + sprintf(pages_start, format_topo,
  370. bus->busnum, level, parent_devnum,
  371. index, count, usbdev->devnum,
  372. speed, usbdev->maxchild);
  373. /*
  374.  * level = topology-tier level;
  375.  * parent_devnum = parent device number;
  376.  * index = parent's connector number;
  377.  * count = device count at this level
  378.  */
  379. /* If this is the root hub, display the bandwidth information */
  380. if (level == 0)
  381. data_end += sprintf(data_end, format_bandwidth, bus->bandwidth_allocated,
  382. FRAME_TIME_MAX_USECS_ALLOC,
  383. (100 * bus->bandwidth_allocated + FRAME_TIME_MAX_USECS_ALLOC / 2) / FRAME_TIME_MAX_USECS_ALLOC,
  384.          bus->bandwidth_int_reqs, bus->bandwidth_isoc_reqs);
  385. data_end = usb_dump_desc(data_end, pages_start + (2 * PAGE_SIZE) - 256, usbdev);
  386. if (data_end > (pages_start + (2 * PAGE_SIZE) - 256))
  387. data_end += sprintf(data_end, "(truncated)n");
  388. length = data_end - pages_start;
  389. /* if we can start copying some data to the user */
  390. if (length > *skip_bytes) {
  391. length -= *skip_bytes;
  392. if (length > *nbytes)
  393. length = *nbytes;
  394. if (copy_to_user(*buffer, pages_start + *skip_bytes, length)) {
  395. free_pages((unsigned long)pages_start, 1);
  396. if (total_written == 0)
  397. return -EFAULT;
  398. return total_written;
  399. }
  400. *nbytes -= length;
  401. *file_offset += length;
  402. total_written += length;
  403. *buffer += length;
  404. *skip_bytes = 0;
  405. } else
  406. *skip_bytes -= length;
  407. free_pages((unsigned long)pages_start, 1);
  408. /* Now look at all of this device's children. */
  409. for (chix = 0; chix < usbdev->maxchild; chix++) {
  410. if (usbdev->children[chix]) {
  411. ret = usb_device_dump(buffer, nbytes, skip_bytes, file_offset, usbdev->children[chix],
  412. bus, level + 1, chix, ++cnt);
  413. if (ret == -EFAULT)
  414. return total_written;
  415. total_written += ret;
  416. }
  417. }
  418. return total_written;
  419. }
  420. static ssize_t usb_device_read(struct file *file, char *buf, size_t nbytes, loff_t *ppos)
  421. {
  422. struct list_head *buslist;
  423. struct usb_bus *bus;
  424. ssize_t ret, total_written = 0;
  425. loff_t skip_bytes = *ppos;
  426. if (*ppos < 0)
  427. return -EINVAL;
  428. if (nbytes <= 0)
  429. return 0;
  430. if (!access_ok(VERIFY_WRITE, buf, nbytes))
  431. return -EFAULT;
  432. /* enumerate busses */
  433. down (&usb_bus_list_lock);
  434. for (buslist = usb_bus_list.next; buslist != &usb_bus_list; buslist = buslist->next) {
  435. /* print devices for this bus */
  436. bus = list_entry(buslist, struct usb_bus, bus_list);
  437. /* recurse through all children of the root hub */
  438. ret = usb_device_dump(&buf, &nbytes, &skip_bytes, ppos, bus->root_hub, bus, 0, 0, 0);
  439. if (ret < 0)
  440. return ret;
  441. total_written += ret;
  442. }
  443. up (&usb_bus_list_lock);
  444. return total_written;
  445. }
  446. /* Kernel lock for "lastev" protection */
  447. static unsigned int usb_device_poll(struct file *file, struct poll_table_struct *wait)
  448. {
  449. struct usb_device_status *st = (struct usb_device_status *)file->private_data;
  450. unsigned int mask = 0;
  451. lock_kernel();
  452. if (!st) {
  453. st = kmalloc(sizeof(struct usb_device_status), GFP_KERNEL);
  454. if (!st) {
  455. unlock_kernel();
  456. return POLLIN;
  457. }
  458. /*
  459.  * need to prevent the module from being unloaded, since
  460.  * proc_unregister does not call the release method and
  461.  * we would have a memory leak
  462.  */
  463. st->lastev = conndiscevcnt;
  464. file->private_data = st;
  465. mask = POLLIN;
  466. }
  467. if (file->f_mode & FMODE_READ)
  468.                 poll_wait(file, &deviceconndiscwq, wait);
  469. if (st->lastev != conndiscevcnt)
  470. mask |= POLLIN;
  471. st->lastev = conndiscevcnt;
  472. unlock_kernel();
  473. return mask;
  474. }
  475. static int usb_device_open(struct inode *inode, struct file *file)
  476. {
  477.         file->private_data = NULL;
  478.         return 0;
  479. }
  480. static int usb_device_release(struct inode *inode, struct file *file)
  481. {
  482. if (file->private_data) {
  483. kfree(file->private_data);
  484. file->private_data = NULL;
  485. }
  486.         return 0;
  487. }
  488. static loff_t usb_device_lseek(struct file * file, loff_t offset, int orig)
  489. {
  490. switch (orig) {
  491. case 0:
  492. file->f_pos = offset;
  493. return file->f_pos;
  494. case 1:
  495. file->f_pos += offset;
  496. return file->f_pos;
  497. case 2:
  498. return -EINVAL;
  499. default:
  500. return -EINVAL;
  501. }
  502. }
  503. struct file_operations usbdevfs_devices_fops = {
  504. llseek: usb_device_lseek,
  505. read: usb_device_read,
  506. poll: usb_device_poll,
  507. open: usb_device_open,
  508. release: usb_device_release,
  509. };