NetBSD/usr.sbin/mtree/compare.c

415 lines
12 KiB
C
Raw Normal View History

/* $NetBSD: compare.c,v 1.23 2001/01/05 03:27:27 lukem 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* 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.
*/
1997-10-17 15:46:30 +04:00
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
1995-03-08 00:12:04 +03:00
#if 0
1995-03-07 18:28:32 +03:00
static char sccsid[] = "@(#)compare.c 8.1 (Berkeley) 6/6/93";
1995-03-08 00:12:04 +03:00
#else
__RCSID("$NetBSD: compare.c,v 1.23 2001/01/05 03:27:27 lukem 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>
#include <sys/types.h>
#include <fcntl.h>
1993-03-21 12:45:37 +03:00
#include <fts.h>
#include <errno.h>
#include <md5.h>
1993-03-21 12:45:37 +03:00
#include <stdio.h>
#include <time.h>
#include <unistd.h>
1993-03-21 12:45:37 +03:00
#include "mtree.h"
#include "extern.h"
1993-03-21 12:45:37 +03:00
extern int iflag, mflag, tflag, uflag;
static char *ftype __P((u_int));
#define INDENTNAMELEN 8
#define MARK \
do { \
len = printf("%s: ", RP(p)); \
if (len > INDENTNAMELEN) { \
tab = "\t"; \
(void)printf("\n"); \
} else { \
tab = ""; \
(void)printf("%*s", INDENTNAMELEN - (int)len, ""); \
} \
} while (0)
#define LABEL if (!label++) MARK
#define CHANGEFLAGS(path, oflags) \
if (flags != (oflags)) { \
if (!label) { \
MARK; \
(void)printf("%sflags (\"%s\"", tab, \
flags_to_string(p->fts_statp->st_flags, "none")); \
} \
if (chflags(path, flags)) { \
label++; \
(void)printf(", not modified: %s)\n", \
strerror(errno)); \
} else \
(void)printf(", modified to \"%s\")\n", \
flags_to_string(flags, "none")); \
}
1993-03-21 12:45:37 +03:00
/* SETFLAGS:
* given pflags, additionally set those flags specified in sflags and
* selected by mask (the other flags are left unchanged). oflags is
* passed as reference to check if chflags is necessary.
*/
#define SETFLAGS(path, sflags, pflags, oflags, mask) \
do { \
flags = ((sflags) & (mask)) | (pflags); \
CHANGEFLAGS(path, oflags); \
} while (0)
/* CLEARFLAGS:
* given pflags, reset the flags specified in sflags and selected by mask
* (the other flags are left unchanged). oflags is
* passed as reference to check if chflags is necessary.
*/
#define CLEARFLAGS(path, sflags, pflags, oflags, mask) \
do { \
flags = (~((sflags) & (mask)) & CH_MASK) & (pflags); \
CHANGEFLAGS(path, oflags); \
} while (0)
int
1993-03-21 12:45:37 +03:00
compare(name, s, p)
char *name;
1997-10-17 15:46:30 +04:00
NODE *s;
FTSENT *p;
1993-03-21 12:45:37 +03:00
{
u_int32_t len, val, flags;
int fd, label;
char *cp, *tab;
char md5buf[35];
1993-03-21 12:45:37 +03:00
1997-10-17 15:46:30 +04:00
tab = NULL;
1993-03-21 12:45:37 +03:00
label = 0;
switch(s->type) {
case F_BLOCK:
1993-08-06 07:48:27 +04:00
if (!S_ISBLK(p->fts_statp->st_mode))
1993-03-21 12:45:37 +03:00
goto typeerr;
break;
case F_CHAR:
1993-08-06 07:48:27 +04:00
if (!S_ISCHR(p->fts_statp->st_mode))
1993-03-21 12:45:37 +03:00
goto typeerr;
break;
case F_DIR:
1993-08-06 07:48:27 +04:00
if (!S_ISDIR(p->fts_statp->st_mode))
1993-03-21 12:45:37 +03:00
goto typeerr;
break;
case F_FIFO:
1993-08-06 07:48:27 +04:00
if (!S_ISFIFO(p->fts_statp->st_mode))
1993-03-21 12:45:37 +03:00
goto typeerr;
break;
case F_FILE:
1993-08-06 07:48:27 +04:00
if (!S_ISREG(p->fts_statp->st_mode))
1993-03-21 12:45:37 +03:00
goto typeerr;
break;
case F_LINK:
1993-08-06 07:48:27 +04:00
if (!S_ISLNK(p->fts_statp->st_mode))
1993-03-21 12:45:37 +03:00
goto typeerr;
break;
case F_SOCK:
if (!S_ISSOCK(p->fts_statp->st_mode)) {
1993-03-21 12:45:37 +03:00
typeerr: LABEL;
(void)printf("\ttype (%s, %s)\n",
1993-08-06 07:48:27 +04:00
ftype(s->type), inotype(p->fts_statp->st_mode));
1993-03-21 12:45:37 +03:00
}
break;
}
if (iflag && !uflag) {
if (s->flags & F_FLAGS)
SETFLAGS(p->fts_accpath, s->st_flags,
p->fts_statp->st_flags, p->fts_statp->st_flags,
SP_FLGS);
return (label);
}
if (mflag && !uflag) {
if (s->flags & F_FLAGS)
CLEARFLAGS(p->fts_accpath, s->st_flags,
p->fts_statp->st_flags, p->fts_statp->st_flags,
SP_FLGS);
return (label);
}
/* Set the uid/gid first, then set the mode. */
if (s->flags & (F_UID | F_UNAME) && s->st_uid != p->fts_statp->st_uid) {
1993-03-21 12:45:37 +03:00
LABEL;
(void)printf("%suser (%lu, %lu",
tab, (u_long)s->st_uid, (u_long)p->fts_statp->st_uid);
if (uflag) {
if (chown(p->fts_accpath, s->st_uid, -1))
(void)printf(", not modified: %s)\n",
1993-03-21 12:45:37 +03:00
strerror(errno));
else
(void)printf(", modified)\n");
} else
(void)printf(")\n");
tab = "\t";
1993-03-21 12:45:37 +03:00
}
if (s->flags & (F_GID | F_GNAME) && s->st_gid != p->fts_statp->st_gid) {
1993-03-21 12:45:37 +03:00
LABEL;
(void)printf("%sgid (%lu, %lu",
tab, (u_long)s->st_gid, (u_long)p->fts_statp->st_gid);
if (uflag) {
if (chown(p->fts_accpath, -1, s->st_gid))
1993-11-17 14:00:52 +03:00
(void)printf(", not modified: %s)\n",
1993-03-21 12:45:37 +03:00
strerror(errno));
else
1993-11-17 14:00:52 +03:00
(void)printf(", modified)\n");
}
else
(void)printf(")\n");
tab = "\t";
1993-03-21 12:45:37 +03:00
}
if (s->flags & F_MODE &&
s->st_mode != (p->fts_statp->st_mode & MBITS)) {
1993-03-21 12:45:37 +03:00
LABEL;
(void)printf("%spermissions (%#lo, %#lo",
tab, (u_long)s->st_mode,
(u_long)p->fts_statp->st_mode & MBITS);
if (uflag) {
if (chmod(p->fts_accpath, s->st_mode))
1993-11-17 14:00:52 +03:00
(void)printf(", not modified: %s)\n",
1993-03-21 12:45:37 +03:00
strerror(errno));
else
1993-11-17 14:00:52 +03:00
(void)printf(", modified)\n");
}
else
(void)printf(")\n");
tab = "\t";
1993-03-21 12:45:37 +03:00
}
if (s->flags & F_NLINK && s->type != F_DIR &&
1993-08-06 07:48:27 +04:00
s->st_nlink != p->fts_statp->st_nlink) {
1993-03-21 12:45:37 +03:00
LABEL;
(void)printf("%slink count (%lu, %lu)\n",
tab, (u_long)s->st_nlink, (u_long)p->fts_statp->st_nlink);
tab = "\t";
1993-03-21 12:45:37 +03:00
}
1993-08-06 07:48:27 +04:00
if (s->flags & F_SIZE && s->st_size != p->fts_statp->st_size) {
1993-03-21 12:45:37 +03:00
LABEL;
(void)printf("%ssize (%lld, %lld)\n",
tab, (long long)s->st_size,
(long long)p->fts_statp->st_size);
tab = "\t";
1993-03-21 12:45:37 +03:00
}
1995-03-07 18:28:32 +03:00
/*
* XXX
* Since utimes(2) only takes a timeval, there's no point in
* comparing the low bits of the timespec nanosecond field. This
* will only result in mismatches that we can never fix.
*
* Doesn't display microsecond differences.
1995-03-07 18:28:32 +03:00
*/
if (s->flags & F_TIME) {
struct timeval tv[2];
struct stat *ps = p->fts_statp;
time_t smtime = s->st_mtimespec.tv_sec;
1999-07-10 23:59:28 +04:00
#ifdef BSD4_4
time_t pmtime = ps->st_mtimespec.tv_sec;
TIMESPEC_TO_TIMEVAL(&tv[1], &ps->st_mtimespec);
#else
1999-07-10 23:59:28 +04:00
time_t pmtime = (time_t)ps->st_mtime;
tv[1].tv_sec = ps->st_mtime;
tv[1].tv_usec = 0;
#endif
1999-07-10 23:59:28 +04:00
TIMESPEC_TO_TIMEVAL(&tv[0], &s->st_mtimespec);
if (tv[0].tv_sec != tv[1].tv_sec ||
tv[0].tv_usec != tv[1].tv_usec) {
LABEL;
(void)printf("%smodification time (%.24s, ",
tab, ctime(&smtime));
(void)printf("%.24s", ctime(&pmtime));
if (tflag) {
tv[1] = tv[0];
if (utimes(p->fts_accpath, tv))
(void)printf(", not modified: %s)\n",
strerror(errno));
else
(void)printf(", modified)\n");
} else
(void)printf(")\n");
tab = "\t";
}
1993-03-21 12:45:37 +03:00
}
/*
* XXX
* since chflags(2) will reset file times, the utimes() above
* may have been useless! oh well, we'd rather have correct
* flags, rather than times?
*/
if ((s->flags & F_FLAGS) && ((s->st_flags != p->fts_statp->st_flags)
|| mflag || iflag)) {
if (s->st_flags != p->fts_statp->st_flags) {
LABEL;
(void)printf("%sflags (\"%s\" is not ", tab,
flags_to_string(s->st_flags, "none"));
(void)printf("\"%s\"",
flags_to_string(p->fts_statp->st_flags, "none"));
}
if (uflag) {
if (iflag)
SETFLAGS(p->fts_accpath, s->st_flags,
0, p->fts_statp->st_flags, CH_MASK);
else if (mflag)
CLEARFLAGS(p->fts_accpath, s->st_flags,
0, p->fts_statp->st_flags, SP_FLGS);
else
SETFLAGS(p->fts_accpath, s->st_flags,
0, p->fts_statp->st_flags,
(~SP_FLGS & CH_MASK));
} else
(void)printf(")\n");
tab = "\t";
}
1998-08-27 22:03:42 +04:00
if (s->flags & F_CKSUM) {
if ((fd = open(p->fts_accpath, O_RDONLY, 0)) < 0) {
LABEL;
(void)printf("%scksum: %s: %s\n",
tab, p->fts_accpath, strerror(errno));
tab = "\t";
} else if (crc(fd, &val, &len)) {
(void)close(fd);
LABEL;
(void)printf("%scksum: %s: %s\n",
tab, p->fts_accpath, strerror(errno));
tab = "\t";
} else {
(void)close(fd);
if (s->cksum != val) {
LABEL;
(void)printf("%scksum (%lu, %lu)\n",
tab, s->cksum, (unsigned long)val);
}
tab = "\t";
}
1998-08-27 22:03:42 +04:00
}
if (s->flags & F_MD5) {
if (MD5File(p->fts_accpath, md5buf) == NULL) {
LABEL;
(void)printf("%smd5: %s: %s\n",
tab, p->fts_accpath, strerror(errno));
tab = "\t";
} else {
if (strcmp(s->md5sum, md5buf)) {
LABEL;
(void)printf("%smd5 (0x%s, 0x%s)\n",
tab, s->md5sum, md5buf);
}
tab = "\t";
}
}
if (s->flags & F_SLINK && strcmp(cp = rlink(name), s->slink)) {
LABEL;
(void)printf("%slink ref (%s, %s)\n", tab, cp, s->slink);
1993-03-21 12:45:37 +03:00
}
return (label);
1993-03-21 12:45:37 +03:00
}
char *
inotype(type)
u_int type;
1993-03-21 12:45:37 +03:00
{
switch(type & S_IFMT) {
case S_IFBLK:
return ("block");
1993-03-21 12:45:37 +03:00
case S_IFCHR:
return ("char");
1993-03-21 12:45:37 +03:00
case S_IFDIR:
return ("dir");
case S_IFIFO:
return ("fifo");
1993-03-21 12:45:37 +03:00
case S_IFREG:
return ("file");
1993-03-21 12:45:37 +03:00
case S_IFLNK:
return ("link");
1993-03-21 12:45:37 +03:00
case S_IFSOCK:
return ("socket");
1993-03-21 12:45:37 +03:00
default:
return ("unknown");
1993-03-21 12:45:37 +03:00
}
/* NOTREACHED */
}
static char *
1993-03-21 12:45:37 +03:00
ftype(type)
u_int type;
{
switch(type) {
case F_BLOCK:
return ("block");
1993-03-21 12:45:37 +03:00
case F_CHAR:
return ("char");
1993-03-21 12:45:37 +03:00
case F_DIR:
return ("dir");
1993-03-21 12:45:37 +03:00
case F_FIFO:
return ("fifo");
1993-03-21 12:45:37 +03:00
case F_FILE:
return ("file");
1993-03-21 12:45:37 +03:00
case F_LINK:
return ("link");
1993-03-21 12:45:37 +03:00
case F_SOCK:
return ("socket");
1993-03-21 12:45:37 +03:00
default:
return ("unknown");
1993-03-21 12:45:37 +03:00
}
/* NOTREACHED */
}
char *
rlink(name)
char *name;
{
static char lbuf[MAXPATHLEN];
1997-10-17 15:46:30 +04:00
int len;
1993-03-21 12:45:37 +03:00
if ((len = readlink(name, lbuf, sizeof(lbuf))) == -1)
mtree_err("%s: %s", name, strerror(errno));
1993-03-21 12:45:37 +03:00
lbuf[len] = '\0';
return (lbuf);
1993-03-21 12:45:37 +03:00
}