1 /* $NetBSD: verify.c,v 1.46 2015/01/23 20:28:24 christos Exp $ */
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the University nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #if HAVE_NBTOOL_CONFIG_H
33 #include "nbtool_config.h"
36 #include <sys/cdefs.h>
37 #if defined(__RCSID) && !defined(lint)
39 static char sccsid
[] = "@(#)verify.c 8.1 (Berkeley) 6/6/93";
41 __RCSID("$NetBSD: verify.c,v 1.46 2015/01/23 20:28:24 christos Exp $");
45 #include <sys/param.h>
48 #if ! HAVE_NBTOOL_CONFIG_H
61 static char path
[MAXPATHLEN
];
63 static void miss(NODE
*, char *);
64 static int vwalk(void);
89 if ((t
= fts_open(argv
, ftsoptions
, NULL
)) == NULL
)
90 mtree_err("fts_open: %s", strerror(errno
));
93 while ((p
= fts_read(t
)) != NULL
) {
94 if (check_excludes(p
->fts_name
, p
->fts_path
)) {
95 fts_set(t
, p
, FTS_SKIP
);
98 if (!find_only(p
->fts_path
)) {
99 fts_set(t
, p
, FTS_SKIP
);
102 switch(p
->fts_info
) {
107 if (specdepth
> p
->fts_level
) {
108 for (level
= level
->parent
; level
->prev
;
117 warnx("%s: %s", RP(p
), strerror(p
->fts_errno
));
124 if (specdepth
!= p
->fts_level
)
126 for (ep
= level
; ep
; ep
= ep
->next
)
127 if ((ep
->flags
& F_MAGIC
&&
128 !fnmatch(ep
->name
, p
->fts_name
, FNM_PATHNAME
)) ||
129 !strcmp(ep
->name
, p
->fts_name
)) {
130 ep
->flags
|= F_VISIT
;
131 if ((ep
->flags
& F_NOCHANGE
) == 0 &&
134 if (!(ep
->flags
& F_IGN
) &&
136 p
->fts_info
== FTS_D
) {
142 fts_set(t
, p
, FTS_SKIP
);
149 if (!eflag
&& !(dflag
&& p
->fts_info
== FTS_SL
)) {
150 printf("extra: %s", RP(p
));
152 #if HAVE_STRUCT_STAT_ST_FLAGS
154 lchflags(p
->fts_accpath
, 0) == -1)
155 printf(" (chflags %s)",
158 if ((S_ISDIR(p
->fts_statp
->st_mode
)
159 ? rmdir
: unlink
)(p
->fts_accpath
)) {
160 printf(", not removed: %s",
167 fts_set(t
, p
, FTS_SKIP
);
171 warnx("%s checksum: %u", fullpath
, crc_total
);
176 miss(NODE
*p
, char *tail
)
183 for (; p
; p
= p
->next
) {
184 if (p
->flags
& F_OPT
&& !(p
->flags
& F_VISIT
))
186 if (p
->type
!= F_DIR
&& (dflag
|| p
->flags
& F_VISIT
))
188 strcpy(tail
, p
->name
);
189 if (!(p
->flags
& F_VISIT
)) {
190 /* Don't print missing message if file exists as a
191 symbolic link and the -q flag is set. */
194 if (qflag
&& stat(path
, &statbuf
) == 0 &&
195 S_ISDIR(statbuf
.st_mode
))
198 (void)printf("%s missing", path
);
217 if (!(p
->flags
& F_VISIT
) && uflag
) {
218 if (mtree_Wflag
|| p
->type
== F_LINK
)
220 if (!(p
->flags
& (F_UID
| F_UNAME
)))
222 " (%s not created: user not specified)", type
);
223 else if (!(p
->flags
& (F_GID
| F_GNAME
)))
225 " (%s not created: group not specified)", type
);
226 else if (!(p
->flags
& F_MODE
))
228 " (%s not created: mode not specified)", type
);
236 if (!(p
->flags
& F_DEV
))
238 " (%s not created: device not specified)",
241 p
->st_mode
| nodetoino(p
->type
),
243 printf(" (%s not created: %s)\n",
244 type
, strerror(errno
));
249 if (!(p
->flags
& F_SLINK
))
251 " (%s not created: link not specified)\n",
253 else if (symlink(p
->slink
, path
))
255 " (%s not created: %s)\n",
256 type
, strerror(errno
));
261 if (mkdir(path
, S_IRWXU
|S_IRWXG
|S_IRWXO
))
262 printf(" (not created: %s)",
268 mtree_err("can't create create %s",
273 printf(" (created)");
274 if (p
->type
== F_DIR
) {
275 if (!(p
->flags
& F_VISIT
))
277 for (tp
= tail
; *tp
; ++tp
)
280 miss(p
->child
, tp
+ 1);
285 if (!create
|| mtree_Wflag
)
287 if ((p
->flags
& (F_UID
| F_UNAME
)) &&
288 (p
->flags
& (F_GID
| F_GNAME
)) &&
289 (lchown(path
, p
->st_uid
, p
->st_gid
))) {
290 printf("%s: user/group/mode not modified: %s\n",
291 path
, strerror(errno
));
292 printf("%s: warning: file mode %snot set\n", path
,
293 (p
->flags
& F_FLAGS
) ? "and file flags " : "");
296 if (p
->flags
& F_MODE
) {
297 if (lchmod(path
, p
->st_mode
))
298 printf("%s: permissions not set: %s\n",
299 path
, strerror(errno
));
301 #if HAVE_STRUCT_STAT_ST_FLAGS
302 if ((p
->flags
& F_FLAGS
) && p
->st_flags
) {
306 flags
= p
->st_flags
& ~SP_FLGS
;
307 if (lchflags(path
, flags
))
308 printf("%s: file flags not set: %s\n",
309 path
, strerror(errno
));
311 #endif /* HAVE_STRUCT_STAT_ST_FLAGS */