Make sure UFS disallows mknod()'s with type VDIR.
[dragonfly.git] / contrib / libarchive-2 / tar / util.c
blob1d50dcd801052132227a043f6cea07387bda41ef
1 /*-
2 * Copyright (c) 2003-2007 Tim Kientzle
3 * All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 #include "bsdtar_platform.h"
27 __FBSDID("$FreeBSD: src/usr.bin/tar/util.c,v 1.18 2008/01/02 00:21:27 kientzle Exp $");
29 #ifdef HAVE_SYS_STAT_H
30 #include <sys/stat.h>
31 #endif
32 #ifdef HAVE_SYS_TYPES_H
33 #include <sys/types.h> /* Linux doesn't define mode_t, etc. in sys/stat.h. */
34 #endif
35 #include <ctype.h>
36 #ifdef HAVE_ERRNO_H
37 #include <errno.h>
38 #endif
39 #ifdef HAVE_STDARG_H
40 #include <stdarg.h>
41 #endif
42 #include <stdio.h>
43 #ifdef HAVE_STDLIB_H
44 #include <stdlib.h>
45 #endif
46 #ifdef HAVE_STRING_H
47 #include <string.h>
48 #endif
50 #include "bsdtar.h"
52 static void bsdtar_vwarnc(struct bsdtar *, int code,
53 const char *fmt, va_list ap);
56 * Print a string, taking care with any non-printable characters.
59 void
60 safe_fprintf(FILE *f, const char *fmt, ...)
62 char *buff;
63 char *buff_heap;
64 int buff_length;
65 int length;
66 va_list ap;
67 char *p;
68 unsigned i;
69 char buff_stack[256];
70 char copy_buff[256];
72 /* Use a stack-allocated buffer if we can, for speed and safety. */
73 buff_heap = NULL;
74 buff_length = sizeof(buff_stack);
75 buff = buff_stack;
77 va_start(ap, fmt);
78 length = vsnprintf(buff, buff_length, fmt, ap);
79 va_end(ap);
80 /* If the result is too large, allocate a buffer on the heap. */
81 if (length >= buff_length) {
82 buff_length = length+1;
83 buff_heap = malloc(buff_length);
84 /* Failsafe: use the truncated string if malloc fails. */
85 if (buff_heap != NULL) {
86 buff = buff_heap;
87 va_start(ap, fmt);
88 length = vsnprintf(buff, buff_length, fmt, ap);
89 va_end(ap);
93 /* Write data, expanding unprintable characters. */
94 p = buff;
95 i = 0;
96 while (*p != '\0') {
97 unsigned char c = *p++;
99 if (isprint(c) && c != '\\')
100 copy_buff[i++] = c;
101 else {
102 copy_buff[i++] = '\\';
103 switch (c) {
104 case '\a': copy_buff[i++] = 'a'; break;
105 case '\b': copy_buff[i++] = 'b'; break;
106 case '\f': copy_buff[i++] = 'f'; break;
107 case '\n': copy_buff[i++] = 'n'; break;
108 #if '\r' != '\n'
109 /* On some platforms, \n and \r are the same. */
110 case '\r': copy_buff[i++] = 'r'; break;
111 #endif
112 case '\t': copy_buff[i++] = 't'; break;
113 case '\v': copy_buff[i++] = 'v'; break;
114 case '\\': copy_buff[i++] = '\\'; break;
115 default:
116 sprintf(copy_buff + i, "%03o", c);
117 i += 3;
121 /* If our temp buffer is full, dump it and keep going. */
122 if (i > (sizeof(copy_buff) - 8)) {
123 copy_buff[i++] = '\0';
124 fprintf(f, "%s", copy_buff);
125 i = 0;
128 copy_buff[i++] = '\0';
129 fprintf(f, "%s", copy_buff);
131 /* If we allocated a heap-based buffer, free it now. */
132 if (buff_heap != NULL)
133 free(buff_heap);
136 static void
137 bsdtar_vwarnc(struct bsdtar *bsdtar, int code, const char *fmt, va_list ap)
139 fprintf(stderr, "%s: ", bsdtar->progname);
140 vfprintf(stderr, fmt, ap);
141 if (code != 0)
142 fprintf(stderr, ": %s", strerror(code));
143 fprintf(stderr, "\n");
146 void
147 bsdtar_warnc(struct bsdtar *bsdtar, int code, const char *fmt, ...)
149 va_list ap;
151 va_start(ap, fmt);
152 bsdtar_vwarnc(bsdtar, code, fmt, ap);
153 va_end(ap);
156 void
157 bsdtar_errc(struct bsdtar *bsdtar, int eval, int code, const char *fmt, ...)
159 va_list ap;
161 va_start(ap, fmt);
162 bsdtar_vwarnc(bsdtar, code, fmt, ap);
163 va_end(ap);
164 exit(eval);
168 yes(const char *fmt, ...)
170 char buff[32];
171 char *p;
172 ssize_t l;
174 va_list ap;
175 va_start(ap, fmt);
176 vfprintf(stderr, fmt, ap);
177 va_end(ap);
178 fprintf(stderr, " (y/N)? ");
179 fflush(stderr);
181 l = read(2, buff, sizeof(buff) - 1);
182 if (l <= 0)
183 return (0);
184 buff[l] = 0;
186 for (p = buff; *p != '\0'; p++) {
187 if (isspace(0xff & (int)*p))
188 continue;
189 switch(*p) {
190 case 'y': case 'Y':
191 return (1);
192 case 'n': case 'N':
193 return (0);
194 default:
195 return (0);
199 return (0);
203 * Read lines from file and do something with each one. If option_null
204 * is set, lines are terminated with zero bytes; otherwise, they're
205 * terminated with newlines.
207 * This uses a self-sizing buffer to handle arbitrarily-long lines.
208 * If the "process" function returns non-zero for any line, this
209 * function will return non-zero after attempting to process all
210 * remaining lines.
213 process_lines(struct bsdtar *bsdtar, const char *pathname,
214 int (*process)(struct bsdtar *, const char *))
216 FILE *f;
217 char *buff, *buff_end, *line_start, *line_end, *p;
218 size_t buff_length, new_buff_length, bytes_read, bytes_wanted;
219 int separator;
220 int ret;
222 separator = bsdtar->option_null ? '\0' : '\n';
223 ret = 0;
225 if (strcmp(pathname, "-") == 0)
226 f = stdin;
227 else
228 f = fopen(pathname, "r");
229 if (f == NULL)
230 bsdtar_errc(bsdtar, 1, errno, "Couldn't open %s", pathname);
231 buff_length = 8192;
232 buff = malloc(buff_length);
233 if (buff == NULL)
234 bsdtar_errc(bsdtar, 1, ENOMEM, "Can't read %s", pathname);
235 line_start = line_end = buff_end = buff;
236 for (;;) {
237 /* Get some more data into the buffer. */
238 bytes_wanted = buff + buff_length - buff_end;
239 bytes_read = fread(buff_end, 1, bytes_wanted, f);
240 buff_end += bytes_read;
241 /* Process all complete lines in the buffer. */
242 while (line_end < buff_end) {
243 if (*line_end == separator) {
244 *line_end = '\0';
245 if ((*process)(bsdtar, line_start) != 0)
246 ret = -1;
247 line_start = line_end + 1;
248 line_end = line_start;
249 } else
250 line_end++;
252 if (feof(f))
253 break;
254 if (ferror(f))
255 bsdtar_errc(bsdtar, 1, errno,
256 "Can't read %s", pathname);
257 if (line_start > buff) {
258 /* Move a leftover fractional line to the beginning. */
259 memmove(buff, line_start, buff_end - line_start);
260 buff_end -= line_start - buff;
261 line_end -= line_start - buff;
262 line_start = buff;
263 } else {
264 /* Line is too big; enlarge the buffer. */
265 new_buff_length = buff_length * 2;
266 if (new_buff_length <= buff_length)
267 bsdtar_errc(bsdtar, 1, ENOMEM,
268 "Line too long in %s", pathname);
269 buff_length = new_buff_length;
270 p = realloc(buff, buff_length);
271 if (p == NULL)
272 bsdtar_errc(bsdtar, 1, ENOMEM,
273 "Line too long in %s", pathname);
274 buff_end = p + (buff_end - buff);
275 line_end = p + (line_end - buff);
276 line_start = buff = p;
279 /* At end-of-file, handle the final line. */
280 if (line_end > line_start) {
281 *line_end = '\0';
282 if ((*process)(bsdtar, line_start) != 0)
283 ret = -1;
285 free(buff);
286 if (f != stdin)
287 fclose(f);
288 return (ret);
292 * The logic here for -C <dir> attempts to avoid
293 * chdir() as long as possible. For example:
294 * "-C /foo -C /bar file" needs chdir("/bar") but not chdir("/foo")
295 * "-C /foo -C bar file" needs chdir("/foo/bar")
296 * "-C /foo -C bar /file1" does not need chdir()
297 * "-C /foo -C bar /file1 file2" needs chdir("/foo/bar") before file2
299 * The only correct way to handle this is to record a "pending" chdir
300 * request and combine multiple requests intelligently until we
301 * need to process a non-absolute file. set_chdir() adds the new dir
302 * to the pending list; do_chdir() actually executes any pending chdir.
304 * This way, programs that build tar command lines don't have to worry
305 * about -C with non-existent directories; such requests will only
306 * fail if the directory must be accessed.
308 void
309 set_chdir(struct bsdtar *bsdtar, const char *newdir)
311 if (newdir[0] == '/') {
312 /* The -C /foo -C /bar case; dump first one. */
313 free(bsdtar->pending_chdir);
314 bsdtar->pending_chdir = NULL;
316 if (bsdtar->pending_chdir == NULL)
317 /* Easy case: no previously-saved dir. */
318 bsdtar->pending_chdir = strdup(newdir);
319 else {
320 /* The -C /foo -C bar case; concatenate */
321 char *old_pending = bsdtar->pending_chdir;
322 size_t old_len = strlen(old_pending);
323 bsdtar->pending_chdir = malloc(old_len + strlen(newdir) + 2);
324 if (old_pending[old_len - 1] == '/')
325 old_pending[old_len - 1] = '\0';
326 if (bsdtar->pending_chdir != NULL)
327 sprintf(bsdtar->pending_chdir, "%s/%s",
328 old_pending, newdir);
329 free(old_pending);
331 if (bsdtar->pending_chdir == NULL)
332 bsdtar_errc(bsdtar, 1, errno, "No memory");
335 void
336 do_chdir(struct bsdtar *bsdtar)
338 if (bsdtar->pending_chdir == NULL)
339 return;
341 if (chdir(bsdtar->pending_chdir) != 0) {
342 bsdtar_errc(bsdtar, 1, 0, "could not chdir to '%s'\n",
343 bsdtar->pending_chdir);
345 free(bsdtar->pending_chdir);
346 bsdtar->pending_chdir = NULL;
350 * Handle --strip-components and any future path-rewriting options.
351 * Returns non-zero if the pathname should not be extracted.
353 * TODO: Support pax-style regex path rewrites.
356 edit_pathname(struct bsdtar *bsdtar, struct archive_entry *entry)
358 const char *name = archive_entry_pathname(entry);
359 #if HAVE_REGEX_H
360 char *subst_name;
361 #endif
362 int r;
364 #if HAVE_REGEX_H
365 r = apply_substitution(bsdtar, name, &subst_name, 0);
366 if (r == -1) {
367 bsdtar_warnc(bsdtar, 0, "Invalid substituion, skipping entry");
368 return 1;
370 if (r == 1) {
371 archive_entry_copy_pathname(entry, subst_name);
372 free(subst_name);
373 if (*subst_name == '\0')
374 return -1;
375 name = archive_entry_pathname(entry);
378 if (archive_entry_hardlink(entry)) {
379 r = apply_substitution(bsdtar, archive_entry_hardlink(entry), &subst_name, 1);
380 if (r == -1) {
381 bsdtar_warnc(bsdtar, 0, "Invalid substituion, skipping entry");
382 return 1;
384 if (r == 1) {
385 archive_entry_copy_hardlink(entry, subst_name);
386 free(subst_name);
389 if (archive_entry_symlink(entry) != NULL) {
390 r = apply_substitution(bsdtar, archive_entry_symlink(entry), &subst_name, 1);
391 if (r == -1) {
392 bsdtar_warnc(bsdtar, 0, "Invalid substituion, skipping entry");
393 return 1;
395 if (r == 1) {
396 archive_entry_copy_symlink(entry, subst_name);
397 free(subst_name);
400 #endif
402 /* Strip leading dir names as per --strip-components option. */
403 if ((r = bsdtar->strip_components) > 0) {
404 const char *p = name;
406 while (r > 0) {
407 switch (*p++) {
408 case '/':
409 r--;
410 name = p;
411 break;
412 case '\0':
413 /* Path is too short, skip it. */
414 return (1);
417 while (*name == '/')
418 ++name;
419 if (*name == '\0')
420 return (1);
423 /* Strip redundant leading '/' characters. */
424 while (name[0] == '/' && name[1] == '/')
425 name++;
427 /* Strip leading '/' unless user has asked us not to. */
428 if (name[0] == '/' && !bsdtar->option_absolute_paths) {
429 /* Generate a warning the first time this happens. */
430 if (!bsdtar->warned_lead_slash) {
431 bsdtar_warnc(bsdtar, 0,
432 "Removing leading '/' from member names");
433 bsdtar->warned_lead_slash = 1;
435 name++;
436 /* Special case: Stripping leading '/' from "/" yields ".". */
437 if (*name == '\0')
438 name = ".";
441 /* Safely replace name in archive_entry. */
442 if (name != archive_entry_pathname(entry)) {
443 char *q = strdup(name);
444 archive_entry_copy_pathname(entry, q);
445 free(q);
447 return (0);
451 * Like strcmp(), but try to be a little more aware of the fact that
452 * we're comparing two paths. Right now, it just handles leading
453 * "./" and trailing '/' specially, so that "a/b/" == "./a/b"
455 * TODO: Make this better, so that "./a//b/./c/" == "a/b/c"
456 * TODO: After this works, push it down into libarchive.
457 * TODO: Publish the path normalization routines in libarchive so
458 * that bsdtar can normalize paths and use fast strcmp() instead
459 * of this.
463 pathcmp(const char *a, const char *b)
465 /* Skip leading './' */
466 if (a[0] == '.' && a[1] == '/' && a[2] != '\0')
467 a += 2;
468 if (b[0] == '.' && b[1] == '/' && b[2] != '\0')
469 b += 2;
470 /* Find the first difference, or return (0) if none. */
471 while (*a == *b) {
472 if (*a == '\0')
473 return (0);
474 a++;
475 b++;
478 * If one ends in '/' and the other one doesn't,
479 * they're the same.
481 if (a[0] == '/' && a[1] == '\0' && b[0] == '\0')
482 return (0);
483 if (a[0] == '\0' && b[0] == '/' && b[1] == '\0')
484 return (0);
485 /* They're really different, return the correct sign. */
486 return (*(const unsigned char *)a - *(const unsigned char *)b);