note change in package source format in changelog
[debian/dump] / restore / main.c
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 <stelian@popies.net>, 1999-2000
6  *      Stelian Pop <stelian@popies.net> - AlcĂ´ve <www.alcove.com>, 2000-2002
7  */
8
9 /*
10  * Copyright (c) 1983, 1993
11  *      The Regents of the University of California.  All rights reserved.
12  *
13  * Redistribution and use in source and binary forms, with or without
14  * modification, are permitted provided that the following conditions
15  * are met:
16  * 1. Redistributions of source code must retain the above copyright
17  *    notice, this list of conditions and the following disclaimer.
18  * 2. Redistributions in binary form must reproduce the above copyright
19  *    notice, this list of conditions and the following disclaimer in the
20  *    documentation and/or other materials provided with the distribution.
21  * 3. Neither the name of the University nor the names of its contributors
22  *    may be used to endorse or promote products derived from this software
23  *    without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35  * SUCH DAMAGE.
36  */
37
38 #ifndef lint
39 static const char rcsid[] =
40         "$Id: main.c,v 1.53 2009/06/18 09:42:12 stelian Exp $";
41 #endif /* not lint */
42
43 #include <config.h>
44 #include <compatlfs.h>
45 #include <sys/types.h>
46 #include <fcntl.h>
47 #include <sys/param.h>
48 #include <sys/stat.h>
49 #include <errno.h>
50
51 #ifdef  __linux__
52 #include <sys/time.h>
53 #include <time.h>
54 #ifdef HAVE_EXT2FS_EXT2_FS_H
55 #include <ext2fs/ext2_fs.h>
56 #else
57 #include <linux/ext2_fs.h>
58 #endif
59 #include <bsdcompat.h>
60 #include <signal.h>
61 #include <string.h>
62 #else   /* __linux__ */
63 #ifdef sunos
64 #include <signal.h>
65 #include <string.h>
66 #include <sys/fcntl.h>
67 #include <bsdcompat.h>
68 #include <sys/mtio.h>
69 #else
70 #include <ufs/ufs/dinode.h>
71 #endif
72 #endif  /* __linux__ */
73 #include <protocols/dumprestore.h>
74
75 #include <compaterr.h>
76 #include <stdio.h>
77 #include <stdlib.h>
78 #include <unistd.h>
79
80 #ifdef  __linux__
81 #include <ext2fs/ext2fs.h>
82 #include <getopt.h>
83 #endif
84
85 #include "pathnames.h"
86 #include "restore.h"
87 #include "extern.h"
88
89 int abortifconnerr = 1;         /* set to 1 if lib dumprmt.o should exit on connection errors
90                                 otherwise just print a message using msg */
91
92 int     aflag = 0, bflag = 0, cvtflag = 0, dflag = 0, vflag = 0, yflag = 0;
93 int     hflag = 1, mflag = 1, Mflag = 0, Nflag = 0, Vflag = 0, zflag = 0;
94 int     uflag = 0, lflag = 0, Lflag = 0, oflag = 0;
95 int     ufs2flag = 0;
96 char    *Afile = NULL;
97 int     dokerberos = 0;
98 char    command = '\0';
99 long    dumpnum = 1;
100 long    volno = 0;
101 long    ntrec;
102 char    *dumpmap = NULL;
103 char    *usedinomap = NULL;
104 dump_ino_t maxino;
105 time_t  dumptime;
106 time_t  dumpdate;
107 FILE    *terminal;
108 char    *tmpdir;
109 int     compare_ignore_not_found;
110 int     compare_errors;
111 char    filesys[NAMELEN];
112 static const char *stdin_opt = NULL;
113 char    *bot_script = NULL;
114 dump_ino_t volinfo[TP_NINOS];
115 int     wdfd;
116 int     dirhash_size = 1;
117
118 #ifdef USE_QFA
119 FILE    *gTapeposfp;
120 char    *gTapeposfile;
121 char    gTps[255];
122 long    gSeekstart;
123 int     tapeposflag;
124 int     gTapeposfd;
125 int     createtapeposflag;
126 unsigned long qfadumpdate;
127 long long curtapepos;
128 #endif /* USE_QFA */
129
130 #ifdef TRANSSELINUX                     /*GAN6May06 SELinux MLS */
131 int     transselinuxflag = 0;
132 char    *transselinuxarg = NULL;
133 #endif
134
135 long smtc_errno;
136
137 #if defined(__linux__) || defined(sunos)
138 char    *__progname;
139 #endif
140
141 static void obsolete __P((int *, char **[]));
142 static void usage __P((void));
143 static void use_stdin __P((const char *));
144
145 #define FORCED_UMASK (077)
146
147 int
148 main(int argc, char *argv[])
149 {
150         int ch;
151         dump_ino_t ino;
152         char *inputdev = _PATH_DEFTAPE;
153         char *symtbl = "./restoresymtable";
154         char *p, name[MAXPATHLEN];
155         FILE *filelist = NULL;
156         char fname[MAXPATHLEN];
157         mode_t orig_umask;
158 #ifdef DEBUG_QFA
159         time_t tistart, tiend, titaken;
160 #endif
161 #ifdef USE_QFA
162         tapeposflag = 0;
163         createtapeposflag = 0;
164 #endif /* USE_QFA */
165 #ifdef TRANSSELINUX                     /*GAN6May06 SELinux MLS */
166         char transselinuxopt;
167 #endif
168
169         /* Temp files should *not* be readable.  We set permissions later. */
170         orig_umask = umask(FORCED_UMASK);
171         filesys[0] = '\0';
172 #if defined(__linux__) || defined(sunos)
173         __progname = argv[0];
174 #endif
175
176         if (argc < 2)
177                 usage();
178
179         if ((inputdev = getenv("TAPE")) == NULL)
180                 inputdev = _PATH_DEFTAPE;
181         if ((tmpdir = getenv("TMPDIR")) == NULL)
182                 tmpdir = _PATH_TMP;
183         if ((tmpdir = strdup(tmpdir)) == NULL)
184                 err(1, "malloc tmpdir");
185         for (p = tmpdir + strlen(tmpdir) - 1; p >= tmpdir && *p == '/'; p--)
186                 ;                                                               
187         obsolete(&argc, &argv);
188         while ((ch = getopt(argc, argv, 
189                 "aA:b:CcdD:"
190 #ifdef TRANSSELINUX                     /*GAN6May06 SELinux MLS */
191                 "eE:"
192 #endif
193                 "f:F:hH:i"
194 #ifdef KERBEROS
195                 "k"
196 #endif
197                 "lL:mMNo"
198 #ifdef USE_QFA
199                 "P:Q:"
200 #endif
201                 "Rrs:tT:uvVxX:y")) != -1)
202                 switch(ch) {
203                 case 'a':
204                         aflag = 1;
205                         break;
206                 case 'A':
207                         Afile = optarg;
208                         aflag = 1;
209                         break;
210                 case 'b':
211                         /* Change default tape blocksize. */
212                         bflag = 1;
213                         ntrec = strtol(optarg, &p, 10);
214                         if (*p)
215                                 errx(1, "illegal blocksize -- %s", optarg);
216                         if (ntrec <= 0)
217                                 errx(1, "block size must be greater than 0");
218                         break;
219                 case 'c':
220                         cvtflag = 1;
221                         break;
222                 case 'D':
223                         strncpy(filesys, optarg, NAMELEN);
224                         filesys[NAMELEN - 1] = '\0';
225                         break;
226 #ifdef TRANSSELINUX                     /*GAN6May06 SELinux MLS */
227                 case 'e':
228                         transselinuxflag = 1;
229                         transselinuxopt = ch;
230                         break;
231                 case 'E':
232                         transselinuxflag = 1;
233                         transselinuxarg = optarg;
234                         transselinuxopt = ch;
235                         break;
236 #endif
237                 case 'T':
238                         tmpdir = optarg;
239                         break;
240                 case 'd':
241                         dflag = 1;
242                         break;
243                 case 'f':
244                         if( !strcmp(optarg,"-") )
245                                 use_stdin("-f");
246                         inputdev = optarg;
247                         break;
248                 case 'F':
249                         bot_script = optarg;
250                         break;
251                 case 'h':
252                         hflag = 0;
253                         break;
254                 case 'H':
255                         dirhash_size = strtol(optarg, &p, 10);
256                         if (*p)
257                                 errx(1, "illegal hash size -- %s", optarg);
258                         if (dirhash_size < 1)
259                                 errx(1, "hash size must be greater than 0");
260                         break;
261 #ifdef KERBEROS
262                 case 'k':
263                         dokerberos = 1;
264                         break;
265 #endif
266                 case 'C':
267                 case 'i':
268 #ifdef USE_QFA
269                 case 'P':
270 #endif
271                 case 'R':
272                 case 'r':
273                 case 't':
274                 case 'x':
275                         if (command != '\0')
276                                 errx(1,
277                                     "%c and %c options are mutually exclusive",
278                                     ch, command);
279                         command = ch;
280 #ifdef USE_QFA
281                         if (ch == 'P') {
282                                 gTapeposfile = optarg;
283                                 createtapeposflag = 1;
284                         }
285 #endif
286
287                         break;
288                 case 'l':
289                         lflag = 1;
290                         break;
291                 case 'L':
292                         Lflag = strtol(optarg, &p, 10);
293                         if (*p)
294                                 errx(1, "illegal limit -- %s", optarg);
295                         if (Lflag < 0)
296                                 errx(1, "limit must be greater than 0");
297                         break;
298                 case 'm':
299                         mflag = 0;
300                         break;
301                 case 'M':
302                         Mflag = 1;
303                         break;
304                 case 'N':
305                         Nflag = 1;
306                         break;
307                 case 'o':
308                         oflag = 1;
309                         break;
310 #ifdef USE_QFA
311                 case 'Q':
312                         gTapeposfile = optarg;
313                         tapeposflag = 1;
314                         aflag = 1;
315                         break;
316 #endif
317                 case 's':
318                         /* Dumpnum (skip to) for multifile dump tapes. */
319                         dumpnum = strtol(optarg, &p, 10);
320                         if (*p)
321                                 errx(1, "illegal dump number -- %s", optarg);
322                         if (dumpnum <= 0)
323                                 errx(1, "dump number must be greater than 0");
324                         break;
325                 case 'u':
326                         uflag = 1;
327                         break;
328                 case 'v':
329                         vflag = 1;
330                         break;
331                 case 'V':
332                         Vflag = 1;
333                         break;
334                 case 'X':
335                         if( !strcmp(optarg,"-") ) {
336                                 use_stdin("-X");
337                                 filelist = stdin;
338                         }
339                         else
340                                 if ( !(filelist = fopen(optarg,"r")) )
341                                         errx(1, "can't open file for reading -- %s", optarg);
342                         break;
343                 case 'y':
344                         yflag = 1;
345                         break;
346                 default:
347                         usage();
348                 }
349         argc -= optind;
350         argv += optind;
351
352         if (command == '\0')
353                 errx(1, "none of C, i, R, r, t or x options specified");
354
355 #ifdef USE_QFA
356         if (!mflag && tapeposflag)
357                 errx(1, "m and Q options are mutually exclusive");
358
359         if (tapeposflag && command != 'i' && command != 'x' && command != 't')
360                 errx(1, "Q option is not valid for %c command", command);
361 #endif
362         
363         if (Afile && command != 'i' && command != 'x' && command != 't')
364                 errx(1, "A option is not valid for %c command", command);
365
366 #ifdef TRANSSELINUX                     /*GAN6May06 SELinux MLS */
367         if (transselinuxflag && !strchr("CirRx", command))
368                 errx(1, "%c option is not valid for %c command", transselinuxopt, command);
369 #endif
370
371         if (signal(SIGINT, onintr) == SIG_IGN)
372                 (void) signal(SIGINT, SIG_IGN);
373         if (signal(SIGTERM, onintr) == SIG_IGN)
374                 (void) signal(SIGTERM, SIG_IGN);
375         setlinebuf(stderr);
376
377         atexit(cleanup);
378
379         if (command == 'C' && inputdev[0] != '/' && strcmp(inputdev, "-")
380 #ifdef RRESTORE
381             && !strchr(inputdev, ':')
382 #endif
383           ) {
384                 /* since we chdir into the directory we are comparing
385                  * to, we must retain the full tape path */
386                 char wd[MAXPATHLEN], fullpathinput[MAXPATHLEN];
387                 if (!getcwd(wd, MAXPATHLEN))
388                         err(1, "can't get current directory");
389                 snprintf(fullpathinput, MAXPATHLEN, "%s/%s", wd, inputdev);
390                 fullpathinput[MAXPATHLEN - 1] = '\0';
391                 setinput(fullpathinput);
392         }
393         else
394                 setinput(inputdev);
395
396         wdfd = open(".", O_RDONLY);
397         if (wdfd < 0)
398                 err(1, "can't get current directory");
399
400         if (argc == 0 && !filelist) {
401                 argc = 1;
402                 *--argv = ".";
403         }
404
405 #ifdef USE_QFA
406         if (tapeposflag) {
407                 msg("reading QFA positions from %s\n", gTapeposfile);
408                 if ((gTapeposfp = fopen(gTapeposfile, "r")) == NULL)
409                         errx(1, "can't open file for reading -- %s",
410                                 gTapeposfile);
411                 /* start reading header info */
412                 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
413                         errx(1, "not requested format of -- %s", gTapeposfile);
414                 gTps[strlen(gTps) - 1] = 0;     /* delete end of line */
415                 if (strcmp(gTps, QFA_MAGIC) != 0)
416                         errx(1, "not requested format of -- %s", gTapeposfile);
417                 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
418                         errx(1, "not requested format of -- %s", gTapeposfile);
419                 gTps[strlen(gTps) - 1] = 0;
420                 if (strcmp(gTps, QFA_VERSION) != 0)
421                         errx(1, "not requested format of -- %s", gTapeposfile);
422                 /* read dumpdate */
423                 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
424                         errx(1, "not requested format of -- %s", gTapeposfile);
425                 gTps[strlen(gTps) - 1] = 0;
426                 qfadumpdate = atol(gTps);
427                 /* read empty line */
428                 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
429                         errx(1, "not requested format of -- %s", gTapeposfile);
430                 gTps[strlen(gTps) - 1] = 0;
431                 /* read table header line */
432                 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
433                         errx(1, "not requested format of -- %s", gTapeposfile);
434                 gTps[strlen(gTps) - 1] = 0;
435                 /* end reading header info */
436                 /* tape position table starts here */
437                 gSeekstart = ftell(gTapeposfp); /* remember for later use */
438 #ifdef sunos
439                 if (GetSCSIIDFromPath(inputdev, &scsiid)) {
440                         errx(1, "can't get SCSI-ID for %s\n", inputdev);
441                 }
442                 if (scsiid < 0) {
443                         errx(1, "can't get SCSI-ID for %s\n", inputdev);
444                 }
445                 sprintf(smtcpath, "/dev/rsmtc%ld,0", scsiid);
446                 if ((fdsmtc = open(smtcpath, O_RDWR)) == -1) {
447                         errx(1, "can't open smtc device: %s, %d\n", smtcpath, errno);
448                 }
449 #endif
450         }
451 #endif /* USE_QFA */
452
453         switch (command) {
454         /*
455          * Compare contents of tape.
456          */
457         case 'C': {
458                 struct STAT stbuf;
459
460                 Vprintf(stdout, "Begin compare restore\n");
461                 compare_ignore_not_found = 0;
462                 compare_errors = 0;
463                 Nflag = 1;
464                 aflag = 1;
465                 setup();
466                 printf("filesys = %s\n", filesys);
467                 if (STAT(filesys, &stbuf) < 0)
468                         err(1, "cannot stat directory %s", filesys);
469                 if (chdir(filesys) < 0)
470                         err(1, "cannot cd to %s", filesys);
471                 compare_ignore_not_found = dumptime > 0;
472                 initsymtable((char *)0);
473                 extractdirs(1);
474                 treescan(".", ROOTINO, nodeupdates);
475                 compareleaves();
476                 comparedirmodes();
477                 checkrestore();
478                 if (compare_errors) {
479                         printf("Some files were modified!  %d compare errors\n", compare_errors);
480                         exit(2);
481                 }
482                 break;
483         }
484
485         /*
486          * Interactive mode.
487          */
488         case 'i':
489                 setup();
490                 extractdirs(1);
491                 initsymtable(NULL);
492                 runcmdshell();
493                 break;
494         /*
495          * Incremental restoration of a file system.
496          */
497         case 'r':
498                 aflag = 1;      /* in -r or -R mode, -a is default */
499                 setup();
500                 if (dumptime > 0) {
501                         /*
502                          * This is an incremental dump tape.
503                          */
504                         Vprintf(stdout, "Begin incremental restore\n");
505                         initsymtable(symtbl);
506                         extractdirs(1);
507                         removeoldleaves();
508                         Vprintf(stdout, "Calculate node updates.\n");
509                         treescan(".", ROOTINO, nodeupdates);
510                         findunreflinks();
511                         removeoldnodes();
512                 } else {
513                         /*
514                          * This is a level zero dump tape.
515                          */
516                         Vprintf(stdout, "Begin level 0 restore\n");
517                         initsymtable((char *)0);
518                         extractdirs(1);
519                         Vprintf(stdout, "Calculate extraction list.\n");
520                         treescan(".", ROOTINO, nodeupdates);
521                 }
522                 createleaves(symtbl);
523                 createlinks();
524                 setdirmodes(FORCE);
525                 checkrestore();
526                 if (dflag) {
527                         Vprintf(stdout, "Verify the directory structure\n");
528                         treescan(".", ROOTINO, verifyfile);
529                 }
530                 dumpsymtable(symtbl, (long)1);
531                 break;
532         /*
533          * Resume an incremental file system restoration.
534          */
535         case 'R':
536                 aflag = 1;      /* in -r or -R mode, -a is default */
537                 initsymtable(symtbl);
538                 skipmaps();
539                 skipdirs();
540                 createleaves(symtbl);
541                 createlinks();
542                 setdirmodes(FORCE);
543                 checkrestore();
544                 dumpsymtable(symtbl, (long)1);
545                 break;
546         
547 /* handle file names from either text file (-X) or the command line */
548 #define NEXTFILE(p) \
549         p = NULL; \
550         if (argc) { \
551                 --argc; \
552                 p = *argv++; \
553         } \
554         else if (filelist) { \
555                 if ((p = fgets(fname, MAXPATHLEN, filelist))) { \
556                         if ( *p && *(p + strlen(p) - 1) == '\n' ) /* possible null string */ \
557                                 *(p + strlen(p) - 1) = '\0'; \
558                         if ( !*p ) /* skip empty lines */ \
559                                 continue; \
560                         } \
561         }
562         
563         /*
564          * List contents of tape.
565          */
566         case 't':
567                 setup();
568                 extractdirs(0);
569                 initsymtable((char *)0);
570                 printvolinfo();
571                 for (;;) {
572                         NEXTFILE(p);
573                         if (!p)
574                                 break;
575                         canon(p, name, sizeof(name));
576                         ino = dirlookup(name);
577                         if (ino == 0)
578                                 continue;
579                         treescan(name, ino, listfile);
580                 }
581                 break;
582         /*
583          * Batch extraction of tape contents.
584          */
585         case 'x':
586 #ifdef DEBUG_QFA
587                 tistart = time(NULL);
588 #endif
589                 setup();
590                 extractdirs(1);
591                 initsymtable((char *)0);
592                 for (;;) {
593                         NEXTFILE(p);
594                         if (!p)
595                                 break;
596                         canon(p, name, sizeof(name));
597                         ino = dirlookup(name);
598                         if (ino == 0)
599                                 continue;
600                         if (mflag)
601                                 pathcheck(name);
602                         treescan(name, ino, addfile);
603                 }
604                 createfiles();
605                 createlinks();
606                 setdirmodes(oflag ? FORCE : 0);
607                 if (dflag)
608                         checkrestore();
609 #ifdef sunos
610                 if (fdsmtc != -1) {
611                         close(fdsmtc);
612                 }
613 #endif /* sunos */
614 #ifdef DEBUG_QFA
615                 tiend = time(NULL);
616                 titaken = tiend - tistart;
617                 msg("restore took %d:%02d:%02d\n", titaken / 3600, 
618                         (titaken % 3600) / 60, titaken % 60);
619 #endif /* DEBUG_QFA */
620                 break;
621 #ifdef USE_QFA
622         case 'P':
623 #ifdef DEBUG_QFA
624                 tistart = time(NULL);
625 #endif
626 #ifdef sunos
627                 if (GetSCSIIDFromPath(inputdev, &scsiid)) {
628                         errx(1, "can't get SCSI-ID for %s\n", inputdev);
629                 }
630                 if (scsiid < 0) {
631                         errx(1, "can't get SCSI-ID for %s\n", inputdev);
632                 }
633                 sprintf(smtcpath, "/dev/rsmtc%ld,0", scsiid);
634                 if ((fdsmtc = open(smtcpath, O_RDWR)) == -1) {
635                         errx(1, "can't open smtc device: %s, %d\n", smtcpath, errno);
636                 }
637 #endif /* sunos */
638                 setup();
639                 msg("writing QFA positions to %s\n", gTapeposfile);
640                 (void) umask(orig_umask);
641                 if ((gTapeposfd = open(gTapeposfile, O_WRONLY|O_CREAT|O_TRUNC,
642                                        S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP
643                                        |S_IROTH|S_IWOTH)) < 0)
644                         errx(1, "can't create tapeposfile\n");
645                 (void) umask(FORCED_UMASK);
646                 /* print QFA-file header */
647                 sprintf(gTps, "%s\n%s\n%ld\n\n", QFA_MAGIC, QFA_VERSION, (unsigned long)spcl.c_date);
648                 if (write(gTapeposfd, gTps, strlen(gTps)) != (ssize_t)strlen(gTps))
649                         errx(1, "can't write tapeposfile\n");
650                 sprintf(gTps, "ino\ttapeno\ttapepos\n");
651                 if (write(gTapeposfd, gTps, strlen(gTps)) != (ssize_t)strlen(gTps))
652                         errx(1, "can't write tapeposfile\n");
653
654                 extractdirs(1);
655                 initsymtable((char *)0);
656                 for (;;) {
657                         NEXTFILE(p);
658                         if (!p)
659                                 break;
660                         canon(p, name, sizeof(name));
661                         ino = dirlookup(name);
662                         if (ino == 0)
663                                 continue;
664                         if (mflag)
665                                 pathcheck(name);
666                         treescan(name, ino, addfile);
667                 }
668                 createfiles();
669 #ifdef sunos
670                 if (fdsmtc != -1) {
671                         close(fdsmtc);
672                 }
673 #endif /* sunos */
674 #ifdef DEBUG_QFA
675                 tiend = time(NULL);
676                 titaken = tiend - tistart;
677                 msg("writing QFA positions took %d:%02d:%02d\n", titaken / 3600, 
678                         (titaken % 3600) / 60, titaken % 60);
679 #endif /* DEBUG_QFA */
680                 break;
681 #endif  /* USE_QFA */
682         }
683         exit(0);
684         /* NOTREACHED */
685         return 0;       /* gcc shut up */
686 }
687
688 static void
689 usage(void)
690 {
691         char white[MAXPATHLEN];
692         const char *ext2ver, *ext2date;
693
694         memset(white, ' ', MAXPATHLEN);
695         white[MIN(strlen(__progname), MAXPATHLEN - 1)] = '\0';
696
697 #ifdef __linux__
698         ext2fs_get_library_version(&ext2ver, &ext2date);
699         (void)fprintf(stderr, "%s %s (using libext2fs %s of %s)\n", 
700                       __progname, _DUMP_VERSION, ext2ver, ext2date);
701 #else
702         (void)fprintf(stderr, "%s %s\n", __progname, _DUMP_VERSION);
703 #endif
704
705 #ifdef KERBEROS
706 #define kerbflag "k"
707 #else
708 #define kerbflag
709 #endif
710
711 #ifdef USE_QFA
712 #define qfaflag "[-Q file] "
713 #else
714 #define qfaflag
715 #endif
716
717 #ifdef TRANSSELINUX                     /*GAN6May06 SELinux MLS */
718 # define tseflag "e"
719 # define tsEflag "[-E mls] "
720 #else
721 # define tseflag
722 # define tsEflag
723 #endif
724         fprintf(stderr,
725                 "usage:"
726                 "\t%s -C [-cd" tseflag "H" kerbflag "lMvVy] [-b blocksize] [-D filesystem] " tsEflag"\n"
727                 "\t%s    [-f file] [-F script] [-L limit] [-s fileno]\n"
728                 "\t%s -i [-acd" tseflag "hH" kerbflag "lmMouvVy] [-A file] [-b blocksize] " tsEflag"\n"
729                 "\t%s    [-f file] [-F script] " qfaflag "[-s fileno]\n"
730 #ifdef USE_QFA
731                 "\t%s -P file [-acdhH" kerbflag "lmMuvVy] [-b blocksize]\n"
732                 "\t%s    [-f file] [-F script] [-s fileno] [-X filelist] [file ...]\n"
733 #endif
734                 "\t%s -r [-cd" tseflag "H" kerbflag "lMuvVy] [-b blocksize] " tsEflag"\n"
735                 "\t%s    [-f file] [-F script] [-s fileno] [-T directory]\n"
736                 "\t%s -R [-cd" tseflag "H" kerbflag "lMuvVy] [-b blocksize] " tsEflag"\n"
737                 "\t%s    [-f file] [-F script] [-s fileno] [-T directory]\n"
738                 "\t%s -t [-cdhH" kerbflag "lMuvVy] [-A file] [-b blocksize]\n"
739                 "\t%s    [-f file] [-F script] " qfaflag "[-s fileno] [-X filelist] [file ...]\n"
740                 "\t%s -x [-acd" tseflag "hH" kerbflag "lmMouvVy] [-A file] [-b blocksize] " tsEflag"\n"
741                 "\t%s    [-f file] [-F script] " qfaflag "[-s fileno] [-X filelist] [file ...]\n",
742                 __progname, white, 
743                 __progname, white, 
744 #ifdef USE_QFA
745                 __progname, white, 
746 #endif
747                 __progname, white,
748                 __progname, white, 
749                 __progname, white, 
750                 __progname, white);
751         exit(1);
752 }
753
754 /*
755  * obsolete --
756  *      Change set of key letters and ordered arguments into something
757  *      getopt(3) will like.
758  */
759 static void
760 obsolete(int *argcp, char **argvp[])
761 {
762         int argc, flags;
763         char *ap, **argv, *flagsp = NULL, **nargv, *p = NULL;
764
765         /* Setup. */
766         argv = *argvp;
767         argc = *argcp;
768
769         /* Return if no arguments or first argument has leading dash. */
770         ap = argv[1];
771         if (argc == 1 || *ap == '-')
772                 return;
773
774         /* Allocate space for new arguments. */
775         if ((*argvp = nargv = malloc((argc + 1) * sizeof(char *))) == NULL ||
776             (p = flagsp = malloc(strlen(ap) + 2)) == NULL)
777                 err(1, "malloc args");
778
779         *nargv++ = *argv;
780         argv += 2, argc -= 2;
781
782         for (flags = 0; *ap; ++ap) {
783                 switch (*ap) {
784                 case 'A':
785                 case 'b':
786                 case 'D':
787                 case 'f':
788                 case 'F':
789                 case 'H':
790                 case 'L':
791                 case 'Q':
792                 case 's':
793                 case 'T':
794                 case 'X':
795                         if (*argv == NULL) {
796                                 warnx("option requires an argument -- %c", *ap);
797                                 usage();
798                         }
799                         if ((nargv[0] = malloc(strlen(*argv) + 2 + 1)) == NULL)
800                                 err(1, "malloc arg");
801                         nargv[0][0] = '-';
802                         nargv[0][1] = *ap;
803                         (void)strcpy(&nargv[0][2], *argv);
804                         ++argv;
805                         ++nargv;
806                         break;
807                 default:
808                         if (!flags) {
809                                 *p++ = '-';
810                                 flags = 1;
811                         }
812                         *p++ = *ap;
813                         break;
814                 }
815         }
816
817         /* Terminate flags. */
818         if (flags) {
819                 *p = '\0';
820                 *nargv++ = flagsp;
821         }
822
823         /* Copy remaining arguments. */
824         while ((*nargv++ = *argv++));
825
826         /* Update argument count. */
827         *argcp = nargv - *argvp - 1;
828 }
829
830 /*
831  * use_stdin --
832  *      reserve stdin for opt (avoid conflicts)
833  */
834 void
835 use_stdin(const char *opt)
836 {
837         if (stdin_opt)
838                 errx(1, "can't handle standard input for both %s and %s",
839                         stdin_opt, opt);
840         stdin_opt = opt;
841 }