From 4a5aa6fdaa5124c06ec664a7ca598919f64532f5 Mon Sep 17 00:00:00 2001 From: landley Date: Sat, 14 May 2005 00:46:18 +0000 Subject: Add automatic umount support to eject command. Patch from Tito, with tweaks from Mike Frysinger and Rob Landley. Note: this will still fail to umount a path that contains an ' or \ character. Is it worth the extra size to filter for that? git-svn-id: svn://busybox.net/trunk/busybox@10325 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- miscutils/eject.c | 43 +++++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 20 deletions(-) (limited to 'miscutils/eject.c') diff --git a/miscutils/eject.c b/miscutils/eject.c index cbfd115f7..df275d74b 100644 --- a/miscutils/eject.c +++ b/miscutils/eject.c @@ -24,41 +24,44 @@ * Most of the dirty work blatantly ripped off from cat.c =) */ -#include -#include -#include -#include #include #include -#include +#include +#include #include "busybox.h" /* various defines swiped from linux/cdrom.h */ #define CDROMCLOSETRAY 0x5319 /* pendant of CDROMEJECT */ #define CDROMEJECT 0x5309 /* Ejects the cdrom media */ #define DEFAULT_CDROM "/dev/cdrom" -/*#define CLOSE_TRAY 1*/ + +#ifdef CONFIG_FEATURE_MTAB_SUPPORT +#define MTAB CONFIG_FEATURE_MTAB_FILENAME +#else +#define MTAB "/proc/mounts" +#endif extern int eject_main(int argc, char **argv) { unsigned long flags; + char * command; + char *device=argv[optind] ? : DEFAULT_CDROM; -#ifdef CONFIG_FEATURE_EJECT_LONG_OPTIONS - static const struct option eject_long_options[] = { - { "trayclose", 0, 0, 't' }, - { 0, 0, 0, 0 } - }; - bb_applet_long_options = eject_long_options; -#endif - flags = bb_getopt_ulflags(argc, argv, "t"); - - if (ioctl(bb_xopen((argv[optind] ? argv[optind] : DEFAULT_CDROM), + bb_xasprintf(&command, "umount '%s'", device); + + /* validate input before calling system */ + if(find_mount_point(device, MTAB)) + system(command); + + if (ioctl(bb_xopen( device, (O_RDONLY | O_NONBLOCK)), - ( flags /*& CLOSE_TRAY*/ ? CDROMCLOSETRAY : CDROMEJECT))) + ( flags ? CDROMCLOSETRAY : CDROMEJECT))) { - bb_perror_msg_and_die(bb_msg_unknown); + bb_perror_msg_and_die(device); } - - return EXIT_SUCCESS; +#ifdef CONFIG_FEATURE_CLEAN_UP + free(command); +#endif + return(EXIT_SUCCESS); } -- cgit v1.2.3-55-g6feb