freebsd-dev/lib/libarchive
Tim Kientzle 3b4eb33882 Be more careful about assembling/disassembling
device numbers.  In particular, this should fix
a bug where archiving a device node with a very
large minor number would sometimes overflow and
corrupt the major number.

Thanks to: Ben Mesander
MFC after: 7 days
2004-12-11 07:11:42 +00:00
..
archive_check_magic.c Use STDERR_FILENO instead of 2, as POSIX intended. 2004-10-18 04:34:30 +00:00
archive_entry.3 Add archive_entry_set_mtime() 2004-08-08 07:39:19 +00:00
archive_entry.c Be more careful about assembling/disassembling 2004-12-11 07:11:42 +00:00
archive_entry.h Add archive_entry_set_mtime() 2004-08-08 07:39:19 +00:00
archive_platform.h
archive_private.h Ooops. ssize_t != int. <sigh> 2004-11-06 05:25:53 +00:00
archive_read_data_into_buffer.c
archive_read_data_into_fd.c
archive_read_extract.c Update a comment. 2004-11-05 05:16:40 +00:00
archive_read_open_fd.c
archive_read_open_file.c
archive_read_open_filename.c
archive_read_support_compression_all.c
archive_read_support_compression_bzip2.c Eliminate reliance on non-portable <err.h> by implementing a very 2004-08-14 03:45:45 +00:00
archive_read_support_compression_compress.c Refine the error-checking and reporting in the 2004-10-17 23:40:10 +00:00
archive_read_support_compression_gzip.c Eliminate reliance on non-portable <err.h> by implementing a very 2004-08-14 03:45:45 +00:00
archive_read_support_compression_none.c
archive_read_support_format_all.c
archive_read_support_format_cpio.c Eliminate reliance on non-portable <err.h> by implementing a very 2004-08-14 03:45:45 +00:00
archive_read_support_format_tar.c Allow tar format to read and accept an empty (or non-existent) 2004-10-27 05:15:23 +00:00
archive_read.3
archive_read.c Eliminate reliance on non-portable <err.h> by implementing a very 2004-08-14 03:45:45 +00:00
archive_string_sprintf.c Remove the unused archive_string_sprintf() utility function. 2004-11-05 05:32:04 +00:00
archive_string.c Eliminate reliance on non-portable <err.h> by implementing a very 2004-08-14 03:45:45 +00:00
archive_string.h Remove the unused archive_string_sprintf() utility function. 2004-11-05 05:32:04 +00:00
archive_util.3
archive_util.c Eliminate reliance on non-portable <err.h> by implementing a very 2004-08-14 03:45:45 +00:00
archive_write_open_fd.c Correctly report write errors from the lowest-level 2004-10-17 23:47:30 +00:00
archive_write_open_file.c Correctly report write errors from the lowest-level 2004-10-17 23:47:30 +00:00
archive_write_open_filename.c Correctly report write errors from the lowest-level 2004-10-17 23:47:30 +00:00
archive_write_set_compression_bzip2.c Ooops. ssize_t != int. <sigh> 2004-11-06 05:25:53 +00:00
archive_write_set_compression_gzip.c Ooops. ssize_t != int. <sigh> 2004-11-06 05:25:53 +00:00
archive_write_set_compression_none.c Ooops. ssize_t != int. <sigh> 2004-11-06 05:25:53 +00:00
archive_write_set_format_by_name.c
archive_write_set_format_cpio.c Clean up the error handling in the 2004-11-05 05:26:30 +00:00
archive_write_set_format_pax.c When determining whether filename is too long for a 2004-11-28 17:57:11 +00:00
archive_write_set_format_shar.c Clean up the error handling in the 2004-11-05 05:26:30 +00:00
archive_write_set_format_ustar.c Clean up the error handling in the 2004-11-05 05:26:30 +00:00
archive_write_set_format.c
archive_write.3 Clean up the error handling in the 2004-11-05 05:26:30 +00:00
archive_write.c Clean up the error handling in the 2004-11-05 05:26:30 +00:00
archive.h.in Revert 1.18: It broke Athlon64 builds, which 2004-10-18 05:31:01 +00:00
configure.ac.in We don't need <paths.h>, so don't bother including it. 2004-08-14 03:43:35 +00:00
COPYING
INSTALL
libarchive-formats.5
libarchive.3
Makefile Makefile tweaks: 2004-11-05 05:38:15 +00:00
Makefile.am
README
tar.5

$FreeBSD$

libarchive: a library for reading and writing streaming archives

This is all under a BSD license.  Use, enjoy, but don't blame me if it breaks!

Documentation:
 * libarchive.3 gives an overview of the library as a whole
 * archive_read.3 and archive_write.3 provide detailed calling
   sequences for the read and write APIs
 * archive_entry.3 details the "struct archive_entry" utility class
 * libarchive-formats.5 documents the file formats supported by the library
 * tar.5 provides some detailed information about a variety of different
   "tar" formats.

You should also read the copious comments in "archive.h" and the source
code for the sample "bsdtar" program for more details.  Please let me know
about any errors or omissions you find.  (In particular, I no doubt missed
a few things when researching the tar.5 page.)

Currently, the library automatically detects and reads the following:
  * gzip compression
  * bzip2 compression
  * compress/LZW compression
  * GNU tar format (including GNU long filenames, long link names, and
    sparse files)
  * Solaris 9 extended tar format (including ACLs)
  * Old V7 tar archives
  * POSIX ustar
  * POSIX pax interchange format
  * POSIX octet-oriented cpio
  * SVR4 ASCII cpio
  * Binary cpio (big-endian or little-endian)

The library can write:
  * gzip compression
  * bzip2 compression
  * POSIX ustar
  * POSIX pax interchange format
  * "restricted" pax format, which will create ustar archives except for
    entries that require pax extensions (for long filenames, ACLs, etc).
  * POSIX octet-oriented cpio
  * shar archives

Notes:
 * This is a heavily stream-oriented system.  There is no direct
   support for in-place modification or random access and no intention
   of ever adding such support.  Adding such support would require
   sacrificing a lot of other features, so don't bother asking.

 * The library is designed to be extended with new compression and
   archive formats.  The only requirement is that the format be
   readable or writable as a stream and that each archive entry be
   independent.

 * On read, compression and format are always detected automatically.

 * I've attempted to minimize static link pollution.  If you don't
   explicitly invoke a particular feature (such as support for a
   particular compression or format), it won't get pulled in.
   In particular, if you don't explicitly enable a particular
   compression or decompression support, you won't need to link
   against the corresponding compression or decompression libraries.
   This also reduces the size of statically-linked binaries in
   environments where that matters.

 * On read, the library accepts whatever blocks you hand it.
   Your read callback is free to pass the library a byte at a time
   or mmap the entire archive and give it to the library at once.
   On write, the library always produces correctly-blocked
   output.

 * The object-style approach allows you to have multiple archive streams
   open at once.  bsdtar uses this in its "@archive" extension.

 * The archive itself is read/written using callback functions.
   You can read an archive directly from an in-memory buffer or
   write it to a socket, if you wish.  There are some utility
   functions to provide easy-to-use "open file," etc, capabilities.

 * The read/write APIs are designed to allow individual entries
   to be read or written to any data source:  You can create
   a block of data in memory and add it to a tar archive without
   first writing a temporary file.  You can also read an entry from
   an archive and write the data directly to a socket.  If you want
   to read/write entries to disk, there are convenience functions to
   make this especially easy.

 * Note: "pax interchange format" is really an extended tar format,
   despite what the name says.