Home | History | Annotate | Line # | Download | only in dump
dump.h revision 1.22
      1  1.22  christos /*	$NetBSD: dump.h,v 1.22 2001/02/04 21:33:19 christos Exp $	*/
      2   1.9       cgd 
      3   1.1       cgd /*-
      4   1.7   mycroft  * Copyright (c) 1980, 1993
      5   1.7   mycroft  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16   1.1       cgd  *    must display the following acknowledgement:
     17   1.1       cgd  *	This product includes software developed by the University of
     18   1.1       cgd  *	California, Berkeley and its contributors.
     19   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     20   1.1       cgd  *    may be used to endorse or promote products derived from this software
     21   1.1       cgd  *    without specific prior written permission.
     22   1.1       cgd  *
     23   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1       cgd  * SUCH DAMAGE.
     34   1.1       cgd  *
     35  1.13     lukem  *	@(#)dump.h	8.2 (Berkeley) 4/28/95
     36   1.1       cgd  */
     37  1.15    bouyer 
     38  1.15    bouyer #include <machine/bswap.h>
     39   1.1       cgd 
     40   1.1       cgd #define MAXINOPB	(MAXBSIZE / sizeof(struct dinode))
     41   1.1       cgd #define MAXNINDIR	(MAXBSIZE / sizeof(daddr_t))
     42   1.1       cgd 
     43   1.1       cgd /*
     44  1.19  perseant  * Filestore-independent UFS data, so code can be more easily shared
     45  1.19  perseant  * between ffs, lfs, and maybe ext2fs and others as well.
     46  1.19  perseant  */
     47  1.19  perseant struct ufsi {
     48  1.19  perseant 	int64_t ufs_dsize;	/* filesystem size, in sectors */
     49  1.19  perseant 	int32_t ufs_bsize;	/* block size */
     50  1.19  perseant 	int32_t ufs_bshift;	/* log2(ufs_bsize) */
     51  1.19  perseant 	int32_t ufs_fsize;	/* fragment size */
     52  1.19  perseant 	int32_t ufs_frag;       /* block size / frag size */
     53  1.19  perseant 	int32_t ufs_fsatoda;	/* disk address conversion constant */
     54  1.19  perseant 	int32_t	ufs_nindir;	/* disk addresses per indirect block */
     55  1.19  perseant 	int32_t ufs_inopb;      /* inodes per block */
     56  1.19  perseant 	int32_t ufs_maxsymlinklen; /* max symlink length */
     57  1.19  perseant 	int32_t ufs_bmask;      /* block mask */
     58  1.19  perseant 	int32_t ufs_fmask;      /* frag mask */
     59  1.19  perseant 	int64_t ufs_qbmask;     /* ~ufs_bmask */
     60  1.19  perseant 	int64_t ufs_qfmask;     /* ~ufs_fmask */
     61  1.19  perseant };
     62  1.19  perseant #define fsatoda(u,a) ((a) << (u)->ufs_fsatoda)
     63  1.19  perseant #define ufs_fragroundup(u,size) /* calculates roundup(size, ufs_fsize) */ \
     64  1.19  perseant         (((size) + (u)->ufs_qfmask) & (u)->ufs_fmask)
     65  1.19  perseant #define ufs_blkoff(u,loc)   /* calculates (loc % u->ufs_bsize) */ \
     66  1.19  perseant         ((loc) & (u)->ufs_qbmask)
     67  1.19  perseant #define ufs_dblksize(u,d,b) \
     68  1.19  perseant 	((((b) >= NDADDR || (d)->di_size >= ((b)+1) << (u)->ufs_bshift \
     69  1.19  perseant 		? (u)->ufs_bsize \
     70  1.19  perseant 		: (ufs_fragroundup((u), ufs_blkoff(u, (d)->di_size))))))
     71  1.19  perseant struct ufsi *ufsib;
     72  1.19  perseant 
     73  1.19  perseant /*
     74   1.1       cgd  * Dump maps used to describe what is to be dumped.
     75   1.1       cgd  */
     76   1.1       cgd int	mapsize;	/* size of the state maps */
     77   1.1       cgd char	*usedinomap;	/* map of allocated inodes */
     78   1.1       cgd char	*dumpdirmap;	/* map of directories to be dumped */
     79   1.1       cgd char	*dumpinomap;	/* map of files to be dumped */
     80   1.1       cgd /*
     81   1.1       cgd  * Map manipulation macros.
     82   1.1       cgd  */
     83   1.1       cgd #define	SETINO(ino, map) \
     84   1.1       cgd 	map[(u_int)((ino) - 1) / NBBY] |=  1 << ((u_int)((ino) - 1) % NBBY)
     85   1.1       cgd #define	CLRINO(ino, map) \
     86   1.1       cgd 	map[(u_int)((ino) - 1) / NBBY] &=  ~(1 << ((u_int)((ino) - 1) % NBBY))
     87   1.1       cgd #define	TSTINO(ino, map) \
     88   1.1       cgd 	(map[(u_int)((ino) - 1) / NBBY] &  (1 << ((u_int)((ino) - 1) % NBBY)))
     89   1.1       cgd 
     90   1.1       cgd /*
     91   1.1       cgd  *	All calculations done in 0.1" units!
     92   1.1       cgd  */
     93   1.1       cgd char	*disk;		/* name of the disk file */
     94   1.1       cgd char	*tape;		/* name of the tape file */
     95   1.1       cgd char	*dumpdates;	/* name of the file containing dump date information*/
     96   1.1       cgd char	*temp;		/* name of the file for doing rewrite of dumpdates */
     97   1.1       cgd char	lastlevel;	/* dump level of previous dump */
     98   1.1       cgd char	level;		/* dump level of this dump */
     99   1.1       cgd int	uflag;		/* update flag */
    100   1.1       cgd int	diskfd;		/* disk file descriptor */
    101   1.1       cgd int	tapefd;		/* tape file descriptor */
    102   1.1       cgd int	pipeout;	/* true => output to standard output */
    103   1.1       cgd ino_t	curino;		/* current inumber; used globally */
    104   1.1       cgd int	newtape;	/* new tape flag */
    105   1.1       cgd long	tapesize;	/* estimated tape size, blocks */
    106   1.1       cgd long	tsize;		/* tape size in 0.1" units */
    107   1.1       cgd long	asize;		/* number of 0.1" units written on current tape */
    108   1.1       cgd int	etapes;		/* estimated number of tapes */
    109   1.7   mycroft int	nonodump;	/* if set, do not honor UF_NODUMP user flags */
    110   1.1       cgd 
    111  1.22  christos extern int	density;	/* density in 0.1" units */
    112  1.22  christos extern int	notify;		/* notify operator flag */
    113  1.22  christos extern int	blockswritten;	/* number of blocks written on current tape */
    114  1.22  christos extern int	tapeno;		/* current tape number */
    115  1.22  christos 
    116   1.1       cgd time_t	tstart_writing;	/* when started writing the first tape block */
    117  1.10     lukem int	xferrate;	/* averaged transfer rate of all volumes */
    118  1.19  perseant char	sblock_buf[MAXBSIZE]; /* buffer to hold the superblock */
    119  1.21       scw extern long	dev_bsize;	/* block size of underlying disk device */
    120   1.1       cgd int	dev_bshift;	/* log2(dev_bsize) */
    121   1.1       cgd int	tp_bshift;	/* log2(TP_BSIZE) */
    122  1.14    bouyer int needswap;	/* file system in swapped byte order */
    123  1.14    bouyer /* some inline functs to help the byte-swapping mess */
    124  1.14    bouyer static __inline u_int16_t iswap16 __P((u_int16_t));
    125  1.14    bouyer static __inline u_int32_t iswap32 __P((u_int32_t));
    126  1.14    bouyer static __inline u_int64_t iswap64 __P((u_int64_t));
    127  1.14    bouyer 
    128  1.14    bouyer static __inline u_int16_t iswap16(x)
    129  1.14    bouyer 	u_int16_t x;
    130  1.14    bouyer {
    131  1.14    bouyer 	if (needswap)
    132  1.14    bouyer 		return bswap16(x);
    133  1.14    bouyer 	else return x;
    134  1.14    bouyer }
    135  1.14    bouyer 
    136  1.14    bouyer static __inline u_int32_t iswap32(x)
    137  1.14    bouyer     u_int32_t x;
    138  1.14    bouyer {
    139  1.14    bouyer 	if (needswap)
    140  1.14    bouyer 		return bswap32(x);
    141  1.14    bouyer 	else return x;
    142  1.14    bouyer }
    143  1.14    bouyer 
    144  1.14    bouyer static __inline u_int64_t iswap64(x)
    145  1.14    bouyer 	u_int64_t x;
    146  1.14    bouyer {
    147  1.14    bouyer 	if (needswap)
    148  1.14    bouyer 		return bswap64(x);
    149  1.14    bouyer 	else return x;
    150  1.14    bouyer }
    151   1.1       cgd 
    152   1.7   mycroft #ifndef __P
    153   1.7   mycroft #include <sys/cdefs.h>
    154   1.7   mycroft #endif
    155  1.19  perseant 
    156  1.19  perseant /* filestore-specific hooks */
    157  1.19  perseant int	fs_read_sblock __P((char *));
    158  1.19  perseant struct ufsi *fs_parametrize __P((void));
    159  1.19  perseant ino_t	fs_maxino __P((void));
    160   1.7   mycroft 
    161   1.1       cgd /* operator interface functions */
    162   1.6       cgd void	broadcast __P((char *message));
    163   1.6       cgd void	lastdump __P((int arg));	/* int should be char */
    164  1.20        is void	msg __P((const char *fmt, ...)) __attribute__((__format__(__printf__,1,2)));
    165  1.20        is void	msgtail __P((const char *fmt, ...)) __attribute__((__format__(__printf__,1,2)));
    166   1.6       cgd int	query __P((char *question));
    167  1.20        is void	quit __P((const char *fmt, ...)) __attribute__((__format__(__printf__,1,2)));
    168   1.6       cgd void	set_operators __P((void));
    169  1.10     lukem time_t	do_stats __P((void));
    170  1.11     lukem void	statussig __P((int));
    171   1.6       cgd void	timeest __P((void));
    172   1.6       cgd time_t	unctime __P((char *str));
    173   1.1       cgd 
    174  1.10     lukem /* mapping routines */
    175   1.6       cgd struct	dinode;
    176   1.6       cgd long	blockest __P((struct dinode *dp));
    177  1.11     lukem void	mapfileino __P((ino_t, long *, int *));
    178  1.11     lukem int	mapfiles __P((ino_t maxino, long *tapesize, char *disk,
    179  1.11     lukem 		    char * const *dirv));
    180   1.6       cgd int	mapdirs __P((ino_t maxino, long *tapesize));
    181   1.1       cgd 
    182   1.1       cgd /* file dumping routines */
    183   1.6       cgd void	blksout __P((daddr_t *blkp, int frags, ino_t ino));
    184   1.6       cgd void	dumpino __P((struct dinode *dp, ino_t ino));
    185   1.6       cgd void	dumpmap __P((char *map, int type, ino_t ino));
    186   1.6       cgd void	writeheader __P((ino_t ino));
    187  1.16    bouyer 
    188  1.16    bouyer /* data block caching */
    189  1.16    bouyer void	bread __P((daddr_t blkno, char *buf, int size));
    190  1.16    bouyer void	rawread __P((daddr_t, char *, int));
    191  1.16    bouyer void	initcache __P((int, int));
    192  1.16    bouyer void	printcachestats __P((void));
    193   1.1       cgd 
    194   1.1       cgd /* tape writing routines */
    195   1.6       cgd int	alloctape __P((void));
    196   1.6       cgd void	close_rewind __P((void));
    197   1.6       cgd void	dumpblock __P((daddr_t blkno, int size));
    198   1.6       cgd void	startnewtape __P((int top));
    199   1.6       cgd void	trewind __P((void));
    200   1.6       cgd void	writerec __P((char *dp, int isspcl));
    201   1.6       cgd 
    202  1.12     lukem void	Exit __P((int status));
    203   1.6       cgd void	dumpabort __P((int signo));
    204   1.6       cgd void	getfstab __P((void));
    205   1.1       cgd 
    206   1.6       cgd char	*rawname __P((char *cp));
    207   1.6       cgd struct	dinode *getino __P((ino_t inum));
    208   1.1       cgd 
    209   1.7   mycroft /* rdump routines */
    210   1.7   mycroft #ifdef RDUMP
    211   1.7   mycroft void	rmtclose __P((void));
    212   1.7   mycroft int	rmthost __P((char *host));
    213   1.7   mycroft int	rmtopen __P((char *tape, int mode));
    214   1.7   mycroft int	rmtwrite __P((char *buf, int count));
    215   1.7   mycroft #endif /* RDUMP */
    216   1.7   mycroft 
    217   1.6       cgd void	interrupt __P((int signo));	/* in case operator bangs on console */
    218   1.1       cgd 
    219   1.1       cgd /*
    220   1.1       cgd  *	Exit status codes
    221   1.1       cgd  */
    222   1.1       cgd #define	X_FINOK		0	/* normal exit */
    223   1.1       cgd #define	X_REWRITE	2	/* restart writing from the check point */
    224   1.6       cgd #define	X_ABORT		3	/* abort dump; don't attempt checkpointing */
    225   1.1       cgd 
    226   1.1       cgd #define	OPGRENT	"operator"		/* group entry to notify */
    227   1.1       cgd #define DIALUP	"ttyd"			/* prefix for dialups */
    228   1.1       cgd 
    229   1.6       cgd struct	fstab *fstabsearch __P((char *key));	/* search fs_file and fs_spec */
    230   1.6       cgd 
    231   1.6       cgd #ifndef NAME_MAX
    232   1.6       cgd #define NAME_MAX 255
    233   1.6       cgd #endif
    234   1.1       cgd 
    235   1.1       cgd /*
    236   1.1       cgd  *	The contents of the file _PATH_DUMPDATES is maintained both on
    237   1.1       cgd  *	a linked list, and then (eventually) arrayified.
    238   1.1       cgd  */
    239   1.1       cgd struct dumpdates {
    240   1.6       cgd 	char	dd_name[NAME_MAX+3];
    241   1.1       cgd 	char	dd_level;
    242   1.1       cgd 	time_t	dd_ddate;
    243   1.1       cgd };
    244   1.1       cgd struct dumptime {
    245   1.1       cgd 	struct	dumpdates dt_value;
    246   1.1       cgd 	struct	dumptime *dt_next;
    247   1.1       cgd };
    248  1.22  christos 
    249  1.22  christos extern struct	dumptime *dthead;	/* head of the list version */
    250  1.22  christos extern int	nddates;		/* number of records (might be zero) */
    251  1.22  christos extern int	ddates_in;		/* we have read the increment file */
    252  1.22  christos extern struct	dumpdates **ddatev;	/* the arrayfied version */
    253  1.22  christos 
    254   1.6       cgd void	initdumptimes __P((void));
    255   1.6       cgd void	getdumptime __P((void));
    256   1.6       cgd void	putdumptime __P((void));
    257   1.1       cgd #define	ITITERATE(i, ddp) \
    258   1.6       cgd 	for (ddp = ddatev[i = 0]; i < nddates; ddp = ddatev[++i])
    259   1.1       cgd 
    260   1.6       cgd void	sig __P((int signo));
    261   1.1       cgd 
    262   1.1       cgd /*
    263   1.1       cgd  * Compatibility with old systems.
    264   1.1       cgd  */
    265   1.7   mycroft #ifdef COMPAT
    266   1.1       cgd #include <sys/file.h>
    267   1.8   mycroft #define	strchr(a,b)	index(a,b)
    268   1.8   mycroft #define	strrchr(a,b)	rindex(a,b)
    269   1.8   mycroft extern char *strdup(), *ctime();
    270   1.7   mycroft extern int read(), write();
    271   1.1       cgd extern int errno;
    272   1.6       cgd #endif
    273   1.6       cgd 
    274   1.7   mycroft #ifndef	_PATH_UTMP
    275   1.7   mycroft #define	_PATH_UTMP	"/etc/utmp"
    276   1.7   mycroft #endif
    277   1.7   mycroft #ifndef	_PATH_FSTAB
    278   1.7   mycroft #define	_PATH_FSTAB	"/etc/fstab"
    279   1.7   mycroft #endif
    280   1.7   mycroft 
    281   1.6       cgd #ifdef sunos
    282   1.6       cgd extern char *calloc();
    283   1.6       cgd extern char *malloc();
    284   1.6       cgd extern long atol();
    285   1.6       cgd extern char *strcpy();
    286   1.6       cgd extern char *strncpy();
    287   1.6       cgd extern char *strcat();
    288   1.6       cgd extern time_t time();
    289   1.6       cgd extern void endgrent();
    290  1.12     lukem extern void exit();
    291   1.6       cgd extern off_t lseek();
    292   1.7   mycroft extern const char *strerror();
    293   1.1       cgd #endif
    294