From: Stelian Pop Date: Fri, 1 Sep 2000 14:26:23 +0000 (+0000) Subject: Fixed the -e option on a directory. X-Git-Tag: release_0_4b20~12 X-Git-Url: https://git.wh0rd.org/?p=dump.git;a=commitdiff_plain;h=1cd75c4cd5a7da33b3a15d6275806096c9781ca7 Fixed the -e option on a directory. --- diff --git a/CHANGES b/CHANGES index d8d7f79..6ca6bb1 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,4 @@ -$Id: CHANGES,v 1.80 2000/08/30 08:55:15 stelian Exp $ +$Id: CHANGES,v 1.81 2000/09/01 14:26:23 stelian Exp $ Changes between versions 0.4b19 and 0.4b20 (released ???????????????) ===================================================================== @@ -16,6 +16,10 @@ Changes between versions 0.4b19 and 0.4b20 (released ???????????????) will preserve the functionality. Thanks to Bernhard Erdmann for reporting the bug. +3. The 'exclude inode' option, if applied to a directory + inode, excludes now correctly all the leaves of this + directory. Thanks to John R. Dennison + for reporting the bug. Changes between versions 0.4b18 and 0.4b19 (released August 20, 2000) ===================================================================== diff --git a/THANKS b/THANKS index 94d27bc..fc1b053 100644 --- a/THANKS +++ b/THANKS @@ -1,4 +1,4 @@ -$Id: THANKS,v 1.36 2000/08/30 08:55:15 stelian Exp $ +$Id: THANKS,v 1.37 2000/09/01 14:26:23 stelian Exp $ Dump and restore were written by the people of the CSRG at the University of California, Berkeley. @@ -29,6 +29,7 @@ Isaac Chuang ike@isl.stanford.edu Rainer Clasen bj@ncc.cicely.de W. Reilly Cooley wcooley@nakedape.cc Abhijit Dasgupta abhijit@ans.net +John R. Dennison gerdesas@users.sourceforge.net Andreas Dilger adilger@home.com Bernhard Erdmann bernhard.erdmann@gmx.de Jason Fearon jasonf@netrider.org.au diff --git a/dump/traverse.c b/dump/traverse.c index ff8e168..90cf97b 100644 --- a/dump/traverse.c +++ b/dump/traverse.c @@ -40,7 +40,7 @@ #ifndef lint static const char rcsid[] = - "$Id: traverse.c,v 1.18 2000/05/28 18:16:42 stelian Exp $"; + "$Id: traverse.c,v 1.19 2000/09/01 14:26:23 stelian Exp $"; #endif /* not lint */ #include @@ -99,6 +99,7 @@ static void dmpindir __P((ino_t ino, daddr_t blk, int level, fsizeT *size)); static int searchdir __P((ino_t ino, daddr_t blkno, long size, long filesize)); #endif static void mapfileino __P((ino_t ino, long *tapesize, int *dirskipped)); +static int exclude_ino __P((ino_t ino)); /* #define EXT3_FEATURE_INCOMPAT_RECOVER */ @@ -179,21 +180,41 @@ blockest(struct dinode *dp) return (blkest + 1); } +extern ino_t iexclude_list[IEXCLUDE_MAXNUM]; /* the inode exclude list */ +extern int iexclude_num; /* number of elements in the list */ + +/* + * This tests whether an inode is in the exclude list + */ +int +exclude_ino(ino_t ino) +{ + /* 04-Feb-00 ILC */ + if (iexclude_num) { /* if there are inodes in the exclude list */ + int idx; /* then check this inode against it */ + for (idx = 0; idx < iexclude_num; idx++) + if (ino == iexclude_list[idx]) + return 1; + } + return 0; +} + /* Auxiliary macro to pick up files changed since previous dump. */ #define CHANGEDSINCE(dp, t) \ ((dp)->di_mtime >= (t) || (dp)->di_ctime >= (t)) -/* The WANTTODUMP macro decides whether a file should be dumped. */ +/* The NODUMP_FLAG macro tests if a file has the nodump flag. */ #ifdef UF_NODUMP -#define WANTTODUMP(dp) \ - (CHANGEDSINCE(dp, spcl.c_ddate) && \ - (nonodump || ((dp)->di_flags & UF_NODUMP) != UF_NODUMP)) +#define NODUMP_FLAG(dp) (!nonodump && (((dp)->di_flags & UF_NODUMP) == UF_NODUMP)) #else -#define WANTTODUMP(dp) CHANGEDSINCE(dp, spcl.c_ddate) +#define NODUMP_FLAG(dp) 0 #endif -extern ino_t iexclude_list[IEXCLUDE_MAXNUM]; /* the inode exclude list */ -extern int iexclude_num; /* number of elements in the list */ +/* The WANTTODUMP macro decides whether a file should be dumped. */ +#define WANTTODUMP(dp, ino) \ + (CHANGEDSINCE(dp, spcl.c_ddate) && \ + (!NODUMP_FLAG(dp)) && \ + (!exclude_ino(ino))) /* * Determine if given inode should be dumped @@ -223,20 +244,9 @@ mapfileino(ino_t ino, long *tapesize, int *dirskipped) */ SETINO(ino, usedinomap); - /* 04-Feb-00 ILC */ - if(iexclude_num) { /* if there are inodes in the exclude list */ - int idx; /* then check this inode against it */ - for (idx=0; idxdi_flags & UF_NODUMP)) + if ( NODUMP_FLAG(dp) || exclude_ino(ino) ) CLRINO(ino, usedinomap); -#endif *dirskipped = 1; } }