Home | History | Annotate | Line # | Download | only in mtree
create.c revision 1.66
      1  1.66  christos /*	$NetBSD: create.c,v 1.66 2012/12/12 15:50:35 christos Exp $	*/
      2   1.9       cgd 
      3   1.1       cgd /*-
      4   1.8       cgd  * Copyright (c) 1989, 1993
      5   1.8       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15  1.43       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1       cgd  *    may be used to endorse or promote products derived from this software
     17   1.1       cgd  *    without specific prior written permission.
     18   1.1       cgd  *
     19   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1       cgd  * SUCH DAMAGE.
     30   1.1       cgd  */
     31   1.1       cgd 
     32  1.45       jmc #if HAVE_NBTOOL_CONFIG_H
     33  1.45       jmc #include "nbtool_config.h"
     34  1.45       jmc #endif
     35  1.45       jmc 
     36  1.13     lukem #include <sys/cdefs.h>
     37  1.39        tv #if defined(__RCSID) && !defined(lint)
     38   1.9       cgd #if 0
     39   1.8       cgd static char sccsid[] = "@(#)create.c	8.1 (Berkeley) 6/6/93";
     40   1.9       cgd #else
     41  1.66  christos __RCSID("$NetBSD: create.c,v 1.66 2012/12/12 15:50:35 christos Exp $");
     42   1.9       cgd #endif
     43   1.1       cgd #endif /* not lint */
     44   1.1       cgd 
     45   1.1       cgd #include <sys/param.h>
     46   1.1       cgd #include <sys/stat.h>
     47  1.29    simonb 
     48  1.44     lukem #if ! HAVE_NBTOOL_CONFIG_H
     49  1.13     lukem #include <dirent.h>
     50  1.38        tv #endif
     51  1.38        tv 
     52  1.13     lukem #include <errno.h>
     53   1.5       cgd #include <fcntl.h>
     54   1.5       cgd #include <grp.h>
     55   1.5       cgd #include <pwd.h>
     56  1.37     lukem #include <stdio.h>
     57  1.29    simonb #include <stdarg.h>
     58  1.35     lukem #include <stdlib.h>
     59  1.13     lukem #include <string.h>
     60  1.13     lukem #include <time.h>
     61   1.5       cgd #include <unistd.h>
     62  1.29    simonb 
     63  1.37     lukem #ifndef NO_MD5
     64  1.37     lukem #include <md5.h>
     65  1.37     lukem #endif
     66  1.37     lukem #ifndef NO_RMD160
     67  1.50  christos #include <rmd160.h>
     68  1.37     lukem #endif
     69  1.37     lukem #ifndef NO_SHA1
     70  1.37     lukem #include <sha1.h>
     71  1.37     lukem #endif
     72  1.47      elad #ifndef NO_SHA2
     73  1.50  christos #include <sha2.h>
     74  1.47      elad #endif
     75  1.37     lukem 
     76   1.5       cgd #include "extern.h"
     77   1.1       cgd 
     78   1.5       cgd #define	INDENTNAMELEN	15
     79   1.5       cgd #define	MAXLINELEN	80
     80   1.5       cgd 
     81   1.5       cgd static gid_t gid;
     82   1.5       cgd static uid_t uid;
     83   1.5       cgd static mode_t mode;
     84  1.18       mrg static u_long flags;
     85   1.5       cgd 
     86  1.61  christos #ifdef __FreeBSD__
     87  1.61  christos #define	FTS_CONST const
     88  1.61  christos #else
     89  1.61  christos #define	FTS_CONST
     90  1.61  christos #endif
     91  1.61  christos 
     92  1.61  christos static int	dcmp(const FTSENT *FTS_CONST *, const FTSENT *FTS_CONST *);
     93  1.63  christos static void	output(int, int *, const char *, ...)
     94  1.63  christos 	__attribute__((__format__(__printf__, 3, 4)));
     95  1.29    simonb static int	statd(FTS *, FTSENT *, uid_t *, gid_t *, mode_t *, u_long *);
     96  1.63  christos static void	statf(int, FTSENT *);
     97   1.1       cgd 
     98   1.5       cgd void
     99  1.29    simonb cwalk(void)
    100   1.1       cgd {
    101  1.13     lukem 	FTS *t;
    102  1.13     lukem 	FTSENT *p;
    103  1.33     lukem 	time_t clocktime;
    104  1.34     lukem 	char host[MAXHOSTNAMELEN + 1];
    105  1.55  christos 	const char *user;
    106  1.41     grant 	char *argv[2];
    107  1.41     grant 	char  dot[] = ".";
    108  1.63  christos 	int indent = 0;
    109  1.55  christos 
    110  1.41     grant 	argv[0] = dot;
    111  1.41     grant 	argv[1] = NULL;
    112   1.5       cgd 
    113  1.36     lukem 	time(&clocktime);
    114  1.36     lukem 	gethostname(host, sizeof(host));
    115  1.14       mrg 	host[sizeof(host) - 1] = '\0';
    116  1.55  christos 	if ((user = getlogin()) == NULL) {
    117  1.55  christos 		struct passwd *pw;
    118  1.55  christos 		user = (pw = getpwuid(getuid())) == NULL ? pw->pw_name :
    119  1.55  christos 		    "<unknown>";
    120  1.55  christos 	}
    121  1.55  christos 
    122  1.62  christos 	if (!nflag)
    123  1.62  christos 		printf(
    124  1.62  christos 	    	    "#\t   user: %s\n#\tmachine: %s\n#\t   tree: %s\n"
    125  1.62  christos 		    "#\t   date: %s",
    126  1.62  christos 		    user, host, fullpath, ctime(&clocktime));
    127   1.1       cgd 
    128  1.54    rillig 	if ((t = fts_open(argv, ftsoptions, dcmp)) == NULL)
    129  1.17  wsanchez 		mtree_err("fts_open: %s", strerror(errno));
    130  1.36     lukem 	while ((p = fts_read(t)) != NULL) {
    131  1.63  christos 		if (jflag)
    132  1.63  christos 			indent = p->fts_level * 4;
    133  1.36     lukem 		if (check_excludes(p->fts_name, p->fts_path)) {
    134  1.36     lukem 			fts_set(t, p, FTS_SKIP);
    135  1.36     lukem 			continue;
    136  1.36     lukem 		}
    137   1.1       cgd 		switch(p->fts_info) {
    138   1.1       cgd 		case FTS_D:
    139  1.62  christos 			if (!nflag)
    140  1.62  christos 				printf("\n# %s\n", p->fts_path);
    141  1.18       mrg 			statd(t, p, &uid, &gid, &mode, &flags);
    142  1.63  christos 			statf(indent, p);
    143   1.1       cgd 			break;
    144   1.1       cgd 		case FTS_DP:
    145  1.66  christos 			if (p->fts_level > 0) {
    146  1.66  christos 				if (!nflag)
    147  1.66  christos 					printf("%*s# %s\n", indent, "",
    148  1.66  christos 					    p->fts_path);
    149  1.66  christos 				printf("%*s..\n\n", indent, "");
    150  1.66  christos 			}
    151   1.5       cgd 			break;
    152   1.1       cgd 		case FTS_DNR:
    153   1.1       cgd 		case FTS_ERR:
    154   1.1       cgd 		case FTS_NS:
    155  1.36     lukem 			mtree_err("%s: %s",
    156  1.36     lukem 			    p->fts_path, strerror(p->fts_errno));
    157   1.5       cgd 			break;
    158   1.1       cgd 		default:
    159   1.5       cgd 			if (!dflag)
    160  1.63  christos 				statf(indent, p);
    161   1.5       cgd 			break;
    162  1.36     lukem 
    163   1.1       cgd 		}
    164  1.36     lukem 	}
    165  1.36     lukem 	fts_close(t);
    166   1.5       cgd 	if (sflag && keys & F_CKSUM)
    167  1.40     soren 		mtree_err("%s checksum: %u", fullpath, crc_total);
    168   1.5       cgd }
    169   1.1       cgd 
    170   1.5       cgd static void
    171  1.63  christos statf(int indent, FTSENT *p)
    172   1.5       cgd {
    173  1.17  wsanchez 	u_int32_t len, val;
    174  1.63  christos 	int fd, offset;
    175  1.65  christos 	const char *name = NULL;
    176  1.47      elad #if !defined(NO_MD5) || !defined(NO_RMD160) || !defined(NO_SHA1) || !defined(NO_SHA2)
    177  1.51      elad 	char *digestbuf;
    178  1.37     lukem #endif
    179   1.5       cgd 
    180  1.63  christos 	offset = printf("%*s%s%s", indent, "",
    181  1.46     lukem 	    S_ISDIR(p->fts_statp->st_mode) ? "" : "    ", vispath(p->fts_name));
    182   1.5       cgd 
    183  1.63  christos 	if (offset > (INDENTNAMELEN + indent))
    184  1.63  christos 		offset = MAXLINELEN;
    185   1.5       cgd 	else
    186  1.63  christos 		offset += printf("%*s", (INDENTNAMELEN + indent) - offset, "");
    187   1.5       cgd 
    188   1.5       cgd 	if (!S_ISREG(p->fts_statp->st_mode))
    189  1.63  christos 		output(indent, &offset, "type=%s",
    190  1.63  christos 		    inotype(p->fts_statp->st_mode));
    191  1.15      ross 	if (keys & (F_UID | F_UNAME) && p->fts_statp->st_uid != uid) {
    192  1.30     lukem 		if (keys & F_UNAME &&
    193  1.30     lukem 		    (name = user_from_uid(p->fts_statp->st_uid, 1)) != NULL)
    194  1.63  christos 			output(indent, &offset, "uname=%s", name);
    195  1.65  christos 		if (keys & F_UID || (keys & F_UNAME && name == NULL))
    196  1.63  christos 			output(indent, &offset, "uid=%u", p->fts_statp->st_uid);
    197  1.15      ross 	}
    198  1.15      ross 	if (keys & (F_GID | F_GNAME) && p->fts_statp->st_gid != gid) {
    199  1.30     lukem 		if (keys & F_GNAME &&
    200  1.30     lukem 		    (name = group_from_gid(p->fts_statp->st_gid, 1)) != NULL)
    201  1.63  christos 			output(indent, &offset, "gname=%s", name);
    202  1.65  christos 		if (keys & F_GID || (keys & F_GNAME && name == NULL))
    203  1.63  christos 			output(indent, &offset, "gid=%u", p->fts_statp->st_gid);
    204  1.15      ross 	}
    205   1.5       cgd 	if (keys & F_MODE && (p->fts_statp->st_mode & MBITS) != mode)
    206  1.63  christos 		output(indent, &offset, "mode=%#o",
    207  1.63  christos 		    p->fts_statp->st_mode & MBITS);
    208  1.32     lukem 	if (keys & F_DEV &&
    209  1.32     lukem 	    (S_ISBLK(p->fts_statp->st_mode) || S_ISCHR(p->fts_statp->st_mode)))
    210  1.63  christos 		output(indent, &offset, "device=%#llx",
    211  1.56  christos 		    (long long)p->fts_statp->st_rdev);
    212   1.5       cgd 	if (keys & F_NLINK && p->fts_statp->st_nlink != 1)
    213  1.63  christos 		output(indent, &offset, "nlink=%u", p->fts_statp->st_nlink);
    214  1.11   mycroft 	if (keys & F_SIZE && S_ISREG(p->fts_statp->st_mode))
    215  1.63  christos 		output(indent, &offset, "size=%lld",
    216  1.63  christos 		    (long long)p->fts_statp->st_size);
    217  1.53    rillig 	if (keys & F_TIME)
    218  1.45       jmc #if defined(BSD4_4) && !defined(HAVE_NBTOOL_CONFIG_H)
    219  1.64  christos 		output(indent, &offset, "time=%ld.%09ld",
    220  1.27        is 		    (long)p->fts_statp->st_mtimespec.tv_sec,
    221  1.10       jtc 		    p->fts_statp->st_mtimespec.tv_nsec);
    222  1.28   hubertf #else
    223  1.64  christos 		output(indent, &offset, "time=%ld.%09ld",
    224  1.52  christos 		    (long)p->fts_statp->st_mtime, (long)0);
    225  1.17  wsanchez #endif
    226   1.5       cgd 	if (keys & F_CKSUM && S_ISREG(p->fts_statp->st_mode)) {
    227   1.5       cgd 		if ((fd = open(p->fts_accpath, O_RDONLY, 0)) < 0 ||
    228   1.5       cgd 		    crc(fd, &val, &len))
    229  1.17  wsanchez 			mtree_err("%s: %s", p->fts_accpath, strerror(errno));
    230  1.36     lukem 		close(fd);
    231  1.63  christos 		output(indent, &offset, "cksum=%lu", (long)val);
    232  1.22   hubertf 	}
    233  1.37     lukem #ifndef NO_MD5
    234  1.22   hubertf 	if (keys & F_MD5 && S_ISREG(p->fts_statp->st_mode)) {
    235  1.51      elad 		if ((digestbuf = MD5File(p->fts_accpath, NULL)) == NULL)
    236  1.61  christos 			mtree_err("%s: MD5File failed: %s", p->fts_accpath,
    237  1.61  christos 			    strerror(errno));
    238  1.63  christos 		output(indent, &offset, "%s=%s", MD5KEY, digestbuf);
    239  1.51      elad 		free(digestbuf);
    240  1.36     lukem 	}
    241  1.37     lukem #endif	/* ! NO_MD5 */
    242  1.37     lukem #ifndef NO_RMD160
    243  1.36     lukem 	if (keys & F_RMD160 && S_ISREG(p->fts_statp->st_mode)) {
    244  1.51      elad 		if ((digestbuf = RMD160File(p->fts_accpath, NULL)) == NULL)
    245  1.61  christos 			mtree_err("%s: RMD160File failed: %s", p->fts_accpath,
    246  1.61  christos 			    strerror(errno));
    247  1.63  christos 		output(indent, &offset, "%s=%s", RMD160KEY, digestbuf);
    248  1.51      elad 		free(digestbuf);
    249  1.36     lukem 	}
    250  1.37     lukem #endif	/* ! NO_RMD160 */
    251  1.37     lukem #ifndef NO_SHA1
    252  1.36     lukem 	if (keys & F_SHA1 && S_ISREG(p->fts_statp->st_mode)) {
    253  1.51      elad 		if ((digestbuf = SHA1File(p->fts_accpath, NULL)) == NULL)
    254  1.61  christos 			mtree_err("%s: SHA1File failed: %s", p->fts_accpath,
    255  1.61  christos 			    strerror(errno));
    256  1.63  christos 		output(indent, &offset, "%s=%s", SHA1KEY, digestbuf);
    257  1.51      elad 		free(digestbuf);
    258   1.1       cgd 	}
    259  1.37     lukem #endif	/* ! NO_SHA1 */
    260  1.47      elad #ifndef NO_SHA2
    261  1.47      elad 	if (keys & F_SHA256 && S_ISREG(p->fts_statp->st_mode)) {
    262  1.51      elad 		if ((digestbuf = SHA256_File(p->fts_accpath, NULL)) == NULL)
    263  1.61  christos 			mtree_err("%s: SHA256_File failed: %s", p->fts_accpath,
    264  1.61  christos 			    strerror(errno));
    265  1.63  christos 		output(indent, &offset, "%s=%s", SHA256KEY, digestbuf);
    266  1.51      elad 		free(digestbuf);
    267  1.47      elad 	}
    268  1.60  christos #ifdef SHA384_BLOCK_LENGTH
    269  1.47      elad 	if (keys & F_SHA384 && S_ISREG(p->fts_statp->st_mode)) {
    270  1.51      elad 		if ((digestbuf = SHA384_File(p->fts_accpath, NULL)) == NULL)
    271  1.61  christos 			mtree_err("%s: SHA384_File failed: %s", p->fts_accpath,
    272  1.61  christos 			    strerror(errno));
    273  1.63  christos 		output(indent, &offset, "%s=%s", SHA384KEY, digestbuf);
    274  1.51      elad 		free(digestbuf);
    275  1.47      elad 	}
    276  1.60  christos #endif
    277  1.47      elad 	if (keys & F_SHA512 && S_ISREG(p->fts_statp->st_mode)) {
    278  1.51      elad 		if ((digestbuf = SHA512_File(p->fts_accpath, NULL)) == NULL)
    279  1.61  christos 			mtree_err("%s: SHA512_File failed: %s", p->fts_accpath,
    280  1.61  christos 			    strerror(errno));
    281  1.63  christos 		output(indent, &offset, "%s=%s", SHA512KEY, digestbuf);
    282  1.51      elad 		free(digestbuf);
    283  1.47      elad 	}
    284  1.47      elad #endif	/* ! NO_SHA2 */
    285   1.5       cgd 	if (keys & F_SLINK &&
    286   1.5       cgd 	    (p->fts_info == FTS_SL || p->fts_info == FTS_SLNONE))
    287  1.63  christos 		output(indent, &offset, "link=%s",
    288  1.63  christos 		    vispath(rlink(p->fts_accpath)));
    289  1.38        tv #if HAVE_STRUCT_STAT_ST_FLAGS
    290  1.59       spz 	if (keys & F_FLAGS && p->fts_statp->st_flags != flags) {
    291  1.59       spz 		char *str = flags_to_string(p->fts_statp->st_flags, "none");
    292  1.63  christos 		output(indent, &offset, "flags=%s", str);
    293  1.59       spz 		free(str);
    294  1.59       spz 	}
    295  1.38        tv #endif
    296  1.36     lukem 	putchar('\n');
    297   1.1       cgd }
    298   1.1       cgd 
    299  1.21       mrg /* XXX
    300  1.21       mrg  * FLAGS2INDEX will fail once the user and system settable bits need more
    301  1.21       mrg  * than one byte, respectively.
    302  1.21       mrg  */
    303  1.21       mrg #define FLAGS2INDEX(x)  (((x >> 8) & 0x0000ff00) | (x & 0x000000ff))
    304  1.21       mrg 
    305  1.19  christos #define	MTREE_MAXGID	5000
    306  1.19  christos #define	MTREE_MAXUID	5000
    307  1.21       mrg #define	MTREE_MAXMODE	(MBITS + 1)
    308  1.38        tv #if HAVE_STRUCT_STAT_ST_FLAGS
    309  1.21       mrg #define	MTREE_MAXFLAGS  (FLAGS2INDEX(CH_MASK) + 1)   /* 1808 */
    310  1.38        tv #else
    311  1.38        tv #define MTREE_MAXFLAGS	1
    312  1.38        tv #endif
    313  1.19  christos #define	MTREE_MAXS 16
    314   1.1       cgd 
    315   1.5       cgd static int
    316  1.29    simonb statd(FTS *t, FTSENT *parent, uid_t *puid, gid_t *pgid, mode_t *pmode,
    317  1.29    simonb       u_long *pflags)
    318   1.1       cgd {
    319  1.13     lukem 	FTSENT *p;
    320  1.13     lukem 	gid_t sgid;
    321  1.13     lukem 	uid_t suid;
    322  1.13     lukem 	mode_t smode;
    323  1.38        tv 	u_long sflags = 0;
    324  1.65  christos 	const char *name = NULL;
    325   1.1       cgd 	gid_t savegid;
    326   1.1       cgd 	uid_t saveuid;
    327   1.1       cgd 	mode_t savemode;
    328  1.18       mrg 	u_long saveflags;
    329  1.18       mrg 	u_short maxgid, maxuid, maxmode, maxflags;
    330  1.19  christos 	u_short g[MTREE_MAXGID], u[MTREE_MAXUID],
    331  1.19  christos 		m[MTREE_MAXMODE], f[MTREE_MAXFLAGS];
    332  1.36     lukem 	static int first = 1;
    333   1.1       cgd 
    334  1.36     lukem 	savegid = *pgid;
    335  1.36     lukem 	saveuid = *puid;
    336  1.36     lukem 	savemode = *pmode;
    337  1.36     lukem 	saveflags = *pflags;
    338   1.5       cgd 	if ((p = fts_children(t, 0)) == NULL) {
    339   1.5       cgd 		if (errno)
    340  1.17  wsanchez 			mtree_err("%s: %s", RP(parent), strerror(errno));
    341   1.5       cgd 		return (1);
    342   1.1       cgd 	}
    343   1.1       cgd 
    344  1.13     lukem 	memset(g, 0, sizeof(g));
    345  1.13     lukem 	memset(u, 0, sizeof(u));
    346  1.13     lukem 	memset(m, 0, sizeof(m));
    347  1.18       mrg 	memset(f, 0, sizeof(f));
    348   1.1       cgd 
    349  1.18       mrg 	maxuid = maxgid = maxmode = maxflags = 0;
    350   1.1       cgd 	for (; p; p = p->fts_link) {
    351   1.5       cgd 		smode = p->fts_statp->st_mode & MBITS;
    352  1.19  christos 		if (smode < MTREE_MAXMODE && ++m[smode] > maxmode) {
    353   1.5       cgd 			savemode = smode;
    354   1.5       cgd 			maxmode = m[smode];
    355   1.5       cgd 		}
    356   1.5       cgd 		sgid = p->fts_statp->st_gid;
    357  1.19  christos 		if (sgid < MTREE_MAXGID && ++g[sgid] > maxgid) {
    358   1.5       cgd 			savegid = sgid;
    359   1.5       cgd 			maxgid = g[sgid];
    360   1.5       cgd 		}
    361   1.5       cgd 		suid = p->fts_statp->st_uid;
    362  1.19  christos 		if (suid < MTREE_MAXUID && ++u[suid] > maxuid) {
    363   1.5       cgd 			saveuid = suid;
    364   1.5       cgd 			maxuid = u[suid];
    365   1.1       cgd 		}
    366  1.18       mrg 
    367  1.38        tv #if HAVE_STRUCT_STAT_ST_FLAGS
    368  1.21       mrg 		sflags = FLAGS2INDEX(p->fts_statp->st_flags);
    369  1.21       mrg 		if (sflags < MTREE_MAXFLAGS && ++f[sflags] > maxflags) {
    370  1.21       mrg 			saveflags = p->fts_statp->st_flags;
    371  1.21       mrg 			maxflags = f[sflags];
    372  1.18       mrg 		}
    373  1.38        tv #endif
    374   1.1       cgd 	}
    375  1.36     lukem 	/*
    376  1.36     lukem 	 * If the /set record is the same as the last one we do not need to
    377  1.36     lukem 	 * output a new one.  So first we check to see if anything changed.
    378  1.36     lukem 	 * Note that we always output a /set record for the first directory.
    379  1.36     lukem 	 */
    380  1.36     lukem 	if (((keys & (F_UNAME | F_UID)) && (*puid != saveuid)) ||
    381  1.36     lukem 	    ((keys & (F_GNAME | F_GID)) && (*pgid != savegid)) ||
    382  1.36     lukem 	    ((keys & F_MODE) && (*pmode != savemode)) ||
    383  1.36     lukem 	    ((keys & F_FLAGS) && (*pflags != saveflags)) ||
    384  1.36     lukem 	    first) {
    385  1.36     lukem 		first = 0;
    386  1.36     lukem 		printf("/set type=file");
    387  1.36     lukem 		if (keys & (F_UID | F_UNAME)) {
    388  1.36     lukem 			if (keys & F_UNAME &&
    389  1.36     lukem 			    (name = user_from_uid(saveuid, 1)) != NULL)
    390  1.36     lukem 				printf(" uname=%s", name);
    391  1.65  christos 			if (keys & F_UID || (keys & F_UNAME && name == NULL))
    392  1.36     lukem 				printf(" uid=%lu", (u_long)saveuid);
    393  1.36     lukem 		}
    394  1.36     lukem 		if (keys & (F_GID | F_GNAME)) {
    395  1.36     lukem 			if (keys & F_GNAME &&
    396  1.36     lukem 			    (name = group_from_gid(savegid, 1)) != NULL)
    397  1.36     lukem 				printf(" gname=%s", name);
    398  1.65  christos 			if (keys & F_GID || (keys & F_GNAME && name == NULL))
    399  1.36     lukem 				printf(" gid=%lu", (u_long)savegid);
    400  1.36     lukem 		}
    401  1.36     lukem 		if (keys & F_MODE)
    402  1.36     lukem 			printf(" mode=%#lo", (u_long)savemode);
    403  1.36     lukem 		if (keys & F_NLINK)
    404  1.36     lukem 			printf(" nlink=1");
    405  1.59       spz 		if (keys & F_FLAGS) {
    406  1.59       spz 			char *str = flags_to_string(saveflags, "none");
    407  1.59       spz 			printf(" flags=%s", str);
    408  1.59       spz 			free(str);
    409  1.59       spz 		}
    410  1.36     lukem 		printf("\n");
    411  1.36     lukem 		*puid = saveuid;
    412  1.36     lukem 		*pgid = savegid;
    413  1.36     lukem 		*pmode = savemode;
    414  1.36     lukem 		*pflags = saveflags;
    415  1.15      ross 	}
    416   1.5       cgd 	return (0);
    417   1.1       cgd }
    418   1.1       cgd 
    419  1.58       apb /*
    420  1.58       apb  * dcmp --
    421  1.58       apb  *	used as a comparison function passed to fts_open() to control
    422  1.58       apb  *	the order in which fts_read() returns results.	We make
    423  1.58       apb  *	directories sort after non-directories, but otherwise sort in
    424  1.58       apb  *	strcmp() order.
    425  1.58       apb  *
    426  1.58       apb  * Keep this in sync with nodecmp() in spec.c.
    427  1.58       apb  */
    428   1.5       cgd static int
    429  1.61  christos dcmp(const FTSENT *FTS_CONST *a, const FTSENT *FTS_CONST *b)
    430   1.1       cgd {
    431  1.29    simonb 
    432   1.5       cgd 	if (S_ISDIR((*a)->fts_statp->st_mode)) {
    433   1.5       cgd 		if (!S_ISDIR((*b)->fts_statp->st_mode))
    434   1.5       cgd 			return (1);
    435   1.5       cgd 	} else if (S_ISDIR((*b)->fts_statp->st_mode))
    436   1.5       cgd 		return (-1);
    437   1.5       cgd 	return (strcmp((*a)->fts_name, (*b)->fts_name));
    438   1.5       cgd }
    439   1.1       cgd 
    440   1.5       cgd void
    441  1.63  christos output(int indent, int *offset, const char *fmt, ...)
    442   1.5       cgd {
    443   1.5       cgd 	va_list ap;
    444   1.5       cgd 	char buf[1024];
    445  1.29    simonb 
    446   1.5       cgd 	va_start(ap, fmt);
    447  1.36     lukem 	vsnprintf(buf, sizeof(buf), fmt, ap);
    448   1.5       cgd 	va_end(ap);
    449   1.5       cgd 
    450   1.8       cgd 	if (*offset + strlen(buf) > MAXLINELEN - 3) {
    451  1.63  christos 		printf(" \\\n%*s", INDENTNAMELEN + indent, "");
    452  1.63  christos 		*offset = INDENTNAMELEN + indent;
    453   1.5       cgd 	}
    454   1.5       cgd 	*offset += printf(" %s", buf) + 1;
    455   1.1       cgd }
    456