cosmetics
[tomato.git] / release / src / router / rc / usb.c
blobf87c60c54925b8a9d0f5a0b5f21cfac1e5884bf0
1 /*
3 USB Support
5 */
6 #include "rc.h"
8 #include <sys/types.h>
9 #include <unistd.h>
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <arpa/inet.h>
13 #include <time.h>
14 #include <sys/time.h>
15 #include <errno.h>
17 #include <sys/mount.h>
18 #include <mntent.h>
19 #include <dirent.h>
20 #include <sys/file.h>
21 #include <sys/swap.h>
23 /* Adjust bdflush parameters.
24 * Do this here, because Tomato doesn't have the sysctl command.
25 * With these values, a disk block should be written to disk within 2 seconds.
27 #ifdef LINUX26
28 void tune_bdflush(void)
30 f_write_string("/proc/sys/vm/dirty_expire_centisecs", "200", 0, 0);
31 f_write_string("/proc/sys/vm/dirty_writeback_centisecs", "200", 0, 0);
33 #else
34 #include <sys/kdaemon.h>
35 #define SET_PARM(n) (n * 2 | 1)
36 void tune_bdflush(void)
38 bdflush(SET_PARM(5), 100);
39 bdflush(SET_PARM(6), 100);
40 bdflush(SET_PARM(8), 0);
42 #endif // LINUX26
44 #define USBCORE_MOD "usbcore"
45 #define USB20_MOD "ehci-hcd"
46 #define USBSTORAGE_MOD "usb-storage"
47 #define SCSI_MOD "scsi_mod"
48 #define SD_MOD "sd_mod"
49 #ifdef LINUX26
50 #define USBOHCI_MOD "ohci-hcd"
51 #define USBUHCI_MOD "uhci-hcd"
52 #define USBPRINTER_MOD "usblp"
53 #define SCSI_WAIT_MOD "scsi_wait_scan"
54 #define USBFS "usbfs"
55 #else
56 #define USBOHCI_MOD "usb-ohci"
57 #define USBUHCI_MOD "usb-uhci"
58 #define USBPRINTER_MOD "printer"
59 #define USBFS "usbdevfs"
60 #endif
62 static int p9100d_sig(int sig)
64 const char p910pid[] = "/var/run/p9100d.pid";
65 char s[32];
66 int pid;
68 if (f_read_string(p910pid, s, sizeof(s)) > 0) {
69 if ((pid = atoi(s)) > 1) {
70 if (kill(pid, sig) == 0) {
71 if (sig == SIGTERM) {
72 sleep(1);
73 unlink(p910pid);
75 return 0;
79 return -1;
82 void start_usb(void)
84 char param[32];
85 int i;
87 _dprintf("%s\n", __FUNCTION__);
88 tune_bdflush();
90 if (nvram_get_int("usb_enable")) {
91 modprobe(USBCORE_MOD);
93 /* mount usb device filesystem */
94 mount(USBFS, "/proc/bus/usb", USBFS, MS_MGC_VAL, NULL);
96 #ifdef LINUX26
97 i = do_led(LED_USB, LED_PROBE);
98 if (i != 255) {
99 modprobe("ledtrig-usbdev");
100 modprobe("leds-usb");
101 sprintf(param, "%d", i);
102 f_write_string("/sys/class/leds/usb-led/gpio_pin", param, 0, 0);
103 f_write_string("/sys/class/leds/usb-led/device_name", "1-1", 0, 0);
105 #endif
106 if (nvram_get_int("usb_storage")) {
107 /* insert scsi and storage modules before usb drivers */
108 modprobe(SCSI_MOD);
109 #ifdef LINUX26
110 modprobe(SCSI_WAIT_MOD);
111 #endif
112 modprobe(SD_MOD);
113 modprobe(USBSTORAGE_MOD);
115 if (nvram_get_int("usb_fs_ext3")) {
116 #ifdef LINUX26
117 modprobe("mbcache"); // used by ext2/ext3
118 #endif
119 /* insert ext3 first so that lazy mount tries ext3 before ext2 */
120 modprobe("jbd");
121 modprobe("ext3");
122 modprobe("ext2");
125 if (nvram_get_int("usb_fs_fat")) {
126 modprobe("fat");
127 modprobe("vfat");
129 if (nvram_get_int("usb_fs_hfs")) {
130 modprobe("hfs");
133 if (nvram_get_int("usb_fs_hfsplus")) {
134 modprobe("hfsplus");
138 /* if enabled, force USB2 before USB1.1 */
139 if (nvram_get_int("usb_usb2") == 1) {
140 i = nvram_get_int("usb_irq_thresh");
141 if ((i < 0) || (i > 6))
142 i = 0;
143 sprintf(param, "log2_irq_thresh=%d", i);
144 modprobe(USB20_MOD, param);
147 if (nvram_get_int("usb_uhci") == 1) {
148 modprobe(USBUHCI_MOD);
151 if (nvram_get_int("usb_ohci") == 1) {
152 modprobe(USBOHCI_MOD);
155 if (nvram_get_int("usb_printer")) {
156 symlink("/dev/usb", "/dev/printers");
157 modprobe(USBPRINTER_MOD);
159 /* start printer server only if not already running */
160 if (p9100d_sig(0) != 0) {
161 eval("p910nd",
162 nvram_get_int("usb_printer_bidirect") ? "-b" : "", //bidirectional
163 "-f", "/dev/usb/lp0", // device
164 "0" // listen port
169 if (nvram_get_int("idle_enable") == 1) {
170 xstart( "sd-idle" );
175 void stop_usb(void)
177 int disabled = !nvram_get_int("usb_enable");
179 // only find and kill the printer server we started (port 0)
180 p9100d_sig(SIGTERM);
181 modprobe_r(USBPRINTER_MOD);
183 // only stop storage services if disabled
184 if (disabled || !nvram_get_int("usb_storage")) {
185 // Unmount all partitions
186 remove_storage_main(0);
188 // Stop storage services
189 modprobe_r("ext2");
190 modprobe_r("ext3");
191 modprobe_r("jbd");
192 #ifdef LINUX26
193 modprobe_r("mbcache");
194 #endif
195 modprobe_r("vfat");
196 modprobe_r("fat");
197 modprobe_r("fuse");
198 modprobe_r("hfs");
199 modprobe_r("hfsplus");
200 sleep(1);
201 #ifdef TCONFIG_SAMBASRV
202 modprobe_r("nls_cp437");
203 modprobe_r("nls_cp850");
204 modprobe_r("nls_cp852");
205 modprobe_r("nls_cp866");
206 #ifdef LINUX26
207 modprobe_r("nls_cp932");
208 modprobe_r("nls_cp936");
209 modprobe_r("nls_cp949");
210 modprobe_r("nls_cp950");
211 #endif
212 #endif
213 modprobe_r(USBSTORAGE_MOD);
214 modprobe_r(SD_MOD);
215 #ifdef LINUX26
216 modprobe_r(SCSI_WAIT_MOD);
217 #endif
218 modprobe_r(SCSI_MOD);
221 if (disabled || nvram_get_int("usb_ohci") != 1) modprobe_r(USBOHCI_MOD);
222 if (disabled || nvram_get_int("usb_uhci") != 1) modprobe_r(USBUHCI_MOD);
223 if (disabled || nvram_get_int("usb_usb2") != 1) modprobe_r(USB20_MOD);
225 #ifdef LINUX26
226 modprobe_r("leds-usb");
227 modprobe_r("ledtrig-usbdev");
228 led(LED_USB, LED_OFF);
229 #endif
231 // only unload core modules if usb is disabled
232 if (disabled) {
233 umount("/proc/bus/usb"); // unmount usb device filesystem
234 modprobe_r(USBOHCI_MOD);
235 modprobe_r(USBUHCI_MOD);
236 modprobe_r(USB20_MOD);
237 modprobe_r(USBCORE_MOD);
240 if (nvram_get_int("idle_enable") == 0) {
241 killall("sd-idle", SIGTERM);
247 #define MOUNT_VAL_FAIL 0
248 #define MOUNT_VAL_RONLY 1
249 #define MOUNT_VAL_RW 2
250 #define MOUNT_VAL_EXIST 3
252 int mount_r(char *mnt_dev, char *mnt_dir, char *type)
254 struct mntent *mnt;
255 int ret;
256 char options[140];
257 char flagfn[128];
258 int dir_made;
260 if ((mnt = findmntents(mnt_dev, 0, NULL, 0))) {
261 syslog(LOG_INFO, "USB partition at %s already mounted on %s",
262 mnt_dev, mnt->mnt_dir);
263 return MOUNT_VAL_EXIST;
266 options[0] = 0;
268 if (type) {
269 unsigned long flags = MS_NOATIME | MS_NODEV;
271 if (strcmp(type, "swap") == 0 || strcmp(type, "mbr") == 0) {
272 /* not a mountable partition */
273 flags = 0;
275 else if (strcmp(type, "ext2") == 0 || strcmp(type, "ext3") == 0) {
276 if (nvram_invmatch("usb_ext_opt", ""))
277 sprintf(options, nvram_safe_get("usb_ext_opt"));
279 else if (strcmp(type, "vfat") == 0) {
280 if (nvram_invmatch("smbd_cset", ""))
281 sprintf(options, "iocharset=%s%s",
282 isdigit(nvram_get("smbd_cset")[0]) ? "cp" : "",
283 nvram_get("smbd_cset"));
284 if (nvram_invmatch("smbd_cpage", "")) {
285 char *cp = nvram_safe_get("smbd_cpage");
286 sprintf(options + strlen(options), ",codepage=%s" + (options[0] ? 0 : 1), cp);
287 sprintf(flagfn, "nls_cp%s", cp);
289 cp = nvram_get("smbd_nlsmod");
290 if ((cp) && (*cp != 0) && (strcmp(cp, flagfn) != 0))
291 modprobe_r(cp);
293 modprobe(flagfn);
294 nvram_set("smbd_nlsmod", flagfn);
296 sprintf(options + strlen(options), ",shortname=winnt" + (options[0] ? 0 : 1));
297 #ifdef LINUX26
298 sprintf(options + strlen(options), ",flush" + (options[0] ? 0 : 1));
299 #endif
300 if (nvram_invmatch("usb_fat_opt", ""))
301 sprintf(options + strlen(options), "%s%s", options[0] ? "," : "", nvram_safe_get("usb_fat_opt"));
303 else if (strncmp(type, "ntfs", 4) == 0) {
304 if (nvram_invmatch("smbd_cset", ""))
305 sprintf(options, "iocharset=%s%s",
306 isdigit(nvram_get("smbd_cset")[0]) ? "cp" : "",
307 nvram_get("smbd_cset"));
308 if (nvram_invmatch("usb_ntfs_opt", ""))
309 sprintf(options + strlen(options), "%s%s", options[0] ? "," : "", nvram_safe_get("usb_ntfs_opt"));
312 if (flags) {
313 if ((dir_made = mkdir_if_none(mnt_dir))) {
314 /* Create the flag file for remove the directory on dismount. */
315 sprintf(flagfn, "%s/.autocreated-dir", mnt_dir);
316 f_write(flagfn, NULL, 0, 0, 0);
319 ret = mount(mnt_dev, mnt_dir, type, flags, options[0] ? options : "");
321 /* try ntfs-3g in case it's installed */
322 if (ret != 0 && strncmp(type, "ntfs", 4) == 0) {
323 sprintf(options + strlen(options), ",noatime,nodev" + (options[0] ? 0 : 1));
324 #ifdef TCONFIG_NTFS
325 if (nvram_get_int("usb_fs_ntfs"))
326 #endif
327 ret = eval("ntfs-3g", "-o", options, mnt_dev, mnt_dir);
330 if (ret != 0 && strncmp(type, "hfs", "") == 0) {
331 ret = eval("mount", "-o", "noatime,nodev", mnt_dev, mnt_dir);
334 if (ret != 0 && strncmp(type, "hfsplus", "") == 0) {
335 ret = eval("mount", "-o", "noatime,nodev", mnt_dev, mnt_dir);
338 if (ret != 0) /* give it another try - guess fs */
339 ret = eval("mount", "-o", "noatime,nodev", mnt_dev, mnt_dir);
341 if (ret == 0) {
342 syslog(LOG_INFO, "USB %s%s fs at %s mounted on %s",
343 type, (flags & MS_RDONLY) ? " (ro)" : "", mnt_dev, mnt_dir);
344 return (flags & MS_RDONLY) ? MOUNT_VAL_RONLY : MOUNT_VAL_RW;
347 if (dir_made) {
348 unlink(flagfn);
349 rmdir(mnt_dir);
353 return MOUNT_VAL_FAIL;
357 struct mntent *mount_fstab(char *dev_name, char *type, char *label, char *uuid)
359 struct mntent *mnt = NULL;
360 #if 0
361 if (eval("mount", "-a") == 0)
362 mnt = findmntents(dev_name, 0, NULL, 0);
363 #else
364 char spec[PATH_MAX+1];
366 if (label && *label) {
367 sprintf(spec, "LABEL=%s", label);
368 if (eval("mount", spec) == 0)
369 mnt = findmntents(dev_name, 0, NULL, 0);
372 if (!mnt && uuid && *uuid) {
373 sprintf(spec, "UUID=%s", uuid);
374 if (eval("mount", spec) == 0)
375 mnt = findmntents(dev_name, 0, NULL, 0);
378 if (!mnt) {
379 if (eval("mount", dev_name) == 0)
380 mnt = findmntents(dev_name, 0, NULL, 0);
383 if (!mnt) {
384 /* Still did not find what we are looking for, try absolute path */
385 if (realpath(dev_name, spec)) {
386 if (eval("mount", spec) == 0)
387 mnt = findmntents(dev_name, 0, NULL, 0);
390 #endif
392 if (mnt)
393 syslog(LOG_INFO, "USB %s fs at %s mounted on %s", type, dev_name, mnt->mnt_dir);
394 return (mnt);
398 /* Check if the UFD is still connected because the links created in /dev/discs
399 * are not removed when the UFD is unplugged.
400 * The file to read is: /proc/scsi/usb-storage-#/#, where # is the host no.
401 * We are looking for "Attached: Yes".
403 static int usb_ufd_connected(int host_no)
405 char proc_file[128];
406 #ifndef LINUX26
407 char line[256];
408 #endif
409 FILE *fp;
411 sprintf(proc_file, "%s/%s-%d/%d", PROC_SCSI_ROOT, USB_STORAGE, host_no, host_no);
412 fp = fopen(proc_file, "r");
414 if (!fp) {
415 /* try the way it's implemented in newer kernels: /proc/scsi/usb-storage/[host] */
416 sprintf(proc_file, "%s/%s/%d", PROC_SCSI_ROOT, USB_STORAGE, host_no);
417 fp = fopen(proc_file, "r");
420 if (fp) {
421 #ifdef LINUX26
422 fclose(fp);
423 return 1;
424 #else
425 while (fgets(line, sizeof(line), fp) != NULL) {
426 if (strstr(line, "Attached: Yes")) {
427 fclose(fp);
428 return 1;
431 fclose(fp);
432 #endif
435 return 0;
439 #ifndef MNT_DETACH
440 #define MNT_DETACH 0x00000002 /* from linux/fs.h - just detach from the tree */
441 #endif
442 int umount_mountpoint(struct mntent *mnt, uint flags);
443 int uswap_mountpoint(struct mntent *mnt, uint flags);
445 /* Unmount this partition from all its mountpoints. Note that it may
446 * actually be mounted several times, either with different names or
447 * with "-o bind" flag.
448 * If the special flagfile is now revealed, delete it and [attempt to] delete
449 * the directory.
451 int umount_partition(char *dev_name, int host_num, char *dsc_name, char *pt_name, uint flags)
453 sync(); /* This won't matter if the device is unplugged, though. */
455 if (flags & EFH_HUNKNOWN) {
456 /* EFH_HUNKNOWN flag is passed if the host was unknown.
457 * Only unmount disconnected drives in this case.
459 if (usb_ufd_connected(host_num))
460 return 0;
463 /* Find all the active swaps that are on this device and stop them. */
464 findmntents(dev_name, 1, uswap_mountpoint, flags);
466 /* Find all the mountpoints that are for this device and unmount them. */
467 findmntents(dev_name, 0, umount_mountpoint, flags);
468 return 0;
471 int uswap_mountpoint(struct mntent *mnt, uint flags)
473 swapoff(mnt->mnt_fsname);
474 return 0;
477 int umount_mountpoint(struct mntent *mnt, uint flags)
479 int ret = 1, count;
480 char flagfn[128];
482 sprintf(flagfn, "%s/.autocreated-dir", mnt->mnt_dir);
484 /* Run user pre-unmount scripts if any. It might be too late if
485 * the drive has been disconnected, but we'll try it anyway.
487 if (nvram_get_int("usb_automount"))
488 run_nvscript("script_usbumount", mnt->mnt_dir, 3);
489 /* Run *.autostop scripts located in the root of the partition being unmounted if any. */
490 run_userfile(mnt->mnt_dir, ".autostop", mnt->mnt_dir, 5);
491 run_nvscript("script_autostop", mnt->mnt_dir, 5);
493 count = 0;
494 while ((ret = umount(mnt->mnt_dir)) && (count < 2)) {
495 count++;
496 /* If we could not unmount the drive on the 1st try,
497 * kill all NAS applications so they are not keeping the device busy -
498 * unless it's an unmount request from the Web GUI.
500 if ((count == 1) && ((flags & EFH_USER) == 0))
501 restart_nas_services(1, 0);
502 sleep(1);
505 if (ret == 0)
506 syslog(LOG_INFO, "USB partition unmounted from %s", mnt->mnt_dir);
508 if (ret && ((flags & EFH_SHUTDN) != 0)) {
509 /* If system is stopping (not restarting), and we couldn't unmount the
510 * partition, try to remount it as read-only. Ignore the return code -
511 * we can still try to do a lazy unmount.
513 eval("mount", "-o", "remount,ro", mnt->mnt_dir);
516 if (ret && ((flags & EFH_USER) == 0)) {
517 /* Make one more try to do a lazy unmount unless it's an unmount
518 * request from the Web GUI.
519 * MNT_DETACH will expose the underlying mountpoint directory to all
520 * except whatever has cd'ed to the mountpoint (thereby making it busy).
521 * So the unmount can't actually fail. It disappears from the ken of
522 * everyone else immediately, and from the ken of whomever is keeping it
523 * busy when they move away from it. And then it disappears for real.
525 ret = umount2(mnt->mnt_dir, MNT_DETACH);
526 syslog(LOG_INFO, "USB partition busy - will unmount ASAP from %s", mnt->mnt_dir);
529 if (ret == 0) {
530 if ((unlink(flagfn) == 0)) {
531 // Only delete the directory if it was auto-created
532 rmdir(mnt->mnt_dir);
535 return (ret == 0);
539 /* Mount this partition on this disc.
540 * If the device is already mounted on any mountpoint, don't mount it again.
541 * If this is a swap partition, try swapon -a.
542 * If this is a regular partition, try mount -a.
544 * Before we mount any partitions:
545 * If the type is swap and /etc/fstab exists, do "swapon -a"
546 * If /etc/fstab exists, try mounting using fstab.
547 * We delay invoking mount because mount will probe all the partitions
548 * to read the labels, and we don't want it to do that early on.
549 * We don't invoke swapon until we actually find a swap partition.
551 * If the mount succeeds, execute the *.autorun scripts in the top
552 * directory of the newly mounted partition.
553 * Returns NZ for success, 0 if we did not mount anything.
555 int mount_partition(char *dev_name, int host_num, char *dsc_name, char *pt_name, uint flags)
557 char the_label[128], mountpoint[128], uuid[40];
558 int ret;
559 char *type, *p;
560 static char *swp_argv[] = { "swapon", "-a", NULL };
561 struct mntent *mnt;
563 if ((type = find_label_or_uuid(dev_name, the_label, uuid)) == NULL)
564 return 0;
566 if (f_exists("/etc/fstab")) {
567 if (strcmp(type, "swap") == 0) {
568 _eval(swp_argv, NULL, 0, NULL);
569 return 0;
572 if (mount_r(dev_name, NULL, NULL) == MOUNT_VAL_EXIST)
573 return 0;
575 if ((mnt = mount_fstab(dev_name, type, the_label, uuid))) {
576 strcpy(mountpoint, mnt->mnt_dir);
577 ret = MOUNT_VAL_RW;
578 goto done;
582 if (*the_label != 0) {
583 for (p = the_label; *p; p++) {
584 if (!isalnum(*p) && !strchr("+-&.@", *p))
585 *p = '_';
587 sprintf(mountpoint, "%s/%s", MOUNT_ROOT, the_label);
588 if ((ret = mount_r(dev_name, mountpoint, type)))
589 goto done;
592 /* Can't mount to /mnt/LABEL, so try mounting to /mnt/discDN_PN */
593 sprintf(mountpoint, "%s/%s", MOUNT_ROOT, pt_name);
594 ret = mount_r(dev_name, mountpoint, type);
595 done:
596 if (ret == MOUNT_VAL_RONLY || ret == MOUNT_VAL_RW)
598 /* Run user *.autorun and post-mount scripts if any. */
599 run_userfile(mountpoint, ".autorun", mountpoint, 3);
600 if (nvram_get_int("usb_automount"))
601 run_nvscript("script_usbmount", mountpoint, 3);
603 return (ret == MOUNT_VAL_RONLY || ret == MOUNT_VAL_RW);
607 #if 0 /* LINUX26 */
610 * Finds SCSI Host number. Returns the host number >=0 if found, or (-1) otherwise.
611 * The name and host number of scsi block device in kernel 2.6 (for attached devices) can be found as
612 * /sys($DEVPATH)/host<host_no>/target<*>/<id>/block:[sda|sdb|...]
613 * where $DEVPATH is passed to hotplug events, and looks like
614 * /devices/pci0000:00/0000:00:04.1/usb1/1-1/1-1:1.2
616 * For printers this function finds a minor assigned to a printer
617 * /sys($DEVPATH)/usb:lp[0|1|2|...]
619 int find_dev_host(const char *devpath)
621 DIR *usb_devpath;
622 struct dirent *dp;
623 char buf[256];
624 int host = -1; /* Scsi Host */
626 sprintf(buf, "/sys%s", devpath);
627 if ((usb_devpath = opendir(buf))) {
628 while ((dp = readdir(usb_devpath))) {
629 errno = 0;
630 if (strncmp(dp->d_name, "host", 4) == 0) {
631 host = strtol(dp->d_name + 4, (char **)NULL, 10);
632 if (errno)
633 host = -1;
634 else
635 break;
637 else if (strncmp(dp->d_name, "usb:lp", 6) == 0) {
638 host = strtol(dp->d_name + 6, (char **)NULL, 10);
639 if (errno)
640 host = -1;
641 else
642 break;
644 else
645 continue;
647 closedir(usb_devpath);
649 return (host);
652 #endif /* LINUX26 */
655 /* Mount or unmount all partitions on this controller.
656 * Parameter: action_add:
657 * 0 = unmount
658 * >0 = mount only if automount config option is enabled.
659 * <0 = mount regardless of config option.
661 void hotplug_usb_storage_device(int host_no, int action_add, uint flags)
663 if (!nvram_get_int("usb_enable"))
664 return;
665 _dprintf("%s: host %d action: %d\n", __FUNCTION__, host_no, action_add);
667 if (action_add) {
668 if (nvram_get_int("usb_storage") && (nvram_get_int("usb_automount") || action_add < 0)) {
669 /* Do not probe the device here. It's either initiated by user,
670 * or hotplug_usb() already did.
672 if (exec_for_host(host_no, 0x00, flags, mount_partition)) {
673 restart_nas_services(0, 1); // restart all NAS applications
677 else {
678 if (nvram_get_int("usb_storage") || ((flags & EFH_USER) == 0)) {
679 /* When unplugged, unmount the device even if
680 * usb storage is disabled in the GUI.
682 exec_for_host(host_no, (flags & EFH_USER) ? 0x00 : 0x02, flags, umount_partition);
683 /* Restart NAS applications (they could be killed by umount_mountpoint),
684 * or just re-read the configuration.
686 restart_nas_services(0, 1);
692 /* This gets called at reboot or upgrade. The system is stopping. */
693 void remove_storage_main(int shutdn)
695 if (shutdn)
696 restart_nas_services(1, 0);
697 /* Unmount all partitions */
698 exec_for_host(-1, 0x02, shutdn ? EFH_SHUTDN : 0, umount_partition);
702 /*******
703 * All the complex locking & checking code was removed when the kernel USB-storage
704 * bugs were fixed.
705 * The crash bug was with overlapped I/O to different USB drives, not specifically
706 * with mount processing.
708 * And for USB devices that are slow to come up. The kernel now waits until the
709 * USB drive has settled, and it correctly reads the partition table before calling
710 * the hotplug agent.
712 * The kernel patch was cleaning up data structures on an unplug. It
713 * needs to wait until the disk is unmounted. We have 20 seconds to do
714 * the unmounts.
715 *******/
718 /* Plugging or removing usb device
720 * On an occurrance, multiple hotplug events may be fired off.
721 * For example, if a hub is plugged or unplugged, an event
722 * will be generated for everything downstream of it, plus one for
723 * the hub itself. These are fired off simultaneously, not serially.
724 * This means that many many hotplug processes will be running at
725 * the same time.
727 * The hotplug event generated by the kernel gives us several pieces
728 * of information:
729 * PRODUCT is vendorid/productid/rev#.
730 * DEVICE is /proc/bus/usb/bus#/dev#
731 * ACTION is add or remove
732 * SCSI_HOST is the host (controller) number (this relies on the custom kernel patch)
734 * Note that when we get a hotplug add event, the USB susbsystem may
735 * or may not have yet tried to read the partition table of the
736 * device. For a new controller that has never been seen before,
737 * generally yes. For a re-plug of a controller that has been seen
738 * before, generally no.
740 * On a remove, the partition info has not yet been expunged. The
741 * partitions show up as /dev/discs/disc#/part#, and /proc/partitions.
742 * It appears that doing a "stat" for a non-existant partition will
743 * causes the kernel to re-validate the device and update the
744 * partition table info. However, it won't re-validate if the disc is
745 * mounted--you'll get a "Device busy for revalidation (usage=%d)" in
746 * syslog.
748 * The $INTERFACE is "class/subclass/protocol"
749 * Some interesting classes:
750 * 8 = mass storage
751 * 7 = printer
752 * 3 = HID. 3/1/2 = mouse.
753 * 6 = still image (6/1/1 = Digital camera Camera)
754 * 9 = Hub
755 * 255 = scanner (255/255/255)
757 * Observed:
758 * Hub seems to have no INTERFACE (null), and TYPE of "9/0/0"
759 * Flash disk seems to have INTERFACE of "8/6/80", and TYPE of "0/0/0"
761 * When a hub is unplugged, a hotplug event is generated for it and everything
762 * downstream from it. You cannot depend on getting these events in any
763 * particular order, since there will be many hotplug programs all fired off
764 * at almost the same time.
765 * On a remove, don't try to access the downstream devices right away, give the
766 * kernel time to finish cleaning up all the data structures, which will be
767 * in the process of being torn down.
769 * On the initial plugin, the first time the kernel usb-storage subsystem sees
770 * the host (identified by GUID), it automatically reads the partition table.
771 * On subsequent plugins, it does not.
773 * Special values for Web Administration to unmount or remount
774 * all partitions of the host:
775 * INTERFACE=TOMATO/...
776 * ACTION=add/remove
777 * SCSI_HOST=<host_no>
778 * If host_no is negative, we unmount all partions of *all* hosts.
780 void hotplug_usb(void)
782 int add;
783 int host = -1;
784 char *interface = getenv("INTERFACE");
785 char *action = getenv("ACTION");
786 char *product = getenv("PRODUCT");
787 #ifdef LINUX26
788 char *device = getenv("DEVICENAME");
789 int is_block = strcmp(getenv("SUBSYSTEM") ? : "", "block") == 0;
790 #else
791 char *device = getenv("DEVICE");
792 #endif
793 char *scsi_host = getenv("SCSI_HOST");
795 _dprintf("%s hotplug INTERFACE=%s ACTION=%s PRODUCT=%s HOST=%s DEVICE=%s\n",
796 getenv("SUBSYSTEM") ? : "USB", interface, action, product, scsi_host, device);
798 if (!nvram_get_int("usb_enable")) return;
799 #ifdef LINUX26
800 if (!action || ((!interface || !product) && !is_block))
801 #else
802 if (!interface || !action || !product) /* Hubs bail out here. */
803 #endif
804 return;
806 if (scsi_host)
807 host = atoi(scsi_host);
809 if (!wait_action_idle(10)) return;
811 add = (strcmp(action, "add") == 0);
812 if (add && (strncmp(interface ? : "", "TOMATO/", 7) != 0)) {
813 #ifdef LINUX26
814 if (!is_block && device)
815 #endif
816 syslog(LOG_DEBUG, "Attached USB device %s [INTERFACE=%s PRODUCT=%s]",
817 device, interface, product);
818 #ifndef LINUX26
819 /* To allow automount to be blocked on startup.
820 * In kernel 2.6 we still need to serialize mount/umount calls -
821 * so the lock is down below in the "block" hotplug processing.
823 file_unlock(file_lock("usb"));
824 #endif
827 if (strncmp(interface ? : "", "TOMATO/", 7) == 0) { /* web admin */
828 if (scsi_host == NULL)
829 host = atoi(product); // for backward compatibility
830 /* If host is negative, unmount all partitions of *all* hosts.
831 * If host == -1, execute "soft" unmount (do not kill NAS apps, no "lazy" umount).
832 * If host == -2, run "hard" unmount, as if the drive is unplugged.
833 * This feature can be used in custom scripts as following:
835 * # INTERFACE=TOMATO/1 ACTION=remove PRODUCT=-1 SCSI_HOST=-1 hotplug usb
837 * PRODUCT is required to pass the env variables verification.
839 /* Unmount or remount all partitions of the host. */
840 hotplug_usb_storage_device(host < 0 ? -1 : host, add ? -1 : 0,
841 host == -2 ? 0 : EFH_USER);
843 #ifdef LINUX26
844 else if (is_block && strcmp(getenv("MAJOR") ? : "", "8") == 0 && strcmp(getenv("PHYSDEVBUS") ? : "", "scsi") == 0) {
845 /* scsi partition */
846 char devname[64];
847 int lock;
849 sprintf(devname, "/dev/%s", device);
850 lock = file_lock("usb");
851 if (add) {
852 if (nvram_get_int("usb_storage") && nvram_get_int("usb_automount")) {
853 int minor = atoi(getenv("MINOR") ? : "0");
854 if ((minor % 16) == 0 && !is_no_partition(device)) {
855 /* This is a disc, and not a "no-partition" device,
856 * like APPLE iPOD shuffle. We can't mount it.
858 return;
860 if (mount_partition(devname, host, NULL, device, EFH_HP_ADD)) {
861 restart_nas_services(0, 1); // restart all NAS applications
865 else {
866 /* When unplugged, unmount the device even if usb storage is disabled in the GUI */
867 umount_partition(devname, host, NULL, device, EFH_HP_REMOVE);
868 /* Restart NAS applications (they could be killed by umount_mountpoint),
869 * or just re-read the configuration.
871 restart_nas_services(0, 1);
873 file_unlock(lock);
875 #endif
876 else if (strncmp(interface ? : "", "8/", 2) == 0) { /* usb storage */
877 run_nvscript("script_usbhotplug", NULL, 2);
878 #ifndef LINUX26
879 hotplug_usb_storage_device(host, add, (add ? EFH_HP_ADD : EFH_HP_REMOVE) | (host < 0 ? EFH_HUNKNOWN : 0));
880 #endif
882 else { /* It's some other type of USB device, not storage. */
883 #ifdef LINUX26
884 if (is_block) return;
885 #endif
886 /* Do nothing. The user's hotplug script must do it all. */
887 run_nvscript("script_usbhotplug", NULL, 2);