xinstall.c revision 1.104 1 1.104 christos /* $NetBSD: xinstall.c,v 1.104 2008/12/28 18:34:58 christos Exp $ */
2 1.5 jtc
3 1.1 cgd /*
4 1.5 jtc * Copyright (c) 1987, 1993
5 1.5 jtc * 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.79 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.80 lukem #if HAVE_NBTOOL_CONFIG_H
33 1.80 lukem #include "nbtool_config.h"
34 1.104 christos #ifdef __NetBSD__
35 1.104 christos #undef HAVE_FUTIMES
36 1.104 christos #endif
37 1.65 tv #else
38 1.65 tv #define HAVE_FUTIMES 1
39 1.65 tv #define HAVE_STRUCT_STAT_ST_FLAGS 1
40 1.65 tv #endif
41 1.65 tv
42 1.20 mrg #include <sys/cdefs.h>
43 1.67 tv #if defined(__COPYRIGHT) && !defined(lint)
44 1.103 lukem __COPYRIGHT("@(#) Copyright (c) 1987, 1993\
45 1.103 lukem The Regents of the University of California. All rights reserved.");
46 1.1 cgd #endif /* not lint */
47 1.1 cgd
48 1.67 tv #if defined(__RCSID) && !defined(lint)
49 1.5 jtc #if 0
50 1.5 jtc static char sccsid[] = "@(#)xinstall.c 8.1 (Berkeley) 7/21/93";
51 1.20 mrg #else
52 1.104 christos __RCSID("$NetBSD: xinstall.c,v 1.104 2008/12/28 18:34:58 christos Exp $");
53 1.5 jtc #endif
54 1.1 cgd #endif /* not lint */
55 1.1 cgd
56 1.91 christos #define __MKTEMP_OK__ /* All uses of mktemp have been checked */
57 1.1 cgd #include <sys/param.h>
58 1.5 jtc #include <sys/mman.h>
59 1.1 cgd #include <sys/stat.h>
60 1.61 simonb #include <sys/wait.h>
61 1.104 christos #include <sys/time.h>
62 1.5 jtc
63 1.5 jtc #include <ctype.h>
64 1.67 tv #include <err.h>
65 1.5 jtc #include <errno.h>
66 1.5 jtc #include <fcntl.h>
67 1.1 cgd #include <grp.h>
68 1.67 tv #include <libgen.h>
69 1.5 jtc #include <paths.h>
70 1.1 cgd #include <pwd.h>
71 1.1 cgd #include <stdio.h>
72 1.5 jtc #include <stdlib.h>
73 1.5 jtc #include <string.h>
74 1.5 jtc #include <unistd.h>
75 1.101 he #include <util.h>
76 1.50 lukem #include <vis.h>
77 1.5 jtc
78 1.84 lukem #include <md5.h>
79 1.100 christos #include <rmd160.h>
80 1.84 lukem #include <sha1.h>
81 1.84 lukem
82 1.1 cgd #include "pathnames.h"
83 1.74 lukem #include "mtree.h"
84 1.1 cgd
85 1.28 wsanchez #define STRIP_ARGS_MAX 32
86 1.31 hubertf #define BACKUP_SUFFIX ".old"
87 1.28 wsanchez
88 1.83 simonb int dobackup, dodir, dostrip, dolink, dopreserve, dorename, dounpriv;
89 1.50 lukem int numberedbackup;
90 1.50 lukem int mode = S_IRWXU|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH;
91 1.50 lukem char pathbuf[MAXPATHLEN];
92 1.82 heas id_t uid = -1, gid = -1;
93 1.54 lukem char *group, *owner, *fflags, *tags;
94 1.50 lukem FILE *metafp;
95 1.50 lukem char *metafile;
96 1.50 lukem u_long fileflags;
97 1.50 lukem char *stripArgs;
98 1.69 lukem char *afterinstallcmd;
99 1.50 lukem char *suffix = BACKUP_SUFFIX;
100 1.75 lukem char *destdir;
101 1.5 jtc
102 1.84 lukem enum {
103 1.84 lukem DIGEST_NONE = 0,
104 1.84 lukem DIGEST_MD5,
105 1.84 lukem DIGEST_RMD160,
106 1.84 lukem DIGEST_SHA1,
107 1.84 lukem } digesttype = DIGEST_NONE;
108 1.84 lukem char *digest;
109 1.84 lukem
110 1.16 christos #define LN_ABSOLUTE 0x01
111 1.16 christos #define LN_RELATIVE 0x02
112 1.16 christos #define LN_HARD 0x04
113 1.16 christos #define LN_SYMBOLIC 0x08
114 1.16 christos #define LN_MIXED 0x10
115 1.16 christos
116 1.5 jtc #define DIRECTORY 0x01 /* Tell install it's a directory. */
117 1.5 jtc #define SETFLAGS 0x02 /* Tell install to set flags. */
118 1.50 lukem #define HASUID 0x04 /* Tell install the uid was given */
119 1.50 lukem #define HASGID 0x08 /* Tell install the gid was given */
120 1.5 jtc
121 1.69 lukem void afterinstall(const char *, const char *, int);
122 1.50 lukem void backup(const char *);
123 1.84 lukem char *copy(int, char *, int, char *, off_t);
124 1.61 simonb int do_link(char *, char *);
125 1.61 simonb void do_symlink(char *, char *);
126 1.50 lukem void install(char *, char *, u_int);
127 1.50 lukem void install_dir(char *, u_int);
128 1.50 lukem int main(int, char *[]);
129 1.48 simonb void makelink(char *, char *);
130 1.84 lukem void metadata_log(const char *, const char *, struct timeval *,
131 1.84 lukem const char *, const char *);
132 1.50 lukem int parseid(char *, id_t *);
133 1.48 simonb void strip(char *);
134 1.48 simonb void usage(void);
135 1.61 simonb char *xbasename(char *);
136 1.61 simonb char *xdirname(char *);
137 1.1 cgd
138 1.5 jtc int
139 1.48 simonb main(int argc, char *argv[])
140 1.1 cgd {
141 1.53 lukem struct stat from_sb, to_sb;
142 1.53 lukem void *set;
143 1.53 lukem u_int iflags;
144 1.53 lukem int ch, no_target;
145 1.53 lukem char *p, *to_name;
146 1.43 cgd
147 1.43 cgd setprogname(argv[0]);
148 1.1 cgd
149 1.5 jtc iflags = 0;
150 1.84 lukem while ((ch = getopt(argc, argv, "a:cbB:dD:f:g:h:l:m:M:N:o:prsS:T:U"))
151 1.75 lukem != -1)
152 1.1 cgd switch((char)ch) {
153 1.69 lukem case 'a':
154 1.69 lukem afterinstallcmd = strdup(optarg);
155 1.69 lukem if (afterinstallcmd == NULL)
156 1.69 lukem errx(1, "%s", strerror(ENOMEM));
157 1.69 lukem break;
158 1.31 hubertf case 'B':
159 1.31 hubertf suffix = optarg;
160 1.35 hubertf numberedbackup = 0;
161 1.35 hubertf {
162 1.35 hubertf /* Check if given suffix really generates
163 1.35 hubertf different suffixes - catch e.g. ".%" */
164 1.35 hubertf char suffix_expanded0[FILENAME_MAX],
165 1.35 hubertf suffix_expanded1[FILENAME_MAX];
166 1.35 hubertf (void)snprintf(suffix_expanded0, FILENAME_MAX,
167 1.35 hubertf suffix, 0);
168 1.35 hubertf (void)snprintf(suffix_expanded1, FILENAME_MAX,
169 1.35 hubertf suffix, 1);
170 1.35 hubertf if (strcmp(suffix_expanded0, suffix_expanded1)
171 1.35 hubertf != 0)
172 1.35 hubertf numberedbackup = 1;
173 1.35 hubertf }
174 1.31 hubertf /* fall through; -B implies -b */
175 1.61 simonb /*FALLTHROUGH*/
176 1.31 hubertf case 'b':
177 1.31 hubertf dobackup = 1;
178 1.31 hubertf break;
179 1.1 cgd case 'c':
180 1.83 simonb /* ignored; was "docopy" which is now the default. */
181 1.1 cgd break;
182 1.26 christos case 'd':
183 1.26 christos dodir = 1;
184 1.26 christos break;
185 1.75 lukem case 'D':
186 1.75 lukem destdir = optarg;
187 1.75 lukem break;
188 1.80 lukem #if ! HAVE_NBTOOL_CONFIG_H
189 1.5 jtc case 'f':
190 1.52 tv fflags = optarg;
191 1.5 jtc break;
192 1.65 tv #endif
193 1.1 cgd case 'g':
194 1.1 cgd group = optarg;
195 1.1 cgd break;
196 1.84 lukem case 'h':
197 1.84 lukem digest = optarg;
198 1.84 lukem break;
199 1.16 christos case 'l':
200 1.16 christos for (p = optarg; *p; p++)
201 1.16 christos switch (*p) {
202 1.16 christos case 's':
203 1.16 christos dolink &= ~(LN_HARD|LN_MIXED);
204 1.16 christos dolink |= LN_SYMBOLIC;
205 1.16 christos break;
206 1.16 christos case 'h':
207 1.16 christos dolink &= ~(LN_SYMBOLIC|LN_MIXED);
208 1.16 christos dolink |= LN_HARD;
209 1.16 christos break;
210 1.16 christos case 'm':
211 1.16 christos dolink &= ~(LN_SYMBOLIC|LN_HARD);
212 1.16 christos dolink |= LN_MIXED;
213 1.16 christos break;
214 1.16 christos case 'a':
215 1.16 christos dolink &= ~LN_RELATIVE;
216 1.16 christos dolink |= LN_ABSOLUTE;
217 1.16 christos break;
218 1.16 christos case 'r':
219 1.16 christos dolink &= ~LN_ABSOLUTE;
220 1.16 christos dolink |= LN_RELATIVE;
221 1.16 christos break;
222 1.16 christos default:
223 1.16 christos errx(1, "%c: invalid link type", *p);
224 1.61 simonb /* NOTREACHED */
225 1.16 christos }
226 1.16 christos break;
227 1.26 christos case 'm':
228 1.26 christos if (!(set = setmode(optarg)))
229 1.93 christos err(1, "Cannot set file mode `%s'", optarg);
230 1.26 christos mode = getmode(set, 0);
231 1.42 enami free(set);
232 1.26 christos break;
233 1.50 lukem case 'M':
234 1.50 lukem metafile = optarg;
235 1.50 lukem break;
236 1.74 lukem case 'N':
237 1.74 lukem if (! setup_getid(optarg))
238 1.74 lukem errx(1,
239 1.74 lukem "Unable to use user and group databases in `%s'",
240 1.74 lukem optarg);
241 1.74 lukem break;
242 1.26 christos case 'o':
243 1.26 christos owner = optarg;
244 1.26 christos break;
245 1.26 christos case 'p':
246 1.26 christos dopreserve = 1;
247 1.26 christos break;
248 1.33 christos case 'r':
249 1.33 christos dorename = 1;
250 1.33 christos break;
251 1.28 wsanchez case 'S':
252 1.49 simonb stripArgs = strdup(optarg);
253 1.49 simonb if (stripArgs == NULL)
254 1.49 simonb errx(1, "%s", strerror(ENOMEM));
255 1.28 wsanchez /* fall through; -S implies -s */
256 1.61 simonb /*FALLTHROUGH*/
257 1.26 christos case 's':
258 1.26 christos dostrip = 1;
259 1.26 christos break;
260 1.54 lukem case 'T':
261 1.54 lukem tags = optarg;
262 1.54 lukem break;
263 1.38 sommerfe case 'U':
264 1.50 lukem dounpriv = 1;
265 1.38 sommerfe break;
266 1.1 cgd case '?':
267 1.1 cgd default:
268 1.1 cgd usage();
269 1.1 cgd }
270 1.1 cgd argc -= optind;
271 1.1 cgd argv += optind;
272 1.2 jtc
273 1.23 tv /* strip and link options make no sense when creating directories */
274 1.23 tv if ((dostrip || dolink) && dodir)
275 1.16 christos usage();
276 1.16 christos
277 1.16 christos /* strip and flags make no sense with links */
278 1.52 tv if ((dostrip || fflags) && dolink)
279 1.2 jtc usage();
280 1.2 jtc
281 1.2 jtc /* must have at least two arguments, except when creating directories */
282 1.2 jtc if (argc < 2 && !dodir)
283 1.1 cgd usage();
284 1.1 cgd
285 1.84 lukem if (digest) {
286 1.84 lukem if (0) {
287 1.84 lukem } else if (strcmp(digest, "none") == 0) {
288 1.84 lukem digesttype = DIGEST_NONE;
289 1.84 lukem } else if (strcmp(digest, "md5") == 0) {
290 1.84 lukem digesttype = DIGEST_MD5;
291 1.84 lukem } else if (strcmp(digest, "rmd160") == 0) {
292 1.84 lukem digesttype = DIGEST_RMD160;
293 1.84 lukem } else if (strcmp(digest, "sha1") == 0) {
294 1.84 lukem digesttype = DIGEST_SHA1;
295 1.84 lukem } else {
296 1.84 lukem warnx("unknown digest `%s'", digest);
297 1.84 lukem usage();
298 1.84 lukem }
299 1.84 lukem }
300 1.84 lukem
301 1.1 cgd /* get group and owner id's */
302 1.52 tv if (group && !dounpriv) {
303 1.74 lukem if (gid_from_group(group, &gid) == -1 && ! parseid(group, &gid))
304 1.41 cgd errx(1, "unknown group %s", group);
305 1.50 lukem iflags |= HASGID;
306 1.50 lukem }
307 1.52 tv if (owner && !dounpriv) {
308 1.74 lukem if (uid_from_user(owner, &uid) == -1 && ! parseid(owner, &uid))
309 1.41 cgd errx(1, "unknown user %s", owner);
310 1.50 lukem iflags |= HASUID;
311 1.50 lukem }
312 1.50 lukem
313 1.80 lukem #if ! HAVE_NBTOOL_CONFIG_H
314 1.52 tv if (fflags && !dounpriv) {
315 1.52 tv if (string_to_flags(&fflags, &fileflags, NULL))
316 1.52 tv errx(1, "%s: invalid flag", fflags);
317 1.98 daniel /* restore fflags since string_to_flags() changed it */
318 1.98 daniel fflags = flags_to_string(fileflags, "-");
319 1.52 tv iflags |= SETFLAGS;
320 1.52 tv }
321 1.65 tv #endif
322 1.52 tv
323 1.50 lukem if (metafile) {
324 1.50 lukem if ((metafp = fopen(metafile, "a")) == NULL)
325 1.50 lukem warn("open %s", metafile);
326 1.84 lukem } else
327 1.84 lukem digesttype = DIGEST_NONE;
328 1.1 cgd
329 1.2 jtc if (dodir) {
330 1.2 jtc for (; *argv != NULL; ++argv)
331 1.50 lukem install_dir(*argv, iflags);
332 1.2 jtc exit (0);
333 1.5 jtc }
334 1.2 jtc
335 1.1 cgd no_target = stat(to_name = argv[argc - 1], &to_sb);
336 1.2 jtc if (!no_target && S_ISDIR(to_sb.st_mode)) {
337 1.1 cgd for (; *argv != to_name; ++argv)
338 1.50 lukem install(*argv, to_name, iflags | DIRECTORY);
339 1.1 cgd exit(0);
340 1.1 cgd }
341 1.1 cgd
342 1.1 cgd /* can't do file1 file2 directory/file */
343 1.99 rillig if (argc != 2) {
344 1.99 rillig errx(EXIT_FAILURE, "the last argument (%s) "
345 1.99 rillig "must name an existing directory", argv[argc - 1]);
346 1.99 rillig /* NOTREACHED */
347 1.99 rillig }
348 1.1 cgd
349 1.1 cgd if (!no_target) {
350 1.61 simonb /* makelink() handles checks for links */
351 1.61 simonb if (!dolink) {
352 1.61 simonb if (stat(*argv, &from_sb))
353 1.66 tv err(1, "%s: stat", *argv);
354 1.61 simonb if (!S_ISREG(to_sb.st_mode))
355 1.61 simonb errx(1, "%s: not a regular file", to_name);
356 1.61 simonb if (to_sb.st_dev == from_sb.st_dev &&
357 1.61 simonb to_sb.st_ino == from_sb.st_ino)
358 1.61 simonb errx(1, "%s and %s are the same file", *argv,
359 1.61 simonb to_name);
360 1.61 simonb }
361 1.5 jtc /*
362 1.5 jtc * Unlink now... avoid ETXTBSY errors later. Try and turn
363 1.5 jtc * off the append/immutable bits -- if we fail, go ahead,
364 1.5 jtc * it might work.
365 1.5 jtc */
366 1.80 lukem #if ! HAVE_NBTOOL_CONFIG_H
367 1.5 jtc #define NOCHANGEBITS (UF_IMMUTABLE | UF_APPEND | SF_IMMUTABLE | SF_APPEND)
368 1.5 jtc if (to_sb.st_flags & NOCHANGEBITS)
369 1.5 jtc (void)chflags(to_name,
370 1.5 jtc to_sb.st_flags & ~(NOCHANGEBITS));
371 1.65 tv #endif
372 1.32 hubertf if (dobackup)
373 1.32 hubertf backup(to_name);
374 1.34 christos else if (!dorename)
375 1.31 hubertf (void)unlink(to_name);
376 1.1 cgd }
377 1.50 lukem install(*argv, to_name, iflags);
378 1.1 cgd exit(0);
379 1.1 cgd }
380 1.1 cgd
381 1.1 cgd /*
382 1.50 lukem * parseid --
383 1.50 lukem * parse uid or gid from arg into id, returning non-zero if successful
384 1.50 lukem */
385 1.50 lukem int
386 1.50 lukem parseid(char *name, id_t *id)
387 1.50 lukem {
388 1.50 lukem char *ep;
389 1.50 lukem
390 1.50 lukem errno = 0;
391 1.50 lukem *id = (id_t)strtoul(name, &ep, 10);
392 1.50 lukem if (errno || *ep != '\0')
393 1.50 lukem return (0);
394 1.50 lukem return (1);
395 1.50 lukem }
396 1.50 lukem
397 1.50 lukem /*
398 1.61 simonb * do_link --
399 1.61 simonb * make a hard link, obeying dorename if set
400 1.61 simonb * return -1 on failure
401 1.61 simonb */
402 1.61 simonb int
403 1.61 simonb do_link(char *from_name, char *to_name)
404 1.61 simonb {
405 1.61 simonb char tmpl[MAXPATHLEN];
406 1.61 simonb int ret;
407 1.61 simonb
408 1.61 simonb if (dorename) {
409 1.61 simonb (void)snprintf(tmpl, sizeof(tmpl), "%s/inst.XXXXXX",
410 1.61 simonb xdirname(to_name));
411 1.91 christos /* This usage is safe. */
412 1.61 simonb if (mktemp(tmpl) == NULL)
413 1.66 tv err(1, "%s: mktemp", tmpl);
414 1.61 simonb ret = link(from_name, tmpl);
415 1.61 simonb if (ret == 0) {
416 1.61 simonb ret = rename(tmpl, to_name);
417 1.96 dbj /* If rename has posix semantics, then the temporary
418 1.96 dbj * file may still exist when from_name and to_name point
419 1.102 joerg * to the same file, so unlink it unconditionally.
420 1.96 dbj */
421 1.96 dbj (void)unlink(tmpl);
422 1.61 simonb }
423 1.61 simonb return (ret);
424 1.61 simonb } else
425 1.61 simonb return (link(from_name, to_name));
426 1.61 simonb }
427 1.61 simonb
428 1.61 simonb /*
429 1.61 simonb * do_symlink --
430 1.61 simonb * make a symbolic link, obeying dorename if set
431 1.61 simonb * exit on failure
432 1.61 simonb */
433 1.61 simonb void
434 1.61 simonb do_symlink(char *from_name, char *to_name)
435 1.61 simonb {
436 1.61 simonb char tmpl[MAXPATHLEN];
437 1.61 simonb
438 1.61 simonb if (dorename) {
439 1.61 simonb (void)snprintf(tmpl, sizeof(tmpl), "%s/inst.XXXXXX",
440 1.61 simonb xdirname(to_name));
441 1.91 christos /* This usage is safe. */
442 1.61 simonb if (mktemp(tmpl) == NULL)
443 1.66 tv err(1, "%s: mktemp", tmpl);
444 1.61 simonb
445 1.61 simonb if (symlink(from_name, tmpl) == -1)
446 1.61 simonb err(1, "symlink %s -> %s", from_name, tmpl);
447 1.61 simonb if (rename(tmpl, to_name) == -1) {
448 1.61 simonb /* remove temporary link before exiting */
449 1.61 simonb (void)unlink(tmpl);
450 1.61 simonb err(1, "%s: rename", to_name);
451 1.61 simonb }
452 1.61 simonb } else {
453 1.61 simonb if (symlink(from_name, to_name) == -1)
454 1.61 simonb err(1, "symlink %s -> %s", from_name, to_name);
455 1.61 simonb }
456 1.61 simonb }
457 1.61 simonb
458 1.61 simonb /*
459 1.16 christos * makelink --
460 1.16 christos * make a link from source to destination
461 1.16 christos */
462 1.16 christos void
463 1.48 simonb makelink(char *from_name, char *to_name)
464 1.16 christos {
465 1.53 lukem char src[MAXPATHLEN], dst[MAXPATHLEN], lnk[MAXPATHLEN];
466 1.68 lukem struct stat to_sb;
467 1.16 christos
468 1.16 christos /* Try hard links first */
469 1.16 christos if (dolink & (LN_HARD|LN_MIXED)) {
470 1.61 simonb if (do_link(from_name, to_name) == -1) {
471 1.16 christos if ((dolink & LN_HARD) || errno != EXDEV)
472 1.16 christos err(1, "link %s -> %s", from_name, to_name);
473 1.68 lukem } else {
474 1.68 lukem if (stat(to_name, &to_sb))
475 1.68 lukem err(1, "%s: stat", to_name);
476 1.69 lukem if (S_ISREG(to_sb.st_mode)) {
477 1.69 lukem /* XXX: only metalog hardlinked files */
478 1.69 lukem int omode;
479 1.69 lukem char *oowner, *ogroup, *offlags;
480 1.85 lukem char *dres;
481 1.69 lukem
482 1.69 lukem /* XXX: use underlying perms */
483 1.69 lukem omode = mode;
484 1.69 lukem mode = (to_sb.st_mode & 0777);
485 1.69 lukem oowner = owner;
486 1.69 lukem owner = NULL;
487 1.69 lukem ogroup = group;
488 1.69 lukem group = NULL;
489 1.69 lukem offlags = fflags;
490 1.69 lukem fflags = NULL;
491 1.85 lukem switch (digesttype) {
492 1.85 lukem case DIGEST_MD5:
493 1.85 lukem dres = MD5File(from_name, NULL);
494 1.85 lukem break;
495 1.85 lukem case DIGEST_RMD160:
496 1.85 lukem dres = RMD160File(from_name, NULL);
497 1.85 lukem break;
498 1.85 lukem case DIGEST_SHA1:
499 1.85 lukem dres = SHA1File(from_name, NULL);
500 1.85 lukem break;
501 1.85 lukem default:
502 1.85 lukem dres = NULL;
503 1.85 lukem }
504 1.85 lukem metadata_log(to_name, "file", NULL, NULL, dres);
505 1.85 lukem free(dres);
506 1.69 lukem mode = omode;
507 1.69 lukem owner = oowner;
508 1.69 lukem group = ogroup;
509 1.69 lukem fflags = offlags;
510 1.69 lukem }
511 1.16 christos return;
512 1.57 lukem }
513 1.16 christos }
514 1.16 christos
515 1.16 christos /* Symbolic links */
516 1.16 christos if (dolink & LN_ABSOLUTE) {
517 1.16 christos /* Convert source path to absolute */
518 1.16 christos if (realpath(from_name, src) == NULL)
519 1.66 tv err(1, "%s: realpath", from_name);
520 1.61 simonb do_symlink(src, to_name);
521 1.90 lukem /* XXX: src may point outside of destdir */
522 1.84 lukem metadata_log(to_name, "link", NULL, src, NULL);
523 1.16 christos return;
524 1.16 christos }
525 1.16 christos
526 1.16 christos if (dolink & LN_RELATIVE) {
527 1.61 simonb char *cp, *d, *s;
528 1.16 christos
529 1.16 christos /* Resolve pathnames */
530 1.16 christos if (realpath(from_name, src) == NULL)
531 1.66 tv err(1, "%s: realpath", from_name);
532 1.61 simonb
533 1.61 simonb /*
534 1.61 simonb * The last component of to_name may be a symlink,
535 1.61 simonb * so use realpath to resolve only the directory.
536 1.61 simonb */
537 1.63 perry cp = xdirname(to_name);
538 1.61 simonb if (realpath(cp, dst) == NULL)
539 1.66 tv err(1, "%s: realpath", cp);
540 1.61 simonb /* .. and add the last component */
541 1.61 simonb if (strcmp(dst, "/") != 0) {
542 1.61 simonb if (strlcat(dst, "/", sizeof(dst)) > sizeof(dst))
543 1.61 simonb errx(1, "resolved pathname too long");
544 1.61 simonb }
545 1.61 simonb cp = xbasename(to_name);
546 1.61 simonb if (strlcat(dst, cp, sizeof(dst)) > sizeof(dst))
547 1.61 simonb errx(1, "resolved pathname too long");
548 1.16 christos
549 1.16 christos /* trim common path components */
550 1.16 christos for (s = src, d = dst; *s == *d; s++, d++)
551 1.16 christos continue;
552 1.16 christos while (*s != '/')
553 1.16 christos s--, d--;
554 1.16 christos
555 1.16 christos /* count the number of directories we need to backtrack */
556 1.16 christos for (++d, lnk[0] = '\0'; *d; d++)
557 1.16 christos if (*d == '/')
558 1.78 itojun (void)strlcat(lnk, "../", sizeof(lnk));
559 1.16 christos
560 1.78 itojun (void)strlcat(lnk, ++s, sizeof(lnk));
561 1.16 christos
562 1.90 lukem do_symlink(lnk, to_name);
563 1.90 lukem /* XXX: lnk may point outside of destdir */
564 1.90 lukem metadata_log(to_name, "link", NULL, lnk, NULL);
565 1.16 christos return;
566 1.16 christos }
567 1.16 christos
568 1.16 christos /*
569 1.16 christos * If absolute or relative was not specified,
570 1.16 christos * try the names the user provided
571 1.16 christos */
572 1.61 simonb do_symlink(from_name, to_name);
573 1.90 lukem /* XXX: from_name may point outside of destdir */
574 1.84 lukem metadata_log(to_name, "link", NULL, from_name, NULL);
575 1.16 christos }
576 1.16 christos
577 1.16 christos /*
578 1.1 cgd * install --
579 1.1 cgd * build a path name and install the file
580 1.1 cgd */
581 1.5 jtc void
582 1.50 lukem install(char *from_name, char *to_name, u_int flags)
583 1.1 cgd {
584 1.65 tv struct stat from_sb;
585 1.80 lukem #if ! HAVE_NBTOOL_CONFIG_H
586 1.65 tv struct stat to_sb;
587 1.65 tv #endif
588 1.53 lukem struct timeval tv[2];
589 1.60 dillo int devnull, from_fd, to_fd, serrno, tmpmode;
590 1.84 lukem char *p, tmpl[MAXPATHLEN], *oto_name, *digestresult;
591 1.5 jtc
592 1.71 lukem if (!dolink) {
593 1.71 lukem /* ensure that from_sb & tv are sane if !dolink */
594 1.71 lukem if (stat(from_name, &from_sb))
595 1.71 lukem err(1, "%s: stat", from_name);
596 1.87 jmc #if BSD4_4 && !HAVE_NBTOOL_CONFIG_H
597 1.71 lukem TIMESPEC_TO_TIMEVAL(&tv[0], &from_sb.st_atimespec);
598 1.71 lukem TIMESPEC_TO_TIMEVAL(&tv[1], &from_sb.st_mtimespec);
599 1.70 lukem #else
600 1.71 lukem tv[0].tv_sec = from_sb.st_atime;
601 1.71 lukem tv[0].tv_usec = 0;
602 1.71 lukem tv[1].tv_sec = from_sb.st_mtime;
603 1.71 lukem tv[1].tv_usec = 0;
604 1.70 lukem #endif
605 1.71 lukem }
606 1.70 lukem
607 1.5 jtc if (flags & DIRECTORY || strcmp(from_name, _PATH_DEVNULL)) {
608 1.56 perry if (!dolink) {
609 1.56 perry if (!S_ISREG(from_sb.st_mode))
610 1.56 perry errx(1, "%s: not a regular file", from_name);
611 1.56 perry }
612 1.5 jtc /* Build the target path. */
613 1.5 jtc if (flags & DIRECTORY) {
614 1.5 jtc (void)snprintf(pathbuf, sizeof(pathbuf), "%s/%s",
615 1.5 jtc to_name,
616 1.21 lukem (p = strrchr(from_name, '/')) ? ++p : from_name);
617 1.1 cgd to_name = pathbuf;
618 1.1 cgd }
619 1.1 cgd devnull = 0;
620 1.5 jtc } else {
621 1.65 tv #if HAVE_STRUCT_STAT_ST_FLAGS
622 1.5 jtc from_sb.st_flags = 0; /* XXX */
623 1.65 tv #endif
624 1.1 cgd devnull = 1;
625 1.5 jtc }
626 1.1 cgd
627 1.5 jtc /*
628 1.5 jtc * Unlink now... avoid ETXTBSY errors later. Try and turn
629 1.5 jtc * off the append/immutable bits -- if we fail, go ahead,
630 1.5 jtc * it might work.
631 1.5 jtc */
632 1.80 lukem #if ! HAVE_NBTOOL_CONFIG_H
633 1.5 jtc if (stat(to_name, &to_sb) == 0 &&
634 1.5 jtc to_sb.st_flags & (NOCHANGEBITS))
635 1.5 jtc (void)chflags(to_name, to_sb.st_flags & ~(NOCHANGEBITS));
636 1.65 tv #endif
637 1.33 christos if (dorename) {
638 1.64 msaitoh (void)snprintf(tmpl, sizeof(tmpl), "%s/inst.XXXXXX",
639 1.61 simonb xdirname(to_name));
640 1.33 christos oto_name = to_name;
641 1.33 christos to_name = tmpl;
642 1.33 christos } else {
643 1.37 christos oto_name = NULL; /* pacify gcc */
644 1.33 christos if (dobackup)
645 1.33 christos backup(to_name);
646 1.33 christos else
647 1.33 christos (void)unlink(to_name);
648 1.33 christos }
649 1.16 christos
650 1.16 christos if (dolink) {
651 1.61 simonb makelink(from_name, dorename ? oto_name : to_name);
652 1.16 christos return;
653 1.16 christos }
654 1.1 cgd
655 1.5 jtc /* Create target. */
656 1.33 christos if (dorename) {
657 1.33 christos if ((to_fd = mkstemp(to_name)) == -1)
658 1.66 tv err(1, "%s: mkstemp", to_name);
659 1.33 christos } else {
660 1.33 christos if ((to_fd = open(to_name,
661 1.33 christos O_CREAT | O_WRONLY | O_TRUNC, S_IRUSR | S_IWUSR)) < 0)
662 1.66 tv err(1, "%s: open", to_name);
663 1.33 christos }
664 1.86 lukem digestresult = NULL;
665 1.1 cgd if (!devnull) {
666 1.1 cgd if ((from_fd = open(from_name, O_RDONLY, 0)) < 0) {
667 1.1 cgd (void)unlink(to_name);
668 1.66 tv err(1, "%s: open", from_name);
669 1.1 cgd }
670 1.84 lukem digestresult =
671 1.84 lukem copy(from_fd, from_name, to_fd, to_name, from_sb.st_size);
672 1.1 cgd (void)close(from_fd);
673 1.1 cgd }
674 1.9 jonathan
675 1.9 jonathan if (dostrip) {
676 1.1 cgd strip(to_name);
677 1.9 jonathan
678 1.9 jonathan /*
679 1.9 jonathan * Re-open our fd on the target, in case we used a strip
680 1.9 jonathan * that does not work in-place -- like gnu binutils strip.
681 1.9 jonathan */
682 1.9 jonathan close(to_fd);
683 1.9 jonathan if ((to_fd = open(to_name, O_RDONLY, S_IRUSR | S_IWUSR)) < 0)
684 1.69 lukem err(1, "stripping %s", to_name);
685 1.69 lukem }
686 1.69 lukem
687 1.69 lukem if (afterinstallcmd != NULL) {
688 1.69 lukem afterinstall(afterinstallcmd, to_name, 1);
689 1.69 lukem
690 1.69 lukem /*
691 1.69 lukem * Re-open our fd on the target, in case we used an
692 1.69 lukem * after-install command that does not work in-place
693 1.69 lukem */
694 1.69 lukem close(to_fd);
695 1.69 lukem if ((to_fd = open(to_name, O_RDONLY, S_IRUSR | S_IWUSR)) < 0)
696 1.69 lukem err(1, "running after install command on %s", to_name);
697 1.9 jonathan }
698 1.9 jonathan
699 1.41 cgd /*
700 1.41 cgd * Set owner, group, mode for target; do the chown first,
701 1.41 cgd * chown may lose the setuid bits.
702 1.41 cgd */
703 1.50 lukem if (!dounpriv &&
704 1.50 lukem (flags & (HASUID | HASGID)) && fchown(to_fd, uid, gid) == -1) {
705 1.41 cgd serrno = errno;
706 1.41 cgd (void)unlink(to_name);
707 1.41 cgd errx(1, "%s: chown/chgrp: %s", to_name, strerror(serrno));
708 1.1 cgd }
709 1.60 dillo tmpmode = mode;
710 1.58 tv if (dounpriv)
711 1.60 dillo tmpmode &= S_IRWXU|S_IRWXG|S_IRWXO;
712 1.60 dillo if (fchmod(to_fd, tmpmode) == -1) {
713 1.5 jtc serrno = errno;
714 1.5 jtc (void)unlink(to_name);
715 1.5 jtc errx(1, "%s: chmod: %s", to_name, strerror(serrno));
716 1.5 jtc }
717 1.5 jtc
718 1.5 jtc /*
719 1.26 christos * Preserve the date of the source file.
720 1.26 christos */
721 1.26 christos if (dopreserve) {
722 1.65 tv #if HAVE_FUTIMES
723 1.65 tv if (futimes(to_fd, tv) == -1)
724 1.65 tv warn("%s: futimes", to_name);
725 1.65 tv #else
726 1.65 tv if (utimes(to_name, tv) == -1)
727 1.66 tv warn("%s: utimes", to_name);
728 1.65 tv #endif
729 1.5 jtc }
730 1.5 jtc
731 1.1 cgd (void)close(to_fd);
732 1.33 christos
733 1.50 lukem if (dorename) {
734 1.33 christos if (rename(to_name, oto_name) == -1)
735 1.33 christos err(1, "%s: rename", to_name);
736 1.50 lukem to_name = oto_name;
737 1.50 lukem }
738 1.33 christos
739 1.50 lukem /*
740 1.50 lukem * If provided a set of flags, set them, otherwise, preserve the
741 1.50 lukem * flags, except for the dump flag.
742 1.50 lukem */
743 1.80 lukem #if ! HAVE_NBTOOL_CONFIG_H
744 1.50 lukem if (!dounpriv && chflags(to_name,
745 1.51 lukem flags & SETFLAGS ? fileflags : from_sb.st_flags & ~UF_NODUMP) == -1)
746 1.51 lukem {
747 1.50 lukem if (errno != EOPNOTSUPP || (from_sb.st_flags & ~UF_NODUMP) != 0)
748 1.50 lukem warn("%s: chflags", to_name);
749 1.50 lukem }
750 1.65 tv #endif
751 1.50 lukem
752 1.84 lukem metadata_log(to_name, "file", tv, NULL, digestresult);
753 1.84 lukem free(digestresult);
754 1.1 cgd }
755 1.1 cgd
756 1.1 cgd /*
757 1.1 cgd * copy --
758 1.1 cgd * copy from one file to another
759 1.1 cgd */
760 1.84 lukem char *
761 1.48 simonb copy(int from_fd, char *from_name, int to_fd, char *to_name, off_t size)
762 1.1 cgd {
763 1.53 lukem ssize_t nr, nw;
764 1.53 lukem int serrno;
765 1.95 mrg u_char *p;
766 1.95 mrg u_char buf[MAXBSIZE];
767 1.84 lukem MD5_CTX ctxMD5;
768 1.84 lukem RMD160_CTX ctxRMD160;
769 1.84 lukem SHA1_CTX ctxSHA1;
770 1.84 lukem
771 1.84 lukem switch (digesttype) {
772 1.84 lukem case DIGEST_MD5:
773 1.84 lukem MD5Init(&ctxMD5);
774 1.84 lukem break;
775 1.84 lukem case DIGEST_RMD160:
776 1.84 lukem RMD160Init(&ctxRMD160);
777 1.84 lukem break;
778 1.84 lukem case DIGEST_SHA1:
779 1.84 lukem SHA1Init(&ctxSHA1);
780 1.84 lukem break;
781 1.84 lukem case DIGEST_NONE:
782 1.84 lukem default:
783 1.84 lukem break;
784 1.84 lukem }
785 1.5 jtc /*
786 1.28 wsanchez * There's no reason to do anything other than close the file
787 1.28 wsanchez * now if it's empty, so let's not bother.
788 1.5 jtc */
789 1.28 wsanchez if (size > 0) {
790 1.45 chs
791 1.28 wsanchez /*
792 1.45 chs * Mmap and write if less than 8M (the limit is so we
793 1.45 chs * don't totally trash memory on big files). This is
794 1.45 chs * really a minor hack, but it wins some CPU back.
795 1.28 wsanchez */
796 1.45 chs
797 1.28 wsanchez if (size <= 8 * 1048576) {
798 1.28 wsanchez if ((p = mmap(NULL, (size_t)size, PROT_READ,
799 1.45 chs MAP_FILE|MAP_SHARED, from_fd, (off_t)0))
800 1.45 chs == MAP_FAILED) {
801 1.45 chs goto mmap_failed;
802 1.36 thorpej }
803 1.77 thorpej #if defined(MADV_SEQUENTIAL) && !defined(__APPLE__)
804 1.39 christos if (madvise(p, (size_t)size, MADV_SEQUENTIAL) == -1
805 1.39 christos && errno != EOPNOTSUPP)
806 1.38 sommerfe warnx("madvise: %s", strerror(errno));
807 1.44 cgd #endif
808 1.38 sommerfe
809 1.36 thorpej if (write(to_fd, p, size) != size) {
810 1.36 thorpej serrno = errno;
811 1.36 thorpej (void)unlink(to_name);
812 1.66 tv errx(1, "%s: write: %s",
813 1.36 thorpej to_name, strerror(serrno));
814 1.36 thorpej }
815 1.84 lukem switch (digesttype) {
816 1.84 lukem case DIGEST_MD5:
817 1.84 lukem MD5Update(&ctxMD5, p, size);
818 1.84 lukem break;
819 1.84 lukem case DIGEST_RMD160:
820 1.84 lukem RMD160Update(&ctxRMD160, p, size);
821 1.84 lukem break;
822 1.84 lukem case DIGEST_SHA1:
823 1.84 lukem SHA1Update(&ctxSHA1, p, size);
824 1.84 lukem break;
825 1.84 lukem default:
826 1.84 lukem break;
827 1.84 lukem }
828 1.81 christos (void)munmap(p, size);
829 1.28 wsanchez } else {
830 1.84 lukem mmap_failed:
831 1.36 thorpej while ((nr = read(from_fd, buf, sizeof(buf))) > 0) {
832 1.28 wsanchez if ((nw = write(to_fd, buf, nr)) != nr) {
833 1.28 wsanchez serrno = errno;
834 1.28 wsanchez (void)unlink(to_name);
835 1.66 tv errx(1, "%s: write: %s", to_name,
836 1.45 chs strerror(nw > 0 ? EIO : serrno));
837 1.28 wsanchez }
838 1.84 lukem switch (digesttype) {
839 1.84 lukem case DIGEST_MD5:
840 1.84 lukem MD5Update(&ctxMD5, buf, nr);
841 1.84 lukem break;
842 1.84 lukem case DIGEST_RMD160:
843 1.84 lukem RMD160Update(&ctxRMD160, buf, nr);
844 1.84 lukem break;
845 1.84 lukem case DIGEST_SHA1:
846 1.84 lukem SHA1Update(&ctxSHA1, buf, nr);
847 1.84 lukem break;
848 1.84 lukem default:
849 1.84 lukem break;
850 1.84 lukem }
851 1.36 thorpej }
852 1.28 wsanchez if (nr != 0) {
853 1.5 jtc serrno = errno;
854 1.5 jtc (void)unlink(to_name);
855 1.66 tv errx(1, "%s: read: %s", from_name, strerror(serrno));
856 1.5 jtc }
857 1.1 cgd }
858 1.1 cgd }
859 1.84 lukem switch (digesttype) {
860 1.84 lukem case DIGEST_MD5:
861 1.84 lukem return MD5End(&ctxMD5, NULL);
862 1.84 lukem case DIGEST_RMD160:
863 1.84 lukem return RMD160End(&ctxRMD160, NULL);
864 1.84 lukem case DIGEST_SHA1:
865 1.84 lukem return SHA1End(&ctxSHA1, NULL);
866 1.84 lukem default:
867 1.84 lukem return NULL;
868 1.84 lukem }
869 1.1 cgd }
870 1.1 cgd
871 1.1 cgd /*
872 1.1 cgd * strip --
873 1.1 cgd * use strip(1) to strip the target file
874 1.1 cgd */
875 1.5 jtc void
876 1.48 simonb strip(char *to_name)
877 1.1 cgd {
878 1.102 joerg static const char exec_failure[] = ": exec of strip failed: ";
879 1.53 lukem int serrno, status;
880 1.102 joerg const char *stripprog, *progname;
881 1.102 joerg char *cmd;
882 1.102 joerg
883 1.102 joerg if ((stripprog = getenv("STRIP")) == NULL) {
884 1.102 joerg #ifdef TARGET_STRIP
885 1.102 joerg stripprog = TARGET_STRIP;
886 1.102 joerg #else
887 1.102 joerg stripprog = _PATH_STRIP;
888 1.102 joerg #endif
889 1.102 joerg }
890 1.102 joerg
891 1.102 joerg cmd = NULL;
892 1.102 joerg
893 1.102 joerg if (stripArgs) {
894 1.102 joerg /*
895 1.102 joerg * Build up a command line and let /bin/sh
896 1.102 joerg * parse the arguments.
897 1.102 joerg */
898 1.102 joerg int ret = asprintf(&cmd, "%s %s %s", stripprog, stripArgs,
899 1.102 joerg to_name);
900 1.102 joerg
901 1.102 joerg if (ret == -1 || cmd == NULL)
902 1.102 joerg err(1, "asprintf failed");
903 1.102 joerg }
904 1.1 cgd
905 1.1 cgd switch (vfork()) {
906 1.1 cgd case -1:
907 1.5 jtc serrno = errno;
908 1.5 jtc (void)unlink(to_name);
909 1.22 thorpej errx(1, "vfork: %s", strerror(serrno));
910 1.61 simonb /*NOTREACHED*/
911 1.1 cgd case 0:
912 1.28 wsanchez
913 1.102 joerg if (stripArgs)
914 1.28 wsanchez execl(_PATH_BSHELL, "sh", "-c", cmd, NULL);
915 1.102 joerg else
916 1.40 cgd execlp(stripprog, "strip", to_name, NULL);
917 1.28 wsanchez
918 1.102 joerg progname = getprogname();
919 1.102 joerg write(STDERR_FILENO, progname, strlen(progname));
920 1.102 joerg write(STDERR_FILENO, exec_failure, strlen(exec_failure));
921 1.102 joerg write(STDERR_FILENO, stripprog, strlen(stripprog));
922 1.102 joerg write(STDERR_FILENO, "\n", 1);
923 1.22 thorpej _exit(1);
924 1.61 simonb /*NOTREACHED*/
925 1.1 cgd default:
926 1.1 cgd if (wait(&status) == -1 || status)
927 1.5 jtc (void)unlink(to_name);
928 1.1 cgd }
929 1.102 joerg
930 1.102 joerg free(cmd);
931 1.32 hubertf }
932 1.32 hubertf
933 1.32 hubertf /*
934 1.69 lukem * afterinstall --
935 1.69 lukem * run provided command on the target file or directory after it's been
936 1.69 lukem * installed and stripped, but before permissions are set or it's renamed
937 1.69 lukem */
938 1.69 lukem void
939 1.69 lukem afterinstall(const char *command, const char *to_name, int errunlink)
940 1.69 lukem {
941 1.69 lukem int serrno, status;
942 1.69 lukem char *cmd;
943 1.69 lukem
944 1.69 lukem switch (vfork()) {
945 1.69 lukem case -1:
946 1.69 lukem serrno = errno;
947 1.69 lukem if (errunlink)
948 1.69 lukem (void)unlink(to_name);
949 1.69 lukem errx(1, "vfork: %s", strerror(serrno));
950 1.69 lukem /*NOTREACHED*/
951 1.69 lukem case 0:
952 1.69 lukem /*
953 1.69 lukem * build up a command line and let /bin/sh
954 1.69 lukem * parse the arguments
955 1.69 lukem */
956 1.69 lukem cmd = (char*)malloc(sizeof(char)*
957 1.69 lukem (2+strlen(command)+
958 1.69 lukem strlen(to_name)));
959 1.69 lukem
960 1.69 lukem if (cmd == NULL)
961 1.69 lukem errx(1, "%s", strerror(ENOMEM));
962 1.69 lukem
963 1.69 lukem sprintf(cmd, "%s %s", command, to_name);
964 1.69 lukem
965 1.69 lukem execl(_PATH_BSHELL, "sh", "-c", cmd, NULL);
966 1.69 lukem
967 1.69 lukem warn("%s: exec of after install command", command);
968 1.69 lukem _exit(1);
969 1.69 lukem /*NOTREACHED*/
970 1.69 lukem default:
971 1.69 lukem if ((wait(&status) == -1 || status) && errunlink)
972 1.69 lukem (void)unlink(to_name);
973 1.69 lukem }
974 1.69 lukem }
975 1.69 lukem
976 1.69 lukem /*
977 1.61 simonb * backup --
978 1.61 simonb * backup file "to_name" to to_name.suffix
979 1.61 simonb * if suffix contains a "%", it's taken as a printf(3) pattern
980 1.61 simonb * used for a numbered backup.
981 1.32 hubertf */
982 1.32 hubertf void
983 1.48 simonb backup(const char *to_name)
984 1.32 hubertf {
985 1.61 simonb char bname[FILENAME_MAX];
986 1.32 hubertf
987 1.35 hubertf if (numberedbackup) {
988 1.32 hubertf /* Do numbered backup */
989 1.32 hubertf int cnt;
990 1.32 hubertf char suffix_expanded[FILENAME_MAX];
991 1.32 hubertf
992 1.32 hubertf cnt=0;
993 1.32 hubertf do {
994 1.50 lukem (void)snprintf(suffix_expanded, FILENAME_MAX, suffix,
995 1.50 lukem cnt);
996 1.61 simonb (void)snprintf(bname, FILENAME_MAX, "%s%s", to_name,
997 1.61 simonb suffix_expanded);
998 1.32 hubertf cnt++;
999 1.61 simonb } while (access(bname, F_OK) == 0);
1000 1.32 hubertf } else {
1001 1.32 hubertf /* Do simple backup */
1002 1.61 simonb (void)snprintf(bname, FILENAME_MAX, "%s%s", to_name, suffix);
1003 1.32 hubertf }
1004 1.32 hubertf
1005 1.61 simonb (void)rename(to_name, bname);
1006 1.1 cgd }
1007 1.1 cgd
1008 1.1 cgd /*
1009 1.5 jtc * install_dir --
1010 1.47 wiz * build directory hierarchy
1011 1.2 jtc */
1012 1.7 jtc void
1013 1.50 lukem install_dir(char *path, u_int flags)
1014 1.2 jtc {
1015 1.53 lukem char *p;
1016 1.53 lukem struct stat sb;
1017 1.53 lukem int ch;
1018 1.2 jtc
1019 1.4 cgd for (p = path;; ++p)
1020 1.4 cgd if (!*p || (p != path && *p == '/')) {
1021 1.2 jtc ch = *p;
1022 1.2 jtc *p = '\0';
1023 1.2 jtc if (stat(path, &sb)) {
1024 1.2 jtc if (errno != ENOENT || mkdir(path, 0777) < 0) {
1025 1.66 tv err(1, "%s: mkdir", path);
1026 1.2 jtc }
1027 1.2 jtc }
1028 1.97 daniel else if (!S_ISDIR(sb.st_mode)) {
1029 1.97 daniel errx(1, "%s exists but is not a directory", path);
1030 1.97 daniel }
1031 1.2 jtc if (!(*p = ch))
1032 1.4 cgd break;
1033 1.2 jtc }
1034 1.2 jtc
1035 1.69 lukem if (afterinstallcmd != NULL)
1036 1.69 lukem afterinstall(afterinstallcmd, path, 0);
1037 1.69 lukem
1038 1.50 lukem if (!dounpriv && (
1039 1.50 lukem ((flags & (HASUID | HASGID)) && chown(path, uid, gid) == -1)
1040 1.50 lukem || chmod(path, mode) == -1 )) {
1041 1.66 tv warn("%s: chown/chmod", path);
1042 1.41 cgd }
1043 1.84 lukem metadata_log(path, "dir", NULL, NULL, NULL);
1044 1.2 jtc }
1045 1.2 jtc
1046 1.2 jtc /*
1047 1.50 lukem * metadata_log --
1048 1.50 lukem * if metafp is not NULL, output mtree(8) full path name and settings to
1049 1.50 lukem * metafp, to allow permissions to be set correctly by other tools.
1050 1.50 lukem */
1051 1.50 lukem void
1052 1.59 perry metadata_log(const char *path, const char *type, struct timeval *tv,
1053 1.84 lukem const char *link, const char *digestresult)
1054 1.50 lukem {
1055 1.72 yamt static const char extra[] = { ' ', '\t', '\n', '\\', '#', '\0' };
1056 1.88 lukem const char *p;
1057 1.88 lukem char *buf;
1058 1.75 lukem size_t destlen;
1059 1.73 lukem struct flock metalog_lock;
1060 1.50 lukem
1061 1.50 lukem if (!metafp)
1062 1.50 lukem return;
1063 1.50 lukem buf = (char *)malloc(4 * strlen(path) + 1); /* buf for strsvis(3) */
1064 1.50 lukem if (buf == NULL) {
1065 1.50 lukem warnx("%s", strerror(ENOMEM));
1066 1.50 lukem return;
1067 1.50 lukem }
1068 1.73 lukem /* lock log file */
1069 1.73 lukem metalog_lock.l_start = 0;
1070 1.73 lukem metalog_lock.l_len = 0;
1071 1.73 lukem metalog_lock.l_whence = SEEK_SET;
1072 1.73 lukem metalog_lock.l_type = F_WRLCK;
1073 1.73 lukem if (fcntl(fileno(metafp), F_SETLKW, &metalog_lock) == -1) {
1074 1.50 lukem warn("can't lock %s", metafile);
1075 1.94 christos free(buf);
1076 1.50 lukem return;
1077 1.50 lukem }
1078 1.50 lukem
1079 1.88 lukem p = path; /* remove destdir */
1080 1.75 lukem if (destdir) {
1081 1.75 lukem destlen = strlen(destdir);
1082 1.76 lukem if (strncmp(p, destdir, destlen) == 0 &&
1083 1.76 lukem (p[destlen] == '/' || p[destlen] == '\0'))
1084 1.75 lukem p += destlen;
1085 1.75 lukem }
1086 1.75 lukem while (*p && *p == '/') /* remove leading /s */
1087 1.75 lukem p++;
1088 1.88 lukem strsvis(buf, p, VIS_CSTYLE, extra); /* encode name */
1089 1.88 lukem p = buf;
1090 1.75 lukem /* print details */
1091 1.76 lukem fprintf(metafp, ".%s%s type=%s mode=%#o", *p ? "/" : "", p, type, mode);
1092 1.89 lukem if (link) {
1093 1.89 lukem strsvis(buf, link, VIS_CSTYLE, extra); /* encode link */
1094 1.89 lukem fprintf(metafp, " link=%s", buf);
1095 1.89 lukem }
1096 1.52 tv if (owner)
1097 1.52 tv fprintf(metafp, " uname=%s", owner);
1098 1.52 tv if (group)
1099 1.52 tv fprintf(metafp, " gname=%s", group);
1100 1.52 tv if (fflags)
1101 1.52 tv fprintf(metafp, " flags=%s", fflags);
1102 1.54 lukem if (tags)
1103 1.54 lukem fprintf(metafp, " tags=%s", tags);
1104 1.57 lukem if (tv != NULL && dopreserve)
1105 1.104 christos fprintf(metafp, " time=%lld.%ld",
1106 1.104 christos (long long)tv[1].tv_sec, (long)tv[1].tv_usec);
1107 1.84 lukem if (digestresult && digest)
1108 1.84 lukem fprintf(metafp, " %s=%s", digest, digestresult);
1109 1.50 lukem fputc('\n', metafp);
1110 1.50 lukem fflush(metafp); /* flush output */
1111 1.73 lukem /* unlock log file */
1112 1.73 lukem metalog_lock.l_type = F_UNLCK;
1113 1.73 lukem if (fcntl(fileno(metafp), F_SETLKW, &metalog_lock) == -1) {
1114 1.50 lukem warn("can't unlock %s", metafile);
1115 1.50 lukem }
1116 1.50 lukem free(buf);
1117 1.50 lukem }
1118 1.50 lukem
1119 1.61 simonb /*
1120 1.61 simonb * xbasename --
1121 1.61 simonb * libc basename(3) that returns a pointer to a static buffer
1122 1.61 simonb * instead of overwriting that passed-in string.
1123 1.61 simonb */
1124 1.61 simonb char *
1125 1.61 simonb xbasename(char *path)
1126 1.61 simonb {
1127 1.61 simonb static char tmp[MAXPATHLEN];
1128 1.61 simonb
1129 1.61 simonb (void)strlcpy(tmp, path, sizeof(tmp));
1130 1.61 simonb return (basename(tmp));
1131 1.61 simonb }
1132 1.61 simonb
1133 1.61 simonb /*
1134 1.61 simonb * xdirname --
1135 1.61 simonb * libc dirname(3) that returns a pointer to a static buffer
1136 1.61 simonb * instead of overwriting that passed-in string.
1137 1.61 simonb */
1138 1.61 simonb char *
1139 1.61 simonb xdirname(char *path)
1140 1.61 simonb {
1141 1.61 simonb static char tmp[MAXPATHLEN];
1142 1.50 lukem
1143 1.61 simonb (void)strlcpy(tmp, path, sizeof(tmp));
1144 1.61 simonb return (dirname(tmp));
1145 1.61 simonb }
1146 1.50 lukem
1147 1.50 lukem /*
1148 1.1 cgd * usage --
1149 1.1 cgd * print a usage message and die
1150 1.1 cgd */
1151 1.5 jtc void
1152 1.48 simonb usage(void)
1153 1.1 cgd {
1154 1.69 lukem const char *prog;
1155 1.69 lukem
1156 1.69 lukem prog = getprogname();
1157 1.53 lukem
1158 1.69 lukem (void)fprintf(stderr,
1159 1.75 lukem "usage: %s [-Ubcprs] [-M log] [-D dest] [-T tags] [-B suffix]\n"
1160 1.75 lukem " [-a aftercmd] [-f flags] [-m mode] [-N dbdir] [-o owner] [-g group] \n"
1161 1.84 lukem " [-l linkflags] [-h hash] [-S stripflags] file1 file2\n"
1162 1.75 lukem " %s [-Ubcprs] [-M log] [-D dest] [-T tags] [-B suffix]\n"
1163 1.75 lukem " [-a aftercmd] [-f flags] [-m mode] [-N dbdir] [-o owner] [-g group]\n"
1164 1.84 lukem " [-l linkflags] [-h hash] [-S stripflags] file1 ... fileN directory\n"
1165 1.75 lukem " %s -d [-Up] [-M log] [-D dest] [-T tags] [-a aftercmd] [-m mode]\n"
1166 1.74 lukem " [-N dbdir] [-o owner] [-g group] directory ...\n",
1167 1.69 lukem prog, prog, prog);
1168 1.6 jtc exit(1);
1169 1.1 cgd }
1170