2007-12-05 19:55:29 +03:00
|
|
|
/* $NetBSD: create.c,v 1.55 2007/12/05 16:55:29 christos Exp $ */
|
1995-03-08 00:12:04 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*-
|
1995-03-07 18:28:32 +03:00
|
|
|
* Copyright (c) 1989, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 15:25:11 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2004-06-21 02:20:14 +04:00
|
|
|
#if HAVE_NBTOOL_CONFIG_H
|
|
|
|
#include "nbtool_config.h"
|
|
|
|
#endif
|
|
|
|
|
1997-10-17 15:46:30 +04:00
|
|
|
#include <sys/cdefs.h>
|
2002-01-31 22:36:47 +03:00
|
|
|
#if defined(__RCSID) && !defined(lint)
|
1995-03-08 00:12:04 +03:00
|
|
|
#if 0
|
1995-03-07 18:28:32 +03:00
|
|
|
static char sccsid[] = "@(#)create.c 8.1 (Berkeley) 6/6/93";
|
1995-03-08 00:12:04 +03:00
|
|
|
#else
|
2007-12-05 19:55:29 +03:00
|
|
|
__RCSID("$NetBSD: create.c,v 1.55 2007/12/05 16:55:29 christos Exp $");
|
1995-03-08 00:12:04 +03:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/stat.h>
|
2001-03-09 06:09:45 +03:00
|
|
|
|
2003-10-27 03:12:41 +03:00
|
|
|
#if ! HAVE_NBTOOL_CONFIG_H
|
1997-10-17 15:46:30 +04:00
|
|
|
#include <dirent.h>
|
2002-01-29 03:07:27 +03:00
|
|
|
#endif
|
|
|
|
|
1997-10-17 15:46:30 +04:00
|
|
|
#include <errno.h>
|
1993-11-02 10:51:06 +03:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <grp.h>
|
|
|
|
#include <pwd.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <stdio.h>
|
2001-11-10 17:58:20 +03:00
|
|
|
#include <stdarg.h>
|
2001-10-22 11:07:46 +04:00
|
|
|
#include <stdlib.h>
|
1997-10-17 15:46:30 +04:00
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
2001-03-09 06:09:45 +03:00
|
|
|
|
2001-11-10 17:58:20 +03:00
|
|
|
#ifndef NO_MD5
|
|
|
|
#include <md5.h>
|
|
|
|
#endif
|
|
|
|
#ifndef NO_RMD160
|
2006-10-30 23:22:53 +03:00
|
|
|
#include <rmd160.h>
|
2001-11-10 17:58:20 +03:00
|
|
|
#endif
|
|
|
|
#ifndef NO_SHA1
|
|
|
|
#include <sha1.h>
|
|
|
|
#endif
|
2005-08-25 00:55:41 +04:00
|
|
|
#ifndef NO_SHA2
|
2006-10-30 23:22:53 +03:00
|
|
|
#include <sha2.h>
|
2005-08-25 00:55:41 +04:00
|
|
|
#endif
|
2001-11-10 17:58:20 +03:00
|
|
|
|
1993-11-02 10:51:06 +03:00
|
|
|
#include "extern.h"
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-11-02 10:51:06 +03:00
|
|
|
#define INDENTNAMELEN 15
|
|
|
|
#define MAXLINELEN 80
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-11-02 10:51:06 +03:00
|
|
|
static gid_t gid;
|
|
|
|
static uid_t uid;
|
|
|
|
static mode_t mode;
|
1998-10-10 11:50:27 +04:00
|
|
|
static u_long flags;
|
1993-11-02 10:51:06 +03:00
|
|
|
|
2007-11-19 11:58:54 +03:00
|
|
|
static int dcmp(const FTSENT **, const FTSENT **);
|
2001-03-09 06:09:45 +03:00
|
|
|
static void output(int *, const char *, ...)
|
2000-10-12 00:23:46 +04:00
|
|
|
__attribute__((__format__(__printf__, 2, 3)));
|
2001-03-09 06:09:45 +03:00
|
|
|
static int statd(FTS *, FTSENT *, uid_t *, gid_t *, mode_t *, u_long *);
|
|
|
|
static void statf(FTSENT *);
|
1993-11-02 10:51:06 +03:00
|
|
|
|
|
|
|
void
|
2001-03-09 06:09:45 +03:00
|
|
|
cwalk(void)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1997-10-17 15:46:30 +04:00
|
|
|
FTS *t;
|
|
|
|
FTSENT *p;
|
2001-10-18 08:37:56 +04:00
|
|
|
time_t clocktime;
|
2001-10-18 09:06:01 +04:00
|
|
|
char host[MAXHOSTNAMELEN + 1];
|
2007-12-05 19:55:29 +03:00
|
|
|
const char *user;
|
2002-11-29 05:07:34 +03:00
|
|
|
char *argv[2];
|
|
|
|
char dot[] = ".";
|
2007-12-05 19:55:29 +03:00
|
|
|
|
2002-11-29 05:07:34 +03:00
|
|
|
argv[0] = dot;
|
|
|
|
argv[1] = NULL;
|
1993-11-02 10:51:06 +03:00
|
|
|
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
time(&clocktime);
|
|
|
|
gethostname(host, sizeof(host));
|
1998-07-06 10:56:06 +04:00
|
|
|
host[sizeof(host) - 1] = '\0';
|
2007-12-05 19:55:29 +03:00
|
|
|
if ((user = getlogin()) == NULL) {
|
|
|
|
struct passwd *pw;
|
|
|
|
user = (pw = getpwuid(getuid())) == NULL ? pw->pw_name :
|
|
|
|
"<unknown>";
|
|
|
|
}
|
|
|
|
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
printf(
|
1993-11-02 10:51:06 +03:00
|
|
|
"#\t user: %s\n#\tmachine: %s\n#\t tree: %s\n#\t date: %s",
|
2007-12-05 19:55:29 +03:00
|
|
|
user, host, fullpath, ctime(&clocktime));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2007-11-19 11:58:54 +03:00
|
|
|
if ((t = fts_open(argv, ftsoptions, dcmp)) == NULL)
|
1998-10-08 06:04:55 +04:00
|
|
|
mtree_err("fts_open: %s", strerror(errno));
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
while ((p = fts_read(t)) != NULL) {
|
|
|
|
if (check_excludes(p->fts_name, p->fts_path)) {
|
|
|
|
fts_set(t, p, FTS_SKIP);
|
|
|
|
continue;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
switch(p->fts_info) {
|
|
|
|
case FTS_D:
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
printf("\n# %s\n", p->fts_path);
|
1998-10-10 11:50:27 +04:00
|
|
|
statd(t, p, &uid, &gid, &mode, &flags);
|
1993-11-02 10:51:06 +03:00
|
|
|
statf(p);
|
1993-03-21 12:45:37 +03:00
|
|
|
break;
|
|
|
|
case FTS_DP:
|
1993-11-02 10:51:06 +03:00
|
|
|
if (p->fts_level > 0)
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
printf("# %s\n..\n\n", p->fts_path);
|
1993-11-02 10:51:06 +03:00
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
case FTS_DNR:
|
|
|
|
case FTS_ERR:
|
|
|
|
case FTS_NS:
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
mtree_err("%s: %s",
|
|
|
|
p->fts_path, strerror(p->fts_errno));
|
1993-11-02 10:51:06 +03:00
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
default:
|
1993-11-02 10:51:06 +03:00
|
|
|
if (!dflag)
|
|
|
|
statf(p);
|
|
|
|
break;
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
}
|
|
|
|
fts_close(t);
|
1993-11-02 10:51:06 +03:00
|
|
|
if (sflag && keys & F_CKSUM)
|
2002-08-08 17:24:12 +04:00
|
|
|
mtree_err("%s checksum: %u", fullpath, crc_total);
|
1993-11-02 10:51:06 +03:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-11-02 10:51:06 +03:00
|
|
|
static void
|
2001-03-09 06:09:45 +03:00
|
|
|
statf(FTSENT *p)
|
1993-11-02 10:51:06 +03:00
|
|
|
{
|
1998-10-08 06:04:55 +04:00
|
|
|
u_int32_t len, val;
|
1993-11-02 10:51:06 +03:00
|
|
|
int fd, indent;
|
2004-12-01 13:07:56 +03:00
|
|
|
const char *name;
|
2005-08-25 00:55:41 +04:00
|
|
|
#if !defined(NO_MD5) || !defined(NO_RMD160) || !defined(NO_SHA1) || !defined(NO_SHA2)
|
2007-02-04 11:03:18 +03:00
|
|
|
char *digestbuf;
|
2001-11-10 17:58:20 +03:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
|
2002-12-23 07:40:19 +03:00
|
|
|
indent = printf("%s%s",
|
2004-12-01 13:07:56 +03:00
|
|
|
S_ISDIR(p->fts_statp->st_mode) ? "" : " ", vispath(p->fts_name));
|
1993-11-02 10:51:06 +03:00
|
|
|
|
|
|
|
if (indent > INDENTNAMELEN)
|
|
|
|
indent = MAXLINELEN;
|
|
|
|
else
|
|
|
|
indent += printf("%*s", INDENTNAMELEN - indent, "");
|
|
|
|
|
|
|
|
if (!S_ISREG(p->fts_statp->st_mode))
|
|
|
|
output(&indent, "type=%s", inotype(p->fts_statp->st_mode));
|
1998-08-27 22:03:42 +04:00
|
|
|
if (keys & (F_UID | F_UNAME) && p->fts_statp->st_uid != uid) {
|
2001-10-01 06:30:40 +04:00
|
|
|
if (keys & F_UNAME &&
|
|
|
|
(name = user_from_uid(p->fts_statp->st_uid, 1)) != NULL)
|
|
|
|
output(&indent, "uname=%s", name);
|
1993-11-02 10:51:06 +03:00
|
|
|
else /* if (keys & F_UID) */
|
|
|
|
output(&indent, "uid=%u", p->fts_statp->st_uid);
|
1998-08-27 22:03:42 +04:00
|
|
|
}
|
|
|
|
if (keys & (F_GID | F_GNAME) && p->fts_statp->st_gid != gid) {
|
2001-10-01 06:30:40 +04:00
|
|
|
if (keys & F_GNAME &&
|
|
|
|
(name = group_from_gid(p->fts_statp->st_gid, 1)) != NULL)
|
|
|
|
output(&indent, "gname=%s", name);
|
1993-11-02 10:51:06 +03:00
|
|
|
else /* if (keys & F_GID) */
|
|
|
|
output(&indent, "gid=%u", p->fts_statp->st_gid);
|
1998-08-27 22:03:42 +04:00
|
|
|
}
|
1993-11-02 10:51:06 +03:00
|
|
|
if (keys & F_MODE && (p->fts_statp->st_mode & MBITS) != mode)
|
|
|
|
output(&indent, "mode=%#o", p->fts_statp->st_mode & MBITS);
|
2001-10-09 08:50:00 +04:00
|
|
|
if (keys & F_DEV &&
|
|
|
|
(S_ISBLK(p->fts_statp->st_mode) || S_ISCHR(p->fts_statp->st_mode)))
|
|
|
|
output(&indent, "device=%#x", p->fts_statp->st_rdev);
|
1993-11-02 10:51:06 +03:00
|
|
|
if (keys & F_NLINK && p->fts_statp->st_nlink != 1)
|
|
|
|
output(&indent, "nlink=%u", p->fts_statp->st_nlink);
|
1996-09-05 13:24:19 +04:00
|
|
|
if (keys & F_SIZE && S_ISREG(p->fts_statp->st_mode))
|
2000-10-15 16:27:25 +04:00
|
|
|
output(&indent, "size=%lld", (long long)p->fts_statp->st_size);
|
1993-11-02 10:51:06 +03:00
|
|
|
if (keys & F_TIME)
|
2007-11-19 11:42:24 +03:00
|
|
|
#if defined(BSD4_4) && !defined(HAVE_NBTOOL_CONFIG_H)
|
1995-03-07 18:28:32 +03:00
|
|
|
output(&indent, "time=%ld.%ld",
|
2000-10-15 16:27:25 +04:00
|
|
|
(long)p->fts_statp->st_mtimespec.tv_sec,
|
1996-02-01 03:04:52 +03:00
|
|
|
p->fts_statp->st_mtimespec.tv_nsec);
|
1998-10-08 06:04:55 +04:00
|
|
|
#else
|
|
|
|
output(&indent, "time=%ld.%ld",
|
2007-10-18 06:28:22 +04:00
|
|
|
(long)p->fts_statp->st_mtime, (long)0);
|
1998-10-08 06:04:55 +04:00
|
|
|
#endif
|
1993-11-02 10:51:06 +03:00
|
|
|
if (keys & F_CKSUM && S_ISREG(p->fts_statp->st_mode)) {
|
|
|
|
if ((fd = open(p->fts_accpath, O_RDONLY, 0)) < 0 ||
|
|
|
|
crc(fd, &val, &len))
|
1998-10-08 06:04:55 +04:00
|
|
|
mtree_err("%s: %s", p->fts_accpath, strerror(errno));
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
close(fd);
|
2000-10-12 00:23:46 +04:00
|
|
|
output(&indent, "cksum=%lu", (long)val);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2001-11-10 17:58:20 +03:00
|
|
|
#ifndef NO_MD5
|
1999-07-06 16:59:12 +04:00
|
|
|
if (keys & F_MD5 && S_ISREG(p->fts_statp->st_mode)) {
|
2007-02-04 11:03:18 +03:00
|
|
|
if ((digestbuf = MD5File(p->fts_accpath, NULL)) == NULL)
|
1999-07-06 16:59:12 +04:00
|
|
|
mtree_err("%s: %s", p->fts_accpath, "MD5File");
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
output(&indent, "md5=%s", digestbuf);
|
2007-02-04 11:03:18 +03:00
|
|
|
free(digestbuf);
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
}
|
2001-11-10 17:58:20 +03:00
|
|
|
#endif /* ! NO_MD5 */
|
|
|
|
#ifndef NO_RMD160
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
if (keys & F_RMD160 && S_ISREG(p->fts_statp->st_mode)) {
|
2007-02-04 11:03:18 +03:00
|
|
|
if ((digestbuf = RMD160File(p->fts_accpath, NULL)) == NULL)
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
mtree_err("%s: %s", p->fts_accpath, "RMD160File");
|
|
|
|
output(&indent, "rmd160=%s", digestbuf);
|
2007-02-04 11:03:18 +03:00
|
|
|
free(digestbuf);
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
}
|
2001-11-10 17:58:20 +03:00
|
|
|
#endif /* ! NO_RMD160 */
|
|
|
|
#ifndef NO_SHA1
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
if (keys & F_SHA1 && S_ISREG(p->fts_statp->st_mode)) {
|
2007-02-04 11:03:18 +03:00
|
|
|
if ((digestbuf = SHA1File(p->fts_accpath, NULL)) == NULL)
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
mtree_err("%s: %s", p->fts_accpath, "SHA1File");
|
|
|
|
output(&indent, "sha1=%s", digestbuf);
|
2007-02-04 11:03:18 +03:00
|
|
|
free(digestbuf);
|
1999-07-06 16:59:12 +04:00
|
|
|
}
|
2001-11-10 17:58:20 +03:00
|
|
|
#endif /* ! NO_SHA1 */
|
2005-08-25 00:55:41 +04:00
|
|
|
#ifndef NO_SHA2
|
|
|
|
if (keys & F_SHA256 && S_ISREG(p->fts_statp->st_mode)) {
|
2007-02-04 11:03:18 +03:00
|
|
|
if ((digestbuf = SHA256_File(p->fts_accpath, NULL)) == NULL)
|
2005-08-25 00:55:41 +04:00
|
|
|
mtree_err("%s: %s", p->fts_accpath, "SHA256_File");
|
|
|
|
output(&indent, "sha256=%s", digestbuf);
|
2007-02-04 11:03:18 +03:00
|
|
|
free(digestbuf);
|
2005-08-25 00:55:41 +04:00
|
|
|
}
|
|
|
|
if (keys & F_SHA384 && S_ISREG(p->fts_statp->st_mode)) {
|
2007-02-04 11:03:18 +03:00
|
|
|
if ((digestbuf = SHA384_File(p->fts_accpath, NULL)) == NULL)
|
2005-08-25 00:55:41 +04:00
|
|
|
mtree_err("%s: %s", p->fts_accpath, "SHA384_File");
|
|
|
|
output(&indent, "sha384=%s", digestbuf);
|
2007-02-04 11:03:18 +03:00
|
|
|
free(digestbuf);
|
2005-08-25 00:55:41 +04:00
|
|
|
}
|
|
|
|
if (keys & F_SHA512 && S_ISREG(p->fts_statp->st_mode)) {
|
2007-02-04 11:03:18 +03:00
|
|
|
if ((digestbuf = SHA512_File(p->fts_accpath, NULL)) == NULL)
|
2005-08-25 00:55:41 +04:00
|
|
|
mtree_err("%s: %s", p->fts_accpath, "SHA512_File");
|
|
|
|
output(&indent, "sha512=%s", digestbuf);
|
2007-02-04 11:03:18 +03:00
|
|
|
free(digestbuf);
|
2005-08-25 00:55:41 +04:00
|
|
|
}
|
|
|
|
#endif /* ! NO_SHA2 */
|
1993-11-02 10:51:06 +03:00
|
|
|
if (keys & F_SLINK &&
|
|
|
|
(p->fts_info == FTS_SL || p->fts_info == FTS_SLNONE))
|
2004-12-01 13:07:56 +03:00
|
|
|
output(&indent, "link=%s", vispath(rlink(p->fts_accpath)));
|
2002-01-29 03:07:27 +03:00
|
|
|
#if HAVE_STRUCT_STAT_ST_FLAGS
|
1998-10-10 11:50:27 +04:00
|
|
|
if (keys & F_FLAGS && p->fts_statp->st_flags != flags)
|
|
|
|
output(&indent, "flags=%s",
|
|
|
|
flags_to_string(p->fts_statp->st_flags, "none"));
|
2002-01-29 03:07:27 +03:00
|
|
|
#endif
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
putchar('\n');
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1999-02-11 18:32:23 +03:00
|
|
|
/* XXX
|
|
|
|
* FLAGS2INDEX will fail once the user and system settable bits need more
|
|
|
|
* than one byte, respectively.
|
|
|
|
*/
|
|
|
|
#define FLAGS2INDEX(x) (((x >> 8) & 0x0000ff00) | (x & 0x000000ff))
|
|
|
|
|
1998-11-03 18:14:40 +03:00
|
|
|
#define MTREE_MAXGID 5000
|
|
|
|
#define MTREE_MAXUID 5000
|
1999-02-11 18:32:23 +03:00
|
|
|
#define MTREE_MAXMODE (MBITS + 1)
|
2002-01-29 03:07:27 +03:00
|
|
|
#if HAVE_STRUCT_STAT_ST_FLAGS
|
1999-02-11 18:32:23 +03:00
|
|
|
#define MTREE_MAXFLAGS (FLAGS2INDEX(CH_MASK) + 1) /* 1808 */
|
2002-01-29 03:07:27 +03:00
|
|
|
#else
|
|
|
|
#define MTREE_MAXFLAGS 1
|
|
|
|
#endif
|
1998-11-03 18:14:40 +03:00
|
|
|
#define MTREE_MAXS 16
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-11-02 10:51:06 +03:00
|
|
|
static int
|
2001-03-09 06:09:45 +03:00
|
|
|
statd(FTS *t, FTSENT *parent, uid_t *puid, gid_t *pgid, mode_t *pmode,
|
|
|
|
u_long *pflags)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1997-10-17 15:46:30 +04:00
|
|
|
FTSENT *p;
|
|
|
|
gid_t sgid;
|
|
|
|
uid_t suid;
|
|
|
|
mode_t smode;
|
2002-01-29 03:07:27 +03:00
|
|
|
u_long sflags = 0;
|
2001-10-01 06:30:40 +04:00
|
|
|
const char *name;
|
1993-03-21 12:45:37 +03:00
|
|
|
gid_t savegid;
|
|
|
|
uid_t saveuid;
|
|
|
|
mode_t savemode;
|
1998-10-10 11:50:27 +04:00
|
|
|
u_long saveflags;
|
|
|
|
u_short maxgid, maxuid, maxmode, maxflags;
|
1998-11-03 18:14:40 +03:00
|
|
|
u_short g[MTREE_MAXGID], u[MTREE_MAXUID],
|
|
|
|
m[MTREE_MAXMODE], f[MTREE_MAXFLAGS];
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
static int first = 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
savegid = *pgid;
|
|
|
|
saveuid = *puid;
|
|
|
|
savemode = *pmode;
|
|
|
|
saveflags = *pflags;
|
1993-11-02 10:51:06 +03:00
|
|
|
if ((p = fts_children(t, 0)) == NULL) {
|
|
|
|
if (errno)
|
1998-10-08 06:04:55 +04:00
|
|
|
mtree_err("%s: %s", RP(parent), strerror(errno));
|
1993-11-02 10:51:06 +03:00
|
|
|
return (1);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1997-10-17 15:46:30 +04:00
|
|
|
memset(g, 0, sizeof(g));
|
|
|
|
memset(u, 0, sizeof(u));
|
|
|
|
memset(m, 0, sizeof(m));
|
1998-10-10 11:50:27 +04:00
|
|
|
memset(f, 0, sizeof(f));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-10-10 11:50:27 +04:00
|
|
|
maxuid = maxgid = maxmode = maxflags = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
for (; p; p = p->fts_link) {
|
1993-11-02 10:51:06 +03:00
|
|
|
smode = p->fts_statp->st_mode & MBITS;
|
1998-11-03 18:14:40 +03:00
|
|
|
if (smode < MTREE_MAXMODE && ++m[smode] > maxmode) {
|
1993-11-02 10:51:06 +03:00
|
|
|
savemode = smode;
|
|
|
|
maxmode = m[smode];
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1993-11-02 10:51:06 +03:00
|
|
|
sgid = p->fts_statp->st_gid;
|
1998-11-03 18:14:40 +03:00
|
|
|
if (sgid < MTREE_MAXGID && ++g[sgid] > maxgid) {
|
1993-11-02 10:51:06 +03:00
|
|
|
savegid = sgid;
|
|
|
|
maxgid = g[sgid];
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1993-11-02 10:51:06 +03:00
|
|
|
suid = p->fts_statp->st_uid;
|
1998-11-03 18:14:40 +03:00
|
|
|
if (suid < MTREE_MAXUID && ++u[suid] > maxuid) {
|
1993-11-02 10:51:06 +03:00
|
|
|
saveuid = suid;
|
|
|
|
maxuid = u[suid];
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1998-10-10 11:50:27 +04:00
|
|
|
|
2002-01-29 03:07:27 +03:00
|
|
|
#if HAVE_STRUCT_STAT_ST_FLAGS
|
1999-02-11 18:32:23 +03:00
|
|
|
sflags = FLAGS2INDEX(p->fts_statp->st_flags);
|
|
|
|
if (sflags < MTREE_MAXFLAGS && ++f[sflags] > maxflags) {
|
|
|
|
saveflags = p->fts_statp->st_flags;
|
|
|
|
maxflags = f[sflags];
|
1998-10-10 11:50:27 +04:00
|
|
|
}
|
2002-01-29 03:07:27 +03:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
/*
|
|
|
|
* If the /set record is the same as the last one we do not need to
|
|
|
|
* output a new one. So first we check to see if anything changed.
|
|
|
|
* Note that we always output a /set record for the first directory.
|
|
|
|
*/
|
|
|
|
if (((keys & (F_UNAME | F_UID)) && (*puid != saveuid)) ||
|
|
|
|
((keys & (F_GNAME | F_GID)) && (*pgid != savegid)) ||
|
|
|
|
((keys & F_MODE) && (*pmode != savemode)) ||
|
|
|
|
((keys & F_FLAGS) && (*pflags != saveflags)) ||
|
|
|
|
first) {
|
|
|
|
first = 0;
|
|
|
|
printf("/set type=file");
|
|
|
|
if (keys & (F_UID | F_UNAME)) {
|
|
|
|
if (keys & F_UNAME &&
|
|
|
|
(name = user_from_uid(saveuid, 1)) != NULL)
|
|
|
|
printf(" uname=%s", name);
|
|
|
|
else /* if (keys & F_UID) */
|
|
|
|
printf(" uid=%lu", (u_long)saveuid);
|
|
|
|
}
|
|
|
|
if (keys & (F_GID | F_GNAME)) {
|
|
|
|
if (keys & F_GNAME &&
|
|
|
|
(name = group_from_gid(savegid, 1)) != NULL)
|
|
|
|
printf(" gname=%s", name);
|
|
|
|
else /* if (keys & F_UID) */
|
|
|
|
printf(" gid=%lu", (u_long)savegid);
|
|
|
|
}
|
|
|
|
if (keys & F_MODE)
|
|
|
|
printf(" mode=%#lo", (u_long)savemode);
|
|
|
|
if (keys & F_NLINK)
|
|
|
|
printf(" nlink=1");
|
|
|
|
if (keys & F_FLAGS)
|
|
|
|
printf(" flags=%s",
|
|
|
|
flags_to_string(saveflags, "none"));
|
|
|
|
printf("\n");
|
|
|
|
*puid = saveuid;
|
|
|
|
*pgid = savegid;
|
|
|
|
*pmode = savemode;
|
|
|
|
*pflags = saveflags;
|
1998-08-27 22:03:42 +04:00
|
|
|
}
|
1993-11-02 10:51:06 +03:00
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1993-11-02 10:51:06 +03:00
|
|
|
static int
|
2007-11-19 11:58:54 +03:00
|
|
|
dcmp(const FTSENT **a, const FTSENT **b)
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
2001-03-09 06:09:45 +03:00
|
|
|
|
1993-11-02 10:51:06 +03:00
|
|
|
if (S_ISDIR((*a)->fts_statp->st_mode)) {
|
|
|
|
if (!S_ISDIR((*b)->fts_statp->st_mode))
|
|
|
|
return (1);
|
|
|
|
} else if (S_ISDIR((*b)->fts_statp->st_mode))
|
|
|
|
return (-1);
|
|
|
|
return (strcmp((*a)->fts_name, (*b)->fts_name));
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1993-11-02 10:51:06 +03:00
|
|
|
void
|
|
|
|
output(int *offset, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
char buf[1024];
|
2001-03-09 06:09:45 +03:00
|
|
|
|
1993-11-02 10:51:06 +03:00
|
|
|
va_start(ap, fmt);
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
vsnprintf(buf, sizeof(buf), fmt, ap);
|
1993-11-02 10:51:06 +03:00
|
|
|
va_end(ap);
|
|
|
|
|
1995-03-07 18:28:32 +03:00
|
|
|
if (*offset + strlen(buf) > MAXLINELEN - 3) {
|
User interface changes from (or inspired by) FreeBSD:
- Add -L to walk the tree `logically', by following symbolic links in
the heirarchy.
- Add -P to walk the tree `physically'. This is the current behaviour,
and the default.
- Add "-X excludes-file" to give mtree the ability to exclude files and
directories from its traversal. excludes-file contains fnmatch(3)
patterns to exclude from the walk.
- Add "md5digest" synonym for "md5".
- Add "rmd160" keyword for RMD-160 message digest, and "rmd160digest" synonym.
- Add "sha1" keyword for SHA-1 message digest, and "sha1digest" synonym.
- Don't try to compare() other attributes if the type doesn't match;
it's nothing but trouble, and no use anyway.
- In -c, only emit "/set" records if something has changed since the
previous one.
User interface changes by me:
- Check a device's parameters before checking uid/gid/mode.
- If updating (-u), modify the following to match the specification:
- Device type (retaining existing ownership).
- Symlink target.
Fixes from (or inspired by) FreeBSD:
- Use p->ftslevel instead of own code to keep track of the level ourself.
The previous code got majorly confused if fts(3) couldn't descend
into a subdir, resulting in leaf nodes getting attached to the wrong
directory.
XXX: This new method is much much more robust, even though it's not 100%
perfect; it might result in a couple of following entries in the spec
to be incorrectly tagged as missing.
- Pass a useful pathname to rlink(), so that logical (-L) traversal
doesn't confuse symlink checking.
- Consistently use MAXPATHLEN+1 sized buffers for pathnames, so that
there's room for the NUL.
- Use mtree_err() and strerror(p->fts_errno) to report errors during
the fts(3) walk.
Fixes by me:
- Remove now-unused `const char *name' argument from compare().
- Change crc_total from an int to a u_int32_t, to match usr.bin/cksum/crc.c.
- Remove trailing whitespace.
- Remove unnecessary (void) casts on functions.
- Reorder entries in the getopt() switch.
- Replace strtoq() with strtoll(), and use strtoul() appropriately.
- Renumber F_ flags to be in alphabetical order.
2001-11-07 11:01:51 +03:00
|
|
|
printf(" \\\n%*s", INDENTNAMELEN, "");
|
1993-11-02 10:51:06 +03:00
|
|
|
*offset = INDENTNAMELEN;
|
|
|
|
}
|
|
|
|
*offset += printf(" %s", buf) + 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|