2006-06-04 01:19:21 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2005-05-11 05:55:47 +05:30
|
|
|
/*
|
|
|
|
* eject implementation for busybox
|
|
|
|
*
|
|
|
|
* Copyright (C) 2004 Peter Willis <psyphreak@phreaker.net>
|
2006-02-28 10:15:24 +05:30
|
|
|
* Copyright (C) 2005 Tito Ragusa <farmatito@tiscali.it>
|
2005-05-11 05:55:47 +05:30
|
|
|
*
|
2006-02-28 10:15:24 +05:30
|
|
|
* Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
|
2005-05-11 05:55:47 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2005-05-11 05:55:47 +05:30
|
|
|
|
|
|
|
/* various defines swiped from linux/cdrom.h */
|
|
|
|
#define CDROMCLOSETRAY 0x5319 /* pendant of CDROMEJECT */
|
|
|
|
#define CDROMEJECT 0x5309 /* Ejects the cdrom media */
|
2006-10-06 04:42:49 +05:30
|
|
|
#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 06:16:18 +05:30
|
|
|
|
2008-03-17 14:59:43 +05:30
|
|
|
#define dev_fd 3
|
2008-02-08 20:34:00 +05:30
|
|
|
|
|
|
|
/* Code taken from the original eject (http://eject.sourceforge.net/),
|
|
|
|
* refactored it a bit for busybox (ne-bb@nicoerfurth.de) */
|
|
|
|
|
|
|
|
#include <scsi/sg.h>
|
|
|
|
#include <scsi/scsi.h>
|
2008-03-17 14:59:43 +05:30
|
|
|
|
|
|
|
static void eject_scsi(const char *dev)
|
2008-02-08 20:34:00 +05:30
|
|
|
{
|
2008-03-17 14:59:43 +05:30
|
|
|
static const char sg_commands[3][6] = {
|
|
|
|
{ ALLOW_MEDIUM_REMOVAL, 0, 0, 0, 0, 0 },
|
|
|
|
{ START_STOP, 0, 0, 0, 1, 0 },
|
|
|
|
{ START_STOP, 0, 0, 0, 2, 0 }
|
|
|
|
};
|
|
|
|
|
2008-05-13 07:57:31 +05:30
|
|
|
unsigned i;
|
2008-03-17 14:59:43 +05:30
|
|
|
unsigned char sense_buffer[32];
|
|
|
|
unsigned char inqBuff[2];
|
|
|
|
sg_io_hdr_t io_hdr;
|
|
|
|
|
|
|
|
if ((ioctl(dev_fd, SG_GET_VERSION_NUM, &i) < 0) || (i < 30000))
|
|
|
|
bb_error_msg_and_die("not a sg device or old sg driver");
|
|
|
|
|
|
|
|
memset(&io_hdr, 0, sizeof(sg_io_hdr_t));
|
|
|
|
io_hdr.interface_id = 'S';
|
|
|
|
io_hdr.cmd_len = 6;
|
|
|
|
io_hdr.mx_sb_len = sizeof(sense_buffer);
|
|
|
|
io_hdr.dxfer_direction = SG_DXFER_NONE;
|
|
|
|
/* io_hdr.dxfer_len = 0; */
|
|
|
|
io_hdr.dxferp = inqBuff;
|
|
|
|
io_hdr.sbp = sense_buffer;
|
|
|
|
io_hdr.timeout = 2000;
|
|
|
|
|
|
|
|
for (i = 0; i < 3; i++) {
|
2008-05-12 20:05:56 +05:30
|
|
|
io_hdr.cmdp = (void *)sg_commands[i];
|
2008-03-17 14:59:43 +05:30
|
|
|
ioctl_or_perror_and_die(dev_fd, SG_IO, (void *)&io_hdr, "%s", dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* force kernel to reread partition table when new disc is inserted */
|
|
|
|
ioctl(dev_fd, BLKRRPART);
|
2008-02-08 20:34:00 +05:30
|
|
|
}
|
|
|
|
|
2008-03-17 14:59:43 +05:30
|
|
|
#define FLAG_CLOSE 1
|
|
|
|
#define FLAG_SMART 2
|
|
|
|
#define FLAG_SCSI 4
|
|
|
|
|
|
|
|
static void eject_cdrom(unsigned flags, const char *dev)
|
2008-02-08 20:34:00 +05:30
|
|
|
{
|
|
|
|
int cmd = CDROMEJECT;
|
|
|
|
|
|
|
|
if (flags & FLAG_CLOSE
|
2008-03-17 14:59:43 +05:30
|
|
|
|| (flags & FLAG_SMART && ioctl(dev_fd, CDROM_DRIVE_STATUS) == CDS_TRAY_OPEN)
|
|
|
|
) {
|
2008-02-08 20:34:00 +05:30
|
|
|
cmd = CDROMCLOSETRAY;
|
2008-03-17 14:59:43 +05:30
|
|
|
}
|
2008-02-08 20:34:00 +05:30
|
|
|
|
2008-03-17 14:59:43 +05:30
|
|
|
ioctl_or_perror_and_die(dev_fd, cmd, NULL, "%s", dev);
|
2008-02-08 20:34:00 +05:30
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int eject_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int eject_main(int argc UNUSED_PARAM, char **argv)
|
2005-05-11 05:55:47 +05:30
|
|
|
{
|
2008-03-17 14:59:43 +05:30
|
|
|
unsigned flags;
|
2007-01-30 04:21:25 +05:30
|
|
|
const char *device;
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2007-07-21 18:57:44 +05:30
|
|
|
opt_complementary = "?1:t--T:T--t";
|
2008-02-08 20:34:00 +05:30
|
|
|
flags = getopt32(argv, "tT" USE_FEATURE_EJECT_SCSI("s"));
|
|
|
|
device = argv[optind] ? argv[optind] : "/dev/cdrom";
|
|
|
|
|
|
|
|
/* 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
|
2008-03-17 14:59:43 +05:30
|
|
|
eject /dev/cdrom
|
2008-02-08 20:34:00 +05:30
|
|
|
*/
|
2006-10-03 02:19:25 +05:30
|
|
|
|
2008-03-17 14:59:43 +05:30
|
|
|
xmove_fd(xopen(device, O_RDONLY|O_NONBLOCK), dev_fd);
|
2007-07-15 03:37:14 +05:30
|
|
|
|
2008-02-08 20:34:00 +05:30
|
|
|
if (ENABLE_FEATURE_EJECT_SCSI && (flags & FLAG_SCSI))
|
2008-03-17 14:59:43 +05:30
|
|
|
eject_scsi(device);
|
2008-02-08 20:34:00 +05:30
|
|
|
else
|
2008-03-17 14:59:43 +05:30
|
|
|
eject_cdrom(flags, device);
|
2006-10-03 02:19:25 +05:30
|
|
|
|
2006-10-06 04:42:49 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
2008-03-17 14:59:43 +05:30
|
|
|
close(dev_fd);
|
2006-10-03 02:19:25 +05:30
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
2005-05-11 05:55:47 +05:30
|
|
|
}
|