"Knowing what I know, I'd say they are
smarter than a sea turtle
but dumber than Danish physicist Neils Bohr."
-- MST3k
A write command has different effects depending on the status of the drive. If the drive is in variable blocking mode, it will write the entire buffer out to the tape as one block. If it is in fixed blocking mode, it will pad the block with NULs if the requested size < block size. In both cases it will only write a single block of data. Many programs (such as dd) will fail if they try to write more data than will fit in a block, and only a partial write is performed, since they interpret a write(2) call returning a smaller value as an error.
If you try and read(2) a filemark, Unix will skip over the filemark and not put any data into the input buffer, and your read(2) will return a count of zero. This is interpreted as end-of-file by most programs, hence the normal connotation that a filemark equals an "end-of-file".
You cannot write(2) a filemark. It is done by the device driver hardware, usually when you close(2) a file descriptor opened on the tape device.
The tar program is designed to write data out in blocks; it usually writes data out in an integer multiple of 512 bytes, as defined by the "b" option. For example, using "-b 20" under GNU tar makes it write 20x512=10240 bytes per write(2) call.
An interesting tidbit is that certain tar programs appear to recognize the last block of a tar archive, and stop reading. This means that they don't consume the filemark that comes after the tar file itself.
From: Danny WillisDifferent versions of tar seem to handle the end of a tar file differently.
Sometimes they write a short block at the end of the tar file, sometimes they fill with zeros, sometimes they fill with garbage.
Then when different versions of tar read those different concepts they bomb, get confused, etc. For instance, we recently had a case where the customer's tar prompted for another tape after the end of the tar file.
See also the NetBSD pax(1) manpage and the star manpage.
Note that tar probably will not record all the information your filesystem supports (like ACLs or hard-links). You may prefer to use dump to backup important filesystems.
AIX actually documents the tar file format in their man page (hooray for them). Take a look at the converted for HTML version.
My recommendation is to use this tar when generating tar files, even when they are going to be read by the native tar on a system. I have had no problems using it. I can't recommend it enough. It is conservative in what it generates, and liberal in what it accepts, like all good programs.
Unfortunately, the code is a mess, and I don't think it exits with an unsuccessful (nonzero) value if it hits an end-of-tape. I have also heard it's not POSIX compliant.
I find I have two versions of it which I need to sit down and reconcile against one another. In case you want to play with it in the meantime, check out the tar.* files here and tell me what you think. (tar.c is one of the two source files I find handy, tar.c+ is the other. tar.1 is a manpage, tar.README should probably be fetched and read before doing anything with the rest. Hm, I hope I don't find yet more versions lying around....)I wrote it de novo quite some time ago and have been improving it incrementally ever since. One large site I know of is using it now for their live-filesystem backups; it does as well as is possible against the Zwicky backup program torture tests.
For example, one common misusage of dd is to try and get 64k blocks written to the tape with this command:
tar -cf - args... | dd of=/dev/rmt8 bs=64kThis won't work because (as you will see below), the bs argument gives you only one buffer. The dd process will attempt to read 64k chunks from the pipe into this buffer, but will only receive a maximum of PIPE_BUF bytes (usually 4 or 8k). It will then write this buffer out to the tape as a single record (it will not pad this block to 64k, fortunately).
When dd starts up, it parses all the arguments on the command line in order. Note that the bs= argument will override any previous ibs= or obs= arguments. If neither the obs nor the ibs argument is presented, and bs is given, and no character-translation conversions are performed, then only one buffer will be used (more on this later). In all other cases, two buffers (input and output) are used. If you don't specify any *bs args, ibs and obs default to 512.
Next, based on the translations that you have specified, dd builds a translation table. This table is a 256 entry array, specifying a character-by-character mapping that is the composite of all specified translations. The actual order of application of translations is not the same as what is on the command line. It is:
Finally, dd enters the copy stage. It allocates enough room for the input buffer, and if using a two-buffer scenario, allocates an output buffer as well. It performs any skips on the input, then performs any seeks on the output.
The main loop of the copy stage occurs now. It attempts to read input_blocksize characters into the input buffer. Errors here may be trapped, depending on command line options. If a full input block is not read (for example, when reading from a communication line, the end of a file, a pipe or special file, especially tapes), the partial block count is incremented. If the sync option is in effect, partial input blocks are NUL padded and treated as full input blocks.
At this point, if we are single-buffering, we write the block out. TODO: finish up here (I got bored)
3. Use the backup, tar, or cpio command instead of the dd com- mand whenever possible to copy files to tape. These commands are designed for use with tape devices. For more information on us- ing tape devices see the rmt special file. 6. To ensure that only whole blocks are written to the output device (such as an 8mm tape in fixed-block mode), specify the ibs flag, the obs flag, and the conv=sync flag. The ibs flag must be a multiple of the obs flag.
This was hard-won knowledge for me. When dding a tar file directly out to tape, I ended up using:
dd if=foo.tar of=/dev/rmt1.5 ibs=1 obs=10240 conv=syncAlternatively, you can use catblock, which is more efficient. Note that their comment about ibs being a multiple of obs is simply wrong, as my example demonstrates.
When dd reads from a pipe, using the ibs=X and obs=Y operands, the output will always be blocked in chunks of size Y. When bs=Z is used, the output blocks will be what- ever was available to be read from the pipe at the time.
In other words, don't expect "bs=Z" to be the same as "obs=Z ibs=Z". That's because, like GNU tar, it probably uses one buffer if you put "bs=Z", whereas "obs=Z ibs=Z" forces it to use two buffers. GNU dd may be subject to the same deficiency here. (TODO: check) I suppose it depends on how it treats a short read.
Take a look at the C source. I've got a version under GNU autoconf so it compiles real easily under any OS. I'll put it up soon (faster if you bug me).
When hitting EOT you might get a partial block written out; obviously, you have to have a method for either starting where you left off, or starting the last block over when you start to write to a new tape. Tools like splitmerge require you to guess a size which will fit on all your tapes, precluding efficient use of mixed-media or compression.
I have what I believe to be a general-purpose solution to both these problems. It will allow you to pipe to or from a tape (or set of tapes) with impunity, and you will get exactly the same data in and out. I plan on calling the pair of programs tapecat and cattape, or something like that.
From: The Amanda Home PageAMANDA is the Advanced Maryland Automatic Network Disk Archiver. It allows the administrator of a LAN to set up single master backup server to back up multiple hosts to a single large capacity tape drive. AMANDA uses native dump facilities and can back up a large number of workstations running multiple versions of Unix efficiently. For more information, see the postscript file in cs.umd.edu:/pub/amanda/.... You can also find this in the proceedings of the Summer 1991 USENIX conference held in San Antonio, TX.
From: der MouseAt work, we use amanda, from cs.umd.edu (check around on ftp.cs.umd.edu for the distribution, if you're interested - 2.2.6 is the latest stable version; 2.3.0 is recently out but it's still rather alpha). It works fairly well for us.
From: John McGrathWhat is generally called a "block" when talking about tape writing software is called a "record" when dealing with the tape controller. This is the smallest unit that can be read or written. The controller writes "records" to the tape, separated by Inter-Record Gaps. It can also write "tape marks", which are often used to delimit files. Two successive tape marks without intervening records indicates the end-of-tape.
It is interesting to note that the Inter-Record Gaps were physically rather large, approximately 3/4 of an inch. This meant that the record (block) size had a rather profound effect on tape capacity. On a 6250 bpi drive, 80 byte records would occupy 80/6250 = 0.128 inches. With a 3/4 inch gap between each record, this meant that the tape held 1.7% data and 98.3% Inter-Record Gap.
From: der MouseBack in the old half-inch days, tapes were streams of blocks, with "magic" blocks called "filemarks" interspersed. A block was from one byte upwards, with the upper limit depending on hardware and in some cases software. On the VAX it was 64K (maybe 64K-1) for hardware reasons (16-bit byte count registers), lowered to 63K by software, apparently to catch small negative byte counts.
When reading, if you supplied a buffer smaller than the size of the record, you got an overrun error, which the driver pushed back to user-land only if the driver author felt like it.
TODO: do they support variable and fixed-block sizes TODO: how do they signify end-of-tape
From: Christoph BaduraQIC-525 drives use 1024 byte blocks on the medium (all previous QIC formats used 512 bytes). There is special compatibility code in the Tandberg firmware to allow the drive to accept requests for 512 byte blocks.
From: der MouseQuarter-inch cartridge tapes broke this notion (the half-inch tape's notion of blocks) rather badly. They appear to be streams of 512-byte blocks, with interspersed filemarks. Provided your transfer counts are all multiples of 512, it doesn't matter whether the read and write sizes match - it's rather like reading and writing a plain file, except that the grain size is 512 bytes rather than one byte.
From IBMWith the 8MM TAPE DRIVE, the use of a fixed block size which is not a multiple of 1K is inefficient. The 8mm tape drive always writes internally in 1K blocks. It simulates the effect of variable block sizes, but, for example, using a fixed block size of 512 bytes (or using variable block size and write()ing 512 bytes at a time) wastes one half of the tape capacity and decreases the maximum transfer rate.
From Bill HassellThe DDS format is much more complicated than that, but the basic recording block is aproximately 129 Kbytes. As long as you keep data streaming in, the data blocks will be filled by the drive electronics. Inter-record gaps found in more traditional 9-track tapes do not exist in the DDS format. If you stop the data stream for more than 6-7 seconds, the drive will write what has received so far into a 129K buffer. Thus, writing an 80 byte record once a minute will reduce the DDS capacity to a few megs! DDS cannot be used as an efficient data logger unless a frontend program collects the data into about 129K batches.
Apparently this large recording block is called a superblock.
Experimental evidence shows strange incompatibilities between operating systems using 4mm drives. A 4mm tape written on a Solaris 2.4 box causes our HP-UX A9.01 box to reboot. A 4mm tape written on a Solaris 2.4 box cannot be read (or written to!) by our AIX machine.
format | length (m) |
capacity (GB) |
density (bpi) |
---|---|---|---|
DDS (DDS-1) | 60 | 1.3 | 61000 |
DDS (DDS-1) | 90 | 2 | 61000 |
DDS-2 | 120 | 4 | 61000 |
DDS-3 | 125 | 12 | 122000 |
From: Simon Muir------ Drive Support -------- Uncomp. Length Format FH-DDS HH-DDS DDS-2 DDS-3 Capacity -------------------------------------------------------- 60m DDS-1 Yes Yes Yes Yes 1.3GB 90m DDS-1 No Yes Yes Yes 2.0GB 120m DDS-2 No No Yes Yes 4.0GB 125m DDS-3 No No No Yes 12.0GB Notes: 1. "DDS" and "DDS-1" are interchangeable as descriptions of the original format. "DDS" was originally used to differentiate the on-tape format from that of audio (DAT). The cartridge is physically identical, but the DDS format has much more powerful error correction, and a logical structure which emulates 1/2" tape. Audio - DAT is a essentially a continuous stream of small frames, with limited error correction capability. 2. "Yes" under drive support means *full* support - ie. unlike some QIC formats, drives will read & write the earlier formats to be fully readable on earlier-vintage drives. 3. The original full-height DDS drives (FH-DDS, above) only supported 60m tapes because they had no ability to alter tension according to tape thickness. FH DDS drives have no on-board compression either. 4. DDS-3 is a radically different format from the earlier ones, so the relationship between tape length and capacity doesn't hold. DDS-4 will be much higher native capacity still... 5. Data Compression: Most typical office data is compressible by 1.8:1 or 2:1, but YOUR MILEAGE MAY VARY. Eg. GIF files use a different variant of the same compression method (Lempel-Ziv), and thus won't be compressed further by a DDS drive. 6. Virtually academic point: In the early days, one manufacturer brought out the "Data DAT" format, also based on DAT cartridge technology. IIRC, capacity was roughly the same - 1.3GB, but the format is not interchangeable with DDS. I doubt if there are any left alive, as few were made. 7. Totally academic point: The tape size is derived from Imperial inch formats. Thus in reality it is 1/8" or 3.861mm, not 4mm, (same as audio Compact Cassettes). I doubt anyone cares :)
SunOS 4.1.3 native tar EOF = unexpected EOF = 3 EOT = I/O error = 3 SunOS 5.4 native tar ok = (no message) = 0 EOF = "tar: blocksize = 0" = 0 EOT = "tar: tape read error" = 3 AIX native tar no EOF condition testable EOT = "tar: tape read error: I/O error" = 254 HP-UX A.09.01 native tar Note that subsequent tar commands read the SAME file, but by clever use of the mt command you can access filemarks, etc., directly. EOT/EOF = "Tar: blocksize = 0; broken pipe?" = 3
Let's say you use "tar" on the no rewind tape device to send three tar files out to the tape.
In actuality, after each close of the tape device, you have written a tape mark. Thus, what it looks like on tape is:
111102203333300
Where 1, 2, 3 are blocks corresponding to tar files 1, 2, and 3 respectively. Each digit represents a block.
What varies between the Unix variants is how this is presented back at you. Let's assume you repeatedly invoke "GNUtar" with the "t" option to list the stuff on the tape.
AIX (tested: 3.x)
1 2 3
AIX does not present the EOF or EOT/EOM marks to you. The first tar command reads the first "file", second command reads the second file, etc.
Sun Solaris 2.x (aka SunOS 5.x)
1230
Solaris presents the null block at the end of the tape. That means that your fourth "tar t" command will show what appears to be an empty tar file.
SunOS 4.x (aka Solaris 1.0)
102030
One null block after every tar file.
HP-UX (tested: 9.x)
1020300
One null block after every file, a second null block at end of tape.
After reading all the files (and null blocks) on the tape, a subsequent tar command will give some kind of error.
This will not work very well on QIC tapes because they have a serpentine recording pattern; when you write at the beginning of the tape the write (or is it erase) head may be destroying large swatches of data on each following track of the tape, so you may already be screwed. Nonetheless, you may be able to recover a fairly significant amount of data.
TODO: Rewinding tapes; when does it happen (depends on drive, firmware; DDS does it on eject, QIC and DLT don't) End-of-media; how different types of drives can deal with it Caching tape drives and other quasi-cool stuff (e.g. HP DAT drives) Show a diagram of tape drive types, and how they indicate EOF, EOM, etc.
I have seen tapes which make tape heads dirty the first time they are used, repeatedly. They will typically generate too many errors to be useful.
I have seen many, many drives which will hang the SCSI bus if particular commands are issued in particular orders. For example, I have seen one DAT changer which will hang the SCSI bus if it is told to go "offline" without being rewound. I have also seen QIC drives which take so long to seek to EOM that the OS gives up and dequeues the CCB.
All trademarks in this document are property of their respective manufacturers.
Whenever I specify capacity, it is uncompressed.
Do not stare directly into sun.