]> wimlib.net Git - wimlib/blob - src/unix_apply.c
read_wim_header(): Check return value of lseek()
[wimlib] / src / unix_apply.c
1 /*
2  * unix_apply.c - Code to apply files from a WIM image on UNIX.
3  */
4
5 /*
6  * Copyright (C) 2012, 2013, 2014 Eric Biggers
7  *
8  * This file is part of wimlib, a library for working with WIM files.
9  *
10  * wimlib is free software; you can redistribute it and/or modify it under the
11  * terms of the GNU General Public License as published by the Free
12  * Software Foundation; either version 3 of the License, or (at your option)
13  * any later version.
14  *
15  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
16  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17  * A PARTICULAR PURPOSE. See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with wimlib; if not, see http://www.gnu.org/licenses/.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #include "wimlib/apply.h"
29 #include "wimlib/assert.h"
30 #include "wimlib/dentry.h"
31 #include "wimlib/error.h"
32 #include "wimlib/file_io.h"
33 #include "wimlib/reparse.h"
34 #include "wimlib/timestamp.h"
35 #include "wimlib/unix_data.h"
36
37 #include <errno.h>
38 #include <fcntl.h>
39 #include <limits.h>
40 #include <stdlib.h>
41 #include <sys/stat.h>
42 #include <sys/time.h>
43 #include <sys/types.h>
44 #include <unistd.h>
45
46 /* We don't require O_NOFOLLOW, but the advantage of having it is that if we
47  * need to extract a file to a location at which there exists a symbolic link,
48  * open(..., O_NOFOLLOW | ...) recognizes the symbolic link rather than
49  * following it and creating the file somewhere else.  (Equivalent to
50  * FILE_OPEN_REPARSE_POINT on Windows.)  */
51 #ifndef O_NOFOLLOW
52 #  define O_NOFOLLOW 0
53 #endif
54
55 static int
56 unix_get_supported_features(const char *target,
57                             struct wim_features *supported_features)
58 {
59         supported_features->hard_links = 1;
60         supported_features->symlink_reparse_points = 1;
61         supported_features->unix_data = 1;
62         supported_features->timestamps = 1;
63         supported_features->case_sensitive_filenames = 1;
64         return 0;
65 }
66
67 #define NUM_PATHBUFS 2  /* We need 2 when creating hard links  */
68
69 struct unix_apply_ctx {
70         /* Extract flags, the pointer to the WIMStruct, etc.  */
71         struct apply_ctx common;
72
73         /* Buffers for building extraction paths (allocated).  */
74         char *pathbufs[NUM_PATHBUFS];
75
76         /* Index of next pathbuf to use  */
77         unsigned which_pathbuf;
78
79         /* Currently open file descriptors for extraction  */
80         struct filedes open_fds[MAX_OPEN_STREAMS];
81
82         /* Number of currently open file descriptors in open_fds, starting from
83          * the beginning of the array.  */
84         unsigned num_open_fds;
85
86         /* Buffer for reading reparse data streams into memory  */
87         u8 reparse_data[REPARSE_DATA_MAX_SIZE];
88
89         /* Pointer to the next byte in @reparse_data to fill  */
90         u8 *reparse_ptr;
91
92         /* Absolute path to the target directory (allocated buffer).  Only set
93          * if needed for absolute symbolic link fixups.  */
94         char *target_abspath;
95
96         /* Number of characters in target_abspath.  */
97         size_t target_abspath_nchars;
98
99         /* Number of special files we couldn't create due to EPERM  */
100         unsigned long num_special_files_ignored;
101 };
102
103 /* Returns the number of characters needed to represent the path to the
104  * specified @dentry when extracted, not including the null terminator or the
105  * path to the target directory itself.  */
106 static size_t
107 unix_dentry_path_length(const struct wim_dentry *dentry)
108 {
109         size_t len = 0;
110         const struct wim_dentry *d;
111
112         d = dentry;
113         do {
114                 len += d->d_extraction_name_nchars + 1;
115                 d = d->d_parent;
116         } while (!dentry_is_root(d) && will_extract_dentry(d));
117
118         return len;
119 }
120
121 /* Returns the maximum number of characters needed to represent the path to any
122  * dentry in @dentry_list when extracted, including the null terminator and the
123  * path to the target directory itself.  */
124 static size_t
125 unix_compute_path_max(const struct list_head *dentry_list,
126                       const struct unix_apply_ctx *ctx)
127 {
128         size_t max = 0;
129         size_t len;
130         const struct wim_dentry *dentry;
131
132         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
133                 len = unix_dentry_path_length(dentry);
134                 if (len > max)
135                         max = len;
136         }
137
138         /* Account for target and null terminator.  */
139         return ctx->common.target_nchars + max + 1;
140 }
141
142 /* Builds and returns the filesystem path to which to extract @dentry.
143  * This cycles through NUM_PATHBUFS different buffers.  */
144 static const char *
145 unix_build_extraction_path(const struct wim_dentry *dentry,
146                            struct unix_apply_ctx *ctx)
147 {
148         char *pathbuf;
149         char *p;
150         const struct wim_dentry *d;
151
152         pathbuf = ctx->pathbufs[ctx->which_pathbuf];
153         ctx->which_pathbuf = (ctx->which_pathbuf + 1) % NUM_PATHBUFS;
154
155         p = &pathbuf[ctx->common.target_nchars +
156                      unix_dentry_path_length(dentry)];
157         *p = '\0';
158         d = dentry;
159         do {
160                 p -= d->d_extraction_name_nchars;
161                 memcpy(p, d->d_extraction_name, d->d_extraction_name_nchars);
162                 *--p = '/';
163                 d = d->d_parent;
164         } while (!dentry_is_root(d) && will_extract_dentry(d));
165
166         return pathbuf;
167 }
168
169 /* This causes the next call to unix_build_extraction_path() to use the same
170  * path buffer as the previous call.  */
171 static void
172 unix_reuse_pathbuf(struct unix_apply_ctx *ctx)
173 {
174         ctx->which_pathbuf = (ctx->which_pathbuf - 1) % NUM_PATHBUFS;
175 }
176
177 /* Builds and returns the filesystem path to which to extract an unspecified
178  * alias of the @inode.  This cycles through NUM_PATHBUFS different buffers.  */
179 static const char *
180 unix_build_inode_extraction_path(const struct wim_inode *inode,
181                                  struct unix_apply_ctx *ctx)
182 {
183         return unix_build_extraction_path(inode_first_extraction_dentry(inode), ctx);
184 }
185
186 /* Sets the timestamps on a file being extracted.
187  *
188  * Either @fd or @path must be specified (not -1 and not NULL, respectively).
189  */
190 static int
191 unix_set_timestamps(int fd, const char *path, u64 atime, u64 mtime)
192 {
193         {
194                 struct timespec times[2];
195
196                 times[0] = wim_timestamp_to_timespec(atime);
197                 times[1] = wim_timestamp_to_timespec(mtime);
198
199                 errno = ENOSYS;
200 #ifdef HAVE_FUTIMENS
201                 if (fd >= 0 && !futimens(fd, times))
202                         return 0;
203 #endif
204 #ifdef HAVE_UTIMENSAT
205                 if (fd < 0 && !utimensat(AT_FDCWD, path, times, AT_SYMLINK_NOFOLLOW))
206                         return 0;
207 #endif
208                 if (errno != ENOSYS)
209                         return WIMLIB_ERR_SET_TIMESTAMPS;
210         }
211         {
212                 struct timeval times[2];
213
214                 times[0] = wim_timestamp_to_timeval(atime);
215                 times[1] = wim_timestamp_to_timeval(mtime);
216
217                 if (fd >= 0 && !futimes(fd, times))
218                         return 0;
219                 if (fd < 0 && !lutimes(path, times))
220                         return 0;
221                 return WIMLIB_ERR_SET_TIMESTAMPS;
222         }
223 }
224
225 static int
226 unix_set_owner_and_group(int fd, const char *path, uid_t uid, gid_t gid)
227 {
228         if (fd >= 0 && !fchown(fd, uid, gid))
229                 return 0;
230         if (fd < 0 && !lchown(path, uid, gid))
231                 return 0;
232         return WIMLIB_ERR_SET_SECURITY;
233 }
234
235 static int
236 unix_set_mode(int fd, const char *path, mode_t mode)
237 {
238         if (fd >= 0 && !fchmod(fd, mode))
239                 return 0;
240         if (fd < 0 && !chmod(path, mode))
241                 return 0;
242         return WIMLIB_ERR_SET_SECURITY;
243 }
244
245 /*
246  * Set metadata on an extracted file.
247  *
248  * @fd is an open file descriptor to the extracted file, or -1.  @path is the
249  * path to the extracted file, or NULL.  If valid, this function uses @fd.
250  * Otherwise, if valid, it uses @path.  Otherwise, it calculates the path to one
251  * alias of the extracted file and uses it.
252  */
253 static int
254 unix_set_metadata(int fd, const struct wim_inode *inode,
255                   const char *path, struct unix_apply_ctx *ctx)
256 {
257         int ret;
258         struct wimlib_unix_data unix_data;
259
260         if (fd < 0 && !path)
261                 path = unix_build_inode_extraction_path(inode, ctx);
262
263         if ((ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_UNIX_DATA)
264             && inode_get_unix_data(inode, &unix_data))
265         {
266                 u32 uid = unix_data.uid;
267                 u32 gid = unix_data.gid;
268                 u32 mode = unix_data.mode;
269
270                 ret = unix_set_owner_and_group(fd, path, uid, gid);
271                 if (ret) {
272                         if (!path)
273                                 path = unix_build_inode_extraction_path(inode, ctx);
274                         if (ctx->common.extract_flags &
275                             WIMLIB_EXTRACT_FLAG_STRICT_ACLS)
276                         {
277                                 ERROR_WITH_ERRNO("Can't set uid=%"PRIu32" and "
278                                                  "gid=%"PRIu32" on \"%s\"",
279                                                  uid, gid, path);
280                                 return ret;
281                         } else {
282                                 WARNING_WITH_ERRNO("Can't set uid=%"PRIu32" and "
283                                                    "gid=%"PRIu32" on \"%s\"",
284                                                    uid, gid, path);
285                         }
286                 }
287
288                 ret = 0;
289                 if (!inode_is_symlink(inode))
290                         ret = unix_set_mode(fd, path, mode);
291                 if (ret) {
292                         if (!path)
293                                 path = unix_build_inode_extraction_path(inode, ctx);
294                         if (ctx->common.extract_flags &
295                             WIMLIB_EXTRACT_FLAG_STRICT_ACLS)
296                         {
297                                 ERROR_WITH_ERRNO("Can't set mode=0%"PRIo32" "
298                                                  "on \"%s\"", mode, path);
299                                 return ret;
300                         } else {
301                                 WARNING_WITH_ERRNO("Can't set mode=0%"PRIo32" "
302                                                    "on \"%s\"", mode, path);
303                         }
304                 }
305         }
306
307         ret = unix_set_timestamps(fd, path,
308                                   inode->i_last_access_time,
309                                   inode->i_last_write_time);
310         if (ret) {
311                 if (!path)
312                         path = unix_build_inode_extraction_path(inode, ctx);
313                 if (ctx->common.extract_flags &
314                     WIMLIB_EXTRACT_FLAG_STRICT_TIMESTAMPS)
315                 {
316                         ERROR_WITH_ERRNO("Can't set timestamps on \"%s\"", path);
317                         return ret;
318                 } else {
319                         WARNING_WITH_ERRNO("Can't set timestamps on \"%s\"", path);
320                 }
321         }
322         return 0;
323 }
324
325 /* Extract all needed aliases of the @inode, where one alias, corresponding to
326  * @first_dentry, has already been extracted to @first_path.  */
327 static int
328 unix_create_hardlinks(const struct wim_inode *inode,
329                       const struct wim_dentry *first_dentry,
330                       const char *first_path, struct unix_apply_ctx *ctx)
331 {
332         const struct wim_dentry *dentry;
333         const char *newpath;
334
335         list_for_each_entry(dentry, &inode->i_extraction_aliases,
336                             d_extraction_alias_node)
337         {
338                 if (dentry == first_dentry)
339                         continue;
340
341                 newpath = unix_build_extraction_path(dentry, ctx);
342         retry_link:
343                 if (link(first_path, newpath)) {
344                         if (errno == EEXIST && !unlink(newpath))
345                                 goto retry_link;
346                         ERROR_WITH_ERRNO("Can't create hard link "
347                                          "\"%s\" => \"%s\"", newpath, first_path);
348                         return WIMLIB_ERR_LINK;
349                 }
350                 unix_reuse_pathbuf(ctx);
351         }
352         return 0;
353 }
354
355 /* If @dentry represents a directory, create it.  */
356 static int
357 unix_create_if_directory(const struct wim_dentry *dentry,
358                          struct unix_apply_ctx *ctx)
359 {
360         const char *path;
361         struct stat stbuf;
362
363         if (!dentry_is_directory(dentry))
364                 return 0;
365
366         path = unix_build_extraction_path(dentry, ctx);
367         if (mkdir(path, 0755) &&
368             /* It's okay if the path already exists, as long as it's a
369              * directory.  */
370             !(errno == EEXIST && !lstat(path, &stbuf) && S_ISDIR(stbuf.st_mode)))
371         {
372                 ERROR_WITH_ERRNO("Can't create directory \"%s\"", path);
373                 return WIMLIB_ERR_MKDIR;
374         }
375
376         return report_file_created(&ctx->common);
377 }
378
379 /* If @dentry represents an empty regular file or a special file, create it, set
380  * its metadata, and create any needed hard links.  */
381 static int
382 unix_extract_if_empty_file(const struct wim_dentry *dentry,
383                            struct unix_apply_ctx *ctx)
384 {
385         const struct wim_inode *inode;
386         struct wimlib_unix_data unix_data;
387         const char *path;
388         int ret;
389
390         inode = dentry->d_inode;
391
392         /* Extract all aliases only when the "first" comes up.  */
393         if (dentry != inode_first_extraction_dentry(inode))
394                 return 0;
395
396         /* Is this a directory, a symbolic link, or any type of nonempty file?
397          */
398         if (inode_is_directory(inode) || inode_is_symlink(inode) ||
399             inode_unnamed_lte_resolved(inode))
400                 return 0;
401
402         /* Recognize special files in UNIX_DATA mode  */
403         if ((ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_UNIX_DATA) &&
404             inode_get_unix_data(inode, &unix_data) &&
405             !S_ISREG(unix_data.mode))
406         {
407                 path = unix_build_extraction_path(dentry, ctx);
408         retry_mknod:
409                 if (mknod(path, unix_data.mode, unix_data.rdev)) {
410                         if (errno == EPERM) {
411                                 WARNING_WITH_ERRNO("Can't create special "
412                                                    "file \"%s\"", path);
413                                 ctx->num_special_files_ignored++;
414                                 return 0;
415                         }
416                         if (errno == EEXIST && !unlink(path))
417                                 goto retry_mknod;
418                         ERROR_WITH_ERRNO("Can't create special file \"%s\"",
419                                          path);
420                         return WIMLIB_ERR_MKNOD;
421                 }
422                 /* On special files, we can set timestamps immediately because
423                  * we don't need to write any data to them.  */
424                 ret = unix_set_metadata(-1, inode, path, ctx);
425         } else {
426                 int fd;
427
428                 path = unix_build_extraction_path(dentry, ctx);
429         retry_create:
430                 fd = open(path, O_TRUNC | O_CREAT | O_WRONLY | O_NOFOLLOW, 0644);
431                 if (fd < 0) {
432                         if (errno == EEXIST && !unlink(path))
433                                 goto retry_create;
434                         ERROR_WITH_ERRNO("Can't create regular file \"%s\"", path);
435                         return WIMLIB_ERR_OPEN;
436                 }
437                 /* On empty files, we can set timestamps immediately because we
438                  * don't need to write any data to them.  */
439                 ret = unix_set_metadata(fd, inode, path, ctx);
440                 if (close(fd) && !ret) {
441                         ERROR_WITH_ERRNO("Error closing \"%s\"", path);
442                         ret = WIMLIB_ERR_WRITE;
443                 }
444         }
445         if (ret)
446                 return ret;
447
448         ret = unix_create_hardlinks(inode, dentry, path, ctx);
449         if (ret)
450                 return ret;
451
452         return report_file_created(&ctx->common);
453 }
454
455 static int
456 unix_create_dirs_and_empty_files(const struct list_head *dentry_list,
457                                  struct unix_apply_ctx *ctx)
458 {
459         const struct wim_dentry *dentry;
460         int ret;
461
462         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
463                 ret = unix_create_if_directory(dentry, ctx);
464                 if (ret)
465                         return ret;
466         }
467         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
468                 ret = unix_extract_if_empty_file(dentry, ctx);
469                 if (ret)
470                         return ret;
471         }
472         return 0;
473 }
474
475 static int
476 unix_create_symlink(const struct wim_inode *inode, const char *path,
477                     const u8 *rpdata, u16 rpdatalen, bool rpfix,
478                     const char *apply_dir, size_t apply_dir_nchars)
479 {
480         char link_target[REPARSE_DATA_MAX_SIZE];
481         int ret;
482         struct wim_lookup_table_entry lte_override;
483
484         lte_override.resource_location = RESOURCE_IN_ATTACHED_BUFFER;
485         lte_override.attached_buffer = (void *)rpdata;
486         lte_override.size = rpdatalen;
487
488         ret = wim_inode_readlink(inode, link_target,
489                                  sizeof(link_target) - 1, &lte_override);
490         if (ret < 0) {
491                 errno = -ret;
492                 return WIMLIB_ERR_READLINK;
493         }
494
495         link_target[ret] = 0;
496
497         if (rpfix && link_target[0] == '/') {
498
499                 /* "Fix" the absolute symbolic link by prepending the absolute
500                  * path to the target directory.  */
501
502                 if (sizeof(link_target) - (ret + 1) < apply_dir_nchars) {
503                         errno = ENAMETOOLONG;
504                         return WIMLIB_ERR_REPARSE_POINT_FIXUP_FAILED;
505                 }
506                 memmove(link_target + apply_dir_nchars, link_target,
507                         ret + 1);
508                 memcpy(link_target, apply_dir, apply_dir_nchars);
509         }
510 retry_symlink:
511         if (symlink(link_target, path)) {
512                 if (errno == EEXIST && !unlink(path))
513                         goto retry_symlink;
514                 return WIMLIB_ERR_LINK;
515         }
516         return 0;
517 }
518
519 static void
520 unix_cleanup_open_fds(struct unix_apply_ctx *ctx, unsigned offset)
521 {
522         for (unsigned i = offset; i < ctx->num_open_fds; i++)
523                 filedes_close(&ctx->open_fds[i]);
524         ctx->num_open_fds = 0;
525 }
526
527 static int
528 unix_begin_extract_stream_instance(const struct wim_lookup_table_entry *stream,
529                                    const struct wim_inode *inode,
530                                    struct unix_apply_ctx *ctx)
531 {
532         const struct wim_dentry *first_dentry;
533         const char *first_path;
534         int fd;
535
536         if (inode_is_symlink(inode)) {
537                 /* On UNIX, symbolic links must be created with symlink(), which
538                  * requires that the full link target be available.  */
539                 if (stream->size > REPARSE_DATA_MAX_SIZE) {
540                         ERROR_WITH_ERRNO("Reparse data of \"%s\" has size "
541                                          "%"PRIu64" bytes (exceeds %u bytes)",
542                                          inode_first_full_path(inode),
543                                          stream->size, REPARSE_DATA_MAX_SIZE);
544                         return WIMLIB_ERR_INVALID_REPARSE_DATA;
545                 }
546                 ctx->reparse_ptr = ctx->reparse_data;
547                 return 0;
548         }
549
550         /* This should be ensured by extract_stream_list()  */
551         wimlib_assert(ctx->num_open_fds < MAX_OPEN_STREAMS);
552
553         first_dentry = inode_first_extraction_dentry(inode);
554         first_path = unix_build_extraction_path(first_dentry, ctx);
555 retry_create:
556         fd = open(first_path, O_TRUNC | O_CREAT | O_WRONLY | O_NOFOLLOW, 0644);
557         if (fd < 0) {
558                 if (errno == EEXIST && !unlink(first_path))
559                         goto retry_create;
560                 ERROR_WITH_ERRNO("Can't create regular file \"%s\"", first_path);
561                 return WIMLIB_ERR_OPEN;
562         }
563         filedes_init(&ctx->open_fds[ctx->num_open_fds++], fd);
564         return unix_create_hardlinks(inode, first_dentry, first_path, ctx);
565 }
566
567 /* Called when starting to read a single-instance stream for extraction  */
568 static int
569 unix_begin_extract_stream(struct wim_lookup_table_entry *stream, void *_ctx)
570 {
571         struct unix_apply_ctx *ctx = _ctx;
572         const struct stream_owner *owners = stream_owners(stream);
573         int ret;
574
575         for (u32 i = 0; i < stream->out_refcnt; i++) {
576                 const struct wim_inode *inode = owners[i].inode;
577
578                 ret = unix_begin_extract_stream_instance(stream, inode, ctx);
579                 if (ret) {
580                         ctx->reparse_ptr = NULL;
581                         unix_cleanup_open_fds(ctx, 0);
582                         return ret;
583                 }
584         }
585         return 0;
586 }
587
588 /* Called when the next chunk of a single-instance stream has been read for
589  * extraction  */
590 static int
591 unix_extract_chunk(const void *chunk, size_t size, void *_ctx)
592 {
593         struct unix_apply_ctx *ctx = _ctx;
594         int ret;
595
596         for (unsigned i = 0; i < ctx->num_open_fds; i++) {
597                 ret = full_write(&ctx->open_fds[i], chunk, size);
598                 if (ret) {
599                         ERROR_WITH_ERRNO("Error writing data to filesystem");
600                         return ret;
601                 }
602         }
603         if (ctx->reparse_ptr)
604                 ctx->reparse_ptr = mempcpy(ctx->reparse_ptr, chunk, size);
605         return 0;
606 }
607
608 /* Called when a single-instance stream has been fully read for extraction  */
609 static int
610 unix_end_extract_stream(struct wim_lookup_table_entry *stream, int status,
611                         void *_ctx)
612 {
613         struct unix_apply_ctx *ctx = _ctx;
614         int ret;
615         unsigned j;
616         const struct stream_owner *owners = stream_owners(stream);
617
618         ctx->reparse_ptr = NULL;
619
620         if (status) {
621                 unix_cleanup_open_fds(ctx, 0);
622                 return status;
623         }
624
625         j = 0;
626         ret = 0;
627         for (u32 i = 0; i < stream->out_refcnt; i++) {
628                 struct wim_inode *inode = owners[i].inode;
629
630                 if (inode_is_symlink(inode)) {
631                         /* We finally have the symlink data, so we can create
632                          * the symlink.  */
633                         const char *path;
634                         bool rpfix;
635
636                         rpfix = (ctx->common.extract_flags &
637                                  WIMLIB_EXTRACT_FLAG_RPFIX) &&
638                                         !inode->i_not_rpfixed;
639
640                         path = unix_build_inode_extraction_path(inode, ctx);
641                         ret = unix_create_symlink(inode, path,
642                                                   ctx->reparse_data,
643                                                   stream->size,
644                                                   rpfix,
645                                                   ctx->target_abspath,
646                                                   ctx->target_abspath_nchars);
647                         if (ret) {
648                                 ERROR_WITH_ERRNO("Can't create symbolic link "
649                                                  "\"%s\"", path);
650                                 break;
651                         }
652                         ret = unix_set_metadata(-1, inode, path, ctx);
653                         if (ret)
654                                 break;
655                 } else {
656                         /* Set metadata on regular file just before closing it.
657                          */
658                         struct filedes *fd = &ctx->open_fds[j];
659
660                         ret = unix_set_metadata(fd->fd, inode, NULL, ctx);
661                         if (ret)
662                                 break;
663
664                         if (filedes_close(fd)) {
665                                 ERROR_WITH_ERRNO("Error closing \"%s\"",
666                                                  unix_build_inode_extraction_path(inode, ctx));
667                                 ret = WIMLIB_ERR_WRITE;
668                                 break;
669                         }
670                         j++;
671                 }
672         }
673         unix_cleanup_open_fds(ctx, j);
674         return ret;
675 }
676
677 static int
678 unix_set_dir_metadata(struct list_head *dentry_list, struct unix_apply_ctx *ctx)
679 {
680         const struct wim_dentry *dentry;
681         int ret;
682
683         list_for_each_entry_reverse(dentry, dentry_list, d_extraction_list_node) {
684                 if (dentry_is_directory(dentry)) {
685                         ret = unix_set_metadata(-1, dentry->d_inode, NULL, ctx);
686                         if (ret)
687                                 return ret;
688                         ret = report_file_metadata_applied(&ctx->common);
689                         if (ret)
690                                 return ret;
691                 }
692         }
693         return 0;
694 }
695
696 static int
697 unix_extract(struct list_head *dentry_list, struct apply_ctx *_ctx)
698 {
699         int ret;
700         struct unix_apply_ctx *ctx = (struct unix_apply_ctx *)_ctx;
701         size_t path_max;
702
703         /* Compute the maximum path length that will be needed, then allocate
704          * some path buffers.  */
705         path_max = unix_compute_path_max(dentry_list, ctx);
706
707         for (unsigned i = 0; i < NUM_PATHBUFS; i++) {
708                 ctx->pathbufs[i] = MALLOC(path_max);
709                 if (!ctx->pathbufs[i]) {
710                         ret = WIMLIB_ERR_NOMEM;
711                         goto out;
712                 }
713                 /* Pre-fill the target in each path buffer.  We'll just append
714                  * the rest of the paths after this.  */
715                 memcpy(ctx->pathbufs[i],
716                        ctx->common.target, ctx->common.target_nchars);
717         }
718
719         /* Extract directories and empty regular files.  Directories are needed
720          * because we can't extract any other files until their directories
721          * exist.  Empty files are needed because they don't have
722          * representatives in the stream list.  */
723         reset_file_progress(&ctx->common);
724         ret = unix_create_dirs_and_empty_files(dentry_list, ctx);
725         if (ret)
726                 goto out;
727
728         /* Get full path to target if needed for absolute symlink fixups.  */
729         if ((ctx->common.extract_flags & WIMLIB_EXTRACT_FLAG_RPFIX) &&
730             ctx->common.required_features.symlink_reparse_points)
731         {
732                 ctx->target_abspath = realpath(ctx->common.target, NULL);
733                 if (!ctx->target_abspath) {
734                         ret = WIMLIB_ERR_NOMEM;
735                         goto out;
736                 }
737                 ctx->target_abspath_nchars = strlen(ctx->target_abspath);
738         }
739
740         /* Extract nonempty regular files and symbolic links.  */
741
742         struct read_stream_list_callbacks cbs = {
743                 .begin_stream      = unix_begin_extract_stream,
744                 .begin_stream_ctx  = ctx,
745                 .consume_chunk     = unix_extract_chunk,
746                 .consume_chunk_ctx = ctx,
747                 .end_stream        = unix_end_extract_stream,
748                 .end_stream_ctx    = ctx,
749         };
750         ret = extract_stream_list(&ctx->common, &cbs);
751         if (ret)
752                 goto out;
753
754
755         /* Set directory metadata.  We do this last so that we get the right
756          * directory timestamps.  */
757         reset_file_progress(&ctx->common);
758         ret = unix_set_dir_metadata(dentry_list, ctx);
759         if (ret)
760                 goto out;
761         if (ctx->num_special_files_ignored) {
762                 WARNING("%lu special files were not extracted due to EPERM!",
763                         ctx->num_special_files_ignored);
764         }
765 out:
766         for (unsigned i = 0; i < NUM_PATHBUFS; i++)
767                 FREE(ctx->pathbufs[i]);
768         FREE(ctx->target_abspath);
769         return ret;
770 }
771
772 const struct apply_operations unix_apply_ops = {
773         .name                   = "UNIX",
774         .get_supported_features = unix_get_supported_features,
775         .extract                = unix_extract,
776         .context_size           = sizeof(struct unix_apply_ctx),
777 };