From owner-cvs-all@FreeBSD.ORG Sun Jan 2 05:21:15 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A607E16A4CE; Sun, 2 Jan 2005 05:21:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 919EE43D39; Sun, 2 Jan 2005 05:21:15 +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 j025LFT5085391; Sun, 2 Jan 2005 05:21:15 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j025LF68085390; Sun, 2 Jan 2005 05:21:15 GMT (envelope-from kientzle) Message-Id: <200501020521.j025LF68085390@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 2 Jan 2005 05:21:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive Makefile archive.h.in archive_read_support_format_iso9660.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Jan 2005 05:21:15 -0000 kientzle 2005-01-02 05:21:15 UTC FreeBSD src repository Modified files: lib/libarchive Makefile archive.h.in Added files: lib/libarchive archive_read_support_format_iso9660.c Log: First cut support for extracting from ISO9660 disk images. This seems to be able to extract a TOC and extract files from the couple of ISO images I've tested it with. Treat this as experimental proof-of-concept code for the moment. There are still a bunch of debug messages (there are a few oddities in ISO9660 that I haven't yet figured out how to handle), a lot of bugs to be addressed (this code leaks memory very badly), and a lot of missing features (no Rockridge support, in particular). I'd appreciate feedback from anyone who understands ISO9660 format better than I do. ;-) Suggested by: Robert Watson Revision Changes Path 1.27 +2 -1 src/lib/libarchive/Makefile 1.20 +1 -0 src/lib/libarchive/archive.h.in 1.1 +521 -0 src/lib/libarchive/archive_read_support_format_iso9660.c (new)