mt.c revision 1.1.1.1 1 1.1 cgd /*
2 1.1.1.1 cgd * Copyright (c) 1980, 1993
3 1.1.1.1 cgd * The Regents of the University of California. All rights reserved.
4 1.1 cgd *
5 1.1 cgd * Redistribution and use in source and binary forms, with or without
6 1.1 cgd * modification, are permitted provided that the following conditions
7 1.1 cgd * are met:
8 1.1 cgd * 1. Redistributions of source code must retain the above copyright
9 1.1 cgd * notice, this list of conditions and the following disclaimer.
10 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer in the
12 1.1 cgd * documentation and/or other materials provided with the distribution.
13 1.1 cgd * 3. All advertising materials mentioning features or use of this software
14 1.1 cgd * must display the following acknowledgement:
15 1.1 cgd * This product includes software developed by the University of
16 1.1 cgd * California, Berkeley and its contributors.
17 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
18 1.1 cgd * may be used to endorse or promote products derived from this software
19 1.1 cgd * without specific prior written permission.
20 1.1 cgd *
21 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.1 cgd * SUCH DAMAGE.
32 1.1 cgd */
33 1.1 cgd
34 1.1 cgd #ifndef lint
35 1.1.1.1 cgd static char copyright[] =
36 1.1.1.1 cgd "@(#) Copyright (c) 1980, 1993\n\
37 1.1.1.1 cgd The Regents of the University of California. All rights reserved.\n";
38 1.1 cgd #endif /* not lint */
39 1.1 cgd
40 1.1 cgd #ifndef lint
41 1.1.1.1 cgd static char sccsid[] = "@(#)mt.c 8.1 (Berkeley) 6/6/93";
42 1.1 cgd #endif /* not lint */
43 1.1 cgd
44 1.1 cgd /*
45 1.1 cgd * mt --
46 1.1 cgd * magnetic tape manipulation program
47 1.1 cgd */
48 1.1 cgd #include <sys/types.h>
49 1.1 cgd #include <sys/ioctl.h>
50 1.1 cgd #include <sys/mtio.h>
51 1.1 cgd #include <fcntl.h>
52 1.1.1.1 cgd #include <errno.h>
53 1.1.1.1 cgd #include <stdlib.h>
54 1.1 cgd #include <stdio.h>
55 1.1 cgd #include <ctype.h>
56 1.1.1.1 cgd #include <string.h>
57 1.1 cgd
58 1.1 cgd struct commands {
59 1.1 cgd char *c_name;
60 1.1 cgd int c_code;
61 1.1 cgd int c_ronly;
62 1.1 cgd } com[] = {
63 1.1.1.1 cgd { "bsf", MTBSF, 1 },
64 1.1.1.1 cgd { "bsr", MTBSR, 1 },
65 1.1 cgd { "eof", MTWEOF, 0 },
66 1.1 cgd { "fsf", MTFSF, 1 },
67 1.1 cgd { "fsr", MTFSR, 1 },
68 1.1 cgd { "offline", MTOFFL, 1 },
69 1.1.1.1 cgd { "rewind", MTREW, 1 },
70 1.1 cgd { "rewoffl", MTOFFL, 1 },
71 1.1 cgd { "status", MTNOP, 1 },
72 1.1.1.1 cgd { "weof", MTWEOF, 0 },
73 1.1.1.1 cgd { NULL }
74 1.1 cgd };
75 1.1 cgd
76 1.1.1.1 cgd void err __P((const char *, ...));
77 1.1.1.1 cgd void printreg __P((char *, u_int, char *));
78 1.1.1.1 cgd void status __P((struct mtget *));
79 1.1.1.1 cgd void usage __P((void));
80 1.1 cgd
81 1.1.1.1 cgd int
82 1.1 cgd main(argc, argv)
83 1.1.1.1 cgd int argc;
84 1.1.1.1 cgd char *argv[];
85 1.1 cgd {
86 1.1 cgd register struct commands *comp;
87 1.1.1.1 cgd struct mtget mt_status;
88 1.1.1.1 cgd struct mtop mt_com;
89 1.1.1.1 cgd int ch, len, mtfd;
90 1.1.1.1 cgd char *p, *tape;
91 1.1.1.1 cgd
92 1.1.1.1 cgd if ((tape = getenv("TAPE")) == NULL)
93 1.1.1.1 cgd tape = DEFTAPE;
94 1.1.1.1 cgd
95 1.1.1.1 cgd while ((ch = getopt(argc, argv, "f:t:")) != EOF)
96 1.1.1.1 cgd switch(ch) {
97 1.1.1.1 cgd case 'f':
98 1.1.1.1 cgd case 't':
99 1.1.1.1 cgd tape = optarg;
100 1.1.1.1 cgd break;
101 1.1.1.1 cgd case '?':
102 1.1.1.1 cgd default:
103 1.1.1.1 cgd usage();
104 1.1.1.1 cgd }
105 1.1.1.1 cgd argc -= optind;
106 1.1.1.1 cgd argv += optind;
107 1.1 cgd
108 1.1.1.1 cgd if (argc < 1 || argc > 2)
109 1.1.1.1 cgd usage();
110 1.1.1.1 cgd
111 1.1.1.1 cgd len = strlen(p = *argv++);
112 1.1.1.1 cgd for (comp = com;; comp++) {
113 1.1.1.1 cgd if (comp->c_name == NULL)
114 1.1.1.1 cgd err("%s: unknown command", p);
115 1.1.1.1 cgd if (strncmp(p, comp->c_name, len) == 0)
116 1.1 cgd break;
117 1.1 cgd }
118 1.1.1.1 cgd if ((mtfd = open(tape, comp->c_ronly ? O_RDONLY : O_RDWR)) < 0)
119 1.1.1.1 cgd err("%s: %s", tape, strerror(errno));
120 1.1 cgd if (comp->c_code != MTNOP) {
121 1.1 cgd mt_com.mt_op = comp->c_code;
122 1.1.1.1 cgd if (*argv) {
123 1.1.1.1 cgd mt_com.mt_count = strtol(*argv, &p, 10);
124 1.1.1.1 cgd if (mt_com.mt_count <= 0 || *p)
125 1.1.1.1 cgd err("%s: illegal count", *argv);
126 1.1 cgd }
127 1.1.1.1 cgd else
128 1.1.1.1 cgd mt_com.mt_count = 1;
129 1.1.1.1 cgd if (ioctl(mtfd, MTIOCTOP, &mt_com) < 0)
130 1.1.1.1 cgd err("%s: %s: %s", tape, comp->c_name, strerror(errno));
131 1.1 cgd } else {
132 1.1.1.1 cgd if (ioctl(mtfd, MTIOCGET, &mt_status) < 0)
133 1.1.1.1 cgd err("%s", strerror(errno));
134 1.1 cgd status(&mt_status);
135 1.1 cgd }
136 1.1.1.1 cgd exit (0);
137 1.1.1.1 cgd /* NOTREACHED */
138 1.1 cgd }
139 1.1 cgd
140 1.1 cgd #ifdef vax
141 1.1.1.1 cgd #include <vax/mba/mtreg.h>
142 1.1.1.1 cgd #include <vax/mba/htreg.h>
143 1.1 cgd
144 1.1.1.1 cgd #include <vax/uba/utreg.h>
145 1.1.1.1 cgd #include <vax/uba/tmreg.h>
146 1.1 cgd #undef b_repcnt /* argh */
147 1.1.1.1 cgd #include <vax/uba/tsreg.h>
148 1.1 cgd #endif
149 1.1 cgd
150 1.1 cgd #ifdef sun
151 1.1 cgd #include <sundev/tmreg.h>
152 1.1 cgd #include <sundev/arreg.h>
153 1.1 cgd #endif
154 1.1 cgd
155 1.1 cgd #ifdef tahoe
156 1.1 cgd #include <tahoe/vba/cyreg.h>
157 1.1 cgd #endif
158 1.1 cgd
159 1.1 cgd struct tape_desc {
160 1.1 cgd short t_type; /* type of magtape device */
161 1.1 cgd char *t_name; /* printing name */
162 1.1 cgd char *t_dsbits; /* "drive status" register */
163 1.1 cgd char *t_erbits; /* "error" register */
164 1.1 cgd } tapes[] = {
165 1.1 cgd #ifdef vax
166 1.1 cgd { MT_ISTS, "ts11", 0, TSXS0_BITS },
167 1.1 cgd { MT_ISHT, "tm03", HTDS_BITS, HTER_BITS },
168 1.1 cgd { MT_ISTM, "tm11", 0, TMER_BITS },
169 1.1 cgd { MT_ISMT, "tu78", MTDS_BITS, 0 },
170 1.1 cgd { MT_ISUT, "tu45", UTDS_BITS, UTER_BITS },
171 1.1 cgd #endif
172 1.1 cgd #ifdef sun
173 1.1 cgd { MT_ISCPC, "TapeMaster", TMS_BITS, 0 },
174 1.1 cgd { MT_ISAR, "Archive", ARCH_CTRL_BITS, ARCH_BITS },
175 1.1 cgd #endif
176 1.1 cgd #ifdef tahoe
177 1.1 cgd { MT_ISCY, "cipher", CYS_BITS, CYCW_BITS },
178 1.1 cgd #endif
179 1.1 cgd { 0 }
180 1.1 cgd };
181 1.1 cgd
182 1.1 cgd /*
183 1.1 cgd * Interpret the status buffer returned
184 1.1 cgd */
185 1.1.1.1 cgd void
186 1.1 cgd status(bp)
187 1.1 cgd register struct mtget *bp;
188 1.1 cgd {
189 1.1 cgd register struct tape_desc *mt;
190 1.1 cgd
191 1.1.1.1 cgd for (mt = tapes;; mt++) {
192 1.1.1.1 cgd if (mt->t_type == 0) {
193 1.1.1.1 cgd (void)printf("%d: unknown tape drive type\n",
194 1.1.1.1 cgd bp->mt_type);
195 1.1.1.1 cgd return;
196 1.1.1.1 cgd }
197 1.1 cgd if (mt->t_type == bp->mt_type)
198 1.1 cgd break;
199 1.1 cgd }
200 1.1.1.1 cgd (void)printf("%s tape drive, residual=%d\n", mt->t_name, bp->mt_resid);
201 1.1 cgd printreg("ds", bp->mt_dsreg, mt->t_dsbits);
202 1.1 cgd printreg("\ner", bp->mt_erreg, mt->t_erbits);
203 1.1.1.1 cgd (void)putchar('\n');
204 1.1 cgd }
205 1.1 cgd
206 1.1 cgd /*
207 1.1.1.1 cgd * Print a register a la the %b format of the kernel's printf.
208 1.1 cgd */
209 1.1.1.1 cgd void
210 1.1 cgd printreg(s, v, bits)
211 1.1 cgd char *s;
212 1.1.1.1 cgd register u_int v;
213 1.1 cgd register char *bits;
214 1.1 cgd {
215 1.1 cgd register int i, any = 0;
216 1.1 cgd register char c;
217 1.1 cgd
218 1.1 cgd if (bits && *bits == 8)
219 1.1 cgd printf("%s=%o", s, v);
220 1.1 cgd else
221 1.1 cgd printf("%s=%x", s, v);
222 1.1 cgd bits++;
223 1.1 cgd if (v && bits) {
224 1.1 cgd putchar('<');
225 1.1 cgd while (i = *bits++) {
226 1.1 cgd if (v & (1 << (i-1))) {
227 1.1 cgd if (any)
228 1.1 cgd putchar(',');
229 1.1 cgd any = 1;
230 1.1 cgd for (; (c = *bits) > 32; bits++)
231 1.1 cgd putchar(c);
232 1.1 cgd } else
233 1.1 cgd for (; *bits > 32; bits++)
234 1.1 cgd ;
235 1.1 cgd }
236 1.1 cgd putchar('>');
237 1.1 cgd }
238 1.1.1.1 cgd }
239 1.1.1.1 cgd
240 1.1.1.1 cgd void
241 1.1.1.1 cgd usage()
242 1.1.1.1 cgd {
243 1.1.1.1 cgd (void)fprintf(stderr, "usage: mt [-f device] command [ count ]\n");
244 1.1.1.1 cgd exit(1);
245 1.1.1.1 cgd }
246 1.1.1.1 cgd
247 1.1.1.1 cgd #if __STDC__
248 1.1.1.1 cgd #include <stdarg.h>
249 1.1.1.1 cgd #else
250 1.1.1.1 cgd #include <varargs.h>
251 1.1.1.1 cgd #endif
252 1.1.1.1 cgd
253 1.1.1.1 cgd void
254 1.1.1.1 cgd #if __STDC__
255 1.1.1.1 cgd err(const char *fmt, ...)
256 1.1.1.1 cgd #else
257 1.1.1.1 cgd err(fmt, va_alist)
258 1.1.1.1 cgd char *fmt;
259 1.1.1.1 cgd va_dcl
260 1.1.1.1 cgd #endif
261 1.1.1.1 cgd {
262 1.1.1.1 cgd va_list ap;
263 1.1.1.1 cgd #if __STDC__
264 1.1.1.1 cgd va_start(ap, fmt);
265 1.1.1.1 cgd #else
266 1.1.1.1 cgd va_start(ap);
267 1.1.1.1 cgd #endif
268 1.1.1.1 cgd (void)fprintf(stderr, "mt: ");
269 1.1.1.1 cgd (void)vfprintf(stderr, fmt, ap);
270 1.1.1.1 cgd va_end(ap);
271 1.1.1.1 cgd (void)fprintf(stderr, "\n");
272 1.1.1.1 cgd exit(1);
273 1.1.1.1 cgd /* NOTREACHED */
274 1.1 cgd }
275