2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2000-09-26 03:15:58 +05:30
|
|
|
#include "busybox.h"
|
1999-10-05 21:54:54 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/mtio.h>
|
|
|
|
#include <sys/fcntl.h>
|
|
|
|
|
|
|
|
struct mt_opcodes {
|
2000-02-09 01:28:47 +05:30
|
|
|
char *name;
|
|
|
|
short value;
|
1999-10-05 21:54:54 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
/* missing: eod/seod, stoptions, stwrthreshold, densities */
|
2000-02-09 01:28:47 +05:30
|
|
|
static const struct mt_opcodes opcodes[] = {
|
|
|
|
{"bsf", MTBSF},
|
|
|
|
{"bsfm", MTBSFM},
|
|
|
|
{"bsr", MTBSR},
|
|
|
|
{"bss", MTBSS},
|
|
|
|
{"datacompression", MTCOMPRESSION},
|
|
|
|
{"eom", MTEOM},
|
|
|
|
{"erase", MTERASE},
|
|
|
|
{"fsf", MTFSF},
|
|
|
|
{"fsfm", MTFSFM},
|
|
|
|
{"fsr", MTFSR},
|
|
|
|
{"fss", MTFSS},
|
|
|
|
{"load", MTLOAD},
|
|
|
|
{"lock", MTLOCK},
|
|
|
|
{"mkpart", MTMKPART},
|
|
|
|
{"nop", MTNOP},
|
|
|
|
{"offline", MTOFFL},
|
|
|
|
{"rewoffline", MTOFFL},
|
|
|
|
{"ras1", MTRAS1},
|
|
|
|
{"ras2", MTRAS2},
|
|
|
|
{"ras3", MTRAS3},
|
|
|
|
{"reset", MTRESET},
|
|
|
|
{"retension", MTRETEN},
|
|
|
|
{"rew", MTREW},
|
|
|
|
{"seek", MTSEEK},
|
|
|
|
{"setblk", MTSETBLK},
|
|
|
|
{"setdensity", MTSETDENSITY},
|
|
|
|
{"drvbuffer", MTSETDRVBUFFER},
|
|
|
|
{"setpart", MTSETPART},
|
|
|
|
{"tell", MTTELL},
|
|
|
|
{"wset", MTWSM},
|
|
|
|
{"unload", MTUNLOAD},
|
|
|
|
{"unlock", MTUNLOCK},
|
|
|
|
{"eof", MTWEOF},
|
|
|
|
{"weof", MTWEOF},
|
|
|
|
{0, 0}
|
1999-10-05 21:54:54 +05:30
|
|
|
};
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
extern int mt_main(int argc, char **argv)
|
1999-10-05 21:54:54 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
const char *file = "/dev/tape";
|
|
|
|
const struct mt_opcodes *code = opcodes;
|
|
|
|
struct mtop op;
|
|
|
|
int fd;
|
2000-04-15 22:04:54 +05:30
|
|
|
|
2000-09-05 23:51:53 +05:30
|
|
|
if (argc < 2) {
|
2000-04-15 22:04:54 +05:30
|
|
|
usage(mt_usage);
|
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
if (strcmp(argv[1], "-f") == 0) {
|
|
|
|
if (argc < 4) {
|
|
|
|
usage(mt_usage);
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
file = argv[2];
|
|
|
|
argv += 2;
|
|
|
|
argc -= 2;
|
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
while (code->name != 0) {
|
|
|
|
if (strcmp(code->name, argv[1]) == 0)
|
1999-10-05 21:54:54 +05:30
|
|
|
break;
|
|
|
|
code++;
|
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (code->name == 0) {
|
2000-12-08 01:26:48 +05:30
|
|
|
error_msg("unrecognized opcode %s.\n", argv[1]);
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_FAILURE;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
op.mt_op = code->value;
|
2000-02-09 01:28:47 +05:30
|
|
|
if (argc >= 3)
|
|
|
|
op.mt_count = atoi(argv[2]);
|
1999-10-05 21:54:54 +05:30
|
|
|
else
|
2000-02-09 01:28:47 +05:30
|
|
|
op.mt_count = 1; /* One, not zero, right? */
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-12-22 07:18:07 +05:30
|
|
|
if ((fd = open(file, O_RDONLY, 0)) < 0)
|
|
|
|
perror_msg_and_die("%s", file);
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-12-22 07:18:07 +05:30
|
|
|
if (ioctl(fd, MTIOCTOP, &op) != 0)
|
|
|
|
perror_msg_and_die("%s", file);
|
1999-10-05 21:54:54 +05:30
|
|
|
|
2000-12-01 08:25:13 +05:30
|
|
|
return EXIT_SUCCESS;
|
1999-10-05 21:54:54 +05:30
|
|
|
}
|