]> git.ipfire.org Git - thirdparty/util-linux.git/blob - sys-utils/eject.c
eject: unlock door before issuing CDROMEJECT command
[thirdparty/util-linux.git] / sys-utils / eject.c
1 /*
2 * Copyright (C) 1994-2005 Jeff Tranter (tranter@pobox.com)
3 * Copyright (C) 2012 Karel Zak <kzak@redhat.com>
4 * Copyright (C) Michal Luscon <mluscon@redhat.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #include <unistd.h>
22 #include <stdlib.h>
23 #include <stdio.h>
24 #include <string.h>
25 #include <fcntl.h>
26 #include <limits.h>
27 #include <err.h>
28 #include <stdarg.h>
29
30 #include <getopt.h>
31 #include <errno.h>
32 #include <regex.h>
33 #include <sys/types.h>
34 #include <sys/stat.h>
35 #include <sys/ioctl.h>
36 #include <sys/wait.h>
37 #include <sys/mtio.h>
38 #include <linux/cdrom.h>
39 #include <linux/fd.h>
40 #include <sys/mount.h>
41 #include <scsi/scsi.h>
42 #include <scsi/sg.h>
43 #include <scsi/scsi_ioctl.h>
44 #include <sys/time.h>
45
46 #include <libmount.h>
47
48 #include "c.h"
49 #include "closestream.h"
50 #include "nls.h"
51 #include "strutils.h"
52 #include "xalloc.h"
53 #include "pathnames.h"
54 #include "sysfs.h"
55
56 #define EJECT_DEFAULT_DEVICE "/dev/cdrom"
57
58
59 /* Used by the toggle_tray() function. If ejecting the tray takes this
60 * time or less, the tray was probably already ejected, so we close it
61 * again.
62 */
63 #define TRAY_WAS_ALREADY_OPEN_USECS 200000 /* about 0.2 seconds */
64
65 /* eject(1) is able to eject only 'removable' devices (attribute in /sys)
66 * _or_ devices connected by hotplug subsystem.
67 */
68 static const char * const hotplug_subsystems[] = {
69 "usb",
70 "ieee1394",
71 "pcmcia",
72 "mmc",
73 "ccw"
74 };
75
76 /* Global Variables */
77 static int a_option; /* command flags and arguments */
78 static int c_option;
79 static int d_option;
80 static int f_option;
81 static int F_option;
82 static int n_option;
83 static int q_option;
84 static int r_option;
85 static int s_option;
86 static int t_option;
87 static int T_option;
88 static int X_option;
89 static int v_option;
90 static int x_option;
91 static int p_option;
92 static int m_option;
93 static int M_option;
94 static int i_option;
95 static int a_arg;
96 static int i_arg;
97 static long int c_arg;
98 static long int x_arg;
99
100 struct libmnt_table *mtab;
101 struct libmnt_cache *cache;
102
103 static void vinfo(const char *fmt, va_list va)
104 {
105 fprintf(stdout, "%s: ", program_invocation_short_name);
106 vprintf(fmt, va);
107 fputc('\n', stdout);
108 }
109
110 static inline void verbose(const char *fmt, ...)
111 {
112 va_list va;
113
114 if (!v_option)
115 return;
116
117 va_start(va, fmt);
118 vinfo(fmt, va);
119 va_end(va);
120 }
121
122 static inline void info(const char *fmt, ...)
123 {
124 va_list va;
125 va_start(va, fmt);
126 vinfo(fmt, va);
127 va_end(va);
128 }
129
130 static void __attribute__ ((__noreturn__)) usage(FILE * out)
131 {
132 fputs(USAGE_HEADER, out);
133
134 fprintf(out,
135 _(" %s [options] [<device>|<mountpoint>]\n"), program_invocation_short_name);
136
137 fputs(USAGE_OPTIONS, out);
138 fputs(_(" -a, --auto <on|off> turn auto-eject feature on or off\n"
139 " -c, --changerslot <slot> switch discs on a CD-ROM changer\n"
140 " -d, --default display default device\n"
141 " -f, --floppy eject floppy\n"
142 " -F, --force don't care about device type\n"
143 " -i, --manualeject <on|off> toggle manual eject protection on/off\n"
144 " -m, --no-unmount do not unmount device even if it is mounted\n"
145 " -M, --no-partitions-unmount do not unmount another partitions\n"
146 " -n, --noop don't eject, just show device found\n"
147 " -p, --proc use /proc/mounts instead of /etc/mtab\n"
148 " -q, --tape eject tape\n"
149 " -r, --cdrom eject CD-ROM\n"
150 " -s, --scsi eject SCSI device\n"
151 " -t, --trayclose close tray\n"
152 " -T, --traytoggle toggle tray\n"
153 " -v, --verbose enable verbose output\n"
154 " -x, --cdspeed <speed> set CD-ROM max speed\n"
155 " -X, --listspeed list CD-ROM available speeds\n"),
156 out);
157
158 fputs(USAGE_SEPARATOR, out);
159 fputs(USAGE_HELP, out);
160 fputs(USAGE_VERSION, out);
161
162 fputs(_("\nBy default tries -r, -s, -f, and -q in order until success.\n"), out);
163 fprintf(out, USAGE_MAN_TAIL("eject(1)"));
164
165 exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS);
166 }
167
168
169 /* Handle command line options. */
170 static void parse_args(int argc, char **argv, char **device)
171 {
172 static const struct option long_opts[] =
173 {
174 {"auto", required_argument, NULL, 'a'},
175 {"cdrom", no_argument, NULL, 'r'},
176 {"cdspeed", required_argument, NULL, 'x'},
177 {"changerslot", required_argument, NULL, 'c'},
178 {"default", no_argument, NULL, 'd'},
179 {"floppy", no_argument, NULL, 'f'},
180 {"force", no_argument, NULL, 'F'},
181 {"help", no_argument, NULL, 'h'},
182 {"listspeed", no_argument, NULL, 'X'},
183 {"manualeject", required_argument, NULL, 'i'},
184 {"noop", no_argument, NULL, 'n'},
185 {"no-unmount", no_argument, NULL, 'm'},
186 {"no-partitions-unmount", no_argument, NULL, 'M' },
187 {"proc", no_argument, NULL, 'p'},
188 {"scsi", no_argument, NULL, 's'},
189 {"tape", no_argument, NULL, 'q'},
190 {"trayclose", no_argument, NULL, 't'},
191 {"traytoggle", no_argument, NULL, 'T'},
192 {"verbose", no_argument, NULL, 'v'},
193 {"version", no_argument, NULL, 'V'},
194 {0, 0, 0, 0}
195 };
196 int c;
197
198 while ((c = getopt_long(argc, argv,
199 "a:c:i:x:dfFhnqrstTXvVpmM", long_opts, NULL)) != -1) {
200 switch (c) {
201 case 'a':
202 a_option = 1;
203 if (!strcmp(optarg, "0") || !strcmp(optarg, "off"))
204 a_arg = 0;
205 else if (!strcmp(optarg, "1") || !strcmp(optarg, "on"))
206 a_arg = 1;
207 else
208 errx(EXIT_FAILURE, _("invalid argument to --auto/-a option"));
209 break;
210 case 'c':
211 c_option = 1;
212 c_arg = strtoul_or_err(optarg, _("invalid argument to --changerslot/-c option"));
213 break;
214 case 'x':
215 x_option = 1;
216 x_arg = strtoul_or_err(optarg, _("invalid argument to --cdspeed/-x option"));
217 break;
218 case 'd':
219 d_option = 1;
220 break;
221 case 'f':
222 f_option = 1;
223 break;
224 case 'F':
225 F_option = 1;
226 break;
227 case 'h':
228 usage(stdout);
229 break;
230 case 'i':
231 i_option = 1;
232 if (!strcmp(optarg, "0") || !strcmp(optarg, "off"))
233 i_arg = 0;
234 else if (!strcmp(optarg, "1") || !strcmp(optarg, "on"))
235 i_arg = 1;
236 else
237 errx(EXIT_FAILURE, _("invalid argument to --manualeject/-i option"));
238 break;
239 case 'm':
240 m_option = 1;
241 break;
242 case 'M':
243 M_option = 1;
244 break;
245 case 'n':
246 n_option = 1;
247 break;
248 case 'p':
249 p_option = 1;
250 break;
251 case 'q':
252 q_option = 1;
253 break;
254 case 'r':
255 r_option = 1;
256 break;
257 case 's':
258 s_option = 1;
259 break;
260 case 't':
261 t_option = 1;
262 break;
263 case 'T':
264 T_option = 1;
265 break;
266 case 'X':
267 X_option = 1;
268 break;
269 case 'v':
270 v_option = 1;
271 break;
272 case 'V':
273 printf(UTIL_LINUX_VERSION);
274 exit(EXIT_SUCCESS);
275 break;
276 default:
277 case '?':
278 usage(stderr);
279 break;
280 }
281 }
282
283 /* check for a single additional argument */
284 if ((argc - optind) > 1)
285 errx(EXIT_FAILURE, _("too many arguments"));
286
287 if ((argc - optind) == 1)
288 *device = xstrdup(argv[optind]);
289 }
290
291 /*
292 * Given name, such as foo, see if any of the following exist:
293 *
294 * foo (if foo starts with '.' or '/')
295 * /dev/foo
296 *
297 * If found, return the full path. If not found, return 0.
298 * Returns pointer to dynamically allocated string.
299 */
300 static char *find_device(const char *name)
301 {
302 if (!name)
303 return NULL;
304
305 if ((*name == '.' || *name == '/') && access(name, F_OK) == 0)
306 return xstrdup(name);
307 else {
308 char buf[PATH_MAX];
309
310 snprintf(buf, sizeof(buf), "/dev/%s", name);
311 if (access(buf, F_OK) == 0)
312 return xstrdup(buf);
313 }
314
315 return NULL;
316 }
317
318 /* Set or clear auto-eject mode. */
319 static void auto_eject(int fd, int on)
320 {
321 int status = -1;
322
323 #if defined(CDROM_SET_OPTIONS) && defined(CDROM_CLEAR_OPTIONS)
324 if (on)
325 status = ioctl(fd, CDROM_SET_OPTIONS, CDO_AUTO_EJECT);
326 else
327 status = ioctl(fd, CDROM_CLEAR_OPTIONS, CDO_AUTO_EJECT);
328 #else
329 errno = ENOSYS;
330 #endif
331 if (status < 0)
332 err(EXIT_FAILURE,_("CD-ROM auto-eject command failed"));
333 }
334
335 /*
336 * Stops CDROM from opening on manual eject pressing the button.
337 * This can be useful when you carry your laptop
338 * in your bag while it's on and no CD inserted in it's drive.
339 * Implemented as found in Documentation/ioctl/cdrom.txt
340 *
341 * TODO: Maybe we should check this also:
342 * EDRIVE_CANT_DO_THIS Door lock function not supported.
343 * EBUSY Attempt to unlock when multiple users
344 * have the drive open and not CAP_SYS_ADMIN
345 */
346 static void manual_eject(int fd, int on)
347 {
348 if (ioctl(fd, CDROM_LOCKDOOR, on) < 0)
349 err(EXIT_FAILURE, _("CD-ROM lock door command failed"));
350
351 if (on)
352 info(_("CD-Drive may NOT be ejected with device button"));
353 else
354 info(_("CD-Drive may be ejected with device button"));
355 }
356
357 /*
358 * Changer select. CDROM_SELECT_DISC is preferred, older kernels used
359 * CDROMLOADFROMSLOT.
360 */
361 static void changer_select(int fd, int slot)
362 {
363 #ifdef CDROM_SELECT_DISC
364 if (ioctl(fd, CDROM_SELECT_DISC, slot) < 0)
365 err(EXIT_FAILURE, _("CD-ROM select disc command failed"));
366
367 #elif defined CDROMLOADFROMSLOT
368 if (ioctl(fd, CDROMLOADFROMSLOT, slot) != 0)
369 err(EXIT_FAILURE, _("CD-ROM load from slot command failed"));
370 #else
371 warnx(_("IDE/ATAPI CD-ROM changer not supported by this kernel\n") );
372 #endif
373 }
374
375 /*
376 * Close tray. Not supported by older kernels.
377 */
378 static void close_tray(int fd)
379 {
380 int status;
381
382 #if defined(CDROMCLOSETRAY) || defined(CDIOCCLOSE)
383 #if defined(CDROMCLOSETRAY)
384 status = ioctl(fd, CDROMCLOSETRAY);
385 #elif defined(CDIOCCLOSE)
386 status = ioctl(fd, CDIOCCLOSE);
387 #endif
388 if (status != 0)
389 err(EXIT_FAILURE, _("CD-ROM tray close command failed"));
390 #else
391 warnx(_("CD-ROM tray close command not supported by this kernel\n"));
392 #endif
393 }
394
395 /*
396 * Eject using CDROMEJECT ioctl.
397 */
398 static int eject_cdrom(int fd)
399 {
400 #if defined(CDROMEJECT)
401 int ret = ioctl(fd, CDROM_LOCKDOOR, 0);
402 if (ret < 0)
403 return 0;
404 return ioctl(fd, CDROMEJECT) >= 0;
405 #elif defined(CDIOCEJECT)
406 return ioctl(fd, CDIOCEJECT) >= 0;
407 #else
408 warnx(_("CD-ROM eject unsupported"));
409 errno = ENOSYS;
410 return 0;
411 #endif
412 }
413
414 /*
415 * Toggle tray.
416 *
417 * Written by Benjamin Schwenk <benjaminschwenk@yahoo.de> and
418 * Sybren Stuvel <sybren@thirdtower.com>
419 *
420 * Not supported by older kernels because it might use
421 * CloseTray().
422 *
423 */
424 static void toggle_tray(int fd)
425 {
426 struct timeval time_start, time_stop;
427 int time_elapsed;
428
429 #ifdef CDROM_DRIVE_STATUS
430 /* First ask the CDROM for info, otherwise fall back to manual. */
431 switch (ioctl(fd, CDROM_DRIVE_STATUS)) {
432 case CDS_TRAY_OPEN:
433 close_tray(fd);
434 return;
435
436 case CDS_NO_DISC:
437 case CDS_DISC_OK:
438 if (!eject_cdrom(fd))
439 err(EXIT_FAILURE, _("CD-ROM eject command failed"));
440 return;
441 case CDS_NO_INFO:
442 warnx(_("no CD-ROM information available"));
443 return;
444 case CDS_DRIVE_NOT_READY:
445 warnx(_("CD-ROM drive is not ready"));
446 return;
447 default:
448 abort();
449 }
450 #endif
451
452 /* Try to open the CDROM tray and measure the time therefor
453 * needed. In my experience the function needs less than 0.05
454 * seconds if the tray was already open, and at least 1.5 seconds
455 * if it was closed. */
456 gettimeofday(&time_start, NULL);
457
458 /* Send the CDROMEJECT command to the device. */
459 if (!eject_cdrom(fd))
460 err(EXIT_FAILURE, _("CD-ROM eject command failed"));
461
462 /* Get the second timestamp, to measure the time needed to open
463 * the tray. */
464 gettimeofday(&time_stop, NULL);
465
466 time_elapsed = (time_stop.tv_sec * 1000000 + time_stop.tv_usec) -
467 (time_start.tv_sec * 1000000 + time_start.tv_usec);
468
469 /* If the tray "opened" too fast, we can be nearly sure, that it
470 * was already open. In this case, close it now. Else the tray was
471 * closed before. This would mean that we are done. */
472 if (time_elapsed < TRAY_WAS_ALREADY_OPEN_USECS)
473 close_tray(fd);
474 }
475
476 /*
477 * Select Speed of CD-ROM drive.
478 * Thanks to Roland Krivanek (krivanek@fmph.uniba.sk)
479 * http://dmpc.dbp.fmph.uniba.sk/~krivanek/cdrom_speed/
480 */
481 static void select_speed(int fd, int speed)
482 {
483 #ifdef CDROM_SELECT_SPEED
484 if (ioctl(fd, CDROM_SELECT_SPEED, speed) != 0)
485 err(EXIT_FAILURE, _("CD-ROM select speed command failed"));
486 #else
487 warnx(_("CD-ROM select speed command not supported by this kernel"));
488 #endif
489 }
490
491 /*
492 * Read Speed of CD-ROM drive. From Linux 2.6.13, the current speed
493 * is correctly reported
494 */
495 static int read_speed(const char *devname)
496 {
497 int drive_number = -1;
498 char *name;
499 FILE *f;
500
501 f = fopen(_PATH_PROC_CDROMINFO, "r");
502 if (!f)
503 err(EXIT_FAILURE, _("cannot open %s"), _PATH_PROC_CDROMINFO);
504
505 name = strrchr(devname, '/') + 1;
506
507 while (name && !feof(f)) {
508 char line[512];
509 char *str;
510
511 if (!fgets(line, sizeof(line), f))
512 break;
513
514 /* find drive number in line "drive name" */
515 if (drive_number == -1) {
516 if (strncmp(line, "drive name:", 11) == 0) {
517 str = strtok(&line[11], "\t ");
518 drive_number = 0;
519 while (str && strncmp(name, str, strlen(name)) != 0) {
520 drive_number++;
521 str = strtok(NULL, "\t ");
522 if (!str)
523 errx(EXIT_FAILURE,
524 _("%s: failed to finding CD-ROM name"),
525 _PATH_PROC_CDROMINFO);
526 }
527 }
528 /* find line "drive speed" and read the correct speed */
529 } else {
530 if (strncmp(line, "drive speed:", 12) == 0) {
531 int i;
532
533 str = strtok(&line[12], "\t ");
534 for (i = 1; i < drive_number; i++)
535 str = strtok(NULL, "\t ");
536
537 if (!str)
538 errx(EXIT_FAILURE,
539 _("%s: failed to read speed"),
540 _PATH_PROC_CDROMINFO);
541 fclose(f);
542 return atoi(str);
543 }
544 }
545 }
546
547 errx(EXIT_FAILURE, _("failed to read speed"));
548 }
549
550 /*
551 * List Speed of CD-ROM drive.
552 */
553 static void list_speeds(const char *name, int fd)
554 {
555 #ifdef CDROM_SELECT_SPEED
556 int max_speed, curr_speed = 0, prev_speed;
557
558 select_speed(fd, 0);
559 max_speed = read_speed(name);
560
561 while (curr_speed < max_speed) {
562 prev_speed = curr_speed;
563 select_speed(fd, prev_speed + 1);
564 curr_speed = read_speed(name);
565 if (curr_speed > prev_speed)
566 printf("%d ", curr_speed);
567 else
568 curr_speed = prev_speed + 1;
569 }
570
571 printf("\n");
572 #else
573 warnx(_("CD-ROM select speed command not supported by this kernel"));
574 #endif
575 }
576
577 /*
578 * Eject using SCSI SG_IO commands. Return 1 if successful, 0 otherwise.
579 */
580 static int eject_scsi(int fd)
581 {
582 int status, k;
583 sg_io_hdr_t io_hdr;
584 unsigned char allowRmBlk[6] = {ALLOW_MEDIUM_REMOVAL, 0, 0, 0, 0, 0};
585 unsigned char startStop1Blk[6] = {START_STOP, 0, 0, 0, 1, 0};
586 unsigned char startStop2Blk[6] = {START_STOP, 0, 0, 0, 2, 0};
587 unsigned char inqBuff[2];
588 unsigned char sense_buffer[32];
589
590 if ((ioctl(fd, SG_GET_VERSION_NUM, &k) < 0) || (k < 30000)) {
591 verbose(_("not an sg device, or old sg driver"));
592 return 0;
593 }
594
595 memset(&io_hdr, 0, sizeof(sg_io_hdr_t));
596 io_hdr.interface_id = 'S';
597 io_hdr.cmd_len = 6;
598 io_hdr.mx_sb_len = sizeof(sense_buffer);
599 io_hdr.dxfer_direction = SG_DXFER_NONE;
600 io_hdr.dxfer_len = 0;
601 io_hdr.dxferp = inqBuff;
602 io_hdr.sbp = sense_buffer;
603 io_hdr.timeout = 10000;
604
605 io_hdr.cmdp = allowRmBlk;
606 status = ioctl(fd, SG_IO, (void *)&io_hdr);
607 if (status < 0)
608 return 0;
609
610 io_hdr.cmdp = startStop1Blk;
611 status = ioctl(fd, SG_IO, (void *)&io_hdr);
612 if (status < 0)
613 return 0;
614
615 io_hdr.cmdp = startStop2Blk;
616 status = ioctl(fd, SG_IO, (void *)&io_hdr);
617 if (status < 0)
618 return 0;
619
620 /* force kernel to reread partition table when new disc inserted */
621 status = ioctl(fd, BLKRRPART);
622 return 1;
623 }
624
625 /*
626 * Eject using FDEJECT ioctl. Return 1 if successful, 0 otherwise.
627 */
628 static int eject_floppy(int fd)
629 {
630 return ioctl(fd, FDEJECT) >= 0;
631 }
632
633
634 /*
635 * Rewind and eject using tape ioctl. Return 1 if successful, 0 otherwise.
636 */
637 static int eject_tape(int fd)
638 {
639 struct mtop op = { .mt_op = MTOFFL, .mt_count = 0 };
640
641 return ioctl(fd, MTIOCTOP, &op) >= 0;
642 }
643
644
645 /* umount a device. */
646 static void umount_one(const char *name)
647 {
648 int status;
649
650 if (!name)
651 return;
652
653 verbose(_("%s: unmounting"), name);
654
655 switch (fork()) {
656 case 0: /* child */
657 if (setgid(getgid()) < 0)
658 err(EXIT_FAILURE, _("cannot set group id"));
659
660 if (setuid(getuid()) < 0)
661 err(EXIT_FAILURE, _("cannot set user id"));
662
663 if (p_option)
664 execl("/bin/umount", "/bin/umount", name, "-n", NULL);
665 else
666 execl("/bin/umount", "/bin/umount", name, NULL);
667
668 errx(EXIT_FAILURE, _("unable to exec /bin/umount of `%s'"), name);
669
670 case -1:
671 warn( _("unable to fork"));
672 break;
673
674 default: /* parent */
675 wait(&status);
676 if (WIFEXITED(status) == 0)
677 errx(EXIT_FAILURE,
678 _("unmount of `%s' did not exit normally"), name);
679
680 if (WEXITSTATUS(status) != 0)
681 errx(EXIT_FAILURE, _("unmount of `%s' failed\n"), name);
682 break;
683 }
684 }
685
686 /* Open a device file. */
687 static int open_device(const char *name)
688 {
689 int fd = open(name, O_RDWR|O_NONBLOCK);
690
691 if (fd < 0)
692 fd = open(name, O_RDONLY|O_NONBLOCK);
693 if (fd == -1)
694 err(EXIT_FAILURE, _("cannot open %s"), name);
695 return fd;
696 }
697
698 /*
699 * See if device has been mounted by looking in mount table. If so, set
700 * device name and mount point name, and return 1, otherwise return 0.
701 */
702 static int device_get_mountpoint(char **devname, char **mnt)
703 {
704 struct libmnt_fs *fs;
705 int rc;
706
707 *mnt = NULL;
708
709 if (!mtab) {
710 mtab = mnt_new_table();
711 if (!mtab)
712 err(EXIT_FAILURE, _("failed to initialize libmount table"));
713
714 cache = mnt_new_cache();
715 mnt_table_set_cache(mtab, cache);
716
717 if (p_option)
718 rc = mnt_table_parse_file(mtab, _PATH_PROC_MOUNTINFO);
719 else
720 rc = mnt_table_parse_mtab(mtab, NULL);
721 if (rc)
722 err(EXIT_FAILURE, _("failed to parse mount table"));
723 }
724
725 fs = mnt_table_find_source(mtab, *devname, MNT_ITER_BACKWARD);
726 if (!fs) {
727 /* maybe 'devname' is mountpoint rather than a real device */
728 fs = mnt_table_find_target(mtab, *devname, MNT_ITER_BACKWARD);
729 if (fs) {
730 free(*devname);
731 *devname = xstrdup(mnt_fs_get_source(fs));
732 }
733 }
734
735 if (fs)
736 *mnt = xstrdup(mnt_fs_get_target(fs));
737 return *mnt ? 0 : -1;
738 }
739
740 static char *get_disk_devname(const char *device)
741 {
742 struct stat st;
743 dev_t diskno = 0;
744 char diskname[128];
745
746 if (stat(device, &st) != 0)
747 return NULL;
748
749 /* get whole-disk devno */
750 if (sysfs_devno_to_wholedisk(st.st_rdev, diskname,
751 sizeof(diskname), &diskno) != 0)
752 return NULL;
753
754 return st.st_rdev == diskno ? NULL : find_device(diskname);
755 }
756
757 static int umount_partitions(const char *disk, int checkonly)
758 {
759 struct sysfs_cxt cxt = UL_SYSFSCXT_EMPTY;
760 dev_t devno;
761 DIR *dir = NULL;
762 struct dirent *d;
763 int count = 0;
764
765 devno = sysfs_devname_to_devno(disk, NULL);
766 if (sysfs_init(&cxt, devno, NULL) != 0)
767 return 0;
768
769 /* open /sys/block/<wholedisk> */
770 if (!(dir = sysfs_opendir(&cxt, NULL)))
771 goto done;
772
773 /* scan for partition subdirs */
774 while ((d = readdir(dir))) {
775 if (!strcmp(d->d_name, ".") || !strcmp(d->d_name, ".."))
776 continue;
777
778 if (sysfs_is_partition_dirent(dir, d, disk)) {
779 char *mnt = NULL;
780 char *dev = find_device(d->d_name);
781
782 if (dev && device_get_mountpoint(&dev, &mnt) == 0) {
783 verbose(_("%s: mounted on %s"), dev, mnt);
784 if (!checkonly)
785 umount_one(mnt);
786 count++;
787 }
788 free(dev);
789 free(mnt);
790 }
791 }
792
793 done:
794 if (dir)
795 closedir(dir);
796 sysfs_deinit(&cxt);
797
798 return count;
799 }
800
801 static int is_hotpluggable_subsystem(const char *name)
802 {
803 size_t i;
804
805 for (i = 0; i < ARRAY_SIZE(hotplug_subsystems); i++)
806 if (strcmp(name, hotplug_subsystems[i]) == 0)
807 return 1;
808
809 return 0;
810 }
811
812 #define SUBSYSTEM_LINKNAME "/subsystem"
813
814 /*
815 * For example:
816 *
817 * chain: /sys/dev/block/../../devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/ \
818 * 1-1.2:1.0/host65/target65:0:0/65:0:0:0/block/sdb
819 *
820 * The function check if <chain>/subsystem symlink exists, if yes then returns
821 * basename of the readlink result, and remove the last subdirectory from the
822 * <chain> path.
823 */
824 static char *get_subsystem(char *chain, char *buf, size_t bufsz)
825 {
826 size_t len;
827 char *p;
828
829 if (!chain || !*chain)
830 return NULL;
831
832 len = strlen(chain);
833 if (len + sizeof(SUBSYSTEM_LINKNAME) > PATH_MAX)
834 return NULL;
835
836 do {
837 ssize_t sz;
838
839 /* append "/subsystem" to the path */
840 memcpy(chain + len, SUBSYSTEM_LINKNAME, sizeof(SUBSYSTEM_LINKNAME));
841
842 /* try if subsystem symlink exists */
843 sz = readlink(chain, buf, bufsz - 1);
844
845 /* remove last subsystem from chain */
846 chain[len] = '\0';
847 p = strrchr(chain, '/');
848 if (p) {
849 *p = '\0';
850 len = p - chain;
851 }
852
853 if (sz > 0) {
854 /* we found symlink to subsystem, return basename */
855 buf[sz] = '\0';
856 return basename(buf);
857 }
858
859 } while (p);
860
861 return NULL;
862 }
863
864 static int is_hotpluggable(const char* device)
865 {
866 struct sysfs_cxt cxt = UL_SYSFSCXT_EMPTY;
867 char devchain[PATH_MAX];
868 char subbuf[PATH_MAX];
869 dev_t devno;
870 int rc = 0;
871 ssize_t sz;
872 char *sub;
873
874 devno = sysfs_devname_to_devno(device, NULL);
875 if (sysfs_init(&cxt, devno, NULL) != 0)
876 return 0;
877
878 /* check /sys/dev/block/<maj>:<min>/removable attribute */
879 if (sysfs_read_int(&cxt, "removable", &rc) == 0 && rc == 1) {
880 verbose(_("%s: is removable device"), device);
881 goto done;
882 }
883
884 /* read /sys/dev/block/<maj>:<min> symlink */
885 sz = sysfs_readlink(&cxt, NULL, devchain, sizeof(devchain));
886 if (sz <= 0 || sz + sizeof(_PATH_SYS_DEVBLOCK "/") > sizeof(devchain))
887 goto done;
888
889 devchain[sz++] = '\0';
890
891 /* create absolute patch from the link */
892 memmove(devchain + sizeof(_PATH_SYS_DEVBLOCK "/") - 1, devchain, sz);
893 memcpy(devchain, _PATH_SYS_DEVBLOCK "/",
894 sizeof(_PATH_SYS_DEVBLOCK "/") - 1);
895
896 while ((sub = get_subsystem(devchain, subbuf, sizeof(subbuf)))) {
897 rc = is_hotpluggable_subsystem(sub);
898 if (rc) {
899 verbose(_("%s: connected by hotplug subsystem: %s"),
900 device, sub);
901 break;
902 }
903 }
904
905 done:
906 sysfs_deinit(&cxt);
907 return rc;
908 }
909
910
911 /* handle -x option */
912 static void set_device_speed(char *name)
913 {
914 int fd;
915
916 if (!x_option)
917 return;
918
919 if (x_arg == 0)
920 verbose(_("setting CD-ROM speed to auto"));
921 else
922 verbose(_("setting CD-ROM speed to %ldX"), x_arg);
923
924 fd = open_device(name);
925 select_speed(fd, x_arg);
926 exit(EXIT_SUCCESS);
927 }
928
929
930 /* main program */
931 int main(int argc, char **argv)
932 {
933 char *device = NULL;
934 char *disk = NULL;
935 char *mountpoint = NULL;
936 int worked = 0; /* set to 1 when successfully ejected */
937 int fd; /* file descriptor for device */
938
939 setlocale(LC_ALL,"");
940 bindtextdomain(PACKAGE, LOCALEDIR);
941 textdomain(PACKAGE);
942 atexit(close_stdout);
943
944 /* parse the command line arguments */
945 parse_args(argc, argv, &device);
946
947 /* handle -d option */
948 if (d_option) {
949 info(_("default device: `%s'"), EJECT_DEFAULT_DEVICE);
950 return EXIT_SUCCESS;
951 }
952
953 if (!device) {
954 device = mnt_resolve_path(EJECT_DEFAULT_DEVICE, NULL);
955 verbose(_("using default device `%s'"), device);
956 } else {
957 char *p;
958
959 if (device[strlen(device)-1] == '/')
960 device[strlen(device)-1] = '\0';
961
962 /* figure out full device or mount point name */
963 p = find_device(device);
964 if (p)
965 free(device);
966 else
967 p = device;
968
969 device = mnt_resolve_spec(p, NULL);
970 free(p);
971 }
972
973 if (!device)
974 errx(EXIT_FAILURE, _("%s: unable to find device"), device);
975
976 verbose(_("device name is `%s'"), device);
977
978 device_get_mountpoint(&device, &mountpoint);
979 if (mountpoint)
980 verbose(_("%s: mounted on %s"), device, mountpoint);
981 else
982 verbose(_("%s: not mounted"), device);
983
984 disk = get_disk_devname(device);
985 if (disk) {
986 verbose(_("%s: disc device: %s (disk device will be used for eject)"), device, disk);
987 free(device);
988 device = disk;
989 disk = NULL;
990 } else {
991 struct stat st;
992
993 if (stat(device, &st) != 0 || !S_ISBLK(st.st_mode))
994 errx(EXIT_FAILURE, _("%s: not found mountpoint or device "
995 "with the given name"), device);
996
997 verbose(_("%s: is whole-disk device"), device);
998 }
999
1000 if (F_option == 0 && is_hotpluggable(device) == 0)
1001 errx(EXIT_FAILURE, _("%s: is not hot-pluggable device"), device);
1002
1003 /* handle -n option */
1004 if (n_option) {
1005 info(_("device is `%s'"), device);
1006 verbose(_("exiting due to -n/--noop option"));
1007 return EXIT_SUCCESS;
1008 }
1009
1010 /* handle -i option */
1011 if (i_option) {
1012 fd = open_device(device);
1013 manual_eject(fd, i_arg);
1014 return EXIT_SUCCESS;
1015 }
1016
1017 /* handle -a option */
1018 if (a_option) {
1019 if (a_arg)
1020 verbose(_("%s: enabling auto-eject mode"), device);
1021 else
1022 verbose(_("%s: disabling auto-eject mode"), device);
1023 fd = open_device(device);
1024 auto_eject(fd, a_arg);
1025 return EXIT_SUCCESS;
1026 }
1027
1028 /* handle -t option */
1029 if (t_option) {
1030 verbose(_("%s: closing tray"), device);
1031 fd = open_device(device);
1032 close_tray(fd);
1033 set_device_speed(device);
1034 return EXIT_SUCCESS;
1035 }
1036
1037 /* handle -T option */
1038 if (T_option) {
1039 verbose(_("%s: toggling tray"), device);
1040 fd = open_device(device);
1041 toggle_tray(fd);
1042 set_device_speed(device);
1043 return EXIT_SUCCESS;
1044 }
1045
1046 /* handle -X option */
1047 if (X_option) {
1048 verbose(_("%s: listing CD-ROM speed"), device);
1049 fd = open_device(device);
1050 list_speeds(device, fd);
1051 return EXIT_SUCCESS;
1052 }
1053
1054 /* handle -x option only */
1055 if (!c_option)
1056 set_device_speed(device);
1057
1058
1059 /*
1060 * Unmount all partitions if -m is not specified; or umount given
1061 * mountpoint if -M is specified, otherwise print error of another
1062 * partition is mounted.
1063 */
1064 if (!m_option) {
1065 int ct = umount_partitions(device, M_option);
1066
1067 if (ct == 0 && mountpoint)
1068 umount_one(mountpoint); /* probably whole-device */
1069
1070 if (M_option) {
1071 if (ct == 1 && mountpoint)
1072 umount_one(mountpoint);
1073 else if (ct)
1074 errx(EXIT_FAILURE, _("error: %s: device in use"), device);
1075 }
1076 }
1077
1078 /* handle -c option */
1079 if (c_option) {
1080 verbose(_("%s: selecting CD-ROM disc #%ld"), device, c_arg);
1081 fd = open_device(device);
1082 changer_select(fd, c_arg);
1083 set_device_speed(device);
1084 return EXIT_SUCCESS;
1085 }
1086
1087 /* if user did not specify type of eject, try all four methods */
1088 if (r_option + s_option + f_option + q_option == 0)
1089 r_option = s_option = f_option = q_option = 1;
1090
1091 /* open device */
1092 fd = open_device(device);
1093
1094 /* try various methods of ejecting until it works */
1095 if (r_option) {
1096 verbose(_("%s: trying to eject using CD-ROM eject command"), device);
1097 worked = eject_cdrom(fd);
1098 verbose(worked ? _("CD-ROM eject command succeeded") :
1099 _("CD-ROM eject command failed"));
1100 }
1101
1102 if (s_option && !worked) {
1103 verbose(_("%s: trying to eject using SCSI commands"), device);
1104 worked = eject_scsi(fd);
1105 verbose(worked ? _("SCSI eject succeeded") :
1106 _("SCSI eject failed"));
1107 }
1108
1109 if (f_option && !worked) {
1110 verbose(_("%s: trying to eject using floppy eject command"), device);
1111 worked = eject_floppy(fd);
1112 verbose(worked ? _("floppy eject command succeeded") :
1113 _("floppy eject command failed"));
1114 }
1115
1116 if (q_option && !worked) {
1117 verbose(_("%s: trying to eject using tape offline command"), device);
1118 worked = eject_tape(fd);
1119 verbose(worked ? _("tape offline command succeeded") :
1120 _("tape offline command failed"));
1121 }
1122
1123 if (!worked)
1124 errx(EXIT_FAILURE, _("unable to eject"));
1125
1126 /* cleanup */
1127 close(fd);
1128 free(device);
1129 free(mountpoint);
1130
1131 mnt_free_table(mtab);
1132 mnt_free_cache(cache);
1133
1134 return EXIT_SUCCESS;
1135 }