]> git.wh0rd.org - dump.git/blame - dump/dump.h
Added the prompt command in restore interactive mode.
[dump.git] / dump / dump.h
CommitLineData
1227625a
SP
1/*
2 * Ported to Linux's Second Extended File System as part of the
3 * dump and restore backup suit
b45f51d6 4 * Remy Card <card@Linux.EU.Org>, 1994-1997
ebcbe7f6 5 * Stelian Pop <pop@cybercable.fr>, 1999-2000
1227625a 6 *
d3393043 7 * $Id: dump.h,v 1.11 2000/02/26 01:35:48 stelian Exp $
1227625a
SP
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.
1227625a
SP
41 */
42
43#define MAXINOPB (MAXBSIZE / sizeof(struct dinode))
44#define MAXNINDIR (MAXBSIZE / sizeof(daddr_t))
45
d1c73b9a
SP
46#ifndef NAME_MAX
47#define NAME_MAX 255
48#endif
49
1227625a
SP
50/*
51 * Dump maps used to describe what is to be dumped.
52 */
53int mapsize; /* size of the state maps */
54char *usedinomap; /* map of allocated inodes */
55char *dumpdirmap; /* map of directories to be dumped */
56char *dumpinomap; /* map of files to be dumped */
57/*
58 * Map manipulation macros.
59 */
60#define SETINO(ino, map) \
61 map[(u_int)((ino) - 1) / NBBY] |= 1 << ((u_int)((ino) - 1) % NBBY)
62#define CLRINO(ino, map) \
63 map[(u_int)((ino) - 1) / NBBY] &= ~(1 << ((u_int)((ino) - 1) % NBBY))
64#define TSTINO(ino, map) \
65 (map[(u_int)((ino) - 1) / NBBY] & (1 << ((u_int)((ino) - 1) % NBBY)))
66
67/*
68 * All calculations done in 0.1" units!
69 */
70char *disk; /* name of the disk file */
d1c73b9a
SP
71char tape[NAME_MAX]; /* name of the tape file */
72char *tapeprefix; /* prefix of the tape file */
1227625a 73char *dumpdates; /* name of the file containing dump date information*/
1227625a
SP
74char lastlevel; /* dump level of previous dump */
75char level; /* dump level of this dump */
76int uflag; /* update flag */
d1c73b9a 77int Mflag; /* multi-volume flag */
1227625a
SP
78int diskfd; /* disk file descriptor */
79int tapefd; /* tape file descriptor */
80int pipeout; /* true => output to standard output */
81ino_t curino; /* current inumber; used globally */
82int newtape; /* new tape flag */
83int density; /* density in 0.1" units */
84long tapesize; /* estimated tape size, blocks */
85long tsize; /* tape size in 0.1" units */
86long asize; /* number of 0.1" units written on current tape */
87int etapes; /* estimated number of tapes */
88int nonodump; /* if set, do not honor UF_NODUMP user flags */
b45f51d6 89int unlimited; /* if set, write to end of medium */
1227625a
SP
90
91int notify; /* notify operator flag */
92int blockswritten; /* number of blocks written on current tape */
93int tapeno; /* current tape number */
94time_t tstart_writing; /* when started writing the first tape block */
b45f51d6 95time_t tend_writing; /* after writing the last tape block */
1227625a 96#ifdef __linux__
1227625a
SP
97ext2_filsys fs;
98#else
99struct fs *sblock; /* the file system super block */
100char sblock_buf[MAXBSIZE];
101#endif
ddd2ef55 102long xferrate; /* averaged transfer rate of all volumes */
1227625a
SP
103long dev_bsize; /* block size of underlying disk device */
104int dev_bshift; /* log2(dev_bsize) */
105int tp_bshift; /* log2(TP_BSIZE) */
106
107#ifndef __P
108#include <sys/cdefs.h>
109#endif
110
111/* operator interface functions */
ddd2ef55
SP
112void broadcast __P((const char *message));
113time_t do_stats __P((void));
114void lastdump __P((char arg));
1227625a
SP
115void msg __P((const char *fmt, ...));
116void msgtail __P((const char *fmt, ...));
ddd2ef55 117int query __P((const char *question));
1227625a
SP
118void quit __P((const char *fmt, ...));
119void set_operators __P((void));
ddd2ef55
SP
120#if defined(SIGINFO)
121void statussig __P((int signo));
122#endif
1227625a 123void timeest __P((void));
ddd2ef55 124time_t unctime __P((const char *str));
1227625a
SP
125
126/* mapping rouintes */
127struct dinode;
128long blockest __P((struct dinode *dp));
129int mapfiles __P((ino_t maxino, long *tapesize));
130#ifdef __linux__
131int mapfilesfromdir __P((ino_t maxino, long *tapesize, char *directory));
132#endif
133int mapdirs __P((ino_t maxino, long *tapesize));
134
135/* file dumping routines */
136void blksout __P((daddr_t *blkp, int frags, ino_t ino));
b45f51d6 137void bread __P((daddr_t blkno, char *buf, int size));
1227625a
SP
138void dumpino __P((struct dinode *dp, ino_t ino));
139#ifdef __linux__
140void dumpdirino __P((struct dinode *dp, ino_t ino));
141#endif
142void dumpmap __P((char *map, int type, ino_t ino));
143void writeheader __P((ino_t ino));
144
145/* tape writing routines */
146int alloctape __P((void));
147void close_rewind __P((void));
148void dumpblock __P((daddr_t blkno, int size));
149void startnewtape __P((int top));
150void trewind __P((void));
ddd2ef55 151void writerec __P((const void *dp, int isspcl));
1227625a 152
ddd2ef55 153void Exit __P((int status));
1227625a
SP
154void dumpabort __P((int signo));
155void getfstab __P((void));
156
157char *rawname __P((char *cp));
158struct dinode *getino __P((ino_t inum));
159
160/* rdump routines */
161#ifdef RDUMP
ddd2ef55
SP
162int rmthost __P((const char *host));
163int rmtopen __P((const char *tape, int mode));
1227625a 164void rmtclose __P((void));
ddd2ef55
SP
165int rmtread __P((char *buf, size_t count));
166int rmtwrite __P((const char *buf, size_t count));
167int rmtseek __P((int offset, int pos));
168struct mtget * rmtstatus __P((void));
169int rmtioctl __P((int cmd, int count));
1227625a
SP
170#endif /* RDUMP */
171
172void interrupt __P((int signo)); /* in case operator bangs on console */
173
174/*
175 * Exit status codes
176 */
177#define X_FINOK 0 /* normal exit */
ddd2ef55 178#define X_STARTUP 1 /* startup error */
1227625a
SP
179#define X_REWRITE 2 /* restart writing from the check point */
180#define X_ABORT 3 /* abort dump; don't attempt checkpointing */
181
182#define OPGRENT "operator" /* group entry to notify */
183#ifdef __linux__
184#define DIALUP "ttyS" /* prefix for dialups */
185#else
186#define DIALUP "ttyd" /* prefix for dialups */
187#endif
188
ddd2ef55 189struct fstab *fstabsearch __P((const char *key)); /* search fs_file and fs_spec */
1227625a 190#ifdef __linux__
ddd2ef55 191struct fstab *fstabsearchdir __P((const char *key, char *dir)); /* search fs_file and fs_spec */
1227625a
SP
192#endif
193
1227625a
SP
194/*
195 * The contents of the file _PATH_DUMPDATES is maintained both on
196 * a linked list, and then (eventually) arrayified.
197 */
198struct dumpdates {
199 char dd_name[NAME_MAX+3];
200 char dd_level;
201 time_t dd_ddate;
202};
203struct dumptime {
204 struct dumpdates dt_value;
205 struct dumptime *dt_next;
206};
207struct dumptime *dthead; /* head of the list version */
208int nddates; /* number of records (might be zero) */
209int ddates_in; /* we have read the increment file */
210struct dumpdates **ddatev; /* the arrayfied version */
8d4197bb
SP
211void initdumptimes __P((int));
212void getdumptime __P((int));
1227625a
SP
213void putdumptime __P((void));
214#define ITITERATE(i, ddp) \
215 for (ddp = ddatev[i = 0]; i < nddates; ddp = ddatev[++i])
216
217void sig __P((int signo));
218
219/*
220 * Compatibility with old systems.
221 */
222#ifdef COMPAT
223#include <sys/file.h>
224#define strchr(a,b) index(a,b)
225#define strrchr(a,b) rindex(a,b)
226extern char *strdup(), *ctime();
227extern int read(), write();
228extern int errno;
229#endif
230
231#ifdef __linux__
8d4197bb 232#define DUMP_CURRENT_REV 1
c930abff
SP
233
234int dump_fs_open(const char *disk, ext2_filsys *fs);
1227625a
SP
235#endif
236
237#ifndef __linux__
238#ifndef _PATH_UTMP
239#define _PATH_UTMP "/etc/utmp"
240#endif
241#ifndef _PATH_FSTAB
242#define _PATH_FSTAB "/etc/fstab"
243#endif
244#endif
245
246#ifdef sunos
247extern char *calloc();
248extern char *malloc();
249extern long atol();
250extern char *strcpy();
251extern char *strncpy();
252extern char *strcat();
253extern time_t time();
254extern void endgrent();
b45f51d6 255extern void exit();
1227625a
SP
256extern off_t lseek();
257extern const char *strerror();
258#endif
20c345aa
SP
259
260 /* 04-Feb-00 ILC */
261#define IEXCLUDE_MAXNUM 256 /* max size of inode exclude list */
262