]> git.wh0rd.org - dump.git/blobdiff - dump/main.c
64bit and glibc 2.2.2 fixes.
[dump.git] / dump / main.c
index 6bf9a53718a1e40abcb6a081376e654b0b08c332..b2922223de3d51b433602f9f1c30127e8f79903e 100644 (file)
@@ -2,7 +2,8 @@
  *     Ported to Linux's Second Extended File System as part of the
  *     dump and restore backup suit
  *     Remy Card <card@Linux.EU.Org>, 1994-1997
- *     Stelian Pop <pop@cybercable.fr>, 1999-2000
+ *     Stelian Pop <pop@noos.fr>, 1999-2000
+ *     Stelian Pop <pop@noos.fr> - AlcĂ´ve <www.alcove.fr>, 2000
  */
 
 /*-
 
 #ifndef lint
 static const char rcsid[] =
-       "$Id: main.c,v 1.26 2000/09/26 12:34:52 stelian Exp $";
+       "$Id: main.c,v 1.34 2001/02/22 10:57:40 stelian Exp $";
 #endif /* not lint */
 
+#include <config.h>
 #include <sys/param.h>
 #include <sys/time.h>
 #ifdef __linux__
 #include <linux/ext2_fs.h>
+#include <time.h>
 #include <sys/stat.h>
 #include <bsdcompat.h>
 #else
@@ -96,6 +99,9 @@ long  dev_bsize = 1;  /* recalculated below */
 long   blocksperfile;  /* output blocks per file */
 char   *host = NULL;   /* remote host (if any) */
 int    sizest = 0;     /* return size estimate only */
+int    compressed = 0; /* use zlib to compress the output */
+long long bytes_written = 0; /* total bytes written */
+long   uncomprblks = 0;/* uncompressed blocks written */
 
 #ifdef __linux__
 char   *__progname;
@@ -126,9 +132,9 @@ main(int argc, char *argv[])
        char pathname[MAXPATHLEN];
 #endif
        time_t tnow;
-       char labelstr[LBLSIZE];
        char *diskparam;
 
+       spcl.c_label[0] = '\0';
        spcl.c_date = 0;
 #ifdef __linux__
        (void)time4(&spcl.c_date);
@@ -143,11 +149,11 @@ main(int argc, char *argv[])
 #endif
 
        tsize = 0;      /* Default later, based on 'c' option for cart tapes */
+       unlimited = 1;
        eot_script = NULL;
        if ((tapeprefix = getenv("TAPE")) == NULL)
                tapeprefix = _PATH_DEFTAPE;
        dumpdates = _PATH_DUMPDATES;
-       strcpy(labelstr, "none");       /* XXX safe strcpy. */
        if (TP_BSIZE / DEV_BSIZE == 0 || TP_BSIZE % DEV_BSIZE != 0)
                quit("TP_BSIZE must be a multiple of DEV_BSIZE\n");
        level = '0';
@@ -157,10 +163,18 @@ main(int argc, char *argv[])
 
        obsolete(&argc, &argv);
 #ifdef KERBEROS
+#ifdef HAVE_ZLIB
+#define optstring "0123456789aB:b:cd:e:f:F:h:kL:Mns:ST:uWwz"
+#else
 #define optstring "0123456789aB:b:cd:e:f:F:h:kL:Mns:ST:uWw"
+#endif /* HAVE_ZLIB */
+#else
+#ifdef HAVE_ZLIB
+#define optstring "0123456789aB:b:cd:e:f:F:h:L:Mns:ST:uWwz"
 #else
 #define optstring "0123456789aB:b:cd:e:f:F:h:L:Mns:ST:uWw"
-#endif
+#endif /* HAVE_ZLIB */
+#endif /* KERBEROS */
        while ((ch = getopt(argc, argv, optstring)) != -1)
 #undef optstring
                switch (ch) {
@@ -175,6 +189,7 @@ main(int argc, char *argv[])
                        break;
 
                case 'B':               /* blocks per output file */
+                       unlimited = 0;
                        blocksperfile = numarg("number of blocks per file",
                            1L, 0L);
                        break;
@@ -191,10 +206,12 @@ main(int argc, char *argv[])
                        break;
 
                case 'c':               /* Tape is cart. not 9-track */
+                       unlimited = 0;
                        cartridge = 1;
                        break;
 
                case 'd':               /* density, in bits per inch */
+                       unlimited = 0;
                        density = numarg("density", 10L, 327670L) / 10;
                        if (density >= 625 && !bflag)
                                ntrec = HIGHDENSITYTREC;
@@ -208,7 +225,7 @@ main(int argc, char *argv[])
                        }
                        iexclude_list[iexclude_num++] = numarg("inode to exclude",0L,0L);
                        if (iexclude_list[iexclude_num-1] <= ROOTINO) {
-                               (void)fprintf(stderr, "Cannot exclude inode %ld\n", iexclude_list[iexclude_num-1]);
+                               (void)fprintf(stderr, "Cannot exclude inode %ld\n", (long)iexclude_list[iexclude_num-1]);
                                exit(X_STARTUP);
                        }
                        msg("Added %d to exclude list\n",
@@ -239,14 +256,14 @@ main(int argc, char *argv[])
                         * the last must be '\0', so the limit on strlen()
                         * is really LBLSIZE-1.
                         */
-                       strncpy(labelstr, optarg, LBLSIZE);
-                       labelstr[LBLSIZE-1] = '\0';
+                       strncpy(spcl.c_label, optarg, LBLSIZE);
+                       spcl.c_label[LBLSIZE-1] = '\0';
                        if (strlen(optarg) > LBLSIZE-1) {
                                msg(
                "WARNING Label `%s' is larger than limit of %d characters.\n",
                                    optarg, LBLSIZE-1);
                                msg("WARNING: Using truncated label `%s'.\n",
-                                   labelstr);
+                                   spcl.c_label);
                        }
                        break;
 
@@ -259,6 +276,7 @@ main(int argc, char *argv[])
                        break;
 
                case 's':               /* tape size, feet */
+                       unlimited = 0;
                        tsize = numarg("tape size", 1L, 0L) * 12 * 10;
                        break;
 
@@ -285,6 +303,11 @@ main(int argc, char *argv[])
                case 'w':
                        lastdump(ch);
                        exit(X_FINOK);  /* do nothing else */
+#ifdef HAVE_ZLIB
+               case 'z':
+                       compressed = 1;
+                       break;
+#endif /* HAVE_ZLIB */
 
                default:
                        usage();
@@ -385,7 +408,7 @@ main(int argc, char *argv[])
         *      fstabsearch.
         */
        if (strlen(disk) > 1 && disk[strlen(disk) - 1] == '/')
-         disk[strlen(disk) - 1] = '\0';
+               disk[strlen(disk) - 1] = '\0';
        /*
         *      disk can be either the full special file name,
         *      the suffix of the special file name,
@@ -396,8 +419,8 @@ main(int argc, char *argv[])
                disk = rawname(dt->fs_spec);
                (void)strncpy(spcl.c_dev, dt->fs_spec, NAMELEN);
                (void)strncpy(spcl.c_filesys, dt->fs_file, NAMELEN);
-#ifdef __linux__
        } else {
+#ifdef __linux__
 #ifdef HAVE_REALPATH
                if (realpath(disk, pathname) == NULL)
 #endif
@@ -429,14 +452,12 @@ main(int argc, char *argv[])
                                    NAMELEN);
                        }
                }
-       }
 #else
-       } else {
                (void)strncpy(spcl.c_dev, disk, NAMELEN);
                (void)strncpy(spcl.c_filesys, "an unlisted file system",
                    NAMELEN);
-       }
 #endif
+       }
 
        if (directory[0] != 0) {
                if (level != '0') {
@@ -448,10 +469,10 @@ main(int argc, char *argv[])
                        exit(X_STARTUP);
                }
        }
-       spcl.c_dev[NAMELEN-1]='\0';
-       spcl.c_filesys[NAMELEN-1]='\0';
-       (void)strncpy(spcl.c_label, labelstr, sizeof(spcl.c_label) - 1);
+       spcl.c_dev[NAMELEN-1] = '\0';
+       spcl.c_filesys[NAMELEN-1] = '\0';
        (void)gethostname(spcl.c_host, NAMELEN);
+       spcl.c_host[NAMELEN-1] = '\0';
        spcl.c_level = level - '0';
        spcl.c_type = TS_TAPE;
        if (!Tflag)
@@ -489,8 +510,6 @@ main(int argc, char *argv[])
                        msgtail("to %s on host %s\n", tape, host);
                else
                        msgtail("to %s\n", tape);
-               msg("Label: %s\n", labelstr);
-
        } /* end of size estimate */
 
 #ifdef __linux__
@@ -510,6 +529,16 @@ main(int argc, char *argv[])
                msg("Cannot open %s\n", disk);
                exit(X_STARTUP);
        }
+       /* if no user label specified, use ext2 filesystem label if available */
+       if (spcl.c_label[0] == '\0') {
+               const char *lbl;
+               if ( (lbl = get_device_label(disk)) != NULL) {
+                       strncpy(spcl.c_label, lbl, LBLSIZE);
+                       spcl.c_label[LBLSIZE-1] = '\0';
+               }
+               else
+                       strcpy(spcl.c_label, "none");   /* safe strcpy. */
+       }
        sync();
        dev_bsize = DEV_BSIZE;
        dev_bshift = ffs(dev_bsize) - 1;
@@ -549,10 +578,14 @@ main(int argc, char *argv[])
        usedinomap = (char *)calloc((unsigned) mapsize, sizeof(char));
        dumpdirmap = (char *)calloc((unsigned) mapsize, sizeof(char));
        dumpinomap = (char *)calloc((unsigned) mapsize, sizeof(char));
+       if (usedinomap == NULL || dumpdirmap == NULL || dumpinomap == NULL)
+               quit("out of memory allocating inode maps\n");
        tapesize = 2 * (howmany(mapsize * sizeof(char), TP_BSIZE) + 1);
 
        nonodump = spcl.c_level < honorlevel;
 
+       msg("Label: %s\n", spcl.c_label);
+
 #if defined(SIGINFO)
        (void)signal(SIGINFO, statussig);
 #endif
@@ -729,6 +762,13 @@ main(int argc, char *argv[])
        msg("Date this dump completed:  %s", ctime(&tnow));
 
        msg("Average transfer rate: %ld KB/s\n", xferrate / tapeno);
+       if (compressed) {
+               long tapekb = bytes_written / 1024;
+               double rate = .0005 + (double) spcl.c_tapea / tapekb;
+               msg("Wrote %ldKB uncompressed, %ldKB compressed,"
+                       " compression ratio %1.3f\n",
+                       spcl.c_tapea, tapekb, rate);
+       }
 
        broadcast("DUMP IS DONE!\7\7\n");
        msg("DUMP IS DONE\n");
@@ -755,7 +795,11 @@ usage(void)
 #ifdef KERBEROS
                "k"
 #endif
-               "MnSu] [-B records] [-b blocksize] [-d density]\n"
+               "MnSu"
+#ifdef HAVE_ZLIB
+               "z"
+#endif
+               "] [-B records] [-b blocksize] [-d density]\n"
                "\t%s [-e inode#] [-f file] [-h level] [-s feet] [-T date] filesystem\n"
                "\t%s [-W | -w]\n", __progname, white, __progname);
        exit(X_STARTUP);