]> git.wh0rd.org Git - dump.git/blob - dump/dump.h
37b3c8bcc186d343ec40a4e25513134e5197a59c
[dump.git] / dump / dump.h
1 /*
2  *      Ported to Linux's Second Extended File System as part of the
3  *      dump and restore backup suit
4  *      Remy Card <card@Linux.EU.Org>, 1994-1997
5  *      Stelian Pop <pop@cybercable.fr>, 1999-2000
6  *
7  *      $Id: dump.h,v 1.12 2000/03/01 10:16:05 stelian Exp $
8  */
9
10 /*-
11  * Copyright (c) 1980, 1993
12  *      The Regents of the University of California.  All rights reserved.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions
16  * are met:
17  * 1. Redistributions of source code must retain the above copyright
18  *    notice, this list of conditions and the following disclaimer.
19  * 2. Redistributions in binary form must reproduce the above copyright
20  *    notice, this list of conditions and the following disclaimer in the
21  *    documentation and/or other materials provided with the distribution.
22  * 3. All advertising materials mentioning features or use of this software
23  *    must display the following acknowledgement:
24  *      This product includes software developed by the University of
25  *      California, Berkeley and its contributors.
26  * 4. Neither the name of the University nor the names of its contributors
27  *    may be used to endorse or promote products derived from this software
28  *    without specific prior written permission.
29  *
30  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
31  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
32  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
34  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
36  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
38  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
39  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40  * SUCH DAMAGE.
41  */
42
43 #define MAXINOPB        (MAXBSIZE / sizeof(struct dinode))
44 #define MAXNINDIR       (MAXBSIZE / sizeof(daddr_t))
45
46 /*
47  * Dump maps used to describe what is to be dumped.
48  */
49 int     mapsize;        /* size of the state maps */
50 char    *usedinomap;    /* map of allocated inodes */
51 char    *dumpdirmap;    /* map of directories to be dumped */
52 char    *dumpinomap;    /* map of files to be dumped */
53 /*
54  * Map manipulation macros.
55  */
56 #define SETINO(ino, map) \
57         map[(u_int)((ino) - 1) / NBBY] |=  1 << ((u_int)((ino) - 1) % NBBY)
58 #define CLRINO(ino, map) \
59         map[(u_int)((ino) - 1) / NBBY] &=  ~(1 << ((u_int)((ino) - 1) % NBBY))
60 #define TSTINO(ino, map) \
61         (map[(u_int)((ino) - 1) / NBBY] &  (1 << ((u_int)((ino) - 1) % NBBY)))
62
63 /*
64  *      All calculations done in 0.1" units!
65  */
66 char    *disk;          /* name of the disk file */
67 char    tape[MAXPATHLEN];       /* name of the tape file */
68 char    *tapeprefix;    /* prefix of the tape file */
69 char    *dumpdates;     /* name of the file containing dump date information*/
70 char    lastlevel;      /* dump level of previous dump */
71 char    level;          /* dump level of this dump */
72 int     uflag;          /* update flag */
73 int     Mflag;          /* multi-volume flag */
74 int     diskfd;         /* disk file descriptor */
75 int     tapefd;         /* tape file descriptor */
76 int     pipeout;        /* true => output to standard output */
77 ino_t   curino;         /* current inumber; used globally */
78 int     newtape;        /* new tape flag */
79 int     density;        /* density in 0.1" units */
80 long    tapesize;       /* estimated tape size, blocks */
81 long    tsize;          /* tape size in 0.1" units */
82 long    asize;          /* number of 0.1" units written on current tape */
83 int     etapes;         /* estimated number of tapes */
84 int     nonodump;       /* if set, do not honor UF_NODUMP user flags */
85 int     unlimited;      /* if set, write to end of medium */
86
87 int     notify;         /* notify operator flag */
88 int     blockswritten;  /* number of blocks written on current tape */
89 int     tapeno;         /* current tape number */
90 time_t  tstart_writing; /* when started writing the first tape block */
91 time_t  tend_writing;   /* after writing the last tape block */
92 #ifdef __linux__
93 ext2_filsys fs;
94 #else
95 struct  fs *sblock;     /* the file system super block */
96 char    sblock_buf[MAXBSIZE];
97 #endif
98 long    xferrate;       /* averaged transfer rate of all volumes */
99 long    dev_bsize;      /* block size of underlying disk device */
100 int     dev_bshift;     /* log2(dev_bsize) */
101 int     tp_bshift;      /* log2(TP_BSIZE) */
102
103 #ifndef __P
104 #include <sys/cdefs.h>
105 #endif
106
107 /* operator interface functions */
108 void    broadcast __P((const char *message));
109 time_t  do_stats __P((void));
110 void    lastdump __P((char arg));
111 void    msg __P((const char *fmt, ...));
112 void    msgtail __P((const char *fmt, ...));
113 int     query __P((const char *question));
114 void    quit __P((const char *fmt, ...));
115 void    set_operators __P((void));
116 #if defined(SIGINFO)
117 void    statussig __P((int signo));
118 #endif
119 void    timeest __P((void));
120 time_t  unctime __P((const char *str));
121
122 /* mapping rouintes */
123 struct  dinode;
124 long    blockest __P((struct dinode *dp));
125 int     mapfiles __P((ino_t maxino, long *tapesize));
126 #ifdef  __linux__
127 int     mapfilesfromdir __P((ino_t maxino, long *tapesize, char *directory));
128 #endif
129 int     mapdirs __P((ino_t maxino, long *tapesize));
130
131 /* file dumping routines */
132 void    blksout __P((daddr_t *blkp, int frags, ino_t ino));
133 void    bread __P((daddr_t blkno, char *buf, int size));
134 void    dumpino __P((struct dinode *dp, ino_t ino));
135 #ifdef  __linux__
136 void    dumpdirino __P((struct dinode *dp, ino_t ino));
137 #endif
138 void    dumpmap __P((char *map, int type, ino_t ino));
139 void    writeheader __P((ino_t ino));
140
141 /* tape writing routines */
142 int     alloctape __P((void));
143 void    close_rewind __P((void));
144 void    dumpblock __P((daddr_t blkno, int size));
145 void    startnewtape __P((int top));
146 void    trewind __P((void));
147 void    writerec __P((const void *dp, int isspcl));
148
149 void    Exit __P((int status));
150 void    dumpabort __P((int signo));
151 void    getfstab __P((void));
152
153 char    *rawname __P((char *cp));
154 struct  dinode *getino __P((ino_t inum));
155
156 /* rdump routines */
157 #ifdef RDUMP
158 int     rmthost __P((const char *host));
159 int     rmtopen __P((const char *tape, int mode));
160 void    rmtclose __P((void));
161 int     rmtread __P((char *buf, size_t count));
162 int     rmtwrite __P((const char *buf, size_t count));
163 int     rmtseek __P((int offset, int pos));
164 struct mtget * rmtstatus __P((void));
165 int     rmtioctl __P((int cmd, int count));
166 #endif /* RDUMP */
167
168 void    interrupt __P((int signo));     /* in case operator bangs on console */
169
170 /*
171  *      Exit status codes
172  */
173 #define X_FINOK         0       /* normal exit */
174 #define X_STARTUP       1       /* startup error */
175 #define X_REWRITE       2       /* restart writing from the check point */
176 #define X_ABORT         3       /* abort dump; don't attempt checkpointing */
177
178 #define OPGRENT "operator"              /* group entry to notify */
179 #ifdef  __linux__
180 #define DIALUP  "ttyS"                  /* prefix for dialups */
181 #else
182 #define DIALUP  "ttyd"                  /* prefix for dialups */
183 #endif
184
185 struct  fstab *fstabsearch __P((const char *key));      /* search fs_file and fs_spec */
186 #ifdef  __linux__
187 struct  fstab *fstabsearchdir __P((const char *key, char *dir));        /* search fs_file and fs_spec */
188 #endif
189
190 /*
191  *      The contents of the file _PATH_DUMPDATES is maintained both on
192  *      a linked list, and then (eventually) arrayified.
193  */
194 struct dumpdates {
195         char    dd_name[MAXPATHLEN+3];
196         char    dd_level;
197         time_t  dd_ddate;
198 };
199 struct dumptime {
200         struct  dumpdates dt_value;
201         struct  dumptime *dt_next;
202 };
203 struct  dumptime *dthead;       /* head of the list version */
204 int     nddates;                /* number of records (might be zero) */
205 int     ddates_in;              /* we have read the increment file */
206 struct  dumpdates **ddatev;     /* the arrayfied version */
207 void    initdumptimes __P((int));
208 void    getdumptime __P((int));
209 void    putdumptime __P((void));
210 #define ITITERATE(i, ddp) \
211         for (ddp = ddatev[i = 0]; i < nddates; ddp = ddatev[++i])
212
213 void    sig __P((int signo));
214
215 /*
216  * Compatibility with old systems.
217  */
218 #ifdef COMPAT
219 #include <sys/file.h>
220 #define strchr(a,b)     index(a,b)
221 #define strrchr(a,b)    rindex(a,b)
222 extern char *strdup(), *ctime();
223 extern int read(), write();
224 extern int errno;
225 #endif
226
227 #ifdef  __linux__
228 #define DUMP_CURRENT_REV        1
229
230 int dump_fs_open(const char *disk, ext2_filsys *fs);
231 #endif
232
233 #ifndef __linux__
234 #ifndef _PATH_UTMP
235 #define _PATH_UTMP      "/etc/utmp"
236 #endif
237 #ifndef _PATH_FSTAB
238 #define _PATH_FSTAB     "/etc/fstab"
239 #endif
240 #endif
241
242 #ifdef sunos
243 extern char *calloc();
244 extern char *malloc();
245 extern long atol();
246 extern char *strcpy();
247 extern char *strncpy();
248 extern char *strcat();
249 extern time_t time();
250 extern void endgrent();
251 extern void exit();
252 extern off_t lseek();
253 extern const char *strerror();
254 #endif
255
256                                 /* 04-Feb-00 ILC */
257 #define IEXCLUDE_MAXNUM 256     /* max size of inode exclude list */
258