OSDN Git Service

Import translated manuals from JM CVS Repository.
[linuxjm/jm.git] / manual / LDP_man-pages / original / man4 / st.4
1 .\" Copyright 1995 Robert K. Nichols (Robert.K.Nichols@att.com)
2 .\" Copyright 1999-2005 Kai Mäkisara (Kai.Makisara@kolumbus.fi)
3 .\"
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .TH ST 4  2007-12-16 "Linux" "Linux Programmer's Manual"
24 .SH NAME
25 st \- SCSI tape device
26 .SH SYNOPSIS
27 .nf
28 .B #include <sys/mtio.h>
29 .sp
30 .BI "int ioctl(int " fd ", int " request " [, (void *)" arg3 "]);"
31 .BI "int ioctl(int " fd ", MTIOCTOP, (struct mtop *)" mt_cmd );
32 .BI "int ioctl(int " fd ", MTIOCGET, (struct mtget *)" mt_status );
33 .BI "int ioctl(int " fd ", MTIOCPOS, (struct mtpos *)" mt_pos );
34 .fi
35 .SH DESCRIPTION
36 The
37 .B st
38 driver provides the interface to a variety of SCSI tape devices.
39 Currently, the driver takes control of all detected devices of type
40 \(lqsequential-access\(rq.
41 The
42 .B st
43 driver uses major device number 9.
44 .PP
45 Each device uses eight minor device numbers.
46 The lowermost five bits
47 in the minor numbers are assigned sequentially in the order of
48 detection.
49 In the 2.6 kernel, the bits above the eight lowermost bits are
50 concatenated to the five lowermost bits to form the tape number.
51 The minor numbers can be grouped into
52 two sets of four numbers: the principal (auto-rewind) minor device numbers,
53 .IR n ,
54 and the \(lqno-rewind\(rq device numbers,
55 .RI ( n " + 128)."
56 Devices opened using the principal device number will be sent a
57 .BR REWIND
58 command when they are closed.
59 Devices opened using the \(lqno-rewind\(rq device number will not.
60 (Note that using an auto-rewind device for positioning the tape with,
61 for instance, mt does not lead to the desired result: the tape is
62 rewound after the mt command and the next command starts from the
63 beginning of the tape).
64 .PP
65 Within each group, four minor numbers are available to define
66 devices with different characteristics (block size, compression,
67 density, etc.)
68 When the system starts up, only the first device is available.
69 The other three are activated when the default
70 characteristics are defined (see below).
71 (By changing compile-time
72 constants, it is possible to change the balance between the maximum
73 number of tape drives and the number of minor numbers for each
74 drive.
75 The default allocation allows control of 32 tape drives.
76 For instance, it is possible to control up to 64 tape drives
77 with two minor numbers for different options.)
78 .PP
79 Devices are typically created by:
80 .in +4n
81 .nf
82
83 mknod \-m 666 /dev/st0 c 9 0
84 mknod \-m 666 /dev/st0l c 9 32
85 mknod \-m 666 /dev/st0m c 9 64
86 mknod \-m 666 /dev/st0a c 9 96
87 mknod \-m 666 /dev/nst0 c 9 128
88 mknod \-m 666 /dev/nst0l c 9 160
89 mknod \-m 666 /dev/nst0m c 9 192
90 mknod \-m 666 /dev/nst0a c 9 224
91 .fi
92 .in
93 .PP
94 There is no corresponding block device.
95 .PP
96 The driver uses an internal buffer that has to be large enough to hold
97 at least one tape block.
98 In kernels before 2.1.121, the buffer is
99 allocated as one contiguous block.
100 This limits the block size to the
101 largest contiguous block of memory the kernel allocator can provide.
102 The limit is currently 128 kB for 32-bit architectures and
103 256 kB for 64-bit architectures.
104 In newer kernels the driver
105 allocates the buffer in several parts if necessary.
106 By default, the
107 maximum number of parts is 16.
108 This means that the maximum block size
109 is very large (2 MB if allocation of 16 blocks of 128 kB succeeds).
110 .PP
111 The driver's internal buffer size is determined by a compile-time
112 constant which can be overridden with a kernel startup option.
113 In addition to this, the driver tries to allocate a larger temporary
114 buffer at run time if necessary.
115 However, run-time allocation of large
116 contiguous blocks of memory may fail and it is advisable not to rely
117 too much on dynamic buffer allocation with kernels older than 2.1.121
118 (this applies also to demand-loading the driver with kerneld or kmod).
119 .PP
120 The driver does not specifically support any tape drive brand or
121 model.
122 After system start-up the tape device options are defined by
123 the drive firmware.
124 For example, if the drive firmware selects fixed-block mode,
125 the tape device uses fixed-block mode.
126 The options can
127 be changed with explicit
128 .BR ioctl (2)
129 calls and remain in effect when the device is closed and reopened.
130 Setting the options affects both the auto-rewind and the nonrewind
131 device.
132 .PP
133 Different options can be specified for the different devices within
134 the subgroup of four.
135 The options take effect when the device is
136 opened.
137 For example, the system administrator can define
138 one device that writes in fixed-block mode with a certain block size,
139 and one which writes in variable-block mode (if the drive supports
140 both modes).
141 .PP
142 The driver supports
143 .B tape partitions
144 if they are supported by the drive.
145 (Note that the tape partitions
146 have nothing to do with disk partitions.
147 A partitioned tape can be
148 seen as several logical tapes within one medium.)
149 Partition support has to be enabled with an
150 .BR ioctl (2).
151 The tape
152 location is preserved within each partition across partition changes.
153 The partition used for subsequent tape operations is
154 selected with an
155 .BR ioctl (2).
156 The partition switch is executed together with
157 the next tape operation in order to avoid unnecessary tape
158 movement.
159 The maximum number of partitions on a tape is defined by a
160 compile-time constant (originally four).
161 The driver contains an
162 .BR ioctl (2)
163 that can format a tape with either one or two partitions.
164 .PP
165 Device
166 .I /dev/tape
167 is usually created as a hard or soft link to the default tape device
168 on the system.
169 .PP
170 Starting from kernel 2.6.2, the driver exports in the sysfs directory
171 .I /sys/class/scsi_tape
172 the attached devices and some parameters assigned to the devices.
173 .SS "Data Transfer"
174 The driver supports operation in both fixed-block mode and
175 variable-block mode (if supported by the drive).
176 In fixed-block mode the drive
177 writes blocks of the specified size and the block size is not
178 dependent on the byte counts of the write system calls.
179 In variable-block mode one tape block is written for each write call
180 and the byte
181 count determines the size of the corresponding tape block.
182 Note that
183 the blocks on the tape don't contain any information about the
184 writing mode: when reading, the only important thing is to use
185 commands that accept the block sizes on the tape.
186 .PP
187 In variable-block mode the read byte count does not have to match
188 the tape block size exactly.
189 If the byte count is larger than the
190 next block on tape, the driver returns the data and the function
191 returns the actual block size.
192 If the block size is larger than the
193 byte count, the requested amount of data from the start of the block
194 is returned and the rest of the block is discarded.
195 .PP
196 In fixed-block mode the read byte counts can be arbitrary if
197 buffering is enabled, or a multiple of the tape block size if
198 buffering is disabled.
199 Kernels before 2.1.121 allow writes with
200 arbitrary byte count if buffering is enabled.
201 In all other cases
202 (kernel before 2.1.121 with buffering disabled or newer kernel) the
203 write byte count must be a multiple of the tape block size.
204 .PP
205 In the 2.6 kernel, the driver tries to use direct transfers between the user
206 buffer and the device.
207 If this is not possible, the driver's internal buffer
208 is used.
209 The reasons for not using direct transfers include improper alignment
210 of the user buffer (default is 512 bytes but this can be changed by the HBA
211 driver), one of more pages of the user buffer not reachable by the
212 SCSI adapter, etc.
213 .PP
214 A filemark is automatically written to tape if the last tape operation
215 before close was a write.
216 .PP
217 When a filemark is encountered while reading, the following
218 happens.
219 If there are data remaining in the buffer when the filemark
220 is found, the buffered data is returned.
221 The next read returns zero
222 bytes.
223 The following read returns data from the next file.
224 The end of
225 recorded data is signaled by returning zero bytes for two consecutive
226 read calls.
227 The third read returns an error.
228 .SS Ioctls
229 The driver supports three
230 .BR ioctl (2)
231 requests.
232 Requests not recognized by the
233 .B st
234 driver are passed to the
235 .B SCSI
236 driver.
237 The definitions below are from
238 .IR /usr/include/linux/mtio.h :
239 .SS "MTIOCTOP \(em Perform a tape operation"
240 .PP
241 This request takes an argument of type
242 .IR "(struct mtop *)" .
243 Not all drives support all operations.
244 The driver returns an
245 .B EIO
246 error if the drive rejects an operation.
247 .PP
248 .in +4n
249 .nf
250 /* Structure for MTIOCTOP \- mag tape op command: */
251 struct mtop {
252     short   mt_op;       /* operations defined below */
253     int     mt_count;    /* how many of them */
254 };
255 .fi
256 .in
257 .PP
258 Magnetic Tape operations for normal tape use:
259 .TP 14
260 .B MTBSF
261 Backward space over
262 .I mt_count
263 filemarks.
264 .TP
265 .B MTBSFM
266 Backward space over
267 .I mt_count
268 filemarks.
269 Reposition the tape to the EOT side of the last filemark.
270 .TP
271 .B MTBSR
272 Backward space over
273 .I mt_count
274 records (tape blocks).
275 .TP
276 .B MTBSS
277 Backward space over
278 .I mt_count
279 setmarks.
280 .TP
281 .B MTCOMPRESSION
282 Enable compression of tape data within the drive if
283 .I mt_count
284 is nonzero and disable compression if
285 .I mt_count
286 is zero.
287 This command uses the MODE page 15 supported by most DATs.
288 .TP
289 .B MTEOM
290 Go to the end of the recorded media (for appending files).
291 .TP
292 .B MTERASE
293 Erase tape.
294 With 2.6 kernel, short erase (mark tape empty) is performed if the
295 argument is zero.
296 Otherwise long erase (erase all) is done.
297 .TP
298 .B MTFSF
299 Forward space over
300 .I mt_count
301 filemarks.
302 .TP
303 .B MTFSFM
304 Forward space over
305 .I mt_count
306 filemarks.
307 Reposition the tape to the BOT side of the last filemark.
308 .TP
309 .B MTFSR
310 Forward space over
311 .I mt_count
312 records (tape blocks).
313 .TP
314 .B MTFSS
315 Forward space over
316 .I mt_count
317 setmarks.
318 .TP
319 .B MTLOAD
320 Execute the SCSI load command.
321 A special case is available for some HP
322 autoloaders.
323 If
324 .I mt_count
325 is the constant
326 .B MT_ST_HPLOADER_OFFSET
327 plus a number, the number is
328 sent to the drive to control the autoloader.
329 .TP
330 .B MTLOCK
331 Lock the tape drive door.
332 .TP
333 .B MTMKPART
334 Format the tape into one or two partitions.
335 If
336 .I mt_count
337 is nonzero, it gives the size of the first partition and the second
338 partition contains the rest of the tape.
339 If
340 .I mt_count
341 is zero, the tape is formatted into one partition.
342 This command is not allowed for a drive unless the partition support
343 is enabled for the drive (see
344 .BR MT_ST_CAN_PARTITIONS
345 below).
346 .TP
347 .B MTNOP
348 No op \(em flushes the driver's buffer as a side effect.
349 Should be used before reading status with
350 .BR MTIOCGET .
351 .TP
352 .B MTOFFL
353 Rewind and put the drive off line.
354 .TP
355 .B MTRESET
356 Reset drive.
357 .TP
358 .B MTRETEN
359 Re-tension tape.
360 .TP
361 .B MTREW
362 Rewind.
363 .TP
364 .B MTSEEK
365 Seek to the tape block number specified in
366 .IR mt_count .
367 This operation requires either a SCSI-2 drive that supports the
368 .B LOCATE
369 command (device-specific address)
370 or a Tandberg-compatible SCSI-1 drive (Tandberg, Archive
371 Viper, Wangtek, ...).
372 The block number should be one that was previously returned by
373 .BR MTIOCPOS
374 if device-specific addresses are used.
375 .TP
376 .B MTSETBLK
377 Set the drive's block length to the value specified in
378 .IR mt_count .
379 A block length of zero sets the drive to variable block size mode.
380 .TP
381 .B MTSETDENSITY
382 Set the tape density to the code in
383 .IR mt_count .
384 The density codes supported by a drive can be found from the drive
385 documentation.
386 .TP
387 .B MTSETPART
388 The active partition is switched to
389 .IR mt_count .
390 The partitions are numbered from zero.
391 This command is not allowed for
392 a drive unless the partition support is enabled for the drive (see
393 .B MT_ST_CAN_PARTITIONS
394 below).
395 .TP
396 .B MTUNLOAD
397 Execute the SCSI unload command (does not eject the tape).
398 .TP
399 .B MTUNLOCK
400 Unlock the tape drive door.
401 .TP
402 .B MTWEOF
403 Write
404 .I mt_count
405 filemarks.
406 .TP
407 .B MTWSM
408 Write
409 .I mt_count
410 setmarks.
411 .PP
412 Magnetic Tape operations for setting of device options (by the superuser):
413 .TP 8
414 .B MTSETDRVBUFFER
415 Set various drive and driver options according to bits encoded in
416 .IR mt_count .
417 These consist of the drive's buffering mode, a set of Boolean driver
418 options, the buffer write threshold, defaults for the block size and
419 density, and timeouts (only in kernels 2.1 and later).
420 A single operation can affect only one item in the list above (the
421 Booleans counted as one item.)
422 .IP
423 A value having zeros in the high-order 4 bits will be used to set the
424 drive's buffering mode.
425 The buffering modes are:
426 .RS 12
427 .IP 0 4
428 The drive will not report
429 .BR GOOD
430 status on write commands until the data
431 blocks are actually written to the medium.
432 .IP 1
433 The drive may report
434 .BR GOOD
435 status on write commands as soon as all the
436 data has been transferred to the drive's internal buffer.
437 .IP 2
438 The drive may report
439 .BR GOOD
440 status on write commands as soon as (a) all
441 the data has been transferred to the drive's internal buffer, and
442 (b) all buffered data from different initiators has been successfully
443 written to the medium.
444 .RE
445 .IP
446 To control the write threshold the value in
447 .I mt_count
448 must include the constant
449 .BR MT_ST_WRITE_THRESHOLD
450 logically ORed with a block count in the low 28 bits.
451 The block count refers to 1024-byte blocks, not the physical block
452 size on the tape.
453 The threshold cannot exceed the driver's internal buffer size (see
454 DESCRIPTION, above).
455 .IP
456 To set and clear the Boolean options
457 the value in
458 .I mt_count
459 must include one of the constants
460 .BR MT_ST_BOOLEANS ,
461 .BR MT_ST_SETBOOLEANS ,
462 .BR MT_ST_CLEARBOOLEANS ,
463 or
464 .BR MT_ST_DEFBOOLEANS
465 logically or'ed with
466 whatever combination of the following options is desired.
467 Using
468 .BR MT_ST_BOOLEANS
469 the options can be set to the values
470 defined in the corresponding bits.
471 With
472 .BR MT_ST_SETBOOLEANS
473 the options can be selectively set and with
474 .BR MT_ST_DEFBOOLEANS
475 selectively cleared.
476 .IP ""
477 The default options for a tape device are set with
478 .BR MT_ST_DEFBOOLEANS .
479 A nonactive tape device (e.g., device with
480 minor 32 or 160) is activated when the default options for it are
481 defined the first time.
482 An activated device inherits from the device
483 activated at start-up the options not set explicitly.
484 .IP ""
485 The Boolean options are:
486 .RS
487 .TP
488 .BR MT_ST_BUFFER_WRITES " (Default: true)"
489 Buffer all write operations in fixed-block mode.
490 If this option is false and the drive uses a fixed block size, then
491 all write operations must be for a multiple of the block size.
492 This option must be set false to write reliable multivolume archives.
493 .BR MT_ST_ASYNC_WRITES " (Default: true)"
494 When this option is true, write operations return immediately without
495 waiting for the data to be transferred to the drive if the data fits
496 into the driver's buffer.
497 The write threshold determines how full the buffer must be before a
498 new SCSI write command is issued.
499 Any errors reported by the drive will be held until the next
500 operation.
501 This option must be set false to write reliable multivolume archives.
502 .TP
503 .BR MT_ST_READ_AHEAD " (Default: true)"
504 This option causes the driver to provide read buffering and
505 read-ahead in fixed-block mode.
506 If this option is false and the drive uses a fixed block size, then
507 all read operations must be for a multiple of the block size.
508 .TP
509 .BR MT_ST_TWO_FM " (Default: false)"
510 This option modifies the driver behavior when a file is closed.
511 The normal action is to write a single filemark.
512 If the option is true the driver will write two filemarks and
513 backspace over the second one.
514 .IP
515 Note:
516 This option should not be set true for QIC tape drives since they are
517 unable to overwrite a filemark.
518 These drives detect the end of recorded data by testing for blank tape
519 rather than two consecutive filemarks.
520 Most other current drives also
521 detect the end of recorded data and using two filemarks is usually
522 necessary only when interchanging tapes with some other systems.
523 .TP
524 .BR MT_ST_DEBUGGING " (Default: false)"
525 This option turns on various debugging messages from the driver
526 (effective only if the driver was compiled with
527 .B DEBUG
528 defined nonzero).
529 .TP
530 .BR MT_ST_FAST_EOM " (Default: false)"
531 This option causes the
532 .B MTEOM
533 operation to be sent directly to the
534 drive, potentially speeding up the operation but causing the driver to
535 lose track of the current file number normally returned by the
536 .B MTIOCGET
537 request.
538 If
539 .B MT_ST_FAST_EOM
540 is false the driver will respond to an
541 .B MTEOM
542 request by forward spacing over files.
543 .TP
544 .BR MT_ST_AUTO_LOCK " (Default: false)"
545 When this option is true, the drive door is locked when the device is
546 opened and unlocked when it is closed.
547 .TP
548 .BR MT_ST_DEF_WRITES " (Default: false)"
549 The tape options (block size, mode, compression, etc.) may change
550 when changing from one device linked to a drive to another device
551 linked to the same drive depending on how the devices are
552 defined.
553 This option defines when the changes are enforced by the
554 driver using SCSI-commands and when the drives auto-detection
555 capabilities are relied upon.
556 If this option is false, the driver
557 sends the SCSI-commands immediately when the device is changed.
558 If the
559 option is true, the SCSI-commands are not sent until a write is
560 requested.
561 In this case the drive firmware is allowed to detect the
562 tape structure when reading and the SCSI-commands are used only to
563 make sure that a tape is written according to the correct specification.
564 .TP
565 .BR MT_ST_CAN_BSR " (Default: false)"
566 When read-ahead is used, the tape must sometimes be spaced backward to the
567 correct position when the device is closed and the SCSI command to
568 space backwards over records is used for this purpose.
569 Some older
570 drives can't process this command reliably and this option can be used
571 to instruct the driver not to use the command.
572 The end result is that,
573 with read-ahead and fixed-block mode, the tape may not be correctly
574 positioned within a file when the device is closed.
575 With 2.6 kernel, the
576 default is true for drives supporting SCSI-3.
577 .TP
578 .BR MT_ST_NO_BLKLIMS " (Default: false)"
579 Some drives don't accept the
580 .B "READ BLOCK LIMITS"
581 SCSI command.
582 If this is used, the driver does not use the command.
583 The drawback is
584 that the driver can't check before sending commands if the selected
585 block size is acceptable to the drive.
586 .TP
587 .BR MT_ST_CAN_PARTITIONS " (Default: false)"
588 This option enables support for several partitions within a
589 tape.
590 The option applies to all devices linked to a drive.
591 .TP
592 .BR MT_ST_SCSI2LOGICAL " (Default: false)"
593 This option instructs the driver to use the logical block addresses
594 defined in the SCSI-2 standard when performing the seek and tell
595 operations (both with
596 .B MTSEEK
597 and
598 .B MTIOCPOS
599 commands and when changing tape
600 partition).
601 Otherwise the device-specific addresses are used.
602 It is highly advisable to set this option if the drive supports the
603 logical addresses because they count also filemarks.
604 There are some
605 drives that only support the logical block addresses.
606 .TP
607 .BR MT_ST_SYSV " (Default: false)"
608 When this option is enabled, the tape devices use the SystemV
609 semantics.
610 Otherwise the BSD semantics are used.
611 The most important
612 difference between the semantics is what happens when a device used
613 for reading is closed: in System V semantics the tape is spaced forward
614 past the next filemark if this has not happened while using the
615 device.
616 In BSD semantics the tape position is not changed.
617 .TP
618 .BR MT_NO_WAIT " (Default: false)"
619 Enables immediate mode (i.e., don't wait for the command to finish) for some
620 commands (e.g., rewind).
621 .PP
622 An example:
623 .in +4n
624 .nf
625
626 struct mtop mt_cmd;
627 mt_cmd.mt_op = MTSETDRVBUFFER;
628 mt_cmd.mt_count = MT_ST_BOOLEANS |
629         MT_ST_BUFFER_WRITES | MT_ST_ASYNC_WRITES;
630 ioctl(fd, MTIOCTOP, mt_cmd);
631 .fi
632 .in
633 .RE
634 .IP ""
635 The default block size for a device can be set with
636 .B MT_ST_DEF_BLKSIZE
637 and the default density code can be set with
638 .BR MT_ST_DEFDENSITY .
639 The values for the parameters are or'ed
640 with the operation code.
641 .IP ""
642 With kernels 2.1.x and later, the timeout values can be set with the
643 subcommand
644 .B MT_ST_SET_TIMEOUT
645 ORed with the timeout in seconds.
646 The long timeout (used for rewinds and other commands
647 that may take a long time) can be set with
648 .BR MT_ST_SET_LONG_TIMEOUT .
649 The kernel defaults are very long to
650 make sure that a successful command is not timed out with any
651 drive.
652 Because of this the driver may seem stuck even if it is only
653 waiting for the timeout.
654 These commands can be used to set more
655 practical values for a specific drive.
656 The timeouts set for one device
657 apply for all devices linked to the same drive.
658 .IP ""
659 Starting from kernels 2.4.19 and 2.5.43, the driver supports a status
660 bit which indicates whether the drive requests cleaning.
661 The method used by the
662 drive to return cleaning information is set using the
663 .B MT_ST_SEL_CLN
664 subcommand.
665 If the value is zero, the cleaning
666 bit is always zero.
667 If the value is one, the TapeAlert data defined
668 in the SCSI-3 standard is used (not yet implemented).
669 Values 2-17 are
670 reserved.
671 If the lowest eight bits are >= 18, bits from the extended
672 sense data are used.
673 The bits 9-16 specify a mask to select the bits
674 to look at and the bits 17-23 specify the bit pattern to look for.
675 If the bit pattern is zero, one or more bits under the mask indicate
676 the cleaning request.
677 If the pattern is nonzero, the pattern must match
678 the masked sense data byte.
679 .SS "MTIOCGET \(em Get status"
680 .PP
681 This request takes an argument of type
682 .IR "(struct mtget *)" .
683 .PP
684 .in +4n
685 .nf
686 /* structure for MTIOCGET \- mag tape get status command */
687 struct mtget {
688     long     mt_type;
689     long     mt_resid;
690     /* the following registers are device dependent */
691     long     mt_dsreg;
692     long     mt_gstat;
693     long     mt_erreg;
694     /* The next two fields are not always used */
695     daddr_t  mt_fileno;
696     daddr_t  mt_blkno;
697 };
698 .fi
699 .in
700 .IP \fImt_type\fP 11
701 The header file defines many values for
702 .IR mt_type ,
703 but the current driver reports only the generic types
704 .B MT_ISSCSI1
705 (Generic SCSI-1 tape)
706 and
707 .B MT_ISSCSI2
708 (Generic SCSI-2 tape).
709 .IP \fImt_resid\fP
710 contains the current tape partition number.
711 .IP \fImt_dsreg\fP
712 reports the drive's current settings for block size (in the low 24
713 bits) and density (in the high 8 bits).
714 These fields are defined by
715 .BR MT_ST_BLKSIZE_SHIFT ,
716 .BR MT_ST_BLKSIZE_MASK ,
717 .BR MT_ST_DENSITY_SHIFT ,
718 and
719 .BR MT_ST_DENSITY_MASK .
720 .IP \fImt_gstat\fP
721 reports generic (device independent) status information.
722 The header file defines macros for testing these status bits:
723 .RS
724 .HP 4
725 \fBGMT_EOF\fP(\fIx\fP):
726 The tape is positioned just after a filemark
727 (always false after an
728 .B MTSEEK
729 operation).
730 .HP
731 \fBGMT_BOT\fP(\fIx\fP):
732 The tape is positioned at the beginning of the first file (always false
733 after an
734 .B MTSEEK
735 operation).
736 .HP
737 \fBGMT_EOT\fP(\fIx\fP):
738 A tape operation has reached the physical End Of Tape.
739 .HP
740 \fBGMT_SM\fP(\fIx\fP):
741 The tape is currently positioned at a setmark
742 (always false after an
743 .B MTSEEK
744 operation).
745 .HP
746 \fBGMT_EOD\fP(\fIx\fP):
747 The tape is positioned at the end of recorded data.
748 .HP
749 \fBGMT_WR_PROT\fP(\fIx\fP):
750 The drive is write-protected.
751 For some drives this can also mean that the drive does not support
752 writing on the current medium type.
753 .HP
754 \fBGMT_ONLINE\fP(\fIx\fP):
755 The last
756 .BR open (2)
757 found the drive with a tape in place and ready for operation.
758 .HP
759 \fBGMT_D_6250\fP(\fIx\fP), \fBGMT_D_1600\fP(\fIx\fP), \fBGMT_D_800\fP(\fIx\fP):
760 This \(lqgeneric\(rq status information reports the current
761 density setting for 9-track \(12" tape drives only.
762 .HP
763 \fBGMT_DR_OPEN\fP(\fIx\fP):
764 The drive does not have a tape in place.
765 .HP
766 \fBGMT_IM_REP_EN\fP(\fIx\fP):
767 Immediate report mode.
768 This bit is set if there are no guarantees that
769 the data has been physically written to the tape when the write call
770 returns.
771 It is set zero only when the driver does not buffer data and
772 the drive is set not to buffer data.
773 .HP
774 \fBGMT_CLN\fP(\fIx\fP):
775 The drive has requested cleaning.
776 Implemented in kernels since 2.4.19 and 2.5.43.
777 .RE
778 .IP \fImt_erreg\fP
779 The only field defined in
780 .I mt_erreg
781 is the recovered error count in the low 16 bits (as defined by
782 .BR MT_ST_SOFTERR_SHIFT
783 and
784 .BR MT_ST_SOFTERR_MASK .
785 Due to inconsistencies in the way drives report recovered errors, this
786 count is often not maintained (most drives do not by default report
787 soft errors but this can be changed with a SCSI MODE SELECT command).
788 .IP \fImt_fileno\fP
789 reports the current file number (zero-based).
790 This value is set to \-1 when the file number is unknown (e.g., after
791 .BR MTBSS
792 or
793 .BR MTSEEK ).
794 .IP \fImt_blkno\fP
795 reports the block number (zero-based) within the current file.
796 This value is set to \-1 when the block number is unknown (e.g., after
797 .BR MTBSF ,
798 .BR MTBSS ,
799 or
800 .BR MTSEEK ).
801 .SS "MTIOCPOS \(em Get tape position"
802 .PP
803 This request takes an argument of type
804 .I "(struct mtpos *)"
805 and reports the drive's notion of the current tape block number,
806 which is not the same as
807 .I mt_blkno
808 returned by
809 .BR MTIOCGET .
810 This drive must be a SCSI-2 drive that supports the
811 .B "READ POSITION"
812 command (device-specific address)
813 or a Tandberg-compatible SCSI-1 drive (Tandberg, Archive
814 Viper, Wangtek, ... ).
815 .PP
816 .in +4n
817 .nf
818 /* structure for MTIOCPOS \- mag tape get position command */
819 struct mtpos {
820     long mt_blkno;    /* current block number */
821 };
822 .fi
823 .in
824 .SH "RETURN VALUE"
825 .TP 14
826 .TP
827 .B EACCES
828 An attempt was made to write or erase a write-protected tape.
829 (This error is not detected during
830 .BR open (2).)
831 .TP
832 .B EBUSY
833 The device is already in use or the driver was unable to allocate a
834 buffer.
835 .TP
836 .B EFAULT
837 The command parameters point to memory not belonging to the calling
838 process.
839 .TP
840 .B EINVAL
841 An
842 .BR ioctl (2)
843 had an invalid argument, or a requested block size was invalid.
844 .TP
845 .B EIO
846 The requested operation could not be completed.
847 .TP
848 .B ENOMEM
849 The byte count in
850 .BR read (2)
851 is smaller than the next physical block on the tape.
852 (Before 2.2.18 and 2.4.0-test6 the extra bytes have been
853 silently ignored.)
854 .TP
855 .B ENOSPC
856 A write operation could not be completed because the tape reached
857 end-of-medium.
858 .TP
859 .B ENOSYS
860 Unknown
861 .BR ioctl (2).
862 .TP
863 .B ENXIO
864 During opening, the tape device does not exist.
865 .TP
866 .B EOVERFLOW
867 An attempt was made to read or write a variable-length block that is
868 larger than the driver's internal buffer.
869 .TP
870 .B EROFS
871 Open is attempted with
872 .B O_WRONLY
873 or
874 .B O_RDWR
875 when the tape in the drive is write-protected.
876 .SH FILES
877 .TP 12
878 .I /dev/st*
879 the auto-rewind SCSI tape devices
880 .TP 12
881 .I /dev/nst*
882 the nonrewind SCSI tape devices
883 .\" .SH AUTHOR
884 .\" The driver has been written by Kai M\(:akisara (Kai.Makisara@metla.fi)
885 .\" starting from a driver written by Dwayne Forsyth.
886 .\" Several other
887 .\" people have also contributed to the driver.
888 .SH NOTES
889 .IP 1. 4
890 When exchanging data between systems, both systems have to agree on
891 the physical tape block size.
892 The parameters of a drive after startup
893 are often not the ones most operating systems use with these
894 devices.
895 Most systems use drives in variable-block mode if the drive
896 supports that mode.
897 This applies to most modern drives, including
898 DATs, 8mm helical scan drives, DLTs, etc.
899 It may be advisable to use
900 these drives in variable-block mode also in Linux (i.e., use
901 .B MTSETBLK
902 or
903 .B MTSETDEFBLK
904 at system startup to set the mode), at least when
905 exchanging data with a foreign system.
906 The drawback of
907 this is that a fairly large tape block size has to be used to get
908 acceptable data transfer rates on the SCSI bus.
909 .IP 2.
910 Many programs (e.g.,
911 .BR tar (1))
912 allow the user to specify the blocking
913 factor on the command line.
914 Note that this determines the physical block
915 size on tape only in variable-block mode.
916 .IP 3.
917 In order to use SCSI tape drives, the basic SCSI driver,
918 a SCSI-adapter driver and the SCSI tape driver must be either
919 configured into the kernel or loaded as modules.
920 If the SCSI-tape
921 driver is not present, the drive is recognized but the tape support
922 described in this page is not available.
923 .IP 4.
924 The driver writes error messages to the console/log.
925 The SENSE
926 codes written into some messages are automatically translated to text
927 if verbose SCSI messages are enabled in kernel configuration.
928 .IP 5.
929 The driver's internal buffering allows good throughput in fixed-block
930 mode also with small
931 .BR read (2)
932 and
933 .BR write (2)
934 byte counts.
935 With direct transfers
936 this is not possible and may cause a surprise when moving to the 2.6
937 kernel.
938 The solution is to tell the software to use larger transfers (often
939 telling it to use larger blocks).
940 If this is not possible, direct transfers can be disabled.
941 .\" .SH COPYRIGHT
942 .\" Copyright \(co 1995 Robert K. Nichols.
943 .\" .br
944 .\" Copyright \(co 1999-2005 Kai M\(:akisara.
945 .\" .PP
946 .\" Permission is granted to make and distribute verbatim copies of this
947 .\" manual provided the copyright notice and this permission notice are
948 .\" preserved on all copies.
949 .\" Additional permissions are contained in the header of the source file.
950 .SH "SEE ALSO"
951 .BR mt (1)
952 .PP
953 The file
954 .I drivers/scsi/README.st
955 or
956 .I Documentation/scsi/st.txt
957 (kernel >= 2.6) in the kernel sources contains
958 the most recent information about the driver and its configuration
959 possibilities.