1 /* $NetBSD: compare.c,v 1.51 2007/02/04 08:03:18 elad Exp $ */
4 * Copyright (c) 1989, 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
[] = "@(#)compare.c 8.1 (Berkeley) 6/6/93";
41 __RCSID("$NetBSD: compare.c,v 1.51 2007/02/04 08:03:18 elad Exp $");
45 #include <sys/param.h>
70 #define INDENTNAMELEN 8
73 len = printf("%s: ", RP(p)); \
74 if (len > INDENTNAMELEN) { \
79 printf("%*s", INDENTNAMELEN - (int)len, ""); \
82 #define LABEL if (!label++) MARK
84 #if HAVE_STRUCT_STAT_ST_FLAGS
88 if (flags != p->fts_statp->st_flags) { \
92 sf = flags_to_string(p->fts_statp->st_flags, "none"); \
93 printf("%sflags (\"%s\"", tab, sf); \
96 if (lchflags(p->fts_accpath, flags)) { \
98 printf(", not modified: %s)\n", \
101 sf = flags_to_string(flags, "none"); \
102 printf(", modified to \"%s\")\n", sf); \
108 * given pflags, additionally set those flags specified in s->st_flags and
109 * selected by mask (the other flags are left unchanged).
111 #define SETFLAGS(pflags, mask) \
113 flags = (s->st_flags & (mask)) | (pflags); \
118 * given pflags, reset the flags specified in s->st_flags and selected by mask
119 * (the other flags are left unchanged).
121 #define CLEARFLAGS(pflags, mask) \
123 flags = (~(s->st_flags & (mask)) & CH_MASK) & (pflags); \
126 #endif /* HAVE_STRUCT_STAT_ST_FLAGS */
129 compare(NODE
*s
, FTSENT
*p
)
131 u_int32_t len
, val
, flags
;
133 const char *cp
, *tab
;
134 #if !defined(NO_MD5) || !defined(NO_RMD160) || !defined(NO_SHA1) || !defined(NO_SHA2)
142 if (!S_ISBLK(p
->fts_statp
->st_mode
))
146 if (!S_ISCHR(p
->fts_statp
->st_mode
))
150 if (!S_ISDIR(p
->fts_statp
->st_mode
))
154 if (!S_ISFIFO(p
->fts_statp
->st_mode
))
158 if (!S_ISREG(p
->fts_statp
->st_mode
))
162 if (!S_ISLNK(p
->fts_statp
->st_mode
))
167 if (!S_ISSOCK(p
->fts_statp
->st_mode
))
172 printf("\ttype (%s, %s)\n",
173 nodetype(s
->type
), inotype(p
->fts_statp
->st_mode
));
178 #if HAVE_STRUCT_STAT_ST_FLAGS
179 if (iflag
&& !uflag
) {
180 if (s
->flags
& F_FLAGS
)
181 SETFLAGS(p
->fts_statp
->st_flags
, SP_FLGS
);
184 if (mflag
&& !uflag
) {
185 if (s
->flags
& F_FLAGS
)
186 CLEARFLAGS(p
->fts_statp
->st_flags
, SP_FLGS
);
190 if (s
->flags
& F_DEV
&&
191 (s
->type
== F_BLOCK
|| s
->type
== F_CHAR
) &&
192 s
->st_rdev
!= p
->fts_statp
->st_rdev
) {
194 printf("%sdevice (%#llx, %#llx",
195 tab
, (long long)s
->st_rdev
,
196 (long long)p
->fts_statp
->st_rdev
);
198 if ((unlink(p
->fts_accpath
) == -1) ||
199 (mknod(p
->fts_accpath
,
200 s
->st_mode
| nodetoino(s
->type
),
201 s
->st_rdev
) == -1) ||
202 (lchown(p
->fts_accpath
, p
->fts_statp
->st_uid
,
203 p
->fts_statp
->st_gid
) == -1) )
204 printf(", not modified: %s)\n",
207 printf(", modified)\n");
212 /* Set the uid/gid first, then set the mode. */
213 if (s
->flags
& (F_UID
| F_UNAME
) && s
->st_uid
!= p
->fts_statp
->st_uid
) {
215 printf("%suser (%lu, %lu",
216 tab
, (u_long
)s
->st_uid
, (u_long
)p
->fts_statp
->st_uid
);
218 if (lchown(p
->fts_accpath
, s
->st_uid
, -1))
219 printf(", not modified: %s)\n",
222 printf(", modified)\n");
227 if (s
->flags
& (F_GID
| F_GNAME
) && s
->st_gid
!= p
->fts_statp
->st_gid
) {
229 printf("%sgid (%lu, %lu",
230 tab
, (u_long
)s
->st_gid
, (u_long
)p
->fts_statp
->st_gid
);
232 if (lchown(p
->fts_accpath
, -1, s
->st_gid
))
233 printf(", not modified: %s)\n",
236 printf(", modified)\n");
242 if (s
->flags
& F_MODE
&&
243 s
->st_mode
!= (p
->fts_statp
->st_mode
& MBITS
)) {
248 mode
= p
->fts_statp
->st_mode
& MBITS
;
250 * if none of the suid/sgid/etc bits are set,
251 * then if the mode is a subset of the target,
254 if (!((tmode
& ~(S_IRWXU
|S_IRWXG
|S_IRWXO
)) ||
255 (mode
& ~(S_IRWXU
|S_IRWXG
|S_IRWXO
))))
256 if ((mode
| tmode
) == tmode
)
261 printf("%spermissions (%#lo, %#lo",
262 tab
, (u_long
)s
->st_mode
,
263 (u_long
)p
->fts_statp
->st_mode
& MBITS
);
265 if (lchmod(p
->fts_accpath
, s
->st_mode
))
266 printf(", not modified: %s)\n",
269 printf(", modified)\n");
276 if (s
->flags
& F_NLINK
&& s
->type
!= F_DIR
&&
277 s
->st_nlink
!= p
->fts_statp
->st_nlink
) {
279 printf("%slink count (%lu, %lu)\n",
280 tab
, (u_long
)s
->st_nlink
, (u_long
)p
->fts_statp
->st_nlink
);
283 if (s
->flags
& F_SIZE
&& s
->st_size
!= p
->fts_statp
->st_size
) {
285 printf("%ssize (%lld, %lld)\n",
286 tab
, (long long)s
->st_size
,
287 (long long)p
->fts_statp
->st_size
);
292 * Since utimes(2) only takes a timeval, there's no point in
293 * comparing the low bits of the timespec nanosecond field. This
294 * will only result in mismatches that we can never fix.
296 * Doesn't display microsecond differences.
298 if (s
->flags
& F_TIME
) {
299 struct timeval tv
[2];
300 struct stat
*ps
= p
->fts_statp
;
301 time_t smtime
= s
->st_mtimespec
.tv_sec
;
303 #if defined(BSD4_4) && !defined(HAVE_NBTOOL_CONFIG_H)
304 time_t pmtime
= ps
->st_mtimespec
.tv_sec
;
306 TIMESPEC_TO_TIMEVAL(&tv
[0], &s
->st_mtimespec
);
307 TIMESPEC_TO_TIMEVAL(&tv
[1], &ps
->st_mtimespec
);
309 time_t pmtime
= (time_t)ps
->st_mtime
;
311 tv
[0].tv_sec
= smtime
;
313 tv
[1].tv_sec
= pmtime
;
317 if (tv
[0].tv_sec
!= tv
[1].tv_sec
||
318 tv
[0].tv_usec
!= tv
[1].tv_usec
) {
320 printf("%smodification time (%.24s, ",
321 tab
, ctime(&smtime
));
322 printf("%.24s", ctime(&pmtime
));
325 if (utimes(p
->fts_accpath
, tv
))
326 printf(", not modified: %s)\n",
329 printf(", modified)\n");
335 #if HAVE_STRUCT_STAT_ST_FLAGS
338 * since lchflags(2) will reset file times, the utimes() above
339 * may have been useless! oh well, we'd rather have correct
340 * flags, rather than times?
342 if ((s
->flags
& F_FLAGS
) && ((s
->st_flags
!= p
->fts_statp
->st_flags
)
343 || mflag
|| iflag
)) {
344 if (s
->st_flags
!= p
->fts_statp
->st_flags
) {
347 f_s
= flags_to_string(s
->st_flags
, "none");
348 printf("%sflags (\"%s\" is not ", tab
, f_s
);
350 f_s
= flags_to_string(p
->fts_statp
->st_flags
, "none");
351 printf("\"%s\"", f_s
);
356 SETFLAGS(0, CH_MASK
);
358 CLEARFLAGS(0, SP_FLGS
);
360 SETFLAGS(0, (~SP_FLGS
& CH_MASK
));
365 #endif /* HAVE_STRUCT_STAT_ST_FLAGS */
368 * from this point, no more permission checking or whacking
369 * occurs, only checking of stuff like checksums and symlinks.
372 if (s
->flags
& F_CKSUM
) {
373 if ((fd
= open(p
->fts_accpath
, O_RDONLY
, 0)) < 0) {
375 printf("%scksum: %s: %s\n",
376 tab
, p
->fts_accpath
, strerror(errno
));
378 } else if (crc(fd
, &val
, &len
)) {
381 printf("%scksum: %s: %s\n",
382 tab
, p
->fts_accpath
, strerror(errno
));
386 if (s
->cksum
!= val
) {
388 printf("%scksum (%lu, %lu)\n",
389 tab
, s
->cksum
, (unsigned long)val
);
395 if (s
->flags
& F_MD5
) {
396 if ((digestbuf
= MD5File(p
->fts_accpath
, NULL
)) == NULL
) {
398 printf("%smd5: %s: %s\n",
399 tab
, p
->fts_accpath
, strerror(errno
));
402 if (strcmp(s
->md5digest
, digestbuf
)) {
404 printf("%smd5 (0x%s, 0x%s)\n",
405 tab
, s
->md5digest
, digestbuf
);
411 #endif /* ! NO_MD5 */
413 if (s
->flags
& F_RMD160
) {
414 if ((digestbuf
= RMD160File(p
->fts_accpath
, NULL
)) == NULL
) {
416 printf("%srmd160: %s: %s\n",
417 tab
, p
->fts_accpath
, strerror(errno
));
420 if (strcmp(s
->rmd160digest
, digestbuf
)) {
422 printf("%srmd160 (0x%s, 0x%s)\n",
423 tab
, s
->rmd160digest
, digestbuf
);
429 #endif /* ! NO_RMD160 */
431 if (s
->flags
& F_SHA1
) {
432 if ((digestbuf
= SHA1File(p
->fts_accpath
, NULL
)) == NULL
) {
434 printf("%ssha1: %s: %s\n",
435 tab
, p
->fts_accpath
, strerror(errno
));
438 if (strcmp(s
->sha1digest
, digestbuf
)) {
440 printf("%ssha1 (0x%s, 0x%s)\n",
441 tab
, s
->sha1digest
, digestbuf
);
447 #endif /* ! NO_SHA1 */
449 if (s
->flags
& F_SHA256
) {
450 if ((digestbuf
= SHA256_File(p
->fts_accpath
, NULL
)) == NULL
) {
452 printf("%ssha256: %s: %s\n",
453 tab
, p
->fts_accpath
, strerror(errno
));
456 if (strcmp(s
->sha256digest
, digestbuf
)) {
458 printf("%ssha256 (0x%s, 0x%s)\n",
459 tab
, s
->sha256digest
, digestbuf
);
465 if (s
->flags
& F_SHA384
) {
466 if ((digestbuf
= SHA384_File(p
->fts_accpath
, NULL
)) == NULL
) {
468 printf("%ssha384: %s: %s\n",
469 tab
, p
->fts_accpath
, strerror(errno
));
472 if (strcmp(s
->sha384digest
, digestbuf
)) {
474 printf("%ssha384 (0x%s, 0x%s)\n",
475 tab
, s
->sha384digest
, digestbuf
);
481 if (s
->flags
& F_SHA512
) {
482 if ((digestbuf
= SHA512_File(p
->fts_accpath
, NULL
)) == NULL
) {
484 printf("%ssha512: %s: %s\n",
485 tab
, p
->fts_accpath
, strerror(errno
));
488 if (strcmp(s
->sha512digest
, digestbuf
)) {
490 printf("%ssha512 (0x%s, 0x%s)\n",
491 tab
, s
->sha512digest
, digestbuf
);
497 #endif /* ! NO_SHA2 */
498 if (s
->flags
& F_SLINK
&&
499 strcmp(cp
= rlink(p
->fts_accpath
), s
->slink
)) {
501 printf("%slink ref (%s, %s", tab
, cp
, s
->slink
);
503 if ((unlink(p
->fts_accpath
) == -1) ||
504 (symlink(s
->slink
, p
->fts_accpath
) == -1) )
505 printf(", not modified: %s)\n",
508 printf(", modified)\n");
516 rlink(const char *name
)
518 static char lbuf
[MAXPATHLEN
];
521 if ((len
= readlink(name
, lbuf
, sizeof(lbuf
) - 1)) == -1)
522 mtree_err("%s: %s", name
, strerror(errno
));