]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/libarchive/libarchive/archive_write_disk_posix.c
MFC r358533:
[FreeBSD/stable/10.git] / contrib / libarchive / libarchive / archive_write_disk_posix.c
1 /*-
2  * Copyright (c) 2003-2010 Tim Kientzle
3  * Copyright (c) 2012 Michihiro NAKAJIMA
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer
11  *    in this position and unchanged.
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  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #include "archive_platform.h"
29 __FBSDID("$FreeBSD$");
30
31 #if !defined(_WIN32) || defined(__CYGWIN__)
32
33 #ifdef HAVE_SYS_TYPES_H
34 #include <sys/types.h>
35 #endif
36 #ifdef HAVE_SYS_ACL_H
37 #include <sys/acl.h>
38 #endif
39 #ifdef HAVE_SYS_EXTATTR_H
40 #include <sys/extattr.h>
41 #endif
42 #if HAVE_SYS_XATTR_H
43 #include <sys/xattr.h>
44 #elif HAVE_ATTR_XATTR_H
45 #include <attr/xattr.h>
46 #endif
47 #ifdef HAVE_SYS_EA_H
48 #include <sys/ea.h>
49 #endif
50 #ifdef HAVE_SYS_IOCTL_H
51 #include <sys/ioctl.h>
52 #endif
53 #ifdef HAVE_SYS_STAT_H
54 #include <sys/stat.h>
55 #endif
56 #ifdef HAVE_SYS_TIME_H
57 #include <sys/time.h>
58 #endif
59 #ifdef HAVE_SYS_UTIME_H
60 #include <sys/utime.h>
61 #endif
62 #ifdef HAVE_COPYFILE_H
63 #include <copyfile.h>
64 #endif
65 #ifdef HAVE_ERRNO_H
66 #include <errno.h>
67 #endif
68 #ifdef HAVE_FCNTL_H
69 #include <fcntl.h>
70 #endif
71 #ifdef HAVE_GRP_H
72 #include <grp.h>
73 #endif
74 #ifdef HAVE_LANGINFO_H
75 #include <langinfo.h>
76 #endif
77 #ifdef HAVE_LINUX_FS_H
78 #include <linux/fs.h>   /* for Linux file flags */
79 #endif
80 /*
81  * Some Linux distributions have both linux/ext2_fs.h and ext2fs/ext2_fs.h.
82  * As the include guards don't agree, the order of include is important.
83  */
84 #ifdef HAVE_LINUX_EXT2_FS_H
85 #include <linux/ext2_fs.h>      /* for Linux file flags */
86 #endif
87 #if defined(HAVE_EXT2FS_EXT2_FS_H) && !defined(__CYGWIN__)
88 #include <ext2fs/ext2_fs.h>     /* Linux file flags, broken on Cygwin */
89 #endif
90 #ifdef HAVE_LIMITS_H
91 #include <limits.h>
92 #endif
93 #ifdef HAVE_PWD_H
94 #include <pwd.h>
95 #endif
96 #include <stdio.h>
97 #ifdef HAVE_STDLIB_H
98 #include <stdlib.h>
99 #endif
100 #ifdef HAVE_STRING_H
101 #include <string.h>
102 #endif
103 #ifdef HAVE_UNISTD_H
104 #include <unistd.h>
105 #endif
106 #ifdef HAVE_UTIME_H
107 #include <utime.h>
108 #endif
109 #ifdef F_GETTIMES /* Tru64 specific */
110 #include <sys/fcntl1.h>
111 #endif
112
113 /*
114  * Macro to cast st_mtime and time_t to an int64 so that 2 numbers can reliably be compared.
115  *
116  * It assumes that the input is an integer type of no more than 64 bits.
117  * If the number is less than zero, t must be a signed type, so it fits in
118  * int64_t. Otherwise, it's a nonnegative value so we can cast it to uint64_t
119  * without loss. But it could be a large unsigned value, so we have to clip it
120  * to INT64_MAX.*
121  */
122 #define to_int64_time(t) \
123    ((t) < 0 ? (int64_t)(t) : (uint64_t)(t) > (uint64_t)INT64_MAX ? INT64_MAX : (int64_t)(t))
124
125 #if __APPLE__
126 #include <TargetConditionals.h>
127 #if TARGET_OS_MAC && !TARGET_OS_EMBEDDED && HAVE_QUARANTINE_H
128 #include <quarantine.h>
129 #define HAVE_QUARANTINE 1
130 #endif
131 #endif
132
133 #ifdef HAVE_ZLIB_H
134 #include <zlib.h>
135 #endif
136
137 /* TODO: Support Mac OS 'quarantine' feature.  This is really just a
138  * standard tag to mark files that have been downloaded as "tainted".
139  * On Mac OS, we should mark the extracted files as tainted if the
140  * archive being read was tainted.  Windows has a similar feature; we
141  * should investigate ways to support this generically. */
142
143 #include "archive.h"
144 #include "archive_acl_private.h"
145 #include "archive_string.h"
146 #include "archive_endian.h"
147 #include "archive_entry.h"
148 #include "archive_private.h"
149 #include "archive_write_disk_private.h"
150
151 #ifndef O_BINARY
152 #define O_BINARY 0
153 #endif
154 #ifndef O_CLOEXEC
155 #define O_CLOEXEC 0
156 #endif
157
158 /* Ignore non-int O_NOFOLLOW constant. */
159 /* gnulib's fcntl.h does this on AIX, but it seems practical everywhere */
160 #if defined O_NOFOLLOW && !(INT_MIN <= O_NOFOLLOW && O_NOFOLLOW <= INT_MAX)
161 #undef O_NOFOLLOW
162 #endif
163
164 #ifndef O_NOFOLLOW
165 #define O_NOFOLLOW 0
166 #endif
167
168 #ifndef AT_FDCWD
169 #define AT_FDCWD -100
170 #endif
171
172 struct fixup_entry {
173         struct fixup_entry      *next;
174         struct archive_acl       acl;
175         mode_t                   mode;
176         int64_t                  atime;
177         int64_t                  birthtime;
178         int64_t                  mtime;
179         int64_t                  ctime;
180         unsigned long            atime_nanos;
181         unsigned long            birthtime_nanos;
182         unsigned long            mtime_nanos;
183         unsigned long            ctime_nanos;
184         unsigned long            fflags_set;
185         size_t                   mac_metadata_size;
186         void                    *mac_metadata;
187         int                      fixup; /* bitmask of what needs fixing */
188         char                    *name;
189 };
190
191 /*
192  * We use a bitmask to track which operations remain to be done for
193  * this file.  In particular, this helps us avoid unnecessary
194  * operations when it's possible to take care of one step as a
195  * side-effect of another.  For example, mkdir() can specify the mode
196  * for the newly-created object but symlink() cannot.  This means we
197  * can skip chmod() if mkdir() succeeded, but we must explicitly
198  * chmod() if we're trying to create a directory that already exists
199  * (mkdir() failed) or if we're restoring a symlink.  Similarly, we
200  * need to verify UID/GID before trying to restore SUID/SGID bits;
201  * that verification can occur explicitly through a stat() call or
202  * implicitly because of a successful chown() call.
203  */
204 #define TODO_MODE_FORCE         0x40000000
205 #define TODO_MODE_BASE          0x20000000
206 #define TODO_SUID               0x10000000
207 #define TODO_SUID_CHECK         0x08000000
208 #define TODO_SGID               0x04000000
209 #define TODO_SGID_CHECK         0x02000000
210 #define TODO_APPLEDOUBLE        0x01000000
211 #define TODO_MODE               (TODO_MODE_BASE|TODO_SUID|TODO_SGID)
212 #define TODO_TIMES              ARCHIVE_EXTRACT_TIME
213 #define TODO_OWNER              ARCHIVE_EXTRACT_OWNER
214 #define TODO_FFLAGS             ARCHIVE_EXTRACT_FFLAGS
215 #define TODO_ACLS               ARCHIVE_EXTRACT_ACL
216 #define TODO_XATTR              ARCHIVE_EXTRACT_XATTR
217 #define TODO_MAC_METADATA       ARCHIVE_EXTRACT_MAC_METADATA
218 #define TODO_HFS_COMPRESSION    ARCHIVE_EXTRACT_HFS_COMPRESSION_FORCED
219
220 struct archive_write_disk {
221         struct archive  archive;
222
223         mode_t                   user_umask;
224         struct fixup_entry      *fixup_list;
225         struct fixup_entry      *current_fixup;
226         int64_t                  user_uid;
227         int                      skip_file_set;
228         int64_t                  skip_file_dev;
229         int64_t                  skip_file_ino;
230         time_t                   start_time;
231
232         int64_t (*lookup_gid)(void *private, const char *gname, int64_t gid);
233         void  (*cleanup_gid)(void *private);
234         void                    *lookup_gid_data;
235         int64_t (*lookup_uid)(void *private, const char *uname, int64_t uid);
236         void  (*cleanup_uid)(void *private);
237         void                    *lookup_uid_data;
238
239         /*
240          * Full path of last file to satisfy symlink checks.
241          */
242         struct archive_string   path_safe;
243
244         /*
245          * Cached stat data from disk for the current entry.
246          * If this is valid, pst points to st.  Otherwise,
247          * pst is null.
248          */
249         struct stat              st;
250         struct stat             *pst;
251
252         /* Information about the object being restored right now. */
253         struct archive_entry    *entry; /* Entry being extracted. */
254         char                    *name; /* Name of entry, possibly edited. */
255         struct archive_string    _name_data; /* backing store for 'name' */
256         char                    *tmpname; /* Temporary name * */
257         struct archive_string    _tmpname_data; /* backing store for 'tmpname' */
258         /* Tasks remaining for this object. */
259         int                      todo;
260         /* Tasks deferred until end-of-archive. */
261         int                      deferred;
262         /* Options requested by the client. */
263         int                      flags;
264         /* Handle for the file we're restoring. */
265         int                      fd;
266         /* Current offset for writing data to the file. */
267         int64_t                  offset;
268         /* Last offset actually written to disk. */
269         int64_t                  fd_offset;
270         /* Total bytes actually written to files. */
271         int64_t                  total_bytes_written;
272         /* Maximum size of file, -1 if unknown. */
273         int64_t                  filesize;
274         /* Dir we were in before this restore; only for deep paths. */
275         int                      restore_pwd;
276         /* Mode we should use for this entry; affected by _PERM and umask. */
277         mode_t                   mode;
278         /* UID/GID to use in restoring this entry. */
279         int64_t                  uid;
280         int64_t                  gid;
281         /*
282          * HFS+ Compression.
283          */
284         /* Xattr "com.apple.decmpfs". */
285         uint32_t                 decmpfs_attr_size;
286         unsigned char           *decmpfs_header_p;
287         /* ResourceFork set options used for fsetxattr. */
288         int                      rsrc_xattr_options;
289         /* Xattr "com.apple.ResourceFork". */
290         unsigned char           *resource_fork;
291         size_t                   resource_fork_allocated_size;
292         unsigned int             decmpfs_block_count;
293         uint32_t                *decmpfs_block_info;
294         /* Buffer for compressed data. */
295         unsigned char           *compressed_buffer;
296         size_t                   compressed_buffer_size;
297         size_t                   compressed_buffer_remaining;
298         /* The offset of the ResourceFork where compressed data will
299          * be placed. */
300         uint32_t                 compressed_rsrc_position;
301         uint32_t                 compressed_rsrc_position_v;
302         /* Buffer for uncompressed data. */
303         char                    *uncompressed_buffer;
304         size_t                   block_remaining_bytes;
305         size_t                   file_remaining_bytes;
306 #ifdef HAVE_ZLIB_H
307         z_stream                 stream;
308         int                      stream_valid;
309         int                      decmpfs_compression_level;
310 #endif
311 };
312
313 /*
314  * Default mode for dirs created automatically (will be modified by umask).
315  * Note that POSIX specifies 0777 for implicitly-created dirs, "modified
316  * by the process' file creation mask."
317  */
318 #define DEFAULT_DIR_MODE 0777
319 /*
320  * Dir modes are restored in two steps:  During the extraction, the permissions
321  * in the archive are modified to match the following limits.  During
322  * the post-extract fixup pass, the permissions from the archive are
323  * applied.
324  */
325 #define MINIMUM_DIR_MODE 0700
326 #define MAXIMUM_DIR_MODE 0775
327
328 /*
329  * Maximum uncompressed size of a decmpfs block.
330  */
331 #define MAX_DECMPFS_BLOCK_SIZE  (64 * 1024)
332 /*
333  * HFS+ compression type.
334  */
335 #define CMP_XATTR               3/* Compressed data in xattr. */
336 #define CMP_RESOURCE_FORK       4/* Compressed data in resource fork. */
337 /*
338  * HFS+ compression resource fork.
339  */
340 #define RSRC_H_SIZE     260     /* Base size of Resource fork header. */
341 #define RSRC_F_SIZE     50      /* Size of Resource fork footer. */
342 /* Size to write compressed data to resource fork. */
343 #define COMPRESSED_W_SIZE       (64 * 1024)
344 /* decmpfs definitions. */
345 #define MAX_DECMPFS_XATTR_SIZE          3802
346 #ifndef DECMPFS_XATTR_NAME
347 #define DECMPFS_XATTR_NAME              "com.apple.decmpfs"
348 #endif
349 #define DECMPFS_MAGIC                   0x636d7066
350 #define DECMPFS_COMPRESSION_MAGIC       0
351 #define DECMPFS_COMPRESSION_TYPE        4
352 #define DECMPFS_UNCOMPRESSED_SIZE       8
353 #define DECMPFS_HEADER_SIZE             16
354
355 #define HFS_BLOCKS(s)   ((s) >> 12)
356
357
358 static int      la_opendirat(int, const char *);
359 static int      la_mktemp(struct archive_write_disk *);
360 static void     fsobj_error(int *, struct archive_string *, int, const char *,
361                     const char *);
362 static int      check_symlinks_fsobj(char *, int *, struct archive_string *,
363                     int);
364 static int      check_symlinks(struct archive_write_disk *);
365 static int      create_filesystem_object(struct archive_write_disk *);
366 static struct fixup_entry *current_fixup(struct archive_write_disk *,
367                     const char *pathname);
368 #if defined(HAVE_FCHDIR) && defined(PATH_MAX)
369 static void     edit_deep_directories(struct archive_write_disk *ad);
370 #endif
371 static int      cleanup_pathname_fsobj(char *, int *, struct archive_string *,
372                     int);
373 static int      cleanup_pathname(struct archive_write_disk *);
374 static int      create_dir(struct archive_write_disk *, char *);
375 static int      create_parent_dir(struct archive_write_disk *, char *);
376 static ssize_t  hfs_write_data_block(struct archive_write_disk *,
377                     const char *, size_t);
378 static int      fixup_appledouble(struct archive_write_disk *, const char *);
379 static int      older(struct stat *, struct archive_entry *);
380 static int      restore_entry(struct archive_write_disk *);
381 static int      set_mac_metadata(struct archive_write_disk *, const char *,
382                                  const void *, size_t);
383 static int      set_xattrs(struct archive_write_disk *);
384 static int      clear_nochange_fflags(struct archive_write_disk *);
385 static int      set_fflags(struct archive_write_disk *);
386 static int      set_fflags_platform(struct archive_write_disk *, int fd,
387                     const char *name, mode_t mode,
388                     unsigned long fflags_set, unsigned long fflags_clear);
389 static int      set_ownership(struct archive_write_disk *);
390 static int      set_mode(struct archive_write_disk *, int mode);
391 static int      set_time(int, int, const char *, time_t, long, time_t, long);
392 static int      set_times(struct archive_write_disk *, int, int, const char *,
393                     time_t, long, time_t, long, time_t, long, time_t, long);
394 static int      set_times_from_entry(struct archive_write_disk *);
395 static struct fixup_entry *sort_dir_list(struct fixup_entry *p);
396 static ssize_t  write_data_block(struct archive_write_disk *,
397                     const char *, size_t);
398
399 static struct archive_vtable *archive_write_disk_vtable(void);
400
401 static int      _archive_write_disk_close(struct archive *);
402 static int      _archive_write_disk_free(struct archive *);
403 static int      _archive_write_disk_header(struct archive *,
404                     struct archive_entry *);
405 static int64_t  _archive_write_disk_filter_bytes(struct archive *, int);
406 static int      _archive_write_disk_finish_entry(struct archive *);
407 static ssize_t  _archive_write_disk_data(struct archive *, const void *,
408                     size_t);
409 static ssize_t  _archive_write_disk_data_block(struct archive *, const void *,
410                     size_t, int64_t);
411
412 static int
413 la_mktemp(struct archive_write_disk *a)
414 {
415         int oerrno, fd;
416         mode_t mode;
417
418         archive_string_empty(&a->_tmpname_data);
419         archive_string_sprintf(&a->_tmpname_data, "%s.XXXXXX", a->name);
420         a->tmpname = a->_tmpname_data.s;
421
422         fd = __archive_mkstemp(a->tmpname);
423         if (fd == -1)
424                 return -1;
425
426         mode = a->mode & 0777 & ~a->user_umask;
427         if (fchmod(fd, mode) == -1) {
428                 oerrno = errno;
429                 close(fd);
430                 errno = oerrno;
431                 return -1;
432         }
433         return fd;
434 }
435
436 static int
437 la_opendirat(int fd, const char *path) {
438         const int flags = O_CLOEXEC
439 #if defined(O_BINARY)
440             | O_BINARY
441 #endif
442 #if defined(O_DIRECTORY)
443             | O_DIRECTORY
444 #endif
445 #if defined(O_PATH)
446             | O_PATH
447 #elif defined(O_SEARCH)
448             | O_SEARCH
449 #elif defined(__FreeBSD__) && defined(O_EXEC)
450             | O_EXEC
451 #else
452             | O_RDONLY
453 #endif
454             ;
455
456 #if !defined(HAVE_OPENAT)
457         if (fd != AT_FDCWD) {
458                 errno = ENOTSUP;
459                 return (-1);
460         } else
461                 return (open(path, flags));
462 #else
463         return (openat(fd, path, flags));
464 #endif
465 }
466
467 static int
468 lazy_stat(struct archive_write_disk *a)
469 {
470         if (a->pst != NULL) {
471                 /* Already have stat() data available. */
472                 return (ARCHIVE_OK);
473         }
474 #ifdef HAVE_FSTAT
475         if (a->fd >= 0 && fstat(a->fd, &a->st) == 0) {
476                 a->pst = &a->st;
477                 return (ARCHIVE_OK);
478         }
479 #endif
480         /*
481          * XXX At this point, symlinks should not be hit, otherwise
482          * XXX a race occurred.  Do we want to check explicitly for that?
483          */
484         if (lstat(a->name, &a->st) == 0) {
485                 a->pst = &a->st;
486                 return (ARCHIVE_OK);
487         }
488         archive_set_error(&a->archive, errno, "Couldn't stat file");
489         return (ARCHIVE_WARN);
490 }
491
492 static struct archive_vtable *
493 archive_write_disk_vtable(void)
494 {
495         static struct archive_vtable av;
496         static int inited = 0;
497
498         if (!inited) {
499                 av.archive_close = _archive_write_disk_close;
500                 av.archive_filter_bytes = _archive_write_disk_filter_bytes;
501                 av.archive_free = _archive_write_disk_free;
502                 av.archive_write_header = _archive_write_disk_header;
503                 av.archive_write_finish_entry
504                     = _archive_write_disk_finish_entry;
505                 av.archive_write_data = _archive_write_disk_data;
506                 av.archive_write_data_block = _archive_write_disk_data_block;
507                 inited = 1;
508         }
509         return (&av);
510 }
511
512 static int64_t
513 _archive_write_disk_filter_bytes(struct archive *_a, int n)
514 {
515         struct archive_write_disk *a = (struct archive_write_disk *)_a;
516         (void)n; /* UNUSED */
517         if (n == -1 || n == 0)
518                 return (a->total_bytes_written);
519         return (-1);
520 }
521
522
523 int
524 archive_write_disk_set_options(struct archive *_a, int flags)
525 {
526         struct archive_write_disk *a = (struct archive_write_disk *)_a;
527
528         a->flags = flags;
529         return (ARCHIVE_OK);
530 }
531
532
533 /*
534  * Extract this entry to disk.
535  *
536  * TODO: Validate hardlinks.  According to the standards, we're
537  * supposed to check each extracted hardlink and squawk if it refers
538  * to a file that we didn't restore.  I'm not entirely convinced this
539  * is a good idea, but more importantly: Is there any way to validate
540  * hardlinks without keeping a complete list of filenames from the
541  * entire archive?? Ugh.
542  *
543  */
544 static int
545 _archive_write_disk_header(struct archive *_a, struct archive_entry *entry)
546 {
547         struct archive_write_disk *a = (struct archive_write_disk *)_a;
548         struct fixup_entry *fe;
549         int ret, r;
550
551         archive_check_magic(&a->archive, ARCHIVE_WRITE_DISK_MAGIC,
552             ARCHIVE_STATE_HEADER | ARCHIVE_STATE_DATA,
553             "archive_write_disk_header");
554         archive_clear_error(&a->archive);
555         if (a->archive.state & ARCHIVE_STATE_DATA) {
556                 r = _archive_write_disk_finish_entry(&a->archive);
557                 if (r == ARCHIVE_FATAL)
558                         return (r);
559         }
560
561         /* Set up for this particular entry. */
562         a->pst = NULL;
563         a->current_fixup = NULL;
564         a->deferred = 0;
565         if (a->entry) {
566                 archive_entry_free(a->entry);
567                 a->entry = NULL;
568         }
569         a->entry = archive_entry_clone(entry);
570         a->fd = -1;
571         a->fd_offset = 0;
572         a->offset = 0;
573         a->restore_pwd = -1;
574         a->uid = a->user_uid;
575         a->mode = archive_entry_mode(a->entry);
576         if (archive_entry_size_is_set(a->entry))
577                 a->filesize = archive_entry_size(a->entry);
578         else
579                 a->filesize = -1;
580         archive_strcpy(&(a->_name_data), archive_entry_pathname(a->entry));
581         a->name = a->_name_data.s;
582         archive_clear_error(&a->archive);
583
584         /*
585          * Clean up the requested path.  This is necessary for correct
586          * dir restores; the dir restore logic otherwise gets messed
587          * up by nonsense like "dir/.".
588          */
589         ret = cleanup_pathname(a);
590         if (ret != ARCHIVE_OK)
591                 return (ret);
592
593         /*
594          * Query the umask so we get predictable mode settings.
595          * This gets done on every call to _write_header in case the
596          * user edits their umask during the extraction for some
597          * reason.
598          */
599         umask(a->user_umask = umask(0));
600
601         /* Figure out what we need to do for this entry. */
602         a->todo = TODO_MODE_BASE;
603         if (a->flags & ARCHIVE_EXTRACT_PERM) {
604                 a->todo |= TODO_MODE_FORCE; /* Be pushy about permissions. */
605                 /*
606                  * SGID requires an extra "check" step because we
607                  * cannot easily predict the GID that the system will
608                  * assign.  (Different systems assign GIDs to files
609                  * based on a variety of criteria, including process
610                  * credentials and the gid of the enclosing
611                  * directory.)  We can only restore the SGID bit if
612                  * the file has the right GID, and we only know the
613                  * GID if we either set it (see set_ownership) or if
614                  * we've actually called stat() on the file after it
615                  * was restored.  Since there are several places at
616                  * which we might verify the GID, we need a TODO bit
617                  * to keep track.
618                  */
619                 if (a->mode & S_ISGID)
620                         a->todo |= TODO_SGID | TODO_SGID_CHECK;
621                 /*
622                  * Verifying the SUID is simpler, but can still be
623                  * done in multiple ways, hence the separate "check" bit.
624                  */
625                 if (a->mode & S_ISUID)
626                         a->todo |= TODO_SUID | TODO_SUID_CHECK;
627         } else {
628                 /*
629                  * User didn't request full permissions, so don't
630                  * restore SUID, SGID bits and obey umask.
631                  */
632                 a->mode &= ~S_ISUID;
633                 a->mode &= ~S_ISGID;
634                 a->mode &= ~S_ISVTX;
635                 a->mode &= ~a->user_umask;
636         }
637         if (a->flags & ARCHIVE_EXTRACT_OWNER)
638                 a->todo |= TODO_OWNER;
639         if (a->flags & ARCHIVE_EXTRACT_TIME)
640                 a->todo |= TODO_TIMES;
641         if (a->flags & ARCHIVE_EXTRACT_ACL) {
642 #if ARCHIVE_ACL_DARWIN
643                 /*
644                  * On MacOS, platform ACLs get stored in mac_metadata, too.
645                  * If we intend to extract mac_metadata and it is present
646                  * we skip extracting libarchive NFSv4 ACLs.
647                  */
648                 size_t metadata_size;
649
650                 if ((a->flags & ARCHIVE_EXTRACT_MAC_METADATA) == 0 ||
651                     archive_entry_mac_metadata(a->entry,
652                     &metadata_size) == NULL || metadata_size == 0)
653 #endif
654 #if ARCHIVE_ACL_LIBRICHACL
655                 /*
656                  * RichACLs are stored in an extended attribute.
657                  * If we intend to extract extended attributes and have this
658                  * attribute we skip extracting libarchive NFSv4 ACLs.
659                  */
660                 short extract_acls = 1;
661                 if (a->flags & ARCHIVE_EXTRACT_XATTR && (
662                     archive_entry_acl_types(a->entry) &
663                     ARCHIVE_ENTRY_ACL_TYPE_NFS4)) {
664                         const char *attr_name;
665                         const void *attr_value;
666                         size_t attr_size;
667                         int i = archive_entry_xattr_reset(a->entry);
668                         while (i--) {
669                                 archive_entry_xattr_next(a->entry, &attr_name,
670                                     &attr_value, &attr_size);
671                                 if (attr_name != NULL && attr_value != NULL &&
672                                     attr_size > 0 && strcmp(attr_name,
673                                     "trusted.richacl") == 0) {
674                                         extract_acls = 0;
675                                         break;
676                                 }
677                         }
678                 }
679                 if (extract_acls)
680 #endif
681 #if ARCHIVE_ACL_DARWIN || ARCHIVE_ACL_LIBRICHACL
682                 {
683 #endif
684                 if (archive_entry_filetype(a->entry) == AE_IFDIR)
685                         a->deferred |= TODO_ACLS;
686                 else
687                         a->todo |= TODO_ACLS;
688 #if ARCHIVE_ACL_DARWIN || ARCHIVE_ACL_LIBRICHACL
689                 }
690 #endif
691         }
692         if (a->flags & ARCHIVE_EXTRACT_MAC_METADATA) {
693                 if (archive_entry_filetype(a->entry) == AE_IFDIR)
694                         a->deferred |= TODO_MAC_METADATA;
695                 else
696                         a->todo |= TODO_MAC_METADATA;
697         }
698 #if defined(__APPLE__) && defined(UF_COMPRESSED) && defined(HAVE_ZLIB_H)
699         if ((a->flags & ARCHIVE_EXTRACT_NO_HFS_COMPRESSION) == 0) {
700                 unsigned long set, clear;
701                 archive_entry_fflags(a->entry, &set, &clear);
702                 if ((set & ~clear) & UF_COMPRESSED) {
703                         a->todo |= TODO_HFS_COMPRESSION;
704                         a->decmpfs_block_count = (unsigned)-1;
705                 }
706         }
707         if ((a->flags & ARCHIVE_EXTRACT_HFS_COMPRESSION_FORCED) != 0 &&
708             (a->mode & AE_IFMT) == AE_IFREG && a->filesize > 0) {
709                 a->todo |= TODO_HFS_COMPRESSION;
710                 a->decmpfs_block_count = (unsigned)-1;
711         }
712         {
713                 const char *p;
714
715                 /* Check if the current file name is a type of the
716                  * resource fork file. */
717                 p = strrchr(a->name, '/');
718                 if (p == NULL)
719                         p = a->name;
720                 else
721                         p++;
722                 if (p[0] == '.' && p[1] == '_') {
723                         /* Do not compress "._XXX" files. */
724                         a->todo &= ~TODO_HFS_COMPRESSION;
725                         if (a->filesize > 0)
726                                 a->todo |= TODO_APPLEDOUBLE;
727                 }
728         }
729 #endif
730
731         if (a->flags & ARCHIVE_EXTRACT_XATTR) {
732 #if ARCHIVE_XATTR_DARWIN
733                 /*
734                  * On MacOS, extended attributes get stored in mac_metadata,
735                  * too. If we intend to extract mac_metadata and it is present
736                  * we skip extracting extended attributes.
737                  */
738                 size_t metadata_size;
739
740                 if ((a->flags & ARCHIVE_EXTRACT_MAC_METADATA) == 0 ||
741                     archive_entry_mac_metadata(a->entry,
742                     &metadata_size) == NULL || metadata_size == 0)
743 #endif
744                 a->todo |= TODO_XATTR;
745         }
746         if (a->flags & ARCHIVE_EXTRACT_FFLAGS)
747                 a->todo |= TODO_FFLAGS;
748         if (a->flags & ARCHIVE_EXTRACT_SECURE_SYMLINKS) {
749                 ret = check_symlinks(a);
750                 if (ret != ARCHIVE_OK)
751                         return (ret);
752         }
753 #if defined(HAVE_FCHDIR) && defined(PATH_MAX)
754         /* If path exceeds PATH_MAX, shorten the path. */
755         edit_deep_directories(a);
756 #endif
757
758         ret = restore_entry(a);
759
760 #if defined(__APPLE__) && defined(UF_COMPRESSED) && defined(HAVE_ZLIB_H)
761         /*
762          * Check if the filesystem the file is restoring on supports
763          * HFS+ Compression. If not, cancel HFS+ Compression.
764          */
765         if (a->todo | TODO_HFS_COMPRESSION) {
766                 /*
767                  * NOTE: UF_COMPRESSED is ignored even if the filesystem
768                  * supports HFS+ Compression because the file should
769                  * have at least an extended attribute "com.apple.decmpfs"
770                  * before the flag is set to indicate that the file have
771                  * been compressed. If the filesystem does not support
772                  * HFS+ Compression the system call will fail.
773                  */
774                 if (a->fd < 0 || fchflags(a->fd, UF_COMPRESSED) != 0)
775                         a->todo &= ~TODO_HFS_COMPRESSION;
776         }
777 #endif
778
779         /*
780          * TODO: There are rumours that some extended attributes must
781          * be restored before file data is written.  If this is true,
782          * then we either need to write all extended attributes both
783          * before and after restoring the data, or find some rule for
784          * determining which must go first and which last.  Due to the
785          * many ways people are using xattrs, this may prove to be an
786          * intractable problem.
787          */
788
789 #ifdef HAVE_FCHDIR
790         /* If we changed directory above, restore it here. */
791         if (a->restore_pwd >= 0) {
792                 r = fchdir(a->restore_pwd);
793                 if (r != 0) {
794                         archive_set_error(&a->archive, errno,
795                             "chdir() failure");
796                         ret = ARCHIVE_FATAL;
797                 }
798                 close(a->restore_pwd);
799                 a->restore_pwd = -1;
800         }
801 #endif
802
803         /*
804          * Fixup uses the unedited pathname from archive_entry_pathname(),
805          * because it is relative to the base dir and the edited path
806          * might be relative to some intermediate dir as a result of the
807          * deep restore logic.
808          */
809         if (a->deferred & TODO_MODE) {
810                 fe = current_fixup(a, archive_entry_pathname(entry));
811                 if (fe == NULL)
812                         return (ARCHIVE_FATAL);
813                 fe->fixup |= TODO_MODE_BASE;
814                 fe->mode = a->mode;
815         }
816
817         if ((a->deferred & TODO_TIMES)
818                 && (archive_entry_mtime_is_set(entry)
819                     || archive_entry_atime_is_set(entry))) {
820                 fe = current_fixup(a, archive_entry_pathname(entry));
821                 if (fe == NULL)
822                         return (ARCHIVE_FATAL);
823                 fe->mode = a->mode;
824                 fe->fixup |= TODO_TIMES;
825                 if (archive_entry_atime_is_set(entry)) {
826                         fe->atime = archive_entry_atime(entry);
827                         fe->atime_nanos = archive_entry_atime_nsec(entry);
828                 } else {
829                         /* If atime is unset, use start time. */
830                         fe->atime = a->start_time;
831                         fe->atime_nanos = 0;
832                 }
833                 if (archive_entry_mtime_is_set(entry)) {
834                         fe->mtime = archive_entry_mtime(entry);
835                         fe->mtime_nanos = archive_entry_mtime_nsec(entry);
836                 } else {
837                         /* If mtime is unset, use start time. */
838                         fe->mtime = a->start_time;
839                         fe->mtime_nanos = 0;
840                 }
841                 if (archive_entry_birthtime_is_set(entry)) {
842                         fe->birthtime = archive_entry_birthtime(entry);
843                         fe->birthtime_nanos = archive_entry_birthtime_nsec(
844                             entry);
845                 } else {
846                         /* If birthtime is unset, use mtime. */
847                         fe->birthtime = fe->mtime;
848                         fe->birthtime_nanos = fe->mtime_nanos;
849                 }
850         }
851
852         if (a->deferred & TODO_ACLS) {
853                 fe = current_fixup(a, archive_entry_pathname(entry));
854                 if (fe == NULL)
855                         return (ARCHIVE_FATAL);
856                 fe->fixup |= TODO_ACLS;
857                 archive_acl_copy(&fe->acl, archive_entry_acl(entry));
858         }
859
860         if (a->deferred & TODO_MAC_METADATA) {
861                 const void *metadata;
862                 size_t metadata_size;
863                 metadata = archive_entry_mac_metadata(a->entry, &metadata_size);
864                 if (metadata != NULL && metadata_size > 0) {
865                         fe = current_fixup(a, archive_entry_pathname(entry));
866                         if (fe == NULL)
867                                 return (ARCHIVE_FATAL);
868                         fe->mac_metadata = malloc(metadata_size);
869                         if (fe->mac_metadata != NULL) {
870                                 memcpy(fe->mac_metadata, metadata,
871                                     metadata_size);
872                                 fe->mac_metadata_size = metadata_size;
873                                 fe->fixup |= TODO_MAC_METADATA;
874                         }
875                 }
876         }
877
878         if (a->deferred & TODO_FFLAGS) {
879                 fe = current_fixup(a, archive_entry_pathname(entry));
880                 if (fe == NULL)
881                         return (ARCHIVE_FATAL);
882                 fe->fixup |= TODO_FFLAGS;
883                 /* TODO: Complete this.. defer fflags from below. */
884         }
885
886         /* We've created the object and are ready to pour data into it. */
887         if (ret >= ARCHIVE_WARN)
888                 a->archive.state = ARCHIVE_STATE_DATA;
889         /*
890          * If it's not open, tell our client not to try writing.
891          * In particular, dirs, links, etc, don't get written to.
892          */
893         if (a->fd < 0) {
894                 archive_entry_set_size(entry, 0);
895                 a->filesize = 0;
896         }
897
898         return (ret);
899 }
900
901 int
902 archive_write_disk_set_skip_file(struct archive *_a, la_int64_t d, la_int64_t i)
903 {
904         struct archive_write_disk *a = (struct archive_write_disk *)_a;
905         archive_check_magic(&a->archive, ARCHIVE_WRITE_DISK_MAGIC,
906             ARCHIVE_STATE_ANY, "archive_write_disk_set_skip_file");
907         a->skip_file_set = 1;
908         a->skip_file_dev = d;
909         a->skip_file_ino = i;
910         return (ARCHIVE_OK);
911 }
912
913 static ssize_t
914 write_data_block(struct archive_write_disk *a, const char *buff, size_t size)
915 {
916         uint64_t start_size = size;
917         ssize_t bytes_written = 0;
918         ssize_t block_size = 0, bytes_to_write;
919
920         if (size == 0)
921                 return (ARCHIVE_OK);
922
923         if (a->filesize == 0 || a->fd < 0) {
924                 archive_set_error(&a->archive, 0,
925                     "Attempt to write to an empty file");
926                 return (ARCHIVE_WARN);
927         }
928
929         if (a->flags & ARCHIVE_EXTRACT_SPARSE) {
930 #if HAVE_STRUCT_STAT_ST_BLKSIZE
931                 int r;
932                 if ((r = lazy_stat(a)) != ARCHIVE_OK)
933                         return (r);
934                 block_size = a->pst->st_blksize;
935 #else
936                 /* XXX TODO XXX Is there a more appropriate choice here ? */
937                 /* This needn't match the filesystem allocation size. */
938                 block_size = 16*1024;
939 #endif
940         }
941
942         /* If this write would run beyond the file size, truncate it. */
943         if (a->filesize >= 0 && (int64_t)(a->offset + size) > a->filesize)
944                 start_size = size = (size_t)(a->filesize - a->offset);
945
946         /* Write the data. */
947         while (size > 0) {
948                 if (block_size == 0) {
949                         bytes_to_write = size;
950                 } else {
951                         /* We're sparsifying the file. */
952                         const char *p, *end;
953                         int64_t block_end;
954
955                         /* Skip leading zero bytes. */
956                         for (p = buff, end = buff + size; p < end; ++p) {
957                                 if (*p != '\0')
958                                         break;
959                         }
960                         a->offset += p - buff;
961                         size -= p - buff;
962                         buff = p;
963                         if (size == 0)
964                                 break;
965
966                         /* Calculate next block boundary after offset. */
967                         block_end
968                             = (a->offset / block_size + 1) * block_size;
969
970                         /* If the adjusted write would cross block boundary,
971                          * truncate it to the block boundary. */
972                         bytes_to_write = size;
973                         if (a->offset + bytes_to_write > block_end)
974                                 bytes_to_write = block_end - a->offset;
975                 }
976                 /* Seek if necessary to the specified offset. */
977                 if (a->offset != a->fd_offset) {
978                         if (lseek(a->fd, a->offset, SEEK_SET) < 0) {
979                                 archive_set_error(&a->archive, errno,
980                                     "Seek failed");
981                                 return (ARCHIVE_FATAL);
982                         }
983                         a->fd_offset = a->offset;
984                 }
985                 bytes_written = write(a->fd, buff, bytes_to_write);
986                 if (bytes_written < 0) {
987                         archive_set_error(&a->archive, errno, "Write failed");
988                         return (ARCHIVE_WARN);
989                 }
990                 buff += bytes_written;
991                 size -= bytes_written;
992                 a->total_bytes_written += bytes_written;
993                 a->offset += bytes_written;
994                 a->fd_offset = a->offset;
995         }
996         return (start_size - size);
997 }
998
999 #if defined(__APPLE__) && defined(UF_COMPRESSED) && defined(HAVE_SYS_XATTR_H)\
1000         && defined(HAVE_ZLIB_H)
1001
1002 /*
1003  * Set UF_COMPRESSED file flag.
1004  * This have to be called after hfs_write_decmpfs() because if the
1005  * file does not have "com.apple.decmpfs" xattr the flag is ignored.
1006  */
1007 static int
1008 hfs_set_compressed_fflag(struct archive_write_disk *a)
1009 {
1010         int r;
1011
1012         if ((r = lazy_stat(a)) != ARCHIVE_OK)
1013                 return (r);
1014
1015         a->st.st_flags |= UF_COMPRESSED;
1016         if (fchflags(a->fd, a->st.st_flags) != 0) {
1017                 archive_set_error(&a->archive, errno,
1018                     "Failed to set UF_COMPRESSED file flag");
1019                 return (ARCHIVE_WARN);
1020         }
1021         return (ARCHIVE_OK);
1022 }
1023
1024 /*
1025  * HFS+ Compression decmpfs
1026  *
1027  *     +------------------------------+ +0
1028  *     |      Magic(LE 4 bytes)       |
1029  *     +------------------------------+
1030  *     |      Type(LE 4 bytes)        |
1031  *     +------------------------------+
1032  *     | Uncompressed size(LE 8 bytes)|
1033  *     +------------------------------+ +16
1034  *     |                              |
1035  *     |       Compressed data        |
1036  *     |  (Placed only if Type == 3)  |
1037  *     |                              |
1038  *     +------------------------------+  +3802 = MAX_DECMPFS_XATTR_SIZE
1039  *
1040  *  Type is 3: decmpfs has compressed data.
1041  *  Type is 4: Resource Fork has compressed data.
1042  */
1043 /*
1044  * Write "com.apple.decmpfs"
1045  */
1046 static int
1047 hfs_write_decmpfs(struct archive_write_disk *a)
1048 {
1049         int r;
1050         uint32_t compression_type;
1051
1052         r = fsetxattr(a->fd, DECMPFS_XATTR_NAME, a->decmpfs_header_p,
1053             a->decmpfs_attr_size, 0, 0);
1054         if (r < 0) {
1055                 archive_set_error(&a->archive, errno,
1056                     "Cannot restore xattr:%s", DECMPFS_XATTR_NAME);
1057                 compression_type = archive_le32dec(
1058                     &a->decmpfs_header_p[DECMPFS_COMPRESSION_TYPE]);
1059                 if (compression_type == CMP_RESOURCE_FORK)
1060                         fremovexattr(a->fd, XATTR_RESOURCEFORK_NAME,
1061                             XATTR_SHOWCOMPRESSION);
1062                 return (ARCHIVE_WARN);
1063         }
1064         return (ARCHIVE_OK);
1065 }
1066
1067 /*
1068  * HFS+ Compression Resource Fork
1069  *
1070  *     +-----------------------------+
1071  *     |     Header(260 bytes)       |
1072  *     +-----------------------------+
1073  *     |   Block count(LE 4 bytes)   |
1074  *     +-----------------------------+  --+
1075  * +-- |     Offset (LE 4 bytes)     |    |
1076  * |   | [distance from Block count] |    | Block 0
1077  * |   +-----------------------------+    |
1078  * |   | Compressed size(LE 4 bytes) |    |
1079  * |   +-----------------------------+  --+
1080  * |   |                             |
1081  * |   |      ..................     |
1082  * |   |                             |
1083  * |   +-----------------------------+  --+
1084  * |   |     Offset (LE 4 bytes)     |    |
1085  * |   +-----------------------------+    | Block (Block count -1)
1086  * |   | Compressed size(LE 4 bytes) |    |
1087  * +-> +-----------------------------+  --+
1088  *     |   Compressed data(n bytes)  |  Block 0
1089  *     +-----------------------------+
1090  *     |                             |
1091  *     |      ..................     |
1092  *     |                             |
1093  *     +-----------------------------+
1094  *     |   Compressed data(n bytes)  |  Block (Block count -1)
1095  *     +-----------------------------+
1096  *     |      Footer(50 bytes)       |
1097  *     +-----------------------------+
1098  *
1099  */
1100 /*
1101  * Write the header of "com.apple.ResourceFork"
1102  */
1103 static int
1104 hfs_write_resource_fork(struct archive_write_disk *a, unsigned char *buff,
1105     size_t bytes, uint32_t position)
1106 {
1107         int ret;
1108
1109         ret = fsetxattr(a->fd, XATTR_RESOURCEFORK_NAME, buff, bytes,
1110             position, a->rsrc_xattr_options);
1111         if (ret < 0) {
1112                 archive_set_error(&a->archive, errno,
1113                     "Cannot restore xattr: %s at %u pos %u bytes",
1114                     XATTR_RESOURCEFORK_NAME,
1115                     (unsigned)position,
1116                     (unsigned)bytes);
1117                 return (ARCHIVE_WARN);
1118         }
1119         a->rsrc_xattr_options &= ~XATTR_CREATE;
1120         return (ARCHIVE_OK);
1121 }
1122
1123 static int
1124 hfs_write_compressed_data(struct archive_write_disk *a, size_t bytes_compressed)
1125 {
1126         int ret;
1127
1128         ret = hfs_write_resource_fork(a, a->compressed_buffer,
1129             bytes_compressed, a->compressed_rsrc_position);
1130         if (ret == ARCHIVE_OK)
1131                 a->compressed_rsrc_position += bytes_compressed;
1132         return (ret);
1133 }
1134
1135 static int
1136 hfs_write_resource_fork_header(struct archive_write_disk *a)
1137 {
1138         unsigned char *buff;
1139         uint32_t rsrc_bytes;
1140         uint32_t rsrc_header_bytes;
1141
1142         /*
1143          * Write resource fork header + block info.
1144          */
1145         buff = a->resource_fork;
1146         rsrc_bytes = a->compressed_rsrc_position - RSRC_F_SIZE;
1147         rsrc_header_bytes =
1148                 RSRC_H_SIZE +           /* Header base size. */
1149                 4 +                     /* Block count. */
1150                 (a->decmpfs_block_count * 8);/* Block info */
1151         archive_be32enc(buff, 0x100);
1152         archive_be32enc(buff + 4, rsrc_bytes);
1153         archive_be32enc(buff + 8, rsrc_bytes - 256);
1154         archive_be32enc(buff + 12, 0x32);
1155         memset(buff + 16, 0, 240);
1156         archive_be32enc(buff + 256, rsrc_bytes - 260);
1157         return hfs_write_resource_fork(a, buff, rsrc_header_bytes, 0);
1158 }
1159
1160 static size_t
1161 hfs_set_resource_fork_footer(unsigned char *buff, size_t buff_size)
1162 {
1163         static const char rsrc_footer[RSRC_F_SIZE] = {
1164                 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1165                 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1166                 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1167                 0x00, 0x1c, 0x00, 0x32, 0x00, 0x00, 'c',  'm',
1168                 'p', 'f',   0x00, 0x00, 0x00, 0x0a, 0x00, 0x01,
1169                 0xff, 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
1170                 0x00, 0x00
1171         };
1172         if (buff_size < sizeof(rsrc_footer))
1173                 return (0);
1174         memcpy(buff, rsrc_footer, sizeof(rsrc_footer));
1175         return (sizeof(rsrc_footer));
1176 }
1177
1178 static int
1179 hfs_reset_compressor(struct archive_write_disk *a)
1180 {
1181         int ret;
1182
1183         if (a->stream_valid)
1184                 ret = deflateReset(&a->stream);
1185         else
1186                 ret = deflateInit(&a->stream, a->decmpfs_compression_level);
1187
1188         if (ret != Z_OK) {
1189                 archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
1190                     "Failed to initialize compressor");
1191                 return (ARCHIVE_FATAL);
1192         } else
1193                 a->stream_valid = 1;
1194
1195         return (ARCHIVE_OK);
1196 }
1197
1198 static int
1199 hfs_decompress(struct archive_write_disk *a)
1200 {
1201         uint32_t *block_info;
1202         unsigned int block_count;
1203         uint32_t data_pos, data_size;
1204         ssize_t r;
1205         ssize_t bytes_written, bytes_to_write;
1206         unsigned char *b;
1207
1208         block_info = (uint32_t *)(a->resource_fork + RSRC_H_SIZE);
1209         block_count = archive_le32dec(block_info++);
1210         while (block_count--) {
1211                 data_pos = RSRC_H_SIZE + archive_le32dec(block_info++);
1212                 data_size = archive_le32dec(block_info++);
1213                 r = fgetxattr(a->fd, XATTR_RESOURCEFORK_NAME,
1214                     a->compressed_buffer, data_size, data_pos, 0);
1215                 if (r != data_size)  {
1216                         archive_set_error(&a->archive,
1217                             (r < 0)?errno:ARCHIVE_ERRNO_MISC,
1218                             "Failed to read resource fork");
1219                         return (ARCHIVE_WARN);
1220                 }
1221                 if (a->compressed_buffer[0] == 0xff) {
1222                         bytes_to_write = data_size -1;
1223                         b = a->compressed_buffer + 1;
1224                 } else {
1225                         uLong dest_len = MAX_DECMPFS_BLOCK_SIZE;
1226                         int zr;
1227
1228                         zr = uncompress((Bytef *)a->uncompressed_buffer,
1229                             &dest_len, a->compressed_buffer, data_size);
1230                         if (zr != Z_OK) {
1231                                 archive_set_error(&a->archive,
1232                                     ARCHIVE_ERRNO_MISC,
1233                                     "Failed to decompress resource fork");
1234                                 return (ARCHIVE_WARN);
1235                         }
1236                         bytes_to_write = dest_len;
1237                         b = (unsigned char *)a->uncompressed_buffer;
1238                 }
1239                 do {
1240                         bytes_written = write(a->fd, b, bytes_to_write);
1241                         if (bytes_written < 0) {
1242                                 archive_set_error(&a->archive, errno,
1243                                     "Write failed");
1244                                 return (ARCHIVE_WARN);
1245                         }
1246                         bytes_to_write -= bytes_written;
1247                         b += bytes_written;
1248                 } while (bytes_to_write > 0);
1249         }
1250         r = fremovexattr(a->fd, XATTR_RESOURCEFORK_NAME, 0);
1251         if (r == -1)  {
1252                 archive_set_error(&a->archive, errno,
1253                     "Failed to remove resource fork");
1254                 return (ARCHIVE_WARN);
1255         }
1256         return (ARCHIVE_OK);
1257 }
1258
1259 static int
1260 hfs_drive_compressor(struct archive_write_disk *a, const char *buff,
1261     size_t size)
1262 {
1263         unsigned char *buffer_compressed;
1264         size_t bytes_compressed;
1265         size_t bytes_used;
1266         int ret;
1267
1268         ret = hfs_reset_compressor(a);
1269         if (ret != ARCHIVE_OK)
1270                 return (ret);
1271
1272         if (a->compressed_buffer == NULL) {
1273                 size_t block_size;
1274
1275                 block_size = COMPRESSED_W_SIZE + RSRC_F_SIZE +
1276                     + compressBound(MAX_DECMPFS_BLOCK_SIZE);
1277                 a->compressed_buffer = malloc(block_size);
1278                 if (a->compressed_buffer == NULL) {
1279                         archive_set_error(&a->archive, ENOMEM,
1280                             "Can't allocate memory for Resource Fork");
1281                         return (ARCHIVE_FATAL);
1282                 }
1283                 a->compressed_buffer_size = block_size;
1284                 a->compressed_buffer_remaining = block_size;
1285         }
1286
1287         buffer_compressed = a->compressed_buffer +
1288             a->compressed_buffer_size - a->compressed_buffer_remaining;
1289         a->stream.next_in = (Bytef *)(uintptr_t)(const void *)buff;
1290         a->stream.avail_in = size;
1291         a->stream.next_out = buffer_compressed;
1292         a->stream.avail_out = a->compressed_buffer_remaining;
1293         do {
1294                 ret = deflate(&a->stream, Z_FINISH);
1295                 switch (ret) {
1296                 case Z_OK:
1297                 case Z_STREAM_END:
1298                         break;
1299                 default:
1300                         archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
1301                             "Failed to compress data");
1302                         return (ARCHIVE_FAILED);
1303                 }
1304         } while (ret == Z_OK);
1305         bytes_compressed = a->compressed_buffer_remaining - a->stream.avail_out;
1306
1307         /*
1308          * If the compressed size is larger than the original size,
1309          * throw away compressed data, use uncompressed data instead.
1310          */
1311         if (bytes_compressed > size) {
1312                 buffer_compressed[0] = 0xFF;/* uncompressed marker. */
1313                 memcpy(buffer_compressed + 1, buff, size);
1314                 bytes_compressed = size + 1;
1315         }
1316         a->compressed_buffer_remaining -= bytes_compressed;
1317
1318         /*
1319          * If the compressed size is smaller than MAX_DECMPFS_XATTR_SIZE
1320          * and the block count in the file is only one, store compressed
1321          * data to decmpfs xattr instead of the resource fork.
1322          */
1323         if (a->decmpfs_block_count == 1 &&
1324             (a->decmpfs_attr_size + bytes_compressed)
1325               <= MAX_DECMPFS_XATTR_SIZE) {
1326                 archive_le32enc(&a->decmpfs_header_p[DECMPFS_COMPRESSION_TYPE],
1327                     CMP_XATTR);
1328                 memcpy(a->decmpfs_header_p + DECMPFS_HEADER_SIZE,
1329                     buffer_compressed, bytes_compressed);
1330                 a->decmpfs_attr_size += bytes_compressed;
1331                 a->compressed_buffer_remaining = a->compressed_buffer_size;
1332                 /*
1333                  * Finish HFS+ Compression.
1334                  * - Write the decmpfs xattr.
1335                  * - Set the UF_COMPRESSED file flag.
1336                  */
1337                 ret = hfs_write_decmpfs(a);
1338                 if (ret == ARCHIVE_OK)
1339                         ret = hfs_set_compressed_fflag(a);
1340                 return (ret);
1341         }
1342
1343         /* Update block info. */
1344         archive_le32enc(a->decmpfs_block_info++,
1345             a->compressed_rsrc_position_v - RSRC_H_SIZE);
1346         archive_le32enc(a->decmpfs_block_info++, bytes_compressed);
1347         a->compressed_rsrc_position_v += bytes_compressed;
1348
1349         /*
1350          * Write the compressed data to the resource fork.
1351          */
1352         bytes_used = a->compressed_buffer_size - a->compressed_buffer_remaining;
1353         while (bytes_used >= COMPRESSED_W_SIZE) {
1354                 ret = hfs_write_compressed_data(a, COMPRESSED_W_SIZE);
1355                 if (ret != ARCHIVE_OK)
1356                         return (ret);
1357                 bytes_used -= COMPRESSED_W_SIZE;
1358                 if (bytes_used > COMPRESSED_W_SIZE)
1359                         memmove(a->compressed_buffer,
1360                             a->compressed_buffer + COMPRESSED_W_SIZE,
1361                             bytes_used);
1362                 else
1363                         memcpy(a->compressed_buffer,
1364                             a->compressed_buffer + COMPRESSED_W_SIZE,
1365                             bytes_used);
1366         }
1367         a->compressed_buffer_remaining = a->compressed_buffer_size - bytes_used;
1368
1369         /*
1370          * If the current block is the last block, write the remaining
1371          * compressed data and the resource fork footer.
1372          */
1373         if (a->file_remaining_bytes == 0) {
1374                 size_t rsrc_size;
1375                 int64_t bk;
1376
1377                 /* Append the resource footer. */
1378                 rsrc_size = hfs_set_resource_fork_footer(
1379                     a->compressed_buffer + bytes_used,
1380                     a->compressed_buffer_remaining);
1381                 ret = hfs_write_compressed_data(a, bytes_used + rsrc_size);
1382                 a->compressed_buffer_remaining = a->compressed_buffer_size;
1383
1384                 /* If the compressed size is not enough smaller than
1385                  * the uncompressed size. cancel HFS+ compression.
1386                  * TODO: study a behavior of ditto utility and improve
1387                  * the condition to fall back into no HFS+ compression. */
1388                 bk = HFS_BLOCKS(a->compressed_rsrc_position);
1389                 bk += bk >> 7;
1390                 if (bk > HFS_BLOCKS(a->filesize))
1391                         return hfs_decompress(a);
1392                 /*
1393                  * Write the resourcefork header.
1394                  */
1395                 if (ret == ARCHIVE_OK)
1396                         ret = hfs_write_resource_fork_header(a);
1397                 /*
1398                  * Finish HFS+ Compression.
1399                  * - Write the decmpfs xattr.
1400                  * - Set the UF_COMPRESSED file flag.
1401                  */
1402                 if (ret == ARCHIVE_OK)
1403                         ret = hfs_write_decmpfs(a);
1404                 if (ret == ARCHIVE_OK)
1405                         ret = hfs_set_compressed_fflag(a);
1406         }
1407         return (ret);
1408 }
1409
1410 static ssize_t
1411 hfs_write_decmpfs_block(struct archive_write_disk *a, const char *buff,
1412     size_t size)
1413 {
1414         const char *buffer_to_write;
1415         size_t bytes_to_write;
1416         int ret;
1417
1418         if (a->decmpfs_block_count == (unsigned)-1) {
1419                 void *new_block;
1420                 size_t new_size;
1421                 unsigned int block_count;
1422
1423                 if (a->decmpfs_header_p == NULL) {
1424                         new_block = malloc(MAX_DECMPFS_XATTR_SIZE
1425                             + sizeof(uint32_t));
1426                         if (new_block == NULL) {
1427                                 archive_set_error(&a->archive, ENOMEM,
1428                                     "Can't allocate memory for decmpfs");
1429                                 return (ARCHIVE_FATAL);
1430                         }
1431                         a->decmpfs_header_p = new_block;
1432                 }
1433                 a->decmpfs_attr_size = DECMPFS_HEADER_SIZE;
1434                 archive_le32enc(&a->decmpfs_header_p[DECMPFS_COMPRESSION_MAGIC],
1435                     DECMPFS_MAGIC);
1436                 archive_le32enc(&a->decmpfs_header_p[DECMPFS_COMPRESSION_TYPE],
1437                     CMP_RESOURCE_FORK);
1438                 archive_le64enc(&a->decmpfs_header_p[DECMPFS_UNCOMPRESSED_SIZE],
1439                     a->filesize);
1440
1441                 /* Calculate a block count of the file. */
1442                 block_count =
1443                     (a->filesize + MAX_DECMPFS_BLOCK_SIZE -1) /
1444                         MAX_DECMPFS_BLOCK_SIZE;
1445                 /*
1446                  * Allocate buffer for resource fork.
1447                  * Set up related pointers;
1448                  */
1449                 new_size =
1450                     RSRC_H_SIZE + /* header */
1451                     4 + /* Block count */
1452                     (block_count * sizeof(uint32_t) * 2) +
1453                     RSRC_F_SIZE; /* footer */
1454                 if (new_size > a->resource_fork_allocated_size) {
1455                         new_block = realloc(a->resource_fork, new_size);
1456                         if (new_block == NULL) {
1457                                 archive_set_error(&a->archive, ENOMEM,
1458                                     "Can't allocate memory for ResourceFork");
1459                                 return (ARCHIVE_FATAL);
1460                         }
1461                         a->resource_fork_allocated_size = new_size;
1462                         a->resource_fork = new_block;
1463                 }
1464
1465                 /* Allocate uncompressed buffer */
1466                 if (a->uncompressed_buffer == NULL) {
1467                         new_block = malloc(MAX_DECMPFS_BLOCK_SIZE);
1468                         if (new_block == NULL) {
1469                                 archive_set_error(&a->archive, ENOMEM,
1470                                     "Can't allocate memory for decmpfs");
1471                                 return (ARCHIVE_FATAL);
1472                         }
1473                         a->uncompressed_buffer = new_block;
1474                 }
1475                 a->block_remaining_bytes = MAX_DECMPFS_BLOCK_SIZE;
1476                 a->file_remaining_bytes = a->filesize;
1477                 a->compressed_buffer_remaining = a->compressed_buffer_size;
1478
1479                 /*
1480                  * Set up a resource fork.
1481                  */
1482                 a->rsrc_xattr_options = XATTR_CREATE;
1483                 /* Get the position where we are going to set a bunch
1484                  * of block info. */
1485                 a->decmpfs_block_info =
1486                     (uint32_t *)(a->resource_fork + RSRC_H_SIZE);
1487                 /* Set the block count to the resource fork. */
1488                 archive_le32enc(a->decmpfs_block_info++, block_count);
1489                 /* Get the position where we are going to set compressed
1490                  * data. */
1491                 a->compressed_rsrc_position =
1492                     RSRC_H_SIZE + 4 + (block_count * 8);
1493                 a->compressed_rsrc_position_v = a->compressed_rsrc_position;
1494                 a->decmpfs_block_count = block_count;
1495         }
1496
1497         /* Ignore redundant bytes. */
1498         if (a->file_remaining_bytes == 0)
1499                 return ((ssize_t)size);
1500
1501         /* Do not overrun a block size. */
1502         if (size > a->block_remaining_bytes)
1503                 bytes_to_write = a->block_remaining_bytes;
1504         else
1505                 bytes_to_write = size;
1506         /* Do not overrun the file size. */
1507         if (bytes_to_write > a->file_remaining_bytes)
1508                 bytes_to_write = a->file_remaining_bytes;
1509
1510         /* For efficiency, if a copy length is full of the uncompressed
1511          * buffer size, do not copy writing data to it. */
1512         if (bytes_to_write == MAX_DECMPFS_BLOCK_SIZE)
1513                 buffer_to_write = buff;
1514         else {
1515                 memcpy(a->uncompressed_buffer +
1516                     MAX_DECMPFS_BLOCK_SIZE - a->block_remaining_bytes,
1517                     buff, bytes_to_write);
1518                 buffer_to_write = a->uncompressed_buffer;
1519         }
1520         a->block_remaining_bytes -= bytes_to_write;
1521         a->file_remaining_bytes -= bytes_to_write;
1522
1523         if (a->block_remaining_bytes == 0 || a->file_remaining_bytes == 0) {
1524                 ret = hfs_drive_compressor(a, buffer_to_write,
1525                     MAX_DECMPFS_BLOCK_SIZE - a->block_remaining_bytes);
1526                 if (ret < 0)
1527                         return (ret);
1528                 a->block_remaining_bytes = MAX_DECMPFS_BLOCK_SIZE;
1529         }
1530         /* Ignore redundant bytes. */
1531         if (a->file_remaining_bytes == 0)
1532                 return ((ssize_t)size);
1533         return (bytes_to_write);
1534 }
1535
1536 static ssize_t
1537 hfs_write_data_block(struct archive_write_disk *a, const char *buff,
1538     size_t size)
1539 {
1540         uint64_t start_size = size;
1541         ssize_t bytes_written = 0;
1542         ssize_t bytes_to_write;
1543
1544         if (size == 0)
1545                 return (ARCHIVE_OK);
1546
1547         if (a->filesize == 0 || a->fd < 0) {
1548                 archive_set_error(&a->archive, 0,
1549                     "Attempt to write to an empty file");
1550                 return (ARCHIVE_WARN);
1551         }
1552
1553         /* If this write would run beyond the file size, truncate it. */
1554         if (a->filesize >= 0 && (int64_t)(a->offset + size) > a->filesize)
1555                 start_size = size = (size_t)(a->filesize - a->offset);
1556
1557         /* Write the data. */
1558         while (size > 0) {
1559                 bytes_to_write = size;
1560                 /* Seek if necessary to the specified offset. */
1561                 if (a->offset < a->fd_offset) {
1562                         /* Can't support backward move. */
1563                         archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
1564                             "Seek failed");
1565                         return (ARCHIVE_FATAL);
1566                 } else if (a->offset > a->fd_offset) {
1567                         int64_t skip = a->offset - a->fd_offset;
1568                         char nullblock[1024];
1569
1570                         memset(nullblock, 0, sizeof(nullblock));
1571                         while (skip > 0) {
1572                                 if (skip > (int64_t)sizeof(nullblock))
1573                                         bytes_written = hfs_write_decmpfs_block(
1574                                             a, nullblock, sizeof(nullblock));
1575                                 else
1576                                         bytes_written = hfs_write_decmpfs_block(
1577                                             a, nullblock, skip);
1578                                 if (bytes_written < 0) {
1579                                         archive_set_error(&a->archive, errno,
1580                                             "Write failed");
1581                                         return (ARCHIVE_WARN);
1582                                 }
1583                                 skip -= bytes_written;
1584                         }
1585
1586                         a->fd_offset = a->offset;
1587                 }
1588                 bytes_written =
1589                     hfs_write_decmpfs_block(a, buff, bytes_to_write);
1590                 if (bytes_written < 0)
1591                         return (bytes_written);
1592                 buff += bytes_written;
1593                 size -= bytes_written;
1594                 a->total_bytes_written += bytes_written;
1595                 a->offset += bytes_written;
1596                 a->fd_offset = a->offset;
1597         }
1598         return (start_size - size);
1599 }
1600 #else
1601 static ssize_t
1602 hfs_write_data_block(struct archive_write_disk *a, const char *buff,
1603     size_t size)
1604 {
1605         return (write_data_block(a, buff, size));
1606 }
1607 #endif
1608
1609 static ssize_t
1610 _archive_write_disk_data_block(struct archive *_a,
1611     const void *buff, size_t size, int64_t offset)
1612 {
1613         struct archive_write_disk *a = (struct archive_write_disk *)_a;
1614         ssize_t r;
1615
1616         archive_check_magic(&a->archive, ARCHIVE_WRITE_DISK_MAGIC,
1617             ARCHIVE_STATE_DATA, "archive_write_data_block");
1618
1619         a->offset = offset;
1620         if (a->todo & TODO_HFS_COMPRESSION)
1621                 r = hfs_write_data_block(a, buff, size);
1622         else
1623                 r = write_data_block(a, buff, size);
1624         if (r < ARCHIVE_OK)
1625                 return (r);
1626         if ((size_t)r < size) {
1627                 archive_set_error(&a->archive, 0,
1628                     "Too much data: Truncating file at %ju bytes",
1629                     (uintmax_t)a->filesize);
1630                 return (ARCHIVE_WARN);
1631         }
1632 #if ARCHIVE_VERSION_NUMBER < 3999000
1633         return (ARCHIVE_OK);
1634 #else
1635         return (size);
1636 #endif
1637 }
1638
1639 static ssize_t
1640 _archive_write_disk_data(struct archive *_a, const void *buff, size_t size)
1641 {
1642         struct archive_write_disk *a = (struct archive_write_disk *)_a;
1643
1644         archive_check_magic(&a->archive, ARCHIVE_WRITE_DISK_MAGIC,
1645             ARCHIVE_STATE_DATA, "archive_write_data");
1646
1647         if (a->todo & TODO_HFS_COMPRESSION)
1648                 return (hfs_write_data_block(a, buff, size));
1649         return (write_data_block(a, buff, size));
1650 }
1651
1652 static int
1653 _archive_write_disk_finish_entry(struct archive *_a)
1654 {
1655         struct archive_write_disk *a = (struct archive_write_disk *)_a;
1656         int ret = ARCHIVE_OK;
1657
1658         archive_check_magic(&a->archive, ARCHIVE_WRITE_DISK_MAGIC,
1659             ARCHIVE_STATE_HEADER | ARCHIVE_STATE_DATA,
1660             "archive_write_finish_entry");
1661         if (a->archive.state & ARCHIVE_STATE_HEADER)
1662                 return (ARCHIVE_OK);
1663         archive_clear_error(&a->archive);
1664
1665         /* Pad or truncate file to the right size. */
1666         if (a->fd < 0) {
1667                 /* There's no file. */
1668         } else if (a->filesize < 0) {
1669                 /* File size is unknown, so we can't set the size. */
1670         } else if (a->fd_offset == a->filesize) {
1671                 /* Last write ended at exactly the filesize; we're done. */
1672                 /* Hopefully, this is the common case. */
1673 #if defined(__APPLE__) && defined(UF_COMPRESSED) && defined(HAVE_ZLIB_H)
1674         } else if (a->todo & TODO_HFS_COMPRESSION) {
1675                 char null_d[1024];
1676                 ssize_t r;
1677
1678                 if (a->file_remaining_bytes)
1679                         memset(null_d, 0, sizeof(null_d));
1680                 while (a->file_remaining_bytes) {
1681                         if (a->file_remaining_bytes > sizeof(null_d))
1682                                 r = hfs_write_data_block(
1683                                     a, null_d, sizeof(null_d));
1684                         else
1685                                 r = hfs_write_data_block(
1686                                     a, null_d, a->file_remaining_bytes);
1687                         if (r < 0)
1688                                 return ((int)r);
1689                 }
1690 #endif
1691         } else {
1692 #if HAVE_FTRUNCATE
1693                 if (ftruncate(a->fd, a->filesize) == -1 &&
1694                     a->filesize == 0) {
1695                         archive_set_error(&a->archive, errno,
1696                             "File size could not be restored");
1697                         return (ARCHIVE_FAILED);
1698                 }
1699 #endif
1700                 /*
1701                  * Not all platforms implement the XSI option to
1702                  * extend files via ftruncate.  Stat() the file again
1703                  * to see what happened.
1704                  */
1705                 a->pst = NULL;
1706                 if ((ret = lazy_stat(a)) != ARCHIVE_OK)
1707                         return (ret);
1708                 /* We can use lseek()/write() to extend the file if
1709                  * ftruncate didn't work or isn't available. */
1710                 if (a->st.st_size < a->filesize) {
1711                         const char nul = '\0';
1712                         if (lseek(a->fd, a->filesize - 1, SEEK_SET) < 0) {
1713                                 archive_set_error(&a->archive, errno,
1714                                     "Seek failed");
1715                                 return (ARCHIVE_FATAL);
1716                         }
1717                         if (write(a->fd, &nul, 1) < 0) {
1718                                 archive_set_error(&a->archive, errno,
1719                                     "Write to restore size failed");
1720                                 return (ARCHIVE_FATAL);
1721                         }
1722                         a->pst = NULL;
1723                 }
1724         }
1725
1726         /* Restore metadata. */
1727
1728         /*
1729          * This is specific to Mac OS X.
1730          * If the current file is an AppleDouble file, it should be
1731          * linked with the data fork file and remove it.
1732          */
1733         if (a->todo & TODO_APPLEDOUBLE) {
1734                 int r2 = fixup_appledouble(a, a->name);
1735                 if (r2 == ARCHIVE_EOF) {
1736                         /* The current file has been successfully linked
1737                          * with the data fork file and removed. So there
1738                          * is nothing to do on the current file.  */
1739                         goto finish_metadata;
1740                 }
1741                 if (r2 < ret) ret = r2;
1742         }
1743
1744         /*
1745          * Look up the "real" UID only if we're going to need it.
1746          * TODO: the TODO_SGID condition can be dropped here, can't it?
1747          */
1748         if (a->todo & (TODO_OWNER | TODO_SUID | TODO_SGID)) {
1749                 a->uid = archive_write_disk_uid(&a->archive,
1750                     archive_entry_uname(a->entry),
1751                     archive_entry_uid(a->entry));
1752         }
1753         /* Look up the "real" GID only if we're going to need it. */
1754         /* TODO: the TODO_SUID condition can be dropped here, can't it? */
1755         if (a->todo & (TODO_OWNER | TODO_SGID | TODO_SUID)) {
1756                 a->gid = archive_write_disk_gid(&a->archive,
1757                     archive_entry_gname(a->entry),
1758                     archive_entry_gid(a->entry));
1759          }
1760
1761         /*
1762          * Restore ownership before set_mode tries to restore suid/sgid
1763          * bits.  If we set the owner, we know what it is and can skip
1764          * a stat() call to examine the ownership of the file on disk.
1765          */
1766         if (a->todo & TODO_OWNER) {
1767                 int r2 = set_ownership(a);
1768                 if (r2 < ret) ret = r2;
1769         }
1770
1771         /*
1772          * set_mode must precede ACLs on systems such as Solaris and
1773          * FreeBSD where setting the mode implicitly clears extended ACLs
1774          */
1775         if (a->todo & TODO_MODE) {
1776                 int r2 = set_mode(a, a->mode);
1777                 if (r2 < ret) ret = r2;
1778         }
1779
1780         /*
1781          * Security-related extended attributes (such as
1782          * security.capability on Linux) have to be restored last,
1783          * since they're implicitly removed by other file changes.
1784          */
1785         if (a->todo & TODO_XATTR) {
1786                 int r2 = set_xattrs(a);
1787                 if (r2 < ret) ret = r2;
1788         }
1789
1790         /*
1791          * Some flags prevent file modification; they must be restored after
1792          * file contents are written.
1793          */
1794         if (a->todo & TODO_FFLAGS) {
1795                 int r2 = set_fflags(a);
1796                 if (r2 < ret) ret = r2;
1797         }
1798
1799         /*
1800          * Time must follow most other metadata;
1801          * otherwise atime will get changed.
1802          */
1803         if (a->todo & TODO_TIMES) {
1804                 int r2 = set_times_from_entry(a);
1805                 if (r2 < ret) ret = r2;
1806         }
1807
1808         /*
1809          * Mac extended metadata includes ACLs.
1810          */
1811         if (a->todo & TODO_MAC_METADATA) {
1812                 const void *metadata;
1813                 size_t metadata_size;
1814                 metadata = archive_entry_mac_metadata(a->entry, &metadata_size);
1815                 if (metadata != NULL && metadata_size > 0) {
1816                         int r2 = set_mac_metadata(a, archive_entry_pathname(
1817                             a->entry), metadata, metadata_size);
1818                         if (r2 < ret) ret = r2;
1819                 }
1820         }
1821
1822         /*
1823          * ACLs must be restored after timestamps because there are
1824          * ACLs that prevent attribute changes (including time).
1825          */
1826         if (a->todo & TODO_ACLS) {
1827                 int r2;
1828                 r2 = archive_write_disk_set_acls(&a->archive, a->fd,
1829                     archive_entry_pathname(a->entry),
1830                     archive_entry_acl(a->entry),
1831                     archive_entry_mode(a->entry));
1832                 if (r2 < ret) ret = r2;
1833         }
1834
1835 finish_metadata:
1836         /* If there's an fd, we can close it now. */
1837         if (a->fd >= 0) {
1838                 close(a->fd);
1839                 a->fd = -1;
1840                 if (a->tmpname) {
1841                         if (rename(a->tmpname, a->name) == -1) {
1842                                 archive_set_error(&a->archive, errno,
1843                                     "Failed to rename temporary file");
1844                                 ret = ARCHIVE_FAILED;
1845                                 unlink(a->tmpname);
1846                         }
1847                         a->tmpname = NULL;
1848                 }
1849         }
1850         /* If there's an entry, we can release it now. */
1851         archive_entry_free(a->entry);
1852         a->entry = NULL;
1853         a->archive.state = ARCHIVE_STATE_HEADER;
1854         return (ret);
1855 }
1856
1857 int
1858 archive_write_disk_set_group_lookup(struct archive *_a,
1859     void *private_data,
1860     la_int64_t (*lookup_gid)(void *private, const char *gname, la_int64_t gid),
1861     void (*cleanup_gid)(void *private))
1862 {
1863         struct archive_write_disk *a = (struct archive_write_disk *)_a;
1864         archive_check_magic(&a->archive, ARCHIVE_WRITE_DISK_MAGIC,
1865             ARCHIVE_STATE_ANY, "archive_write_disk_set_group_lookup");
1866
1867         if (a->cleanup_gid != NULL && a->lookup_gid_data != NULL)
1868                 (a->cleanup_gid)(a->lookup_gid_data);
1869
1870         a->lookup_gid = lookup_gid;
1871         a->cleanup_gid = cleanup_gid;
1872         a->lookup_gid_data = private_data;
1873         return (ARCHIVE_OK);
1874 }
1875
1876 int
1877 archive_write_disk_set_user_lookup(struct archive *_a,
1878     void *private_data,
1879     int64_t (*lookup_uid)(void *private, const char *uname, int64_t uid),
1880     void (*cleanup_uid)(void *private))
1881 {
1882         struct archive_write_disk *a = (struct archive_write_disk *)_a;
1883         archive_check_magic(&a->archive, ARCHIVE_WRITE_DISK_MAGIC,
1884             ARCHIVE_STATE_ANY, "archive_write_disk_set_user_lookup");
1885
1886         if (a->cleanup_uid != NULL && a->lookup_uid_data != NULL)
1887                 (a->cleanup_uid)(a->lookup_uid_data);
1888
1889         a->lookup_uid = lookup_uid;
1890         a->cleanup_uid = cleanup_uid;
1891         a->lookup_uid_data = private_data;
1892         return (ARCHIVE_OK);
1893 }
1894
1895 int64_t
1896 archive_write_disk_gid(struct archive *_a, const char *name, la_int64_t id)
1897 {
1898        struct archive_write_disk *a = (struct archive_write_disk *)_a;
1899        archive_check_magic(&a->archive, ARCHIVE_WRITE_DISK_MAGIC,
1900            ARCHIVE_STATE_ANY, "archive_write_disk_gid");
1901        if (a->lookup_gid)
1902                return (a->lookup_gid)(a->lookup_gid_data, name, id);
1903        return (id);
1904 }
1905  
1906 int64_t
1907 archive_write_disk_uid(struct archive *_a, const char *name, la_int64_t id)
1908 {
1909         struct archive_write_disk *a = (struct archive_write_disk *)_a;
1910         archive_check_magic(&a->archive, ARCHIVE_WRITE_DISK_MAGIC,
1911             ARCHIVE_STATE_ANY, "archive_write_disk_uid");
1912         if (a->lookup_uid)
1913                 return (a->lookup_uid)(a->lookup_uid_data, name, id);
1914         return (id);
1915 }
1916
1917 /*
1918  * Create a new archive_write_disk object and initialize it with global state.
1919  */
1920 struct archive *
1921 archive_write_disk_new(void)
1922 {
1923         struct archive_write_disk *a;
1924
1925         a = (struct archive_write_disk *)calloc(1, sizeof(*a));
1926         if (a == NULL)
1927                 return (NULL);
1928         a->archive.magic = ARCHIVE_WRITE_DISK_MAGIC;
1929         /* We're ready to write a header immediately. */
1930         a->archive.state = ARCHIVE_STATE_HEADER;
1931         a->archive.vtable = archive_write_disk_vtable();
1932         a->start_time = time(NULL);
1933         /* Query and restore the umask. */
1934         umask(a->user_umask = umask(0));
1935 #ifdef HAVE_GETEUID
1936         a->user_uid = geteuid();
1937 #endif /* HAVE_GETEUID */
1938         if (archive_string_ensure(&a->path_safe, 512) == NULL) {
1939                 free(a);
1940                 return (NULL);
1941         }
1942 #ifdef HAVE_ZLIB_H
1943         a->decmpfs_compression_level = 5;
1944 #endif
1945         return (&a->archive);
1946 }
1947
1948
1949 /*
1950  * If pathname is longer than PATH_MAX, chdir to a suitable
1951  * intermediate dir and edit the path down to a shorter suffix.  Note
1952  * that this routine never returns an error; if the chdir() attempt
1953  * fails for any reason, we just go ahead with the long pathname.  The
1954  * object creation is likely to fail, but any error will get handled
1955  * at that time.
1956  */
1957 #if defined(HAVE_FCHDIR) && defined(PATH_MAX)
1958 static void
1959 edit_deep_directories(struct archive_write_disk *a)
1960 {
1961         int ret;
1962         char *tail = a->name;
1963
1964         /* If path is short, avoid the open() below. */
1965         if (strlen(tail) < PATH_MAX)
1966                 return;
1967
1968         /* Try to record our starting dir. */
1969         a->restore_pwd = la_opendirat(AT_FDCWD, ".");
1970         __archive_ensure_cloexec_flag(a->restore_pwd);
1971         if (a->restore_pwd < 0)
1972                 return;
1973
1974         /* As long as the path is too long... */
1975         while (strlen(tail) >= PATH_MAX) {
1976                 /* Locate a dir prefix shorter than PATH_MAX. */
1977                 tail += PATH_MAX - 8;
1978                 while (tail > a->name && *tail != '/')
1979                         tail--;
1980                 /* Exit if we find a too-long path component. */
1981                 if (tail <= a->name)
1982                         return;
1983                 /* Create the intermediate dir and chdir to it. */
1984                 *tail = '\0'; /* Terminate dir portion */
1985                 ret = create_dir(a, a->name);
1986                 if (ret == ARCHIVE_OK && chdir(a->name) != 0)
1987                         ret = ARCHIVE_FAILED;
1988                 *tail = '/'; /* Restore the / we removed. */
1989                 if (ret != ARCHIVE_OK)
1990                         return;
1991                 tail++;
1992                 /* The chdir() succeeded; we've now shortened the path. */
1993                 a->name = tail;
1994         }
1995         return;
1996 }
1997 #endif
1998
1999 /*
2000  * The main restore function.
2001  */
2002 static int
2003 restore_entry(struct archive_write_disk *a)
2004 {
2005         int ret = ARCHIVE_OK, en;
2006
2007         if (a->flags & ARCHIVE_EXTRACT_UNLINK && !S_ISDIR(a->mode)) {
2008                 /*
2009                  * TODO: Fix this.  Apparently, there are platforms
2010                  * that still allow root to hose the entire filesystem
2011                  * by unlinking a dir.  The S_ISDIR() test above
2012                  * prevents us from using unlink() here if the new
2013                  * object is a dir, but that doesn't mean the old
2014                  * object isn't a dir.
2015                  */
2016                 if (a->flags & ARCHIVE_EXTRACT_CLEAR_NOCHANGE_FFLAGS)
2017                         (void)clear_nochange_fflags(a);
2018                 if (unlink(a->name) == 0) {
2019                         /* We removed it, reset cached stat. */
2020                         a->pst = NULL;
2021                 } else if (errno == ENOENT) {
2022                         /* File didn't exist, that's just as good. */
2023                 } else if (rmdir(a->name) == 0) {
2024                         /* It was a dir, but now it's gone. */
2025                         a->pst = NULL;
2026                 } else {
2027                         /* We tried, but couldn't get rid of it. */
2028                         archive_set_error(&a->archive, errno,
2029                             "Could not unlink");
2030                         return(ARCHIVE_FAILED);
2031                 }
2032         }
2033
2034         /* Try creating it first; if this fails, we'll try to recover. */
2035         en = create_filesystem_object(a);
2036
2037         if ((en == ENOTDIR || en == ENOENT)
2038             && !(a->flags & ARCHIVE_EXTRACT_NO_AUTODIR)) {
2039                 /* If the parent dir doesn't exist, try creating it. */
2040                 create_parent_dir(a, a->name);
2041                 /* Now try to create the object again. */
2042                 en = create_filesystem_object(a);
2043         }
2044
2045         if ((en == ENOENT) && (archive_entry_hardlink(a->entry) != NULL)) {
2046                 archive_set_error(&a->archive, en,
2047                     "Hard-link target '%s' does not exist.",
2048                     archive_entry_hardlink(a->entry));
2049                 return (ARCHIVE_FAILED);
2050         }
2051
2052         if ((en == EISDIR || en == EEXIST)
2053             && (a->flags & ARCHIVE_EXTRACT_NO_OVERWRITE)) {
2054                 /* If we're not overwriting, we're done. */
2055                 if (S_ISDIR(a->mode)) {
2056                         /* Don't overwrite any settings on existing directories. */
2057                         a->todo = 0;
2058                 }
2059                 archive_entry_unset_size(a->entry);
2060                 return (ARCHIVE_OK);
2061         }
2062
2063         /*
2064          * Some platforms return EISDIR if you call
2065          * open(O_WRONLY | O_EXCL | O_CREAT) on a directory, some
2066          * return EEXIST.  POSIX is ambiguous, requiring EISDIR
2067          * for open(O_WRONLY) on a dir and EEXIST for open(O_EXCL | O_CREAT)
2068          * on an existing item.
2069          */
2070         if (en == EISDIR) {
2071                 /* A dir is in the way of a non-dir, rmdir it. */
2072                 if (rmdir(a->name) != 0) {
2073                         archive_set_error(&a->archive, errno,
2074                             "Can't remove already-existing dir");
2075                         return (ARCHIVE_FAILED);
2076                 }
2077                 a->pst = NULL;
2078                 /* Try again. */
2079                 en = create_filesystem_object(a);
2080         } else if (en == EEXIST) {
2081                 /*
2082                  * We know something is in the way, but we don't know what;
2083                  * we need to find out before we go any further.
2084                  */
2085                 int r = 0;
2086                 /*
2087                  * The SECURE_SYMLINKS logic has already removed a
2088                  * symlink to a dir if the client wants that.  So
2089                  * follow the symlink if we're creating a dir.
2090                  */
2091                 if (S_ISDIR(a->mode))
2092                         r = la_stat(a->name, &a->st);
2093                 /*
2094                  * If it's not a dir (or it's a broken symlink),
2095                  * then don't follow it.
2096                  */
2097                 if (r != 0 || !S_ISDIR(a->mode))
2098                         r = lstat(a->name, &a->st);
2099                 if (r != 0) {
2100                         archive_set_error(&a->archive, errno,
2101                             "Can't stat existing object");
2102                         return (ARCHIVE_FAILED);
2103                 }
2104
2105                 /*
2106                  * NO_OVERWRITE_NEWER doesn't apply to directories.
2107                  */
2108                 if ((a->flags & ARCHIVE_EXTRACT_NO_OVERWRITE_NEWER)
2109                     &&  !S_ISDIR(a->st.st_mode)) {
2110                         if (!older(&(a->st), a->entry)) {
2111                                 archive_entry_unset_size(a->entry);
2112                                 return (ARCHIVE_OK);
2113                         }
2114                 }
2115
2116                 /* If it's our archive, we're done. */
2117                 if (a->skip_file_set &&
2118                     a->st.st_dev == (dev_t)a->skip_file_dev &&
2119                     a->st.st_ino == (ino_t)a->skip_file_ino) {
2120                         archive_set_error(&a->archive, 0,
2121                             "Refusing to overwrite archive");
2122                         return (ARCHIVE_FAILED);
2123                 }
2124
2125                 if (!S_ISDIR(a->st.st_mode)) {
2126                         if (a->flags & ARCHIVE_EXTRACT_CLEAR_NOCHANGE_FFLAGS)
2127                                 (void)clear_nochange_fflags(a);
2128
2129                         if ((a->flags & ARCHIVE_EXTRACT_SAFE_WRITES) &&
2130                             S_ISREG(a->st.st_mode)) {
2131                                 /* Use a temporary file to extract */
2132                                 if ((a->fd = la_mktemp(a)) == -1) {
2133                                         archive_set_error(&a->archive, errno,
2134                                             "Can't create temporary file");
2135                                         return ARCHIVE_FAILED;
2136                                 }
2137                                 a->pst = NULL;
2138                                 en = 0;
2139                         } else {
2140                                 /* A non-dir is in the way, unlink it. */
2141                                 if (unlink(a->name) != 0) {
2142                                         archive_set_error(&a->archive, errno,
2143                                             "Can't unlink already-existing "
2144                                             "object");
2145                                         return (ARCHIVE_FAILED);
2146                                 }
2147                                 a->pst = NULL;
2148                                 /* Try again. */
2149                                 en = create_filesystem_object(a);
2150                         }
2151                 } else if (!S_ISDIR(a->mode)) {
2152                         /* A dir is in the way of a non-dir, rmdir it. */
2153                         if (a->flags & ARCHIVE_EXTRACT_CLEAR_NOCHANGE_FFLAGS)
2154                                 (void)clear_nochange_fflags(a);
2155                         if (rmdir(a->name) != 0) {
2156                                 archive_set_error(&a->archive, errno,
2157                                     "Can't replace existing directory with non-directory");
2158                                 return (ARCHIVE_FAILED);
2159                         }
2160                         /* Try again. */
2161                         en = create_filesystem_object(a);
2162                 } else {
2163                         /*
2164                          * There's a dir in the way of a dir.  Don't
2165                          * waste time with rmdir()/mkdir(), just fix
2166                          * up the permissions on the existing dir.
2167                          * Note that we don't change perms on existing
2168                          * dirs unless _EXTRACT_PERM is specified.
2169                          */
2170                         if ((a->mode != a->st.st_mode)
2171                             && (a->todo & TODO_MODE_FORCE))
2172                                 a->deferred |= (a->todo & TODO_MODE);
2173                         /* Ownership doesn't need deferred fixup. */
2174                         en = 0; /* Forget the EEXIST. */
2175                 }
2176         }
2177
2178         if (en) {
2179                 /* Everything failed; give up here. */
2180                 if ((&a->archive)->error == NULL)
2181                         archive_set_error(&a->archive, en, "Can't create '%s'",
2182                             a->name);
2183                 return (ARCHIVE_FAILED);
2184         }
2185
2186         a->pst = NULL; /* Cached stat data no longer valid. */
2187         return (ret);
2188 }
2189
2190 /*
2191  * Returns 0 if creation succeeds, or else returns errno value from
2192  * the failed system call.   Note:  This function should only ever perform
2193  * a single system call.
2194  */
2195 static int
2196 create_filesystem_object(struct archive_write_disk *a)
2197 {
2198         /* Create the entry. */
2199         const char *linkname;
2200         mode_t final_mode, mode;
2201         int r;
2202         /* these for check_symlinks_fsobj */
2203         char *linkname_copy;    /* non-const copy of linkname */
2204         struct stat st;
2205         struct archive_string error_string;
2206         int error_number;
2207
2208         /* We identify hard/symlinks according to the link names. */
2209         /* Since link(2) and symlink(2) don't handle modes, we're done here. */
2210         linkname = archive_entry_hardlink(a->entry);
2211         if (linkname != NULL) {
2212 #if !HAVE_LINK
2213                 return (EPERM);
2214 #else
2215                 archive_string_init(&error_string);
2216                 linkname_copy = strdup(linkname);
2217                 if (linkname_copy == NULL) {
2218                     return (EPERM);
2219                 }
2220                 /*
2221                  * TODO: consider using the cleaned-up path as the link
2222                  * target?
2223                  */
2224                 r = cleanup_pathname_fsobj(linkname_copy, &error_number,
2225                     &error_string, a->flags);
2226                 if (r != ARCHIVE_OK) {
2227                         archive_set_error(&a->archive, error_number, "%s",
2228                             error_string.s);
2229                         free(linkname_copy);
2230                         archive_string_free(&error_string);
2231                         /*
2232                          * EPERM is more appropriate than error_number for our
2233                          * callers
2234                          */
2235                         return (EPERM);
2236                 }
2237                 r = check_symlinks_fsobj(linkname_copy, &error_number,
2238                     &error_string, a->flags);
2239                 if (r != ARCHIVE_OK) {
2240                         archive_set_error(&a->archive, error_number, "%s",
2241                             error_string.s);
2242                         free(linkname_copy);
2243                         archive_string_free(&error_string);
2244                         /*
2245                          * EPERM is more appropriate than error_number for our
2246                          * callers
2247                          */
2248                         return (EPERM);
2249                 }
2250                 free(linkname_copy);
2251                 archive_string_free(&error_string);
2252                 /*
2253                  * Unlinking and linking here is really not atomic,
2254                  * but doing it right, would require us to construct
2255                  * an mktemplink() function, and then use rename(2).
2256                  */
2257                 if (a->flags & ARCHIVE_EXTRACT_SAFE_WRITES)
2258                         unlink(a->name);
2259                 r = link(linkname, a->name) ? errno : 0;
2260                 /*
2261                  * New cpio and pax formats allow hardlink entries
2262                  * to carry data, so we may have to open the file
2263                  * for hardlink entries.
2264                  *
2265                  * If the hardlink was successfully created and
2266                  * the archive doesn't have carry data for it,
2267                  * consider it to be non-authoritative for meta data.
2268                  * This is consistent with GNU tar and BSD pax.
2269                  * If the hardlink does carry data, let the last
2270                  * archive entry decide ownership.
2271                  */
2272                 if (r == 0 && a->filesize <= 0) {
2273                         a->todo = 0;
2274                         a->deferred = 0;
2275                 } else if (r == 0 && a->filesize > 0) {
2276 #ifdef HAVE_LSTAT
2277                         r = lstat(a->name, &st);
2278 #else
2279                         r = la_stat(a->name, &st);
2280 #endif
2281                         if (r != 0)
2282                                 r = errno;
2283                         else if ((st.st_mode & AE_IFMT) == AE_IFREG) {
2284                                 a->fd = open(a->name, O_WRONLY | O_TRUNC |
2285                                     O_BINARY | O_CLOEXEC | O_NOFOLLOW);
2286                                 __archive_ensure_cloexec_flag(a->fd);
2287                                 if (a->fd < 0)
2288                                         r = errno;
2289                         }
2290                 }
2291                 return (r);
2292 #endif
2293         }
2294         linkname = archive_entry_symlink(a->entry);
2295         if (linkname != NULL) {
2296 #if HAVE_SYMLINK
2297                 /*
2298                  * Unlinking and linking here is really not atomic,
2299                  * but doing it right, would require us to construct
2300                  * an mktempsymlink() function, and then use rename(2).
2301                  */
2302                 if (a->flags & ARCHIVE_EXTRACT_SAFE_WRITES)
2303                         unlink(a->name);
2304                 return symlink(linkname, a->name) ? errno : 0;
2305 #else
2306                 return (EPERM);
2307 #endif
2308         }
2309
2310         /*
2311          * The remaining system calls all set permissions, so let's
2312          * try to take advantage of that to avoid an extra chmod()
2313          * call.  (Recall that umask is set to zero right now!)
2314          */
2315
2316         /* Mode we want for the final restored object (w/o file type bits). */
2317         final_mode = a->mode & 07777;
2318         /*
2319          * The mode that will actually be restored in this step.  Note
2320          * that SUID, SGID, etc, require additional work to ensure
2321          * security, so we never restore them at this point.
2322          */
2323         mode = final_mode & 0777 & ~a->user_umask;
2324
2325         switch (a->mode & AE_IFMT) {
2326         default:
2327                 /* POSIX requires that we fall through here. */
2328                 /* FALLTHROUGH */
2329         case AE_IFREG:
2330                 a->tmpname = NULL;
2331                 a->fd = open(a->name,
2332                     O_WRONLY | O_CREAT | O_EXCL | O_BINARY | O_CLOEXEC, mode);
2333                 __archive_ensure_cloexec_flag(a->fd);
2334                 r = (a->fd < 0);
2335                 break;
2336         case AE_IFCHR:
2337 #ifdef HAVE_MKNOD
2338                 /* Note: we use AE_IFCHR for the case label, and
2339                  * S_IFCHR for the mknod() call.  This is correct.  */
2340                 r = mknod(a->name, mode | S_IFCHR,
2341                     archive_entry_rdev(a->entry));
2342                 break;
2343 #else
2344                 /* TODO: Find a better way to warn about our inability
2345                  * to restore a char device node. */
2346                 return (EINVAL);
2347 #endif /* HAVE_MKNOD */
2348         case AE_IFBLK:
2349 #ifdef HAVE_MKNOD
2350                 r = mknod(a->name, mode | S_IFBLK,
2351                     archive_entry_rdev(a->entry));
2352                 break;
2353 #else
2354                 /* TODO: Find a better way to warn about our inability
2355                  * to restore a block device node. */
2356                 return (EINVAL);
2357 #endif /* HAVE_MKNOD */
2358         case AE_IFDIR:
2359                 mode = (mode | MINIMUM_DIR_MODE) & MAXIMUM_DIR_MODE;
2360                 r = mkdir(a->name, mode);
2361                 if (r == 0) {
2362                         /* Defer setting dir times. */
2363                         a->deferred |= (a->todo & TODO_TIMES);
2364                         a->todo &= ~TODO_TIMES;
2365                         /* Never use an immediate chmod(). */
2366                         /* We can't avoid the chmod() entirely if EXTRACT_PERM
2367                          * because of SysV SGID inheritance. */
2368                         if ((mode != final_mode)
2369                             || (a->flags & ARCHIVE_EXTRACT_PERM))
2370                                 a->deferred |= (a->todo & TODO_MODE);
2371                         a->todo &= ~TODO_MODE;
2372                 }
2373                 break;
2374         case AE_IFIFO:
2375 #ifdef HAVE_MKFIFO
2376                 r = mkfifo(a->name, mode);
2377                 break;
2378 #else
2379                 /* TODO: Find a better way to warn about our inability
2380                  * to restore a fifo. */
2381                 return (EINVAL);
2382 #endif /* HAVE_MKFIFO */
2383         }
2384
2385         /* All the system calls above set errno on failure. */
2386         if (r)
2387                 return (errno);
2388
2389         /* If we managed to set the final mode, we've avoided a chmod(). */
2390         if (mode == final_mode)
2391                 a->todo &= ~TODO_MODE;
2392         return (0);
2393 }
2394
2395 /*
2396  * Cleanup function for archive_extract.  Mostly, this involves processing
2397  * the fixup list, which is used to address a number of problems:
2398  *   * Dir permissions might prevent us from restoring a file in that
2399  *     dir, so we restore the dir with minimum 0700 permissions first,
2400  *     then correct the mode at the end.
2401  *   * Similarly, the act of restoring a file touches the directory
2402  *     and changes the timestamp on the dir, so we have to touch-up dir
2403  *     timestamps at the end as well.
2404  *   * Some file flags can interfere with the restore by, for example,
2405  *     preventing the creation of hardlinks to those files.
2406  *   * Mac OS extended metadata includes ACLs, so must be deferred on dirs.
2407  *
2408  * Note that tar/cpio do not require that archives be in a particular
2409  * order; there is no way to know when the last file has been restored
2410  * within a directory, so there's no way to optimize the memory usage
2411  * here by fixing up the directory any earlier than the
2412  * end-of-archive.
2413  *
2414  * XXX TODO: Directory ACLs should be restored here, for the same
2415  * reason we set directory perms here. XXX
2416  */
2417 static int
2418 _archive_write_disk_close(struct archive *_a)
2419 {
2420         struct archive_write_disk *a = (struct archive_write_disk *)_a;
2421         struct fixup_entry *next, *p;
2422         int fd, ret;
2423
2424         archive_check_magic(&a->archive, ARCHIVE_WRITE_DISK_MAGIC,
2425             ARCHIVE_STATE_HEADER | ARCHIVE_STATE_DATA,
2426             "archive_write_disk_close");
2427         ret = _archive_write_disk_finish_entry(&a->archive);
2428
2429         /* Sort dir list so directories are fixed up in depth-first order. */
2430         p = sort_dir_list(a->fixup_list);
2431
2432         while (p != NULL) {
2433                 fd = -1;
2434                 a->pst = NULL; /* Mark stat cache as out-of-date. */
2435                 if (p->fixup &
2436                     (TODO_TIMES | TODO_MODE_BASE | TODO_ACLS | TODO_FFLAGS)) {
2437                         fd = open(p->name,
2438                             O_WRONLY | O_BINARY | O_NOFOLLOW | O_CLOEXEC);
2439                 }
2440                 if (p->fixup & TODO_TIMES) {
2441                         set_times(a, fd, p->mode, p->name,
2442                             p->atime, p->atime_nanos,
2443                             p->birthtime, p->birthtime_nanos,
2444                             p->mtime, p->mtime_nanos,
2445                             p->ctime, p->ctime_nanos);
2446                 }
2447                 if (p->fixup & TODO_MODE_BASE) {
2448 #ifdef HAVE_FCHMOD
2449                         if (fd >= 0)
2450                                 fchmod(fd, p->mode);
2451                         else
2452 #endif
2453                         chmod(p->name, p->mode);
2454                 }
2455                 if (p->fixup & TODO_ACLS)
2456                         archive_write_disk_set_acls(&a->archive, fd,
2457                             p->name, &p->acl, p->mode);
2458                 if (p->fixup & TODO_FFLAGS)
2459                         set_fflags_platform(a, fd, p->name,
2460                             p->mode, p->fflags_set, 0);
2461                 if (p->fixup & TODO_MAC_METADATA)
2462                         set_mac_metadata(a, p->name, p->mac_metadata,
2463                                          p->mac_metadata_size);
2464                 next = p->next;
2465                 archive_acl_clear(&p->acl);
2466                 free(p->mac_metadata);
2467                 free(p->name);
2468                 if (fd >= 0)
2469                         close(fd);
2470                 free(p);
2471                 p = next;
2472         }
2473         a->fixup_list = NULL;
2474         return (ret);
2475 }
2476
2477 static int
2478 _archive_write_disk_free(struct archive *_a)
2479 {
2480         struct archive_write_disk *a;
2481         int ret;
2482         if (_a == NULL)
2483                 return (ARCHIVE_OK);
2484         archive_check_magic(_a, ARCHIVE_WRITE_DISK_MAGIC,
2485             ARCHIVE_STATE_ANY | ARCHIVE_STATE_FATAL, "archive_write_disk_free");
2486         a = (struct archive_write_disk *)_a;
2487         ret = _archive_write_disk_close(&a->archive);
2488         archive_write_disk_set_group_lookup(&a->archive, NULL, NULL, NULL);
2489         archive_write_disk_set_user_lookup(&a->archive, NULL, NULL, NULL);
2490         archive_entry_free(a->entry);
2491         archive_string_free(&a->_name_data);
2492         archive_string_free(&a->_tmpname_data);
2493         archive_string_free(&a->archive.error_string);
2494         archive_string_free(&a->path_safe);
2495         a->archive.magic = 0;
2496         __archive_clean(&a->archive);
2497         free(a->decmpfs_header_p);
2498         free(a->resource_fork);
2499         free(a->compressed_buffer);
2500         free(a->uncompressed_buffer);
2501 #if defined(__APPLE__) && defined(UF_COMPRESSED) && defined(HAVE_SYS_XATTR_H)\
2502         && defined(HAVE_ZLIB_H)
2503         if (a->stream_valid) {
2504                 switch (deflateEnd(&a->stream)) {
2505                 case Z_OK:
2506                         break;
2507                 default:
2508                         archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
2509                             "Failed to clean up compressor");
2510                         ret = ARCHIVE_FATAL;
2511                         break;
2512                 }
2513         }
2514 #endif
2515         free(a);
2516         return (ret);
2517 }
2518
2519 /*
2520  * Simple O(n log n) merge sort to order the fixup list.  In
2521  * particular, we want to restore dir timestamps depth-first.
2522  */
2523 static struct fixup_entry *
2524 sort_dir_list(struct fixup_entry *p)
2525 {
2526         struct fixup_entry *a, *b, *t;
2527
2528         if (p == NULL)
2529                 return (NULL);
2530         /* A one-item list is already sorted. */
2531         if (p->next == NULL)
2532                 return (p);
2533
2534         /* Step 1: split the list. */
2535         t = p;
2536         a = p->next->next;
2537         while (a != NULL) {
2538                 /* Step a twice, t once. */
2539                 a = a->next;
2540                 if (a != NULL)
2541                         a = a->next;
2542                 t = t->next;
2543         }
2544         /* Now, t is at the mid-point, so break the list here. */
2545         b = t->next;
2546         t->next = NULL;
2547         a = p;
2548
2549         /* Step 2: Recursively sort the two sub-lists. */
2550         a = sort_dir_list(a);
2551         b = sort_dir_list(b);
2552
2553         /* Step 3: Merge the returned lists. */
2554         /* Pick the first element for the merged list. */
2555         if (strcmp(a->name, b->name) > 0) {
2556                 t = p = a;
2557                 a = a->next;
2558         } else {
2559                 t = p = b;
2560                 b = b->next;
2561         }
2562
2563         /* Always put the later element on the list first. */
2564         while (a != NULL && b != NULL) {
2565                 if (strcmp(a->name, b->name) > 0) {
2566                         t->next = a;
2567                         a = a->next;
2568                 } else {
2569                         t->next = b;
2570                         b = b->next;
2571                 }
2572                 t = t->next;
2573         }
2574
2575         /* Only one list is non-empty, so just splice it on. */
2576         if (a != NULL)
2577                 t->next = a;
2578         if (b != NULL)
2579                 t->next = b;
2580
2581         return (p);
2582 }
2583
2584 /*
2585  * Returns a new, initialized fixup entry.
2586  *
2587  * TODO: Reduce the memory requirements for this list by using a tree
2588  * structure rather than a simple list of names.
2589  */
2590 static struct fixup_entry *
2591 new_fixup(struct archive_write_disk *a, const char *pathname)
2592 {
2593         struct fixup_entry *fe;
2594
2595         fe = (struct fixup_entry *)calloc(1, sizeof(struct fixup_entry));
2596         if (fe == NULL) {
2597                 archive_set_error(&a->archive, ENOMEM,
2598                     "Can't allocate memory for a fixup");
2599                 return (NULL);
2600         }
2601         fe->next = a->fixup_list;
2602         a->fixup_list = fe;
2603         fe->fixup = 0;
2604         fe->name = strdup(pathname);
2605         return (fe);
2606 }
2607
2608 /*
2609  * Returns a fixup structure for the current entry.
2610  */
2611 static struct fixup_entry *
2612 current_fixup(struct archive_write_disk *a, const char *pathname)
2613 {
2614         if (a->current_fixup == NULL)
2615                 a->current_fixup = new_fixup(a, pathname);
2616         return (a->current_fixup);
2617 }
2618
2619 /* Error helper for new *_fsobj functions */
2620 static void
2621 fsobj_error(int *a_eno, struct archive_string *a_estr,
2622     int err, const char *errstr, const char *path)
2623 {
2624         if (a_eno)
2625                 *a_eno = err;
2626         if (a_estr)
2627                 archive_string_sprintf(a_estr, "%s%s", errstr, path);
2628 }
2629
2630 /*
2631  * TODO: Someday, integrate this with the deep dir support; they both
2632  * scan the path and both can be optimized by comparing against other
2633  * recent paths.
2634  */
2635 /*
2636  * Checks the given path to see if any elements along it are symlinks.  Returns
2637  * ARCHIVE_OK if there are none, otherwise puts an error in errmsg.
2638  */
2639 static int
2640 check_symlinks_fsobj(char *path, int *a_eno, struct archive_string *a_estr,
2641     int flags)
2642 {
2643 #if !defined(HAVE_LSTAT) && \
2644     !(defined(HAVE_OPENAT) && defined(HAVE_FSTATAT) && defined(HAVE_UNLINKAT))
2645         /* Platform doesn't have lstat, so we can't look for symlinks. */
2646         (void)path; /* UNUSED */
2647         (void)error_number; /* UNUSED */
2648         (void)error_string; /* UNUSED */
2649         (void)flags; /* UNUSED */
2650         return (ARCHIVE_OK);
2651 #else
2652         int res = ARCHIVE_OK;
2653         char *tail;
2654         char *head;
2655         int last;
2656         char c;
2657         int r;
2658         struct stat st;
2659         int chdir_fd;
2660 #if defined(HAVE_OPENAT) && defined(HAVE_FSTATAT) && defined(HAVE_UNLINKAT)
2661         int fd;
2662 #endif
2663
2664         /* Nothing to do here if name is empty */
2665         if(path[0] == '\0')
2666             return (ARCHIVE_OK);
2667
2668         /*
2669          * Guard against symlink tricks.  Reject any archive entry whose
2670          * destination would be altered by a symlink.
2671          *
2672          * Walk the filename in chunks separated by '/'.  For each segment:
2673          *  - if it doesn't exist, continue
2674          *  - if it's symlink, abort or remove it
2675          *  - if it's a directory and it's not the last chunk, cd into it
2676          * As we go:
2677          *  head points to the current (relative) path
2678          *  tail points to the temporary \0 terminating the segment we're
2679          *      currently examining
2680          *  c holds what used to be in *tail
2681          *  last is 1 if this is the last tail
2682          */
2683         chdir_fd = la_opendirat(AT_FDCWD, ".");
2684         __archive_ensure_cloexec_flag(chdir_fd);
2685         if (chdir_fd < 0) {
2686                 fsobj_error(a_eno, a_estr, errno,
2687                     "Could not open ", path);
2688                 return (ARCHIVE_FATAL);
2689         }
2690         head = path;
2691         tail = path;
2692         last = 0;
2693         /* TODO: reintroduce a safe cache here? */
2694         /* Skip the root directory if the path is absolute. */
2695         if(tail == path && tail[0] == '/')
2696                 ++tail;
2697         /* Keep going until we've checked the entire name.
2698          * head, tail, path all alias the same string, which is
2699          * temporarily zeroed at tail, so be careful restoring the
2700          * stashed (c=tail[0]) for error messages.
2701          * Exiting the loop with break is okay; continue is not.
2702          */
2703         while (!last) {
2704                 /*
2705                  * Skip the separator we just consumed, plus any adjacent ones
2706                  */
2707                 while (*tail == '/')
2708                     ++tail;
2709                 /* Skip the next path element. */
2710                 while (*tail != '\0' && *tail != '/')
2711                         ++tail;
2712                 /* is this the last path component? */
2713                 last = (tail[0] == '\0') || (tail[0] == '/' && tail[1] == '\0');
2714                 /* temporarily truncate the string here */
2715                 c = tail[0];
2716                 tail[0] = '\0';
2717                 /* Check that we haven't hit a symlink. */
2718 #if defined(HAVE_OPENAT) && defined(HAVE_FSTATAT) && defined(HAVE_UNLINKAT)
2719                 r = fstatat(chdir_fd, head, &st, AT_SYMLINK_NOFOLLOW);
2720 #else
2721                 r = lstat(head, &st);
2722 #endif
2723                 if (r != 0) {
2724                         tail[0] = c;
2725                         /* We've hit a dir that doesn't exist; stop now. */
2726                         if (errno == ENOENT) {
2727                                 break;
2728                         } else {
2729                                 /*
2730                                  * Treat any other error as fatal - best to be
2731                                  * paranoid here.
2732                                  * Note: This effectively disables deep
2733                                  * directory support when security checks are
2734                                  * enabled. Otherwise, very long pathnames that
2735                                  * trigger an error here could evade the
2736                                  * sandbox.
2737                                  * TODO: We could do better, but it would
2738                                  * probably require merging the symlink checks
2739                                  * with the deep-directory editing.
2740                                  */
2741                                 fsobj_error(a_eno, a_estr, errno,
2742                                     "Could not stat ", path);
2743                                 res = ARCHIVE_FAILED;
2744                                 break;
2745                         }
2746                 } else if (S_ISDIR(st.st_mode)) {
2747                         if (!last) {
2748 #if defined(HAVE_OPENAT) && defined(HAVE_FSTATAT) && defined(HAVE_UNLINKAT)
2749                                 fd = la_opendirat(chdir_fd, head);
2750                                 if (fd < 0)
2751                                         r = -1;
2752                                 else {
2753                                         r = 0;
2754                                         close(chdir_fd);
2755                                         chdir_fd = fd;
2756                                 }
2757 #else
2758                                 r = chdir(head);
2759 #endif
2760                                 if (r != 0) {
2761                                         tail[0] = c;
2762                                         fsobj_error(a_eno, a_estr, errno,
2763                                             "Could not chdir ", path);
2764                                         res = (ARCHIVE_FATAL);
2765                                         break;
2766                                 }
2767                                 /* Our view is now from inside this dir: */
2768                                 head = tail + 1;
2769                         }
2770                 } else if (S_ISLNK(st.st_mode)) {
2771                         if (last) {
2772                                 /*
2773                                  * Last element is symlink; remove it
2774                                  * so we can overwrite it with the
2775                                  * item being extracted.
2776                                  */
2777 #if defined(HAVE_OPENAT) && defined(HAVE_FSTATAT) && defined(HAVE_UNLINKAT)
2778                                 r = unlinkat(chdir_fd, head, 0);
2779 #else
2780                                 r = unlink(head);
2781 #endif
2782                                 if (r != 0) {
2783                                         tail[0] = c;
2784                                         fsobj_error(a_eno, a_estr, errno,
2785                                             "Could not remove symlink ",
2786                                             path);
2787                                         res = ARCHIVE_FAILED;
2788                                         break;
2789                                 }
2790                                 /*
2791                                  * Even if we did remove it, a warning
2792                                  * is in order.  The warning is silly,
2793                                  * though, if we're just replacing one
2794                                  * symlink with another symlink.
2795                                  */
2796                                 tail[0] = c;
2797                                 /*
2798                                  * FIXME:  not sure how important this is to
2799                                  * restore
2800                                  */
2801                                 /*
2802                                 if (!S_ISLNK(path)) {
2803                                         fsobj_error(a_eno, a_estr, 0,
2804                                             "Removing symlink ", path);
2805                                 }
2806                                 */
2807                                 /* Symlink gone.  No more problem! */
2808                                 res = ARCHIVE_OK;
2809                                 break;
2810                         } else if (flags & ARCHIVE_EXTRACT_UNLINK) {
2811                                 /* User asked us to remove problems. */
2812 #if defined(HAVE_OPENAT) && defined(HAVE_FSTATAT) && defined(HAVE_UNLINKAT)
2813                                 r = unlinkat(chdir_fd, head, 0);
2814 #else
2815                                 r = unlink(head);
2816 #endif
2817                                 if (r != 0) {
2818                                         tail[0] = c;
2819                                         fsobj_error(a_eno, a_estr, 0,
2820                                             "Cannot remove intervening "
2821                                             "symlink ", path);
2822                                         res = ARCHIVE_FAILED;
2823                                         break;
2824                                 }
2825                                 tail[0] = c;
2826                         } else if ((flags &
2827                             ARCHIVE_EXTRACT_SECURE_SYMLINKS) == 0) {
2828                                 /*
2829                                  * We are not the last element and we want to
2830                                  * follow symlinks if they are a directory.
2831                                  * 
2832                                  * This is needed to extract hardlinks over
2833                                  * symlinks.
2834                                  */
2835 #if defined(HAVE_OPENAT) && defined(HAVE_FSTATAT) && defined(HAVE_UNLINKAT)
2836                                 r = fstatat(chdir_fd, head, &st, 0);
2837 #else
2838                                 r = la_stat(head, &st);
2839 #endif
2840                                 if (r != 0) {
2841                                         tail[0] = c;
2842                                         if (errno == ENOENT) {
2843                                                 break;
2844                                         } else {
2845                                                 fsobj_error(a_eno, a_estr,
2846                                                     errno,
2847                                                     "Could not stat ", path);
2848                                                 res = (ARCHIVE_FAILED);
2849                                                 break;
2850                                         }
2851                                 } else if (S_ISDIR(st.st_mode)) {
2852 #if defined(HAVE_OPENAT) && defined(HAVE_FSTATAT) && defined(HAVE_UNLINKAT)
2853                                         fd = la_opendirat(chdir_fd, head);
2854                                         if (fd < 0)
2855                                                 r = -1;
2856                                         else {
2857                                                 r = 0;
2858                                                 close(chdir_fd);
2859                                                 chdir_fd = fd;
2860                                         }
2861 #else
2862                                         r = chdir(head);
2863 #endif
2864                                         if (r != 0) {
2865                                                 tail[0] = c;
2866                                                 fsobj_error(a_eno, a_estr,
2867                                                     errno,
2868                                                     "Could not chdir ", path);
2869                                                 res = (ARCHIVE_FATAL);
2870                                                 break;
2871                                         }
2872                                         /*
2873                                          * Our view is now from inside
2874                                          * this dir:
2875                                          */
2876                                         head = tail + 1;
2877                                 } else {
2878                                         tail[0] = c;
2879                                         fsobj_error(a_eno, a_estr, 0,
2880                                             "Cannot extract through "
2881                                             "symlink ", path);
2882                                         res = ARCHIVE_FAILED;
2883                                         break;
2884                                 }
2885                         } else {
2886                                 tail[0] = c;
2887                                 fsobj_error(a_eno, a_estr, 0,
2888                                     "Cannot extract through symlink ", path);
2889                                 res = ARCHIVE_FAILED;
2890                                 break;
2891                         }
2892                 }
2893                 /* be sure to always maintain this */
2894                 tail[0] = c;
2895                 if (tail[0] != '\0')
2896                         tail++; /* Advance to the next segment. */
2897         }
2898         /* Catches loop exits via break */
2899         tail[0] = c;
2900 #if defined(HAVE_OPENAT) && defined(HAVE_FSTATAT) && defined(HAVE_UNLINKAT)
2901         /* If we operate with openat(), fstatat() and unlinkat() there was
2902          * no chdir(), so just close the fd */
2903         if (chdir_fd >= 0)
2904                 close(chdir_fd);
2905 #elif HAVE_FCHDIR
2906         /* If we changed directory above, restore it here. */
2907         if (chdir_fd >= 0) {
2908                 r = fchdir(chdir_fd);
2909                 if (r != 0) {
2910                         fsobj_error(a_eno, a_estr, errno,
2911                             "chdir() failure", "");
2912                 }
2913                 close(chdir_fd);
2914                 chdir_fd = -1;
2915                 if (r != 0) {
2916                         res = (ARCHIVE_FATAL);
2917                 }
2918         }
2919 #endif
2920         /* TODO: reintroduce a safe cache here? */
2921         return res;
2922 #endif
2923 }
2924
2925 /*
2926  * Check a->name for symlinks, returning ARCHIVE_OK if its clean, otherwise
2927  * calls archive_set_error and returns ARCHIVE_{FATAL,FAILED}
2928  */
2929 static int
2930 check_symlinks(struct archive_write_disk *a)
2931 {
2932         struct archive_string error_string;
2933         int error_number;
2934         int rc;
2935         archive_string_init(&error_string);
2936         rc = check_symlinks_fsobj(a->name, &error_number, &error_string,
2937             a->flags);
2938         if (rc != ARCHIVE_OK) {
2939                 archive_set_error(&a->archive, error_number, "%s",
2940                     error_string.s);
2941         }
2942         archive_string_free(&error_string);
2943         a->pst = NULL;  /* to be safe */
2944         return rc;
2945 }
2946
2947
2948 #if defined(__CYGWIN__)
2949 /*
2950  * 1. Convert a path separator from '\' to '/' .
2951  *    We shouldn't check multibyte character directly because some
2952  *    character-set have been using the '\' character for a part of
2953  *    its multibyte character code.
2954  * 2. Replace unusable characters in Windows with underscore('_').
2955  * See also : http://msdn.microsoft.com/en-us/library/aa365247.aspx
2956  */
2957 static void
2958 cleanup_pathname_win(char *path)
2959 {
2960         wchar_t wc;
2961         char *p;
2962         size_t alen, l;
2963         int mb, complete, utf8;
2964
2965         alen = 0;
2966         mb = 0;
2967         complete = 1;
2968         utf8 = (strcmp(nl_langinfo(CODESET), "UTF-8") == 0)? 1: 0;
2969         for (p = path; *p != '\0'; p++) {
2970                 ++alen;
2971                 if (*p == '\\') {
2972                         /* If previous byte is smaller than 128,
2973                          * this is not second byte of multibyte characters,
2974                          * so we can replace '\' with '/'. */
2975                         if (utf8 || !mb)
2976                                 *p = '/';
2977                         else
2978                                 complete = 0;/* uncompleted. */
2979                 } else if (*(unsigned char *)p > 127)
2980                         mb = 1;
2981                 else
2982                         mb = 0;
2983                 /* Rewrite the path name if its next character is unusable. */
2984                 if (*p == ':' || *p == '*' || *p == '?' || *p == '"' ||
2985                     *p == '<' || *p == '>' || *p == '|')
2986                         *p = '_';
2987         }
2988         if (complete)
2989                 return;
2990
2991         /*
2992          * Convert path separator in wide-character.
2993          */
2994         p = path;
2995         while (*p != '\0' && alen) {
2996                 l = mbtowc(&wc, p, alen);
2997                 if (l == (size_t)-1) {
2998                         while (*p != '\0') {
2999                                 if (*p == '\\')
3000                                         *p = '/';
3001                                 ++p;
3002                         }
3003                         break;
3004                 }
3005                 if (l == 1 && wc == L'\\')
3006                         *p = '/';
3007                 p += l;
3008                 alen -= l;
3009         }
3010 }
3011 #endif
3012
3013 /*
3014  * Canonicalize the pathname.  In particular, this strips duplicate
3015  * '/' characters, '.' elements, and trailing '/'.  It also raises an
3016  * error for an empty path, a trailing '..', (if _SECURE_NODOTDOT is
3017  * set) any '..' in the path or (if ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS
3018  * is set) if the path is absolute.
3019  */
3020 static int
3021 cleanup_pathname_fsobj(char *path, int *a_eno, struct archive_string *a_estr,
3022     int flags)
3023 {
3024         char *dest, *src;
3025         char separator = '\0';
3026
3027         dest = src = path;
3028         if (*src == '\0') {
3029                 fsobj_error(a_eno, a_estr, ARCHIVE_ERRNO_MISC,
3030                     "Invalid empty ", "pathname");
3031                 return (ARCHIVE_FAILED);
3032         }
3033
3034 #if defined(__CYGWIN__)
3035         cleanup_pathname_win(path);
3036 #endif
3037         /* Skip leading '/'. */
3038         if (*src == '/') {
3039                 if (flags & ARCHIVE_EXTRACT_SECURE_NOABSOLUTEPATHS) {
3040                         fsobj_error(a_eno, a_estr, ARCHIVE_ERRNO_MISC,
3041                             "Path is ", "absolute");
3042                         return (ARCHIVE_FAILED);
3043                 }
3044
3045                 separator = *src++;
3046         }
3047
3048         /* Scan the pathname one element at a time. */
3049         for (;;) {
3050                 /* src points to first char after '/' */
3051                 if (src[0] == '\0') {
3052                         break;
3053                 } else if (src[0] == '/') {
3054                         /* Found '//', ignore second one. */
3055                         src++;
3056                         continue;
3057                 } else if (src[0] == '.') {
3058                         if (src[1] == '\0') {
3059                                 /* Ignore trailing '.' */
3060                                 break;
3061                         } else if (src[1] == '/') {
3062                                 /* Skip './'. */
3063                                 src += 2;
3064                                 continue;
3065                         } else if (src[1] == '.') {
3066                                 if (src[2] == '/' || src[2] == '\0') {
3067                                         /* Conditionally warn about '..' */
3068                                         if (flags
3069                                             & ARCHIVE_EXTRACT_SECURE_NODOTDOT) {
3070                                                 fsobj_error(a_eno, a_estr,
3071                                                     ARCHIVE_ERRNO_MISC,
3072                                                     "Path contains ", "'..'");
3073                                                 return (ARCHIVE_FAILED);
3074                                         }
3075                                 }
3076                                 /*
3077                                  * Note: Under no circumstances do we
3078                                  * remove '..' elements.  In
3079                                  * particular, restoring
3080                                  * '/foo/../bar/' should create the
3081                                  * 'foo' dir as a side-effect.
3082                                  */
3083                         }
3084                 }
3085
3086                 /* Copy current element, including leading '/'. */
3087                 if (separator)
3088                         *dest++ = '/';
3089                 while (*src != '\0' && *src != '/') {
3090                         *dest++ = *src++;
3091                 }
3092
3093                 if (*src == '\0')
3094                         break;
3095
3096                 /* Skip '/' separator. */
3097                 separator = *src++;
3098         }
3099         /*
3100          * We've just copied zero or more path elements, not including the
3101          * final '/'.
3102          */
3103         if (dest == path) {
3104                 /*
3105                  * Nothing got copied.  The path must have been something
3106                  * like '.' or '/' or './' or '/././././/./'.
3107                  */
3108                 if (separator)
3109                         *dest++ = '/';
3110                 else
3111                         *dest++ = '.';
3112         }
3113         /* Terminate the result. */
3114         *dest = '\0';
3115         return (ARCHIVE_OK);
3116 }
3117
3118 static int
3119 cleanup_pathname(struct archive_write_disk *a)
3120 {
3121         struct archive_string error_string;
3122         int error_number;
3123         int rc;
3124         archive_string_init(&error_string);
3125         rc = cleanup_pathname_fsobj(a->name, &error_number, &error_string,
3126             a->flags);
3127         if (rc != ARCHIVE_OK) {
3128                 archive_set_error(&a->archive, error_number, "%s",
3129                     error_string.s);
3130         }
3131         archive_string_free(&error_string);
3132         return rc;
3133 }
3134
3135 /*
3136  * Create the parent directory of the specified path, assuming path
3137  * is already in mutable storage.
3138  */
3139 static int
3140 create_parent_dir(struct archive_write_disk *a, char *path)
3141 {
3142         char *slash;
3143         int r;
3144
3145         /* Remove tail element to obtain parent name. */
3146         slash = strrchr(path, '/');
3147         if (slash == NULL)
3148                 return (ARCHIVE_OK);
3149         *slash = '\0';
3150         r = create_dir(a, path);
3151         *slash = '/';
3152         return (r);
3153 }
3154
3155 /*
3156  * Create the specified dir, recursing to create parents as necessary.
3157  *
3158  * Returns ARCHIVE_OK if the path exists when we're done here.
3159  * Otherwise, returns ARCHIVE_FAILED.
3160  * Assumes path is in mutable storage; path is unchanged on exit.
3161  */
3162 static int
3163 create_dir(struct archive_write_disk *a, char *path)
3164 {
3165         struct stat st;
3166         struct fixup_entry *le;
3167         char *slash, *base;
3168         mode_t mode_final, mode;
3169         int r;
3170
3171         /* Check for special names and just skip them. */
3172         slash = strrchr(path, '/');
3173         if (slash == NULL)
3174                 base = path;
3175         else
3176                 base = slash + 1;
3177
3178         if (base[0] == '\0' ||
3179             (base[0] == '.' && base[1] == '\0') ||
3180             (base[0] == '.' && base[1] == '.' && base[2] == '\0')) {
3181                 /* Don't bother trying to create null path, '.', or '..'. */
3182                 if (slash != NULL) {
3183                         *slash = '\0';
3184                         r = create_dir(a, path);
3185                         *slash = '/';
3186                         return (r);
3187                 }
3188                 return (ARCHIVE_OK);
3189         }
3190
3191         /*
3192          * Yes, this should be stat() and not lstat().  Using lstat()
3193          * here loses the ability to extract through symlinks.  Also note
3194          * that this should not use the a->st cache.
3195          */
3196         if (la_stat(path, &st) == 0) {
3197                 if (S_ISDIR(st.st_mode))
3198                         return (ARCHIVE_OK);
3199                 if ((a->flags & ARCHIVE_EXTRACT_NO_OVERWRITE)) {
3200                         archive_set_error(&a->archive, EEXIST,
3201                             "Can't create directory '%s'", path);
3202                         return (ARCHIVE_FAILED);
3203                 }
3204                 if (unlink(path) != 0) {
3205                         archive_set_error(&a->archive, errno,
3206                             "Can't create directory '%s': "
3207                             "Conflicting file cannot be removed",
3208                             path);
3209                         return (ARCHIVE_FAILED);
3210                 }
3211         } else if (errno != ENOENT && errno != ENOTDIR) {
3212                 /* Stat failed? */
3213                 archive_set_error(&a->archive, errno,
3214                     "Can't test directory '%s'", path);
3215                 return (ARCHIVE_FAILED);
3216         } else if (slash != NULL) {
3217                 *slash = '\0';
3218                 r = create_dir(a, path);
3219                 *slash = '/';
3220                 if (r != ARCHIVE_OK)
3221                         return (r);
3222         }
3223
3224         /*
3225          * Mode we want for the final restored directory.  Per POSIX,
3226          * implicitly-created dirs must be created obeying the umask.
3227          * There's no mention whether this is different for privileged
3228          * restores (which the rest of this code handles by pretending
3229          * umask=0).  I've chosen here to always obey the user's umask for
3230          * implicit dirs, even if _EXTRACT_PERM was specified.
3231          */
3232         mode_final = DEFAULT_DIR_MODE & ~a->user_umask;
3233         /* Mode we want on disk during the restore process. */
3234         mode = mode_final;
3235         mode |= MINIMUM_DIR_MODE;
3236         mode &= MAXIMUM_DIR_MODE;
3237         if (mkdir(path, mode) == 0) {
3238                 if (mode != mode_final) {
3239                         le = new_fixup(a, path);
3240                         if (le == NULL)
3241                                 return (ARCHIVE_FATAL);
3242                         le->fixup |=TODO_MODE_BASE;
3243                         le->mode = mode_final;
3244                 }
3245                 return (ARCHIVE_OK);
3246         }
3247
3248         /*
3249          * Without the following check, a/b/../b/c/d fails at the
3250          * second visit to 'b', so 'd' can't be created.  Note that we
3251          * don't add it to the fixup list here, as it's already been
3252          * added.
3253          */
3254         if (la_stat(path, &st) == 0 && S_ISDIR(st.st_mode))
3255                 return (ARCHIVE_OK);
3256
3257         archive_set_error(&a->archive, errno, "Failed to create dir '%s'",
3258             path);
3259         return (ARCHIVE_FAILED);
3260 }
3261
3262 /*
3263  * Note: Although we can skip setting the user id if the desired user
3264  * id matches the current user, we cannot skip setting the group, as
3265  * many systems set the gid based on the containing directory.  So
3266  * we have to perform a chown syscall if we want to set the SGID
3267  * bit.  (The alternative is to stat() and then possibly chown(); it's
3268  * more efficient to skip the stat() and just always chown().)  Note
3269  * that a successful chown() here clears the TODO_SGID_CHECK bit, which
3270  * allows set_mode to skip the stat() check for the GID.
3271  */
3272 static int
3273 set_ownership(struct archive_write_disk *a)
3274 {
3275 #if !defined(__CYGWIN__) && !defined(__linux__)
3276 /*
3277  * On Linux, a process may have the CAP_CHOWN capability.
3278  * On Windows there is no 'root' user with uid 0.
3279  * Elsewhere we can skip calling chown if we are not root and the desired
3280  * user id does not match the current user.
3281  */
3282         if (a->user_uid != 0 && a->user_uid != a->uid) {
3283                 archive_set_error(&a->archive, errno,
3284                     "Can't set UID=%jd", (intmax_t)a->uid);
3285                 return (ARCHIVE_WARN);
3286         }
3287 #endif
3288
3289 #ifdef HAVE_FCHOWN
3290         /* If we have an fd, we can avoid a race. */
3291         if (a->fd >= 0 && fchown(a->fd, a->uid, a->gid) == 0) {
3292                 /* We've set owner and know uid/gid are correct. */
3293                 a->todo &= ~(TODO_OWNER | TODO_SGID_CHECK | TODO_SUID_CHECK);
3294                 return (ARCHIVE_OK);
3295         }
3296 #endif
3297
3298         /* We prefer lchown() but will use chown() if that's all we have. */
3299         /* Of course, if we have neither, this will always fail. */
3300 #ifdef HAVE_LCHOWN
3301         if (lchown(a->name, a->uid, a->gid) == 0) {
3302                 /* We've set owner and know uid/gid are correct. */
3303                 a->todo &= ~(TODO_OWNER | TODO_SGID_CHECK | TODO_SUID_CHECK);
3304                 return (ARCHIVE_OK);
3305         }
3306 #elif HAVE_CHOWN
3307         if (!S_ISLNK(a->mode) && chown(a->name, a->uid, a->gid) == 0) {
3308                 /* We've set owner and know uid/gid are correct. */
3309                 a->todo &= ~(TODO_OWNER | TODO_SGID_CHECK | TODO_SUID_CHECK);
3310                 return (ARCHIVE_OK);
3311         }
3312 #endif
3313
3314         archive_set_error(&a->archive, errno,
3315             "Can't set user=%jd/group=%jd for %s",
3316             (intmax_t)a->uid, (intmax_t)a->gid, a->name);
3317         return (ARCHIVE_WARN);
3318 }
3319
3320 /*
3321  * Note: Returns 0 on success, non-zero on failure.
3322  */
3323 static int
3324 set_time(int fd, int mode, const char *name,
3325     time_t atime, long atime_nsec,
3326     time_t mtime, long mtime_nsec)
3327 {
3328         /* Select the best implementation for this platform. */
3329 #if defined(HAVE_UTIMENSAT) && defined(HAVE_FUTIMENS)
3330         /*
3331          * utimensat() and futimens() are defined in
3332          * POSIX.1-2008. They support ns resolution and setting times
3333          * on fds and symlinks.
3334          */
3335         struct timespec ts[2];
3336         (void)mode; /* UNUSED */
3337         ts[0].tv_sec = atime;
3338         ts[0].tv_nsec = atime_nsec;
3339         ts[1].tv_sec = mtime;
3340         ts[1].tv_nsec = mtime_nsec;
3341         if (fd >= 0)
3342                 return futimens(fd, ts);
3343         return utimensat(AT_FDCWD, name, ts, AT_SYMLINK_NOFOLLOW);
3344
3345 #elif HAVE_UTIMES
3346         /*
3347          * The utimes()-family functions support Âµs-resolution and
3348          * setting times fds and symlinks.  utimes() is documented as
3349          * LEGACY by POSIX, futimes() and lutimes() are not described
3350          * in POSIX.
3351          */
3352         struct timeval times[2];
3353
3354         times[0].tv_sec = atime;
3355         times[0].tv_usec = atime_nsec / 1000;
3356         times[1].tv_sec = mtime;
3357         times[1].tv_usec = mtime_nsec / 1000;
3358
3359 #ifdef HAVE_FUTIMES
3360         if (fd >= 0)
3361                 return (futimes(fd, times));
3362 #else
3363         (void)fd; /* UNUSED */
3364 #endif
3365 #ifdef HAVE_LUTIMES
3366         (void)mode; /* UNUSED */
3367         return (lutimes(name, times));
3368 #else
3369         if (S_ISLNK(mode))
3370                 return (0);
3371         return (utimes(name, times));
3372 #endif
3373
3374 #elif defined(HAVE_UTIME)
3375         /*
3376          * utime() is POSIX-standard but only supports 1s resolution and
3377          * does not support fds or symlinks.
3378          */
3379         struct utimbuf times;
3380         (void)fd; /* UNUSED */
3381         (void)name; /* UNUSED */
3382         (void)atime_nsec; /* UNUSED */
3383         (void)mtime_nsec; /* UNUSED */
3384         times.actime = atime;
3385         times.modtime = mtime;
3386         if (S_ISLNK(mode))
3387                 return (ARCHIVE_OK);
3388         return (utime(name, &times));
3389
3390 #else
3391         /*
3392          * We don't know how to set the time on this platform.
3393          */
3394         (void)fd; /* UNUSED */
3395         (void)mode; /* UNUSED */
3396         (void)name; /* UNUSED */
3397         (void)atime_nsec; /* UNUSED */
3398         (void)mtime_nsec; /* UNUSED */
3399         return (ARCHIVE_WARN);
3400 #endif
3401 }
3402
3403 #ifdef F_SETTIMES
3404 static int
3405 set_time_tru64(int fd, int mode, const char *name,
3406     time_t atime, long atime_nsec,
3407     time_t mtime, long mtime_nsec,
3408     time_t ctime, long ctime_nsec)
3409 {
3410         struct attr_timbuf tstamp;
3411         tstamp.atime.tv_sec = atime;
3412         tstamp.mtime.tv_sec = mtime;
3413         tstamp.ctime.tv_sec = ctime;
3414 #if defined (__hpux) && defined (__ia64)
3415         tstamp.atime.tv_nsec = atime_nsec;
3416         tstamp.mtime.tv_nsec = mtime_nsec;
3417         tstamp.ctime.tv_nsec = ctime_nsec;
3418 #else
3419         tstamp.atime.tv_usec = atime_nsec / 1000;
3420         tstamp.mtime.tv_usec = mtime_nsec / 1000;
3421         tstamp.ctime.tv_usec = ctime_nsec / 1000;
3422 #endif
3423         return (fcntl(fd,F_SETTIMES,&tstamp));
3424 }
3425 #endif /* F_SETTIMES */
3426
3427 static int
3428 set_times(struct archive_write_disk *a,
3429     int fd, int mode, const char *name,
3430     time_t atime, long atime_nanos,
3431     time_t birthtime, long birthtime_nanos,
3432     time_t mtime, long mtime_nanos,
3433     time_t cctime, long ctime_nanos)
3434 {
3435         /* Note: set_time doesn't use libarchive return conventions!
3436          * It uses syscall conventions.  So 0 here instead of ARCHIVE_OK. */
3437         int r1 = 0, r2 = 0;
3438
3439 #ifdef F_SETTIMES
3440          /*
3441          * on Tru64 try own fcntl first which can restore even the
3442          * ctime, fall back to default code path below if it fails
3443          * or if we are not running as root
3444          */
3445         if (a->user_uid == 0 &&
3446             set_time_tru64(fd, mode, name,
3447                            atime, atime_nanos, mtime,
3448                            mtime_nanos, cctime, ctime_nanos) == 0) {
3449                 return (ARCHIVE_OK);
3450         }
3451 #else /* Tru64 */
3452         (void)cctime; /* UNUSED */
3453         (void)ctime_nanos; /* UNUSED */
3454 #endif /* Tru64 */
3455
3456 #ifdef HAVE_STRUCT_STAT_ST_BIRTHTIME
3457         /*
3458          * If you have struct stat.st_birthtime, we assume BSD
3459          * birthtime semantics, in which {f,l,}utimes() updates
3460          * birthtime to earliest mtime.  So we set the time twice,
3461          * first using the birthtime, then using the mtime.  If
3462          * birthtime == mtime, this isn't necessary, so we skip it.
3463          * If birthtime > mtime, then this won't work, so we skip it.
3464          */
3465         if (birthtime < mtime
3466             || (birthtime == mtime && birthtime_nanos < mtime_nanos))
3467                 r1 = set_time(fd, mode, name,
3468                               atime, atime_nanos,
3469                               birthtime, birthtime_nanos);
3470 #else
3471         (void)birthtime; /* UNUSED */
3472         (void)birthtime_nanos; /* UNUSED */
3473 #endif
3474         r2 = set_time(fd, mode, name,
3475                       atime, atime_nanos,
3476                       mtime, mtime_nanos);
3477         if (r1 != 0 || r2 != 0) {
3478                 archive_set_error(&a->archive, errno,
3479                                   "Can't restore time");
3480                 return (ARCHIVE_WARN);
3481         }
3482         return (ARCHIVE_OK);
3483 }
3484
3485 static int
3486 set_times_from_entry(struct archive_write_disk *a)
3487 {
3488         time_t atime, birthtime, mtime, cctime;
3489         long atime_nsec, birthtime_nsec, mtime_nsec, ctime_nsec;
3490
3491         /* Suitable defaults. */
3492         atime = birthtime = mtime = cctime = a->start_time;
3493         atime_nsec = birthtime_nsec = mtime_nsec = ctime_nsec = 0;
3494
3495         /* If no time was provided, we're done. */
3496         if (!archive_entry_atime_is_set(a->entry)
3497 #if HAVE_STRUCT_STAT_ST_BIRTHTIME
3498             && !archive_entry_birthtime_is_set(a->entry)
3499 #endif
3500             && !archive_entry_mtime_is_set(a->entry))
3501                 return (ARCHIVE_OK);
3502
3503         if (archive_entry_atime_is_set(a->entry)) {
3504                 atime = archive_entry_atime(a->entry);
3505                 atime_nsec = archive_entry_atime_nsec(a->entry);
3506         }
3507         if (archive_entry_birthtime_is_set(a->entry)) {
3508                 birthtime = archive_entry_birthtime(a->entry);
3509                 birthtime_nsec = archive_entry_birthtime_nsec(a->entry);
3510         }
3511         if (archive_entry_mtime_is_set(a->entry)) {
3512                 mtime = archive_entry_mtime(a->entry);
3513                 mtime_nsec = archive_entry_mtime_nsec(a->entry);
3514         }
3515         if (archive_entry_ctime_is_set(a->entry)) {
3516                 cctime = archive_entry_ctime(a->entry);
3517                 ctime_nsec = archive_entry_ctime_nsec(a->entry);
3518         }
3519
3520         return set_times(a, a->fd, a->mode, a->name,
3521                          atime, atime_nsec,
3522                          birthtime, birthtime_nsec,
3523                          mtime, mtime_nsec,
3524                          cctime, ctime_nsec);
3525 }
3526
3527 static int
3528 set_mode(struct archive_write_disk *a, int mode)
3529 {
3530         int r = ARCHIVE_OK;
3531         int r2;
3532         mode &= 07777; /* Strip off file type bits. */
3533
3534         if (a->todo & TODO_SGID_CHECK) {
3535                 /*
3536                  * If we don't know the GID is right, we must stat()
3537                  * to verify it.  We can't just check the GID of this
3538                  * process, since systems sometimes set GID from
3539                  * the enclosing dir or based on ACLs.
3540                  */
3541                 if ((r = lazy_stat(a)) != ARCHIVE_OK)
3542                         return (r);
3543                 if (a->pst->st_gid != a->gid) {
3544                         mode &= ~ S_ISGID;
3545                         if (a->flags & ARCHIVE_EXTRACT_OWNER) {
3546                                 /*
3547                                  * This is only an error if you
3548                                  * requested owner restore.  If you
3549                                  * didn't, we'll try to restore
3550                                  * sgid/suid, but won't consider it a
3551                                  * problem if we can't.
3552                                  */
3553                                 archive_set_error(&a->archive, -1,
3554                                     "Can't restore SGID bit");
3555                                 r = ARCHIVE_WARN;
3556                         }
3557                 }
3558                 /* While we're here, double-check the UID. */
3559                 if (a->pst->st_uid != a->uid
3560                     && (a->todo & TODO_SUID)) {
3561                         mode &= ~ S_ISUID;
3562                         if (a->flags & ARCHIVE_EXTRACT_OWNER) {
3563                                 archive_set_error(&a->archive, -1,
3564                                     "Can't restore SUID bit");
3565                                 r = ARCHIVE_WARN;
3566                         }
3567                 }
3568                 a->todo &= ~TODO_SGID_CHECK;
3569                 a->todo &= ~TODO_SUID_CHECK;
3570         } else if (a->todo & TODO_SUID_CHECK) {
3571                 /*
3572                  * If we don't know the UID is right, we can just check
3573                  * the user, since all systems set the file UID from
3574                  * the process UID.
3575                  */
3576                 if (a->user_uid != a->uid) {
3577                         mode &= ~ S_ISUID;
3578                         if (a->flags & ARCHIVE_EXTRACT_OWNER) {
3579                                 archive_set_error(&a->archive, -1,
3580                                     "Can't make file SUID");
3581                                 r = ARCHIVE_WARN;
3582                         }
3583                 }
3584                 a->todo &= ~TODO_SUID_CHECK;
3585         }
3586
3587         if (S_ISLNK(a->mode)) {
3588 #ifdef HAVE_LCHMOD
3589                 /*
3590                  * If this is a symlink, use lchmod().  If the
3591                  * platform doesn't support lchmod(), just skip it.  A
3592                  * platform that doesn't provide a way to set
3593                  * permissions on symlinks probably ignores
3594                  * permissions on symlinks, so a failure here has no
3595                  * impact.
3596                  */
3597                 if (lchmod(a->name, mode) != 0) {
3598                         switch (errno) {
3599                         case ENOTSUP:
3600                         case ENOSYS:
3601 #if ENOTSUP != EOPNOTSUPP
3602                         case EOPNOTSUPP:
3603 #endif
3604                                 /*
3605                                  * if lchmod is defined but the platform
3606                                  * doesn't support it, silently ignore
3607                                  * error
3608                                  */
3609                                 break;
3610                         default:
3611                                 archive_set_error(&a->archive, errno,
3612                                     "Can't set permissions to 0%o", (int)mode);
3613                                 r = ARCHIVE_WARN;
3614                         }
3615                 }
3616 #endif
3617         } else if (!S_ISDIR(a->mode)) {
3618                 /*
3619                  * If it's not a symlink and not a dir, then use
3620                  * fchmod() or chmod(), depending on whether we have
3621                  * an fd.  Dirs get their perms set during the
3622                  * post-extract fixup, which is handled elsewhere.
3623                  */
3624 #ifdef HAVE_FCHMOD
3625                 if (a->fd >= 0)
3626                         r2 = fchmod(a->fd, mode);
3627                 else
3628 #endif
3629                 /* If this platform lacks fchmod(), then
3630                  * we'll just use chmod(). */
3631                 r2 = chmod(a->name, mode);
3632
3633                 if (r2 != 0) {
3634                         archive_set_error(&a->archive, errno,
3635                             "Can't set permissions to 0%o", (int)mode);
3636                         r = ARCHIVE_WARN;
3637                 }
3638         }
3639         return (r);
3640 }
3641
3642 static int
3643 set_fflags(struct archive_write_disk *a)
3644 {
3645         struct fixup_entry *le;
3646         unsigned long   set, clear;
3647         int             r;
3648         mode_t          mode = archive_entry_mode(a->entry);
3649         /*
3650          * Make 'critical_flags' hold all file flags that can't be
3651          * immediately restored.  For example, on BSD systems,
3652          * SF_IMMUTABLE prevents hardlinks from being created, so
3653          * should not be set until after any hardlinks are created.  To
3654          * preserve some semblance of portability, this uses #ifdef
3655          * extensively.  Ugly, but it works.
3656          *
3657          * Yes, Virginia, this does create a security race.  It's mitigated
3658          * somewhat by the practice of creating dirs 0700 until the extract
3659          * is done, but it would be nice if we could do more than that.
3660          * People restoring critical file systems should be wary of
3661          * other programs that might try to muck with files as they're
3662          * being restored.
3663          */
3664         const int       critical_flags = 0
3665 #ifdef SF_IMMUTABLE
3666             | SF_IMMUTABLE
3667 #endif
3668 #ifdef UF_IMMUTABLE
3669             | UF_IMMUTABLE
3670 #endif
3671 #ifdef SF_APPEND
3672             | SF_APPEND
3673 #endif
3674 #ifdef UF_APPEND
3675             | UF_APPEND
3676 #endif
3677 #if defined(FS_APPEND_FL)
3678             | FS_APPEND_FL
3679 #elif defined(EXT2_APPEND_FL)
3680             | EXT2_APPEND_FL
3681 #endif
3682 #if defined(FS_IMMUTABLE_FL)
3683             | FS_IMMUTABLE_FL
3684 #elif defined(EXT2_IMMUTABLE_FL)
3685             | EXT2_IMMUTABLE_FL
3686 #endif
3687 #ifdef FS_JOURNAL_DATA_FL
3688             | FS_JOURNAL_DATA_FL
3689 #endif
3690         ;
3691
3692         if (a->todo & TODO_FFLAGS) {
3693                 archive_entry_fflags(a->entry, &set, &clear);
3694
3695                 /*
3696                  * The first test encourages the compiler to eliminate
3697                  * all of this if it's not necessary.
3698                  */
3699                 if ((critical_flags != 0)  &&  (set & critical_flags)) {
3700                         le = current_fixup(a, a->name);
3701                         if (le == NULL)
3702                                 return (ARCHIVE_FATAL);
3703                         le->fixup |= TODO_FFLAGS;
3704                         le->fflags_set = set;
3705                         /* Store the mode if it's not already there. */
3706                         if ((le->fixup & TODO_MODE) == 0)
3707                                 le->mode = mode;
3708                 } else {
3709                         r = set_fflags_platform(a, a->fd,
3710                             a->name, mode, set, clear);
3711                         if (r != ARCHIVE_OK)
3712                                 return (r);
3713                 }
3714         }
3715         return (ARCHIVE_OK);
3716 }
3717
3718 static int
3719 clear_nochange_fflags(struct archive_write_disk *a)
3720 {
3721         mode_t          mode = archive_entry_mode(a->entry);
3722         const int nochange_flags = 0
3723 #ifdef SF_IMMUTABLE
3724             | SF_IMMUTABLE
3725 #endif
3726 #ifdef UF_IMMUTABLE
3727             | UF_IMMUTABLE
3728 #endif
3729 #ifdef SF_APPEND
3730             | SF_APPEND
3731 #endif
3732 #ifdef UF_APPEND
3733             | UF_APPEND
3734 #endif
3735 #ifdef EXT2_APPEND_FL
3736             | EXT2_APPEND_FL
3737 #endif
3738 #ifdef EXT2_IMMUTABLE_FL
3739             | EXT2_IMMUTABLE_FL
3740 #endif
3741         ;
3742
3743         return (set_fflags_platform(a, a->fd, a->name, mode, 0,
3744             nochange_flags));
3745 }
3746
3747
3748 #if ( defined(HAVE_LCHFLAGS) || defined(HAVE_CHFLAGS) || defined(HAVE_FCHFLAGS) ) && defined(HAVE_STRUCT_STAT_ST_FLAGS)
3749 /*
3750  * BSD reads flags using stat() and sets them with one of {f,l,}chflags()
3751  */
3752 static int
3753 set_fflags_platform(struct archive_write_disk *a, int fd, const char *name,
3754     mode_t mode, unsigned long set, unsigned long clear)
3755 {
3756         int r;
3757         const int sf_mask = 0
3758 #ifdef SF_APPEND
3759             | SF_APPEND
3760 #endif
3761 #ifdef SF_ARCHIVED
3762             | SF_ARCHIVED
3763 #endif
3764 #ifdef SF_IMMUTABLE
3765             | SF_IMMUTABLE
3766 #endif
3767 #ifdef SF_NOUNLINK
3768             | SF_NOUNLINK
3769 #endif
3770         ;
3771         (void)mode; /* UNUSED */
3772
3773         if (set == 0  && clear == 0)
3774                 return (ARCHIVE_OK);
3775
3776         /*
3777          * XXX Is the stat here really necessary?  Or can I just use
3778          * the 'set' flags directly?  In particular, I'm not sure
3779          * about the correct approach if we're overwriting an existing
3780          * file that already has flags on it. XXX
3781          */
3782         if ((r = lazy_stat(a)) != ARCHIVE_OK)
3783                 return (r);
3784
3785         a->st.st_flags &= ~clear;
3786         a->st.st_flags |= set;
3787
3788         /* Only super-user may change SF_* flags */
3789
3790         if (a->user_uid != 0)
3791                 a->st.st_flags &= ~sf_mask;
3792
3793 #ifdef HAVE_FCHFLAGS
3794         /* If platform has fchflags() and we were given an fd, use it. */
3795         if (fd >= 0 && fchflags(fd, a->st.st_flags) == 0)
3796                 return (ARCHIVE_OK);
3797 #endif
3798         /*
3799          * If we can't use the fd to set the flags, we'll use the
3800          * pathname to set flags.  We prefer lchflags() but will use
3801          * chflags() if we must.
3802          */
3803 #ifdef HAVE_LCHFLAGS
3804         if (lchflags(name, a->st.st_flags) == 0)
3805                 return (ARCHIVE_OK);
3806 #elif defined(HAVE_CHFLAGS)
3807         if (S_ISLNK(a->st.st_mode)) {
3808                 archive_set_error(&a->archive, errno,
3809                     "Can't set file flags on symlink.");
3810                 return (ARCHIVE_WARN);
3811         }
3812         if (chflags(name, a->st.st_flags) == 0)
3813                 return (ARCHIVE_OK);
3814 #endif
3815         archive_set_error(&a->archive, errno,
3816             "Failed to set file flags");
3817         return (ARCHIVE_WARN);
3818 }
3819
3820 #elif (defined(FS_IOC_GETFLAGS) && defined(FS_IOC_SETFLAGS) && \
3821        defined(HAVE_WORKING_FS_IOC_GETFLAGS)) || \
3822       (defined(EXT2_IOC_GETFLAGS) && defined(EXT2_IOC_SETFLAGS) && \
3823        defined(HAVE_WORKING_EXT2_IOC_GETFLAGS))
3824 /*
3825  * Linux uses ioctl() to read and write file flags.
3826  */
3827 static int
3828 set_fflags_platform(struct archive_write_disk *a, int fd, const char *name,
3829     mode_t mode, unsigned long set, unsigned long clear)
3830 {
3831         int              ret;
3832         int              myfd = fd;
3833         int newflags, oldflags;
3834         /*
3835          * Linux has no define for the flags that are only settable by
3836          * the root user.  This code may seem a little complex, but
3837          * there seem to be some Linux systems that lack these
3838          * defines. (?)  The code below degrades reasonably gracefully
3839          * if sf_mask is incomplete.
3840          */
3841         const int sf_mask = 0
3842 #if defined(FS_IMMUTABLE_FL)
3843             | FS_IMMUTABLE_FL
3844 #elif defined(EXT2_IMMUTABLE_FL)
3845             | EXT2_IMMUTABLE_FL
3846 #endif
3847 #if defined(FS_APPEND_FL)
3848             | FS_APPEND_FL
3849 #elif defined(EXT2_APPEND_FL)
3850             | EXT2_APPEND_FL
3851 #endif
3852 #if defined(FS_JOURNAL_DATA_FL)
3853             | FS_JOURNAL_DATA_FL
3854 #endif
3855         ;
3856
3857         if (set == 0 && clear == 0)
3858                 return (ARCHIVE_OK);
3859         /* Only regular files and dirs can have flags. */
3860         if (!S_ISREG(mode) && !S_ISDIR(mode))
3861                 return (ARCHIVE_OK);
3862
3863         /* If we weren't given an fd, open it ourselves. */
3864         if (myfd < 0) {
3865                 myfd = open(name, O_RDONLY | O_NONBLOCK | O_BINARY | O_CLOEXEC);
3866                 __archive_ensure_cloexec_flag(myfd);
3867         }
3868         if (myfd < 0)
3869                 return (ARCHIVE_OK);
3870
3871         /*
3872          * XXX As above, this would be way simpler if we didn't have
3873          * to read the current flags from disk. XXX
3874          */
3875         ret = ARCHIVE_OK;
3876
3877         /* Read the current file flags. */
3878         if (ioctl(myfd,
3879 #ifdef FS_IOC_GETFLAGS
3880             FS_IOC_GETFLAGS,
3881 #else
3882             EXT2_IOC_GETFLAGS,
3883 #endif
3884             &oldflags) < 0)
3885                 goto fail;
3886
3887         /* Try setting the flags as given. */
3888         newflags = (oldflags & ~clear) | set;
3889         if (ioctl(myfd,
3890 #ifdef FS_IOC_SETFLAGS
3891             FS_IOC_SETFLAGS,
3892 #else
3893             EXT2_IOC_SETFLAGS,
3894 #endif
3895             &newflags) >= 0)
3896                 goto cleanup;
3897         if (errno != EPERM)
3898                 goto fail;
3899
3900         /* If we couldn't set all the flags, try again with a subset. */
3901         newflags &= ~sf_mask;
3902         oldflags &= sf_mask;
3903         newflags |= oldflags;
3904         if (ioctl(myfd,
3905 #ifdef FS_IOC_SETFLAGS
3906             FS_IOC_SETFLAGS,
3907 #else
3908             EXT2_IOC_SETFLAGS,
3909 #endif
3910             &newflags) >= 0)
3911                 goto cleanup;
3912
3913         /* We couldn't set the flags, so report the failure. */
3914 fail:
3915         archive_set_error(&a->archive, errno,
3916             "Failed to set file flags");
3917         ret = ARCHIVE_WARN;
3918 cleanup:
3919         if (fd < 0)
3920                 close(myfd);
3921         return (ret);
3922 }
3923
3924 #else
3925
3926 /*
3927  * Of course, some systems have neither BSD chflags() nor Linux' flags
3928  * support through ioctl().
3929  */
3930 static int
3931 set_fflags_platform(struct archive_write_disk *a, int fd, const char *name,
3932     mode_t mode, unsigned long set, unsigned long clear)
3933 {
3934         (void)a; /* UNUSED */
3935         (void)fd; /* UNUSED */
3936         (void)name; /* UNUSED */
3937         (void)mode; /* UNUSED */
3938         (void)set; /* UNUSED */
3939         (void)clear; /* UNUSED */
3940         return (ARCHIVE_OK);
3941 }
3942
3943 #endif /* __linux */
3944
3945 #ifndef HAVE_COPYFILE_H
3946 /* Default is to simply drop Mac extended metadata. */
3947 static int
3948 set_mac_metadata(struct archive_write_disk *a, const char *pathname,
3949                  const void *metadata, size_t metadata_size)
3950 {
3951         (void)a; /* UNUSED */
3952         (void)pathname; /* UNUSED */
3953         (void)metadata; /* UNUSED */
3954         (void)metadata_size; /* UNUSED */
3955         return (ARCHIVE_OK);
3956 }
3957
3958 static int
3959 fixup_appledouble(struct archive_write_disk *a, const char *pathname)
3960 {
3961         (void)a; /* UNUSED */
3962         (void)pathname; /* UNUSED */
3963         return (ARCHIVE_OK);
3964 }
3965 #else
3966
3967 /*
3968  * On Mac OS, we use copyfile() to unpack the metadata and
3969  * apply it to the target file.
3970  */
3971
3972 #if defined(HAVE_SYS_XATTR_H)
3973 static int
3974 copy_xattrs(struct archive_write_disk *a, int tmpfd, int dffd)
3975 {
3976         ssize_t xattr_size;
3977         char *xattr_names = NULL, *xattr_val = NULL;
3978         int ret = ARCHIVE_OK, xattr_i;
3979
3980         xattr_size = flistxattr(tmpfd, NULL, 0, 0);
3981         if (xattr_size == -1) {
3982                 archive_set_error(&a->archive, errno,
3983                     "Failed to read metadata(xattr)");
3984                 ret = ARCHIVE_WARN;
3985                 goto exit_xattr;
3986         }
3987         xattr_names = malloc(xattr_size);
3988         if (xattr_names == NULL) {
3989                 archive_set_error(&a->archive, ENOMEM,
3990                     "Can't allocate memory for metadata(xattr)");
3991                 ret = ARCHIVE_FATAL;
3992                 goto exit_xattr;
3993         }
3994         xattr_size = flistxattr(tmpfd, xattr_names, xattr_size, 0);
3995         if (xattr_size == -1) {
3996                 archive_set_error(&a->archive, errno,
3997                     "Failed to read metadata(xattr)");
3998                 ret = ARCHIVE_WARN;
3999                 goto exit_xattr;
4000         }
4001         for (xattr_i = 0; xattr_i < xattr_size;
4002             xattr_i += strlen(xattr_names + xattr_i) + 1) {
4003                 char *xattr_val_saved;
4004                 ssize_t s;
4005                 int f;
4006
4007                 s = fgetxattr(tmpfd, xattr_names + xattr_i, NULL, 0, 0, 0);
4008                 if (s == -1) {
4009                         archive_set_error(&a->archive, errno,
4010                             "Failed to get metadata(xattr)");
4011                         ret = ARCHIVE_WARN;
4012                         goto exit_xattr;
4013                 }
4014                 xattr_val_saved = xattr_val;
4015                 xattr_val = realloc(xattr_val, s);
4016                 if (xattr_val == NULL) {
4017                         archive_set_error(&a->archive, ENOMEM,
4018                             "Failed to get metadata(xattr)");
4019                         ret = ARCHIVE_WARN;
4020                         free(xattr_val_saved);
4021                         goto exit_xattr;
4022                 }
4023                 s = fgetxattr(tmpfd, xattr_names + xattr_i, xattr_val, s, 0, 0);
4024                 if (s == -1) {
4025                         archive_set_error(&a->archive, errno,
4026                             "Failed to get metadata(xattr)");
4027                         ret = ARCHIVE_WARN;
4028                         goto exit_xattr;
4029                 }
4030                 f = fsetxattr(dffd, xattr_names + xattr_i, xattr_val, s, 0, 0);
4031                 if (f == -1) {
4032                         archive_set_error(&a->archive, errno,
4033                             "Failed to get metadata(xattr)");
4034                         ret = ARCHIVE_WARN;
4035                         goto exit_xattr;
4036                 }
4037         }
4038 exit_xattr:
4039         free(xattr_names);
4040         free(xattr_val);
4041         return (ret);
4042 }
4043 #endif
4044
4045 static int
4046 copy_acls(struct archive_write_disk *a, int tmpfd, int dffd)
4047 {
4048 #ifndef HAVE_SYS_ACL_H
4049         return 0;
4050 #else
4051         acl_t acl, dfacl = NULL;
4052         int acl_r, ret = ARCHIVE_OK;
4053
4054         acl = acl_get_fd(tmpfd);
4055         if (acl == NULL) {
4056                 if (errno == ENOENT)
4057                         /* There are not any ACLs. */
4058                         return (ret);
4059                 archive_set_error(&a->archive, errno,
4060                     "Failed to get metadata(acl)");
4061                 ret = ARCHIVE_WARN;
4062                 goto exit_acl;
4063         }
4064         dfacl = acl_dup(acl);
4065         acl_r = acl_set_fd(dffd, dfacl);
4066         if (acl_r == -1) {
4067                 archive_set_error(&a->archive, errno,
4068                     "Failed to get metadata(acl)");
4069                 ret = ARCHIVE_WARN;
4070                 goto exit_acl;
4071         }
4072 exit_acl:
4073         if (acl)
4074                 acl_free(acl);
4075         if (dfacl)
4076                 acl_free(dfacl);
4077         return (ret);
4078 #endif
4079 }
4080
4081 static int
4082 create_tempdatafork(struct archive_write_disk *a, const char *pathname)
4083 {
4084         struct archive_string tmpdatafork;
4085         int tmpfd;
4086
4087         archive_string_init(&tmpdatafork);
4088         archive_strcpy(&tmpdatafork, "tar.md.XXXXXX");
4089         tmpfd = mkstemp(tmpdatafork.s);
4090         if (tmpfd < 0) {
4091                 archive_set_error(&a->archive, errno,
4092                     "Failed to mkstemp");
4093                 archive_string_free(&tmpdatafork);
4094                 return (-1);
4095         }
4096         if (copyfile(pathname, tmpdatafork.s, 0,
4097             COPYFILE_UNPACK | COPYFILE_NOFOLLOW
4098             | COPYFILE_ACL | COPYFILE_XATTR) < 0) {
4099                 archive_set_error(&a->archive, errno,
4100                     "Failed to restore metadata");
4101                 close(tmpfd);
4102                 tmpfd = -1;
4103         }
4104         unlink(tmpdatafork.s);
4105         archive_string_free(&tmpdatafork);
4106         return (tmpfd);
4107 }
4108
4109 static int
4110 copy_metadata(struct archive_write_disk *a, const char *metadata,
4111     const char *datafork, int datafork_compressed)
4112 {
4113         int ret = ARCHIVE_OK;
4114
4115         if (datafork_compressed) {
4116                 int dffd, tmpfd;
4117
4118                 tmpfd = create_tempdatafork(a, metadata);
4119                 if (tmpfd == -1)
4120                         return (ARCHIVE_WARN);
4121
4122                 /*
4123                  * Do not open the data fork compressed by HFS+ compression
4124                  * with at least a writing mode(O_RDWR or O_WRONLY). it
4125                  * makes the data fork uncompressed.
4126                  */
4127                 dffd = open(datafork, 0);
4128                 if (dffd == -1) {
4129                         archive_set_error(&a->archive, errno,
4130                             "Failed to open the data fork for metadata");
4131                         close(tmpfd);
4132                         return (ARCHIVE_WARN);
4133                 }
4134
4135 #if defined(HAVE_SYS_XATTR_H)
4136                 ret = copy_xattrs(a, tmpfd, dffd);
4137                 if (ret == ARCHIVE_OK)
4138 #endif
4139                         ret = copy_acls(a, tmpfd, dffd);
4140                 close(tmpfd);
4141                 close(dffd);
4142         } else {
4143                 if (copyfile(metadata, datafork, 0,
4144                     COPYFILE_UNPACK | COPYFILE_NOFOLLOW
4145                     | COPYFILE_ACL | COPYFILE_XATTR) < 0) {
4146                         archive_set_error(&a->archive, errno,
4147                             "Failed to restore metadata");
4148                         ret = ARCHIVE_WARN;
4149                 }
4150         }
4151         return (ret);
4152 }
4153
4154 static int
4155 set_mac_metadata(struct archive_write_disk *a, const char *pathname,
4156                  const void *metadata, size_t metadata_size)
4157 {
4158         struct archive_string tmp;
4159         ssize_t written;
4160         int fd;
4161         int ret = ARCHIVE_OK;
4162
4163         /* This would be simpler if copyfile() could just accept the
4164          * metadata as a block of memory; then we could sidestep this
4165          * silly dance of writing the data to disk just so that
4166          * copyfile() can read it back in again. */
4167         archive_string_init(&tmp);
4168         archive_strcpy(&tmp, pathname);
4169         archive_strcat(&tmp, ".XXXXXX");
4170         fd = mkstemp(tmp.s);
4171
4172         if (fd < 0) {
4173                 archive_set_error(&a->archive, errno,
4174                                   "Failed to restore metadata");
4175                 archive_string_free(&tmp);
4176                 return (ARCHIVE_WARN);
4177         }
4178         written = write(fd, metadata, metadata_size);
4179         close(fd);
4180         if ((size_t)written != metadata_size) {
4181                 archive_set_error(&a->archive, errno,
4182                                   "Failed to restore metadata");
4183                 ret = ARCHIVE_WARN;
4184         } else {
4185                 int compressed;
4186
4187 #if defined(UF_COMPRESSED)
4188                 if ((a->todo & TODO_HFS_COMPRESSION) != 0 &&
4189                     (ret = lazy_stat(a)) == ARCHIVE_OK)
4190                         compressed = a->st.st_flags & UF_COMPRESSED;
4191                 else
4192 #endif
4193                         compressed = 0;
4194                 ret = copy_metadata(a, tmp.s, pathname, compressed);
4195         }
4196         unlink(tmp.s);
4197         archive_string_free(&tmp);
4198         return (ret);
4199 }
4200
4201 static int
4202 fixup_appledouble(struct archive_write_disk *a, const char *pathname)
4203 {
4204         char buff[8];
4205         struct stat st;
4206         const char *p;
4207         struct archive_string datafork;
4208         int fd = -1, ret = ARCHIVE_OK;
4209
4210         archive_string_init(&datafork);
4211         /* Check if the current file name is a type of the resource
4212          * fork file. */
4213         p = strrchr(pathname, '/');
4214         if (p == NULL)
4215                 p = pathname;
4216         else
4217                 p++;
4218         if (p[0] != '.' || p[1] != '_')
4219                 goto skip_appledouble;
4220
4221         /*
4222          * Check if the data fork file exists.
4223          *
4224          * TODO: Check if this write disk object has handled it.
4225          */
4226         archive_strncpy(&datafork, pathname, p - pathname);
4227         archive_strcat(&datafork, p + 2);
4228         if (lstat(datafork.s, &st) == -1 ||
4229             (st.st_mode & AE_IFMT) != AE_IFREG)
4230                 goto skip_appledouble;
4231
4232         /*
4233          * Check if the file is in the AppleDouble form.
4234          */
4235         fd = open(pathname, O_RDONLY | O_BINARY | O_CLOEXEC);
4236         __archive_ensure_cloexec_flag(fd);
4237         if (fd == -1) {
4238                 archive_set_error(&a->archive, errno,
4239                     "Failed to open a restoring file");
4240                 ret = ARCHIVE_WARN;
4241                 goto skip_appledouble;
4242         }
4243         if (read(fd, buff, 8) == -1) {
4244                 archive_set_error(&a->archive, errno,
4245                     "Failed to read a restoring file");
4246                 close(fd);
4247                 ret = ARCHIVE_WARN;
4248                 goto skip_appledouble;
4249         }
4250         close(fd);
4251         /* Check AppleDouble Magic Code. */
4252         if (archive_be32dec(buff) != 0x00051607)
4253                 goto skip_appledouble;
4254         /* Check AppleDouble Version. */
4255         if (archive_be32dec(buff+4) != 0x00020000)
4256                 goto skip_appledouble;
4257
4258         ret = copy_metadata(a, pathname, datafork.s,
4259 #if defined(UF_COMPRESSED)
4260             st.st_flags & UF_COMPRESSED);
4261 #else
4262             0);
4263 #endif
4264         if (ret == ARCHIVE_OK) {
4265                 unlink(pathname);
4266                 ret = ARCHIVE_EOF;
4267         }
4268 skip_appledouble:
4269         archive_string_free(&datafork);
4270         return (ret);
4271 }
4272 #endif
4273
4274 #if ARCHIVE_XATTR_LINUX || ARCHIVE_XATTR_DARWIN || ARCHIVE_XATTR_AIX
4275 /*
4276  * Restore extended attributes -  Linux, Darwin and AIX implementations:
4277  * AIX' ea interface is syntaxwise identical to the Linux xattr interface.
4278  */
4279 static int
4280 set_xattrs(struct archive_write_disk *a)
4281 {
4282         struct archive_entry *entry = a->entry;
4283         struct archive_string errlist;
4284         int ret = ARCHIVE_OK;
4285         int i = archive_entry_xattr_reset(entry);
4286         short fail = 0;
4287
4288         archive_string_init(&errlist);
4289
4290         while (i--) {
4291                 const char *name;
4292                 const void *value;
4293                 size_t size;
4294                 int e;
4295
4296                 archive_entry_xattr_next(entry, &name, &value, &size);
4297
4298                 if (name == NULL)
4299                         continue;
4300 #if ARCHIVE_XATTR_LINUX
4301                 /* Linux: quietly skip POSIX.1e ACL extended attributes */
4302                 if (strncmp(name, "system.", 7) == 0 &&
4303                    (strcmp(name + 7, "posix_acl_access") == 0 ||
4304                     strcmp(name + 7, "posix_acl_default") == 0))
4305                         continue;
4306                 if (strncmp(name, "trusted.SGI_", 12) == 0 &&
4307                    (strcmp(name + 12, "ACL_DEFAULT") == 0 ||
4308                     strcmp(name + 12, "ACL_FILE") == 0))
4309                         continue;
4310
4311                 /* Linux: xfsroot namespace is obsolete and unsupported */
4312                 if (strncmp(name, "xfsroot.", 8) == 0) {
4313                         fail = 1;
4314                         archive_strcat(&errlist, name);
4315                         archive_strappend_char(&errlist, ' ');
4316                         continue;
4317                 }
4318 #endif
4319
4320                 if (a->fd >= 0) {
4321 #if ARCHIVE_XATTR_LINUX
4322                         e = fsetxattr(a->fd, name, value, size, 0);
4323 #elif ARCHIVE_XATTR_DARWIN
4324                         e = fsetxattr(a->fd, name, value, size, 0, 0);
4325 #elif ARCHIVE_XATTR_AIX
4326                         e = fsetea(a->fd, name, value, size, 0);
4327 #endif
4328                 } else {
4329 #if ARCHIVE_XATTR_LINUX
4330                         e = lsetxattr(archive_entry_pathname(entry),
4331                             name, value, size, 0);
4332 #elif ARCHIVE_XATTR_DARWIN
4333                         e = setxattr(archive_entry_pathname(entry),
4334                             name, value, size, 0, XATTR_NOFOLLOW);
4335 #elif ARCHIVE_XATTR_AIX
4336                         e = lsetea(archive_entry_pathname(entry),
4337                             name, value, size, 0);
4338 #endif
4339                 }
4340                 if (e == -1) {
4341                         ret = ARCHIVE_WARN;
4342                         archive_strcat(&errlist, name);
4343                         archive_strappend_char(&errlist, ' ');
4344                         if (errno != ENOTSUP && errno != ENOSYS)
4345                                 fail = 1;
4346                 }
4347         }
4348
4349         if (ret == ARCHIVE_WARN) {
4350                 if (fail && errlist.length > 0) {
4351                         errlist.length--;
4352                         errlist.s[errlist.length] = '\0';
4353                         archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
4354                             "Cannot restore extended attributes: %s",
4355                             errlist.s);
4356                 } else
4357                         archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
4358                             "Cannot restore extended "
4359                             "attributes on this file system.");
4360         }
4361
4362         archive_string_free(&errlist);
4363         return (ret);
4364 }
4365 #elif ARCHIVE_XATTR_FREEBSD
4366 /*
4367  * Restore extended attributes -  FreeBSD implementation
4368  */
4369 static int
4370 set_xattrs(struct archive_write_disk *a)
4371 {
4372         struct archive_entry *entry = a->entry;
4373         struct archive_string errlist;
4374         int ret = ARCHIVE_OK;
4375         int i = archive_entry_xattr_reset(entry);
4376         short fail = 0;
4377
4378         archive_string_init(&errlist);
4379
4380         while (i--) {
4381                 const char *name;
4382                 const void *value;
4383                 size_t size;
4384                 archive_entry_xattr_next(entry, &name, &value, &size);
4385                 if (name != NULL) {
4386                         ssize_t e;
4387                         int namespace;
4388
4389                         if (strncmp(name, "user.", 5) == 0) {
4390                                 /* "user." attributes go to user namespace */
4391                                 name += 5;
4392                                 namespace = EXTATTR_NAMESPACE_USER;
4393                         } else {
4394                                 /* Other namespaces are unsupported */
4395                                 archive_strcat(&errlist, name);
4396                                 archive_strappend_char(&errlist, ' ');
4397                                 fail = 1;
4398                                 ret = ARCHIVE_WARN;
4399                                 continue;
4400                         }
4401
4402                         if (a->fd >= 0) {
4403                                 e = extattr_set_fd(a->fd, namespace, name,
4404                                     value, size);
4405                         } else {
4406                                 e = extattr_set_link(
4407                                     archive_entry_pathname(entry), namespace,
4408                                     name, value, size);
4409                         }
4410                         if (e != (ssize_t)size) {
4411                                 archive_strcat(&errlist, name);
4412                                 archive_strappend_char(&errlist, ' ');
4413                                 ret = ARCHIVE_WARN;
4414                                 if (errno != ENOTSUP && errno != ENOSYS)
4415                                         fail = 1;
4416                         }
4417                 }
4418         }
4419
4420         if (ret == ARCHIVE_WARN) {
4421                 if (fail && errlist.length > 0) {
4422                         errlist.length--;
4423                         errlist.s[errlist.length] = '\0';
4424
4425                         archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
4426                             "Cannot restore extended attributes: %s",
4427                             errlist.s);
4428                 } else
4429                         archive_set_error(&a->archive, ARCHIVE_ERRNO_MISC,
4430                             "Cannot restore extended "
4431                             "attributes on this file system.");
4432         }
4433
4434         archive_string_free(&errlist);
4435         return (ret);
4436 }
4437 #else
4438 /*
4439  * Restore extended attributes - stub implementation for unsupported systems
4440  */
4441 static int
4442 set_xattrs(struct archive_write_disk *a)
4443 {
4444         static int warning_done = 0;
4445
4446         /* If there aren't any extended attributes, then it's okay not
4447          * to extract them, otherwise, issue a single warning. */
4448         if (archive_entry_xattr_count(a->entry) != 0 && !warning_done) {
4449                 warning_done = 1;
4450                 archive_set_error(&a->archive, ARCHIVE_ERRNO_FILE_FORMAT,
4451                     "Cannot restore extended attributes on this system");
4452                 return (ARCHIVE_WARN);
4453         }
4454         /* Warning was already emitted; suppress further warnings. */
4455         return (ARCHIVE_OK);
4456 }
4457 #endif
4458
4459 /*
4460  * Test if file on disk is older than entry.
4461  */
4462 static int
4463 older(struct stat *st, struct archive_entry *entry)
4464 {
4465         /* First, test the seconds and return if we have a definite answer. */
4466         /* Definitely older. */
4467         if (to_int64_time(st->st_mtime) < to_int64_time(archive_entry_mtime(entry)))
4468                 return (1);
4469         /* Definitely younger. */
4470         if (to_int64_time(st->st_mtime) > to_int64_time(archive_entry_mtime(entry)))
4471                 return (0);
4472         /* If this platform supports fractional seconds, try those. */
4473 #if HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC
4474         /* Definitely older. */
4475         if (st->st_mtimespec.tv_nsec < archive_entry_mtime_nsec(entry))
4476                 return (1);
4477 #elif HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC
4478         /* Definitely older. */
4479         if (st->st_mtim.tv_nsec < archive_entry_mtime_nsec(entry))
4480                 return (1);
4481 #elif HAVE_STRUCT_STAT_ST_MTIME_N
4482         /* older. */
4483         if (st->st_mtime_n < archive_entry_mtime_nsec(entry))
4484                 return (1);
4485 #elif HAVE_STRUCT_STAT_ST_UMTIME
4486         /* older. */
4487         if (st->st_umtime * 1000 < archive_entry_mtime_nsec(entry))
4488                 return (1);
4489 #elif HAVE_STRUCT_STAT_ST_MTIME_USEC
4490         /* older. */
4491         if (st->st_mtime_usec * 1000 < archive_entry_mtime_nsec(entry))
4492                 return (1);
4493 #else
4494         /* This system doesn't have high-res timestamps. */
4495 #endif
4496         /* Same age or newer, so not older. */
4497         return (0);
4498 }
4499
4500 #ifndef ARCHIVE_ACL_SUPPORT
4501 int
4502 archive_write_disk_set_acls(struct archive *a, int fd, const char *name,
4503     struct archive_acl *abstract_acl, __LA_MODE_T mode)
4504 {
4505         (void)a; /* UNUSED */
4506         (void)fd; /* UNUSED */
4507         (void)name; /* UNUSED */
4508         (void)abstract_acl; /* UNUSED */
4509         (void)mode; /* UNUSED */
4510         return (ARCHIVE_OK);
4511 }
4512 #endif
4513
4514 #endif /* !_WIN32 || __CYGWIN__ */
4515