Home | History | Annotate | Line # | Download | only in protocols
dumprestore.h revision 1.8.12.1
      1  1.8.12.1  nathanw /*	$NetBSD: dumprestore.h,v 1.8.12.1 2002/01/14 21:37:10 nathanw Exp $	*/
      2       1.6      cgd 
      3       1.4      cgd /*
      4       1.5      cgd  * Copyright (c) 1980, 1993
      5       1.5      cgd  *	The Regents of the University of California.  All rights reserved.
      6       1.4      cgd  * (c) UNIX System Laboratories, Inc.
      7       1.4      cgd  * All or some portions of this file are derived from material licensed
      8       1.4      cgd  * to the University of California by American Telephone and Telegraph
      9       1.4      cgd  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
     10       1.4      cgd  * the permission of UNIX System Laboratories, Inc.
     11       1.4      cgd  *
     12       1.4      cgd  * Redistribution and use in source and binary forms, with or without
     13       1.4      cgd  * modification, are permitted provided that the following conditions
     14       1.4      cgd  * are met:
     15       1.4      cgd  * 1. Redistributions of source code must retain the above copyright
     16       1.4      cgd  *    notice, this list of conditions and the following disclaimer.
     17       1.4      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     18       1.4      cgd  *    notice, this list of conditions and the following disclaimer in the
     19       1.4      cgd  *    documentation and/or other materials provided with the distribution.
     20       1.4      cgd  * 3. All advertising materials mentioning features or use of this software
     21       1.4      cgd  *    must display the following acknowledgement:
     22       1.4      cgd  *	This product includes software developed by the University of
     23       1.4      cgd  *	California, Berkeley and its contributors.
     24       1.4      cgd  * 4. Neither the name of the University nor the names of its contributors
     25       1.4      cgd  *    may be used to endorse or promote products derived from this software
     26       1.4      cgd  *    without specific prior written permission.
     27       1.4      cgd  *
     28       1.4      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29       1.4      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30       1.4      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31       1.4      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32       1.4      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33       1.4      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34       1.4      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35       1.4      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36       1.4      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37       1.4      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38       1.4      cgd  * SUCH DAMAGE.
     39       1.4      cgd  *
     40       1.6      cgd  *	@(#)dumprestore.h	8.2 (Berkeley) 1/21/94
     41       1.4      cgd  */
     42       1.4      cgd 
     43       1.8    perry #ifndef _PROTOCOLS_DUMPRESTORE_H_
     44       1.8    perry #define _PROTOCOLS_DUMPRESTORE_H_
     45       1.4      cgd 
     46       1.4      cgd /*
     47       1.4      cgd  * TP_BSIZE is the size of file blocks on the dump tapes.
     48       1.4      cgd  * Note that TP_BSIZE must be a multiple of DEV_BSIZE.
     49       1.4      cgd  *
     50       1.4      cgd  * NTREC is the number of TP_BSIZE blocks that are written
     51       1.4      cgd  * in each tape record. HIGHDENSITYTREC is the number of
     52       1.4      cgd  * TP_BSIZE blocks that are written in each tape record on
     53       1.4      cgd  * 6250 BPI or higher density tapes.
     54       1.4      cgd  *
     55       1.4      cgd  * TP_NINDIR is the number of indirect pointers in a TS_INODE
     56       1.4      cgd  * or TS_ADDR record. Note that it must be a power of two.
     57       1.4      cgd  */
     58       1.4      cgd #define TP_BSIZE	1024
     59       1.4      cgd #define NTREC   	10
     60       1.4      cgd #define HIGHDENSITYTREC	32
     61       1.4      cgd #define TP_NINDIR	(TP_BSIZE/2)
     62       1.4      cgd #define LBLSIZE		16
     63       1.4      cgd #define NAMELEN		64
     64       1.4      cgd 
     65       1.4      cgd #define OFS_MAGIC   	(int)60011
     66       1.4      cgd #define NFS_MAGIC   	(int)60012
     67       1.4      cgd #define CHECKSUM	(int)84446
     68       1.4      cgd 
     69       1.4      cgd union u_spcl {
     70       1.4      cgd 	char dummy[TP_BSIZE];
     71       1.4      cgd 	struct	s_spcl {
     72       1.7      cgd 		int32_t	c_type;		    /* record type (see below) */
     73  1.8.12.1  nathanw 		int32_t	c_date;		    /* date of this dump */
     74  1.8.12.1  nathanw 		int32_t	c_ddate;	    /* date of previous dump */
     75       1.7      cgd 		int32_t	c_volume;	    /* dump volume number */
     76       1.4      cgd 		daddr_t	c_tapea;	    /* logical block of this record */
     77       1.4      cgd 		ino_t	c_inumber;	    /* number of inode */
     78       1.7      cgd 		int32_t	c_magic;	    /* magic number (see above) */
     79       1.7      cgd 		int32_t	c_checksum;	    /* record checksum */
     80       1.4      cgd 		struct	dinode	c_dinode;   /* ownership and mode of inode */
     81       1.7      cgd 		int32_t	c_count;	    /* number of valid c_addr entries */
     82       1.4      cgd 		char	c_addr[TP_NINDIR];  /* 1 => data; 0 => hole in inode */
     83       1.4      cgd 		char	c_label[LBLSIZE];   /* dump label */
     84       1.7      cgd 		int32_t	c_level;	    /* level of this dump */
     85       1.4      cgd 		char	c_filesys[NAMELEN]; /* name of dumpped file system */
     86       1.4      cgd 		char	c_dev[NAMELEN];	    /* name of dumpped device */
     87       1.4      cgd 		char	c_host[NAMELEN];    /* name of dumpped host */
     88       1.7      cgd 		int32_t	c_flags;	    /* additional information */
     89       1.7      cgd 		int32_t	c_firstrec;	    /* first record on volume */
     90       1.7      cgd 		int32_t	c_spare[32];	    /* reserved for future uses */
     91       1.4      cgd 	} s_spcl;
     92       1.4      cgd } u_spcl;
     93       1.4      cgd #define spcl u_spcl.s_spcl
     94       1.4      cgd /*
     95       1.4      cgd  * special record types
     96       1.4      cgd  */
     97       1.4      cgd #define TS_TAPE 	1	/* dump tape header */
     98       1.4      cgd #define TS_INODE	2	/* beginning of file record */
     99       1.4      cgd #define TS_ADDR 	4	/* continuation of file record */
    100       1.4      cgd #define TS_BITS 	3	/* map of inodes on tape */
    101       1.4      cgd #define TS_CLRI 	6	/* map of inodes deleted since last dump */
    102       1.4      cgd #define TS_END  	5	/* end of volume marker */
    103       1.4      cgd 
    104       1.4      cgd /*
    105       1.4      cgd  * flag values
    106       1.4      cgd  */
    107       1.4      cgd #define DR_NEWHEADER	0x0001	/* new format tape header */
    108       1.4      cgd #define DR_NEWINODEFMT	0x0002	/* new format inodes on tape */
    109       1.4      cgd 
    110       1.4      cgd #define	DUMPOUTFMT	"%-16s %c %s"		/* for printf */
    111       1.4      cgd 						/* name, level, ctime(date) */
    112       1.4      cgd #define	DUMPINFMT	"%16s %c %[^\n]\n"	/* inverse for scanf */
    113       1.4      cgd 
    114       1.8    perry #endif /* !_PROTOCOLS_DUMPRESTORE_H_ */
    115