1 /* $FreeBSD$ */ 2 /*- 3 * Copyright (c) 2006-2008 Hans Petter Selasky. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 * 26 * 27 * usb2_dev.c - An abstraction layer for creating devices under /dev/... 28 */ 29 30 #include <dev/usb/usb.h> 31 #include <dev/usb/usb_ioctl.h> 32 #include <dev/usb/usb_defs.h> 33 #include <dev/usb/usb_mfunc.h> 34 #include <dev/usb/usb_error.h> 35 36 #define USB_DEBUG_VAR usb2_fifo_debug 37 38 #include <dev/usb/usb_core.h> 39 #include <dev/usb/usb_mbuf.h> 40 #include <dev/usb/usb_dev.h> 41 #include <dev/usb/usb_process.h> 42 #include <dev/usb/usb_device.h> 43 #include <dev/usb/usb_debug.h> 44 #include <dev/usb/usb_busdma.h> 45 #include <dev/usb/usb_generic.h> 46 #include <dev/usb/usb_dynamic.h> 47 #include <dev/usb/usb_util.h> 48 49 #include <dev/usb/usb_controller.h> 50 #include <dev/usb/usb_bus.h> 51 52 #include <sys/filio.h> 53 #include <sys/ttycom.h> 54 #include <sys/syscallsubr.h> 55 56 #include <machine/stdarg.h> 57 58 #if USB_DEBUG 59 static int usb2_fifo_debug = 0; 60 61 SYSCTL_NODE(_hw_usb2, OID_AUTO, dev, CTLFLAG_RW, 0, "USB device"); 62 SYSCTL_INT(_hw_usb2_dev, OID_AUTO, debug, CTLFLAG_RW, 63 &usb2_fifo_debug, 0, "Debug Level"); 64 #endif 65 66 #if ((__FreeBSD_version >= 700001) || (__FreeBSD_version == 0) || \ 67 ((__FreeBSD_version >= 600034) && (__FreeBSD_version < 700000))) 68 #define USB_UCRED struct ucred *ucred, 69 #else 70 #define USB_UCRED 71 #endif 72 73 /* prototypes */ 74 75 static uint32_t usb2_path_convert_one(const char **); 76 static uint32_t usb2_path_convert(const char *); 77 static int usb2_check_access(int, struct usb2_perm *); 78 static int usb2_fifo_open(struct usb2_fifo *, struct file *, 79 struct thread *, int); 80 static void usb2_fifo_close(struct usb2_fifo *, struct thread *, int); 81 static void usb2_dev_init(void *); 82 static void usb2_dev_init_post(void *); 83 static void usb2_dev_uninit(void *); 84 static int usb2_fifo_uiomove(struct usb2_fifo *, void *, int, 85 struct uio *); 86 static void usb2_fifo_check_methods(struct usb2_fifo_methods *); 87 static void usb2_clone(void *, USB_UCRED char *, int, struct cdev **); 88 static struct usb2_fifo *usb2_fifo_alloc(void); 89 static struct usb2_pipe *usb2_dev_get_pipe(struct usb2_device *, uint8_t, 90 uint8_t, uint8_t); 91 92 static d_fdopen_t usb2_fdopen; 93 static d_close_t usb2_close; 94 static d_ioctl_t usb2_ioctl; 95 96 static fo_rdwr_t usb2_read_f; 97 static fo_rdwr_t usb2_write_f; 98 99 #if __FreeBSD_version > 800009 100 static fo_truncate_t usb2_truncate_f; 101 102 #endif 103 static fo_ioctl_t usb2_ioctl_f; 104 static fo_poll_t usb2_poll_f; 105 static fo_kqfilter_t usb2_kqfilter_f; 106 static fo_stat_t usb2_stat_f; 107 static fo_close_t usb2_close_f; 108 109 static usb2_fifo_open_t usb2_fifo_dummy_open; 110 static usb2_fifo_close_t usb2_fifo_dummy_close; 111 static usb2_fifo_ioctl_t usb2_fifo_dummy_ioctl; 112 static usb2_fifo_cmd_t usb2_fifo_dummy_cmd; 113 114 static struct usb2_perm usb2_perm = { 115 .uid = UID_ROOT, 116 .gid = GID_OPERATOR, 117 .mode = 0660, 118 }; 119 120 static struct cdevsw usb2_devsw = { 121 .d_version = D_VERSION, 122 .d_fdopen = usb2_fdopen, 123 .d_close = usb2_close, 124 .d_ioctl = usb2_ioctl, 125 .d_name = "usb", 126 .d_flags = D_TRACKCLOSE, 127 }; 128 129 static struct fileops usb2_ops_f = { 130 .fo_read = usb2_read_f, 131 .fo_write = usb2_write_f, 132 #if __FreeBSD_version > 800009 133 .fo_truncate = usb2_truncate_f, 134 #endif 135 .fo_ioctl = usb2_ioctl_f, 136 .fo_poll = usb2_poll_f, 137 .fo_kqfilter = usb2_kqfilter_f, 138 .fo_stat = usb2_stat_f, 139 .fo_close = usb2_close_f, 140 .fo_flags = DFLAG_PASSABLE | DFLAG_SEEKABLE 141 }; 142 143 static const dev_clone_fn usb2_clone_ptr = &usb2_clone; 144 static struct cdev *usb2_dev; 145 static uint32_t usb2_last_devloc = 0 - 1; 146 static eventhandler_tag usb2_clone_tag; 147 static void *usb2_old_f_data; 148 static struct fileops *usb2_old_f_ops; 149 static TAILQ_HEAD(, usb2_symlink) usb2_sym_head; 150 static struct sx usb2_sym_lock; 151 152 struct mtx usb2_ref_lock; 153 154 static uint32_t 155 usb2_path_convert_one(const char **pp) 156 { 157 const char *ptr; 158 uint32_t temp = 0; 159 160 ptr = *pp; 161 162 while ((*ptr >= '0') && (*ptr <= '9')) { 163 temp *= 10; 164 temp += (*ptr - '0'); 165 if (temp >= 1000000) { 166 /* catch overflow early */ 167 return (0 - 1); 168 } 169 ptr++; 170 } 171 172 if (*ptr == '.') { 173 /* skip dot */ 174 ptr++; 175 } 176 *pp = ptr; 177 178 return (temp); 179 } 180 181 /*------------------------------------------------------------------------* 182 * usb2_path_convert 183 * 184 * Path format: "/dev/usb<bus>.<dev>.<iface>.<fifo>" 185 * 186 * Returns: Path converted into numerical format. 187 *------------------------------------------------------------------------*/ 188 static uint32_t 189 usb2_path_convert(const char *path) 190 { 191 uint32_t temp; 192 uint32_t devloc; 193 194 devloc = 0; 195 196 temp = usb2_path_convert_one(&path); 197 198 if (temp >= USB_BUS_MAX) { 199 return (0 - 1); 200 } 201 devloc += temp; 202 203 temp = usb2_path_convert_one(&path); 204 205 if (temp >= USB_DEV_MAX) { 206 return (0 - 1); 207 } 208 devloc += (temp * USB_BUS_MAX); 209 210 temp = usb2_path_convert_one(&path); 211 212 if (temp >= USB_IFACE_MAX) { 213 return (0 - 1); 214 } 215 devloc += (temp * USB_DEV_MAX * USB_BUS_MAX); 216 217 temp = usb2_path_convert_one(&path); 218 219 if (temp >= ((USB_FIFO_MAX / 2) + (USB_EP_MAX / 2))) { 220 return (0 - 1); 221 } 222 devloc += (temp * USB_IFACE_MAX * USB_DEV_MAX * USB_BUS_MAX); 223 224 return (devloc); 225 } 226 227 /*------------------------------------------------------------------------* 228 * usb2_set_iface_perm 229 * 230 * This function will set the interface permissions. 231 *------------------------------------------------------------------------*/ 232 void 233 usb2_set_iface_perm(struct usb2_device *udev, uint8_t iface_index, 234 uint32_t uid, uint32_t gid, uint16_t mode) 235 { 236 struct usb2_interface *iface; 237 238 iface = usb2_get_iface(udev, iface_index); 239 if (iface && iface->idesc) { 240 mtx_lock(&usb2_ref_lock); 241 iface->perm.uid = uid; 242 iface->perm.gid = gid; 243 iface->perm.mode = mode; 244 mtx_unlock(&usb2_ref_lock); 245 246 } 247 } 248 249 /*------------------------------------------------------------------------* 250 * usb2_set_perm 251 * 252 * This function will set the permissions at the given level. 253 * 254 * Return values: 255 * 0: Success. 256 * Else: Failure. 257 *------------------------------------------------------------------------*/ 258 static int 259 usb2_set_perm(struct usb2_dev_perm *psrc, uint8_t level) 260 { 261 struct usb2_location loc; 262 struct usb2_perm *pdst; 263 uint32_t devloc; 264 int error; 265 266 /* check if the current thread can change USB permissions. */ 267 error = priv_check(curthread, PRIV_ROOT); 268 if (error) { 269 return (error); 270 } 271 /* range check device location */ 272 if ((psrc->bus_index >= USB_BUS_MAX) || 273 (psrc->dev_index >= USB_DEV_MAX) || 274 (psrc->iface_index >= USB_IFACE_MAX)) { 275 return (EINVAL); 276 } 277 if (level == 1) 278 devloc = USB_BUS_MAX; /* use root-HUB to access bus */ 279 else 280 devloc = 0; 281 switch (level) { 282 case 3: 283 devloc += psrc->iface_index * 284 USB_DEV_MAX * USB_BUS_MAX; 285 /* FALLTHROUGH */ 286 case 2: 287 devloc += psrc->dev_index * 288 USB_BUS_MAX; 289 /* FALLTHROUGH */ 290 case 1: 291 devloc += psrc->bus_index; 292 break; 293 default: 294 break; 295 } 296 297 if ((level > 0) && (level < 4)) { 298 error = usb2_ref_device(NULL, &loc, devloc); 299 if (error) { 300 return (error); 301 } 302 } 303 switch (level) { 304 case 3: 305 if (loc.iface == NULL) { 306 usb2_unref_device(&loc); 307 return (EINVAL); 308 } 309 pdst = &loc.iface->perm; 310 break; 311 case 2: 312 pdst = &loc.udev->perm; 313 break; 314 case 1: 315 pdst = &loc.bus->perm; 316 break; 317 default: 318 pdst = &usb2_perm; 319 break; 320 } 321 322 /* all permissions are protected by "usb2_ref_lock" */ 323 mtx_lock(&usb2_ref_lock); 324 pdst->uid = psrc->user_id; 325 pdst->gid = psrc->group_id; 326 pdst->mode = psrc->mode; 327 mtx_unlock(&usb2_ref_lock); 328 329 if ((level > 0) && (level < 4)) { 330 usb2_unref_device(&loc); 331 } 332 return (0); /* success */ 333 } 334 335 /*------------------------------------------------------------------------* 336 * usb2_get_perm 337 * 338 * This function will get the permissions at the given level. 339 * 340 * Return values: 341 * 0: Success. 342 * Else: Failure. 343 *------------------------------------------------------------------------*/ 344 static int 345 usb2_get_perm(struct usb2_dev_perm *pdst, uint8_t level) 346 { 347 struct usb2_location loc; 348 struct usb2_perm *psrc; 349 uint32_t devloc; 350 int error; 351 352 if ((pdst->bus_index >= USB_BUS_MAX) || 353 (pdst->dev_index >= USB_DEV_MAX) || 354 (pdst->iface_index >= USB_IFACE_MAX)) { 355 return (EINVAL); 356 } 357 if (level == 1) 358 devloc = USB_BUS_MAX; /* use root-HUB to access bus */ 359 else 360 devloc = 0; 361 switch (level) { 362 case 3: 363 devloc += pdst->iface_index * 364 USB_DEV_MAX * USB_BUS_MAX; 365 /* FALLTHROUGH */ 366 case 2: 367 devloc += pdst->dev_index * 368 USB_BUS_MAX; 369 /* FALLTHROUGH */ 370 case 1: 371 devloc += pdst->bus_index; 372 break; 373 default: 374 break; 375 } 376 377 if ((level > 0) && (level < 4)) { 378 error = usb2_ref_device(NULL, &loc, devloc); 379 if (error) { 380 return (error); 381 } 382 } 383 switch (level) { 384 case 3: 385 if (loc.iface == NULL) { 386 usb2_unref_device(&loc); 387 return (EINVAL); 388 } 389 psrc = &loc.iface->perm; 390 break; 391 case 2: 392 psrc = &loc.udev->perm; 393 break; 394 case 1: 395 psrc = &loc.bus->perm; 396 break; 397 default: 398 psrc = &usb2_perm; 399 break; 400 } 401 402 /* all permissions are protected by "usb2_ref_lock" */ 403 mtx_lock(&usb2_ref_lock); 404 if (psrc->mode != 0) { 405 pdst->user_id = psrc->uid; 406 pdst->group_id = psrc->gid; 407 pdst->mode = psrc->mode; 408 } else { 409 /* access entry at this level and location is not active */ 410 pdst->user_id = 0; 411 pdst->group_id = 0; 412 pdst->mode = 0; 413 } 414 mtx_unlock(&usb2_ref_lock); 415 416 if ((level > 0) && (level < 4)) { 417 usb2_unref_device(&loc); 418 } 419 return (0); 420 } 421 422 /*------------------------------------------------------------------------* 423 * usb2_check_access 424 * 425 * This function will verify the given access information. 426 * 427 * Return values: 428 * 0: Access granted. 429 * Else: No access granted. 430 *------------------------------------------------------------------------*/ 431 static int 432 usb2_check_access(int fflags, struct usb2_perm *puser) 433 { 434 mode_t accmode; 435 436 if ((fflags & (FWRITE | FREAD)) && (puser->mode != 0)) { 437 /* continue */ 438 } else { 439 return (EPERM); /* no access */ 440 } 441 442 accmode = 0; 443 if (fflags & FWRITE) 444 accmode |= VWRITE; 445 if (fflags & FREAD) 446 accmode |= VREAD; 447 448 return (vaccess(VCHR, puser->mode, puser->uid, 449 puser->gid, accmode, curthread->td_ucred, NULL)); 450 } 451 452 /*------------------------------------------------------------------------* 453 * usb2_ref_device 454 * 455 * This function is used to atomically refer an USB device by its 456 * device location. If this function returns success the USB device 457 * will not dissappear until the USB device is unreferenced. 458 * 459 * Return values: 460 * 0: Success, refcount incremented on the given USB device. 461 * Else: Failure. 462 *------------------------------------------------------------------------*/ 463 usb2_error_t 464 usb2_ref_device(struct file *fp, struct usb2_location *ploc, uint32_t devloc) 465 { 466 struct usb2_fifo **ppf; 467 struct usb2_fifo *f; 468 int fflags; 469 uint8_t dev_ep_index; 470 471 if (fp) { 472 /* check if we need uref */ 473 ploc->is_uref = devloc ? 0 : 1; 474 /* get devloc - already verified */ 475 devloc = USB_P2U(fp->f_data); 476 /* get file flags */ 477 fflags = fp->f_flag; 478 } else { 479 /* only ref device */ 480 fflags = 0; 481 /* search for FIFO */ 482 ploc->is_uref = 1; 483 /* check "devloc" */ 484 if (devloc >= (USB_BUS_MAX * USB_DEV_MAX * 485 USB_IFACE_MAX * ((USB_EP_MAX / 2) + (USB_FIFO_MAX / 2)))) { 486 return (USB_ERR_INVAL); 487 } 488 } 489 490 /* store device location */ 491 ploc->devloc = devloc; 492 ploc->bus_index = devloc % USB_BUS_MAX; 493 ploc->dev_index = (devloc / USB_BUS_MAX) % USB_DEV_MAX; 494 ploc->iface_index = (devloc / (USB_BUS_MAX * 495 USB_DEV_MAX)) % USB_IFACE_MAX; 496 ploc->fifo_index = (devloc / (USB_BUS_MAX * USB_DEV_MAX * 497 USB_IFACE_MAX)); 498 499 mtx_lock(&usb2_ref_lock); 500 ploc->bus = devclass_get_softc(usb2_devclass_ptr, ploc->bus_index); 501 if (ploc->bus == NULL) { 502 DPRINTFN(2, "no bus at %u\n", ploc->bus_index); 503 goto error; 504 } 505 if (ploc->dev_index >= ploc->bus->devices_max) { 506 DPRINTFN(2, "invalid dev index, %u\n", ploc->dev_index); 507 goto error; 508 } 509 ploc->udev = ploc->bus->devices[ploc->dev_index]; 510 if (ploc->udev == NULL) { 511 DPRINTFN(2, "no device at %u\n", ploc->dev_index); 512 goto error; 513 } 514 if (ploc->udev->refcount == USB_DEV_REF_MAX) { 515 DPRINTFN(2, "no dev ref\n"); 516 goto error; 517 } 518 /* check if we are doing an open */ 519 if (fp == NULL) { 520 /* set defaults */ 521 ploc->txfifo = NULL; 522 ploc->rxfifo = NULL; 523 ploc->is_write = 0; 524 ploc->is_read = 0; 525 ploc->is_usbfs = 0; 526 /* NOTE: variable overloading: */ 527 dev_ep_index = ploc->fifo_index; 528 } else { 529 /* initialise "is_usbfs" flag */ 530 ploc->is_usbfs = 0; 531 dev_ep_index = 255; /* dummy */ 532 533 /* check for write */ 534 if (fflags & FWRITE) { 535 ppf = ploc->udev->fifo; 536 f = ppf[ploc->fifo_index + USB_FIFO_TX]; 537 ploc->txfifo = f; 538 ploc->is_write = 1; /* ref */ 539 if ((f == NULL) || 540 (f->refcount == USB_FIFO_REF_MAX) || 541 (f->curr_file != fp)) { 542 goto error; 543 } 544 /* check if USB-FS is active */ 545 if (f->fs_ep_max != 0) { 546 ploc->is_usbfs = 1; 547 } 548 /* 549 * Get real endpoint index associated with 550 * this FIFO: 551 */ 552 dev_ep_index = f->dev_ep_index; 553 } else { 554 ploc->txfifo = NULL; 555 ploc->is_write = 0; /* no ref */ 556 } 557 558 /* check for read */ 559 if (fflags & FREAD) { 560 ppf = ploc->udev->fifo; 561 f = ppf[ploc->fifo_index + USB_FIFO_RX]; 562 ploc->rxfifo = f; 563 ploc->is_read = 1; /* ref */ 564 if ((f == NULL) || 565 (f->refcount == USB_FIFO_REF_MAX) || 566 (f->curr_file != fp)) { 567 goto error; 568 } 569 /* check if USB-FS is active */ 570 if (f->fs_ep_max != 0) { 571 ploc->is_usbfs = 1; 572 } 573 /* 574 * Get real endpoint index associated with 575 * this FIFO: 576 */ 577 dev_ep_index = f->dev_ep_index; 578 } else { 579 ploc->rxfifo = NULL; 580 ploc->is_read = 0; /* no ref */ 581 } 582 } 583 584 /* check if we require an interface */ 585 ploc->iface = usb2_get_iface(ploc->udev, ploc->iface_index); 586 if (dev_ep_index != 0) { 587 /* non control endpoint - we need an interface */ 588 if (ploc->iface == NULL) { 589 DPRINTFN(2, "no iface\n"); 590 goto error; 591 } 592 if (ploc->iface->idesc == NULL) { 593 DPRINTFN(2, "no idesc\n"); 594 goto error; 595 } 596 } 597 /* when everything is OK we increment the refcounts */ 598 if (ploc->is_write) { 599 DPRINTFN(2, "ref write\n"); 600 ploc->txfifo->refcount++; 601 } 602 if (ploc->is_read) { 603 DPRINTFN(2, "ref read\n"); 604 ploc->rxfifo->refcount++; 605 } 606 if (ploc->is_uref) { 607 DPRINTFN(2, "ref udev - needed\n"); 608 ploc->udev->refcount++; 609 } 610 mtx_unlock(&usb2_ref_lock); 611 612 if (ploc->is_uref) { 613 /* 614 * We are about to alter the bus-state. Apply the 615 * required locks. 616 */ 617 sx_xlock(ploc->udev->default_sx + 1); 618 mtx_lock(&Giant); /* XXX */ 619 } 620 return (0); 621 622 error: 623 mtx_unlock(&usb2_ref_lock); 624 DPRINTFN(2, "fail\n"); 625 return (USB_ERR_INVAL); 626 } 627 628 /*------------------------------------------------------------------------* 629 * usb2_uref_location 630 * 631 * This function is used to upgrade an USB reference to include the 632 * USB device reference on a USB location. 633 * 634 * Return values: 635 * 0: Success, refcount incremented on the given USB device. 636 * Else: Failure. 637 *------------------------------------------------------------------------*/ 638 static usb2_error_t 639 usb2_uref_location(struct usb2_location *ploc) 640 { 641 /* 642 * Check if we already got an USB reference on this location: 643 */ 644 if (ploc->is_uref) { 645 return (0); /* success */ 646 } 647 mtx_lock(&usb2_ref_lock); 648 if (ploc->bus != devclass_get_softc(usb2_devclass_ptr, ploc->bus_index)) { 649 DPRINTFN(2, "bus changed at %u\n", ploc->bus_index); 650 goto error; 651 } 652 if (ploc->udev != ploc->bus->devices[ploc->dev_index]) { 653 DPRINTFN(2, "device changed at %u\n", ploc->dev_index); 654 goto error; 655 } 656 if (ploc->udev->refcount == USB_DEV_REF_MAX) { 657 DPRINTFN(2, "no dev ref\n"); 658 goto error; 659 } 660 DPRINTFN(2, "ref udev\n"); 661 ploc->udev->refcount++; 662 mtx_unlock(&usb2_ref_lock); 663 664 /* set "uref" */ 665 ploc->is_uref = 1; 666 667 /* 668 * We are about to alter the bus-state. Apply the 669 * required locks. 670 */ 671 sx_xlock(ploc->udev->default_sx + 1); 672 mtx_lock(&Giant); /* XXX */ 673 return (0); 674 675 error: 676 mtx_unlock(&usb2_ref_lock); 677 DPRINTFN(2, "fail\n"); 678 return (USB_ERR_INVAL); 679 } 680 681 /*------------------------------------------------------------------------* 682 * usb2_unref_device 683 * 684 * This function will release the reference count by one unit for the 685 * given USB device. 686 *------------------------------------------------------------------------*/ 687 void 688 usb2_unref_device(struct usb2_location *ploc) 689 { 690 if (ploc->is_uref) { 691 mtx_unlock(&Giant); /* XXX */ 692 sx_unlock(ploc->udev->default_sx + 1); 693 } 694 mtx_lock(&usb2_ref_lock); 695 if (ploc->is_read) { 696 if (--(ploc->rxfifo->refcount) == 0) { 697 usb2_cv_signal(&ploc->rxfifo->cv_drain); 698 } 699 } 700 if (ploc->is_write) { 701 if (--(ploc->txfifo->refcount) == 0) { 702 usb2_cv_signal(&ploc->txfifo->cv_drain); 703 } 704 } 705 if (ploc->is_uref) { 706 if (--(ploc->udev->refcount) == 0) { 707 usb2_cv_signal(ploc->udev->default_cv + 1); 708 } 709 } 710 mtx_unlock(&usb2_ref_lock); 711 } 712 713 static struct usb2_fifo * 714 usb2_fifo_alloc(void) 715 { 716 struct usb2_fifo *f; 717 718 f = malloc(sizeof(*f), M_USBDEV, M_WAITOK | M_ZERO); 719 if (f) { 720 usb2_cv_init(&f->cv_io, "FIFO-IO"); 721 usb2_cv_init(&f->cv_drain, "FIFO-DRAIN"); 722 f->refcount = 1; 723 } 724 return (f); 725 } 726 727 /*------------------------------------------------------------------------* 728 * usb2_fifo_create 729 *------------------------------------------------------------------------*/ 730 static int 731 usb2_fifo_create(struct usb2_location *ploc, uint32_t *pdevloc, int fflags) 732 { 733 struct usb2_device *udev = ploc->udev; 734 struct usb2_fifo *f; 735 struct usb2_pipe *pipe; 736 uint8_t iface_index = ploc->iface_index; 737 738 /* NOTE: variable overloading: */ 739 uint8_t dev_ep_index = ploc->fifo_index; 740 uint8_t n; 741 uint8_t is_tx; 742 uint8_t is_rx; 743 uint8_t no_null; 744 uint8_t is_busy; 745 746 is_tx = (fflags & FWRITE) ? 1 : 0; 747 is_rx = (fflags & FREAD) ? 1 : 0; 748 no_null = 1; 749 is_busy = 0; 750 751 /* search for a free FIFO slot */ 752 753 for (n = 0;; n += 2) { 754 755 if (n == USB_FIFO_MAX) { 756 if (no_null) { 757 no_null = 0; 758 n = 0; 759 } else { 760 /* end of FIFOs reached */ 761 return (ENOMEM); 762 } 763 } 764 /* Check for TX FIFO */ 765 if (is_tx) { 766 f = udev->fifo[n + USB_FIFO_TX]; 767 if (f != NULL) { 768 if (f->dev_ep_index != dev_ep_index) { 769 /* wrong endpoint index */ 770 continue; 771 } 772 if ((dev_ep_index != 0) && 773 (f->iface_index != iface_index)) { 774 /* wrong interface index */ 775 continue; 776 } 777 if (f->curr_file != NULL) { 778 /* FIFO is opened */ 779 is_busy = 1; 780 continue; 781 } 782 } else if (no_null) { 783 continue; 784 } 785 } 786 /* Check for RX FIFO */ 787 if (is_rx) { 788 f = udev->fifo[n + USB_FIFO_RX]; 789 if (f != NULL) { 790 if (f->dev_ep_index != dev_ep_index) { 791 /* wrong endpoint index */ 792 continue; 793 } 794 if ((dev_ep_index != 0) && 795 (f->iface_index != iface_index)) { 796 /* wrong interface index */ 797 continue; 798 } 799 if (f->curr_file != NULL) { 800 /* FIFO is opened */ 801 is_busy = 1; 802 continue; 803 } 804 } else if (no_null) { 805 continue; 806 } 807 } 808 break; 809 } 810 811 if (no_null == 0) { 812 if (dev_ep_index >= (USB_EP_MAX / 2)) { 813 /* we don't create any endpoints in this range */ 814 return (is_busy ? EBUSY : EINVAL); 815 } 816 } 817 /* Check TX FIFO */ 818 if (is_tx && 819 (udev->fifo[n + USB_FIFO_TX] == NULL)) { 820 pipe = usb2_dev_get_pipe(udev, 821 iface_index, dev_ep_index, USB_FIFO_TX); 822 if (pipe == NULL) { 823 return (EINVAL); 824 } 825 f = usb2_fifo_alloc(); 826 if (f == NULL) { 827 return (ENOMEM); 828 } 829 /* update some fields */ 830 f->fifo_index = n + USB_FIFO_TX; 831 f->dev_ep_index = dev_ep_index; 832 f->priv_mtx = udev->default_mtx; 833 f->priv_sc0 = pipe; 834 f->methods = &usb2_ugen_methods; 835 f->iface_index = iface_index; 836 f->udev = udev; 837 mtx_lock(&usb2_ref_lock); 838 udev->fifo[n + USB_FIFO_TX] = f; 839 mtx_unlock(&usb2_ref_lock); 840 } 841 /* Check RX FIFO */ 842 if (is_rx && 843 (udev->fifo[n + USB_FIFO_RX] == NULL)) { 844 845 pipe = usb2_dev_get_pipe(udev, 846 iface_index, dev_ep_index, USB_FIFO_RX); 847 if (pipe == NULL) { 848 return (EINVAL); 849 } 850 f = usb2_fifo_alloc(); 851 if (f == NULL) { 852 return (ENOMEM); 853 } 854 /* update some fields */ 855 f->fifo_index = n + USB_FIFO_RX; 856 f->dev_ep_index = dev_ep_index; 857 f->priv_mtx = udev->default_mtx; 858 f->priv_sc0 = pipe; 859 f->methods = &usb2_ugen_methods; 860 f->iface_index = iface_index; 861 f->udev = udev; 862 mtx_lock(&usb2_ref_lock); 863 udev->fifo[n + USB_FIFO_RX] = f; 864 mtx_unlock(&usb2_ref_lock); 865 } 866 if (is_tx) { 867 ploc->txfifo = udev->fifo[n + USB_FIFO_TX]; 868 } 869 if (is_rx) { 870 ploc->rxfifo = udev->fifo[n + USB_FIFO_RX]; 871 } 872 /* replace endpoint index by FIFO index */ 873 874 (*pdevloc) %= (USB_BUS_MAX * USB_DEV_MAX * USB_IFACE_MAX); 875 (*pdevloc) += (USB_BUS_MAX * USB_DEV_MAX * USB_IFACE_MAX) * n; 876 877 /* complete */ 878 879 return (0); 880 } 881 882 void 883 usb2_fifo_free(struct usb2_fifo *f) 884 { 885 uint8_t n; 886 887 if (f == NULL) { 888 /* be NULL safe */ 889 return; 890 } 891 /* destroy symlink devices, if any */ 892 for (n = 0; n != 2; n++) { 893 if (f->symlink[n]) { 894 usb2_free_symlink(f->symlink[n]); 895 f->symlink[n] = NULL; 896 } 897 } 898 mtx_lock(&usb2_ref_lock); 899 900 /* delink ourselves to stop calls from userland */ 901 if ((f->fifo_index < USB_FIFO_MAX) && 902 (f->udev != NULL) && 903 (f->udev->fifo[f->fifo_index] == f)) { 904 f->udev->fifo[f->fifo_index] = NULL; 905 } else { 906 DPRINTFN(0, "USB FIFO %p has not been linked!\n", f); 907 } 908 909 /* decrease refcount */ 910 f->refcount--; 911 /* prevent any write flush */ 912 f->flag_iserror = 1; 913 /* need to wait until all callers have exited */ 914 while (f->refcount != 0) { 915 mtx_unlock(&usb2_ref_lock); /* avoid LOR */ 916 mtx_lock(f->priv_mtx); 917 /* get I/O thread out of any sleep state */ 918 if (f->flag_sleeping) { 919 f->flag_sleeping = 0; 920 usb2_cv_broadcast(&f->cv_io); 921 } 922 mtx_unlock(f->priv_mtx); 923 mtx_lock(&usb2_ref_lock); 924 925 /* wait for sync */ 926 usb2_cv_wait(&f->cv_drain, &usb2_ref_lock); 927 } 928 mtx_unlock(&usb2_ref_lock); 929 930 /* take care of closing the device here, if any */ 931 usb2_fifo_close(f, curthread, 0); 932 933 usb2_cv_destroy(&f->cv_io); 934 usb2_cv_destroy(&f->cv_drain); 935 936 free(f, M_USBDEV); 937 } 938 939 static struct usb2_pipe * 940 usb2_dev_get_pipe(struct usb2_device *udev, 941 uint8_t iface_index, uint8_t ep_index, uint8_t dir) 942 { 943 struct usb2_pipe *pipe; 944 uint8_t ep_dir; 945 946 if (ep_index == 0) { 947 pipe = &udev->default_pipe; 948 } else { 949 if (dir == USB_FIFO_RX) { 950 if (udev->flags.usb2_mode == USB_MODE_HOST) { 951 ep_dir = UE_DIR_IN; 952 } else { 953 ep_dir = UE_DIR_OUT; 954 } 955 } else { 956 if (udev->flags.usb2_mode == USB_MODE_HOST) { 957 ep_dir = UE_DIR_OUT; 958 } else { 959 ep_dir = UE_DIR_IN; 960 } 961 } 962 pipe = usb2_get_pipe_by_addr(udev, ep_index | ep_dir); 963 } 964 965 if (pipe == NULL) { 966 /* if the pipe does not exist then return */ 967 return (NULL); 968 } 969 if (pipe->edesc == NULL) { 970 /* invalid pipe */ 971 return (NULL); 972 } 973 if (ep_index != 0) { 974 if (pipe->iface_index != iface_index) { 975 /* 976 * Permissions violation - trying to access a 977 * pipe that does not belong to the interface. 978 */ 979 return (NULL); 980 } 981 } 982 return (pipe); /* success */ 983 } 984 985 /*------------------------------------------------------------------------* 986 * usb2_fifo_open 987 * 988 * Returns: 989 * 0: Success 990 * Else: Failure 991 *------------------------------------------------------------------------*/ 992 static int 993 usb2_fifo_open(struct usb2_fifo *f, struct file *fp, struct thread *td, 994 int fflags) 995 { 996 int err; 997 998 if (f == NULL) { 999 /* no FIFO there */ 1000 DPRINTFN(2, "no FIFO\n"); 1001 return (ENXIO); 1002 } 1003 /* remove FWRITE and FREAD flags */ 1004 fflags &= ~(FWRITE | FREAD); 1005 1006 /* set correct file flags */ 1007 if ((f->fifo_index & 1) == USB_FIFO_TX) { 1008 fflags |= FWRITE; 1009 } else { 1010 fflags |= FREAD; 1011 } 1012 1013 /* check if we are already opened */ 1014 /* we don't need any locks when checking this variable */ 1015 if (f->curr_file) { 1016 err = EBUSY; 1017 goto done; 1018 } 1019 /* call open method */ 1020 err = (f->methods->f_open) (f, fflags, td); 1021 if (err) { 1022 goto done; 1023 } 1024 mtx_lock(f->priv_mtx); 1025 1026 /* reset sleep flag */ 1027 f->flag_sleeping = 0; 1028 1029 /* reset error flag */ 1030 f->flag_iserror = 0; 1031 1032 /* reset complete flag */ 1033 f->flag_iscomplete = 0; 1034 1035 /* reset select flag */ 1036 f->flag_isselect = 0; 1037 1038 /* reset flushing flag */ 1039 f->flag_flushing = 0; 1040 1041 /* reset ASYNC proc flag */ 1042 f->async_p = NULL; 1043 1044 /* set which file we belong to */ 1045 mtx_lock(&usb2_ref_lock); 1046 f->curr_file = fp; 1047 mtx_unlock(&usb2_ref_lock); 1048 1049 /* reset queue */ 1050 usb2_fifo_reset(f); 1051 1052 mtx_unlock(f->priv_mtx); 1053 done: 1054 return (err); 1055 } 1056 1057 /*------------------------------------------------------------------------* 1058 * usb2_fifo_reset 1059 *------------------------------------------------------------------------*/ 1060 void 1061 usb2_fifo_reset(struct usb2_fifo *f) 1062 { 1063 struct usb2_mbuf *m; 1064 1065 if (f == NULL) { 1066 return; 1067 } 1068 while (1) { 1069 USB_IF_DEQUEUE(&f->used_q, m); 1070 if (m) { 1071 USB_IF_ENQUEUE(&f->free_q, m); 1072 } else { 1073 break; 1074 } 1075 } 1076 } 1077 1078 /*------------------------------------------------------------------------* 1079 * usb2_fifo_close 1080 *------------------------------------------------------------------------*/ 1081 static void 1082 usb2_fifo_close(struct usb2_fifo *f, struct thread *td, int fflags) 1083 { 1084 int err; 1085 1086 /* check if we are not opened */ 1087 if (!f->curr_file) { 1088 /* nothing to do - already closed */ 1089 return; 1090 } 1091 mtx_lock(f->priv_mtx); 1092 1093 /* clear current file flag */ 1094 f->curr_file = NULL; 1095 1096 /* check if we are selected */ 1097 if (f->flag_isselect) { 1098 selwakeup(&f->selinfo); 1099 f->flag_isselect = 0; 1100 } 1101 /* check if a thread wants SIGIO */ 1102 if (f->async_p != NULL) { 1103 PROC_LOCK(f->async_p); 1104 psignal(f->async_p, SIGIO); 1105 PROC_UNLOCK(f->async_p); 1106 f->async_p = NULL; 1107 } 1108 /* remove FWRITE and FREAD flags */ 1109 fflags &= ~(FWRITE | FREAD); 1110 1111 /* flush written data, if any */ 1112 if ((f->fifo_index & 1) == USB_FIFO_TX) { 1113 1114 if (!f->flag_iserror) { 1115 1116 /* set flushing flag */ 1117 f->flag_flushing = 1; 1118 1119 /* start write transfer, if not already started */ 1120 (f->methods->f_start_write) (f); 1121 1122 /* check if flushed already */ 1123 while (f->flag_flushing && 1124 (!f->flag_iserror)) { 1125 /* wait until all data has been written */ 1126 f->flag_sleeping = 1; 1127 err = usb2_cv_wait_sig(&f->cv_io, f->priv_mtx); 1128 if (err) { 1129 DPRINTF("signal received\n"); 1130 break; 1131 } 1132 } 1133 } 1134 fflags |= FWRITE; 1135 1136 /* stop write transfer, if not already stopped */ 1137 (f->methods->f_stop_write) (f); 1138 } else { 1139 fflags |= FREAD; 1140 1141 /* stop write transfer, if not already stopped */ 1142 (f->methods->f_stop_read) (f); 1143 } 1144 1145 /* check if we are sleeping */ 1146 if (f->flag_sleeping) { 1147 DPRINTFN(2, "Sleeping at close!\n"); 1148 } 1149 mtx_unlock(f->priv_mtx); 1150 1151 /* call close method */ 1152 (f->methods->f_close) (f, fflags, td); 1153 1154 DPRINTF("closed\n"); 1155 } 1156 1157 /*------------------------------------------------------------------------* 1158 * usb2_check_thread_perm 1159 * 1160 * Returns: 1161 * 0: Has permission. 1162 * Else: No permission. 1163 *------------------------------------------------------------------------*/ 1164 int 1165 usb2_check_thread_perm(struct usb2_device *udev, struct thread *td, 1166 int fflags, uint8_t iface_index, uint8_t ep_index) 1167 { 1168 struct usb2_interface *iface; 1169 int err; 1170 1171 if (ep_index != 0) { 1172 /* 1173 * Non-control endpoints are always 1174 * associated with an interface: 1175 */ 1176 iface = usb2_get_iface(udev, iface_index); 1177 if (iface == NULL) { 1178 return (EINVAL); 1179 } 1180 if (iface->idesc == NULL) { 1181 return (EINVAL); 1182 } 1183 } else { 1184 iface = NULL; 1185 } 1186 /* scan down the permissions tree */ 1187 if ((iface != NULL) && 1188 (usb2_check_access(fflags, &iface->perm) == 0)) { 1189 /* we got access through the interface */ 1190 err = 0; 1191 } else if (udev && 1192 (usb2_check_access(fflags, &udev->perm) == 0)) { 1193 /* we got access through the device */ 1194 err = 0; 1195 } else if (udev->bus && 1196 (usb2_check_access(fflags, &udev->bus->perm) == 0)) { 1197 /* we got access through the USB bus */ 1198 err = 0; 1199 } else if (usb2_check_access(fflags, &usb2_perm) == 0) { 1200 /* we got general access */ 1201 err = 0; 1202 } else { 1203 /* no access */ 1204 err = EPERM; 1205 } 1206 return (err); 1207 } 1208 1209 /*------------------------------------------------------------------------* 1210 * usb2_fdopen - cdev callback 1211 *------------------------------------------------------------------------*/ 1212 static int 1213 usb2_fdopen(struct cdev *dev, int xxx_oflags, struct thread *td, 1214 struct file *fp) 1215 { 1216 struct usb2_location loc; 1217 uint32_t devloc; 1218 int err; 1219 int fflags; 1220 1221 DPRINTFN(2, "oflags=0x%08x\n", xxx_oflags); 1222 1223 devloc = usb2_last_devloc; 1224 usb2_last_devloc = (0 - 1); /* reset "usb2_last_devloc" */ 1225 1226 if (fp == NULL) { 1227 DPRINTFN(2, "fp == NULL\n"); 1228 return (ENXIO); 1229 } 1230 if (usb2_old_f_data != fp->f_data) { 1231 if (usb2_old_f_data != NULL) { 1232 DPRINTFN(0, "File data mismatch!\n"); 1233 return (ENXIO); 1234 } 1235 usb2_old_f_data = fp->f_data; 1236 } 1237 if (usb2_old_f_ops != fp->f_ops) { 1238 if (usb2_old_f_ops != NULL) { 1239 DPRINTFN(0, "File ops mismatch!\n"); 1240 return (ENXIO); 1241 } 1242 usb2_old_f_ops = fp->f_ops; 1243 } 1244 fflags = fp->f_flag; 1245 DPRINTFN(2, "fflags=0x%08x\n", fflags); 1246 1247 if (!(fflags & (FREAD | FWRITE))) { 1248 /* should not happen */ 1249 return (EPERM); 1250 } 1251 if (devloc == (uint32_t)(0 - 2)) { 1252 /* tried to open "/dev/usb" */ 1253 return (0); 1254 } else if (devloc == (uint32_t)(0 - 1)) { 1255 /* tried to open "/dev/usb " */ 1256 DPRINTFN(2, "no devloc\n"); 1257 return (ENXIO); 1258 } 1259 err = usb2_ref_device(NULL, &loc, devloc); 1260 if (err) { 1261 DPRINTFN(2, "cannot ref device\n"); 1262 return (ENXIO); 1263 } 1264 /* 1265 * NOTE: Variable overloading. "usb2_fifo_create" will update 1266 * the FIFO index. Right here we can assume that the 1267 * "fifo_index" is the same like the endpoint number without 1268 * direction mask, if the "fifo_index" is less than 16. 1269 */ 1270 err = usb2_check_thread_perm(loc.udev, td, fflags, 1271 loc.iface_index, loc.fifo_index); 1272 1273 /* check for error */ 1274 if (err) { 1275 usb2_unref_device(&loc); 1276 return (err); 1277 } 1278 /* create FIFOs, if any */ 1279 err = usb2_fifo_create(&loc, &devloc, fflags); 1280 /* check for error */ 1281 if (err) { 1282 usb2_unref_device(&loc); 1283 return (err); 1284 } 1285 if (fflags & FREAD) { 1286 err = usb2_fifo_open(loc.rxfifo, fp, td, fflags); 1287 if (err) { 1288 DPRINTFN(2, "read open failed\n"); 1289 usb2_unref_device(&loc); 1290 return (err); 1291 } 1292 } 1293 if (fflags & FWRITE) { 1294 err = usb2_fifo_open(loc.txfifo, fp, td, fflags); 1295 if (err) { 1296 DPRINTFN(2, "write open failed\n"); 1297 if (fflags & FREAD) { 1298 usb2_fifo_close(loc.rxfifo, td, 1299 fflags); 1300 } 1301 usb2_unref_device(&loc); 1302 return (err); 1303 } 1304 } 1305 /* 1306 * Take over the file so that we get all the callbacks 1307 * directly and don't have to create another device: 1308 */ 1309 finit(fp, fp->f_flag, DTYPE_VNODE, 1310 ((uint8_t *)0) + devloc, &usb2_ops_f); 1311 1312 usb2_unref_device(&loc); 1313 1314 DPRINTFN(2, "error=%d\n", err); 1315 1316 return (err); 1317 } 1318 1319 /*------------------------------------------------------------------------* 1320 * usb2_close - cdev callback 1321 *------------------------------------------------------------------------*/ 1322 static int 1323 usb2_close(struct cdev *dev, int flag, int mode, struct thread *p) 1324 { 1325 DPRINTF("\n"); 1326 return (0); /* nothing to do */ 1327 } 1328 1329 /*------------------------------------------------------------------------* 1330 * usb2_close - cdev callback 1331 *------------------------------------------------------------------------*/ 1332 static int 1333 usb2_ioctl(struct cdev *dev, u_long cmd, caddr_t data, 1334 int fflag, struct thread *td) 1335 { 1336 union { 1337 struct usb2_read_dir *urd; 1338 struct usb2_dev_perm *udp; 1339 void *data; 1340 } u; 1341 int err; 1342 1343 u.data = data; 1344 1345 err = 0; 1346 switch (cmd) { 1347 case USB_READ_DIR: 1348 err = usb2_read_symlink(u.urd->urd_data, 1349 u.urd->urd_startentry, u.urd->urd_maxlen); 1350 break; 1351 case USB_SET_IFACE_PERM: 1352 err = usb2_set_perm(u.udp, 3); 1353 break; 1354 case USB_SET_DEVICE_PERM: 1355 err = usb2_set_perm(u.udp, 2); 1356 break; 1357 case USB_SET_BUS_PERM: 1358 err = usb2_set_perm(u.udp, 1); 1359 break; 1360 case USB_SET_ROOT_PERM: 1361 err = usb2_set_perm(u.udp, 0); 1362 break; 1363 case USB_GET_IFACE_PERM: 1364 err = usb2_get_perm(u.udp, 3); 1365 break; 1366 case USB_GET_DEVICE_PERM: 1367 err = usb2_get_perm(u.udp, 2); 1368 break; 1369 case USB_GET_BUS_PERM: 1370 err = usb2_get_perm(u.udp, 1); 1371 break; 1372 case USB_GET_ROOT_PERM: 1373 err = usb2_get_perm(u.udp, 0); 1374 break; 1375 case USB_DEV_QUIRK_GET: 1376 case USB_QUIRK_NAME_GET: 1377 case USB_DEV_QUIRK_ADD: 1378 case USB_DEV_QUIRK_REMOVE: 1379 err = usb2_quirk_ioctl_p(cmd, data, fflag, td); 1380 break; 1381 case USB_GET_TEMPLATE: 1382 *(int *)data = usb2_template; 1383 break; 1384 case USB_SET_TEMPLATE: 1385 err = priv_check(curthread, PRIV_ROOT); 1386 if (err) 1387 break; 1388 usb2_template = *(int *)data; 1389 break; 1390 default: 1391 err = ENOTTY; 1392 break; 1393 } 1394 return (err); 1395 } 1396 1397 /*------------------------------------------------------------------------* 1398 * usb2_clone - cdev callback 1399 * 1400 * This function is the kernel clone callback for "/dev/usbX.Y". 1401 * 1402 * NOTE: This function assumes that the clone and device open 1403 * operation is atomic. 1404 *------------------------------------------------------------------------*/ 1405 static void 1406 usb2_clone(void *arg, USB_UCRED char *name, int namelen, struct cdev **dev) 1407 { 1408 enum { 1409 USB_DNAME_LEN = sizeof(USB_DEVICE_NAME) - 1, 1410 USB_GNAME_LEN = sizeof(USB_GENERIC_NAME) - 1, 1411 }; 1412 1413 if (*dev) { 1414 /* someone else has created a device */ 1415 return; 1416 } 1417 /* reset device location */ 1418 usb2_last_devloc = (uint32_t)(0 - 1); 1419 1420 /* 1421 * Check if we are matching "usb", "ugen" or an internal 1422 * symbolic link: 1423 */ 1424 if ((namelen >= USB_DNAME_LEN) && 1425 (bcmp(name, USB_DEVICE_NAME, USB_DNAME_LEN) == 0)) { 1426 if (namelen == USB_DNAME_LEN) { 1427 /* USB management device location */ 1428 usb2_last_devloc = (uint32_t)(0 - 2); 1429 } else { 1430 /* USB endpoint */ 1431 usb2_last_devloc = 1432 usb2_path_convert(name + USB_DNAME_LEN); 1433 } 1434 } else if ((namelen >= USB_GNAME_LEN) && 1435 (bcmp(name, USB_GENERIC_NAME, USB_GNAME_LEN) == 0)) { 1436 if (namelen == USB_GNAME_LEN) { 1437 /* USB management device location */ 1438 usb2_last_devloc = (uint32_t)(0 - 2); 1439 } else { 1440 /* USB endpoint */ 1441 usb2_last_devloc = 1442 usb2_path_convert(name + USB_GNAME_LEN); 1443 } 1444 } 1445 if (usb2_last_devloc == (uint32_t)(0 - 1)) { 1446 /* Search for symbolic link */ 1447 usb2_last_devloc = 1448 usb2_lookup_symlink(name, namelen); 1449 } 1450 if (usb2_last_devloc == (uint32_t)(0 - 1)) { 1451 /* invalid location */ 1452 return; 1453 } 1454 dev_ref(usb2_dev); 1455 *dev = usb2_dev; 1456 } 1457 1458 static void 1459 usb2_dev_init(void *arg) 1460 { 1461 mtx_init(&usb2_ref_lock, "USB ref mutex", NULL, MTX_DEF); 1462 sx_init(&usb2_sym_lock, "USB sym mutex"); 1463 TAILQ_INIT(&usb2_sym_head); 1464 1465 /* check the UGEN methods */ 1466 usb2_fifo_check_methods(&usb2_ugen_methods); 1467 } 1468 1469 SYSINIT(usb2_dev_init, SI_SUB_KLD, SI_ORDER_FIRST, usb2_dev_init, NULL); 1470 1471 static void 1472 usb2_dev_init_post(void *arg) 1473 { 1474 /* 1475 * Create a dummy device so that we are visible. This device 1476 * should never be opened. Therefore a space character is 1477 * appended after the USB device name. 1478 * 1479 * NOTE: The permissions of this device is 0666, because we 1480 * check the permissions again in the open routine against the 1481 * real USB permissions which are not 0666. Else USB access 1482 * will be limited to one user and one group. 1483 */ 1484 usb2_dev = make_dev(&usb2_devsw, 0, UID_ROOT, GID_OPERATOR, 1485 0666, USB_DEVICE_NAME " "); 1486 if (usb2_dev == NULL) { 1487 DPRINTFN(0, "Could not create usb bus device!\n"); 1488 } 1489 usb2_clone_tag = EVENTHANDLER_REGISTER(dev_clone, usb2_clone_ptr, NULL, 1000); 1490 if (usb2_clone_tag == NULL) { 1491 DPRINTFN(0, "Registering clone handler failed!\n"); 1492 } 1493 } 1494 1495 SYSINIT(usb2_dev_init_post, SI_SUB_KICK_SCHEDULER, SI_ORDER_FIRST, usb2_dev_init_post, NULL); 1496 1497 static void 1498 usb2_dev_uninit(void *arg) 1499 { 1500 if (usb2_clone_tag) { 1501 EVENTHANDLER_DEREGISTER(dev_clone, usb2_clone_tag); 1502 usb2_clone_tag = NULL; 1503 } 1504 if (usb2_dev) { 1505 destroy_dev(usb2_dev); 1506 usb2_dev = NULL; 1507 } 1508 mtx_destroy(&usb2_ref_lock); 1509 sx_destroy(&usb2_sym_lock); 1510 } 1511 1512 SYSUNINIT(usb2_dev_uninit, SI_SUB_KICK_SCHEDULER, SI_ORDER_ANY, usb2_dev_uninit, NULL); 1513 1514 static int 1515 usb2_close_f(struct file *fp, struct thread *td) 1516 { 1517 struct usb2_location loc; 1518 int fflags; 1519 int err; 1520 1521 fflags = fp->f_flag; 1522 1523 DPRINTFN(2, "fflags=%u\n", fflags); 1524 1525 err = usb2_ref_device(fp, &loc, 0 /* need uref */ );; 1526 1527 /* restore some file variables */ 1528 fp->f_ops = usb2_old_f_ops; 1529 fp->f_data = usb2_old_f_data; 1530 1531 /* check for error */ 1532 if (err) { 1533 DPRINTFN(2, "could not ref\n"); 1534 goto done; 1535 } 1536 if (fflags & FREAD) { 1537 usb2_fifo_close(loc.rxfifo, td, fflags); 1538 } 1539 if (fflags & FWRITE) { 1540 usb2_fifo_close(loc.txfifo, td, fflags); 1541 } 1542 usb2_unref_device(&loc); 1543 1544 done: 1545 /* call old close method */ 1546 USB_VNOPS_FO_CLOSE(fp, td, &err); 1547 1548 return (err); 1549 } 1550 1551 static int 1552 usb2_ioctl_f_sub(struct usb2_fifo *f, u_long cmd, void *addr, 1553 struct thread *td) 1554 { 1555 int error = 0; 1556 1557 switch (cmd) { 1558 case FIODTYPE: 1559 *(int *)addr = 0; /* character device */ 1560 break; 1561 1562 case FIONBIO: 1563 /* handled by upper FS layer */ 1564 break; 1565 1566 case FIOASYNC: 1567 if (*(int *)addr) { 1568 if (f->async_p != NULL) { 1569 error = EBUSY; 1570 break; 1571 } 1572 f->async_p = USB_TD_GET_PROC(td); 1573 } else { 1574 f->async_p = NULL; 1575 } 1576 break; 1577 1578 /* XXX this is not the most general solution */ 1579 case TIOCSPGRP: 1580 if (f->async_p == NULL) { 1581 error = EINVAL; 1582 break; 1583 } 1584 if (*(int *)addr != USB_PROC_GET_GID(f->async_p)) { 1585 error = EPERM; 1586 break; 1587 } 1588 break; 1589 default: 1590 return (ENOIOCTL); 1591 } 1592 return (error); 1593 } 1594 1595 static int 1596 usb2_ioctl_f(struct file *fp, u_long cmd, void *addr, 1597 struct ucred *cred, struct thread *td) 1598 { 1599 struct usb2_location loc; 1600 struct usb2_fifo *f; 1601 int fflags; 1602 int err; 1603 1604 err = usb2_ref_device(fp, &loc, 1 /* no uref */ );; 1605 if (err) { 1606 return (ENXIO); 1607 } 1608 fflags = fp->f_flag; 1609 1610 DPRINTFN(2, "fflags=%u, cmd=0x%lx\n", fflags, cmd); 1611 1612 f = NULL; /* set default value */ 1613 err = ENOIOCTL; /* set default value */ 1614 1615 if (fflags & FWRITE) { 1616 f = loc.txfifo; 1617 err = usb2_ioctl_f_sub(f, cmd, addr, td); 1618 } 1619 if (fflags & FREAD) { 1620 f = loc.rxfifo; 1621 err = usb2_ioctl_f_sub(f, cmd, addr, td); 1622 } 1623 if (err == ENOIOCTL) { 1624 err = (f->methods->f_ioctl) (f, cmd, addr, fflags, td); 1625 if (err == ENOIOCTL) { 1626 if (usb2_uref_location(&loc)) { 1627 err = ENXIO; 1628 goto done; 1629 } 1630 err = (f->methods->f_ioctl_post) (f, cmd, addr, fflags, td); 1631 } 1632 } 1633 if (err == ENOIOCTL) { 1634 err = ENOTTY; 1635 } 1636 done: 1637 usb2_unref_device(&loc); 1638 return (err); 1639 } 1640 1641 /* ARGSUSED */ 1642 static int 1643 usb2_kqfilter_f(struct file *fp, struct knote *kn) 1644 { 1645 return (ENXIO); 1646 } 1647 1648 /* ARGSUSED */ 1649 static int 1650 usb2_poll_f(struct file *fp, int events, 1651 struct ucred *cred, struct thread *td) 1652 { 1653 struct usb2_location loc; 1654 struct usb2_fifo *f; 1655 struct usb2_mbuf *m; 1656 int fflags; 1657 int revents; 1658 1659 revents = usb2_ref_device(fp, &loc, 1 /* no uref */ );; 1660 if (revents) { 1661 return (POLLHUP); 1662 } 1663 fflags = fp->f_flag; 1664 1665 /* Figure out who needs service */ 1666 1667 if ((events & (POLLOUT | POLLWRNORM)) && 1668 (fflags & FWRITE)) { 1669 1670 f = loc.txfifo; 1671 1672 mtx_lock(f->priv_mtx); 1673 1674 if (!loc.is_usbfs) { 1675 if (f->flag_iserror) { 1676 /* we got an error */ 1677 m = (void *)1; 1678 } else { 1679 if (f->queue_data == NULL) { 1680 /* 1681 * start write transfer, if not 1682 * already started 1683 */ 1684 (f->methods->f_start_write) (f); 1685 } 1686 /* check if any packets are available */ 1687 USB_IF_POLL(&f->free_q, m); 1688 } 1689 } else { 1690 if (f->flag_iscomplete) { 1691 m = (void *)1; 1692 } else { 1693 m = NULL; 1694 } 1695 } 1696 1697 if (m) { 1698 revents |= events & (POLLOUT | POLLWRNORM); 1699 } else { 1700 f->flag_isselect = 1; 1701 selrecord(td, &f->selinfo); 1702 } 1703 1704 mtx_unlock(f->priv_mtx); 1705 } 1706 if ((events & (POLLIN | POLLRDNORM)) && 1707 (fflags & FREAD)) { 1708 1709 f = loc.rxfifo; 1710 1711 mtx_lock(f->priv_mtx); 1712 1713 if (!loc.is_usbfs) { 1714 if (f->flag_iserror) { 1715 /* we have and error */ 1716 m = (void *)1; 1717 } else { 1718 if (f->queue_data == NULL) { 1719 /* 1720 * start read transfer, if not 1721 * already started 1722 */ 1723 (f->methods->f_start_read) (f); 1724 } 1725 /* check if any packets are available */ 1726 USB_IF_POLL(&f->used_q, m); 1727 } 1728 } else { 1729 if (f->flag_iscomplete) { 1730 m = (void *)1; 1731 } else { 1732 m = NULL; 1733 } 1734 } 1735 1736 if (m) { 1737 revents |= events & (POLLIN | POLLRDNORM); 1738 } else { 1739 f->flag_isselect = 1; 1740 selrecord(td, &f->selinfo); 1741 1742 if (!loc.is_usbfs) { 1743 /* start reading data */ 1744 (f->methods->f_start_read) (f); 1745 } 1746 } 1747 1748 mtx_unlock(f->priv_mtx); 1749 } 1750 usb2_unref_device(&loc); 1751 return (revents); 1752 } 1753 1754 /* ARGSUSED */ 1755 static int 1756 usb2_read_f(struct file *fp, struct uio *uio, struct ucred *cred, 1757 int flags, struct thread *td) 1758 { 1759 struct usb2_location loc; 1760 struct usb2_fifo *f; 1761 struct usb2_mbuf *m; 1762 int fflags; 1763 int resid; 1764 int io_len; 1765 int err; 1766 uint8_t tr_data = 0; 1767 1768 DPRINTFN(2, "\n"); 1769 1770 fflags = fp->f_flag & (O_NONBLOCK | O_DIRECT | FREAD | FWRITE); 1771 if (fflags & O_DIRECT) 1772 fflags |= IO_DIRECT; 1773 1774 err = usb2_ref_device(fp, &loc, 1 /* no uref */ ); 1775 if (err) { 1776 return (ENXIO); 1777 } 1778 f = loc.rxfifo; 1779 if (f == NULL) { 1780 /* should not happen */ 1781 return (EPERM); 1782 } 1783 resid = uio->uio_resid; 1784 1785 if ((flags & FOF_OFFSET) == 0) 1786 uio->uio_offset = fp->f_offset; 1787 1788 mtx_lock(f->priv_mtx); 1789 1790 /* check for permanent read error */ 1791 if (f->flag_iserror) { 1792 err = EIO; 1793 goto done; 1794 } 1795 /* check if USB-FS interface is active */ 1796 if (loc.is_usbfs) { 1797 /* 1798 * The queue is used for events that should be 1799 * retrieved using the "USB_FS_COMPLETE" ioctl. 1800 */ 1801 err = EINVAL; 1802 goto done; 1803 } 1804 while (uio->uio_resid > 0) { 1805 1806 USB_IF_DEQUEUE(&f->used_q, m); 1807 1808 if (m == NULL) { 1809 1810 /* start read transfer, if not already started */ 1811 1812 (f->methods->f_start_read) (f); 1813 1814 if (fflags & O_NONBLOCK) { 1815 if (tr_data) { 1816 /* return length before error */ 1817 break; 1818 } 1819 err = EWOULDBLOCK; 1820 break; 1821 } 1822 DPRINTF("sleeping\n"); 1823 1824 err = usb2_fifo_wait(f); 1825 if (err) { 1826 break; 1827 } 1828 continue; 1829 } 1830 if (f->methods->f_filter_read) { 1831 /* 1832 * Sometimes it is convenient to process data at the 1833 * expense of a userland process instead of a kernel 1834 * process. 1835 */ 1836 (f->methods->f_filter_read) (f, m); 1837 } 1838 tr_data = 1; 1839 1840 io_len = MIN(m->cur_data_len, uio->uio_resid); 1841 1842 DPRINTFN(2, "transfer %d bytes from %p\n", 1843 io_len, m->cur_data_ptr); 1844 1845 err = usb2_fifo_uiomove(f, 1846 m->cur_data_ptr, io_len, uio); 1847 1848 m->cur_data_len -= io_len; 1849 m->cur_data_ptr += io_len; 1850 1851 if (m->cur_data_len == 0) { 1852 1853 uint8_t last_packet; 1854 1855 last_packet = m->last_packet; 1856 1857 USB_IF_ENQUEUE(&f->free_q, m); 1858 1859 if (last_packet) { 1860 /* keep framing */ 1861 break; 1862 } 1863 } else { 1864 USB_IF_PREPEND(&f->used_q, m); 1865 } 1866 1867 if (err) { 1868 break; 1869 } 1870 } 1871 done: 1872 mtx_unlock(f->priv_mtx); 1873 1874 usb2_unref_device(&loc); 1875 1876 if ((flags & FOF_OFFSET) == 0) 1877 fp->f_offset = uio->uio_offset; 1878 fp->f_nextoff = uio->uio_offset; 1879 return (err); 1880 } 1881 1882 static int 1883 usb2_stat_f(struct file *fp, struct stat *sb, struct ucred *cred, struct thread *td) 1884 { 1885 return (USB_VNOPS_FO_STAT(fp, sb, cred, td)); 1886 } 1887 1888 #if __FreeBSD_version > 800009 1889 static int 1890 usb2_truncate_f(struct file *fp, off_t length, struct ucred *cred, struct thread *td) 1891 { 1892 return (USB_VNOPS_FO_TRUNCATE(fp, length, cred, td)); 1893 } 1894 1895 #endif 1896 1897 /* ARGSUSED */ 1898 static int 1899 usb2_write_f(struct file *fp, struct uio *uio, struct ucred *cred, 1900 int flags, struct thread *td) 1901 { 1902 struct usb2_location loc; 1903 struct usb2_fifo *f; 1904 struct usb2_mbuf *m; 1905 int fflags; 1906 int resid; 1907 int io_len; 1908 int err; 1909 uint8_t tr_data = 0; 1910 1911 DPRINTFN(2, "\n"); 1912 1913 fflags = fp->f_flag & (O_NONBLOCK | O_DIRECT | 1914 FREAD | FWRITE | O_FSYNC); 1915 if (fflags & O_DIRECT) 1916 fflags |= IO_DIRECT; 1917 1918 err = usb2_ref_device(fp, &loc, 1 /* no uref */ ); 1919 if (err) { 1920 return (ENXIO); 1921 } 1922 f = loc.txfifo; 1923 if (f == NULL) { 1924 /* should not happen */ 1925 usb2_unref_device(&loc); 1926 return (EPERM); 1927 } 1928 resid = uio->uio_resid; 1929 1930 if ((flags & FOF_OFFSET) == 0) 1931 uio->uio_offset = fp->f_offset; 1932 1933 mtx_lock(f->priv_mtx); 1934 1935 /* check for permanent write error */ 1936 if (f->flag_iserror) { 1937 err = EIO; 1938 goto done; 1939 } 1940 /* check if USB-FS interface is active */ 1941 if (loc.is_usbfs) { 1942 /* 1943 * The queue is used for events that should be 1944 * retrieved using the "USB_FS_COMPLETE" ioctl. 1945 */ 1946 err = EINVAL; 1947 goto done; 1948 } 1949 if (f->queue_data == NULL) { 1950 /* start write transfer, if not already started */ 1951 (f->methods->f_start_write) (f); 1952 } 1953 /* we allow writing zero length data */ 1954 do { 1955 USB_IF_DEQUEUE(&f->free_q, m); 1956 1957 if (m == NULL) { 1958 1959 if (fflags & O_NONBLOCK) { 1960 if (tr_data) { 1961 /* return length before error */ 1962 break; 1963 } 1964 err = EWOULDBLOCK; 1965 break; 1966 } 1967 DPRINTF("sleeping\n"); 1968 1969 err = usb2_fifo_wait(f); 1970 if (err) { 1971 break; 1972 } 1973 continue; 1974 } 1975 tr_data = 1; 1976 1977 USB_MBUF_RESET(m); 1978 1979 io_len = MIN(m->cur_data_len, uio->uio_resid); 1980 1981 m->cur_data_len = io_len; 1982 1983 DPRINTFN(2, "transfer %d bytes to %p\n", 1984 io_len, m->cur_data_ptr); 1985 1986 err = usb2_fifo_uiomove(f, 1987 m->cur_data_ptr, io_len, uio); 1988 1989 if (err) { 1990 USB_IF_ENQUEUE(&f->free_q, m); 1991 break; 1992 } 1993 if (f->methods->f_filter_write) { 1994 /* 1995 * Sometimes it is convenient to process data at the 1996 * expense of a userland process instead of a kernel 1997 * process. 1998 */ 1999 (f->methods->f_filter_write) (f, m); 2000 } 2001 USB_IF_ENQUEUE(&f->used_q, m); 2002 2003 (f->methods->f_start_write) (f); 2004 2005 } while (uio->uio_resid > 0); 2006 done: 2007 mtx_unlock(f->priv_mtx); 2008 2009 usb2_unref_device(&loc); 2010 2011 if ((flags & FOF_OFFSET) == 0) 2012 fp->f_offset = uio->uio_offset; 2013 fp->f_nextoff = uio->uio_offset; 2014 2015 return (err); 2016 } 2017 2018 static int 2019 usb2_fifo_uiomove(struct usb2_fifo *f, void *cp, 2020 int n, struct uio *uio) 2021 { 2022 int error; 2023 2024 mtx_unlock(f->priv_mtx); 2025 2026 /* 2027 * "uiomove()" can sleep so one needs to make a wrapper, 2028 * exiting the mutex and checking things: 2029 */ 2030 error = uiomove(cp, n, uio); 2031 2032 mtx_lock(f->priv_mtx); 2033 2034 return (error); 2035 } 2036 2037 int 2038 usb2_fifo_wait(struct usb2_fifo *f) 2039 { 2040 int err; 2041 2042 mtx_assert(f->priv_mtx, MA_OWNED); 2043 2044 if (f->flag_iserror) { 2045 /* we are gone */ 2046 return (EIO); 2047 } 2048 f->flag_sleeping = 1; 2049 2050 err = usb2_cv_wait_sig(&f->cv_io, f->priv_mtx); 2051 2052 if (f->flag_iserror) { 2053 /* we are gone */ 2054 err = EIO; 2055 } 2056 return (err); 2057 } 2058 2059 void 2060 usb2_fifo_signal(struct usb2_fifo *f) 2061 { 2062 if (f->flag_sleeping) { 2063 f->flag_sleeping = 0; 2064 usb2_cv_broadcast(&f->cv_io); 2065 } 2066 } 2067 2068 void 2069 usb2_fifo_wakeup(struct usb2_fifo *f) 2070 { 2071 usb2_fifo_signal(f); 2072 2073 if (f->flag_isselect) { 2074 selwakeup(&f->selinfo); 2075 f->flag_isselect = 0; 2076 } 2077 if (f->async_p != NULL) { 2078 PROC_LOCK(f->async_p); 2079 psignal(f->async_p, SIGIO); 2080 PROC_UNLOCK(f->async_p); 2081 } 2082 } 2083 2084 /*------------------------------------------------------------------------* 2085 * usb2_fifo_opened 2086 * 2087 * Returns: 2088 * 0: FIFO not opened. 2089 * Else: FIFO is opened. 2090 *------------------------------------------------------------------------*/ 2091 uint8_t 2092 usb2_fifo_opened(struct usb2_fifo *f) 2093 { 2094 uint8_t temp; 2095 uint8_t do_unlock; 2096 2097 if (f == NULL) { 2098 return (0); /* be NULL safe */ 2099 } 2100 if (mtx_owned(f->priv_mtx)) { 2101 do_unlock = 0; 2102 } else { 2103 do_unlock = 1; 2104 mtx_lock(f->priv_mtx); 2105 } 2106 temp = f->curr_file ? 1 : 0; 2107 if (do_unlock) { 2108 mtx_unlock(f->priv_mtx); 2109 } 2110 return (temp); 2111 } 2112 2113 2114 static int 2115 usb2_fifo_dummy_open(struct usb2_fifo *fifo, 2116 int fflags, struct thread *td) 2117 { 2118 return (0); 2119 } 2120 2121 static void 2122 usb2_fifo_dummy_close(struct usb2_fifo *fifo, 2123 int fflags, struct thread *td) 2124 { 2125 return; 2126 } 2127 2128 static int 2129 usb2_fifo_dummy_ioctl(struct usb2_fifo *fifo, u_long cmd, void *addr, 2130 int fflags, struct thread *td) 2131 { 2132 return (ENOIOCTL); 2133 } 2134 2135 static void 2136 usb2_fifo_dummy_cmd(struct usb2_fifo *fifo) 2137 { 2138 fifo->flag_flushing = 0; /* not flushing */ 2139 } 2140 2141 static void 2142 usb2_fifo_check_methods(struct usb2_fifo_methods *pm) 2143 { 2144 /* check that all callback functions are OK */ 2145 2146 if (pm->f_open == NULL) 2147 pm->f_open = &usb2_fifo_dummy_open; 2148 2149 if (pm->f_close == NULL) 2150 pm->f_close = &usb2_fifo_dummy_close; 2151 2152 if (pm->f_ioctl == NULL) 2153 pm->f_ioctl = &usb2_fifo_dummy_ioctl; 2154 2155 if (pm->f_ioctl_post == NULL) 2156 pm->f_ioctl_post = &usb2_fifo_dummy_ioctl; 2157 2158 if (pm->f_start_read == NULL) 2159 pm->f_start_read = &usb2_fifo_dummy_cmd; 2160 2161 if (pm->f_stop_read == NULL) 2162 pm->f_stop_read = &usb2_fifo_dummy_cmd; 2163 2164 if (pm->f_start_write == NULL) 2165 pm->f_start_write = &usb2_fifo_dummy_cmd; 2166 2167 if (pm->f_stop_write == NULL) 2168 pm->f_stop_write = &usb2_fifo_dummy_cmd; 2169 } 2170 2171 /*------------------------------------------------------------------------* 2172 * usb2_fifo_attach 2173 * 2174 * The following function will create a duplex FIFO. 2175 * 2176 * Return values: 2177 * 0: Success. 2178 * Else: Failure. 2179 *------------------------------------------------------------------------*/ 2180 int 2181 usb2_fifo_attach(struct usb2_device *udev, void *priv_sc, 2182 struct mtx *priv_mtx, struct usb2_fifo_methods *pm, 2183 struct usb2_fifo_sc *f_sc, uint16_t unit, uint16_t subunit, 2184 uint8_t iface_index) 2185 { 2186 struct usb2_fifo *f_tx; 2187 struct usb2_fifo *f_rx; 2188 char buf[32]; 2189 char src[32]; 2190 uint8_t n; 2191 2192 f_sc->fp[USB_FIFO_TX] = NULL; 2193 f_sc->fp[USB_FIFO_RX] = NULL; 2194 2195 if (pm == NULL) 2196 return (EINVAL); 2197 2198 /* check the methods */ 2199 usb2_fifo_check_methods(pm); 2200 2201 if (priv_mtx == NULL) 2202 priv_mtx = &Giant; 2203 2204 /* search for a free FIFO slot */ 2205 for (n = 0;; n += 2) { 2206 2207 if (n == USB_FIFO_MAX) { 2208 /* end of FIFOs reached */ 2209 return (ENOMEM); 2210 } 2211 /* Check for TX FIFO */ 2212 if (udev->fifo[n + USB_FIFO_TX] != NULL) { 2213 continue; 2214 } 2215 /* Check for RX FIFO */ 2216 if (udev->fifo[n + USB_FIFO_RX] != NULL) { 2217 continue; 2218 } 2219 break; 2220 } 2221 2222 f_tx = usb2_fifo_alloc(); 2223 f_rx = usb2_fifo_alloc(); 2224 2225 if ((f_tx == NULL) || (f_rx == NULL)) { 2226 usb2_fifo_free(f_tx); 2227 usb2_fifo_free(f_rx); 2228 return (ENOMEM); 2229 } 2230 /* initialise FIFO structures */ 2231 2232 f_tx->fifo_index = n + USB_FIFO_TX; 2233 f_tx->dev_ep_index = (n / 2) + (USB_EP_MAX / 2); 2234 f_tx->priv_mtx = priv_mtx; 2235 f_tx->priv_sc0 = priv_sc; 2236 f_tx->methods = pm; 2237 f_tx->iface_index = iface_index; 2238 f_tx->udev = udev; 2239 2240 f_rx->fifo_index = n + USB_FIFO_RX; 2241 f_rx->dev_ep_index = (n / 2) + (USB_EP_MAX / 2); 2242 f_rx->priv_mtx = priv_mtx; 2243 f_rx->priv_sc0 = priv_sc; 2244 f_rx->methods = pm; 2245 f_rx->iface_index = iface_index; 2246 f_rx->udev = udev; 2247 2248 f_sc->fp[USB_FIFO_TX] = f_tx; 2249 f_sc->fp[USB_FIFO_RX] = f_rx; 2250 2251 mtx_lock(&usb2_ref_lock); 2252 udev->fifo[f_tx->fifo_index] = f_tx; 2253 udev->fifo[f_rx->fifo_index] = f_rx; 2254 mtx_unlock(&usb2_ref_lock); 2255 2256 if (snprintf(src, sizeof(src), 2257 USB_DEVICE_NAME "%u.%u.%u.%u", 2258 device_get_unit(udev->bus->bdev), 2259 udev->device_index, 2260 iface_index, 2261 f_tx->dev_ep_index)) { 2262 /* ignore */ 2263 } 2264 for (n = 0; n != 4; n++) { 2265 2266 if (pm->basename[n] == NULL) { 2267 continue; 2268 } 2269 if (subunit == 0xFFFF) { 2270 if (snprintf(buf, sizeof(buf), 2271 "%s%u%s", pm->basename[n], 2272 unit, pm->postfix[n] ? 2273 pm->postfix[n] : "")) { 2274 /* ignore */ 2275 } 2276 } else { 2277 if (snprintf(buf, sizeof(buf), 2278 "%s%u.%u%s", pm->basename[n], 2279 unit, subunit, pm->postfix[n] ? 2280 pm->postfix[n] : "")) { 2281 /* ignore */ 2282 } 2283 } 2284 2285 /* 2286 * Distribute the symbolic links into two FIFO structures: 2287 */ 2288 if (n & 1) { 2289 f_rx->symlink[n / 2] = 2290 usb2_alloc_symlink(src, "%s", buf); 2291 } else { 2292 f_tx->symlink[n / 2] = 2293 usb2_alloc_symlink(src, "%s", buf); 2294 } 2295 printf("Symlink: %s -> %s\n", buf, src); 2296 } 2297 2298 DPRINTFN(2, "attached %p/%p\n", f_tx, f_rx); 2299 return (0); 2300 } 2301 2302 /*------------------------------------------------------------------------* 2303 * usb2_fifo_alloc_buffer 2304 * 2305 * Return values: 2306 * 0: Success 2307 * Else failure 2308 *------------------------------------------------------------------------*/ 2309 int 2310 usb2_fifo_alloc_buffer(struct usb2_fifo *f, uint32_t bufsize, 2311 uint16_t nbuf) 2312 { 2313 usb2_fifo_free_buffer(f); 2314 2315 /* allocate an endpoint */ 2316 f->free_q.ifq_maxlen = nbuf; 2317 f->used_q.ifq_maxlen = nbuf; 2318 2319 f->queue_data = usb2_alloc_mbufs( 2320 M_USBDEV, &f->free_q, bufsize, nbuf); 2321 2322 if ((f->queue_data == NULL) && bufsize && nbuf) { 2323 return (ENOMEM); 2324 } 2325 return (0); /* success */ 2326 } 2327 2328 /*------------------------------------------------------------------------* 2329 * usb2_fifo_free_buffer 2330 * 2331 * This function will free the buffers associated with a FIFO. This 2332 * function can be called multiple times in a row. 2333 *------------------------------------------------------------------------*/ 2334 void 2335 usb2_fifo_free_buffer(struct usb2_fifo *f) 2336 { 2337 if (f->queue_data) { 2338 /* free old buffer */ 2339 free(f->queue_data, M_USBDEV); 2340 f->queue_data = NULL; 2341 } 2342 /* reset queues */ 2343 2344 bzero(&f->free_q, sizeof(f->free_q)); 2345 bzero(&f->used_q, sizeof(f->used_q)); 2346 } 2347 2348 void 2349 usb2_fifo_detach(struct usb2_fifo_sc *f_sc) 2350 { 2351 if (f_sc == NULL) { 2352 return; 2353 } 2354 usb2_fifo_free(f_sc->fp[USB_FIFO_TX]); 2355 usb2_fifo_free(f_sc->fp[USB_FIFO_RX]); 2356 2357 f_sc->fp[USB_FIFO_TX] = NULL; 2358 f_sc->fp[USB_FIFO_RX] = NULL; 2359 2360 DPRINTFN(2, "detached %p\n", f_sc); 2361 } 2362 2363 uint32_t 2364 usb2_fifo_put_bytes_max(struct usb2_fifo *f) 2365 { 2366 struct usb2_mbuf *m; 2367 uint32_t len; 2368 2369 USB_IF_POLL(&f->free_q, m); 2370 2371 if (m) { 2372 len = m->max_data_len; 2373 } else { 2374 len = 0; 2375 } 2376 return (len); 2377 } 2378 2379 /*------------------------------------------------------------------------* 2380 * usb2_fifo_put_data 2381 * 2382 * what: 2383 * 0 - normal operation 2384 * 1 - set last packet flag to enforce framing 2385 *------------------------------------------------------------------------*/ 2386 void 2387 usb2_fifo_put_data(struct usb2_fifo *f, struct usb2_page_cache *pc, 2388 uint32_t offset, uint32_t len, uint8_t what) 2389 { 2390 struct usb2_mbuf *m; 2391 uint32_t io_len; 2392 2393 while (len || (what == 1)) { 2394 2395 USB_IF_DEQUEUE(&f->free_q, m); 2396 2397 if (m) { 2398 USB_MBUF_RESET(m); 2399 2400 io_len = MIN(len, m->cur_data_len); 2401 2402 usb2_copy_out(pc, offset, m->cur_data_ptr, io_len); 2403 2404 m->cur_data_len = io_len; 2405 offset += io_len; 2406 len -= io_len; 2407 2408 if ((len == 0) && (what == 1)) { 2409 m->last_packet = 1; 2410 } 2411 USB_IF_ENQUEUE(&f->used_q, m); 2412 2413 usb2_fifo_wakeup(f); 2414 2415 if ((len == 0) || (what == 1)) { 2416 break; 2417 } 2418 } else { 2419 break; 2420 } 2421 } 2422 } 2423 2424 void 2425 usb2_fifo_put_data_linear(struct usb2_fifo *f, void *ptr, 2426 uint32_t len, uint8_t what) 2427 { 2428 struct usb2_mbuf *m; 2429 uint32_t io_len; 2430 2431 while (len || (what == 1)) { 2432 2433 USB_IF_DEQUEUE(&f->free_q, m); 2434 2435 if (m) { 2436 USB_MBUF_RESET(m); 2437 2438 io_len = MIN(len, m->cur_data_len); 2439 2440 bcopy(ptr, m->cur_data_ptr, io_len); 2441 2442 m->cur_data_len = io_len; 2443 ptr = USB_ADD_BYTES(ptr, io_len); 2444 len -= io_len; 2445 2446 if ((len == 0) && (what == 1)) { 2447 m->last_packet = 1; 2448 } 2449 USB_IF_ENQUEUE(&f->used_q, m); 2450 2451 usb2_fifo_wakeup(f); 2452 2453 if ((len == 0) || (what == 1)) { 2454 break; 2455 } 2456 } else { 2457 break; 2458 } 2459 } 2460 } 2461 2462 uint8_t 2463 usb2_fifo_put_data_buffer(struct usb2_fifo *f, void *ptr, uint32_t len) 2464 { 2465 struct usb2_mbuf *m; 2466 2467 USB_IF_DEQUEUE(&f->free_q, m); 2468 2469 if (m) { 2470 m->cur_data_len = len; 2471 m->cur_data_ptr = ptr; 2472 USB_IF_ENQUEUE(&f->used_q, m); 2473 usb2_fifo_wakeup(f); 2474 return (1); 2475 } 2476 return (0); 2477 } 2478 2479 void 2480 usb2_fifo_put_data_error(struct usb2_fifo *f) 2481 { 2482 f->flag_iserror = 1; 2483 usb2_fifo_wakeup(f); 2484 } 2485 2486 /*------------------------------------------------------------------------* 2487 * usb2_fifo_get_data 2488 * 2489 * what: 2490 * 0 - normal operation 2491 * 1 - only get one "usb2_mbuf" 2492 * 2493 * returns: 2494 * 0 - no more data 2495 * 1 - data in buffer 2496 *------------------------------------------------------------------------*/ 2497 uint8_t 2498 usb2_fifo_get_data(struct usb2_fifo *f, struct usb2_page_cache *pc, 2499 uint32_t offset, uint32_t len, uint32_t *actlen, 2500 uint8_t what) 2501 { 2502 struct usb2_mbuf *m; 2503 uint32_t io_len; 2504 uint8_t tr_data = 0; 2505 2506 actlen[0] = 0; 2507 2508 while (1) { 2509 2510 USB_IF_DEQUEUE(&f->used_q, m); 2511 2512 if (m) { 2513 2514 tr_data = 1; 2515 2516 io_len = MIN(len, m->cur_data_len); 2517 2518 usb2_copy_in(pc, offset, m->cur_data_ptr, io_len); 2519 2520 len -= io_len; 2521 offset += io_len; 2522 actlen[0] += io_len; 2523 m->cur_data_ptr += io_len; 2524 m->cur_data_len -= io_len; 2525 2526 if ((m->cur_data_len == 0) || (what == 1)) { 2527 USB_IF_ENQUEUE(&f->free_q, m); 2528 2529 usb2_fifo_wakeup(f); 2530 2531 if (what == 1) { 2532 break; 2533 } 2534 } else { 2535 USB_IF_PREPEND(&f->used_q, m); 2536 } 2537 } else { 2538 2539 if (tr_data) { 2540 /* wait for data to be written out */ 2541 break; 2542 } 2543 if (f->flag_flushing) { 2544 f->flag_flushing = 0; 2545 usb2_fifo_wakeup(f); 2546 } 2547 break; 2548 } 2549 if (len == 0) { 2550 break; 2551 } 2552 } 2553 return (tr_data); 2554 } 2555 2556 uint8_t 2557 usb2_fifo_get_data_linear(struct usb2_fifo *f, void *ptr, 2558 uint32_t len, uint32_t *actlen, uint8_t what) 2559 { 2560 struct usb2_mbuf *m; 2561 uint32_t io_len; 2562 uint8_t tr_data = 0; 2563 2564 actlen[0] = 0; 2565 2566 while (1) { 2567 2568 USB_IF_DEQUEUE(&f->used_q, m); 2569 2570 if (m) { 2571 2572 tr_data = 1; 2573 2574 io_len = MIN(len, m->cur_data_len); 2575 2576 bcopy(m->cur_data_ptr, ptr, io_len); 2577 2578 len -= io_len; 2579 ptr = USB_ADD_BYTES(ptr, io_len); 2580 actlen[0] += io_len; 2581 m->cur_data_ptr += io_len; 2582 m->cur_data_len -= io_len; 2583 2584 if ((m->cur_data_len == 0) || (what == 1)) { 2585 USB_IF_ENQUEUE(&f->free_q, m); 2586 2587 usb2_fifo_wakeup(f); 2588 2589 if (what == 1) { 2590 break; 2591 } 2592 } else { 2593 USB_IF_PREPEND(&f->used_q, m); 2594 } 2595 } else { 2596 2597 if (tr_data) { 2598 /* wait for data to be written out */ 2599 break; 2600 } 2601 if (f->flag_flushing) { 2602 f->flag_flushing = 0; 2603 usb2_fifo_wakeup(f); 2604 } 2605 break; 2606 } 2607 if (len == 0) { 2608 break; 2609 } 2610 } 2611 return (tr_data); 2612 } 2613 2614 uint8_t 2615 usb2_fifo_get_data_buffer(struct usb2_fifo *f, void **pptr, uint32_t *plen) 2616 { 2617 struct usb2_mbuf *m; 2618 2619 USB_IF_POLL(&f->used_q, m); 2620 2621 if (m) { 2622 *plen = m->cur_data_len; 2623 *pptr = m->cur_data_ptr; 2624 2625 return (1); 2626 } 2627 return (0); 2628 } 2629 2630 void 2631 usb2_fifo_get_data_error(struct usb2_fifo *f) 2632 { 2633 f->flag_iserror = 1; 2634 usb2_fifo_wakeup(f); 2635 } 2636 2637 /*------------------------------------------------------------------------* 2638 * usb2_alloc_symlink 2639 * 2640 * Return values: 2641 * NULL: Failure 2642 * Else: Pointer to symlink entry 2643 *------------------------------------------------------------------------*/ 2644 struct usb2_symlink * 2645 usb2_alloc_symlink(const char *target, const char *fmt,...) 2646 { 2647 struct usb2_symlink *ps; 2648 va_list ap; 2649 2650 ps = malloc(sizeof(*ps), M_USBDEV, M_WAITOK); 2651 if (ps == NULL) { 2652 return (ps); 2653 } 2654 strlcpy(ps->dst_path, target, sizeof(ps->dst_path)); 2655 ps->dst_len = strlen(ps->dst_path); 2656 2657 va_start(ap, fmt); 2658 vsnrprintf(ps->src_path, 2659 sizeof(ps->src_path), 32, fmt, ap); 2660 va_end(ap); 2661 ps->src_len = strlen(ps->src_path); 2662 2663 sx_xlock(&usb2_sym_lock); 2664 TAILQ_INSERT_TAIL(&usb2_sym_head, ps, sym_entry); 2665 sx_unlock(&usb2_sym_lock); 2666 return (ps); 2667 } 2668 2669 /*------------------------------------------------------------------------* 2670 * usb2_free_symlink 2671 *------------------------------------------------------------------------*/ 2672 void 2673 usb2_free_symlink(struct usb2_symlink *ps) 2674 { 2675 if (ps == NULL) { 2676 return; 2677 } 2678 sx_xlock(&usb2_sym_lock); 2679 TAILQ_REMOVE(&usb2_sym_head, ps, sym_entry); 2680 sx_unlock(&usb2_sym_lock); 2681 2682 free(ps, M_USBDEV); 2683 } 2684 2685 /*------------------------------------------------------------------------* 2686 * usb2_lookup_symlink 2687 * 2688 * Return value: 2689 * Numerical device location 2690 *------------------------------------------------------------------------*/ 2691 uint32_t 2692 usb2_lookup_symlink(const char *src_ptr, uint8_t src_len) 2693 { 2694 enum { 2695 USB_DNAME_LEN = sizeof(USB_DEVICE_NAME) - 1, 2696 }; 2697 struct usb2_symlink *ps; 2698 uint32_t temp; 2699 2700 sx_xlock(&usb2_sym_lock); 2701 2702 TAILQ_FOREACH(ps, &usb2_sym_head, sym_entry) { 2703 2704 if (src_len != ps->src_len) 2705 continue; 2706 2707 if (memcmp(ps->src_path, src_ptr, src_len)) 2708 continue; 2709 2710 if (USB_DNAME_LEN > ps->dst_len) 2711 continue; 2712 2713 if (memcmp(ps->dst_path, USB_DEVICE_NAME, USB_DNAME_LEN)) 2714 continue; 2715 2716 temp = usb2_path_convert(ps->dst_path + USB_DNAME_LEN); 2717 sx_unlock(&usb2_sym_lock); 2718 2719 return (temp); 2720 } 2721 sx_unlock(&usb2_sym_lock); 2722 return (0 - 1); 2723 } 2724 2725 /*------------------------------------------------------------------------* 2726 * usb2_read_symlink 2727 * 2728 * Return value: 2729 * 0: Success 2730 * Else: Failure 2731 *------------------------------------------------------------------------*/ 2732 int 2733 usb2_read_symlink(uint8_t *user_ptr, uint32_t startentry, uint32_t user_len) 2734 { 2735 struct usb2_symlink *ps; 2736 uint32_t temp; 2737 uint32_t delta = 0; 2738 uint8_t len; 2739 int error = 0; 2740 2741 sx_xlock(&usb2_sym_lock); 2742 2743 TAILQ_FOREACH(ps, &usb2_sym_head, sym_entry) { 2744 2745 /* 2746 * Compute total length of source and destination symlink 2747 * strings pluss one length byte and two NUL bytes: 2748 */ 2749 temp = ps->src_len + ps->dst_len + 3; 2750 2751 if (temp > 255) { 2752 /* 2753 * Skip entry because this length cannot fit 2754 * into one byte: 2755 */ 2756 continue; 2757 } 2758 if (startentry != 0) { 2759 /* decrement read offset */ 2760 startentry--; 2761 continue; 2762 } 2763 if (temp > user_len) { 2764 /* out of buffer space */ 2765 break; 2766 } 2767 len = temp; 2768 2769 /* copy out total length */ 2770 2771 error = copyout(&len, 2772 USB_ADD_BYTES(user_ptr, delta), 1); 2773 if (error) { 2774 break; 2775 } 2776 delta += 1; 2777 2778 /* copy out source string */ 2779 2780 error = copyout(ps->src_path, 2781 USB_ADD_BYTES(user_ptr, delta), ps->src_len); 2782 if (error) { 2783 break; 2784 } 2785 len = 0; 2786 delta += ps->src_len; 2787 error = copyout(&len, 2788 USB_ADD_BYTES(user_ptr, delta), 1); 2789 if (error) { 2790 break; 2791 } 2792 delta += 1; 2793 2794 /* copy out destination string */ 2795 2796 error = copyout(ps->dst_path, 2797 USB_ADD_BYTES(user_ptr, delta), ps->dst_len); 2798 if (error) { 2799 break; 2800 } 2801 len = 0; 2802 delta += ps->dst_len; 2803 error = copyout(&len, 2804 USB_ADD_BYTES(user_ptr, delta), 1); 2805 if (error) { 2806 break; 2807 } 2808 delta += 1; 2809 2810 user_len -= temp; 2811 } 2812 2813 /* a zero length entry indicates the end */ 2814 2815 if ((user_len != 0) && (error == 0)) { 2816 2817 len = 0; 2818 2819 error = copyout(&len, 2820 USB_ADD_BYTES(user_ptr, delta), 1); 2821 } 2822 sx_unlock(&usb2_sym_lock); 2823 return (error); 2824 } 2825