]> wimlib.net Git - wimlib/blob - src/mount_image.c
avl_tree: Optimize first iteration of insertion rebalance loop
[wimlib] / src / mount_image.c
1 /*
2  * mount_image.c
3  *
4  * This file implements mounting of WIM files using FUSE, which stands for
5  * Filesystem in Userspace.  FUSE allows a filesystem to be implemented in a
6  * userspace process by implementing the filesystem primitives--- read(),
7  * write(), readdir(), etc.
8  */
9
10 /*
11  * Copyright (C) 2012, 2013, 2014 Eric Biggers
12  *
13  * This file is part of wimlib, a library for working with WIM files.
14  *
15  * wimlib is free software; you can redistribute it and/or modify it under the
16  * terms of the GNU General Public License as published by the Free
17  * Software Foundation; either version 3 of the License, or (at your option)
18  * any later version.
19  *
20  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
21  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
22  * A PARTICULAR PURPOSE. See the GNU General Public License for more
23  * details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with wimlib; if not, see http://www.gnu.org/licenses/.
27  */
28
29 #ifdef HAVE_CONFIG_H
30 #  include "config.h"
31 #endif
32
33 #include "wimlib.h"
34 #include "wimlib/error.h"
35
36 #ifdef WITH_FUSE
37
38 #ifdef __WIN32__
39 #  error "FUSE mount not supported on Win32!  Please configure --without-fuse"
40 #endif
41
42 #include "wimlib/encoding.h"
43 #include "wimlib/file_io.h"
44 #include "wimlib/dentry.h"
45 #include "wimlib/inode.h"
46 #include "wimlib/lookup_table.h"
47 #include "wimlib/metadata.h"
48 #include "wimlib/paths.h"
49 #include "wimlib/reparse.h"
50 #include "wimlib/resource.h"
51 #include "wimlib/timestamp.h"
52 #include "wimlib/version.h"
53 #include "wimlib/write.h"
54 #include "wimlib/xml.h"
55
56 #include <errno.h>
57 #include <ftw.h>
58 #include <limits.h>
59 #include <mqueue.h>
60 #include <signal.h>
61 #include <stdlib.h>
62 #include <string.h>
63 #include <sys/stat.h>
64 #include <sys/time.h>
65 #include <sys/types.h>
66 #include <sys/wait.h>
67 #include <unistd.h>
68 #include <utime.h>
69
70 #define FUSE_USE_VERSION 26
71 #include <fuse.h>
72
73 #ifdef ENABLE_XATTR
74 #include <attr/xattr.h>
75 #endif
76
77 #define MSG_VERSION_TOO_HIGH    -1
78 #define MSG_BREAK_LOOP          -2
79
80 /* File descriptor to a file open on the WIM filesystem. */
81 struct wimfs_fd {
82         struct wim_inode *f_inode;
83         struct wim_lookup_table_entry *f_lte;
84         struct filedes staging_fd;
85         u16 idx;
86         u32 stream_id;
87 };
88
89 struct wimfs_context {
90         /* The WIMStruct for the mounted WIM. */
91         WIMStruct *wim;
92
93         /* Name of the staging directory for a read-write mount.  Whenever a new file is
94          * created, it is done so in the staging directory.  Furthermore, whenever a
95          * file in the WIM is modified, it is extracted to the staging directory.  If
96          * changes are commited when the WIM is unmounted, the file resources are merged
97          * in from the staging directory when writing the new WIM. */
98         char *staging_dir_name;
99         size_t staging_dir_name_len;
100
101         /* Flags passed to wimlib_mount(). */
102         int mount_flags;
103
104         /* Default flags to use when looking up a WIM dentry (depends on whether
105          * the Windows interface to alternate data streams is being used or
106          * not). */
107         int default_lookup_flags;
108
109         /* Next inode number to be assigned.  Note: I didn't bother with a
110          * bitmap of free inode numbers since this isn't even a "real"
111          * filesystem anyway. */
112         u64 next_ino;
113
114         /* List of inodes in the mounted image */
115         struct list_head *image_inode_list;
116
117         /* Original list of streams in the mounted image, linked by
118          * mount_orig_stream_list.  */
119         struct list_head orig_stream_list;
120
121         /* Name and message queue descriptors for message queues between the
122          * filesystem daemon process and the unmount process.  These are used
123          * when the filesystem is unmounted and the process running
124          * wimlib_unmount_image() needs to communicate with the filesystem
125          * daemon running fuse_main() (i.e. the process created by a call to
126          * wimlib_mount_image().  */
127         char *unmount_to_daemon_mq_name;
128         char *daemon_to_unmount_mq_name;
129         mqd_t unmount_to_daemon_mq;
130         mqd_t daemon_to_unmount_mq;
131
132         uid_t default_uid;
133         gid_t default_gid;
134
135         int status;
136         bool have_status;
137 };
138
139 static void
140 init_wimfs_context(struct wimfs_context *ctx)
141 {
142         memset(ctx, 0, sizeof(*ctx));
143         ctx->unmount_to_daemon_mq = (mqd_t)-1;
144         ctx->daemon_to_unmount_mq = (mqd_t)-1;
145 }
146
147 #define WIMFS_CTX(fuse_ctx) ((struct wimfs_context*)(fuse_ctx)->private_data)
148
149 static inline struct wimfs_context *
150 wimfs_get_context(void)
151 {
152         return WIMFS_CTX(fuse_get_context());
153 }
154
155 static inline WIMStruct *
156 wimfs_get_WIMStruct(void)
157 {
158         return wimfs_get_context()->wim;
159 }
160
161 static inline int
162 get_lookup_flags(const struct wimfs_context *ctx)
163 {
164         return ctx->default_lookup_flags;
165 }
166
167 /* Returns nonzero if write permission is requested on the file open flags */
168 static inline int
169 flags_writable(int open_flags)
170 {
171         int accmode = (open_flags & O_ACCMODE);
172         return (accmode == O_RDWR || accmode == O_WRONLY);
173 }
174
175 /*
176  * Allocate a file descriptor for a stream.
177  *
178  * @inode:      inode containing the stream we're opening
179  * @stream_id:  ID of the stream we're opening
180  * @lte:        Lookup table entry for the stream (may be NULL)
181  * @fd_ret:     Return the allocated file descriptor if successful.
182  *
183  * Return 0 iff successful or negative error code if unsuccessful.
184  */
185 static int
186 alloc_wimfs_fd(struct wim_inode *inode,
187                u32 stream_id,
188                struct wim_lookup_table_entry *lte,
189                struct wimfs_fd **fd_ret)
190 {
191         static const u16 fds_per_alloc = 8;
192         static const u16 max_fds = 0xffff;
193
194         DEBUG("Allocating fd for stream ID %u from inode %#"PRIx64" "
195               "(open = %u, allocated = %u)",
196               stream_id, inode->i_ino, inode->i_num_opened_fds,
197               inode->i_num_allocated_fds);
198
199         if (inode->i_num_opened_fds == inode->i_num_allocated_fds) {
200                 struct wimfs_fd **fds;
201                 u16 num_new_fds;
202
203                 if (inode->i_num_allocated_fds == max_fds)
204                         return -EMFILE;
205
206                 num_new_fds = min(fds_per_alloc,
207                                   max_fds - inode->i_num_allocated_fds);
208
209                 fds = REALLOC(inode->i_fds,
210                               (inode->i_num_allocated_fds + num_new_fds) *
211                                 sizeof(inode->i_fds[0]));
212                 if (!fds)
213                         return -ENOMEM;
214
215                 memset(&fds[inode->i_num_allocated_fds], 0,
216                        num_new_fds * sizeof(fds[0]));
217                 inode->i_fds = fds;
218                 inode->i_num_allocated_fds += num_new_fds;
219         }
220         for (u16 i = 0; ; i++) {
221                 if (!inode->i_fds[i]) {
222                         struct wimfs_fd *fd = CALLOC(1, sizeof(*fd));
223                         if (!fd)
224                                 return -ENOMEM;
225
226                         fd->f_inode     = inode;
227                         fd->f_lte       = lte;
228                         filedes_invalidate(&fd->staging_fd);
229                         fd->idx         = i;
230                         fd->stream_id   = stream_id;
231                         *fd_ret         = fd;
232                         inode->i_fds[i] = fd;
233                         inode->i_num_opened_fds++;
234                         if (lte)
235                                 lte->num_opened_fds++;
236                         DEBUG("Allocated fd (idx = %u)", fd->idx);
237                         return 0;
238                 }
239         }
240 }
241
242 static void
243 inode_put_fd(struct wim_inode *inode, struct wimfs_fd *fd)
244 {
245         wimlib_assert(inode != NULL);
246         wimlib_assert(fd->f_inode == inode);
247         wimlib_assert(inode->i_num_opened_fds != 0);
248         wimlib_assert(fd->idx < inode->i_num_allocated_fds);
249         wimlib_assert(inode->i_fds[fd->idx] == fd);
250
251         inode->i_fds[fd->idx] = NULL;
252         FREE(fd);
253         if (--inode->i_num_opened_fds == 0) {
254                 FREE(inode->i_fds);
255                 inode->i_fds = NULL;
256                 inode->i_num_allocated_fds = 0;
257                 if (inode->i_nlink == 0)
258                         free_inode(inode);
259         }
260 }
261
262 static int
263 lte_put_fd(struct wim_lookup_table_entry *lte, struct wimfs_fd *fd)
264 {
265         wimlib_assert(fd->f_lte == lte);
266
267         if (!lte) /* Empty stream with no lookup table entry */
268                 return 0;
269
270         /* Close staging file descriptor if needed. */
271
272         if (lte->resource_location == RESOURCE_IN_STAGING_FILE
273              && filedes_valid(&fd->staging_fd))
274         {
275                 if (filedes_close(&fd->staging_fd)) {
276                         ERROR_WITH_ERRNO("Failed to close staging file");
277                         return -errno;
278                 }
279         }
280         lte_decrement_num_opened_fds(lte);
281         return 0;
282 }
283
284 /* Close a file descriptor. */
285 static int
286 close_wimfs_fd(struct wimfs_fd *fd)
287 {
288         int ret;
289         DEBUG("Closing fd (ino = %#"PRIx64", opened = %u, allocated = %u)",
290               fd->f_inode->i_ino, fd->f_inode->i_num_opened_fds,
291               fd->f_inode->i_num_allocated_fds);
292         ret = lte_put_fd(fd->f_lte, fd);
293         if (ret)
294                 return ret;
295
296         inode_put_fd(fd->f_inode, fd);
297         return 0;
298 }
299
300 static mode_t
301 fuse_mask_mode(mode_t mode, struct fuse_context *fuse_ctx)
302 {
303 #if FUSE_MAJOR_VERSION > 2 || (FUSE_MAJOR_VERSION == 2 && FUSE_MINOR_VERSION >= 8)
304         mode &= ~fuse_ctx->umask;
305 #endif
306         return mode;
307 }
308
309 /*
310  * Add a new dentry with a new inode to a WIM image.
311  *
312  * Returns 0 on success, or negative error number on failure.
313  */
314 static int
315 create_dentry(struct fuse_context *fuse_ctx, const char *path,
316               mode_t mode, int attributes, struct wim_dentry **dentry_ret)
317 {
318         struct wim_dentry *parent;
319         struct wim_dentry *new;
320         const char *basename;
321         struct wimfs_context *wimfs_ctx = WIMFS_CTX(fuse_ctx);
322         int ret;
323
324         parent = get_parent_dentry(wimfs_ctx->wim, path, WIMLIB_CASE_SENSITIVE);
325         if (!parent)
326                 return -errno;
327
328         if (!dentry_is_directory(parent))
329                 return -ENOTDIR;
330
331         basename = path_basename(path);
332         if (get_dentry_child_with_name(parent, basename, WIMLIB_CASE_SENSITIVE))
333                 return -EEXIST;
334
335         ret = new_dentry_with_inode(basename, &new);
336         if (ret)
337                 return -ENOMEM;
338
339         new->d_inode->i_resolved = 1;
340         new->d_inode->i_ino = wimfs_ctx->next_ino++;
341         new->d_inode->i_attributes = attributes;
342
343         if (wimfs_ctx->mount_flags & WIMLIB_MOUNT_FLAG_UNIX_DATA) {
344                 if (inode_set_unix_data(new->d_inode,
345                                         fuse_ctx->uid,
346                                         fuse_ctx->gid,
347                                         fuse_mask_mode(mode, fuse_ctx),
348                                         wimfs_ctx->wim->lookup_table,
349                                         UNIX_DATA_ALL | UNIX_DATA_CREATE))
350                 {
351                         free_dentry(new);
352                         return -ENOMEM;
353                 }
354         }
355         dentry_add_child(parent, new);
356         list_add_tail(&new->d_inode->i_list, wimfs_ctx->image_inode_list);
357         if (dentry_ret)
358                 *dentry_ret = new;
359         return 0;
360 }
361
362 static struct wim_inode *
363 wim_pathname_to_inode(WIMStruct *wim, const tchar *path)
364 {
365         struct wim_dentry *dentry;
366         dentry = get_dentry(wim, path, WIMLIB_CASE_SENSITIVE);
367         if (dentry)
368                 return dentry->d_inode;
369         else
370                 return NULL;
371 }
372
373 /* Remove a dentry from a mounted WIM image; i.e. remove an alias for the
374  * corresponding inode.
375  *
376  * If there are no remaining references to the inode either through dentries or
377  * open file descriptors, the inode is freed.  Otherwise, the inode is not
378  * removed, but the dentry is unlinked and freed.
379  *
380  * Either way, all lookup table entries referenced by the inode have their
381  * reference count decremented.  If a lookup table entry has no open file
382  * descriptors and no references remaining, it is freed, and the corresponding
383  * staging file is unlinked.
384  */
385 static void
386 remove_dentry(struct wim_dentry *dentry,
387               struct wim_lookup_table *lookup_table)
388 {
389         struct wim_inode *inode = dentry->d_inode;
390         struct wim_lookup_table_entry *lte;
391         unsigned i;
392
393         for (i = 0; i <= inode->i_num_ads; i++) {
394                 lte = inode_stream_lte(inode, i, lookup_table);
395                 if (lte)
396                         lte_decrement_refcnt(lte, lookup_table);
397         }
398         unlink_dentry(dentry);
399         free_dentry(dentry);
400 }
401
402 static mode_t
403 inode_default_unix_mode(const struct wim_inode *inode)
404 {
405         if (inode_is_symlink(inode))
406                 return S_IFLNK | 0777;
407         else if (inode_is_directory(inode))
408                 return S_IFDIR | 0777;
409         else
410                 return S_IFREG | 0777;
411 }
412
413 /* Transfers file attributes from a struct wim_inode to a `stat' buffer.
414  *
415  * The lookup table entry tells us which stream in the inode we are statting.
416  * For a named data stream, everything returned is the same as the unnamed data
417  * stream except possibly the size and block count. */
418 static int
419 inode_to_stbuf(const struct wim_inode *inode,
420                const struct wim_lookup_table_entry *lte,
421                struct stat *stbuf)
422 {
423         const struct wimfs_context *ctx = wimfs_get_context();
424
425         memset(stbuf, 0, sizeof(struct stat));
426         stbuf->st_mode = inode_default_unix_mode(inode);
427         stbuf->st_uid = ctx->default_uid;
428         stbuf->st_gid = ctx->default_gid;
429         if (ctx->mount_flags & WIMLIB_MOUNT_FLAG_UNIX_DATA) {
430                 struct wimlib_unix_data unix_data;
431                 if (inode_get_unix_data(inode, &unix_data, NULL) == 0) {
432                         stbuf->st_uid = unix_data.uid;
433                         stbuf->st_gid = unix_data.gid;
434                         stbuf->st_mode = unix_data.mode;
435                 }
436         }
437         stbuf->st_ino = (ino_t)inode->i_ino;
438         stbuf->st_nlink = inode->i_nlink;
439         if (lte)
440                 stbuf->st_size = lte->size;
441         else
442                 stbuf->st_size = 0;
443 #ifdef HAVE_STAT_NANOSECOND_PRECISION
444         stbuf->st_atim = wim_timestamp_to_timespec(inode->i_last_access_time);
445         stbuf->st_mtim = wim_timestamp_to_timespec(inode->i_last_write_time);
446         stbuf->st_ctim = stbuf->st_mtim;
447 #else
448         stbuf->st_atime = wim_timestamp_to_unix(inode->i_last_access_time);
449         stbuf->st_mtime = wim_timestamp_to_unix(inode->i_last_write_time);
450         stbuf->st_ctime = stbuf->st_mtime;
451 #endif
452         stbuf->st_blocks = (stbuf->st_size + 511) / 512;
453         return 0;
454 }
455
456 static void
457 touch_inode(struct wim_inode *inode)
458 {
459         u64 now = get_wim_timestamp();
460         inode->i_last_access_time = now;
461         inode->i_last_write_time = now;
462 }
463
464 /* Creates a new staging file and returns its file descriptor opened for
465  * writing.
466  *
467  * @name_ret: A location into which the a pointer to the newly allocated name of
468  *            the staging file is stored.
469  *
470  * @ctx:      Context for the WIM filesystem; this provides the name of the
471  *            staging directory.
472  *
473  * On success, returns the file descriptor for the staging file, opened for
474  * writing.  On failure, returns -1 and sets errno.
475  */
476 static int
477 create_staging_file(char **name_ret, struct wimfs_context *ctx)
478 {
479         size_t name_len;
480         char *name;
481         struct stat stbuf;
482         int fd;
483         int errno_save;
484
485         static const size_t STAGING_FILE_NAME_LEN = 20;
486
487         name_len = ctx->staging_dir_name_len + 1 + STAGING_FILE_NAME_LEN;
488         name = MALLOC(name_len + 1);
489         if (!name) {
490                 errno = ENOMEM;
491                 return -1;
492         }
493
494         do {
495
496                 memcpy(name, ctx->staging_dir_name, ctx->staging_dir_name_len);
497                 name[ctx->staging_dir_name_len] = '/';
498                 randomize_char_array_with_alnum(name + ctx->staging_dir_name_len + 1,
499                                                 STAGING_FILE_NAME_LEN);
500                 name[name_len] = '\0';
501
502
503         /* Just in case, verify that the randomly generated name doesn't name an
504          * existing file, and try again if so  */
505         } while (stat(name, &stbuf) == 0);
506
507         if (errno != ENOENT) /* other error?! */
508                 return -1;
509
510         /* doesn't exist--- ok */
511
512         DEBUG("Creating staging file `%s'", name);
513
514         fd = open(name, O_WRONLY | O_CREAT | O_EXCL, 0600);
515         if (fd == -1) {
516                 errno_save = errno;
517                 FREE(name);
518                 errno = errno_save;
519         } else {
520                 *name_ret = name;
521         }
522         return fd;
523 }
524
525 /*
526  * Extract a WIM resource to the staging directory.
527  *
528  * @inode:  Inode that contains the stream we are extracting
529  *
530  * @stream_id: Identifier for the stream (it stays constant even if the indices
531  * of the stream entries are changed)
532  *
533  * @lte: Pointer to pointer to the lookup table entry for the stream we need to
534  * extract, or NULL if there was no lookup table entry present for the stream
535  *
536  * @size:  Number of bytes of the stream we want to extract (this supports the
537  * wimfs_truncate() function).  It may be more than the actual stream length, in
538  * which case the extra space is filled with zeroes.
539  *
540  * @ctx:  Context for the WIM filesystem.
541  *
542  * Returns 0 on success or a negative error code on failure.
543  */
544 static int
545 extract_resource_to_staging_dir(struct wim_inode *inode,
546                                 u32 stream_id,
547                                 struct wim_lookup_table_entry **lte,
548                                 off_t size,
549                                 struct wimfs_context *ctx)
550 {
551         char *staging_file_name;
552         int ret;
553         int fd;
554         struct wim_lookup_table_entry *old_lte, *new_lte;
555         off_t extract_size;
556
557         DEBUG("Extracting resource to staging dir: inode %"PRIu64", "
558               "stream id %"PRIu32, inode->i_ino, stream_id);
559
560         old_lte = *lte;
561
562         wimlib_assert(old_lte == NULL ||
563                       old_lte->resource_location != RESOURCE_IN_STAGING_FILE);
564
565         /* Create the staging file */
566         fd = create_staging_file(&staging_file_name, ctx);
567         if (fd == -1)
568                 return -errno;
569
570         /* Extract the stream to the staging file (possibly truncated) */
571         if (old_lte) {
572                 struct filedes wimlib_fd;
573                 filedes_init(&wimlib_fd, fd);
574                 extract_size = min(old_lte->size, size);
575                 ret = extract_stream_to_fd(old_lte, &wimlib_fd, extract_size);
576         } else {
577                 ret = 0;
578                 extract_size = 0;
579         }
580
581         /* In the case of truncate() to more than the file length, extend the
582          * file with zeroes by calling ftruncate() on the underlying staging
583          * file */
584         if (ret == 0 && size > extract_size)
585                 ret = ftruncate(fd, size);
586
587         /* Close the staging file descriptor and check for errors.  If there's
588          * an error, unlink the staging file. */
589         if (ret != 0 || close(fd) != 0) {
590                 if (errno != 0)
591                         ret = -errno;
592                 else
593                         ret = -EIO;
594                 close(fd);
595                 goto out_delete_staging_file;
596         }
597
598         /* Now deal with the lookup table entries.  We may be able to re-use the
599          * existing entry, but we may have to create a new one instead. */
600
601         if (old_lte && inode->i_nlink == old_lte->refcnt) {
602                 /* The reference count of the existing lookup table entry is the
603                  * same as the link count of the inode that contains the stream
604                  * we're opening.  Therefore, ALL the references to the lookup
605                  * table entry correspond to the stream we're trying to extract,
606                  * so the lookup table entry can be re-used.  */
607                 DEBUG("Re-using lookup table entry");
608                 lookup_table_unlink(ctx->wim->lookup_table, old_lte);
609                 new_lte = old_lte;
610         } else {
611                 if (old_lte) {
612                         /* There's an existing lookup table entry, but its
613                          * reference count is greater than the link count for
614                          * the inode containing a stream we're opening.
615                          * Therefore, we need to split the lookup table entry.
616                          */
617                         wimlib_assert(old_lte->refcnt > inode->i_nlink);
618                         DEBUG("Splitting lookup table entry "
619                               "(inode->i_nlink = %u, old_lte->refcnt = %u)",
620                               inode->i_nlink, old_lte->refcnt);
621                 }
622
623                 new_lte = new_lookup_table_entry();
624                 if (!new_lte) {
625                         ret = -ENOMEM;
626                         goto out_delete_staging_file;
627                 }
628
629                 /* There may already be open file descriptors to this stream if
630                  * it's previously been opened read-only, but just now we're
631                  * opening it read-write.  Identify those file descriptors and
632                  * change their lookup table entry pointers to point to the new
633                  * lookup table entry, and open staging file descriptors for
634                  * them.
635                  *
636                  * At the same time, we need to count the number of these opened
637                  * file descriptors to the new lookup table entry.  If there's
638                  * an old lookup table entry, this number needs to be subtracted
639                  * from the fd's opened to the old entry. */
640                 for (u16 i = 0, j = 0; j < inode->i_num_opened_fds; i++) {
641                         struct wimfs_fd *fd = inode->i_fds[i];
642                         if (fd) {
643                                 if (fd->stream_id == stream_id) {
644                                         int raw_fd;
645
646                                         wimlib_assert(fd->f_lte == old_lte);
647                                         wimlib_assert(!filedes_valid(&fd->staging_fd));
648                                         fd->f_lte = new_lte;
649                                         new_lte->num_opened_fds++;
650                                         raw_fd = open(staging_file_name, O_RDONLY);
651                                         if (raw_fd < 0) {
652                                                 ret = -errno;
653                                                 goto out_revert_fd_changes;
654                                         }
655                                         filedes_init(&fd->staging_fd, raw_fd);
656                                 }
657                                 j++;
658                         }
659                 }
660                 DEBUG("%hu fd's were already opened to the file we extracted",
661                       new_lte->num_opened_fds);
662                 if (old_lte) {
663                         old_lte->num_opened_fds -= new_lte->num_opened_fds;
664                         old_lte->refcnt -= inode->i_nlink;
665                 }
666         }
667
668         lte_put_resource(new_lte);
669         new_lte->refcnt              = inode->i_nlink;
670         new_lte->resource_location   = RESOURCE_IN_STAGING_FILE;
671         new_lte->staging_file_name   = staging_file_name;
672         new_lte->size                = size;
673
674         add_unhashed_stream(new_lte, inode, stream_id,
675                             &wim_get_current_image_metadata(ctx->wim)->unhashed_streams);
676         *retrieve_lte_pointer(new_lte) = new_lte;
677         *lte = new_lte;
678         return 0;
679 out_revert_fd_changes:
680         for (u16 i = 0, j = 0; j < new_lte->num_opened_fds; i++) {
681                 struct wimfs_fd *fd = inode->i_fds[i];
682                 if (fd && fd->stream_id == stream_id && fd->f_lte == new_lte) {
683                         fd->f_lte = old_lte;
684                         if (filedes_valid(&fd->staging_fd)) {
685                                 filedes_close(&fd->staging_fd);
686                                 filedes_invalidate(&fd->staging_fd);
687                         }
688                         j++;
689                 }
690         }
691         free_lookup_table_entry(new_lte);
692 out_delete_staging_file:
693         unlink(staging_file_name);
694         FREE(staging_file_name);
695         return ret;
696 }
697
698 /*
699  * Creates a randomly named staging directory and saves its name in the
700  * filesystem context structure.
701  */
702 static int
703 make_staging_dir(struct wimfs_context *ctx, const char *user_prefix)
704 {
705         static const size_t random_suffix_len = 10;
706         static const char *common_suffix = ".staging";
707         static const size_t common_suffix_len = 8;
708
709         char *staging_dir_name = NULL;
710         size_t staging_dir_name_len;
711         size_t prefix_len;
712         const char *wim_basename;
713         char *real_user_prefix = NULL;
714         int ret;
715
716         if (user_prefix) {
717                 real_user_prefix = realpath(user_prefix, NULL);
718                 if (!real_user_prefix) {
719                         ERROR_WITH_ERRNO("Could not resolve `%s'",
720                                          real_user_prefix);
721                         ret = WIMLIB_ERR_NOTDIR;
722                         goto out;
723                 }
724                 wim_basename = path_basename(ctx->wim->filename);
725                 prefix_len = strlen(real_user_prefix) + 1 + strlen(wim_basename);
726         } else {
727                 prefix_len = strlen(ctx->wim->filename);
728         }
729
730         staging_dir_name_len = prefix_len + common_suffix_len + random_suffix_len;
731
732         staging_dir_name = MALLOC(staging_dir_name_len + 1);
733         if (!staging_dir_name) {
734                 ret = WIMLIB_ERR_NOMEM;
735                 goto out;
736         }
737
738         if (real_user_prefix)
739                 sprintf(staging_dir_name, "%s/%s", real_user_prefix, wim_basename);
740         else
741                 strcpy(staging_dir_name, ctx->wim->filename);
742
743         strcat(staging_dir_name, common_suffix);
744
745         randomize_char_array_with_alnum(staging_dir_name + prefix_len + common_suffix_len,
746                                         random_suffix_len);
747
748         staging_dir_name[staging_dir_name_len] = '\0';
749
750         if (mkdir(staging_dir_name, 0700) != 0) {
751                 ERROR_WITH_ERRNO("Failed to create temporary directory `%s'",
752                                  staging_dir_name);
753                 ret = WIMLIB_ERR_MKDIR;
754         } else {
755                 ret = 0;
756         }
757 out:
758         FREE(real_user_prefix);
759         if (ret == 0) {
760                 ctx->staging_dir_name = staging_dir_name;
761                 ctx->staging_dir_name_len = staging_dir_name_len;
762         } else {
763                 FREE(staging_dir_name);
764         }
765         return ret;
766 }
767
768 static int
769 remove_file_or_directory(const char *fpath, const struct stat *sb,
770                          int typeflag, struct FTW *ftwbuf)
771 {
772         if (remove(fpath) == 0)
773                 return 0;
774         else {
775                 ERROR_WITH_ERRNO("Cannot remove `%s'", fpath);
776                 return WIMLIB_ERR_DELETE_STAGING_DIR;
777         }
778 }
779
780 /*
781  * Deletes the staging directory and all the files contained in it.
782  */
783 static int
784 delete_staging_dir(struct wimfs_context *ctx)
785 {
786         int ret;
787         ret = nftw(ctx->staging_dir_name, remove_file_or_directory,
788                    10, FTW_DEPTH);
789         FREE(ctx->staging_dir_name);
790         ctx->staging_dir_name = NULL;
791         return ret;
792 }
793
794 static int
795 inode_close_fds(struct wim_inode *inode)
796 {
797         u16 num_opened_fds = inode->i_num_opened_fds;
798         for (u16 i = 0, j = 0; j < num_opened_fds; i++) {
799                 struct wimfs_fd *fd = inode->i_fds[i];
800                 if (fd) {
801                         wimlib_assert(fd->f_inode == inode);
802                         int ret = close_wimfs_fd(fd);
803                         if (ret != 0)
804                                 return ret;
805                         j++;
806                 }
807         }
808         return 0;
809 }
810
811 /* Overwrites the WIM file, with changes saved. */
812 static int
813 rebuild_wim(struct wimfs_context *ctx, int write_flags,
814             wimlib_progress_func_t progress_func)
815 {
816         int ret;
817         struct wim_lookup_table_entry *lte, *tmp;
818         WIMStruct *wim = ctx->wim;
819         struct wim_image_metadata *imd = wim_get_current_image_metadata(ctx->wim);
820
821         DEBUG("Closing all staging file descriptors.");
822         image_for_each_unhashed_stream_safe(lte, tmp, imd) {
823                 ret = inode_close_fds(lte->back_inode);
824                 if (ret)
825                         return ret;
826         }
827
828         DEBUG("Freeing entries for zero-length streams");
829         image_for_each_unhashed_stream_safe(lte, tmp, imd) {
830                 wimlib_assert(lte->unhashed);
831                 if (lte->size == 0) {
832                         struct wim_lookup_table_entry **back_ptr;
833                         back_ptr = retrieve_lte_pointer(lte);
834                         *back_ptr = NULL;
835                         list_del(&lte->unhashed_list);
836                         free_lookup_table_entry(lte);
837                 }
838         }
839
840         xml_update_image_info(wim, wim->current_image);
841         ret = wimlib_overwrite(wim, write_flags, 0, progress_func);
842         if (ret)
843                 ERROR("Failed to commit changes to mounted WIM image");
844         return ret;
845 }
846
847 /* Simple function that returns the concatenation of 2 strings. */
848 static char *
849 strcat_dup(const char *s1, const char *s2, size_t max_len)
850 {
851         size_t len = strlen(s1) + strlen(s2);
852         if (len > max_len)
853                 len = max_len;
854         char *p = MALLOC(len + 1);
855         if (!p)
856                 return NULL;
857         snprintf(p, len + 1, "%s%s", s1, s2);
858         return p;
859 }
860
861 static int
862 set_message_queue_names(struct wimfs_context *ctx, const char *mount_dir)
863 {
864         static const char *u2d_prefix = "/wimlib-unmount-to-daemon-mq";
865         static const char *d2u_prefix = "/wimlib-daemon-to-unmount-mq";
866         char *dir_path;
867         char *p;
868         int ret;
869
870         dir_path = realpath(mount_dir, NULL);
871         if (!dir_path) {
872                 ERROR_WITH_ERRNO("Failed to resolve path \"%s\"", mount_dir);
873                 if (errno == ENOMEM)
874                         return WIMLIB_ERR_NOMEM;
875                 else
876                         return WIMLIB_ERR_NOTDIR;
877         }
878
879         for (p = dir_path; *p; p++)
880                 if (*p == '/')
881                         *p = 0xff;
882
883         ctx->unmount_to_daemon_mq_name = strcat_dup(u2d_prefix, dir_path,
884                                                     NAME_MAX);
885         if (!ctx->unmount_to_daemon_mq_name) {
886                 ret = WIMLIB_ERR_NOMEM;
887                 goto out_free_dir_path;
888         }
889         ctx->daemon_to_unmount_mq_name = strcat_dup(d2u_prefix, dir_path,
890                                                     NAME_MAX);
891         if (!ctx->daemon_to_unmount_mq_name) {
892                 ret = WIMLIB_ERR_NOMEM;
893                 goto out_free_unmount_to_daemon_mq_name;
894         }
895
896         ret = 0;
897         goto out_free_dir_path;
898 out_free_unmount_to_daemon_mq_name:
899         FREE(ctx->unmount_to_daemon_mq_name);
900         ctx->unmount_to_daemon_mq_name = NULL;
901 out_free_dir_path:
902         FREE(dir_path);
903         return ret;
904 }
905
906 static void
907 free_message_queue_names(struct wimfs_context *ctx)
908 {
909         FREE(ctx->unmount_to_daemon_mq_name);
910         FREE(ctx->daemon_to_unmount_mq_name);
911         ctx->unmount_to_daemon_mq_name = NULL;
912         ctx->daemon_to_unmount_mq_name = NULL;
913 }
914
915 /*
916  * Opens two POSIX message queue: one for sending messages from the unmount
917  * process to the daemon process, and one to go the other way.  The names of the
918  * message queues, which must be system-wide unique, are be based on the mount
919  * point.
920  *
921  * @daemon specifies whether the calling process is the filesystem daemon or the
922  * unmount process.
923  */
924 static int
925 open_message_queues(struct wimfs_context *ctx, bool daemon)
926 {
927         int unmount_to_daemon_mq_flags = O_WRONLY | O_CREAT;
928         int daemon_to_unmount_mq_flags = O_RDONLY | O_CREAT;
929         mode_t mode;
930         mode_t orig_umask;
931         int ret;
932
933         if (daemon) {
934                 swap(unmount_to_daemon_mq_flags, daemon_to_unmount_mq_flags);
935                 mode = 0600;
936         } else {
937                 mode = 0666;
938         }
939
940         orig_umask = umask(0000);
941         DEBUG("Opening message queue \"%s\"", ctx->unmount_to_daemon_mq_name);
942         ctx->unmount_to_daemon_mq = mq_open(ctx->unmount_to_daemon_mq_name,
943                                             unmount_to_daemon_mq_flags, mode, NULL);
944
945         if (ctx->unmount_to_daemon_mq == (mqd_t)-1) {
946                 ERROR_WITH_ERRNO("mq_open()");
947                 ret = WIMLIB_ERR_MQUEUE;
948                 goto out;
949         }
950
951         DEBUG("Opening message queue \"%s\"", ctx->daemon_to_unmount_mq_name);
952         ctx->daemon_to_unmount_mq = mq_open(ctx->daemon_to_unmount_mq_name,
953                                             daemon_to_unmount_mq_flags, mode, NULL);
954
955         if (ctx->daemon_to_unmount_mq == (mqd_t)-1) {
956                 ERROR_WITH_ERRNO("mq_open()");
957                 mq_close(ctx->unmount_to_daemon_mq);
958                 mq_unlink(ctx->unmount_to_daemon_mq_name);
959                 ctx->unmount_to_daemon_mq = (mqd_t)-1;
960                 ret = WIMLIB_ERR_MQUEUE;
961                 goto out;
962         }
963         ret = 0;
964 out:
965         umask(orig_umask);
966         return ret;
967 }
968
969 /* Try to determine the maximum message size of a message queue.  The return
970  * value is the maximum message size, or a guess of 8192 bytes if it cannot be
971  * determined. */
972 static long
973 mq_get_msgsize(mqd_t mq)
974 {
975         static const char *msgsize_max_file = "/proc/sys/fs/mqueue/msgsize_max";
976         FILE *fp;
977         struct mq_attr attr;
978         long msgsize;
979
980         if (mq_getattr(mq, &attr) == 0) {
981                 msgsize = attr.mq_msgsize;
982         } else {
983                 ERROR_WITH_ERRNO("mq_getattr()");
984                 ERROR("Attempting to read %s", msgsize_max_file);
985                 fp = fopen(msgsize_max_file, "rb");
986                 if (fp) {
987                         if (fscanf(fp, "%ld", &msgsize) != 1) {
988                                 ERROR("Assuming message size of 8192");
989                                 msgsize = 8192;
990                         }
991                         fclose(fp);
992                 } else {
993                         ERROR_WITH_ERRNO("Failed to open the file `%s'",
994                                          msgsize_max_file);
995                         ERROR("Assuming message size of 8192");
996                         msgsize = 8192;
997                 }
998         }
999         return msgsize;
1000 }
1001
1002 static int
1003 get_mailbox(mqd_t mq, long needed_msgsize, long *msgsize_ret,
1004             void **mailbox_ret)
1005 {
1006         long msgsize;
1007         void *mailbox;
1008
1009         msgsize = mq_get_msgsize(mq);
1010
1011         if (msgsize < needed_msgsize) {
1012                 ERROR("Message queue max size must be at least %ld!",
1013                       needed_msgsize);
1014                 return WIMLIB_ERR_MQUEUE;
1015         }
1016
1017         mailbox = MALLOC(msgsize);
1018         if (!mailbox) {
1019                 ERROR("Failed to allocate %ld bytes for mailbox", msgsize);
1020                 return WIMLIB_ERR_NOMEM;
1021         }
1022         *msgsize_ret = msgsize;
1023         *mailbox_ret = mailbox;
1024         return 0;
1025 }
1026
1027 static void
1028 unlink_message_queues(struct wimfs_context *ctx)
1029 {
1030         mq_unlink(ctx->unmount_to_daemon_mq_name);
1031         mq_unlink(ctx->daemon_to_unmount_mq_name);
1032 }
1033
1034 /* Closes the message queues, which are allocated in static variables */
1035 static void
1036 close_message_queues(struct wimfs_context *ctx)
1037 {
1038         DEBUG("Closing message queues");
1039         mq_close(ctx->unmount_to_daemon_mq);
1040         ctx->unmount_to_daemon_mq = (mqd_t)(-1);
1041         mq_close(ctx->daemon_to_unmount_mq);
1042         ctx->daemon_to_unmount_mq = (mqd_t)(-1);
1043         unlink_message_queues(ctx);
1044 }
1045
1046
1047 struct unmount_msg_hdr {
1048         u32 min_version;
1049         u32 cur_version;
1050         u32 msg_type;
1051         u32 msg_size;
1052 } _packed_attribute;
1053
1054 struct msg_unmount_request {
1055         struct unmount_msg_hdr hdr;
1056         u32 unmount_flags;
1057         u8 want_progress_messages;
1058 } _packed_attribute;
1059
1060 struct msg_daemon_info {
1061         struct unmount_msg_hdr hdr;
1062         pid_t daemon_pid;
1063         u32 mount_flags;
1064 } _packed_attribute;
1065
1066 struct msg_unmount_finished {
1067         struct unmount_msg_hdr hdr;
1068         s32 status;
1069 } _packed_attribute;
1070
1071 struct msg_write_streams_progress {
1072         struct unmount_msg_hdr hdr;
1073         union wimlib_progress_info info;
1074 } _packed_attribute;
1075
1076 enum {
1077         MSG_TYPE_UNMOUNT_REQUEST,
1078         MSG_TYPE_DAEMON_INFO,
1079         MSG_TYPE_WRITE_STREAMS_PROGRESS,
1080         MSG_TYPE_UNMOUNT_FINISHED,
1081         MSG_TYPE_MAX,
1082 };
1083
1084 struct msg_handler_context_hdr {
1085         int timeout_seconds;
1086 };
1087
1088 struct unmount_msg_handler_context {
1089         struct msg_handler_context_hdr hdr;
1090         pid_t daemon_pid;
1091         int mount_flags;
1092         int status;
1093         wimlib_progress_func_t progress_func;
1094 };
1095
1096 struct daemon_msg_handler_context {
1097         struct msg_handler_context_hdr hdr;
1098         struct wimfs_context *wimfs_ctx;
1099 };
1100
1101 static int
1102 send_unmount_request_msg(mqd_t mq, int unmount_flags, u8 want_progress_messages)
1103 {
1104         DEBUG("Sending unmount request msg");
1105         struct msg_unmount_request msg = {
1106                 .hdr = {
1107                         .min_version = ((unmount_flags & WIMLIB_UNMOUNT_FLAG_NEW_IMAGE) ?
1108                                                 WIMLIB_MAKEVERSION(1, 6, 2) :
1109                                                 WIMLIB_MAKEVERSION(1, 2, 1)),
1110                         .cur_version = WIMLIB_VERSION_CODE,
1111                         .msg_type    = MSG_TYPE_UNMOUNT_REQUEST,
1112                         .msg_size    = sizeof(msg),
1113                 },
1114                 .unmount_flags = unmount_flags,
1115                 .want_progress_messages = want_progress_messages,
1116         };
1117
1118         if (mq_send(mq, (void*)&msg, sizeof(msg), 1)) {
1119                 ERROR_WITH_ERRNO("Failed to communicate with filesystem daemon");
1120                 return WIMLIB_ERR_MQUEUE;
1121         }
1122         return 0;
1123 }
1124
1125 static int
1126 send_daemon_info_msg(mqd_t mq, pid_t pid, int mount_flags)
1127 {
1128         DEBUG("Sending daemon info msg (pid = %d, mount_flags=%x)",
1129               pid, mount_flags);
1130
1131         struct msg_daemon_info msg = {
1132                 .hdr = {
1133                         .min_version = WIMLIB_MAKEVERSION(1, 2, 1),
1134                         .cur_version = WIMLIB_VERSION_CODE,
1135                         .msg_type = MSG_TYPE_DAEMON_INFO,
1136                         .msg_size = sizeof(msg),
1137                 },
1138                 .daemon_pid = pid,
1139                 .mount_flags = mount_flags,
1140         };
1141         if (mq_send(mq, (void*)&msg, sizeof(msg), 1)) {
1142                 ERROR_WITH_ERRNO("Failed to send daemon info to unmount process");
1143                 return WIMLIB_ERR_MQUEUE;
1144         }
1145         return 0;
1146 }
1147
1148 static void
1149 send_unmount_finished_msg(mqd_t mq, int status)
1150 {
1151         DEBUG("Sending unmount finished msg");
1152         struct msg_unmount_finished msg = {
1153                 .hdr = {
1154                         .min_version = WIMLIB_MAKEVERSION(1, 2, 1),
1155                         .cur_version = WIMLIB_VERSION_CODE,
1156                         .msg_type = MSG_TYPE_UNMOUNT_FINISHED,
1157                         .msg_size = sizeof(msg),
1158                 },
1159                 .status = status,
1160         };
1161         if (mq_send(mq, (void*)&msg, sizeof(msg), 1))
1162                 ERROR_WITH_ERRNO("Failed to send status to unmount process");
1163 }
1164
1165 static int
1166 unmount_progress_func(enum wimlib_progress_msg msg,
1167                       const union wimlib_progress_info *info)
1168 {
1169         if (msg == WIMLIB_PROGRESS_MSG_WRITE_STREAMS) {
1170                 struct msg_write_streams_progress msg = {
1171                         .hdr = {
1172                                 .min_version = WIMLIB_MAKEVERSION(1, 2, 1),
1173                                 .cur_version = WIMLIB_VERSION_CODE,
1174                                 .msg_type = MSG_TYPE_WRITE_STREAMS_PROGRESS,
1175                                 .msg_size = sizeof(msg),
1176                         },
1177                         .info = *info,
1178                 };
1179                 if (mq_send(wimfs_get_context()->daemon_to_unmount_mq,
1180                             (void*)&msg, sizeof(msg), 1))
1181                 {
1182                         ERROR_WITH_ERRNO("Failed to send progress information "
1183                                          "to unmount process");
1184                 }
1185         }
1186         return 0;
1187 }
1188
1189 static void
1190 release_extra_refcnts(struct wimfs_context *ctx)
1191 {
1192         struct list_head *list = &ctx->orig_stream_list;
1193         struct wim_lookup_table *lookup_table = ctx->wim->lookup_table;
1194         struct wim_lookup_table_entry *lte, *tmp;
1195
1196         list_for_each_entry_safe(lte, tmp, list, orig_stream_list) {
1197                 u32 n = lte->out_refcnt;
1198                 while (n--)
1199                         lte_decrement_refcnt(lte, lookup_table);
1200         }
1201 }
1202
1203 /* Moves the currently selected image, which may have been modified, to a new
1204  * index, and sets the original index to refer to a reset (unmodified) copy of
1205  * the image.  */
1206 static int
1207 renew_current_image(struct wimfs_context *ctx)
1208 {
1209         WIMStruct *wim = ctx->wim;
1210         int ret;
1211         int idx = wim->current_image - 1;
1212         struct wim_image_metadata *imd = wim->image_metadata[idx];
1213         struct wim_image_metadata *replace_imd;
1214         struct wim_lookup_table_entry *new_lte;
1215
1216         if (imd->metadata_lte->resource_location != RESOURCE_IN_WIM) {
1217                 ERROR("Can't reset modified image that doesn't yet "
1218                       "exist in the on-disk WIM file!");
1219                 return WIMLIB_ERR_METADATA_NOT_FOUND;
1220         }
1221
1222         /* Create 'replace_imd' structure to use for the reset original,
1223          * unmodified image.  */
1224         replace_imd = new_image_metadata();
1225         if (!replace_imd)
1226                 return WIMLIB_ERR_NOMEM;
1227
1228         /* Create new stream reference for the modified image's metadata
1229          * resource, which doesn't exist yet.  */
1230         ret = WIMLIB_ERR_NOMEM;
1231         new_lte = new_lookup_table_entry();
1232         if (!new_lte)
1233                 goto err_put_replace_imd;
1234         new_lte->flags = WIM_RESHDR_FLAG_METADATA;
1235         new_lte->unhashed = 1;
1236
1237         /* Make the image being moved available at a new index.  Increments the
1238          * WIM's image count, but does not increment the reference count of the
1239          * 'struct image_metadata'.  */
1240         ret = append_image_metadata(wim, imd);
1241         if (ret)
1242                 goto err_free_new_lte;
1243
1244         ret = xml_add_image(wim, T(""));
1245         if (ret)
1246                 goto err_undo_append;
1247
1248         replace_imd->metadata_lte = imd->metadata_lte;
1249         imd->metadata_lte = new_lte;
1250         wim->image_metadata[idx] = replace_imd;
1251         wim->current_image = wim->hdr.image_count;
1252         return 0;
1253
1254 err_undo_append:
1255         wim->hdr.image_count--;
1256 err_free_new_lte:
1257         free_lookup_table_entry(new_lte);
1258 err_put_replace_imd:
1259         put_image_metadata(replace_imd, NULL);
1260         return ret;
1261 }
1262
1263 static int
1264 msg_unmount_request_handler(const void *_msg, void *_handler_ctx)
1265 {
1266         const struct msg_unmount_request *msg = _msg;
1267         struct daemon_msg_handler_context *handler_ctx = _handler_ctx;
1268         struct wimfs_context *wimfs_ctx;
1269         int status = 0;
1270         int ret;
1271         int unmount_flags;
1272         wimlib_progress_func_t progress_func;
1273
1274         DEBUG("Handling unmount request msg");
1275
1276         wimfs_ctx = handler_ctx->wimfs_ctx;
1277         if (msg->hdr.msg_size < sizeof(*msg)) {
1278                 status = WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE;
1279                 goto out;
1280         }
1281
1282         unmount_flags = msg->unmount_flags;
1283         if (msg->want_progress_messages)
1284                 progress_func = unmount_progress_func;
1285         else
1286                 progress_func = NULL;
1287
1288         ret = send_daemon_info_msg(wimfs_ctx->daemon_to_unmount_mq, getpid(),
1289                                    wimfs_ctx->mount_flags);
1290         if (ret != 0) {
1291                 status = ret;
1292                 goto out;
1293         }
1294
1295         if (wimfs_ctx->mount_flags & WIMLIB_MOUNT_FLAG_READWRITE) {
1296                 if (unmount_flags & WIMLIB_UNMOUNT_FLAG_COMMIT) {
1297
1298                         if (unmount_flags & WIMLIB_UNMOUNT_FLAG_NEW_IMAGE) {
1299                                 ret = renew_current_image(wimfs_ctx);
1300                                 if (ret) {
1301                                         status = ret;
1302                                         goto out;
1303                                 }
1304                         } else {
1305                                 release_extra_refcnts(wimfs_ctx);
1306                         }
1307                         INIT_LIST_HEAD(&wimfs_ctx->orig_stream_list);
1308
1309                         int write_flags = 0;
1310                         if (unmount_flags & WIMLIB_UNMOUNT_FLAG_CHECK_INTEGRITY)
1311                                 write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
1312                         if (unmount_flags & WIMLIB_UNMOUNT_FLAG_REBUILD)
1313                                 write_flags |= WIMLIB_WRITE_FLAG_REBUILD;
1314                         if (unmount_flags & WIMLIB_UNMOUNT_FLAG_RECOMPRESS)
1315                                 write_flags |= WIMLIB_WRITE_FLAG_RECOMPRESS;
1316                         status = rebuild_wim(wimfs_ctx, write_flags,
1317                                              progress_func);
1318                 }
1319         } else {
1320                 DEBUG("Read-only mount");
1321                 status = 0;
1322         }
1323
1324 out:
1325         if (wimfs_ctx->mount_flags & WIMLIB_MOUNT_FLAG_READWRITE) {
1326                 ret = delete_staging_dir(wimfs_ctx);
1327                 if (ret != 0) {
1328                         ERROR("Failed to delete the staging directory");
1329                         if (status == 0)
1330                                 status = ret;
1331                 }
1332         }
1333         wimfs_ctx->status = status;
1334         wimfs_ctx->have_status = true;
1335         return MSG_BREAK_LOOP;
1336 }
1337
1338 static int
1339 msg_daemon_info_handler(const void *_msg, void *_handler_ctx)
1340 {
1341         const struct msg_daemon_info *msg = _msg;
1342         struct unmount_msg_handler_context *handler_ctx = _handler_ctx;
1343
1344         DEBUG("Handling daemon info msg");
1345         if (msg->hdr.msg_size < sizeof(*msg))
1346                 return WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE;
1347         handler_ctx->daemon_pid = msg->daemon_pid;
1348         handler_ctx->mount_flags = msg->mount_flags;
1349         handler_ctx->hdr.timeout_seconds = 1;
1350         DEBUG("pid of daemon is %d; mount flags were %#x",
1351               handler_ctx->daemon_pid,
1352               handler_ctx->mount_flags);
1353         return 0;
1354 }
1355
1356 static int
1357 msg_write_streams_progress_handler(const void *_msg, void *_handler_ctx)
1358 {
1359         const struct msg_write_streams_progress *msg = _msg;
1360         struct unmount_msg_handler_context *handler_ctx = _handler_ctx;
1361
1362         if (msg->hdr.msg_size < sizeof(*msg))
1363                 return WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE;
1364         if (handler_ctx->progress_func) {
1365                 handler_ctx->progress_func(WIMLIB_PROGRESS_MSG_WRITE_STREAMS,
1366                                            &msg->info);
1367         }
1368         return 0;
1369 }
1370
1371 static int
1372 msg_unmount_finished_handler(const void *_msg, void *_handler_ctx)
1373 {
1374         const struct msg_unmount_finished *msg = _msg;
1375         struct unmount_msg_handler_context *handler_ctx = _handler_ctx;
1376
1377         DEBUG("Handling unmount finished message");
1378         if (msg->hdr.msg_size < sizeof(*msg))
1379                 return WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE;
1380         handler_ctx->status = msg->status;
1381         DEBUG("status is %d", handler_ctx->status);
1382         return MSG_BREAK_LOOP;
1383 }
1384
1385 static int
1386 unmount_timed_out_cb(void *_handler_ctx)
1387 {
1388         const struct unmount_msg_handler_context *handler_ctx = _handler_ctx;
1389
1390         if (handler_ctx->daemon_pid == 0 ||
1391             (kill(handler_ctx->daemon_pid, 0) != 0 && errno == ESRCH))
1392         {
1393                 ERROR("The filesystem daemon has crashed!  Changes to the "
1394                       "WIM may not have been commited.");
1395                 return WIMLIB_ERR_FILESYSTEM_DAEMON_CRASHED;
1396         }
1397
1398         DEBUG("Filesystem daemon is still alive... "
1399               "Waiting another %d seconds", handler_ctx->hdr.timeout_seconds);
1400         return 0;
1401 }
1402
1403 static int
1404 daemon_timed_out_cb(void *_handler_ctx)
1405 {
1406         ERROR("Timed out waiting for unmount request! "
1407               "Changes to the mounted WIM will not be committed.");
1408         return WIMLIB_ERR_TIMEOUT;
1409 }
1410
1411 typedef int (*msg_handler_t)(const void *_msg, void *_handler_ctx);
1412
1413 struct msg_handler_callbacks {
1414         int (*timed_out)(void * _handler_ctx);
1415         msg_handler_t msg_handlers[MSG_TYPE_MAX];
1416 };
1417
1418 static const struct msg_handler_callbacks unmount_msg_handler_callbacks = {
1419         .timed_out = unmount_timed_out_cb,
1420         .msg_handlers = {
1421                 [MSG_TYPE_DAEMON_INFO] = msg_daemon_info_handler,
1422                 [MSG_TYPE_WRITE_STREAMS_PROGRESS] = msg_write_streams_progress_handler,
1423                 [MSG_TYPE_UNMOUNT_FINISHED] = msg_unmount_finished_handler,
1424         },
1425 };
1426
1427 static const struct msg_handler_callbacks daemon_msg_handler_callbacks = {
1428         .timed_out = daemon_timed_out_cb,
1429         .msg_handlers = {
1430                 [MSG_TYPE_UNMOUNT_REQUEST] = msg_unmount_request_handler,
1431         },
1432 };
1433
1434 static int
1435 receive_message(mqd_t mq,
1436                 struct msg_handler_context_hdr *handler_ctx,
1437                 const msg_handler_t msg_handlers[],
1438                 long mailbox_size, void *mailbox)
1439 {
1440         struct timeval now;
1441         struct timespec timeout;
1442         ssize_t bytes_received;
1443         struct unmount_msg_hdr *hdr;
1444         int ret;
1445
1446         gettimeofday(&now, NULL);
1447         timeout.tv_sec = now.tv_sec + handler_ctx->timeout_seconds;
1448         timeout.tv_nsec = now.tv_usec * 1000;
1449
1450         bytes_received = mq_timedreceive(mq, mailbox,
1451                                          mailbox_size, NULL, &timeout);
1452         hdr = mailbox;
1453         if (bytes_received == -1) {
1454                 if (errno == ETIMEDOUT) {
1455                         ret = WIMLIB_ERR_TIMEOUT;
1456                 } else {
1457                         ERROR_WITH_ERRNO("mq_timedreceive()");
1458                         ret = WIMLIB_ERR_MQUEUE;
1459                 }
1460         } else if (bytes_received < sizeof(*hdr) ||
1461                    bytes_received != hdr->msg_size) {
1462                 ret = WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE;
1463         } else if (WIMLIB_VERSION_CODE < hdr->min_version) {
1464                 /*ERROR("Cannot understand the received message. "*/
1465                       /*"Please upgrade wimlib to at least v%d.%d.%d",*/
1466                       /*WIMLIB_GET_MAJOR_VERSION(hdr->min_version),*/
1467                       /*WIMLIB_GET_MINOR_VERSION(hdr->min_version),*/
1468                       /*WIMLIB_GET_PATCH_VERSION(hdr->min_version));*/
1469                 ret = MSG_VERSION_TOO_HIGH;
1470         } else if (hdr->msg_type >= MSG_TYPE_MAX) {
1471                 ret = WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE;
1472         } else if (msg_handlers[hdr->msg_type] == NULL) {
1473                 ret = WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE;
1474         } else {
1475                 ret = msg_handlers[hdr->msg_type](mailbox, handler_ctx);
1476         }
1477         return ret;
1478 }
1479
1480 static int
1481 message_loop(mqd_t mq,
1482              const struct msg_handler_callbacks *callbacks,
1483              struct msg_handler_context_hdr *handler_ctx)
1484 {
1485         static const size_t MAX_MSG_SIZE = 512;
1486         long msgsize;
1487         void *mailbox;
1488         int ret;
1489
1490         DEBUG("Entering message loop");
1491
1492         ret = get_mailbox(mq, MAX_MSG_SIZE, &msgsize, &mailbox);
1493         if (ret != 0)
1494                 return ret;
1495         while (1) {
1496                 ret = receive_message(mq, handler_ctx,
1497                                       callbacks->msg_handlers,
1498                                       msgsize, mailbox);
1499                 if (ret == 0 || ret == MSG_VERSION_TOO_HIGH) {
1500                         continue;
1501                 } else if (ret == MSG_BREAK_LOOP) {
1502                         ret = 0;
1503                         break;
1504                 } else if (ret == WIMLIB_ERR_TIMEOUT) {
1505                         if (callbacks->timed_out)
1506                                 ret = callbacks->timed_out(handler_ctx);
1507                         if (ret == 0)
1508                                 continue;
1509                         else
1510                                 break;
1511                 } else {
1512                         ERROR_WITH_ERRNO("Error communicating with "
1513                                          "filesystem daemon");
1514                         break;
1515                 }
1516         }
1517         FREE(mailbox);
1518         DEBUG("Exiting message loop");
1519         return ret;
1520 }
1521
1522 /* Execute `fusermount -u', which is installed setuid root, to unmount the WIM.
1523  *
1524  * FUSE does not yet implement synchronous unmounts.  This means that fusermount
1525  * -u will return before the filesystem daemon returns from wimfs_destroy().
1526  *  This is partly what we want, because we need to send a message from this
1527  *  process to the filesystem daemon telling whether --commit was specified or
1528  *  not.  However, after that, the unmount process must wait for the filesystem
1529  *  daemon to finish writing the WIM file.
1530  */
1531 static int
1532 execute_fusermount(const char *dir, bool lazy)
1533 {
1534         pid_t pid;
1535         int ret;
1536         int status;
1537
1538         pid = fork();
1539         if (pid == -1) {
1540                 ERROR_WITH_ERRNO("Failed to fork()");
1541                 return WIMLIB_ERR_FORK;
1542         }
1543         if (pid == 0) {
1544                 /* Child */
1545                 char *argv[10];
1546                 char **argp = argv;
1547                 *argp++ = "fusermount";
1548                 if (lazy)
1549                         *argp++ = "-z";
1550                 *argp++ = "-u";
1551                 *argp++ = (char*)dir;
1552                 *argp = NULL;
1553                 execvp("fusermount", argv);
1554                 ERROR_WITH_ERRNO("Failed to execute `fusermount'");
1555                 exit(WIMLIB_ERR_FUSERMOUNT);
1556         }
1557
1558         /* Parent */
1559         ret = waitpid(pid, &status, 0);
1560         if (ret == -1) {
1561                 ERROR_WITH_ERRNO("Failed to wait for fusermount process to "
1562                                  "terminate");
1563                 return WIMLIB_ERR_FUSERMOUNT;
1564         }
1565
1566         if (!WIFEXITED(status)) {
1567                 ERROR("'fusermount' did not terminate normally!");
1568                 return WIMLIB_ERR_FUSERMOUNT;
1569         }
1570
1571         status = WEXITSTATUS(status);
1572
1573         if (status == 0)
1574                 return 0;
1575
1576         if (status != WIMLIB_ERR_FUSERMOUNT)
1577                 return WIMLIB_ERR_FUSERMOUNT;
1578
1579         /* Try again, but with the `umount' program.  This is required on other
1580          * FUSE implementations such as FreeBSD's that do not have a
1581          * `fusermount' program. */
1582         ERROR("Falling back to 'umount'.  Note: you may need to be "
1583               "root for this to work");
1584         pid = fork();
1585         if (pid == -1) {
1586                 ERROR_WITH_ERRNO("Failed to fork()");
1587                 return WIMLIB_ERR_FORK;
1588         }
1589         if (pid == 0) {
1590                 /* Child */
1591                 char *argv[10];
1592                 char **argp = argv;
1593                 *argp++ = "umount";
1594                 if (lazy)
1595                         *argp++ = "-l";
1596                 *argp++ = (char*)dir;
1597                 *argp = NULL;
1598                 execvp("umount", argv);
1599                 ERROR_WITH_ERRNO("Failed to execute `umount'");
1600                 exit(WIMLIB_ERR_FUSERMOUNT);
1601         }
1602
1603         /* Parent */
1604         ret = waitpid(pid, &status, 0);
1605         if (ret == -1) {
1606                 ERROR_WITH_ERRNO("Failed to wait for `umount' process to "
1607                                  "terminate");
1608                 return WIMLIB_ERR_FUSERMOUNT;
1609         }
1610
1611         if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1612                 ERROR("`umount' did not successfully complete");
1613                 return WIMLIB_ERR_FUSERMOUNT;
1614         }
1615
1616         return 0;
1617 }
1618
1619 static int
1620 wimfs_chmod(const char *path, mode_t mask)
1621 {
1622         struct wim_dentry *dentry;
1623         struct wimfs_context *ctx = wimfs_get_context();
1624         int ret;
1625
1626         if (!(ctx->mount_flags & WIMLIB_MOUNT_FLAG_UNIX_DATA))
1627                 return -EPERM;
1628
1629         ret = wim_pathname_to_stream(ctx->wim, path, LOOKUP_FLAG_DIRECTORY_OK,
1630                                      &dentry, NULL, NULL);
1631         if (ret)
1632                 return ret;
1633
1634         ret = inode_set_unix_data(dentry->d_inode, ctx->default_uid,
1635                                   ctx->default_gid, mask,
1636                                   ctx->wim->lookup_table, UNIX_DATA_MODE);
1637         return ret ? -ENOMEM : 0;
1638 }
1639
1640 static int
1641 wimfs_chown(const char *path, uid_t uid, gid_t gid)
1642 {
1643         struct wim_dentry *dentry;
1644         struct wimfs_context *ctx = wimfs_get_context();
1645         int ret;
1646
1647         if (!(ctx->mount_flags & WIMLIB_MOUNT_FLAG_UNIX_DATA))
1648                 return -EPERM;
1649
1650         ret = wim_pathname_to_stream(ctx->wim, path, LOOKUP_FLAG_DIRECTORY_OK,
1651                                      &dentry, NULL, NULL);
1652         if (ret)
1653                 return ret;
1654
1655         ret = inode_set_unix_data(dentry->d_inode, uid, gid,
1656                                   inode_default_unix_mode(dentry->d_inode),
1657                                   ctx->wim->lookup_table,
1658                                   UNIX_DATA_UID | UNIX_DATA_GID);
1659         return ret ? -ENOMEM : 0;
1660 }
1661
1662 /* Called when the filesystem is unmounted. */
1663 static void
1664 wimfs_destroy(void *p)
1665 {
1666         struct wimfs_context *wimfs_ctx = wimfs_get_context();
1667         if (open_message_queues(wimfs_ctx, true) == 0) {
1668                 struct daemon_msg_handler_context handler_ctx = {
1669                         .hdr = {
1670                                 .timeout_seconds = 5,
1671                         },
1672                         .wimfs_ctx = wimfs_ctx,
1673                 };
1674                 message_loop(wimfs_ctx->unmount_to_daemon_mq,
1675                              &daemon_msg_handler_callbacks,
1676                              &handler_ctx.hdr);
1677         }
1678 }
1679
1680 static int
1681 wimfs_fgetattr(const char *path, struct stat *stbuf,
1682                struct fuse_file_info *fi)
1683 {
1684         struct wimfs_fd *fd = (struct wimfs_fd*)(uintptr_t)fi->fh;
1685         return inode_to_stbuf(fd->f_inode, fd->f_lte, stbuf);
1686 }
1687
1688 static int
1689 wimfs_ftruncate(const char *path, off_t size, struct fuse_file_info *fi)
1690 {
1691         struct wimfs_fd *fd = (struct wimfs_fd*)(uintptr_t)fi->fh;
1692         int ret = ftruncate(fd->staging_fd.fd, size);
1693         if (ret)
1694                 return -errno;
1695         touch_inode(fd->f_inode);
1696         fd->f_lte->size = size;
1697         return 0;
1698 }
1699
1700 /*
1701  * Fills in a `struct stat' that corresponds to a file or directory in the WIM.
1702  */
1703 static int
1704 wimfs_getattr(const char *path, struct stat *stbuf)
1705 {
1706         struct wim_dentry *dentry;
1707         struct wim_lookup_table_entry *lte;
1708         int ret;
1709         struct wimfs_context *ctx = wimfs_get_context();
1710
1711         ret = wim_pathname_to_stream(ctx->wim, path,
1712                                      get_lookup_flags(ctx) |
1713                                         LOOKUP_FLAG_DIRECTORY_OK,
1714                                      &dentry, &lte, NULL);
1715         if (ret != 0)
1716                 return ret;
1717         return inode_to_stbuf(dentry->d_inode, lte, stbuf);
1718 }
1719
1720 #ifdef ENABLE_XATTR
1721 /* Read an alternate data stream through the XATTR interface, or get its size */
1722 static int
1723 wimfs_getxattr(const char *path, const char *name, char *value,
1724                size_t size)
1725 {
1726         int ret;
1727         struct wim_inode *inode;
1728         struct wim_ads_entry *ads_entry;
1729         u64 stream_size;
1730         struct wim_lookup_table_entry *lte;
1731         struct wimfs_context *ctx = wimfs_get_context();
1732
1733         if (!(ctx->mount_flags & WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR))
1734                 return -ENOTSUP;
1735
1736         if (strlen(name) <= 5 || memcmp(name, "user.", 5) != 0)
1737                 return -ENOATTR;
1738         name += 5;
1739
1740         inode = wim_pathname_to_inode(ctx->wim, path);
1741         if (!inode)
1742                 return -errno;
1743
1744         ads_entry = inode_get_ads_entry(inode, name, NULL);
1745         if (!ads_entry)
1746                 return -ENOATTR;
1747
1748         lte = ads_entry->lte;
1749         stream_size = lte->size;
1750
1751         if (size == 0)
1752                 return stream_size;
1753
1754         if (stream_size > size)
1755                 return -ERANGE;
1756
1757         ret = read_full_stream_into_buf(lte, value);
1758         if (ret) {
1759                 if (errno)
1760                         return -errno;
1761                 else
1762                         return -EIO;
1763         }
1764         return stream_size;
1765 }
1766 #endif
1767
1768 /* Create a hard link */
1769 static int
1770 wimfs_link(const char *to, const char *from)
1771 {
1772         struct wim_dentry *from_dentry, *from_dentry_parent;
1773         const char *link_name;
1774         struct wim_inode *inode;
1775         WIMStruct *wim = wimfs_get_WIMStruct();
1776         int ret;
1777
1778         inode = wim_pathname_to_inode(wim, to);
1779         if (!inode)
1780                 return -errno;
1781
1782         if (inode->i_attributes & (FILE_ATTRIBUTE_DIRECTORY |
1783                                    FILE_ATTRIBUTE_REPARSE_POINT))
1784                 return -EPERM;
1785
1786         from_dentry_parent = get_parent_dentry(wim, from, WIMLIB_CASE_SENSITIVE);
1787         if (!from_dentry_parent)
1788                 return -errno;
1789         if (!dentry_is_directory(from_dentry_parent))
1790                 return -ENOTDIR;
1791
1792         link_name = path_basename(from);
1793         if (get_dentry_child_with_name(from_dentry_parent, link_name,
1794                                        WIMLIB_CASE_SENSITIVE))
1795                 return -EEXIST;
1796
1797         ret = new_dentry(link_name, &from_dentry);
1798         if (ret)
1799                 return -ENOMEM;
1800
1801         inode->i_nlink++;
1802         inode_ref_streams(inode);
1803         from_dentry->d_inode = inode;
1804         inode_add_dentry(from_dentry, inode);
1805         dentry_add_child(from_dentry_parent, from_dentry);
1806         return 0;
1807 }
1808
1809 #ifdef ENABLE_XATTR
1810 static int
1811 wimfs_listxattr(const char *path, char *list, size_t size)
1812 {
1813         size_t needed_size;
1814         struct wim_inode *inode;
1815         struct wimfs_context *ctx = wimfs_get_context();
1816         u16 i;
1817         char *p;
1818         bool size_only = (size == 0);
1819
1820         if (!(ctx->mount_flags & WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR))
1821                 return -ENOTSUP;
1822
1823         /* List alternate data streams, or get the list size */
1824
1825         inode = wim_pathname_to_inode(ctx->wim, path);
1826         if (!inode)
1827                 return -errno;
1828
1829         p = list;
1830         for (i = 0; i < inode->i_num_ads; i++) {
1831
1832                 if (!ads_entry_is_named_stream(&inode->i_ads_entries[i]))
1833                         continue;
1834
1835                 char *stream_name_mbs;
1836                 size_t stream_name_mbs_nbytes;
1837                 int ret;
1838
1839                 ret = utf16le_to_tstr(inode->i_ads_entries[i].stream_name,
1840                                       inode->i_ads_entries[i].stream_name_nbytes,
1841                                       &stream_name_mbs,
1842                                       &stream_name_mbs_nbytes);
1843                 if (ret)
1844                         return -errno;
1845
1846                 needed_size = stream_name_mbs_nbytes + 6;
1847                 if (!size_only) {
1848                         if (needed_size > size) {
1849                                 FREE(stream_name_mbs);
1850                                 return -ERANGE;
1851                         }
1852                         sprintf(p, "user.%s", stream_name_mbs);
1853                         size -= needed_size;
1854                 }
1855                 p += needed_size;
1856                 FREE(stream_name_mbs);
1857         }
1858         return p - list;
1859 }
1860 #endif
1861
1862
1863 /* Create a directory in the WIM image. */
1864 static int
1865 wimfs_mkdir(const char *path, mode_t mode)
1866 {
1867         return create_dentry(fuse_get_context(), path, mode | S_IFDIR,
1868                              FILE_ATTRIBUTE_DIRECTORY, NULL);
1869 }
1870
1871 /* Create a regular file or alternate data stream in the WIM image. */
1872 static int
1873 wimfs_mknod(const char *path, mode_t mode, dev_t rdev)
1874 {
1875         const char *stream_name;
1876         struct fuse_context *fuse_ctx = fuse_get_context();
1877         struct wimfs_context *wimfs_ctx = WIMFS_CTX(fuse_ctx);
1878
1879         if (!S_ISREG(mode))
1880                 return -EPERM;
1881
1882         if ((wimfs_ctx->mount_flags & WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS)
1883              && (stream_name = path_stream_name(path))) {
1884                 /* Make an alternate data stream */
1885                 struct wim_ads_entry *new_entry;
1886                 struct wim_inode *inode;
1887
1888                 char *p = (char*)stream_name - 1;
1889                 wimlib_assert(*p == ':');
1890                 *p = '\0';
1891
1892                 inode = wim_pathname_to_inode(wimfs_ctx->wim, path);
1893                 if (!inode)
1894                         return -errno;
1895                 if (inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT)
1896                         return -ENOENT;
1897                 if (inode_get_ads_entry(inode, stream_name, NULL))
1898                         return -EEXIST;
1899                 new_entry = inode_add_ads(inode, stream_name);
1900                 if (!new_entry)
1901                         return -ENOMEM;
1902                 return 0;
1903         } else {
1904                 /* Make a normal file (not an alternate data stream) */
1905                 return create_dentry(fuse_ctx, path, mode | S_IFREG,
1906                                      FILE_ATTRIBUTE_NORMAL, NULL);
1907         }
1908 }
1909
1910 /* Open a file.  */
1911 static int
1912 wimfs_open(const char *path, struct fuse_file_info *fi)
1913 {
1914         struct wim_dentry *dentry;
1915         struct wim_lookup_table_entry *lte;
1916         int ret;
1917         struct wimfs_fd *fd;
1918         struct wim_inode *inode;
1919         u16 stream_idx;
1920         u32 stream_id;
1921         struct wimfs_context *ctx = wimfs_get_context();
1922         struct wim_lookup_table_entry **back_ptr;
1923
1924         ret = wim_pathname_to_stream(ctx->wim, path, get_lookup_flags(ctx),
1925                                      &dentry, &lte, &stream_idx);
1926         if (ret)
1927                 return ret;
1928
1929         inode = dentry->d_inode;
1930
1931         if (stream_idx == 0) {
1932                 stream_id = 0;
1933                 back_ptr = &inode->i_lte;
1934         } else {
1935                 stream_id = inode->i_ads_entries[stream_idx - 1].stream_id;
1936                 back_ptr = &inode->i_ads_entries[stream_idx - 1].lte;
1937         }
1938
1939         /* The file resource may be in the staging directory (read-write mounts
1940          * only) or in the WIM.  If it's in the staging directory, we need to
1941          * open a native file descriptor for the corresponding file.  Otherwise,
1942          * we can read the file resource directly from the WIM file if we are
1943          * opening it read-only, but we need to extract the resource to the
1944          * staging directory if we are opening it writable. */
1945
1946         if (flags_writable(fi->flags) &&
1947             (!lte || lte->resource_location != RESOURCE_IN_STAGING_FILE)) {
1948                 u64 size = (lte) ? lte->size : 0;
1949                 ret = extract_resource_to_staging_dir(inode, stream_id,
1950                                                       &lte, size, ctx);
1951                 if (ret)
1952                         return ret;
1953                 *back_ptr = lte;
1954         }
1955
1956         ret = alloc_wimfs_fd(inode, stream_id, lte, &fd);
1957         if (ret)
1958                 return ret;
1959
1960         if (lte && lte->resource_location == RESOURCE_IN_STAGING_FILE) {
1961                 int raw_fd;
1962
1963                 raw_fd = open(lte->staging_file_name, fi->flags);
1964                 if (raw_fd < 0) {
1965                         int errno_save = errno;
1966                         close_wimfs_fd(fd);
1967                         return -errno_save;
1968                 }
1969                 filedes_init(&fd->staging_fd, raw_fd);
1970         }
1971         fi->fh = (uintptr_t)fd;
1972         return 0;
1973 }
1974
1975 /* Opens a directory. */
1976 static int
1977 wimfs_opendir(const char *path, struct fuse_file_info *fi)
1978 {
1979         struct wim_inode *inode;
1980         int ret;
1981         struct wimfs_fd *fd = NULL;
1982         struct wimfs_context *ctx = wimfs_get_context();
1983         WIMStruct *wim = ctx->wim;
1984
1985         inode = wim_pathname_to_inode(wim, path);
1986         if (!inode)
1987                 return -errno;
1988         if (!inode_is_directory(inode))
1989                 return -ENOTDIR;
1990         ret = alloc_wimfs_fd(inode, 0, NULL, &fd);
1991         fi->fh = (uintptr_t)fd;
1992         return ret;
1993 }
1994
1995
1996 /*
1997  * Read data from a file in the WIM or in the staging directory.
1998  */
1999 static int
2000 wimfs_read(const char *path, char *buf, size_t size,
2001            off_t offset, struct fuse_file_info *fi)
2002 {
2003         struct wimfs_fd *fd = (struct wimfs_fd*)(uintptr_t)fi->fh;
2004         ssize_t ret;
2005         u64 stream_size;
2006
2007         if (!fd)
2008                 return -EBADF;
2009
2010         if (size == 0)
2011                 return 0;
2012
2013         if (fd->f_lte)
2014                 stream_size = fd->f_lte->size;
2015         else
2016                 stream_size = 0;
2017
2018         if (offset > stream_size)
2019                 return -EOVERFLOW;
2020
2021         size = min(size, stream_size - offset);
2022         if (size == 0)
2023                 return 0;
2024
2025         switch (fd->f_lte->resource_location) {
2026         case RESOURCE_IN_STAGING_FILE:
2027                 ret = raw_pread(&fd->staging_fd, buf, size, offset);
2028                 if (ret == -1)
2029                         ret = -errno;
2030                 break;
2031         case RESOURCE_IN_WIM:
2032                 if (read_partial_wim_stream_into_buf(fd->f_lte, size,
2033                                                      offset, buf))
2034                         ret = errno ? -errno : -EIO;
2035                 else
2036                         ret = size;
2037                 break;
2038         case RESOURCE_IN_ATTACHED_BUFFER:
2039                 memcpy(buf, fd->f_lte->attached_buffer + offset, size);
2040                 ret = size;
2041                 break;
2042         default:
2043                 ERROR("Invalid resource location");
2044                 ret = -EIO;
2045                 break;
2046         }
2047         return ret;
2048 }
2049
2050 /* Fills in the entries of the directory specified by @path using the
2051  * FUSE-provided function @filler.  */
2052 static int
2053 wimfs_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
2054               off_t offset, struct fuse_file_info *fi)
2055 {
2056         struct wimfs_fd *fd = (struct wimfs_fd*)(uintptr_t)fi->fh;
2057         struct wim_inode *inode;
2058         struct wim_dentry *child;
2059         int ret;
2060
2061         if (!fd)
2062                 return -EBADF;
2063
2064         inode = fd->f_inode;
2065
2066         ret = filler(buf, ".", NULL, 0);
2067         if (ret)
2068                 return ret;
2069         ret = filler(buf, "..", NULL, 0);
2070         if (ret)
2071                 return ret;
2072
2073         for_inode_child(child, inode) {
2074                 char *file_name_mbs;
2075                 size_t file_name_mbs_nbytes;
2076
2077                 ret = utf16le_to_tstr(child->file_name,
2078                                       child->file_name_nbytes,
2079                                       &file_name_mbs,
2080                                       &file_name_mbs_nbytes);
2081                 if (ret)
2082                         return -errno;
2083
2084                 ret = filler(buf, file_name_mbs, NULL, 0);
2085                 FREE(file_name_mbs);
2086                 if (ret)
2087                         return ret;
2088         }
2089         return 0;
2090 }
2091
2092
2093 static int
2094 wimfs_readlink(const char *path, char *buf, size_t buf_len)
2095 {
2096         struct wimfs_context *ctx = wimfs_get_context();
2097         struct wim_inode *inode = wim_pathname_to_inode(ctx->wim, path);
2098         int ret;
2099         if (!inode)
2100                 return -errno;
2101         if (!inode_is_symlink(inode))
2102                 return -EINVAL;
2103         if (buf_len == 0)
2104                 return -EINVAL;
2105         ret = wim_inode_readlink(inode, buf, buf_len - 1, NULL);
2106         if (ret >= 0) {
2107                 wimlib_assert(ret <= buf_len - 1);
2108                 buf[ret] = '\0';
2109                 ret = 0;
2110         } else if (ret == -ENAMETOOLONG) {
2111                 buf[buf_len - 1] = '\0';
2112         }
2113         return ret;
2114 }
2115
2116 /* Close a file. */
2117 static int
2118 wimfs_release(const char *path, struct fuse_file_info *fi)
2119 {
2120         struct wimfs_fd *fd = (struct wimfs_fd*)(uintptr_t)fi->fh;
2121         return close_wimfs_fd(fd);
2122 }
2123
2124 /* Close a directory */
2125 static int
2126 wimfs_releasedir(const char *path, struct fuse_file_info *fi)
2127 {
2128         struct wimfs_fd *fd = (struct wimfs_fd*)(uintptr_t)fi->fh;
2129         return close_wimfs_fd(fd);
2130 }
2131
2132 #ifdef ENABLE_XATTR
2133 /* Remove an alternate data stream through the XATTR interface */
2134 static int
2135 wimfs_removexattr(const char *path, const char *name)
2136 {
2137         struct wim_inode *inode;
2138         struct wim_ads_entry *ads_entry;
2139         u16 ads_idx;
2140         struct wimfs_context *ctx = wimfs_get_context();
2141
2142         if (!(ctx->mount_flags & WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR))
2143                 return -ENOTSUP;
2144
2145         if (strlen(name) < 5 || memcmp(name, "user.", 5) != 0)
2146                 return -ENOATTR;
2147         name += 5;
2148
2149         inode = wim_pathname_to_inode(ctx->wim, path);
2150         if (!inode)
2151                 return -errno;
2152
2153         ads_entry = inode_get_ads_entry(inode, name, &ads_idx);
2154         if (!ads_entry)
2155                 return -ENOATTR;
2156         inode_remove_ads(inode, ads_idx, ctx->wim->lookup_table);
2157         return 0;
2158 }
2159 #endif
2160
2161 /* Renames a file or directory.  See rename (3) */
2162 static int
2163 wimfs_rename(const char *from, const char *to)
2164 {
2165         return rename_wim_path(wimfs_get_WIMStruct(), from, to,
2166                                WIMLIB_CASE_SENSITIVE);
2167 }
2168
2169 /* Remove a directory */
2170 static int
2171 wimfs_rmdir(const char *path)
2172 {
2173         struct wim_dentry *dentry;
2174         WIMStruct *wim = wimfs_get_WIMStruct();
2175
2176         dentry = get_dentry(wim, path, WIMLIB_CASE_SENSITIVE);
2177         if (!dentry)
2178                 return -errno;
2179
2180         if (!dentry_is_directory(dentry))
2181                 return -ENOTDIR;
2182
2183         if (dentry_has_children(dentry))
2184                 return -ENOTEMPTY;
2185
2186         remove_dentry(dentry, wim->lookup_table);
2187         return 0;
2188 }
2189
2190 #ifdef ENABLE_XATTR
2191 /* Write an alternate data stream through the XATTR interface */
2192 static int
2193 wimfs_setxattr(const char *path, const char *name,
2194                const char *value, size_t size, int flags)
2195 {
2196         struct wim_ads_entry *existing_ads_entry;
2197         struct wim_inode *inode;
2198         u16 ads_idx;
2199         struct wimfs_context *ctx = wimfs_get_context();
2200         int ret;
2201
2202         if (!(ctx->mount_flags & WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR))
2203                 return -ENOTSUP;
2204
2205         if (strlen(name) <= 5 || memcmp(name, "user.", 5) != 0)
2206                 return -ENOATTR;
2207         name += 5;
2208
2209         inode = wim_pathname_to_inode(ctx->wim, path);
2210         if (!inode)
2211                 return -errno;
2212
2213         existing_ads_entry = inode_get_ads_entry(inode, name, &ads_idx);
2214         if (existing_ads_entry) {
2215                 if (flags & XATTR_CREATE)
2216                         return -EEXIST;
2217         } else {
2218                 if (flags & XATTR_REPLACE)
2219                         return -ENOATTR;
2220         }
2221
2222         ret = inode_add_ads_with_data(inode, name, value,
2223                                       size, ctx->wim->lookup_table);
2224         if (ret == 0) {
2225                 if (existing_ads_entry)
2226                         inode_remove_ads(inode, ads_idx, ctx->wim->lookup_table);
2227         } else {
2228                 ret = -ENOMEM;
2229         }
2230         return ret;
2231 }
2232 #endif
2233
2234 static int
2235 wimfs_symlink(const char *to, const char *from)
2236 {
2237         struct fuse_context *fuse_ctx = fuse_get_context();
2238         struct wimfs_context *wimfs_ctx = WIMFS_CTX(fuse_ctx);
2239         struct wim_dentry *dentry;
2240         int ret;
2241
2242         ret = create_dentry(fuse_ctx, from, S_IFLNK | 0777,
2243                             FILE_ATTRIBUTE_REPARSE_POINT, &dentry);
2244         if (ret == 0) {
2245                 dentry->d_inode->i_reparse_tag = WIM_IO_REPARSE_TAG_SYMLINK;
2246                 ret = wim_inode_set_symlink(dentry->d_inode, to,
2247                                             wimfs_ctx->wim->lookup_table);
2248                 if (ret) {
2249                         remove_dentry(dentry, wimfs_ctx->wim->lookup_table);
2250                         if (ret == WIMLIB_ERR_NOMEM)
2251                                 ret = -ENOMEM;
2252                         else
2253                                 ret = -EIO;
2254                 }
2255         }
2256         return ret;
2257 }
2258
2259
2260 /* Reduce the size of a file */
2261 static int
2262 wimfs_truncate(const char *path, off_t size)
2263 {
2264         struct wim_dentry *dentry;
2265         struct wim_lookup_table_entry *lte;
2266         int ret;
2267         u16 stream_idx;
2268         u32 stream_id;
2269         struct wim_inode *inode;
2270         struct wimfs_context *ctx = wimfs_get_context();
2271
2272         ret = wim_pathname_to_stream(ctx->wim, path, get_lookup_flags(ctx),
2273                                      &dentry, &lte, &stream_idx);
2274
2275         if (ret != 0)
2276                 return ret;
2277
2278         if (lte == NULL && size == 0)
2279                 return 0;
2280
2281         if (lte != NULL && lte->resource_location == RESOURCE_IN_STAGING_FILE) {
2282                 ret = truncate(lte->staging_file_name, size);
2283                 if (ret)
2284                         ret = -errno;
2285                 else
2286                         lte->size = size;
2287         } else {
2288                 /* File in WIM.  Extract it to the staging directory, but only
2289                  * the first @size bytes of it. */
2290                 struct wim_lookup_table_entry **back_ptr;
2291
2292                 inode = dentry->d_inode;
2293                 if (stream_idx == 0) {
2294                         stream_id = 0;
2295                         back_ptr = &inode->i_lte;
2296                 } else {
2297                         stream_id = inode->i_ads_entries[stream_idx - 1].stream_id;
2298                         back_ptr = &inode->i_ads_entries[stream_idx - 1].lte;
2299                 }
2300                 ret = extract_resource_to_staging_dir(inode, stream_id,
2301                                                       &lte, size, ctx);
2302                 *back_ptr = lte;
2303         }
2304         return ret;
2305 }
2306
2307 /* Unlink a non-directory or alternate data stream */
2308 static int
2309 wimfs_unlink(const char *path)
2310 {
2311         struct wim_dentry *dentry;
2312         struct wim_lookup_table_entry *lte;
2313         int ret;
2314         u16 stream_idx;
2315         struct wimfs_context *ctx = wimfs_get_context();
2316
2317         ret = wim_pathname_to_stream(ctx->wim, path, get_lookup_flags(ctx),
2318                                      &dentry, &lte, &stream_idx);
2319
2320         if (ret != 0)
2321                 return ret;
2322
2323         if (inode_stream_name_nbytes(dentry->d_inode, stream_idx) == 0)
2324                 remove_dentry(dentry, ctx->wim->lookup_table);
2325         else
2326                 inode_remove_ads(dentry->d_inode, stream_idx - 1,
2327                                  ctx->wim->lookup_table);
2328         return 0;
2329 }
2330
2331 #ifdef HAVE_UTIMENSAT
2332 /*
2333  * Change the timestamp on a file dentry.
2334  *
2335  * Note that alternate data streams do not have their own timestamps.
2336  */
2337 static int
2338 wimfs_utimens(const char *path, const struct timespec tv[2])
2339 {
2340         struct wim_inode *inode;
2341         WIMStruct *wim = wimfs_get_WIMStruct();
2342
2343         inode = wim_pathname_to_inode(wim, path);
2344         if (!inode)
2345                 return -errno;
2346
2347         if (tv[0].tv_nsec != UTIME_OMIT) {
2348                 if (tv[0].tv_nsec == UTIME_NOW)
2349                         inode->i_last_access_time = get_wim_timestamp();
2350                 else
2351                         inode->i_last_access_time = timespec_to_wim_timestamp(tv[0]);
2352         }
2353         if (tv[1].tv_nsec != UTIME_OMIT) {
2354                 if (tv[1].tv_nsec == UTIME_NOW)
2355                         inode->i_last_write_time = get_wim_timestamp();
2356                 else
2357                         inode->i_last_write_time = timespec_to_wim_timestamp(tv[1]);
2358         }
2359         return 0;
2360 }
2361 #else /* HAVE_UTIMENSAT */
2362 static int
2363 wimfs_utime(const char *path, struct utimbuf *times)
2364 {
2365         struct wim_inode *inode;
2366         WIMStruct *wim = wimfs_get_WIMStruct();
2367
2368         inode = wim_pathname_to_inode(wim, path);
2369         if (!inode)
2370                 return -errno;
2371
2372         inode->i_last_write_time = unix_timestamp_to_wim(times->modtime);
2373         inode->i_last_access_time = unix_timestamp_to_wim(times->actime);
2374         return 0;
2375 }
2376 #endif /* !HAVE_UTIMENSAT */
2377
2378 /* Writes to a file in the WIM filesystem.
2379  * It may be an alternate data stream, but here we don't even notice because we
2380  * just get a lookup table entry. */
2381 static int
2382 wimfs_write(const char *path, const char *buf, size_t size,
2383             off_t offset, struct fuse_file_info *fi)
2384 {
2385         struct wimfs_fd *fd = (struct wimfs_fd*)(uintptr_t)fi->fh;
2386         int ret;
2387
2388         if (!fd)
2389                 return -EBADF;
2390
2391         wimlib_assert(fd->f_lte != NULL);
2392         wimlib_assert(fd->f_lte->staging_file_name != NULL);
2393         wimlib_assert(filedes_valid(&fd->staging_fd));
2394         wimlib_assert(fd->f_inode != NULL);
2395
2396         /* Write the data. */
2397         ret = raw_pwrite(&fd->staging_fd, buf, size, offset);
2398         if (ret == -1)
2399                 return -errno;
2400
2401         /* Update file size */
2402         if (offset + size > fd->f_lte->size) {
2403                 DEBUG("Update file size %"PRIu64 " => %"PRIu64"",
2404                       fd->f_lte->size, offset + size);
2405                 fd->f_lte->size = offset + size;
2406         }
2407
2408         /* Update timestamps */
2409         touch_inode(fd->f_inode);
2410         return ret;
2411 }
2412
2413 static struct fuse_operations wimfs_operations = {
2414         .chmod       = wimfs_chmod,
2415         .chown       = wimfs_chown,
2416         .destroy     = wimfs_destroy,
2417         .fgetattr    = wimfs_fgetattr,
2418         .ftruncate   = wimfs_ftruncate,
2419         .getattr     = wimfs_getattr,
2420 #ifdef ENABLE_XATTR
2421         .getxattr    = wimfs_getxattr,
2422 #endif
2423         .link        = wimfs_link,
2424 #ifdef ENABLE_XATTR
2425         .listxattr   = wimfs_listxattr,
2426 #endif
2427         .mkdir       = wimfs_mkdir,
2428         .mknod       = wimfs_mknod,
2429         .open        = wimfs_open,
2430         .opendir     = wimfs_opendir,
2431         .read        = wimfs_read,
2432         .readdir     = wimfs_readdir,
2433         .readlink    = wimfs_readlink,
2434         .release     = wimfs_release,
2435         .releasedir  = wimfs_releasedir,
2436 #ifdef ENABLE_XATTR
2437         .removexattr = wimfs_removexattr,
2438 #endif
2439         .rename      = wimfs_rename,
2440         .rmdir       = wimfs_rmdir,
2441 #ifdef ENABLE_XATTR
2442         .setxattr    = wimfs_setxattr,
2443 #endif
2444         .symlink     = wimfs_symlink,
2445         .truncate    = wimfs_truncate,
2446         .unlink      = wimfs_unlink,
2447 #ifdef HAVE_UTIMENSAT
2448         .utimens     = wimfs_utimens,
2449 #else
2450         .utime       = wimfs_utime,
2451 #endif
2452         .write       = wimfs_write,
2453
2454         /* wimfs keeps file descriptor structures (struct wimfs_fd), so there is
2455          * no need to have the file path provided on operations such as read()
2456          * where only the file descriptor is needed. */
2457 #if FUSE_MAJOR_VERSION > 2 || (FUSE_MAJOR_VERSION == 2 && FUSE_MINOR_VERSION >= 8)
2458         .flag_nullpath_ok = 1,
2459 #endif
2460 #if FUSE_MAJOR_VERSION > 2 || (FUSE_MAJOR_VERSION == 2 && FUSE_MINOR_VERSION >= 9)
2461         .flag_nopath = 1,
2462         .flag_utime_omit_ok = 1,
2463 #endif
2464 };
2465
2466
2467 /* API function documented in wimlib.h  */
2468 WIMLIBAPI int
2469 wimlib_mount_image(WIMStruct *wim, int image, const char *dir,
2470                    int mount_flags, const char *staging_dir)
2471 {
2472         int argc;
2473         char *argv[16];
2474         int ret;
2475         char *dir_copy;
2476         struct wim_image_metadata *imd;
2477         struct wimfs_context ctx;
2478         struct wim_inode *inode;
2479
2480         DEBUG("Mount: wim = %p, image = %d, dir = %s, flags = %d, ",
2481               wim, image, dir, mount_flags);
2482
2483         if (!wim || !dir)
2484                 return WIMLIB_ERR_INVALID_PARAM;
2485
2486         if (mount_flags & ~(WIMLIB_MOUNT_FLAG_READWRITE |
2487                             WIMLIB_MOUNT_FLAG_DEBUG |
2488                             WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_NONE |
2489                             WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR |
2490                             WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS |
2491                             WIMLIB_MOUNT_FLAG_UNIX_DATA |
2492                             WIMLIB_MOUNT_FLAG_ALLOW_OTHER))
2493                 return WIMLIB_ERR_INVALID_PARAM;
2494
2495         if (mount_flags & WIMLIB_MOUNT_FLAG_READWRITE) {
2496                 ret = can_delete_from_wim(wim);
2497                 if (ret)
2498                         return ret;
2499         }
2500
2501         ret = select_wim_image(wim, image);
2502         if (ret)
2503                 return ret;
2504
2505         DEBUG("Selected image %d", image);
2506
2507         imd = wim_get_current_image_metadata(wim);
2508
2509         if (imd->modified) {
2510                 /* wimfs_read() only supports a limited number of stream
2511                  * locations, not including RESOURCE_IN_FILE_ON_DISK,
2512                  * RESOURCE_IN_NTFS_VOLUME, etc. that might appear if files were
2513                  * added to the WIM image.  */
2514                 ERROR("Cannot mount an image with newly added files!");
2515                 return WIMLIB_ERR_INVALID_PARAM;
2516         }
2517
2518         if (mount_flags & WIMLIB_MOUNT_FLAG_READWRITE) {
2519                 ret = lock_wim(wim, wim->in_fd.fd);
2520                 if (ret)
2521                         return ret;
2522         }
2523
2524         /* Use default stream interface if one was not specified */
2525         if (!(mount_flags & (WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_NONE |
2526                        WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR |
2527                        WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS)))
2528                 mount_flags |= WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR;
2529
2530         DEBUG("Initializing struct wimfs_context");
2531         init_wimfs_context(&ctx);
2532         ctx.wim = wim;
2533         ctx.mount_flags = mount_flags;
2534         ctx.image_inode_list = &imd->inode_list;
2535         ctx.default_uid = getuid();
2536         ctx.default_gid = getgid();
2537         wimlib_assert(list_empty(&imd->unhashed_streams));
2538         if (mount_flags & WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS)
2539                 ctx.default_lookup_flags = LOOKUP_FLAG_ADS_OK;
2540
2541         DEBUG("Unlinking message queues in case they already exist");
2542         ret = set_message_queue_names(&ctx, dir);
2543         if (ret)
2544                 goto out_unlock;
2545         unlink_message_queues(&ctx);
2546
2547         DEBUG("Preparing arguments to fuse_main()");
2548
2549         dir_copy = STRDUP(dir);
2550         if (!dir_copy) {
2551                 ret = WIMLIB_ERR_NOMEM;
2552                 goto out_free_message_queue_names;
2553         }
2554
2555         argc = 0;
2556         argv[argc++] = "wimlib";
2557         argv[argc++] = dir_copy;
2558
2559         /* disable multi-threaded operation */
2560         argv[argc++] = "-s";
2561
2562         if (mount_flags & WIMLIB_MOUNT_FLAG_DEBUG)
2563                 argv[argc++] = "-d";
2564
2565         /*
2566          * We provide the use_ino option to the FUSE mount because we are going
2567          * to assign inode numbers ourselves. */
2568         char optstring[256] =
2569                 "use_ino"
2570                 ",subtype=wimfs"
2571                 ",attr_timeout=0"
2572 #if FUSE_MAJOR_VERSION > 2 || (FUSE_MAJOR_VERSION == 2 && FUSE_MINOR_VERSION >= 8)
2573                 ",hard_remove"
2574 #endif
2575                 ",default_permissions"
2576                 ;
2577         argv[argc++] = "-o";
2578         argv[argc++] = optstring;
2579         if ((mount_flags & WIMLIB_MOUNT_FLAG_READWRITE)) {
2580                 /* Read-write mount.  Make the staging directory */
2581                 ret = make_staging_dir(&ctx, staging_dir);
2582                 if (ret)
2583                         goto out_free_dir_copy;
2584         } else {
2585                 /* Read-only mount */
2586                 strcat(optstring, ",ro");
2587         }
2588         if (mount_flags & WIMLIB_MOUNT_FLAG_ALLOW_OTHER)
2589                 strcat(optstring, ",allow_other");
2590         argv[argc] = NULL;
2591
2592 #ifdef ENABLE_DEBUG
2593         {
2594                 int i;
2595                 DEBUG("FUSE command line (argc = %d): ", argc);
2596                 for (i = 0; i < argc; i++) {
2597                         fputs(argv[i], stdout);
2598                         putchar(' ');
2599                 }
2600                 putchar('\n');
2601                 fflush(stdout);
2602         }
2603 #endif
2604
2605         /* Assign inode numbers.  Also, if a read-write mount was requested,
2606          * mark the dentry tree as modified, and add each stream referenced by
2607          * files in the image to a list and preemptively double the number of
2608          * references to each.  The latter is done to allow implementing the
2609          * WIMLIB_UNMOUNT_FLAG_NEW_IMAGE semantics.  */
2610         ctx.next_ino = 1;
2611         INIT_LIST_HEAD(&ctx.orig_stream_list);
2612         if (mount_flags & WIMLIB_MOUNT_FLAG_READWRITE) {
2613                 imd->modified = 1;
2614                 image_for_each_inode(inode, imd) {
2615                         inode->i_ino = ctx.next_ino++;
2616                         for (unsigned i = 0; i <= inode->i_num_ads; i++) {
2617                                 struct wim_lookup_table_entry *lte;
2618
2619                                 lte = inode_stream_lte(inode, i, wim->lookup_table);
2620                                 if (lte)
2621                                         lte->out_refcnt = 0;
2622                         }
2623                 }
2624                 image_for_each_inode(inode, imd) {
2625                         for (unsigned i = 0; i <= inode->i_num_ads; i++) {
2626                                 struct wim_lookup_table_entry *lte;
2627
2628                                 lte = inode_stream_lte(inode, i,
2629                                                        wim->lookup_table);
2630                                 if (lte) {
2631                                         if (lte->out_refcnt == 0)
2632                                                 list_add(&lte->orig_stream_list,
2633                                                          &ctx.orig_stream_list);
2634                                         lte->out_refcnt += inode->i_nlink;
2635                                         lte->refcnt += inode->i_nlink;
2636                                 }
2637                         }
2638                 }
2639         } else {
2640                 image_for_each_inode(inode, imd)
2641                         inode->i_ino = ctx.next_ino++;
2642         }
2643
2644         DEBUG("(next_ino = %"PRIu64")", ctx.next_ino);
2645
2646         DEBUG("Calling fuse_main()");
2647
2648         ret = fuse_main(argc, argv, &wimfs_operations, &ctx);
2649
2650         DEBUG("Returned from fuse_main() (ret = %d)", ret);
2651
2652         if (ret) {
2653                 ret = WIMLIB_ERR_FUSE;
2654         } else {
2655                 if (ctx.have_status)
2656                         ret = ctx.status;
2657                 else
2658                         ret = WIMLIB_ERR_TIMEOUT;
2659         }
2660         if (ctx.daemon_to_unmount_mq != (mqd_t)(-1)) {
2661                 send_unmount_finished_msg(ctx.daemon_to_unmount_mq, ret);
2662                 close_message_queues(&ctx);
2663         }
2664
2665         release_extra_refcnts(&ctx);
2666
2667         /* Try to delete the staging directory if a deletion wasn't yet
2668          * attempted due to an earlier error */
2669         if (ctx.staging_dir_name)
2670                 delete_staging_dir(&ctx);
2671 out_free_dir_copy:
2672         FREE(dir_copy);
2673 out_unlock:
2674         wim->wim_locked = 0;
2675 out_free_message_queue_names:
2676         free_message_queue_names(&ctx);
2677         return ret;
2678 }
2679
2680 /* API function documented in wimlib.h  */
2681 WIMLIBAPI int
2682 wimlib_unmount_image(const char *dir, int unmount_flags,
2683                      wimlib_progress_func_t progress_func)
2684 {
2685         int ret;
2686         struct wimfs_context wimfs_ctx;
2687
2688         if (unmount_flags & ~(WIMLIB_UNMOUNT_FLAG_CHECK_INTEGRITY |
2689                               WIMLIB_UNMOUNT_FLAG_COMMIT |
2690                               WIMLIB_UNMOUNT_FLAG_REBUILD |
2691                               WIMLIB_UNMOUNT_FLAG_RECOMPRESS |
2692                               WIMLIB_UNMOUNT_FLAG_LAZY |
2693                               WIMLIB_UNMOUNT_FLAG_NEW_IMAGE))
2694                 return WIMLIB_ERR_INVALID_PARAM;
2695
2696         init_wimfs_context(&wimfs_ctx);
2697
2698         ret = set_message_queue_names(&wimfs_ctx, dir);
2699         if (ret != 0)
2700                 goto out;
2701
2702         ret = open_message_queues(&wimfs_ctx, false);
2703         if (ret != 0)
2704                 goto out_free_message_queue_names;
2705
2706         ret = send_unmount_request_msg(wimfs_ctx.unmount_to_daemon_mq,
2707                                        unmount_flags,
2708                                        progress_func != NULL);
2709         if (ret != 0)
2710                 goto out_close_message_queues;
2711
2712         ret = execute_fusermount(dir, (unmount_flags & WIMLIB_UNMOUNT_FLAG_LAZY) != 0);
2713         if (ret != 0)
2714                 goto out_close_message_queues;
2715
2716         struct unmount_msg_handler_context handler_ctx = {
2717                 .hdr = {
2718                         .timeout_seconds = 5,
2719                 },
2720                 .daemon_pid = 0,
2721                 .progress_func = progress_func,
2722         };
2723
2724         ret = message_loop(wimfs_ctx.daemon_to_unmount_mq,
2725                            &unmount_msg_handler_callbacks,
2726                            &handler_ctx.hdr);
2727         if (ret == 0)
2728                 ret = handler_ctx.status;
2729 out_close_message_queues:
2730         close_message_queues(&wimfs_ctx);
2731 out_free_message_queue_names:
2732         free_message_queue_names(&wimfs_ctx);
2733 out:
2734         return ret;
2735 }
2736
2737 #else /* WITH_FUSE */
2738
2739
2740 static int
2741 mount_unsupported_error(void)
2742 {
2743 #if defined(__WIN32__)
2744         ERROR("Sorry-- Mounting WIM images is not supported on Windows!");
2745 #else
2746         ERROR("wimlib was compiled with --without-fuse, which disables support "
2747               "for mounting WIMs.");
2748 #endif
2749         return WIMLIB_ERR_UNSUPPORTED;
2750 }
2751
2752 WIMLIBAPI int
2753 wimlib_unmount_image(const tchar *dir, int unmount_flags,
2754                      wimlib_progress_func_t progress_func)
2755 {
2756         return mount_unsupported_error();
2757 }
2758
2759 WIMLIBAPI int
2760 wimlib_mount_image(WIMStruct *wim, int image, const tchar *dir,
2761                    int mount_flags, const tchar *staging_dir)
2762 {
2763         return mount_unsupported_error();
2764 }
2765
2766 #endif /* !WITH_FUSE */