]>
git.saurik.com Git - apple/file_cmds.git/blob - mtree/verify.c
201d237543397acf875b04106e8aa0836e40a181
2 * Copyright (c) 1990, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 static char sccsid
[] = "@(#)verify.c 8.1 (Berkeley) 6/6/93";
38 static const char rcsid
[] =
39 "$FreeBSD: src/usr.sbin/mtree/verify.c,v 1.10.2.2 2001/01/12 19:17:18 phk Exp $";
42 #include <sys/param.h>
54 extern long int crc_total
;
55 extern int ftsoptions
;
56 extern int dflag
, eflag
, qflag
, rflag
, sflag
, uflag
;
57 extern char fullpath
[MAXPATHLEN
];
61 static char path
[MAXPATHLEN
];
63 static void miss
__P((NODE
*, char *));
64 static int vwalk
__P((void));
82 register NODE
*ep
, *level
;
88 if ((t
= fts_open(argv
, ftsoptions
, NULL
)) == NULL
)
89 err(1, "line %d: fts_open", lineno
);
92 while ((p
= fts_read(t
))) {
93 if (check_excludes(p
->fts_name
, p
->fts_path
)) {
94 fts_set(t
, p
, FTS_SKIP
);
102 if (specdepth
> p
->fts_level
) {
103 for (level
= level
->parent
; level
->prev
;
104 level
= level
->prev
);
111 warnx("%s: %s", RP(p
), strerror(p
->fts_errno
));
118 if (specdepth
!= p
->fts_level
)
120 for (ep
= level
; ep
; ep
= ep
->next
)
121 if ((ep
->flags
& F_MAGIC
&&
122 !fnmatch(ep
->name
, p
->fts_name
, FNM_PATHNAME
)) ||
123 !strcmp(ep
->name
, p
->fts_name
)) {
124 ep
->flags
|= F_VISIT
;
125 if ((ep
->flags
& F_NOCHANGE
) == 0 &&
126 compare(ep
->name
, ep
, p
))
128 if (ep
->flags
& F_IGN
)
129 (void)fts_set(t
, p
, FTS_SKIP
);
130 else if (ep
->child
&& ep
->type
== F_DIR
&&
131 p
->fts_info
== FTS_D
) {
142 (void)printf("%s extra", RP(p
));
144 if ((S_ISDIR(p
->fts_statp
->st_mode
)
145 ? rmdir
: unlink
)(p
->fts_accpath
)) {
146 (void)printf(", not removed: %s",
149 (void)printf(", removed");
153 (void)fts_set(t
, p
, FTS_SKIP
);
157 warnx("%s checksum: %lu", fullpath
, crc_total
);
170 for (; p
; p
= p
->next
) {
171 if (p
->type
!= F_DIR
&& (dflag
|| p
->flags
& F_VISIT
))
173 (void)strcpy(tail
, p
->name
);
174 if (!(p
->flags
& F_VISIT
)) {
175 /* Don't print missing message if file exists as a
176 symbolic link and the -q flag is set. */
179 if (qflag
&& stat(path
, &statbuf
) == 0)
182 (void)printf("%s missing", path
);
184 if (p
->type
!= F_DIR
&& p
->type
!= F_LINK
) {
190 if (p
->type
== F_LINK
)
194 if (!(p
->flags
& F_VISIT
) && uflag
) {
195 if (!(p
->flags
& (F_UID
| F_UNAME
)))
196 (void)printf(" (%s not created: user not specified)", type
);
197 else if (!(p
->flags
& (F_GID
| F_GNAME
)))
198 (void)printf(" (%s not created: group not specified)", type
);
199 else if (p
->type
== F_LINK
) {
200 if (symlink(p
->slink
, path
))
201 (void)printf(" (symlink not created: %s)\n",
204 (void)printf(" (created)\n");
205 #if 0 /* lchown() does not exist on Darwin. */
206 if (lchown(path
, p
->st_uid
, p
->st_gid
))
207 (void)printf("%s: user/group not modified: %s\n",
208 path
, strerror(errno
));
211 } else if (!(p
->flags
& F_MODE
))
212 (void)printf(" (directory not created: mode not specified)");
213 else if (mkdir(path
, S_IRWXU
))
214 (void)printf(" (directory not created: %s)",
218 (void)printf(" (created)");
221 if (!(p
->flags
& F_VISIT
))
224 for (tp
= tail
; *tp
; ++tp
);
226 miss(p
->child
, tp
+ 1);
231 if (chown(path
, p
->st_uid
, p
->st_gid
)) {
232 (void)printf("%s: user/group/mode not modified: %s\n",
233 path
, strerror(errno
));
234 (void)printf("%s: warning: file mode %snot set\n", path
,
235 (p
->flags
& F_FLAGS
) ? "and file flags " : "");
238 if (chmod(path
, p
->st_mode
))
239 (void)printf("%s: permissions not set: %s\n",
240 path
, strerror(errno
));
241 if ((p
->flags
& F_FLAGS
) && p
->st_flags
&&
242 chflags(path
, p
->st_flags
))
243 (void)printf("%s: file flags not set: %s\n",
244 path
, strerror(errno
));