1.\" Copyright (c) 1996 2.\" Mike Pritchard <mpp@FreeBSD.org>. All rights reserved. 3.\" 4.\" Copyright (c) 1983, 1991, 1993 5.\" The Regents of the University of California. All rights reserved. 6.\" 7.\" Redistribution and use in source and binary forms, with or without 8.\" modification, are permitted provided that the following conditions 9.\" are met: 10.\" 1. Redistributions of source code must retain the above copyright 11.\" notice, this list of conditions and the following disclaimer. 12.\" 2. Redistributions in binary form must reproduce the above copyright 13.\" notice, this list of conditions and the following disclaimer in the 14.\" documentation and/or other materials provided with the distribution. 15.\" 3. Neither the name of the University nor the names of its contributors 16.\" may be used to endorse or promote products derived from this software 17.\" without specific prior written permission. 18.\" 19.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 20.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 23.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29.\" SUCH DAMAGE. 30.\" 31.Dd February 12, 2015 32.Dt MTIO 4 33.Os 34.Sh NAME 35.Nm mtio 36.Nd FreeBSD magtape interface 37.Sh DESCRIPTION 38The special files 39named 40.Pa /dev/[en]sa* 41refer to SCSI tape drives, 42which may be attached to the system. 43.Pa /dev/sa*.ctl 44are control devices that can be used to issue ioctls to the SCSI 45tape driver to set parameters that are required to last beyond the 46unmounting of a tape. 47.Pp 48The rewind devices automatically rewind 49when the last requested read, write or seek has finished, or the end of the tape 50has been reached. 51The letter 52.Ql n 53is prepended to 54the name of the no-rewind devices. 55The letter 56.Ql e 57is prepended to the name of the eject devices. 58.Pp 59Tapes can be written with either fixed length records or variable length 60records. 61See 62.Xr sa 4 63for more information. 64Two filemarks mark the end of a tape, and 65one filemark marks the end of a tape file. 66If the tape is not to be rewound it is positioned with the 67head in between the two tape marks, where the next write 68will over write the second end-of-file marker. 69.Pp 70All of the magtape devices may be manipulated with the 71.Xr mt 1 72command. 73.Pp 74A number of 75.Xr ioctl 2 76operations are available 77on raw magnetic tape. 78The following definitions are from 79.In sys/mtio.h : 80.Bd -literal 81#ifndef _SYS_MTIO_H_ 82#define _SYS_MTIO_H_ 83 84#ifndef _KERNEL 85#include <sys/types.h> 86#endif 87#include <sys/ioccom.h> 88 89/* 90 * Structures and definitions for mag tape io control commands 91 */ 92 93/* structure for MTIOCTOP - mag tape op command */ 94struct mtop { 95 short mt_op; /* operations defined below */ 96 int32_t mt_count; /* how many of them */ 97}; 98 99/* operations */ 100#define MTWEOF 0 /* write an end-of-file record */ 101#define MTFSF 1 /* forward space file */ 102#define MTBSF 2 /* backward space file */ 103#define MTFSR 3 /* forward space record */ 104#define MTBSR 4 /* backward space record */ 105#define MTREW 5 /* rewind */ 106#define MTOFFL 6 /* rewind and put the drive offline */ 107#define MTNOP 7 /* no operation, sets status only */ 108#define MTCACHE 8 /* enable controller cache */ 109#define MTNOCACHE 9 /* disable controller cache */ 110 111#if defined(__FreeBSD__) 112/* Set block size for device. If device is a variable size dev */ 113/* a non zero parameter will change the device to a fixed block size */ 114/* device with block size set to that of the parameter passed in. */ 115/* Resetting the block size to 0 will restore the device to a variable */ 116/* block size device. */ 117 118#define MTSETBSIZ 10 119 120/* Set density values for device. Sets the value for the opened mode only. */ 121 122#define MTSETDNSTY 11 123 124#define MTERASE 12 /* erase to EOM */ 125#define MTEOD 13 /* Space to EOM */ 126#define MTCOMP 14 /* select compression mode 0=off, 1=def */ 127#define MTRETENS 15 /* re-tension tape */ 128#define MTWSS 16 /* write setmark(s) */ 129#define MTFSS 17 /* forward space setmark */ 130#define MTBSS 18 /* backward space setmark */ 131#define MTLOAD 19 /* load tape in drive */ 132#define MTWEOFI 20 /* write an end-of-file record without waiting*/ 133 134#define MT_COMP_ENABLE 0xffffffff 135#define MT_COMP_DISABLED 0xfffffffe 136#define MT_COMP_UNSUPP 0xfffffffd 137 138/* 139 * Values in mt_dsreg that say what the device is doing 140 */ 141#define MTIO_DSREG_NIL 0 /* Unknown */ 142#define MTIO_DSREG_REST 1 /* Doing Nothing */ 143#define MTIO_DSREG_RBSY 2 /* Communicating with tape (but no motion) */ 144#define MTIO_DSREG_WR 20 /* Writing */ 145#define MTIO_DSREG_FMK 21 /* Writing Filemarks */ 146#define MTIO_DSREG_ZER 22 /* Erasing */ 147#define MTIO_DSREG_RD 30 /* Reading */ 148#define MTIO_DSREG_FWD 40 /* Spacing Forward */ 149#define MTIO_DSREG_REV 41 /* Spacing Reverse */ 150#define MTIO_DSREG_POS 42 /* Hardware Positioning (direction unknown) */ 151#define MTIO_DSREG_REW 43 /* Rewinding */ 152#define MTIO_DSREG_TEN 44 /* Retensioning */ 153#define MTIO_DSREG_UNL 45 /* Unloading */ 154#define MTIO_DSREG_LD 46 /* Loading */ 155 156#endif /* __FreeBSD__ */ 157 158/* structure for MTIOCGET - mag tape get status command */ 159 160struct mtget { 161 short mt_type; /* type of magtape device */ 162/* the following two registers are grossly device dependent */ 163 short mt_dsreg; /* ``drive status'' register */ 164 short mt_erreg; /* ``error'' register */ 165/* end device-dependent registers */ 166 /* 167 * Note that the residual count, while maintained, may be 168 * be nonsense because the size of the residual may (greatly) 169 * exceed 32 K-bytes. Use the MTIOCERRSTAT ioctl to get a 170 * more accurate count. 171 */ 172 short mt_resid; /* residual count */ 173#if defined (__FreeBSD__) 174 int32_t mt_blksiz; /* presently operating blocksize */ 175 int32_t mt_density; /* presently operating density */ 176 uint32_t mt_comp; /* presently operating compression */ 177 int32_t mt_blksiz0; /* blocksize for mode 0 */ 178 int32_t mt_blksiz1; /* blocksize for mode 1 */ 179 int32_t mt_blksiz2; /* blocksize for mode 2 */ 180 int32_t mt_blksiz3; /* blocksize for mode 3 */ 181 int32_t mt_density0; /* density for mode 0 */ 182 int32_t mt_density1; /* density for mode 1 */ 183 int32_t mt_density2; /* density for mode 2 */ 184 int32_t mt_density3; /* density for mode 3 */ 185/* the following are not yet implemented */ 186 uint32_t mt_comp0; /* compression type for mode 0 */ 187 uint32_t mt_comp1; /* compression type for mode 1 */ 188 uint32_t mt_comp2; /* compression type for mode 2 */ 189 uint32_t mt_comp3; /* compression type for mode 3 */ 190/* end not yet implemented */ 191#endif 192 int32_t mt_fileno; /* relative file number of current position */ 193 int32_t mt_blkno; /* relative block number of current position */ 194}; 195 196/* structure for MTIOCERRSTAT - tape get error status command */ 197/* really only supported for SCSI tapes right now */ 198struct scsi_tape_errors { 199 /* 200 * These are latched from the last command that had a SCSI 201 * Check Condition noted for these operations. The act 202 * of issuing an MTIOCERRSTAT unlatches and clears them. 203 */ 204 uint8_t io_sense[32]; /* Last Sense Data For Data I/O */ 205 int32_t io_resid; /* residual count from last Data I/O */ 206 uint8_t io_cdb[16]; /* Command that Caused the Last Data Sense */ 207 uint8_t ctl_sense[32]; /* Last Sense Data For Control I/O */ 208 int32_t ctl_resid; /* residual count from last Control I/O */ 209 uint8_t ctl_cdb[16]; /* Command that Caused the Last Control Sense */ 210 /* 211 * These are the read and write cumulative error counters. 212 * (how to reset cumulative error counters is not yet defined). 213 * (not implemented as yet but space is being reserved for them) 214 */ 215 struct { 216 uint32_t retries; /* total # retries performed */ 217 uint32_t corrected; /* total # corrections performed */ 218 uint32_t processed; /* total # corrections successful */ 219 uint32_t failures; /* total # corrections/retries failed */ 220 uint64_t nbytes; /* total # bytes processed */ 221 } wterr, rderr; 222}; 223 224union mterrstat { 225 struct scsi_tape_errors scsi_errstat; 226 char _reserved_padding[256]; 227}; 228 229struct mtrblim { 230 uint32_t granularity; 231 uint32_t min_block_length; 232 uint32_t max_block_length; 233}; 234 235typedef enum { 236 MT_LOCATE_DEST_OBJECT = 0x00, 237 MT_LOCATE_DEST_FILE = 0x01, 238 MT_LOCATE_DEST_SET = 0x02, 239 MT_LOCATE_DEST_EOD = 0x03 240} mt_locate_dest_type; 241 242typedef enum { 243 MT_LOCATE_BAM_IMPLICIT = 0x00, 244 MT_LOCATE_BAM_EXPLICIT = 0x01 245} mt_locate_bam; 246 247typedef enum { 248 MT_LOCATE_FLAG_IMMED = 0x01, 249 MT_LOCATE_FLAG_CHANGE_PART = 0x02 250} mt_locate_flags; 251 252struct mtlocate { 253 mt_locate_flags flags; 254 mt_locate_dest_type dest_type; 255 mt_locate_bam block_address_mode; 256 int64_t partition; 257 uint64_t logical_id; 258 uint8_t reserved[64]; 259}; 260 261typedef enum { 262 MT_EXT_GET_NONE, 263 MT_EXT_GET_OK, 264 MT_EXT_GET_NEED_MORE_SPACE, 265 MT_EXT_GET_ERROR 266} mt_ext_get_status; 267 268struct mtextget { 269 uint32_t alloc_len; 270 char *status_xml; 271 uint32_t fill_len; 272 mt_ext_get_status status; 273 char error_str[128]; 274 uint8_t reserved[64]; 275}; 276 277#define MT_EXT_GET_ROOT_NAME "mtextget" 278#define MT_DENSITY_ROOT_NAME "mtdensity" 279#define MT_MEDIA_DENSITY_NAME "media_density" 280#define MT_DENSITY_REPORT_NAME "density_report" 281#define MT_MEDIUM_TYPE_REPORT_NAME "medium_type_report" 282#define MT_MEDIA_REPORT_NAME "media_report" 283#define MT_DENSITY_ENTRY_NAME "density_entry" 284 285#define MT_DENS_WRITE_OK 0x80 286#define MT_DENS_DUP 0x40 287#define MT_DENS_DEFLT 0x20 288 289 290#define MT_PARAM_FIXED_STR_LEN 32 291union mt_param_value { 292 int64_t value_signed; 293 uint64_t value_unsigned; 294 char *value_var_str; 295 char value_fixed_str[MT_PARAM_FIXED_STR_LEN]; 296 uint8_t reserved[64]; 297}; 298 299typedef enum { 300 MT_PARAM_SET_NONE, 301 MT_PARAM_SET_SIGNED, 302 MT_PARAM_SET_UNSIGNED, 303 MT_PARAM_SET_VAR_STR, 304 MT_PARAM_SET_FIXED_STR 305} mt_param_set_type; 306 307typedef enum { 308 MT_PARAM_STATUS_NONE, 309 MT_PARAM_STATUS_OK, 310 MT_PARAM_STATUS_ERROR 311} mt_param_set_status; 312 313#define MT_PARAM_VALUE_NAME_LEN 64 314struct mtparamset { 315 char value_name[MT_PARAM_VALUE_NAME_LEN]; 316 mt_param_set_type value_type; 317 int value_len; 318 union mt_param_value value; 319 mt_param_set_status status; 320 char error_str[128]; 321}; 322 323#define MT_PARAM_ROOT_NAME "mtparamget" 324#define MT_PROTECTION_NAME "protection" 325 326/* 327 * Set a list of parameters. 328 */ 329struct mtsetlist { 330 int num_params; 331 int param_len; 332 struct mtparamset *params; 333}; 334 335/* 336 * Constants for mt_type byte. These are the same 337 * for controllers compatible with the types listed. 338 */ 339#define MT_ISTS 0x01 /* TS-11 */ 340#define MT_ISHT 0x02 /* TM03 Massbus: TE16, TU45, TU77 */ 341#define MT_ISTM 0x03 /* TM11/TE10 Unibus */ 342#define MT_ISMT 0x04 /* TM78/TU78 Massbus */ 343#define MT_ISUT 0x05 /* SI TU-45 emulation on Unibus */ 344#define MT_ISCPC 0x06 /* SUN */ 345#define MT_ISAR 0x07 /* SUN */ 346#define MT_ISTMSCP 0x08 /* DEC TMSCP protocol (TU81, TK50) */ 347#define MT_ISCY 0x09 /* CCI Cipher */ 348#define MT_ISCT 0x0a /* HP 1/4 tape */ 349#define MT_ISFHP 0x0b /* HP 7980 1/2 tape */ 350#define MT_ISEXABYTE 0x0c /* Exabyte */ 351#define MT_ISEXA8200 0x0c /* Exabyte EXB-8200 */ 352#define MT_ISEXA8500 0x0d /* Exabyte EXB-8500 */ 353#define MT_ISVIPER1 0x0e /* Archive Viper-150 */ 354#define MT_ISPYTHON 0x0f /* Archive Python (DAT) */ 355#define MT_ISHPDAT 0x10 /* HP 35450A DAT drive */ 356#define MT_ISMFOUR 0x11 /* M4 Data 1/2 9track drive */ 357#define MT_ISTK50 0x12 /* DEC SCSI TK50 */ 358#define MT_ISMT02 0x13 /* Emulex MT02 SCSI tape controller */ 359 360/* mag tape io control commands */ 361#define MTIOCTOP _IOW('m', 1, struct mtop) /* do a mag tape op */ 362#define MTIOCGET _IOR('m', 2, struct mtget) /* get tape status */ 363/* these two do not appear to be used anywhere */ 364#define MTIOCIEOT _IO('m', 3) /* ignore EOT error */ 365#define MTIOCEEOT _IO('m', 4) /* enable EOT error */ 366/* 367 * When more SCSI-3 SSC (streaming device) devices are out there 368 * that support the full 32 byte type 2 structure, we'll have to 369 * rethink these ioctls to support all the entities they haul into 370 * the picture (64 bit blocks, logical file record numbers, etc..). 371 */ 372#define MTIOCRDSPOS _IOR('m', 5, uint32_t) /* get logical blk addr */ 373#define MTIOCRDHPOS _IOR('m', 6, uint32_t) /* get hardware blk addr */ 374#define MTIOCSLOCATE _IOW('m', 5, uint32_t) /* seek to logical blk addr */ 375#define MTIOCHLOCATE _IOW('m', 6, uint32_t) /* seek to hardware blk addr */ 376#define MTIOCERRSTAT _IOR('m', 7, union mterrstat) /* get tape errors */ 377/* 378 * Set EOT model- argument is number of filemarks to end a tape with. 379 * Note that not all possible values will be accepted. 380 */ 381#define MTIOCSETEOTMODEL _IOW('m', 8, uint32_t) 382/* Get current EOT model */ 383#define MTIOCGETEOTMODEL _IOR('m', 8, uint32_t) 384#define MTIOCRBLIM _IOR('m', 9, struct mtrblim) /* get block limits */ 385#define MTIOCEXTLOCATE _IOW('m', 10, struct mtlocate) /* seek to position */ 386#define MTIOCEXTGET _IOWR('m', 11, struct mtextget) /* get tape status */ 387#define MTIOCPARAMGET _IOWR('m', 12, struct mtextget) /* get tape params */ 388#define MTIOCPARAMSET _IOWR('m', 13, struct mtparamset) /* set tape params */ 389#define MTIOCSETLIST _IOWR('m', 14, struct mtsetlist) /* set N params */ 390 391#ifndef _KERNEL 392#define DEFTAPE "/dev/nsa0" 393#endif 394 395#endif /* !_SYS_MTIO_H_ */ 396.Ed 397.Sh FILES 398.Bl -tag -width /dev/[en]sa* -compact 399.It Pa /dev/[en]sa* 400.El 401.Sh SEE ALSO 402.Xr mt 1 , 403.Xr tar 1 , 404.Xr sa 4 405.Sh HISTORY 406The 407.Nm 408manual appeared in 409.Bx 4.2 . 410An i386 version first appeared in 411.Fx 2.2 . 412