2006-06-03 19:49:21 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2005-05-11 00:25:47 +00:00
|
|
|
/*
|
|
|
|
* eject implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Peter Willis <psyphreak@phreaker.net>
|
2006-02-28 04:45:24 +00:00
|
|
|
* Copyright (C) 2005 Tito Ragusa <farmatito@tiscali.it>
|
2005-05-11 00:25:47 +00:00
|
|
|
*
|
2006-02-28 04:45:24 +00:00
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2005-05-11 00:25:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is a simple hack of eject based on something Erik posted in #uclibc.
|
|
|
|
* Most of the dirty work blatantly ripped off from cat.c =)
|
|
|
|
*/
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2005-05-11 00:25:47 +00:00
|
|
|
|
|
|
|
/* various defines swiped from linux/cdrom.h */
|
|
|
|
#define CDROMCLOSETRAY 0x5319 /* pendant of CDROMEJECT */
|
|
|
|
#define CDROMEJECT 0x5309 /* Ejects the cdrom media */
|
2006-10-05 23:12:49 +00:00
|
|
|
#define CDROM_DRIVE_STATUS 0x5326 /* Get tray position, etc. */
|
|
|
|
/* drive status possibilities returned by CDROM_DRIVE_STATUS ioctl */
|
|
|
|
#define CDS_TRAY_OPEN 2
|
2005-05-14 00:46:18 +00:00
|
|
|
|
2006-10-02 20:49:25 +00:00
|
|
|
#define FLAG_CLOSE 1
|
|
|
|
#define FLAG_SMART 2
|
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int eject_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-06 20:47:33 +00:00
|
|
|
int eject_main(int argc, char **argv)
|
2005-05-11 00:25:47 +00:00
|
|
|
{
|
|
|
|
unsigned long flags;
|
2007-01-29 22:51:25 +00:00
|
|
|
const char *device;
|
2006-10-05 23:12:49 +00:00
|
|
|
int dev, cmd;
|
2006-01-25 00:08:53 +00:00
|
|
|
|
2007-07-21 13:27:44 +00:00
|
|
|
opt_complementary = "?1:t--T:T--t";
|
2007-08-18 15:32:12 +00:00
|
|
|
flags = getopt32(argv, "tT");
|
2006-10-05 23:12:49 +00:00
|
|
|
device = argv[optind] ? : "/dev/cdrom";
|
2006-01-25 00:08:53 +00:00
|
|
|
|
2006-10-07 15:00:29 +00:00
|
|
|
// We used to do "umount <device>" here, but it was buggy
|
|
|
|
// if something was mounted OVER cdrom and
|
|
|
|
// if cdrom is mounted many times.
|
|
|
|
//
|
|
|
|
// This works equally well (or better):
|
|
|
|
// #!/bin/sh
|
|
|
|
// umount /dev/cdrom
|
|
|
|
// eject
|
2006-10-02 20:49:25 +00:00
|
|
|
|
|
|
|
dev = xopen(device, O_RDONLY|O_NONBLOCK);
|
2006-10-05 23:12:49 +00:00
|
|
|
cmd = CDROMEJECT;
|
|
|
|
if (flags & FLAG_CLOSE
|
|
|
|
|| (flags & FLAG_SMART && ioctl(dev, CDROM_DRIVE_STATUS) == CDS_TRAY_OPEN))
|
|
|
|
cmd = CDROMCLOSETRAY;
|
2007-07-14 22:07:14 +00:00
|
|
|
|
|
|
|
ioctl_or_perror_and_die(dev, cmd, NULL, "%s", device);
|
2006-10-02 20:49:25 +00:00
|
|
|
|
2006-10-05 23:12:49 +00:00
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
close(dev);
|
2006-10-02 20:49:25 +00:00
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
2005-05-11 00:25:47 +00:00
|
|
|
}
|