NetBSD/usr.sbin/mtree/spec.c

338 lines
8.8 KiB
C
Raw Normal View History

/* $NetBSD: spec.c,v 1.27 2001/10/04 05:03:42 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
1997-10-17 09:24:29 +04:00
static char sccsid[] = "@(#)spec.c 8.2 (Berkeley) 4/28/95";
1995-03-08 00:12:04 +03:00
#else
__RCSID("$NetBSD: spec.c,v 1.27 2001/10/04 05:03:42 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>
1997-10-17 15:46:30 +04:00
#include <ctype.h>
#include <errno.h>
#include <fts.h>
1993-03-21 12:45:37 +03:00
#include <grp.h>
1997-10-17 15:46:30 +04:00
#include <pwd.h>
#include <stdio.h>
1997-10-17 15:46:30 +04:00
#include <string.h>
#include <unistd.h>
#include <util.h>
#include <vis.h>
1997-10-17 15:46:30 +04:00
1993-03-21 12:45:37 +03:00
#include "mtree.h"
#include "extern.h"
1993-03-21 12:45:37 +03:00
size_t lineno; /* Current spec line number. */
1993-03-21 12:45:37 +03:00
static void set(char *, NODE *);
static void unset(char *, NODE *);
1993-03-21 12:45:37 +03:00
NODE *
spec(void)
1993-03-21 12:45:37 +03:00
{
1997-10-17 15:46:30 +04:00
NODE *centry, *last;
char *p;
NODE ginfo, *root;
char *buf;
1993-03-21 12:45:37 +03:00
root = NULL;
1997-10-17 15:46:30 +04:00
centry = last = NULL;
memset(&ginfo, 0, sizeof(ginfo));
for (lineno = 0;
(buf = fparseln(stdin, NULL, &lineno, NULL,
FPARSELN_UNESCCOMM | FPARSELN_UNESCCONT | FPARSELN_UNESCESC));
free(buf)) {
/* Skip leading whitespace. */
for (p = buf; *p && isspace((unsigned char)*p); ++p)
continue;
/* If nothing but whitespace, continue. */
if (!*p)
1993-03-21 12:45:37 +03:00
continue;
#ifdef DEBUG
(void)fprintf(stderr, "line %d: {%s}\n", lineno, p);
#endif
/* Grab file name, "$", "set", or "unset". */
if ((p = strtok(p, "\n\t ")) == NULL)
mtree_err("missing field");
1993-03-21 12:45:37 +03:00
if (p[0] == '/') {
if (strcmp(p + 1, "set") == 0)
set(NULL, &ginfo);
else if (strcmp(p + 1, "unset") == 0)
unset(NULL, &ginfo);
else
mtree_err("invalid specification `%s'", p);
continue;
}
1993-03-21 12:45:37 +03:00
1997-10-17 15:46:30 +04:00
if (strchr(p, '/'))
mtree_err("slash character in file name");
1993-03-21 12:45:37 +03:00
if (!strcmp(p, "..")) {
/* Don't go up, if haven't gone down. */
1993-03-21 12:45:37 +03:00
if (!root)
goto noparent;
1993-03-21 12:45:37 +03:00
if (last->type != F_DIR || last->flags & F_DONE) {
if (last == root)
goto noparent;
1993-03-21 12:45:37 +03:00
last = last->parent;
}
last->flags |= F_DONE;
continue;
noparent: mtree_err("no parent node");
1993-03-21 12:45:37 +03:00
}
if ((centry = calloc(1, sizeof(NODE) + strlen(p))) == NULL)
mtree_err("%s", strerror(errno));
1993-03-21 12:45:37 +03:00
*centry = ginfo;
if (strunvis(centry->name, p) == -1)
mtree_err("strunvis failed on `%s'", p);
1993-03-21 12:45:37 +03:00
#define MAGIC "?*["
if (strpbrk(p, MAGIC))
centry->flags |= F_MAGIC;
set(NULL, centry);
1993-03-21 12:45:37 +03:00
if (!root) {
last = root = centry;
root->parent = root;
} else if (last->type == F_DIR && !(last->flags & F_DONE)) {
centry->parent = last;
last = last->child = centry;
} else {
centry->parent = last->parent;
centry->prev = last;
last = last->next = centry;
}
}
return (root);
1993-03-21 12:45:37 +03:00
}
/*
* dump_nodes --
* dump the NODEs from `cur', based in the directory `dir'
*/
void
dump_nodes(const char *dir, NODE *root)
{
NODE *cur;
char path[MAXPATHLEN + 1];
for (cur = root; cur != NULL; cur = cur->next) {
if (cur->type == F_FILE) {
if (cur->tags) {
int i;
for (i = 0; excludetags[i] != NULL; i++)
if (strstr(cur->tags, excludetags[i]))
break;
if (excludetags[i] != NULL)
continue;
for (i = 0; includetags[i] != NULL; i++)
if (strstr(cur->tags, includetags[i]))
break;
if (i > 0 && includetags[i] == NULL)
continue;
} else if (includetags[0] != NULL) {
continue;
}
}
if (snprintf(path, sizeof(path), "%s%s%s",
dir, *dir ? "/" : "", cur->name)
>= sizeof(path))
mtree_err("Pathname too long.");
if (keys & F_TYPE)
printf("type=%s ", nodetype(cur->type));
if (keys & F_UID)
printf("uid=%u ", cur->st_uid);
if (keys & F_UNAME)
printf("uname=%s ", user_from_uid(cur->st_uid, 0));
if (keys & F_GID)
printf("gid=%u ", cur->st_uid);
if (keys & F_MODE)
printf("mode=%#o ", cur->st_mode);
if (keys & F_NLINK && cur->type != F_DIR &&
cur->st_nlink != 1)
printf("nlink=%d ", cur->st_nlink);
if (keys & F_SLINK && cur->slink != NULL)
printf("link=%s ", cur->slink);
if (keys & F_SIZE && cur->type == F_FILE)
printf("size=%lld ", (long long)cur->st_size);
if (keys & F_TIME)
printf("time=%ld.%ld ", (long)cur->st_mtimespec.tv_sec,
cur->st_mtimespec.tv_nsec);
if (keys & F_CKSUM && cur->type == F_FILE)
printf("cksum=%lu ", cur->cksum);
if (keys & F_MD5 && cur->type == F_FILE && cur->md5sum != NULL)
printf("md5=%s ", cur->md5sum);
if (keys & F_FLAGS)
printf("flags=%s ",
flags_to_string(cur->st_flags, "none"));
if (keys & F_TAGS && cur->tags != NULL)
printf("tags=%s ", cur->tags);
puts(path);
if (cur->child)
dump_nodes(path, cur->child);
}
}
static void
set(char *t, NODE *ip)
1993-03-21 12:45:37 +03:00
{
1997-10-17 15:46:30 +04:00
int type;
gid_t gid;
uid_t uid;
char *kw, *val, *md;
void *m;
int value, len;
char *ep;
1993-03-21 12:45:37 +03:00
1997-10-17 15:46:30 +04:00
val = NULL;
for (; (kw = strtok(t, "= \t\n")) != NULL; t = NULL) {
ip->flags |= type = parsekey(kw, &value);
if (value && (val = strtok(NULL, " \t\n")) == NULL)
mtree_err("missing value");
1993-03-21 12:45:37 +03:00
switch(type) {
case F_CKSUM:
ip->cksum = strtoul(val, &ep, 10);
if (*ep)
mtree_err("invalid checksum `%s'", val);
break;
case F_FLAGS:
if (strcmp("none", val) == 0)
ip->st_flags = 0;
else if (string_to_flags(&val, &ip->st_flags, NULL) != 0)
mtree_err("invalid flag `%s'", val);
break;
case F_GID:
ip->st_gid = (gid_t)strtoul(val, &ep, 10);
if (*ep)
mtree_err("invalid gid `%s'", val);
1993-03-21 12:45:37 +03:00
break;
case F_GNAME:
if (gid_from_group(val, &gid) == -1)
mtree_err("unknown group `%s'", val);
ip->st_gid = gid;
1993-03-21 12:45:37 +03:00
break;
case F_IGN:
case F_OPT:
1993-03-21 12:45:37 +03:00
/* just set flag bit */
break;
case F_MD5:
if (val[0]=='0' && val[1]=='x')
md=&val[2];
else
md=val;
if ((ip->md5sum = strdup(md)) == NULL)
mtree_err("memory allocation error");
break;
case F_MODE:
if ((m = setmode(val)) == NULL)
mtree_err("invalid file mode `%s'", val);
1993-03-21 12:45:37 +03:00
ip->st_mode = getmode(m, 0);
free(m);
1993-03-21 12:45:37 +03:00
break;
case F_NLINK:
ip->st_nlink = (nlink_t)strtoul(val, &ep, 10);
if (*ep)
mtree_err("invalid link count `%s'", val);
1993-03-21 12:45:37 +03:00
break;
case F_SIZE:
ip->st_size = (off_t)strtoq(val, &ep, 10);
if (*ep)
mtree_err("invalid size `%s'", val);
1993-03-21 12:45:37 +03:00
break;
case F_SLINK:
if ((ip->slink = strdup(val)) == NULL)
mtree_err("memory allocation error");
1993-03-21 12:45:37 +03:00
break;
case F_TAGS:
len = strlen(val) + 3; /* "," + str + ",\0" */
if ((ip->tags = malloc(len)) == NULL)
mtree_err("memory allocation error");
snprintf(ip->tags, len, ",%s,", val);
break;
1993-03-21 12:45:37 +03:00
case F_TIME:
ip->st_mtimespec.tv_sec =
(time_t)strtoul(val, &ep, 10);
1995-03-07 18:28:32 +03:00
if (*ep != '.')
mtree_err("invalid time `%s'", val);
1995-03-07 18:28:32 +03:00
val = ep + 1;
ip->st_mtimespec.tv_nsec = strtol(val, &ep, 10);
if (*ep)
mtree_err("invalid time `%s'", val);
1993-03-21 12:45:37 +03:00
break;
case F_TYPE:
ip->type = parsetype(val);
1993-03-21 12:45:37 +03:00
break;
case F_UID:
ip->st_uid = (uid_t)strtoul(val, &ep, 10);
if (*ep)
mtree_err("invalid uid `%s'", val);
break;
case F_UNAME:
if (uid_from_user(val, &uid) == -1)
mtree_err("unknown user `%s'", val);
ip->st_uid = uid;
break;
default:
mtree_err(
"set(): unsupported key type 0x%x (INTERNAL ERROR)",
type);
/* NOTREACHED */
1993-03-21 12:45:37 +03:00
}
}
}
static void
unset(char *t, NODE *ip)
1993-03-21 12:45:37 +03:00
{
1997-10-17 15:46:30 +04:00
char *p;
1993-03-21 12:45:37 +03:00
while ((p = strtok(t, "\n\t ")) != NULL)
ip->flags &= ~parsekey(p, NULL);
1993-03-21 12:45:37 +03:00
}