devices.c 19.1 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
/*
 * devices.c
 * (C) Copyright 1999 Randy Dunlap.
 * (C) Copyright 1999,2000 Thomas Sailer <sailer@ife.ee.ethz.ch>. (proc file per device)
 * (C) Copyright 1999 Deti Fliegl (new USB architecture)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 *************************************************************
 *
 * <mountpoint>/devices contains USB topology, device, config, class,
 * interface, & endpoint data.
 *
 * I considered using /proc/bus/usb/devices/device# for each device
 * as it is attached or detached, but I didn't like this for some
 * reason -- maybe it's just too deep of a directory structure.
 * I also don't like looking in multiple places to gather and view
 * the data.  Having only one file for ./devices also prevents race
 * conditions that could arise if a program was reading device info
 * for devices that are being removed (unplugged).  (That is, the
 * program may find a directory for devnum_12 then try to open it,
 * but it was just unplugged, so the directory is now deleted.
 * But programs would just have to be prepared for situations like
 * this in any plug-and-play environment.)
 *
 * 1999-12-16: Thomas Sailer <sailer@ife.ee.ethz.ch>
 *   Converted the whole proc stuff to real
 *   read methods. Now not the whole device list needs to fit
 *   into one page, only the device list for one bus.
 *   Added a poll method to /proc/bus/usb/devices, to wake
 *   up an eventual usbd
 * 2000-01-04: Thomas Sailer <sailer@ife.ee.ethz.ch>
 *   Turned into its own filesystem
 * 2000-07-05: Ashley Montanaro <ashley@compsoc.man.ac.uk>
 *   Converted file reading routine to dump to buffer once
 *   per device, not per bus
 */

#include <linux/fs.h>
#include <linux/mm.h>
#include <linux/slab.h>
#include <linux/poll.h>
#include <linux/usb.h>
#include <linux/smp_lock.h>
#include <linux/usbdevice_fs.h>
58
#include <linux/mutex.h>
L
Linus Torvalds 已提交
59 60
#include <asm/uaccess.h>

61
#include "usb.h"
L
Linus Torvalds 已提交
62 63 64 65 66
#include "hcd.h"

/* Define ALLOW_SERIAL_NUMBER if you want to see the serial number of devices */
#define ALLOW_SERIAL_NUMBER

67
static const char *format_topo =
L
Linus Torvalds 已提交
68 69 70
/* T:  Bus=dd Lev=dd Prnt=dd Port=dd Cnt=dd Dev#=ddd Spd=ddd MxCh=dd */
"\nT:  Bus=%2.2d Lev=%2.2d Prnt=%2.2d Port=%2.2d Cnt=%2.2d Dev#=%3d Spd=%3s MxCh=%2d\n";

71
static const char *format_string_manufacturer =
L
Linus Torvalds 已提交
72 73 74
/* S:  Manufacturer=xxxx */
  "S:  Manufacturer=%.100s\n";

75
static const char *format_string_product =
L
Linus Torvalds 已提交
76 77 78 79
/* S:  Product=xxxx */
  "S:  Product=%.100s\n";

#ifdef ALLOW_SERIAL_NUMBER
80
static const char *format_string_serialnumber =
L
Linus Torvalds 已提交
81 82 83 84
/* S:  SerialNumber=xxxx */
  "S:  SerialNumber=%.100s\n";
#endif

85
static const char *format_bandwidth =
L
Linus Torvalds 已提交
86 87
/* B:  Alloc=ddd/ddd us (xx%), #Int=ddd, #Iso=ddd */
  "B:  Alloc=%3d/%3d us (%2d%%), #Int=%3d, #Iso=%3d\n";
88

89
static const char *format_device1 =
L
Linus Torvalds 已提交
90 91 92
/* D:  Ver=xx.xx Cls=xx(sssss) Sub=xx Prot=xx MxPS=dd #Cfgs=dd */
  "D:  Ver=%2x.%02x Cls=%02x(%-5s) Sub=%02x Prot=%02x MxPS=%2d #Cfgs=%3d\n";

93
static const char *format_device2 =
L
Linus Torvalds 已提交
94 95 96
/* P:  Vendor=xxxx ProdID=xxxx Rev=xx.xx */
  "P:  Vendor=%04x ProdID=%04x Rev=%2x.%02x\n";

97
static const char *format_config =
L
Linus Torvalds 已提交
98 99
/* C:  #Ifs=dd Cfg#=dd Atr=xx MPwr=dddmA */
  "C:%c #Ifs=%2d Cfg#=%2d Atr=%02x MxPwr=%3dmA\n";
100

101 102 103 104
static const char *format_iad =
/* A:  FirstIf#=dd IfCount=dd Cls=xx(sssss) Sub=xx Prot=xx */
  "A:  FirstIf#=%2d IfCount=%2d Cls=%02x(%-5s) Sub=%02x Prot=%02x\n";

105
static const char *format_iface =
L
Linus Torvalds 已提交
106
/* I:  If#=dd Alt=dd #EPs=dd Cls=xx(sssss) Sub=xx Prot=xx Driver=xxxx*/
107
  "I:%c If#=%2d Alt=%2d #EPs=%2d Cls=%02x(%-5s) Sub=%02x Prot=%02x Driver=%s\n";
L
Linus Torvalds 已提交
108

109
static const char *format_endpt =
L
Linus Torvalds 已提交
110 111 112 113 114 115 116 117 118 119 120
/* E:  Ad=xx(s) Atr=xx(ssss) MxPS=dddd Ivl=D?s */
  "E:  Ad=%02x(%c) Atr=%02x(%-4s) MxPS=%4d Ivl=%d%cs\n";


/*
 * Need access to the driver and USB bus lists.
 * extern struct list_head usb_bus_list;
 * However, these will come from functions that return ptrs to each of them.
 */

static DECLARE_WAIT_QUEUE_HEAD(deviceconndiscwq);
121
static unsigned int conndiscevcnt;
L
Linus Torvalds 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139

/* this struct stores the poll state for <mountpoint>/devices pollers */
struct usb_device_status {
	unsigned int lastev;
};

struct class_info {
	int class;
	char *class_name;
};

static const struct class_info clas_info[] =
{					/* max. 5 chars. per name string */
	{USB_CLASS_PER_INTERFACE,	">ifc"},
	{USB_CLASS_AUDIO,		"audio"},
	{USB_CLASS_COMM,		"comm."},
	{USB_CLASS_HID,			"HID"},
	{USB_CLASS_PHYSICAL,		"PID"},
140
	{USB_CLASS_STILL_IMAGE,		"still"},
L
Linus Torvalds 已提交
141 142
	{USB_CLASS_PRINTER,		"print"},
	{USB_CLASS_MASS_STORAGE,	"stor."},
143
	{USB_CLASS_HUB,			"hub"},
L
Linus Torvalds 已提交
144 145 146
	{USB_CLASS_CDC_DATA,		"data"},
	{USB_CLASS_CSCID,		"scard"},
	{USB_CLASS_CONTENT_SEC,		"c-sec"},
147
	{USB_CLASS_VIDEO,		"video"},
148 149 150 151
	{USB_CLASS_WIRELESS_CONTROLLER,	"wlcon"},
	{USB_CLASS_MISC,		"misc"},
	{USB_CLASS_APP_SPEC,		"app."},
	{USB_CLASS_VENDOR_SPEC,		"vend."},
L
Linus Torvalds 已提交
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
	{-1,				"unk."}		/* leave as last */
};

/*****************************************************************/

void usbfs_conn_disc_event(void)
{
	conndiscevcnt++;
	wake_up(&deviceconndiscwq);
}

static const char *class_decode(const int class)
{
	int ix;

	for (ix = 0; clas_info[ix].class != -1; ix++)
		if (clas_info[ix].class == class)
			break;
170
	return clas_info[ix].class_name;
L
Linus Torvalds 已提交
171 172
}

173 174
static char *usb_dump_endpoint_descriptor(int speed, char *start, char *end,
				const struct usb_endpoint_descriptor *desc)
L
Linus Torvalds 已提交
175 176
{
	char dir, unit, *type;
177
	unsigned interval, bandwidth = 1;
L
Linus Torvalds 已提交
178 179 180

	if (start > end)
		return start;
181 182 183

	dir = usb_endpoint_dir_in(desc) ? 'I' : 'O';

L
Linus Torvalds 已提交
184 185 186 187 188 189 190 191
	if (speed == USB_SPEED_HIGH) {
		switch (le16_to_cpu(desc->wMaxPacketSize) & (0x03 << 11)) {
		case 1 << 11:	bandwidth = 2; break;
		case 2 << 11:	bandwidth = 3; break;
		}
	}

	/* this isn't checking for illegal values */
192
	switch (usb_endpoint_type(desc)) {
L
Linus Torvalds 已提交
193 194 195 196 197 198 199 200 201 202 203 204 205 206
	case USB_ENDPOINT_XFER_CONTROL:
		type = "Ctrl";
		if (speed == USB_SPEED_HIGH) 	/* uframes per NAK */
			interval = desc->bInterval;
		else
			interval = 0;
		dir = 'B';			/* ctrl is bidirectional */
		break;
	case USB_ENDPOINT_XFER_ISOC:
		type = "Isoc";
		interval = 1 << (desc->bInterval - 1);
		break;
	case USB_ENDPOINT_XFER_BULK:
		type = "Bulk";
207
		if (speed == USB_SPEED_HIGH && dir == 'O') /* uframes per NAK */
L
Linus Torvalds 已提交
208 209 210 211 212 213
			interval = desc->bInterval;
		else
			interval = 0;
		break;
	case USB_ENDPOINT_XFER_INT:
		type = "Int.";
214
		if (speed == USB_SPEED_HIGH)
L
Linus Torvalds 已提交
215
			interval = 1 << (desc->bInterval - 1);
216
		else
L
Linus Torvalds 已提交
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
			interval = desc->bInterval;
		break;
	default:	/* "can't happen" */
		return start;
	}
	interval *= (speed == USB_SPEED_HIGH) ? 125 : 1000;
	if (interval % 1000)
		unit = 'u';
	else {
		unit = 'm';
		interval /= 1000;
	}

	start += sprintf(start, format_endpt, desc->bEndpointAddress, dir,
			 desc->bmAttributes, type,
232 233
			 (le16_to_cpu(desc->wMaxPacketSize) & 0x07ff) *
			 bandwidth,
L
Linus Torvalds 已提交
234 235 236 237 238
			 interval, unit);
	return start;
}

static char *usb_dump_interface_descriptor(char *start, char *end,
239 240 241
					const struct usb_interface_cache *intfc,
					const struct usb_interface *iface,
					int setno)
L
Linus Torvalds 已提交
242
{
243
	const struct usb_interface_descriptor *desc;
244
	const char *driver_name = "";
245
	int active = 0;
L
Linus Torvalds 已提交
246 247 248

	if (start > end)
		return start;
249
	desc = &intfc->altsetting[setno].desc;
250
	if (iface) {
L
Linus Torvalds 已提交
251 252 253
		driver_name = (iface->dev.driver
				? iface->dev.driver->name
				: "(none)");
254 255
		active = (desc == &iface->cur_altsetting->desc);
	}
L
Linus Torvalds 已提交
256
	start += sprintf(start, format_iface,
257
			 active ? '*' : ' ',	/* mark active altsetting */
L
Linus Torvalds 已提交
258 259 260 261 262 263 264 265 266 267 268
			 desc->bInterfaceNumber,
			 desc->bAlternateSetting,
			 desc->bNumEndpoints,
			 desc->bInterfaceClass,
			 class_decode(desc->bInterfaceClass),
			 desc->bInterfaceSubClass,
			 desc->bInterfaceProtocol,
			 driver_name);
	return start;
}

269 270 271 272
static char *usb_dump_interface(int speed, char *start, char *end,
				const struct usb_interface_cache *intfc,
				const struct usb_interface *iface, int setno)
{
L
Linus Torvalds 已提交
273 274 275 276 277 278 279 280 281 282 283 284 285
	const struct usb_host_interface *desc = &intfc->altsetting[setno];
	int i;

	start = usb_dump_interface_descriptor(start, end, intfc, iface, setno);
	for (i = 0; i < desc->desc.bNumEndpoints; i++) {
		if (start > end)
			return start;
		start = usb_dump_endpoint_descriptor(speed,
				start, end, &desc->endpoint[i].desc);
	}
	return start;
}

286
static char *usb_dump_iad_descriptor(char *start, char *end,
287
			const struct usb_interface_assoc_descriptor *iad)
288 289 290 291 292 293 294 295 296 297 298 299 300
{
	if (start > end)
		return start;
	start += sprintf(start, format_iad,
			 iad->bFirstInterface,
			 iad->bInterfaceCount,
			 iad->bFunctionClass,
			 class_decode(iad->bFunctionClass),
			 iad->bFunctionSubClass,
			 iad->bFunctionProtocol);
	return start;
}

L
Linus Torvalds 已提交
301 302 303 304 305
/* TBD:
 * 0. TBDs
 * 1. marking active interface altsettings (code lists all, but should mark
 *    which ones are active, if any)
 */
306 307 308
static char *usb_dump_config_descriptor(char *start, char *end,
				const struct usb_config_descriptor *desc,
				int active)
L
Linus Torvalds 已提交
309 310 311 312
{
	if (start > end)
		return start;
	start += sprintf(start, format_config,
313 314
			 /* mark active/actual/current cfg. */
			 active ? '*' : ' ',
L
Linus Torvalds 已提交
315 316 317 318 319 320 321
			 desc->bNumInterfaces,
			 desc->bConfigurationValue,
			 desc->bmAttributes,
			 desc->bMaxPower * 2);
	return start;
}

322 323
static char *usb_dump_config(int speed, char *start, char *end,
			     const struct usb_host_config *config, int active)
L
Linus Torvalds 已提交
324 325 326 327 328 329 330
{
	int i, j;
	struct usb_interface_cache *intfc;
	struct usb_interface *interface;

	if (start > end)
		return start;
331 332
	if (!config)
		/* getting these some in 2.3.7; none in 2.3.6 */
L
Linus Torvalds 已提交
333 334
		return start + sprintf(start, "(null Cfg. desc.)\n");
	start = usb_dump_config_descriptor(start, end, &config->desc, active);
335 336 337 338 339 340
	for (i = 0; i < USB_MAXIADS; i++) {
		if (config->intf_assoc[i] == NULL)
			break;
		start = usb_dump_iad_descriptor(start, end,
					config->intf_assoc[i]);
	}
L
Linus Torvalds 已提交
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
	for (i = 0; i < config->desc.bNumInterfaces; i++) {
		intfc = config->intf_cache[i];
		interface = config->interface[i];
		for (j = 0; j < intfc->num_altsetting; j++) {
			if (start > end)
				return start;
			start = usb_dump_interface(speed,
				start, end, intfc, interface, j);
		}
	}
	return start;
}

/*
 * Dump the different USB descriptors.
 */
357 358
static char *usb_dump_device_descriptor(char *start, char *end,
				const struct usb_device_descriptor *desc)
L
Linus Torvalds 已提交
359 360 361 362 363 364
{
	u16 bcdUSB = le16_to_cpu(desc->bcdUSB);
	u16 bcdDevice = le16_to_cpu(desc->bcdDevice);

	if (start > end)
		return start;
365
	start += sprintf(start, format_device1,
L
Linus Torvalds 已提交
366 367
			  bcdUSB >> 8, bcdUSB & 0xff,
			  desc->bDeviceClass,
368
			  class_decode(desc->bDeviceClass),
L
Linus Torvalds 已提交
369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
			  desc->bDeviceSubClass,
			  desc->bDeviceProtocol,
			  desc->bMaxPacketSize0,
			  desc->bNumConfigurations);
	if (start > end)
		return start;
	start += sprintf(start, format_device2,
			 le16_to_cpu(desc->idVendor),
			 le16_to_cpu(desc->idProduct),
			 bcdDevice >> 8, bcdDevice & 0xff);
	return start;
}

/*
 * Dump the different strings that this device holds.
 */
385 386
static char *usb_dump_device_strings(char *start, char *end,
				     struct usb_device *dev)
L
Linus Torvalds 已提交
387 388 389 390
{
	if (start > end)
		return start;
	if (dev->manufacturer)
391 392
		start += sprintf(start, format_string_manufacturer,
				 dev->manufacturer);
L
Linus Torvalds 已提交
393 394 395 396 397 398 399 400
	if (start > end)
		goto out;
	if (dev->product)
		start += sprintf(start, format_string_product, dev->product);
	if (start > end)
		goto out;
#ifdef ALLOW_SERIAL_NUMBER
	if (dev->serial)
401 402
		start += sprintf(start, format_string_serialnumber,
				 dev->serial);
L
Linus Torvalds 已提交
403 404 405 406 407 408 409 410 411 412 413
#endif
 out:
	return start;
}

static char *usb_dump_desc(char *start, char *end, struct usb_device *dev)
{
	int i;

	if (start > end)
		return start;
414

L
Linus Torvalds 已提交
415 416 417 418
	start = usb_dump_device_descriptor(start, end, &dev->descriptor);

	if (start > end)
		return start;
419

420
	start = usb_dump_device_strings(start, end, dev);
L
Linus Torvalds 已提交
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435

	for (i = 0; i < dev->descriptor.bNumConfigurations; i++) {
		if (start > end)
			return start;
		start = usb_dump_config(dev->speed,
				start, end, dev->config + i,
				/* active ? */
				(dev->config + i) == dev->actconfig);
	}
	return start;
}


#ifdef PROC_EXTRA /* TBD: may want to add this code later */

436 437
static char *usb_dump_hub_descriptor(char *start, char *end,
				     const struct usb_hub_descriptor *desc)
L
Linus Torvalds 已提交
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
{
	int leng = USB_DT_HUB_NONVAR_SIZE;
	unsigned char *ptr = (unsigned char *)desc;

	if (start > end)
		return start;
	start += sprintf(start, "Interface:");
	while (leng && start <= end) {
		start += sprintf(start, " %02x", *ptr);
		ptr++; leng--;
	}
	*start++ = '\n';
	return start;
}

453 454
static char *usb_dump_string(char *start, char *end,
			     const struct usb_device *dev, char *id, int index)
L
Linus Torvalds 已提交
455 456 457 458
{
	if (start > end)
		return start;
	start += sprintf(start, "Interface:");
459 460 461 462
	if (index <= dev->maxstring && dev->stringindex &&
	    dev->stringindex[index])
		start += sprintf(start, "%s: %.100s ", id,
				 dev->stringindex[index]);
L
Linus Torvalds 已提交
463 464 465 466 467 468 469 470 471 472 473 474 475 476
	return start;
}

#endif /* PROC_EXTRA */

/*****************************************************************/

/* This is a recursive function. Parameters:
 * buffer - the user-space buffer to write data into
 * nbytes - the maximum number of bytes to write
 * skip_bytes - the number of bytes to skip before writing anything
 * file_offset - the offset into the devices file on completion
 * The caller must own the device lock.
 */
477 478 479 480
static ssize_t usb_device_dump(char __user **buffer, size_t *nbytes,
			       loff_t *skip_bytes, loff_t *file_offset,
			       struct usb_device *usbdev, struct usb_bus *bus,
			       int level, int index, int count)
L
Linus Torvalds 已提交
481 482 483 484 485 486 487
{
	int chix;
	int ret, cnt = 0;
	int parent_devnum = 0;
	char *pages_start, *data_end, *speed;
	unsigned int length;
	ssize_t total_written = 0;
488

L
Linus Torvalds 已提交
489 490 491
	/* don't bother with anything else if we're not writing any data */
	if (*nbytes <= 0)
		return 0;
492

L
Linus Torvalds 已提交
493 494
	if (level > MAX_TOPO_LEVEL)
		return 0;
495 496 497 498 499 500
	/* allocate 2^1 pages = 8K (on i386);
	 * should be more than enough for one device */
	pages_start = (char *)__get_free_pages(GFP_KERNEL, 1);
	if (!pages_start)
		return -ENOMEM;

L
Linus Torvalds 已提交
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
	if (usbdev->parent && usbdev->parent->devnum != -1)
		parent_devnum = usbdev->parent->devnum;
	/*
	 * So the root hub's parent is 0 and any device that is
	 * plugged into the root hub has a parent of 0.
	 */
	switch (usbdev->speed) {
	case USB_SPEED_LOW:
		speed = "1.5"; break;
	case USB_SPEED_UNKNOWN:		/* usb 1.1 root hub code */
	case USB_SPEED_FULL:
		speed = "12 "; break;
	case USB_SPEED_HIGH:
		speed = "480"; break;
	default:
		speed = "?? ";
	}
	data_end = pages_start + sprintf(pages_start, format_topo,
			bus->busnum, level, parent_devnum,
			index, count, usbdev->devnum,
			speed, usbdev->maxchild);
	/*
	 * level = topology-tier level;
	 * parent_devnum = parent device number;
	 * index = parent's connector number;
	 * count = device count at this level
	 */
	/* If this is the root hub, display the bandwidth information */
	if (level == 0) {
		int	max;

		/* high speed reserves 80%, full/low reserves 90% */
		if (usbdev->speed == USB_SPEED_HIGH)
			max = 800;
		else
			max = FRAME_TIME_MAX_USECS_ALLOC;

		/* report "average" periodic allocation over a microsecond.
		 * the schedules are actually bursty, HCDs need to deal with
		 * that and just compute/report this average.
		 */
		data_end += sprintf(data_end, format_bandwidth,
				bus->bandwidth_allocated, max,
				(100 * bus->bandwidth_allocated + max / 2)
					/ max,
546 547 548
				bus->bandwidth_int_reqs,
				bus->bandwidth_isoc_reqs);

L
Linus Torvalds 已提交
549
	}
550 551 552
	data_end = usb_dump_desc(data_end, pages_start + (2 * PAGE_SIZE) - 256,
				 usbdev);

L
Linus Torvalds 已提交
553 554
	if (data_end > (pages_start + (2 * PAGE_SIZE) - 256))
		data_end += sprintf(data_end, "(truncated)\n");
555

L
Linus Torvalds 已提交
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572
	length = data_end - pages_start;
	/* if we can start copying some data to the user */
	if (length > *skip_bytes) {
		length -= *skip_bytes;
		if (length > *nbytes)
			length = *nbytes;
		if (copy_to_user(*buffer, pages_start + *skip_bytes, length)) {
			free_pages((unsigned long)pages_start, 1);
			return -EFAULT;
		}
		*nbytes -= length;
		*file_offset += length;
		total_written += length;
		*buffer += length;
		*skip_bytes = 0;
	} else
		*skip_bytes -= length;
573

L
Linus Torvalds 已提交
574
	free_pages((unsigned long)pages_start, 1);
575

L
Linus Torvalds 已提交
576 577 578 579 580
	/* Now look at all of this device's children. */
	for (chix = 0; chix < usbdev->maxchild; chix++) {
		struct usb_device *childdev = usbdev->children[chix];

		if (childdev) {
581
			usb_lock_device(childdev);
582 583 584
			ret = usb_device_dump(buffer, nbytes, skip_bytes,
					      file_offset, childdev, bus,
					      level + 1, chix, ++cnt);
585
			usb_unlock_device(childdev);
L
Linus Torvalds 已提交
586 587 588 589 590 591 592 593
			if (ret == -EFAULT)
				return total_written;
			total_written += ret;
		}
	}
	return total_written;
}

594 595
static ssize_t usb_device_read(struct file *file, char __user *buf,
			       size_t nbytes, loff_t *ppos)
L
Linus Torvalds 已提交
596 597 598 599 600 601 602 603 604 605 606 607
{
	struct usb_bus *bus;
	ssize_t ret, total_written = 0;
	loff_t skip_bytes = *ppos;

	if (*ppos < 0)
		return -EINVAL;
	if (nbytes <= 0)
		return 0;
	if (!access_ok(VERIFY_WRITE, buf, nbytes))
		return -EFAULT;

608
	mutex_lock(&usb_bus_list_lock);
L
Linus Torvalds 已提交
609 610 611 612 613 614
	/* print devices for all busses */
	list_for_each_entry(bus, &usb_bus_list, bus_list) {
		/* recurse through all children of the root hub */
		if (!bus->root_hub)
			continue;
		usb_lock_device(bus->root_hub);
615 616
		ret = usb_device_dump(&buf, &nbytes, &skip_bytes, ppos,
				      bus->root_hub, bus, 0, 0, 0);
L
Linus Torvalds 已提交
617 618
		usb_unlock_device(bus->root_hub);
		if (ret < 0) {
619
			mutex_unlock(&usb_bus_list_lock);
L
Linus Torvalds 已提交
620 621 622 623
			return ret;
		}
		total_written += ret;
	}
624
	mutex_unlock(&usb_bus_list_lock);
L
Linus Torvalds 已提交
625 626 627 628
	return total_written;
}

/* Kernel lock for "lastev" protection */
629 630
static unsigned int usb_device_poll(struct file *file,
				    struct poll_table_struct *wait)
L
Linus Torvalds 已提交
631
{
632
	struct usb_device_status *st = file->private_data;
L
Linus Torvalds 已提交
633 634 635 636 637
	unsigned int mask = 0;

	lock_kernel();
	if (!st) {
		st = kmalloc(sizeof(struct usb_device_status), GFP_KERNEL);
638

639 640
		/* we may have dropped BKL -
		 * need to check for having lost the race */
L
Linus Torvalds 已提交
641 642 643 644 645
		if (file->private_data) {
			kfree(st);
			st = file->private_data;
			goto lost_race;
		}
646 647 648 649 650
		/* we haven't lost - check for allocation failure now */
		if (!st) {
			unlock_kernel();
			return POLLIN;
		}
L
Linus Torvalds 已提交
651 652 653 654 655 656 657 658 659 660 661 662

		/*
		 * need to prevent the module from being unloaded, since
		 * proc_unregister does not call the release method and
		 * we would have a memory leak
		 */
		st->lastev = conndiscevcnt;
		file->private_data = st;
		mask = POLLIN;
	}
lost_race:
	if (file->f_mode & FMODE_READ)
663
		poll_wait(file, &deviceconndiscwq, wait);
L
Linus Torvalds 已提交
664 665 666 667 668 669 670 671 672
	if (st->lastev != conndiscevcnt)
		mask |= POLLIN;
	st->lastev = conndiscevcnt;
	unlock_kernel();
	return mask;
}

static int usb_device_open(struct inode *inode, struct file *file)
{
673 674
	file->private_data = NULL;
	return 0;
L
Linus Torvalds 已提交
675 676 677 678
}

static int usb_device_release(struct inode *inode, struct file *file)
{
679 680
	kfree(file->private_data);
	file->private_data = NULL;
681
	return 0;
L
Linus Torvalds 已提交
682 683
}

684
static loff_t usb_device_lseek(struct file *file, loff_t offset, int orig)
L
Linus Torvalds 已提交
685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707
{
	loff_t ret;

	lock_kernel();

	switch (orig) {
	case 0:
		file->f_pos = offset;
		ret = file->f_pos;
		break;
	case 1:
		file->f_pos += offset;
		ret = file->f_pos;
		break;
	case 2:
	default:
		ret = -EINVAL;
	}

	unlock_kernel();
	return ret;
}

708
const struct file_operations usbfs_devices_fops = {
L
Linus Torvalds 已提交
709 710 711 712 713 714
	.llseek =	usb_device_lseek,
	.read =		usb_device_read,
	.poll =		usb_device_poll,
	.open =		usb_device_open,
	.release =	usb_device_release,
};