00001 /*- 00002 * Copyright (c) 1992 Keith Muller. 00003 * Copyright (c) 1992, 1993 00004 * The Regents of the University of California. All rights reserved. 00005 * 00006 * This code is derived from software contributed to Berkeley by 00007 * Keith Muller of the University of California, San Diego. 00008 * 00009 * Redistribution and use in source and binary forms, with or without 00010 * modification, are permitted provided that the following conditions 00011 * are met: 00012 * 1. Redistributions of source code must retain the above copyright 00013 * notice, this list of conditions and the following disclaimer. 00014 * 2. Redistributions in binary form must reproduce the above copyright 00015 * notice, this list of conditions and the following disclaimer in the 00016 * documentation and/or other materials provided with the distribution. 00017 * 4. Neither the name of the University nor the names of its contributors 00018 * may be used to endorse or promote products derived from this software 00019 * without specific prior written permission. 00020 * 00021 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 00022 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00023 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00024 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 00025 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 00026 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 00027 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 00028 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00029 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 00030 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00031 * SUCH DAMAGE. 00032 * 00033 * @(#)cpio.h 8.1 (Berkeley) 5/31/93 00034 * $FreeBSD: src/bin/pax/cpio.h,v 1.7 2004/04/06 20:06:48 markm Exp $ 00035 */ 00036 00037 /* 00038 * Defines common to all versions of cpio 00039 */ 00040 #define TRAILER "TRAILER!!!" /* name in last archive record */ 00041 00042 /* 00043 * Header encoding of the different file types 00044 */ 00045 #define C_ISDIR 040000 /* Directory */ 00046 #define C_ISFIFO 010000 /* FIFO */ 00047 #define C_ISREG 0100000 /* Regular file */ 00048 #define C_ISBLK 060000 /* Block special file */ 00049 #define C_ISCHR 020000 /* Character special file */ 00050 #define C_ISCTG 0110000 /* Reserved for contiguous files */ 00051 #define C_ISLNK 0120000 /* Reserved for symbolic links */ 00052 #define C_ISOCK 0140000 /* Reserved for sockets */ 00053 #define C_IFMT 0170000 /* type of file */ 00054 00055 /* 00056 * Data Interchange Format - Extended cpio header format - POSIX 1003.1-1990 00057 */ 00058 typedef struct { 00059 char c_magic[6]; /* magic cookie */ 00060 char c_dev[6]; /* device number */ 00061 char c_ino[6]; /* inode number */ 00062 char c_mode[6]; /* file type/access */ 00063 char c_uid[6]; /* owners uid */ 00064 char c_gid[6]; /* owners gid */ 00065 char c_nlink[6]; /* # of links at archive creation */ 00066 char c_rdev[6]; /* block/char major/minor # */ 00067 char c_mtime[11]; /* modification time */ 00068 char c_namesize[6]; /* length of pathname */ 00069 char c_filesize[11]; /* length of file in bytes */ 00070 } HD_CPIO; 00071 00072 #define MAGIC 070707 /* transportable archive id */ 00073 00074 #ifdef _PAX_ 00075 #define AMAGIC "070707" /* ascii equivalent string of MAGIC */ 00076 #define CPIO_MASK 0x3ffff /* bits valid in the dev/ino fields */ 00077 /* used for dev/inode remaps */ 00078 #endif /* _PAX_ */ 00079 00080 /* 00081 * Binary cpio header structure 00082 * 00083 * CAUTION! CAUTION! CAUTION! 00084 * Each field really represents a 16 bit short (NOT ASCII). Described as 00085 * an array of chars in an attempt to improve portability!! 00086 */ 00087 typedef struct { 00088 u_char h_magic[2]; 00089 u_char h_dev[2]; 00090 u_char h_ino[2]; 00091 u_char h_mode[2]; 00092 u_char h_uid[2]; 00093 u_char h_gid[2]; 00094 u_char h_nlink[2]; 00095 u_char h_rdev[2]; 00096 u_char h_mtime_1[2]; 00097 u_char h_mtime_2[2]; 00098 u_char h_namesize[2]; 00099 u_char h_filesize_1[2]; 00100 u_char h_filesize_2[2]; 00101 } HD_BCPIO; 00102 00103 #ifdef _PAX_ 00104 /* 00105 * extraction and creation macros for binary cpio 00106 */ 00107 #define SHRT_EXT(ch) ((((unsigned)(ch)[0])<<8) | (((unsigned)(ch)[1])&0xff)) 00108 #define RSHRT_EXT(ch) ((((unsigned)(ch)[1])<<8) | (((unsigned)(ch)[0])&0xff)) 00109 #define CHR_WR_0(val) ((char)(((val) >> 24) & 0xff)) 00110 #define CHR_WR_1(val) ((char)(((val) >> 16) & 0xff)) 00111 #define CHR_WR_2(val) ((char)(((val) >> 8) & 0xff)) 00112 #define CHR_WR_3(val) ((char)((val) & 0xff)) 00113 00114 /* 00115 * binary cpio masks and pads 00116 */ 00117 #define BCPIO_PAD(x) ((2 - ((x) & 1)) & 1) /* pad to next 2 byte word */ 00118 #define BCPIO_MASK 0xffff /* mask for dev/ino fields */ 00119 #endif /* _PAX_ */ 00120 00121 /* 00122 * System VR4 cpio header structure (with/without file data crc) 00123 */ 00124 typedef struct { 00125 char c_magic[6]; /* magic cookie */ 00126 char c_ino[8]; /* inode number */ 00127 char c_mode[8]; /* file type/access */ 00128 char c_uid[8]; /* owners uid */ 00129 char c_gid[8]; /* owners gid */ 00130 char c_nlink[8]; /* # of links at archive creation */ 00131 char c_mtime[8]; /* modification time */ 00132 char c_filesize[8]; /* length of file in bytes */ 00133 char c_maj[8]; /* block/char major # */ 00134 char c_min[8]; /* block/char minor # */ 00135 char c_rmaj[8]; /* special file major # */ 00136 char c_rmin[8]; /* special file minor # */ 00137 char c_namesize[8]; /* length of pathname */ 00138 char c_chksum[8]; /* 0 OR CRC of bytes of FILE data */ 00139 } HD_VCPIO; 00140 00141 #define VMAGIC 070701 /* sVr4 new portable archive id */ 00142 #define VCMAGIC 070702 /* sVr4 new portable archive id CRC */ 00143 #ifdef _PAX_ 00144 #define AVMAGIC "070701" /* ascii string of above */ 00145 #define AVCMAGIC "070702" /* ascii string of above */ 00146 #define VCPIO_PAD(x) ((4 - ((x) & 3)) & 3) /* pad to next 4 byte word */ 00147 #define VCPIO_MASK 0xffffffff /* mask for dev/ino fields */ 00148 #endif /* _PAX_ */
1.4.6