From owner-cvs-src@FreeBSD.ORG Tue Mar 21 16:55:46 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF79A16A401; Tue, 21 Mar 2006 16:55:46 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 843DB43D53; Tue, 21 Mar 2006 16:55:46 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id k2LGtkHh067998; Tue, 21 Mar 2006 16:55:46 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id k2LGtkbf067997; Tue, 21 Mar 2006 16:55:46 GMT (envelope-from kientzle) Message-Id: <200603211655.k2LGtkbf067997@repoman.freebsd.org> From: Tim Kientzle Date: Tue, 21 Mar 2006 16:55:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/lib/libarchive Makefile archive.h.in archive_entry.c archive_entry.h archive_read_extract.c archive_read_support_format_cpio.c archive_read_support_format_iso9660.c archive_read_support_format_tar.c archive_write_set_format_pax.c tar.5 X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Mar 2006 16:55:47 -0000 kientzle 2006-03-21 16:55:46 UTC FreeBSD src repository Modified files: lib/libarchive Makefile archive.h.in archive_entry.c archive_entry.h archive_read_extract.c archive_read_support_format_cpio.c archive_read_support_format_iso9660.c archive_read_support_format_tar.c archive_write_set_format_pax.c tar.5 Log: POSIX.1e-style Extended Attribute support This commit implements storing/reading POSIX.1e-style extended attribute information in "pax" format archives. An outline of the storage format is in the tar.5 manpage. The archive_read_extract() function has code to restore those archives to disk for Linux; FreeBSD implementation is forthcoming. Many thanks to Jaakko Heinonen for finding flaws in earlier proposals and doing the bulk of the coding in this work. Revision Changes Path 1.48 +1 -1 src/lib/libarchive/Makefile 1.29 +1 -0 src/lib/libarchive/archive.h.in 1.34 +109 -4 src/lib/libarchive/archive_entry.c 1.19 +19 -0 src/lib/libarchive/archive_entry.h 1.44 +116 -21 src/lib/libarchive/archive_read_extract.c 1.17 +1 -1 src/lib/libarchive/archive_read_support_format_cpio.c 1.13 +2 -2 src/lib/libarchive/archive_read_support_format_iso9660.c 1.40 +201 -4 src/lib/libarchive/archive_read_support_format_tar.c 1.34 +164 -5 src/lib/libarchive/archive_write_set_format_pax.c 1.14 +15 -0 src/lib/libarchive/tar.5