Home | History | Annotate | Line # | Download | only in pax
pax.h revision 1.14
      1 /*	$NetBSD: pax.h,v 1.14 2002/10/12 15:39:30 christos Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1992 Keith Muller.
      5  * Copyright (c) 1992, 1993
      6  *	The Regents of the University of California.  All rights reserved.
      7  *
      8  * This code is derived from software contributed to Berkeley by
      9  * Keith Muller of the University of California, San Diego.
     10  *
     11  * Redistribution and use in source and binary forms, with or without
     12  * modification, are permitted provided that the following conditions
     13  * are met:
     14  * 1. Redistributions of source code must retain the above copyright
     15  *    notice, this list of conditions and the following disclaimer.
     16  * 2. Redistributions in binary form must reproduce the above copyright
     17  *    notice, this list of conditions and the following disclaimer in the
     18  *    documentation and/or other materials provided with the distribution.
     19  * 3. All advertising materials mentioning features or use of this software
     20  *    must display the following acknowledgement:
     21  *	This product includes software developed by the University of
     22  *	California, Berkeley and its contributors.
     23  * 4. Neither the name of the University nor the names of its contributors
     24  *    may be used to endorse or promote products derived from this software
     25  *    without specific prior written permission.
     26  *
     27  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     30  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     31  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     32  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     33  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     34  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     36  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     37  * SUCH DAMAGE.
     38  *
     39  *	@(#)pax.h	8.2 (Berkeley) 4/18/94
     40  */
     41 
     42 #if HAVE_CONFIG_H
     43 #include "config.h"
     44 #else
     45 #define HAVE_LCHMOD 1
     46 #define HAVE_LCHOWN 1
     47 #define HAVE_LUTIMES 1
     48 #define HAVE_STRUCT_STAT_ST_FLAGS 1
     49 #endif
     50 
     51 /*
     52  * BSD PAX global data structures and constants.
     53  */
     54 
     55 #define	MAXBLK		32256	/* MAX blocksize supported (posix SPEC) */
     56 				/* WARNING: increasing MAXBLK past 32256 */
     57 				/* will violate posix spec. */
     58 #define BLKMULT		512	/* blocksize must be even mult of 512 bytes */
     59 				/* Don't even think of changing this */
     60 #define DEVBLK		8192	/* default read blksize for devices */
     61 #define FILEBLK		10240	/* default read blksize for files */
     62 #define PAXPATHLEN	3072	/* maximum path length for pax. MUST be */
     63 				/* longer than the system MAXPATHLEN */
     64 
     65 /*
     66  * Pax modes of operation
     67  */
     68 #define	LIST		0	/* List the file in an archive */
     69 #define	EXTRACT		1	/* extract the files in an archive */
     70 #define ARCHIVE		2	/* write a new archive */
     71 #define APPND		3	/* append to the end of an archive */
     72 #define	COPY		4	/* copy files to destination dir */
     73 #define DEFOP		LIST	/* if no flags default is to LIST */
     74 
     75 /*
     76  * Device type of the current archive volume
     77  */
     78 #define ISREG		0	/* regular file */
     79 #define ISCHR		1	/* character device */
     80 #define ISBLK		2	/* block device */
     81 #define ISTAPE		3	/* tape drive */
     82 #define ISPIPE		4	/* pipe/socket */
     83 #define	ISRMT		5	/* rmt */
     84 
     85 
     86 /*
     87  * Pattern matching structure
     88  *
     89  * Used to store command line patterns
     90  */
     91 typedef struct pattern {
     92 	char		*pstr;		/* pattern to match, user supplied */
     93 	char		*pend;		/* end of a prefix match */
     94 	char		*chdname;	/* the dir to change to if not NULL. */
     95 	int		plen;		/* length of pstr */
     96 	int		flgs;		/* processing/state flags */
     97 #define MTCH		0x1		/* pattern has been matched */
     98 #define DIR_MTCH	0x2		/* pattern matched a directory */
     99 	struct pattern	*fow;		/* next pattern */
    100 } PATTERN;
    101 
    102 /*
    103  * General Archive Structure (used internal to pax)
    104  *
    105  * This structure is used to pass information about archive members between
    106  * the format independent routines and the format specific routines. When
    107  * new archive formats are added, they must accept requests and supply info
    108  * encoded in a structure of this type. The name fields are declared statically
    109  * here, as there is only ONE of these floating around, size is not a major
    110  * consideration. Eventually converting the name fields to a dynamic length
    111  * may be required if and when the supporting operating system removes all
    112  * restrictions on the length of pathnames it will resolve.
    113  */
    114 typedef struct {
    115 	int nlen;			/* file name length */
    116 	char name[PAXPATHLEN+1];	/* file name */
    117 	int ln_nlen;			/* link name length */
    118 	char ln_name[PAXPATHLEN+1];	/* name to link to (if any) */
    119 	char *org_name;			/* orig name in file system */
    120 	PATTERN *pat;			/* ptr to pattern match (if any) */
    121 	struct stat sb;			/* stat buffer see stat(2) */
    122 	off_t pad;			/* bytes of padding after file xfer */
    123 	off_t skip;			/* bytes of real data after header */
    124 					/* IMPORTANT. The st_size field does */
    125 					/* not always indicate the amount of */
    126 					/* data following the header. */
    127 	u_long crc;			/* file crc */
    128 	int type;			/* type of file node */
    129 #define PAX_DIR		1		/* directory */
    130 #define PAX_CHR		2		/* character device */
    131 #define PAX_BLK		3		/* block device */
    132 #define PAX_REG		4		/* regular file */
    133 #define PAX_SLK		5		/* symbolic link */
    134 #define PAX_SCK		6		/* socket */
    135 #define PAX_FIF		7		/* fifo */
    136 #define PAX_HLK		8		/* hard link */
    137 #define PAX_HRG		9		/* hard link to a regular file */
    138 #define PAX_CTG		10		/* high performance file */
    139 #define PAX_GLL		11		/* GNU long symlink */
    140 #define PAX_GLF		12		/* GNU long file */
    141 } ARCHD;
    142 
    143 /*
    144  * Format Specific Routine Table
    145  *
    146  * The format specific routine table allows new archive formats to be quickly
    147  * added. Overall pax operation is independent of the actual format used to
    148  * form the archive. Only those routines which deal directly with the archive
    149  * are tailored to the oddities of the specific format. All other routines are
    150  * independent of the archive format. Data flow in and out of the format
    151  * dependent routines pass pointers to ARCHD structure (described below).
    152  */
    153 typedef struct {
    154 	char *name;		/* name of format, this is the name the user */
    155 				/* gives to -x option to select it. */
    156 	int bsz;		/* default block size. used when the user */
    157 				/* does not specify a blocksize for writing */
    158 				/* Appends continue to with the blocksize */
    159 				/* the archive is currently using.*/
    160 	int hsz;		/* Header size in bytes. this is the size of */
    161 				/* the smallest header this format supports. */
    162 				/* Headers are assumed to fit in a BLKMULT. */
    163 				/* If they are bigger, get_head() and */
    164 				/* get_arc() must be adjusted */
    165 	int udev;		/* does append require unique dev/ino? some */
    166 				/* formats use the device and inode fields */
    167 				/* to specify hard links. when members in */
    168 				/* the archive have the same inode/dev they */
    169 				/* are assumed to be hard links. During */
    170 				/* append we may have to generate unique ids */
    171 				/* to avoid creating incorrect hard links */
    172 	int hlk;		/* does archive store hard links info? if */
    173 				/* not, we do not bother to look for them */
    174 				/* during archive write operations */
    175 	int blkalgn;		/* writes must be aligned to blkalgn boundary */
    176 	int inhead;		/* is the trailer encoded in a valid header? */
    177 				/* if not, trailers are assumed to be found */
    178 				/* in invalid headers (i.e like tar) */
    179 	int (*id)(char *, int);	/* checks if a buffer is a valid header */
    180 				/* returns 1 if it is, o.w. returns a 0 */
    181 	int (*st_rd)(void);	/* initialize routine for read. so format */
    182 				/* can set up tables etc before it starts */
    183 				/* reading an archive */
    184 	int (*rd)		/* read header routine. passed a pointer to */
    185 		(ARCHD *, char *); /* ARCHD. It must extract the info */
    186 				/* from the format and store it in the  ARCHD */
    187 				/* struct. This routine is expected to fill */
    188 				/* all the fields in the ARCHD (including */
    189 				/* stat buf). 0 is returned when a valid */
    190 				/* header is found. -1 when not valid. This */
    191 				/* routine set the skip and pad fields so the */
    192 				/* format independent routines know the */
    193 				/* amount of padding and the number of bytes */
    194 				/* of data which follow the header. This info */
    195 				/* is used to skip to the next file header */
    196 	off_t (*end_rd)(void);	/* read cleanup. Allows format to clean up */
    197 				/* and MUST RETURN THE LENGTH OF THE TRAILER */
    198 				/* RECORD (so append knows how many bytes */
    199 				/* to move back to rewrite the trailer) */
    200 	int (*st_wr)(void);	/* initialize routine for write operations */
    201 	int (*wr)(ARCHD *);	/* write archive header. Passed an ARCHD */
    202 				/* filled with the specs on the next file to */
    203 				/* archived. Returns a 1 if no file data is */
    204 				/* is to be stored; 0 if file data is to be */
    205 				/* added. A -1 is returned if a write */
    206 				/* operation to the archive failed. this */
    207 				/* function sets the skip and pad fields so */
    208 				/* the proper padding can be added after */
    209 				/* file data. This routine must NEVER write */
    210 				/* a flawed archive header. */
    211 	int (*end_wr)(void);	/* end write. write the trailer and do any */
    212 				/* other format specific functions needed */
    213 				/* at the ecnd of a archive write */
    214 	int (*trail)		/* returns 0 if a valid trailer, -1 if not */
    215 		(char *, int, int *); /* For formats which encode the */
    216 				/* trailer outside of a valid header, a */
    217 				/* return value of 1 indicates that the block */
    218 				/* passed to it can never contain a valid */
    219 				/* header (skip this block, no point in */
    220 				/* looking at it) */
    221 	int (*subtrail)		/* read/process file data from the archive */
    222 		(ARCHD *);	/* this function is called for trailers */
    223 				/* inside headers. */
    224 	int (*rd_data)		/* read/process file data from the archive */
    225 		(ARCHD *, int, off_t *);
    226 	int (*wr_data)		/* write/process file data to the archive */
    227 		(ARCHD *, int, off_t *);
    228 	int (*options)(void);	/* process format specific options (-o) */
    229 } FSUB;
    230 
    231 /*
    232  * Format Specific Options List
    233  *
    234  * Used to pass format options to the format options handler
    235  */
    236 typedef struct oplist {
    237 	char		*name;		/* option variable name e.g. name= */
    238 	char		*value;		/* value for option variable */
    239 	struct oplist	*fow;		/* next option */
    240 } OPLIST;
    241 
    242 /*
    243  * General Macros
    244  */
    245 #ifndef MIN
    246 #define        MIN(a,b) (((a)<(b))?(a):(b))
    247 #endif
    248 #define MAJOR(x)        major(x)
    249 #define MINOR(x)        minor(x)
    250 #define TODEV(x, y)	makedev(x, y)
    251 
    252 /*
    253  * General Defines
    254  */
    255 #define HEX	16
    256 #define OCT	8
    257 #define _PAX_	1
    258 
    259 /*
    260  * Pathname base component of the temporary file template, to be created in
    261  * ${TMPDIR} or, as a fall-back, _PATH_TMP.
    262  */
    263 #define _TFILE_BASE	"paxXXXXXXXXXX"
    264 
    265 /*
    266  * Macros to manipulate off_t as a unsigned long or unsigned long long
    267  */
    268 #ifdef NET2_STAT
    269 #define	OFFT_F			"%lu"
    270 #define	OFFT_FP(x)		"%" x "lu"
    271 #define	OFFT_T			u_long
    272 #define	ASC_OFFT(x,y,z)		asc_ul(x,y,z)
    273 #define	OFFT_ASC(w,x,y,z)	ul_asc((u_long)w,x,y,z)
    274 #define	OFFT_OCT(w,x,y,z)	ul_oct((u_long)w,x,y,z)
    275 #define	STRTOOFFT(x,y,z)	strtol(x,y,z)
    276 #define	OFFT_MAX		LONG_MAX
    277 #else
    278 #define	OFFT_F			"%llu"
    279 #define	OFFT_FP(x)		"%" x "llu"
    280 #define	OFFT_T			unsigned long long
    281 #define	ASC_OFFT(x,y,z)		asc_ull(x,y,z)
    282 #define	OFFT_ASC(w,x,y,z)	ull_asc((unsigned long long)w,x,y,z)
    283 #define	OFFT_OCT(w,x,y,z)	ull_oct((unsigned long long)w,x,y,z)
    284 #define	STRTOOFFT(x,y,z)	strtoll(x,y,z)
    285 #define	OFFT_MAX		ULLONG_MAX
    286 #endif
    287