Home | History | Annotate | Line # | Download | only in dump
dump.h revision 1.36
      1  1.36      fvdl /*	$NetBSD: dump.h,v 1.36 2003/04/02 10:39:24 fvdl 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.36      fvdl union dinode {
     41  1.36      fvdl 	struct ufs1_dinode dp1;
     42  1.36      fvdl 	struct ufs2_dinode dp2;
     43  1.36      fvdl };
     44  1.36      fvdl #define DIP(dp, field) \
     45  1.36      fvdl 	(is_ufs2 ? (dp)->dp2.di_##field : (dp)->dp1.di_##field)
     46   1.1       cgd 
     47   1.1       cgd /*
     48  1.19  perseant  * Filestore-independent UFS data, so code can be more easily shared
     49  1.19  perseant  * between ffs, lfs, and maybe ext2fs and others as well.
     50  1.19  perseant  */
     51  1.19  perseant struct ufsi {
     52  1.28     lukem 	int64_t ufs_dsize;	/* file system size, in sectors */
     53  1.19  perseant 	int32_t ufs_bsize;	/* block size */
     54  1.19  perseant 	int32_t ufs_bshift;	/* log2(ufs_bsize) */
     55  1.19  perseant 	int32_t ufs_fsize;	/* fragment size */
     56  1.31     lukem 	int32_t ufs_frag;	/* block size / frag size */
     57  1.19  perseant 	int32_t ufs_fsatoda;	/* disk address conversion constant */
     58  1.19  perseant 	int32_t	ufs_nindir;	/* disk addresses per indirect block */
     59  1.31     lukem 	int32_t ufs_inopb;	/* inodes per block */
     60  1.19  perseant 	int32_t ufs_maxsymlinklen; /* max symlink length */
     61  1.31     lukem 	int32_t ufs_bmask;	/* block mask */
     62  1.31     lukem 	int32_t ufs_fmask;	/* frag mask */
     63  1.31     lukem 	int64_t ufs_qbmask;	/* ~ufs_bmask */
     64  1.31     lukem 	int64_t ufs_qfmask;	/* ~ufs_fmask */
     65  1.19  perseant };
     66  1.19  perseant #define fsatoda(u,a) ((a) << (u)->ufs_fsatoda)
     67  1.19  perseant #define ufs_fragroundup(u,size) /* calculates roundup(size, ufs_fsize) */ \
     68  1.31     lukem 	(((size) + (u)->ufs_qfmask) & (u)->ufs_fmask)
     69  1.19  perseant #define ufs_blkoff(u,loc)   /* calculates (loc % u->ufs_bsize) */ \
     70  1.31     lukem 	((loc) & (u)->ufs_qbmask)
     71  1.19  perseant #define ufs_dblksize(u,d,b) \
     72  1.36      fvdl 	((((b) >= NDADDR || DIP((d), size) >= ((b)+1) << (u)->ufs_bshift \
     73  1.19  perseant 		? (u)->ufs_bsize \
     74  1.36      fvdl 		: (ufs_fragroundup((u), ufs_blkoff(u, DIP((d), size)))))))
     75  1.19  perseant struct ufsi *ufsib;
     76  1.19  perseant 
     77  1.19  perseant /*
     78   1.1       cgd  * Dump maps used to describe what is to be dumped.
     79   1.1       cgd  */
     80   1.1       cgd int	mapsize;	/* size of the state maps */
     81   1.1       cgd char	*usedinomap;	/* map of allocated inodes */
     82   1.1       cgd char	*dumpdirmap;	/* map of directories to be dumped */
     83   1.1       cgd char	*dumpinomap;	/* map of files to be dumped */
     84   1.1       cgd /*
     85   1.1       cgd  * Map manipulation macros.
     86   1.1       cgd  */
     87   1.1       cgd #define	SETINO(ino, map) \
     88   1.1       cgd 	map[(u_int)((ino) - 1) / NBBY] |=  1 << ((u_int)((ino) - 1) % NBBY)
     89   1.1       cgd #define	CLRINO(ino, map) \
     90   1.1       cgd 	map[(u_int)((ino) - 1) / NBBY] &=  ~(1 << ((u_int)((ino) - 1) % NBBY))
     91   1.1       cgd #define	TSTINO(ino, map) \
     92   1.1       cgd 	(map[(u_int)((ino) - 1) / NBBY] &  (1 << ((u_int)((ino) - 1) % NBBY)))
     93   1.1       cgd 
     94   1.1       cgd /*
     95   1.1       cgd  *	All calculations done in 0.1" units!
     96   1.1       cgd  */
     97   1.1       cgd char	*disk;		/* name of the disk file */
     98   1.1       cgd char	*tape;		/* name of the tape file */
     99   1.1       cgd char	*dumpdates;	/* name of the file containing dump date information*/
    100   1.1       cgd char	*temp;		/* name of the file for doing rewrite of dumpdates */
    101   1.1       cgd char	lastlevel;	/* dump level of previous dump */
    102   1.1       cgd char	level;		/* dump level of this dump */
    103   1.1       cgd int	uflag;		/* update flag */
    104  1.24      tron int	eflag;		/* eject flag */
    105  1.30    bouyer int	lflag;		/* autoload flag */
    106   1.1       cgd int	diskfd;		/* disk file descriptor */
    107   1.1       cgd int	tapefd;		/* tape file descriptor */
    108   1.1       cgd int	pipeout;	/* true => output to standard output */
    109   1.1       cgd ino_t	curino;		/* current inumber; used globally */
    110   1.1       cgd int	newtape;	/* new tape flag */
    111  1.36      fvdl u_int64_t	tapesize;	/* estimated tape size, blocks */
    112   1.1       cgd long	tsize;		/* tape size in 0.1" units */
    113   1.1       cgd long	asize;		/* number of 0.1" units written on current tape */
    114   1.1       cgd int	etapes;		/* estimated number of tapes */
    115   1.7   mycroft int	nonodump;	/* if set, do not honor UF_NODUMP user flags */
    116  1.33     lukem int	unlimited;	/* if set, write to end of medium */
    117   1.1       cgd 
    118  1.22  christos extern int	density;	/* density in 0.1" units */
    119  1.22  christos extern int	notify;		/* notify operator flag */
    120  1.31     lukem extern int	timestamp;	/* timestamp messages */
    121  1.22  christos extern int	blockswritten;	/* number of blocks written on current tape */
    122  1.22  christos extern int	tapeno;		/* current tape number */
    123  1.36      fvdl extern int	is_ufs2;
    124  1.22  christos 
    125   1.1       cgd time_t	tstart_writing;	/* when started writing the first tape block */
    126  1.10     lukem int	xferrate;	/* averaged transfer rate of all volumes */
    127  1.19  perseant char	sblock_buf[MAXBSIZE]; /* buffer to hold the superblock */
    128  1.21       scw extern long	dev_bsize;	/* block size of underlying disk device */
    129   1.1       cgd int	dev_bshift;	/* log2(dev_bsize) */
    130   1.1       cgd int	tp_bshift;	/* log2(TP_BSIZE) */
    131  1.14    bouyer int needswap;	/* file system in swapped byte order */
    132  1.14    bouyer /* some inline functs to help the byte-swapping mess */
    133  1.26     lukem static __inline u_int16_t iswap16(u_int16_t);
    134  1.26     lukem static __inline u_int32_t iswap32(u_int32_t);
    135  1.26     lukem static __inline u_int64_t iswap64(u_int64_t);
    136  1.26     lukem 
    137  1.26     lukem static __inline u_int16_t iswap16(u_int16_t x)
    138  1.26     lukem {
    139  1.14    bouyer 	if (needswap)
    140  1.14    bouyer 		return bswap16(x);
    141  1.26     lukem 	else
    142  1.26     lukem 		return x;
    143  1.14    bouyer }
    144  1.14    bouyer 
    145  1.26     lukem static __inline u_int32_t iswap32(u_int32_t x)
    146  1.14    bouyer {
    147  1.14    bouyer 	if (needswap)
    148  1.14    bouyer 		return bswap32(x);
    149  1.26     lukem 	else
    150  1.26     lukem 		return x;
    151  1.14    bouyer }
    152  1.14    bouyer 
    153  1.26     lukem static __inline u_int64_t iswap64(u_int64_t x)
    154  1.14    bouyer {
    155  1.14    bouyer 	if (needswap)
    156  1.14    bouyer 		return bswap64(x);
    157  1.26     lukem 	else
    158  1.26     lukem 		return x;
    159  1.26     lukem }
    160  1.19  perseant 
    161  1.19  perseant /* filestore-specific hooks */
    162  1.26     lukem int	fs_read_sblock(char *);
    163  1.26     lukem struct ufsi *fs_parametrize(void);
    164  1.26     lukem ino_t	fs_maxino(void);
    165  1.36      fvdl void	fs_mapinodes(ino_t, u_int64_t *, int *);
    166   1.7   mycroft 
    167   1.1       cgd /* operator interface functions */
    168  1.26     lukem void	broadcast(char *);
    169  1.26     lukem void	lastdump(char);
    170  1.26     lukem void	msg(const char *fmt, ...) __attribute__((__format__(__printf__,1,2)));
    171  1.26     lukem void	msgtail(const char *fmt, ...) __attribute__((__format__(__printf__,1,2)));
    172  1.26     lukem int	query(char *);
    173  1.26     lukem void	quit(const char *fmt, ...) __attribute__((__format__(__printf__,1,2)));
    174  1.26     lukem time_t	do_stats(void);
    175  1.26     lukem void	statussig(int);
    176  1.26     lukem void	timeest(void);
    177  1.26     lukem time_t	unctime(char *);
    178   1.1       cgd 
    179  1.10     lukem /* mapping routines */
    180  1.36      fvdl union	dinode;
    181  1.36      fvdl int64_t	blockest(union dinode *);
    182  1.36      fvdl void	mapfileino(ino_t, u_int64_t *, int *);
    183  1.36      fvdl int	mapfiles(ino_t, u_int64_t *, char *, char * const *);
    184  1.36      fvdl int	mapdirs(ino_t, u_int64_t *);
    185   1.1       cgd 
    186   1.1       cgd /* file dumping routines */
    187  1.36      fvdl void	blksout32(int32_t *, int, ino_t);
    188  1.36      fvdl void	blksout64(int64_t *, int, ino_t);
    189  1.36      fvdl void	dumpino(union dinode *, ino_t);
    190  1.26     lukem void	dumpmap(char *, int, ino_t);
    191  1.26     lukem void	writeheader(ino_t);
    192  1.16    bouyer 
    193  1.16    bouyer /* data block caching */
    194  1.26     lukem void	bread(daddr_t, char *, int);
    195  1.26     lukem void	rawread(daddr_t, char *, int);
    196  1.26     lukem void	initcache(int, int);
    197  1.26     lukem void	printcachestats(void);
    198   1.1       cgd 
    199   1.1       cgd /* tape writing routines */
    200  1.26     lukem int	alloctape(void);
    201  1.26     lukem void	close_rewind(void);
    202  1.26     lukem void	dumpblock(daddr_t, int);
    203  1.26     lukem void	startnewtape(int);
    204  1.26     lukem void	trewind(int);
    205  1.26     lukem void	writerec(char *, int);
    206  1.26     lukem 
    207  1.26     lukem void	Exit(int);
    208  1.26     lukem void	dumpabort(int);
    209  1.26     lukem void	getfstab(void);
    210   1.1       cgd 
    211  1.26     lukem char	*rawname(char *);
    212  1.36      fvdl union	dinode *getino(ino_t);
    213   1.1       cgd 
    214  1.27     lukem void	*xcalloc(size_t, size_t);
    215  1.27     lukem void	*xmalloc(size_t);
    216  1.27     lukem char	*xstrdup(const char *);
    217  1.27     lukem 
    218   1.7   mycroft /* rdump routines */
    219  1.23  christos #if defined(RDUMP) || defined(RRESTORE)
    220  1.26     lukem void	rmtclose(void);
    221  1.26     lukem int	rmthost(char *);
    222  1.30    bouyer int	rmtopen(char *, int, int);
    223  1.26     lukem int	rmtwrite(char *, int);
    224  1.30    bouyer int	rmtioctl(int, int);
    225  1.23  christos #endif /* RDUMP || RRESTORE */
    226   1.7   mycroft 
    227  1.26     lukem void	interrupt(int);	/* in case operator bangs on console */
    228   1.1       cgd 
    229   1.1       cgd /*
    230   1.1       cgd  *	Exit status codes
    231   1.1       cgd  */
    232   1.1       cgd #define	X_FINOK		0	/* normal exit */
    233  1.32     lukem #define	X_STARTUP	1	/* startup error */
    234   1.1       cgd #define	X_REWRITE	2	/* restart writing from the check point */
    235   1.6       cgd #define	X_ABORT		3	/* abort dump; don't attempt checkpointing */
    236   1.1       cgd 
    237   1.1       cgd #define	OPGRENT	"operator"		/* group entry to notify */
    238   1.1       cgd #define DIALUP	"ttyd"			/* prefix for dialups */
    239   1.1       cgd 
    240  1.27     lukem struct	fstab *fstabsearch(const char *);	/* search fs_file and fs_spec */
    241  1.27     lukem struct	statfs *mntinfosearch(const char *key);
    242   1.6       cgd 
    243   1.6       cgd #ifndef NAME_MAX
    244   1.6       cgd #define NAME_MAX 255
    245   1.6       cgd #endif
    246   1.1       cgd 
    247   1.1       cgd /*
    248   1.1       cgd  *	The contents of the file _PATH_DUMPDATES is maintained both on
    249   1.1       cgd  *	a linked list, and then (eventually) arrayified.
    250   1.1       cgd  */
    251   1.1       cgd struct dumpdates {
    252   1.6       cgd 	char	dd_name[NAME_MAX+3];
    253   1.1       cgd 	char	dd_level;
    254   1.1       cgd 	time_t	dd_ddate;
    255   1.1       cgd };
    256  1.22  christos 
    257  1.22  christos extern int	nddates;		/* number of records (might be zero) */
    258  1.22  christos extern struct	dumpdates **ddatev;	/* the arrayfied version */
    259  1.22  christos 
    260  1.26     lukem void	initdumptimes(void);
    261  1.26     lukem void	getdumptime(void);
    262  1.26     lukem void	putdumptime(void);
    263   1.1       cgd #define	ITITERATE(i, ddp) \
    264  1.32     lukem 	if (ddatev != NULL) \
    265  1.32     lukem 		for (ddp = ddatev[i = 0]; i < nddates; ddp = ddatev[++i])
    266   1.1       cgd 
    267  1.26     lukem void	sig(int signo);
    268   1.1       cgd 
    269   1.1       cgd /*
    270   1.1       cgd  * Compatibility with old systems.
    271   1.1       cgd  */
    272   1.7   mycroft #ifdef COMPAT
    273   1.1       cgd #include <sys/file.h>
    274   1.8   mycroft #define	strchr(a,b)	index(a,b)
    275   1.8   mycroft #define	strrchr(a,b)	rindex(a,b)
    276   1.8   mycroft extern char *strdup(), *ctime();
    277   1.7   mycroft extern int read(), write();
    278   1.1       cgd extern int errno;
    279   1.6       cgd #endif
    280   1.6       cgd 
    281   1.7   mycroft #ifndef	_PATH_FSTAB
    282   1.7   mycroft #define	_PATH_FSTAB	"/etc/fstab"
    283   1.1       cgd #endif
    284