1 /* $NetBSD: create.c,v 1.65 2012/10/05 01:21:44 christos 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
[] = "@(#)create.c 8.1 (Berkeley) 6/6/93";
41 __RCSID("$NetBSD: create.c,v 1.65 2012/10/05 01:21:44 christos Exp $");
45 #include <sys/param.h>
48 #if ! HAVE_NBTOOL_CONFIG_H
78 #define INDENTNAMELEN 15
87 #define FTS_CONST const
92 static int dcmp(const FTSENT
*FTS_CONST
*, const FTSENT
*FTS_CONST
*);
93 static void output(int, int *, const char *, ...)
94 __attribute__((__format__(__printf__
, 3, 4)));
95 static int statd(FTS
*, FTSENT
*, uid_t
*, gid_t
*, mode_t
*, u_long
*);
96 static void statf(int, FTSENT
*);
104 char host
[MAXHOSTNAMELEN
+ 1];
114 gethostname(host
, sizeof(host
));
115 host
[sizeof(host
) - 1] = '\0';
116 if ((user
= getlogin()) == NULL
) {
118 user
= (pw
= getpwuid(getuid())) == NULL
? pw
->pw_name
:
124 "#\t user: %s\n#\tmachine: %s\n#\t tree: %s\n"
126 user
, host
, fullpath
, ctime(&clocktime
));
128 if ((t
= fts_open(argv
, ftsoptions
, dcmp
)) == NULL
)
129 mtree_err("fts_open: %s", strerror(errno
));
130 while ((p
= fts_read(t
)) != NULL
) {
132 indent
= p
->fts_level
* 4;
133 if (check_excludes(p
->fts_name
, p
->fts_path
)) {
134 fts_set(t
, p
, FTS_SKIP
);
137 switch(p
->fts_info
) {
140 printf("\n# %s\n", p
->fts_path
);
141 statd(t
, p
, &uid
, &gid
, &mode
, &flags
);
145 if (!nflag
&& p
->fts_level
> 0)
146 printf("%*s# %s\n%*s..\n\n", indent
, "",
147 p
->fts_path
, indent
, "");
153 p
->fts_path
, strerror(p
->fts_errno
));
163 if (sflag
&& keys
& F_CKSUM
)
164 mtree_err("%s checksum: %u", fullpath
, crc_total
);
168 statf(int indent
, FTSENT
*p
)
172 const char *name
= NULL
;
173 #if !defined(NO_MD5) || !defined(NO_RMD160) || !defined(NO_SHA1) || !defined(NO_SHA2)
177 offset
= printf("%*s%s%s", indent
, "",
178 S_ISDIR(p
->fts_statp
->st_mode
) ? "" : " ", vispath(p
->fts_name
));
180 if (offset
> (INDENTNAMELEN
+ indent
))
183 offset
+= printf("%*s", (INDENTNAMELEN
+ indent
) - offset
, "");
185 if (!S_ISREG(p
->fts_statp
->st_mode
))
186 output(indent
, &offset
, "type=%s",
187 inotype(p
->fts_statp
->st_mode
));
188 if (keys
& (F_UID
| F_UNAME
) && p
->fts_statp
->st_uid
!= uid
) {
189 if (keys
& F_UNAME
&&
190 (name
= user_from_uid(p
->fts_statp
->st_uid
, 1)) != NULL
)
191 output(indent
, &offset
, "uname=%s", name
);
192 if (keys
& F_UID
|| (keys
& F_UNAME
&& name
== NULL
))
193 output(indent
, &offset
, "uid=%u", p
->fts_statp
->st_uid
);
195 if (keys
& (F_GID
| F_GNAME
) && p
->fts_statp
->st_gid
!= gid
) {
196 if (keys
& F_GNAME
&&
197 (name
= group_from_gid(p
->fts_statp
->st_gid
, 1)) != NULL
)
198 output(indent
, &offset
, "gname=%s", name
);
199 if (keys
& F_GID
|| (keys
& F_GNAME
&& name
== NULL
))
200 output(indent
, &offset
, "gid=%u", p
->fts_statp
->st_gid
);
202 if (keys
& F_MODE
&& (p
->fts_statp
->st_mode
& MBITS
) != mode
)
203 output(indent
, &offset
, "mode=%#o",
204 p
->fts_statp
->st_mode
& MBITS
);
206 (S_ISBLK(p
->fts_statp
->st_mode
) || S_ISCHR(p
->fts_statp
->st_mode
)))
207 output(indent
, &offset
, "device=%#llx",
208 (long long)p
->fts_statp
->st_rdev
);
209 if (keys
& F_NLINK
&& p
->fts_statp
->st_nlink
!= 1)
210 output(indent
, &offset
, "nlink=%u", p
->fts_statp
->st_nlink
);
211 if (keys
& F_SIZE
&& S_ISREG(p
->fts_statp
->st_mode
))
212 output(indent
, &offset
, "size=%lld",
213 (long long)p
->fts_statp
->st_size
);
215 #if defined(BSD4_4) && !defined(HAVE_NBTOOL_CONFIG_H)
216 output(indent
, &offset
, "time=%ld.%09ld",
217 (long)p
->fts_statp
->st_mtimespec
.tv_sec
,
218 p
->fts_statp
->st_mtimespec
.tv_nsec
);
220 output(indent
, &offset
, "time=%ld.%09ld",
221 (long)p
->fts_statp
->st_mtime
, (long)0);
223 if (keys
& F_CKSUM
&& S_ISREG(p
->fts_statp
->st_mode
)) {
224 if ((fd
= open(p
->fts_accpath
, O_RDONLY
, 0)) < 0 ||
226 mtree_err("%s: %s", p
->fts_accpath
, strerror(errno
));
228 output(indent
, &offset
, "cksum=%lu", (long)val
);
231 if (keys
& F_MD5
&& S_ISREG(p
->fts_statp
->st_mode
)) {
232 if ((digestbuf
= MD5File(p
->fts_accpath
, NULL
)) == NULL
)
233 mtree_err("%s: MD5File failed: %s", p
->fts_accpath
,
235 output(indent
, &offset
, "%s=%s", MD5KEY
, digestbuf
);
238 #endif /* ! NO_MD5 */
240 if (keys
& F_RMD160
&& S_ISREG(p
->fts_statp
->st_mode
)) {
241 if ((digestbuf
= RMD160File(p
->fts_accpath
, NULL
)) == NULL
)
242 mtree_err("%s: RMD160File failed: %s", p
->fts_accpath
,
244 output(indent
, &offset
, "%s=%s", RMD160KEY
, digestbuf
);
247 #endif /* ! NO_RMD160 */
249 if (keys
& F_SHA1
&& S_ISREG(p
->fts_statp
->st_mode
)) {
250 if ((digestbuf
= SHA1File(p
->fts_accpath
, NULL
)) == NULL
)
251 mtree_err("%s: SHA1File failed: %s", p
->fts_accpath
,
253 output(indent
, &offset
, "%s=%s", SHA1KEY
, digestbuf
);
256 #endif /* ! NO_SHA1 */
258 if (keys
& F_SHA256
&& S_ISREG(p
->fts_statp
->st_mode
)) {
259 if ((digestbuf
= SHA256_File(p
->fts_accpath
, NULL
)) == NULL
)
260 mtree_err("%s: SHA256_File failed: %s", p
->fts_accpath
,
262 output(indent
, &offset
, "%s=%s", SHA256KEY
, digestbuf
);
265 #ifdef SHA384_BLOCK_LENGTH
266 if (keys
& F_SHA384
&& S_ISREG(p
->fts_statp
->st_mode
)) {
267 if ((digestbuf
= SHA384_File(p
->fts_accpath
, NULL
)) == NULL
)
268 mtree_err("%s: SHA384_File failed: %s", p
->fts_accpath
,
270 output(indent
, &offset
, "%s=%s", SHA384KEY
, digestbuf
);
274 if (keys
& F_SHA512
&& S_ISREG(p
->fts_statp
->st_mode
)) {
275 if ((digestbuf
= SHA512_File(p
->fts_accpath
, NULL
)) == NULL
)
276 mtree_err("%s: SHA512_File failed: %s", p
->fts_accpath
,
278 output(indent
, &offset
, "%s=%s", SHA512KEY
, digestbuf
);
281 #endif /* ! NO_SHA2 */
282 if (keys
& F_SLINK
&&
283 (p
->fts_info
== FTS_SL
|| p
->fts_info
== FTS_SLNONE
))
284 output(indent
, &offset
, "link=%s",
285 vispath(rlink(p
->fts_accpath
)));
286 #if HAVE_STRUCT_STAT_ST_FLAGS
287 if (keys
& F_FLAGS
&& p
->fts_statp
->st_flags
!= flags
) {
288 char *str
= flags_to_string(p
->fts_statp
->st_flags
, "none");
289 output(indent
, &offset
, "flags=%s", str
);
297 * FLAGS2INDEX will fail once the user and system settable bits need more
298 * than one byte, respectively.
300 #define FLAGS2INDEX(x) (((x >> 8) & 0x0000ff00) | (x & 0x000000ff))
302 #define MTREE_MAXGID 5000
303 #define MTREE_MAXUID 5000
304 #define MTREE_MAXMODE (MBITS + 1)
305 #if HAVE_STRUCT_STAT_ST_FLAGS
306 #define MTREE_MAXFLAGS (FLAGS2INDEX(CH_MASK) + 1) /* 1808 */
308 #define MTREE_MAXFLAGS 1
310 #define MTREE_MAXS 16
313 statd(FTS
*t
, FTSENT
*parent
, uid_t
*puid
, gid_t
*pgid
, mode_t
*pmode
,
320 #if HAVE_STRUCT_STAT_ST_FLAGS
323 const char *name
= NULL
;
328 u_short maxgid
, maxuid
, maxmode
, maxflags
;
329 u_short g
[MTREE_MAXGID
], u
[MTREE_MAXUID
],
330 m
[MTREE_MAXMODE
], f
[MTREE_MAXFLAGS
];
331 static int first
= 1;
337 if ((p
= fts_children(t
, 0)) == NULL
) {
339 mtree_err("%s: %s", RP(parent
), strerror(errno
));
343 memset(g
, 0, sizeof(g
));
344 memset(u
, 0, sizeof(u
));
345 memset(m
, 0, sizeof(m
));
346 memset(f
, 0, sizeof(f
));
348 maxuid
= maxgid
= maxmode
= maxflags
= 0;
349 for (; p
; p
= p
->fts_link
) {
350 smode
= p
->fts_statp
->st_mode
& MBITS
;
351 if (smode
< MTREE_MAXMODE
&& ++m
[smode
] > maxmode
) {
355 sgid
= p
->fts_statp
->st_gid
;
356 if (sgid
< MTREE_MAXGID
&& ++g
[sgid
] > maxgid
) {
360 suid
= p
->fts_statp
->st_uid
;
361 if (suid
< MTREE_MAXUID
&& ++u
[suid
] > maxuid
) {
366 #if HAVE_STRUCT_STAT_ST_FLAGS
367 sflags
= FLAGS2INDEX(p
->fts_statp
->st_flags
);
368 if (sflags
< MTREE_MAXFLAGS
&& ++f
[sflags
] > maxflags
) {
369 saveflags
= p
->fts_statp
->st_flags
;
370 maxflags
= f
[sflags
];
375 * If the /set record is the same as the last one we do not need to
376 * output a new one. So first we check to see if anything changed.
377 * Note that we always output a /set record for the first directory.
379 if (((keys
& (F_UNAME
| F_UID
)) && (*puid
!= saveuid
)) ||
380 ((keys
& (F_GNAME
| F_GID
)) && (*pgid
!= savegid
)) ||
381 ((keys
& F_MODE
) && (*pmode
!= savemode
)) ||
382 ((keys
& F_FLAGS
) && (*pflags
!= saveflags
)) ||
385 printf("/set type=file");
386 if (keys
& (F_UID
| F_UNAME
)) {
387 if (keys
& F_UNAME
&&
388 (name
= user_from_uid(saveuid
, 1)) != NULL
)
389 printf(" uname=%s", name
);
390 if (keys
& F_UID
|| (keys
& F_UNAME
&& name
== NULL
))
391 printf(" uid=%lu", (u_long
)saveuid
);
393 if (keys
& (F_GID
| F_GNAME
)) {
394 if (keys
& F_GNAME
&&
395 (name
= group_from_gid(savegid
, 1)) != NULL
)
396 printf(" gname=%s", name
);
397 if (keys
& F_GID
|| (keys
& F_GNAME
&& name
== NULL
))
398 printf(" gid=%lu", (u_long
)savegid
);
401 printf(" mode=%#lo", (u_long
)savemode
);
404 if (keys
& F_FLAGS
) {
405 char *str
= flags_to_string(saveflags
, "none");
406 printf(" flags=%s", str
);
420 * used as a comparison function passed to fts_open() to control
421 * the order in which fts_read() returns results. We make
422 * directories sort after non-directories, but otherwise sort in
425 * Keep this in sync with nodecmp() in spec.c.
428 dcmp(const FTSENT
*FTS_CONST
*a
, const FTSENT
*FTS_CONST
*b
)
431 if (S_ISDIR((*a
)->fts_statp
->st_mode
)) {
432 if (!S_ISDIR((*b
)->fts_statp
->st_mode
))
434 } else if (S_ISDIR((*b
)->fts_statp
->st_mode
))
436 return (strcmp((*a
)->fts_name
, (*b
)->fts_name
));
440 output(int indent
, int *offset
, const char *fmt
, ...)
446 vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
449 if (*offset
+ strlen(buf
) > MAXLINELEN
- 3) {
450 printf(" \\\n%*s", INDENTNAMELEN
+ indent
, "");
451 *offset
= INDENTNAMELEN
+ indent
;
453 *offset
+= printf(" %s", buf
) + 1;