NetBSD/usr.sbin/mtree/verify.c

212 lines
5.5 KiB
C
Raw Normal View History

1998-08-27 22:03:42 +04:00
/* $NetBSD: verify.c,v 1.14 1998/08/27 18:03:45 ross 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) 1990, 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[] = "@(#)verify.c 8.1 (Berkeley) 6/6/93";
1995-03-08 00:12:04 +03:00
#else
1998-08-27 22:03:42 +04:00
__RCSID("$NetBSD: verify.c,v 1.14 1998/08/27 18:03:45 ross 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 <dirent.h>
#include <fts.h>
1993-11-02 11:44:00 +03:00
#include <fnmatch.h>
1995-03-07 18:28:32 +03:00
#include <unistd.h>
1993-03-21 12:45:37 +03:00
#include <errno.h>
#include <stdio.h>
#include "mtree.h"
#include "extern.h"
1993-03-21 12:45:37 +03:00
extern int crc_total, ftsoptions;
extern int dflag, eflag, rflag, sflag, uflag;
extern char fullpath[MAXPATHLEN];
1993-03-21 12:45:37 +03:00
static NODE *root;
1993-03-21 12:45:37 +03:00
static char path[MAXPATHLEN];
static void miss __P((NODE *, char *));
static int vwalk __P((void));
int
1993-03-21 12:45:37 +03:00
verify()
{
int rval;
root = spec();
rval = vwalk();
1993-03-21 12:45:37 +03:00
miss(root, path);
return (rval);
1993-03-21 12:45:37 +03:00
}
static int
1993-03-21 12:45:37 +03:00
vwalk()
{
1997-10-17 15:46:30 +04:00
FTS *t;
FTSENT *p;
NODE *ep, *level;
int ftsdepth, specdepth, rval;
1993-03-21 12:45:37 +03:00
char *argv[2];
argv[0] = ".";
argv[1] = NULL;
if ((t = fts_open(argv, ftsoptions, NULL)) == NULL)
err("fts_open: %s", strerror(errno));
1993-03-21 12:45:37 +03:00
level = root;
ftsdepth = specdepth = rval = 0;
while ((p = fts_read(t)) != NULL) {
1993-03-21 12:45:37 +03:00
switch(p->fts_info) {
case FTS_D:
++ftsdepth;
1993-03-21 12:45:37 +03:00
break;
case FTS_DP:
--ftsdepth;
1993-03-21 12:45:37 +03:00
if (specdepth > ftsdepth) {
for (level = level->parent; level->prev;
level = level->prev);
--specdepth;
1993-03-21 12:45:37 +03:00
}
continue;
case FTS_DNR:
case FTS_ERR:
case FTS_NS:
(void)fprintf(stderr, "mtree: %s: %s\n",
RP(p), strerror(errno));
1993-03-21 12:45:37 +03:00
continue;
default:
if (dflag)
continue;
}
for (ep = level; ep; ep = ep->next)
if ((ep->flags & F_MAGIC &&
!fnmatch(ep->name, p->fts_name, FNM_PATHNAME)) ||
1993-03-21 12:45:37 +03:00
!strcmp(ep->name, p->fts_name)) {
ep->flags |= F_VISIT;
if (compare(ep->name, ep, p))
rval = MISMATCHEXIT;
if (!(ep->flags & F_IGN) &&
ep->child && ep->type == F_DIR &&
1993-03-21 12:45:37 +03:00
p->fts_info == FTS_D) {
level = ep->child;
++specdepth;
} else
(void)fts_set(t, p, FTS_SKIP);
1993-03-21 12:45:37 +03:00
break;
}
if (ep)
continue;
if (!eflag) {
(void)printf("extra: %s", RP(p));
if (rflag) {
if (unlink(p->fts_accpath)) {
(void)printf(", not removed: %s",
strerror(errno));
} else
(void)printf(", removed");
}
(void)putchar('\n');
}
(void)fts_set(t, p, FTS_SKIP);
}
(void)fts_close(t);
if (sflag)
(void)fprintf(stderr,
"mtree: %s checksum: %u\n", fullpath, crc_total);
return (rval);
1993-03-21 12:45:37 +03:00
}
static void
1993-03-21 12:45:37 +03:00
miss(p, tail)
1997-10-17 15:46:30 +04:00
NODE *p;
char *tail;
1993-03-21 12:45:37 +03:00
{
1997-10-17 15:46:30 +04:00
int create;
char *tp;
1993-03-21 12:45:37 +03:00
for (; p; p = p->next) {
if (p->flags & F_OPT && !(p->flags & F_VISIT))
continue;
1993-03-21 12:45:37 +03:00
if (p->type != F_DIR && (dflag || p->flags & F_VISIT))
continue;
(void)strcpy(tail, p->name);
if (!(p->flags & F_VISIT))
(void)printf("missing: %s", path);
if (p->type != F_DIR) {
putchar('\n');
continue;
}
create = 0;
1998-08-27 22:03:42 +04:00
if (!(p->flags & F_VISIT) && uflag) {
if (!(p->flags & (F_UID | F_UNAME)))
(void)printf(" (not created: user not specified)");
else if (!(p->flags & (F_GID | F_GNAME)))
(void)printf(" (not created: group not specified)");
else if (!(p->flags & F_MODE))
(void)printf(" (not created: mode not specified)");
1993-03-21 12:45:37 +03:00
else if (mkdir(path, S_IRWXU))
(void)printf(" (not created: %s)",
strerror(errno));
else {
create = 1;
(void)printf(" (created)");
}
1998-08-27 22:03:42 +04:00
}
1993-03-21 12:45:37 +03:00
if (!(p->flags & F_VISIT))
(void)putchar('\n');
for (tp = tail; *tp; ++tp);
*tp = '/';
miss(p->child, tp + 1);
*tp = '\0';
if (!create)
continue;
if (chown(path, p->st_uid, p->st_gid)) {
(void)printf("%s: user/group/mode not modified: %s\n",
1993-03-21 12:45:37 +03:00
path, strerror(errno));
continue;
}
if (chmod(path, p->st_mode))
(void)printf("%s: permissions not set: %s\n",
path, strerror(errno));
}
}