/*-1* SPDX-License-Identifier: BSD-3-Clause2*3* Copyright (c) 1992 Keith Muller.4* Copyright (c) 1992, 19935* The Regents of the University of California. All rights reserved.6*7* This code is derived from software contributed to Berkeley by8* Keith Muller of the University of California, San Diego.9*10* Redistribution and use in source and binary forms, with or without11* modification, are permitted provided that the following conditions12* are met:13* 1. Redistributions of source code must retain the above copyright14* notice, this list of conditions and the following disclaimer.15* 2. Redistributions in binary form must reproduce the above copyright16* notice, this list of conditions and the following disclaimer in the17* documentation and/or other materials provided with the distribution.18* 3. Neither the name of the University nor the names of its contributors19* may be used to endorse or promote products derived from this software20* without specific prior written permission.21*22* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND23* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE24* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE25* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE26* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL27* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS28* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)29* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT30* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY31* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF32* SUCH DAMAGE.33*/3435/*36* Defines common to all versions of cpio37*/38#define TRAILER "TRAILER!!!" /* name in last archive record */3940/*41* Header encoding of the different file types42*/43#define C_ISDIR 040000 /* Directory */44#define C_ISFIFO 010000 /* FIFO */45#define C_ISREG 0100000 /* Regular file */46#define C_ISBLK 060000 /* Block special file */47#define C_ISCHR 020000 /* Character special file */48#define C_ISCTG 0110000 /* Reserved for contiguous files */49#define C_ISLNK 0120000 /* Reserved for symbolic links */50#define C_ISOCK 0140000 /* Reserved for sockets */51#define C_IFMT 0170000 /* type of file */5253/*54* Data Interchange Format - Extended cpio header format - POSIX 1003.1-199055*/56typedef struct {57char c_magic[6]; /* magic cookie */58char c_dev[6]; /* device number */59char c_ino[6]; /* inode number */60char c_mode[6]; /* file type/access */61char c_uid[6]; /* owners uid */62char c_gid[6]; /* owners gid */63char c_nlink[6]; /* # of links at archive creation */64char c_rdev[6]; /* block/char major/minor # */65char c_mtime[11]; /* modification time */66char c_namesize[6]; /* length of pathname */67char c_filesize[11]; /* length of file in bytes */68} HD_CPIO __aligned(1);6970#define MAGIC 070707 /* transportable archive id */7172#ifdef _PAX_73#define AMAGIC "070707" /* ascii equivalent string of MAGIC */74#define CPIO_MASK 0x3ffff /* bits valid in the dev/ino fields */75/* used for dev/inode remaps */76#endif /* _PAX_ */7778/*79* Binary cpio header structure80*81* CAUTION! CAUTION! CAUTION!82* Each field really represents a 16 bit short (NOT ASCII). Described as83* an array of chars in an attempt to improve portability!!84*/85typedef struct {86u_char h_magic[2];87u_char h_dev[2];88u_char h_ino[2];89u_char h_mode[2];90u_char h_uid[2];91u_char h_gid[2];92u_char h_nlink[2];93u_char h_rdev[2];94u_char h_mtime_1[2];95u_char h_mtime_2[2];96u_char h_namesize[2];97u_char h_filesize_1[2];98u_char h_filesize_2[2];99} HD_BCPIO __aligned(1);100101#ifdef _PAX_102/*103* extraction and creation macros for binary cpio104*/105#define SHRT_EXT(ch) ((((unsigned)(ch)[0])<<8) | (((unsigned)(ch)[1])&0xff))106#define RSHRT_EXT(ch) ((((unsigned)(ch)[1])<<8) | (((unsigned)(ch)[0])&0xff))107#define CHR_WR_0(val) ((char)(((val) >> 24) & 0xff))108#define CHR_WR_1(val) ((char)(((val) >> 16) & 0xff))109#define CHR_WR_2(val) ((char)(((val) >> 8) & 0xff))110#define CHR_WR_3(val) ((char)((val) & 0xff))111112/*113* binary cpio masks and pads114*/115#define BCPIO_PAD(x) ((2 - ((x) & 1)) & 1) /* pad to next 2 byte word */116#define BCPIO_MASK 0xffff /* mask for dev/ino fields */117#endif /* _PAX_ */118119/*120* System VR4 cpio header structure (with/without file data crc)121*/122typedef struct {123char c_magic[6]; /* magic cookie */124char c_ino[8]; /* inode number */125char c_mode[8]; /* file type/access */126char c_uid[8]; /* owners uid */127char c_gid[8]; /* owners gid */128char c_nlink[8]; /* # of links at archive creation */129char c_mtime[8]; /* modification time */130char c_filesize[8]; /* length of file in bytes */131char c_maj[8]; /* block/char major # */132char c_min[8]; /* block/char minor # */133char c_rmaj[8]; /* special file major # */134char c_rmin[8]; /* special file minor # */135char c_namesize[8]; /* length of pathname */136char c_chksum[8]; /* 0 OR CRC of bytes of FILE data */137} HD_VCPIO __aligned(1);138139#define VMAGIC 070701 /* sVr4 new portable archive id */140#define VCMAGIC 070702 /* sVr4 new portable archive id CRC */141#ifdef _PAX_142#define AVMAGIC "070701" /* ascii string of above */143#define AVCMAGIC "070702" /* ascii string of above */144#define VCPIO_PAD(x) ((4 - ((x) & 3)) & 3) /* pad to next 4 byte word */145#define VCPIO_MASK 0xffffffff /* mask for dev/ino fields */146#endif /* _PAX_ */147148149