Imported Debian patch 1.5-16
[debian/pax] / cpio.h
1 /*      $OpenBSD: cpio.h,v 1.2 1996/06/23 14:20:32 deraadt Exp $        */
2 /*      $NetBSD: cpio.h,v 1.3 1995/03/21 09:07:15 cgd Exp $     */
3
4 /*-
5  * Copyright (c) 1992 Keith Muller.
6  * Copyright (c) 1992, 1993
7  *      The Regents of the University of California.  All rights reserved.
8  *
9  * This code is derived from software contributed to Berkeley by
10  * Keith Muller of the University of California, San Diego.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. All advertising materials mentioning features or use of this software
21  *    must display the following acknowledgement:
22  *      This product includes software developed by the University of
23  *      California, Berkeley and its contributors.
24  * 4. Neither the name of the University nor the names of its contributors
25  *    may be used to endorse or promote products derived from this software
26  *    without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38  * SUCH DAMAGE.
39  *
40  *      @(#)cpio.h      8.1 (Berkeley) 5/31/93
41  */
42
43 /*
44  * Defines common to all versions of cpio
45  */
46 #define TRAILER         "TRAILER!!!"    /* name in last archive record */
47
48 /*
49  * Header encoding of the different file types
50  */
51 #define C_ISDIR          040000         /* Directory */
52 #define C_ISFIFO         010000         /* FIFO */
53 #define C_ISREG         0100000         /* Regular file */
54 #define C_ISBLK          060000         /* Block special file */
55 #define C_ISCHR          020000         /* Character special file */
56 #define C_ISCTG         0110000         /* Reserved for contiguous files */
57 #define C_ISLNK         0120000         /* Reserved for symbolic links */
58 #define C_ISOCK         0140000         /* Reserved for sockets */
59 #define C_IFMT          0170000         /* type of file */
60
61 /*
62  * Data Interchange Format - Extended cpio header format - POSIX 1003.1-1990
63  */
64 typedef struct {
65         char    c_magic[6];             /* magic cookie */
66         char    c_dev[6];               /* device number */
67         char    c_ino[6];               /* inode number */
68         char    c_mode[6];              /* file type/access */
69         char    c_uid[6];               /* owners uid */
70         char    c_gid[6];               /* owners gid */
71         char    c_nlink[6];             /* # of links at archive creation */
72         char    c_rdev[6];              /* block/char major/minor # */
73         char    c_mtime[11];            /* modification time */
74         char    c_namesize[6];          /* length of pathname */
75         char    c_filesize[11];         /* length of file in bytes */
76 } HD_CPIO; 
77
78 #define MAGIC           070707          /* transportable archive id */
79
80 #ifdef _PAX_
81 #define AMAGIC          "070707"        /* ascii equivalent string of MAGIC */
82 #define CPIO_MASK       0x3ffff         /* bits valid in the dev/ino fields */
83                                         /* used for dev/inode remaps */
84 #endif /* _PAX_ */
85
86 /*
87  * Binary cpio header structure 
88  *
89  * CAUTION! CAUTION! CAUTION!
90  * Each field really represents a 16 bit short (NOT ASCII). Described as
91  * an array of chars in an attempt to improve portability!!
92  */
93 typedef struct {
94         u_char  h_magic[2];
95         u_char  h_dev[2];
96         u_char  h_ino[2];
97         u_char  h_mode[2];
98         u_char  h_uid[2];
99         u_char  h_gid[2];
100         u_char  h_nlink[2];
101         u_char  h_rdev[2];
102         u_char  h_mtime_1[2];
103         u_char  h_mtime_2[2];
104         u_char  h_namesize[2];
105         u_char  h_filesize_1[2];
106         u_char  h_filesize_2[2];
107 } HD_BCPIO; 
108
109 #ifdef _PAX_
110 /*
111  * extraction and creation macros for binary cpio
112  */
113 #define SHRT_EXT(ch)    ((((unsigned)(ch)[0])<<8) | (((unsigned)(ch)[1])&0xff))
114 #define RSHRT_EXT(ch)   ((((unsigned)(ch)[1])<<8) | (((unsigned)(ch)[0])&0xff))
115 #define CHR_WR_0(val)   ((char)(((val) >> 24) & 0xff))
116 #define CHR_WR_1(val)   ((char)(((val) >> 16) & 0xff))
117 #define CHR_WR_2(val)   ((char)(((val) >> 8) & 0xff))
118 #define CHR_WR_3(val)   ((char)((val) & 0xff))
119
120 /*
121  * binary cpio masks and pads
122  */
123 #define BCPIO_PAD(x)    ((2 - ((x) & 1)) & 1)   /* pad to next 2 byte word */
124 #define BCPIO_MASK      0xffff                  /* mask for dev/ino fields */
125 #endif /* _PAX_ */
126
127 /*
128  * System VR4 cpio header structure (with/without file data crc)
129  */
130 typedef struct {
131         char    c_magic[6];             /* magic cookie */
132         char    c_ino[8];               /* inode number */
133         char    c_mode[8];              /* file type/access */
134         char    c_uid[8];               /* owners uid */
135         char    c_gid[8];               /* owners gid */
136         char    c_nlink[8];             /* # of links at archive creation */
137         char    c_mtime[8];             /* modification time */
138         char    c_filesize[8];          /* length of file in bytes */
139         char    c_maj[8];               /* block/char major # */
140         char    c_min[8];               /* block/char minor # */
141         char    c_rmaj[8];              /* special file major # */
142         char    c_rmin[8];              /* special file minor # */
143         char    c_namesize[8];          /* length of pathname */
144         char    c_chksum[8];            /* 0 OR CRC of bytes of FILE data */
145 } HD_VCPIO; 
146
147 #define VMAGIC          070701          /* sVr4 new portable archive id */
148 #define VCMAGIC         070702          /* sVr4 new portable archive id CRC */
149 #ifdef _PAX_
150 #define AVMAGIC         "070701"        /* ascii string of above */
151 #define AVCMAGIC        "070702"        /* ascii string of above */
152 #define VCPIO_PAD(x)    ((4 - ((x) & 3)) & 3)   /* pad to next 4 byte word */
153 #define VCPIO_MASK      0xffffffff      /* mask for dev/ino fields */
154 #endif /* _PAX_ */