Import of libarchive and bsdtar 1.3.1
[dragonfly.git] / contrib / libarchive-1.3.1 / libarchive / tar.5
1 .\" Copyright (c) 2003-2004 Tim Kientzle
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD: src/lib/libarchive/tar.5,v 1.15 2006/07/29 23:51:10 kientzle Exp $
26 .\"
27 .Dd May 20, 2004
28 .Dt TAR 5
29 .Os
30 .Sh NAME
31 .Nm tar
32 .Nd format of tape archive files
33 .Sh DESCRIPTION
34 The
35 .Nm
36 archive format collects any number of files, directories, and other
37 file system objects (symbolic links, device nodes, etc.) into a single
38 stream of bytes.
39 The format was originally designed to be used with
40 tape drives that operate with fixed-size blocks, but is widely used as
41 a general packaging mechanism.
42 .Ss General Format
43 A
44 .Nm
45 archive consists of a series of 512-byte records.
46 Each file system object requires a header record which stores basic metadata
47 (pathname, owner, permissions, etc.) and zero or more records containing any
48 file data.
49 The end of the archive is indicated by two records consisting
50 entirely of zero bytes.
51 .Pp
52 For compatibility with tape drives that use fixed block sizes,
53 programs that read or write tar files always read or write a fixed
54 number of records with each I/O operation.
55 These
56 .Dq blocks
57 are always a multiple of the record size.
58 The most common block size\(emand the maximum supported by historic
59 implementations\(emis 10240 bytes or 20 records.
60 (Note: the terms
61 .Dq block
62 and
63 .Dq record
64 here are not entirely standard; this document follows the
65 convention established by John Gilmore in documenting
66 .Nm pdtar . )
67 .Ss Old-Style Archive Format
68 The original tar archive format has been extended many times to
69 include additional information that various implementors found
70 necessary.
71 This section describes the variant implemented by the tar command
72 included in
73 .At v7 ,
74 which is one of the earliest widely-used versions of the tar program.
75 .Pp
76 The header record for an old-style
77 .Nm
78 archive consists of the following:
79 .Bd -literal -offset indent
80 struct header_old_tar {
81         char name[100];
82         char mode[8];
83         char uid[8];
84         char gid[8];
85         char size[12];
86         char mtime[12];
87         char checksum[8];
88         char linkflag[1];
89         char linkname[100];
90         char pad[255];
91 };
92 .Ed
93 All unused bytes in the header record are filled with nulls.
94 .Bl -tag -width indent
95 .It Va name
96 Pathname, stored as a null-terminated string.
97 Early tar implementations only stored regular files (including
98 hardlinks to those files).
99 One common early convention used a trailing "/" character to indicate
100 a directory name, allowing directory permissions and owner information
101 to be archived and restored.
102 .It Va mode
103 File mode, stored as an octal number in ASCII.
104 .It Va uid , Va gid
105 User id and group id of owner, as octal numbers in ASCII.
106 .It Va size
107 Size of file, as octal number in ASCII.
108 For regular files only, this indicates the amount of data
109 that follows the header.
110 In particular, this field was ignored by early tar implementations
111 when extracting hardlinks.
112 Modern writers should always store a zero length for hardlink entries.
113 .It Va mtime
114 Modification time of file, as an octal number in ASCII.
115 This indicates the number of seconds since the start of the epoch,
116 00:00:00 UTC January 1, 1970.
117 Note that negative values should be avoided
118 here, as they are handled inconsistently.
119 .It Va checksum
120 Header checksum, stored as an octal number in ASCII.
121 To compute the checksum, set the checksum field to all spaces,
122 then sum all bytes in the header using unsigned arithmetic.
123 This field should be stored as six octal digits followed by a null and a space
124 character.
125 Note that many early implementations of tar used signed arithmetic
126 for the checksum field, which can cause interoperability problems
127 when transferring archives between systems.
128 Modern robust readers compute the checksum both ways and accept the
129 header if either computation matches.
130 .It Va linkflag , Va linkname
131 In order to preserve hardlinks and conserve tape, a file
132 with multiple links is only written to the archive the first
133 time it is encountered.
134 The next time it is encountered, the
135 .Va linkflag
136 is set to an ASCII
137 .Sq 1
138 and the
139 .Va linkname
140 field holds the first name under which this file appears.
141 (Note that regular files have a null value in the
142 .Va linkflag
143 field.)
144 .El
145 .Pp
146 Early tar implementations varied in how they terminated these fields.
147 The tar command in
148 .At v7
149 used the following conventions (this is also documented in early BSD manpages):
150 the pathname must be null-terminated;
151 the mode, uid, and gid fields must end in a space and a null byte;
152 the size and mtime fields must end in a space;
153 the checksum is terminated by a null and a space.
154 Early implementations filled the numeric fields with leading spaces.
155 This seems to have been common practice until the
156 .St -p1003.1-88
157 standard was released.
158 For best portability, modern implementations should fill the numeric
159 fields with leading zeros.
160 .Ss Pre-POSIX Archives
161 An early draft of
162 .St -p1003.1-88
163 served as the basis for John Gilmore's
164 .Nm pdtar
165 program and many system implementations from the late 1980s
166 and early 1990s.
167 These archives generally follow the POSIX ustar
168 format described below with the following variations:
169 .Bl -bullet -compact -width indent
170 .It
171 The magic value is
172 .Dq ustar\ \&
173 (note the following space).
174 The version field contains a space character followed by a null.
175 .It
176 The numeric fields are generally filled with leading spaces
177 (not leading zeros as recommended in the final standard).
178 .It
179 The prefix field is often not used, limiting pathnames to
180 the 100 characters of old-style archives.
181 .El
182 .Ss POSIX ustar Archives
183 .St -p1003.1-88
184 defined a standard tar file format to be read and written
185 by compliant implementations of
186 .Xr tar 1 .
187 This format is often called the
188 .Dq ustar
189 format, after the magic value used
190 in the header.
191 (The name is an acronym for
192 .Dq Unix Standard TAR . )
193 It extends the historic format with new fields:
194 .Bd -literal -offset indent
195 struct header_posix_ustar {
196         char name[100];
197         char mode[8];
198         char uid[8];
199         char gid[8];
200         char size[12];
201         char mtime[12];
202         char checksum[8];
203         char typeflag[1];
204         char linkname[100];
205         char magic[6];
206         char version[2];
207         char uname[32];
208         char gname[32];
209         char devmajor[8];
210         char devminor[8];
211         char prefix[155];
212         char pad[12];
213 };
214 .Ed
215 .Bl -tag -width indent
216 .It Va typeflag
217 Type of entry.
218 POSIX extended the earlier
219 .Va linkflag
220 field with several new type values:
221 .Bl -tag -width indent -compact
222 .It Dq 0
223 Regular file.
224 NULL should be treated as a synonym, for compatibility purposes.
225 .It Dq 1
226 Hard link.
227 .It Dq 2
228 Symbolic link.
229 .It Dq 3
230 Character device node.
231 .It Dq 4
232 Block device node.
233 .It Dq 5
234 Directory.
235 .It Dq 6
236 FIFO node.
237 .It Dq 7
238 Reserved.
239 .It Other
240 A POSIX-compliant implementation must treat any unrecognized typeflag value
241 as a regular file.
242 In particular, writers should ensure that all entries
243 have a valid filename so that they can be restored by readers that do not
244 support the corresponding extension.
245 Uppercase letters "A" through "Z" are reserved for custom extensions.
246 Note that sockets and whiteout entries are not archivable.
247 .El
248 It is worth noting that the
249 .Va size
250 field, in particular, has different meanings depending on the type.
251 For regular files, of course, it indicates the amount of data
252 following the header.
253 For directories, it may be used to indicate the total size of all
254 files in the directory, for use by operating systems that pre-allocate
255 directory space.
256 For all other types, it should be set to zero by writers and ignored
257 by readers.
258 .It Va magic
259 Contains the magic value
260 .Dq ustar
261 followed by a NULL byte to indicate that this is a POSIX standard archive.
262 Full compliance requires the uname and gname fields be properly set.
263 .It Va version
264 Version.
265 This should be
266 .Dq 00
267 (two copies of the ASCII digit zero) for POSIX standard archives.
268 .It Va uname , Va gname
269 User and group names, as null-terminated ASCII strings.
270 These should be used in preference to the uid/gid values
271 when they are set and the corresponding names exist on
272 the system.
273 .It Va devmajor , Va devminor
274 Major and minor numbers for character device or block device entry.
275 .It Va prefix
276 First part of pathname.
277 If the pathname is too long to fit in the 100 bytes provided by the standard
278 format, it can be split at any
279 .Pa /
280 character with the first portion going here.
281 If the prefix field is not empty, the reader will prepend
282 the prefix value and a
283 .Pa /
284 character to the regular name field to obtain the full pathname.
285 .El
286 .Pp
287 Note that all unused bytes must be set to
288 .Dv NULL .
289 .Pp
290 Field termination is specified slightly differently by POSIX
291 than by previous implementations.
292 The
293 .Va magic ,
294 .Va uname ,
295 and
296 .Va gname
297 fields must have a trailing
298 .Dv NULL .
299 The
300 .Va pathname ,
301 .Va linkname ,
302 and
303 .Va prefix
304 fields must have a trailing
305 .Dv NULL
306 unless they fill the entire field.
307 (In particular, it is possible to store a 256-character pathname if it
308 happens to have a
309 .Pa /
310 as the 156th character.)
311 POSIX requires numeric fields to be zero-padded in the front, and allows
312 them to be terminated with either space or
313 .Dv NULL
314 characters.
315 .Pp
316 Currently, most tar implementations comply with the ustar
317 format, occasionally extending it by adding new fields to the
318 blank area at the end of the header record.
319 .Ss Pax Interchange Format
320 There are many attributes that cannot be portably stored in a
321 POSIX ustar archive.
322 .St -p1003.1-2001
323 defined a
324 .Dq pax interchange format
325 that uses two new types of entries to hold text-formatted
326 metadata that applies to following entries.
327 Note that a pax interchange format archive is a ustar archive in every
328 respect.
329 The new data is stored in ustar-compatible archive entries that use the
330 .Dq x
331 or
332 .Dq g
333 typeflag.
334 In particular, older implementations that do not fully support these
335 extensions will extract the metadata into regular files, where the
336 metadata can be examined as necessary.
337 .Pp
338 An entry in a pax interchange format archive consists of one or
339 two standard ustar entries, each with its own header and data.
340 The first optional entry stores the extended attributes
341 for the following entry.
342 This optional first entry has an "x" typeflag and a size field that
343 indicates the total size of the extended attributes.
344 The extended attributes themselves are stored as a series of text-format
345 lines encoded in the portable UTF-8 encoding.
346 Each line consists of a decimal number, a space, a key string, an equals
347 sign, a value string, and a new line.
348 The decimal number indicates the length of the entire line, including the
349 initial length field and the trailing newline.
350 An example of such a field is:
351 .Dl 25 ctime=1084839148.1212\en
352 Keys in all lowercase are standard keys.
353 Vendors can add their own keys by prefixing them with an all uppercase
354 vendor name and a period.
355 Note that, unlike the historic header, numeric values are stored using
356 decimal, not octal.
357 A description of some common keys follows:
358 .Bl -tag -width indent
359 .It Cm atime , Cm ctime , Cm mtime
360 File access, inode change, and modification times.
361 These fields can be negative or include a decimal point and a fractional value.
362 .It Cm uname , Cm uid , Cm gname , Cm gid
363 User name, group name, and numeric UID and GID values.
364 The user name and group name stored here are encoded in UTF8
365 and can thus include non-ASCII characters.
366 The UID and GID fields can be of arbitrary length.
367 .It Cm linkpath
368 The full path of the linked-to file.
369 Note that this is encoded in UTF8 and can thus include non-ASCII characters.
370 .It Cm path
371 The full pathname of the entry.
372 Note that this is encoded in UTF8 and can thus include non-ASCII characters.
373 .It Cm realtime.* , Cm security.*
374 These keys are reserved and may be used for future standardization.
375 .It Cm size
376 The size of the file.
377 Note that there is no length limit on this field, allowing conforming
378 archives to store files much larger than the historic 8GB limit.
379 .It Cm SCHILY.*
380 Vendor-specific attributes used by Joerg Schilling's
381 .Nm star
382 implementation.
383 .It Cm SCHILY.acl.access , Cm SCHILY.acl.default
384 Stores the access and default ACLs as textual strings in a format
385 that is an extension of the format specified by POSIX.1e draft 17.
386 In particular, each user or group access specification can include a fourth
387 colon-separated field with the numeric UID or GID.
388 This allows ACLs to be restored on systems that may not have complete
389 user or group information available (such as when NIS/YP or LDAP services
390 are temporarily unavailable).
391 .It Cm SCHILY.devminor , Cm SCHILY.devmajor
392 The full minor and major numbers for device nodes.
393 .It Cm SCHILY.dev, Cm SCHILY.ino , Cm SCHILY.nlinks
394 The device number, inode number, and link count for the entry.
395 In particular, note that a pax interchange format archive using Joerg
396 Schilling's
397 .Cm SCHILY.*
398 extensions can store all of the data from
399 .Va struct stat .
400 .It Cm LIBARCHIVE.xattr. Ns Ar namespace Ns . Ns Ar key
401 Libarchive stores POSIX.1e-style extended attributes using
402 keys of this form.  The
403 .Ar key
404 value is URL-encoded:
405 All non-ASCII characters and the two special characters
406 .Dq =
407 and
408 .Dq %
409 are encoded as
410 .Dq %
411 followed by two uppercase hexadecimal digits.
412 The value of this key is the extended attribute value
413 encoded in base 64.
414 XXX Detail the base-64 format here XXX
415 .It Cm VENDOR.*
416 XXX document other vendor-specific extensions XXX
417 .El
418 .Pp
419 Any values stored in an extended attribute override the corresponding
420 values in the regular tar header.
421 Note that compliant readers should ignore the regular fields when they
422 are overridden.
423 This is important, as existing archivers are known to store non-compliant
424 values in the standard header fields in this situation.
425 There are no limits on length for any of these fields.
426 In particular, numeric fields can be arbitrarily large.
427 All text fields are encoded in UTF8.
428 Compliant writers should store only portable 7-bit ASCII characters in
429 the standard ustar header and use extended
430 attributes whenever a text value contains non-ASCII characters.
431 .Pp
432 In addition to the
433 .Cm x
434 entry described above, the pax interchange format
435 also supports a
436 .Cm g
437 entry.
438 The
439 .Cm g
440 entry is identical in format, but specifies attributes that serve as
441 defaults for all subsequent archive entries.
442 The
443 .Cm g
444 entry is not widely used.
445 .Pp
446 Besides the new
447 .Cm x
448 and
449 .Cm g
450 entries, the pax interchange format has a few other minor variations
451 from the earlier ustar format.
452 The most troubling one is that hardlinks are permitted to have
453 data following them.
454 This allows readers to restore any hardlink to a file without
455 having to rewind the archive to find an earlier entry.
456 However, it creates complications for robust readers, as it is no longer
457 clear whether or not they should ignore the size field for hardlink entries.
458 .Ss GNU Tar Archives
459 The GNU tar program started with a pre-POSIX format similar to that
460 described earlier and has extended it using several different mechanisms:
461 It added new fields to the empty space in the header (some of which was later
462 used by POSIX for conflicting purposes);
463 it allowed the header to be continued over multiple records;
464 and it defined new entries that modify following entries
465 (similar in principle to the
466 .Cm x
467 entry described above, but each GNU special entry is single-purpose,
468 unlike the general-purpose
469 .Cm x
470 entry).
471 As a result, GNU tar archives are not POSIX compatible, although
472 more lenient POSIX-compliant readers can successfully extract most
473 GNU tar archives.
474 .Bd -literal -offset indent
475 struct header_gnu_tar {
476         char name[100];
477         char mode[8];
478         char uid[8];
479         char gid[8];
480         char size[12];
481         char mtime[12];
482         char checksum[8];
483         char typeflag[1];
484         char linkname[100];
485         char magic[6];
486         char version[2];
487         char uname[32];
488         char gname[32];
489         char devmajor[8];
490         char devminor[8];
491         char atime[12];
492         char ctime[12];
493         char offset[12];
494         char longnames[4];
495         char unused[1];
496         struct {
497                 char offset[12];
498                 char numbytes[12];
499         } sparse[4];
500         char isextended[1];
501         char realsize[12];
502         char pad[17];
503 };
504 .Ed
505 .Bl -tag -width indent
506 .It Va typeflag
507 GNU tar uses the following special entry types, in addition to
508 those defined by POSIX:
509 .Bl -tag -width indent
510 .It "7"
511 GNU tar treats type "7" records identically to type "0" records,
512 except on one obscure RTOS where they are used to indicate the
513 pre-allocation of a contiguous file on disk.
514 .It "D"
515 This indicates a directory entry.
516 Unlike the POSIX-standard "5"
517 typeflag, the header is followed by data records listing the names
518 of files in this directory.
519 Each name is preceded by an ASCII "Y"
520 if the file is stored in this archive or "N" if the file is not
521 stored in this archive.
522 Each name is terminated with a null, and
523 an extra null marks the end of the name list.
524 The purpose of this
525 entry is to support incremental backups; a program restoring from
526 such an archive may wish to delete files on disk that did not exist
527 in the directory when the archive was made.
528 .Pp
529 Note that the "D" typeflag specifically violates POSIX, which requires
530 that unrecognized typeflags be restored as normal files.
531 In this case, restoring the "D" entry as a file could interfere
532 with subsequent creation of the like-named directory.
533 .It "K"
534 The data for this entry is a long linkname for the following regular entry.
535 .It "L"
536 The data for this entry is a long pathname for the following regular entry.
537 .It "M"
538 This is a continuation of the last file on the previous volume.
539 GNU multi-volume archives guarantee that each volume begins with a valid
540 entry header.
541 To ensure this, a file may be split, with part stored at the end of one volume,
542 and part stored at the beginning of the next volume.
543 The "M" typeflag indicates that this entry continues an existing file.
544 Such entries can only occur as the first or second entry
545 in an archive (the latter only if the first entry is a volume label).
546 The
547 .Va size
548 field specifies the size of this entry.
549 The
550 .Va offset
551 field at bytes 369-380 specifies the offset where this file fragment
552 begins.
553 The
554 .Va realsize
555 field specifies the total size of the file (which must equal
556 .Va size
557 plus
558 .Va offset ) .
559 When extracting, GNU tar checks that the header file name is the one it is
560 expecting, that the header offset is in the correct sequence, and that
561 the sum of offset and size is equal to realsize.
562 FreeBSD's version of GNU tar does not handle the corner case of an
563 archive's being continued in the middle of a long name or other
564 extension header.
565 .It "N"
566 Type "N" records are no longer generated by GNU tar.
567 They contained a
568 list of files to be renamed or symlinked after extraction; this was
569 originally used to support long names.
570 The contents of this record
571 are a text description of the operations to be done, in the form
572 .Dq Rename %s to %s\en
573 or
574 .Dq Symlink %s to %s\en ;
575 in either case, both
576 filenames are escaped using K&R C syntax.
577 .It "S"
578 This is a
579 .Dq sparse
580 regular file.
581 Sparse files are stored as a series of fragments.
582 The header contains a list of fragment offset/length pairs.
583 If more than four such entries are required, the header is
584 extended as necessary with
585 .Dq extra
586 header extensions (an older format that is no longer used), or
587 .Dq sparse
588 extensions.
589 .It "V"
590 The
591 .Va name
592 field should be interpreted as a tape/volume header name.
593 This entry should generally be ignored on extraction.
594 .El
595 .It Va magic
596 The magic field holds the five characters
597 .Dq ustar
598 followed by a space.
599 Note that POSIX ustar archives have a trailing null.
600 .It Va version
601 The version field holds a space character followed by a null.
602 Note that POSIX ustar archives use two copies of the ASCII digit
603 .Dq 0 .
604 .It Va atime , Va ctime
605 The time the file was last accessed and the time of
606 last change of file information, stored in octal as with
607 .Va mtime .
608 .It Va longnames
609 This field is apparently no longer used.
610 .It Sparse Va offset / Va numbytes
611 Each such structure specifies a single fragment of a sparse
612 file.
613 The two fields store values as octal numbers.
614 The fragments are each padded to a multiple of 512 bytes
615 in the archive.
616 On extraction, the list of fragments is collected from the
617 header (including any extension headers), and the data
618 is then read and written to the file at appropriate offsets.
619 .It Va isextended
620 If this is set to non-zero, the header will be followed by additional
621 .Dq sparse header
622 records.
623 Each such record contains information about as many as 21 additional
624 sparse blocks as shown here:
625 .Bd -literal -offset indent
626 struct gnu_sparse_header {
627         struct {
628                 char offset[12];
629                 char numbytes[12];
630         } sparse[21];
631         char    isextended[1];
632         char    padding[7];
633 };
634 .Ed
635 .It Va realsize
636 A binary representation of the file's complete size, with a much larger range
637 than the POSIX file size.
638 In particular, with
639 .Cm M
640 type files, the current entry is only a portion of the file.
641 In that case, the POSIX size field will indicate the size of this
642 entry; the
643 .Va realsize
644 field will indicate the total size of the file.
645 .El
646 .Ss Solaris Tar
647 XXX More Details Needed XXX
648 .Pp
649 Solaris tar (beginning with SunOS XXX 5.7 ?? XXX) supports an
650 .Dq extended
651 format that is fundamentally similar to pax interchange format,
652 with the following differences:
653 .Bl -bullet -compact -width indent
654 .It
655 Extended attributes are stored in an entry whose type is
656 .Cm X ,
657 not
658 .Cm x ,
659 as used by pax interchange format.
660 The detailed format of this entry appears to be the same
661 as detailed above for the
662 .Cm x
663 entry.
664 .It
665 An additional
666 .Cm A
667 entry is used to store an ACL for the following regular entry.
668 The body of this entry contains a seven-digit octal number
669 (whose value is 01000000 plus the number of ACL entries)
670 followed by a zero byte, followed by the
671 textual ACL description.
672 .El
673 .Ss Other Extensions
674 One common extension, utilized by GNU tar, star, and other newer
675 .Nm
676 implementations, permits binary numbers in the standard numeric
677 fields.
678 This is flagged by setting the high bit of the first character.
679 This permits 95-bit values for the length and time fields
680 and 63-bit values for the uid, gid, and device numbers.
681 GNU tar supports this extension for the
682 length, mtime, ctime, and atime fields.
683 Joerg Schilling's star program supports this extension for
684 all numeric fields.
685 Note that this extension is largely obsoleted by the extended attribute
686 record provided by the pax interchange format.
687 .Pp
688 Another early GNU extension allowed base-64 values rather
689 than octal.
690 This extension was short-lived and such archives are almost never seen.
691 However, there is still code in GNU tar to support them; this code is
692 responsible for a very cryptic warning message that is sometimes seen when
693 GNU tar encounters a damaged archive.
694 .Sh SEE ALSO
695 .Xr ar 1 ,
696 .Xr pax 1 ,
697 .Xr tar 1
698 .Sh STANDARDS
699 The
700 .Nm tar
701 utility is no longer a part of POSIX or the Single Unix Standard.
702 It last appeared in
703 .St -susv2 .
704 It has been supplanted in subsequent standards by
705 .Xr pax 1 .
706 The ustar format is currently part of the specification for the
707 .Xr pax 1
708 utility.
709 The pax interchange file format is new with
710 .St -p1003.1-2001 .
711 .Sh HISTORY
712 A
713 .Nm tar
714 command appeared in Seventh Edition Unix, which was released in January, 1979.
715 It replaced the
716 .Nm tp
717 program from Fourth Edition Unix which in turn replaced the
718 .Nm tap
719 program from First Edition Unix.
720 John Gilmore's
721 .Nm pdtar
722 public-domain implementation (circa 1987) was highly influential
723 and formed the basis of
724 .Nm GNU tar .
725 Joerg Shilling's
726 .Nm star
727 archiver is another open-source (GPL) archiver (originally developed
728 circa 1985) which features complete support for pax interchange
729 format.