]> wimlib.net Git - wimlib/blob - src/mount_image.c
a7dc82a17effae690f2da278dd51dc71f3d3198d
[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                 while (lte->out_refcnt--)
1198                         lte_decrement_refcnt(lte, lookup_table);
1199 }
1200
1201 /* Moves the currently selected image, which may have been modified, to a new
1202  * index, and sets the original index to refer to a reset (unmodified) copy of
1203  * the image.  */
1204 static int
1205 renew_current_image(struct wimfs_context *ctx)
1206 {
1207         WIMStruct *wim = ctx->wim;
1208         int ret;
1209         int idx = wim->current_image - 1;
1210         struct wim_image_metadata *imd = wim->image_metadata[idx];
1211         struct wim_image_metadata *replace_imd;
1212         struct wim_lookup_table_entry *new_lte;
1213
1214         if (imd->metadata_lte->resource_location != RESOURCE_IN_WIM) {
1215                 ERROR("Can't reset modified image that doesn't yet "
1216                       "exist in the on-disk WIM file!");
1217                 return WIMLIB_ERR_METADATA_NOT_FOUND;
1218         }
1219
1220         /* Create 'replace_imd' structure to use for the reset original,
1221          * unmodified image.  */
1222         replace_imd = new_image_metadata();
1223         if (!replace_imd)
1224                 return WIMLIB_ERR_NOMEM;
1225
1226         /* Create new stream reference for the modified image's metadata
1227          * resource, which doesn't exist yet.  */
1228         ret = WIMLIB_ERR_NOMEM;
1229         new_lte = new_lookup_table_entry();
1230         if (!new_lte)
1231                 goto err_put_replace_imd;
1232         new_lte->flags = WIM_RESHDR_FLAG_METADATA;
1233         new_lte->unhashed = 1;
1234
1235         /* Make the image being moved available at a new index.  Increments the
1236          * WIM's image count, but does not increment the reference count of the
1237          * 'struct image_metadata'.  */
1238         ret = append_image_metadata(wim, imd);
1239         if (ret)
1240                 goto err_free_new_lte;
1241
1242         ret = xml_add_image(wim, T(""));
1243         if (ret)
1244                 goto err_undo_append;
1245
1246         replace_imd->metadata_lte = imd->metadata_lte;
1247         imd->metadata_lte = new_lte;
1248         wim->image_metadata[idx] = replace_imd;
1249         wim->current_image = wim->hdr.image_count;
1250         return 0;
1251
1252 err_undo_append:
1253         wim->hdr.image_count--;
1254 err_free_new_lte:
1255         free_lookup_table_entry(new_lte);
1256 err_put_replace_imd:
1257         put_image_metadata(replace_imd, NULL);
1258         return ret;
1259 }
1260
1261 static int
1262 msg_unmount_request_handler(const void *_msg, void *_handler_ctx)
1263 {
1264         const struct msg_unmount_request *msg = _msg;
1265         struct daemon_msg_handler_context *handler_ctx = _handler_ctx;
1266         struct wimfs_context *wimfs_ctx;
1267         int status = 0;
1268         int ret;
1269         int unmount_flags;
1270         wimlib_progress_func_t progress_func;
1271
1272         DEBUG("Handling unmount request msg");
1273
1274         wimfs_ctx = handler_ctx->wimfs_ctx;
1275         if (msg->hdr.msg_size < sizeof(*msg)) {
1276                 status = WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE;
1277                 goto out;
1278         }
1279
1280         unmount_flags = msg->unmount_flags;
1281         if (msg->want_progress_messages)
1282                 progress_func = unmount_progress_func;
1283         else
1284                 progress_func = NULL;
1285
1286         ret = send_daemon_info_msg(wimfs_ctx->daemon_to_unmount_mq, getpid(),
1287                                    wimfs_ctx->mount_flags);
1288         if (ret != 0) {
1289                 status = ret;
1290                 goto out;
1291         }
1292
1293         if (wimfs_ctx->mount_flags & WIMLIB_MOUNT_FLAG_READWRITE) {
1294                 if (unmount_flags & WIMLIB_UNMOUNT_FLAG_COMMIT) {
1295
1296                         if (unmount_flags & WIMLIB_UNMOUNT_FLAG_NEW_IMAGE) {
1297                                 ret = renew_current_image(wimfs_ctx);
1298                                 if (ret) {
1299                                         status = ret;
1300                                         goto out;
1301                                 }
1302                         } else {
1303                                 release_extra_refcnts(wimfs_ctx);
1304                         }
1305                         INIT_LIST_HEAD(&wimfs_ctx->orig_stream_list);
1306
1307                         int write_flags = 0;
1308                         if (unmount_flags & WIMLIB_UNMOUNT_FLAG_CHECK_INTEGRITY)
1309                                 write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
1310                         if (unmount_flags & WIMLIB_UNMOUNT_FLAG_REBUILD)
1311                                 write_flags |= WIMLIB_WRITE_FLAG_REBUILD;
1312                         if (unmount_flags & WIMLIB_UNMOUNT_FLAG_RECOMPRESS)
1313                                 write_flags |= WIMLIB_WRITE_FLAG_RECOMPRESS;
1314                         status = rebuild_wim(wimfs_ctx, write_flags,
1315                                              progress_func);
1316                 }
1317         } else {
1318                 DEBUG("Read-only mount");
1319                 status = 0;
1320         }
1321
1322 out:
1323         if (wimfs_ctx->mount_flags & WIMLIB_MOUNT_FLAG_READWRITE) {
1324                 ret = delete_staging_dir(wimfs_ctx);
1325                 if (ret != 0) {
1326                         ERROR("Failed to delete the staging directory");
1327                         if (status == 0)
1328                                 status = ret;
1329                 }
1330         }
1331         wimfs_ctx->status = status;
1332         wimfs_ctx->have_status = true;
1333         return MSG_BREAK_LOOP;
1334 }
1335
1336 static int
1337 msg_daemon_info_handler(const void *_msg, void *_handler_ctx)
1338 {
1339         const struct msg_daemon_info *msg = _msg;
1340         struct unmount_msg_handler_context *handler_ctx = _handler_ctx;
1341
1342         DEBUG("Handling daemon info msg");
1343         if (msg->hdr.msg_size < sizeof(*msg))
1344                 return WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE;
1345         handler_ctx->daemon_pid = msg->daemon_pid;
1346         handler_ctx->mount_flags = msg->mount_flags;
1347         handler_ctx->hdr.timeout_seconds = 1;
1348         DEBUG("pid of daemon is %d; mount flags were %#x",
1349               handler_ctx->daemon_pid,
1350               handler_ctx->mount_flags);
1351         return 0;
1352 }
1353
1354 static int
1355 msg_write_streams_progress_handler(const void *_msg, void *_handler_ctx)
1356 {
1357         const struct msg_write_streams_progress *msg = _msg;
1358         struct unmount_msg_handler_context *handler_ctx = _handler_ctx;
1359
1360         if (msg->hdr.msg_size < sizeof(*msg))
1361                 return WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE;
1362         if (handler_ctx->progress_func) {
1363                 handler_ctx->progress_func(WIMLIB_PROGRESS_MSG_WRITE_STREAMS,
1364                                            &msg->info);
1365         }
1366         return 0;
1367 }
1368
1369 static int
1370 msg_unmount_finished_handler(const void *_msg, void *_handler_ctx)
1371 {
1372         const struct msg_unmount_finished *msg = _msg;
1373         struct unmount_msg_handler_context *handler_ctx = _handler_ctx;
1374
1375         DEBUG("Handling unmount finished message");
1376         if (msg->hdr.msg_size < sizeof(*msg))
1377                 return WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE;
1378         handler_ctx->status = msg->status;
1379         DEBUG("status is %d", handler_ctx->status);
1380         return MSG_BREAK_LOOP;
1381 }
1382
1383 static int
1384 unmount_timed_out_cb(void *_handler_ctx)
1385 {
1386         const struct unmount_msg_handler_context *handler_ctx = _handler_ctx;
1387
1388         if (handler_ctx->daemon_pid == 0 ||
1389             (kill(handler_ctx->daemon_pid, 0) != 0 && errno == ESRCH))
1390         {
1391                 ERROR("The filesystem daemon has crashed!  Changes to the "
1392                       "WIM may not have been commited.");
1393                 return WIMLIB_ERR_FILESYSTEM_DAEMON_CRASHED;
1394         }
1395
1396         DEBUG("Filesystem daemon is still alive... "
1397               "Waiting another %d seconds", handler_ctx->hdr.timeout_seconds);
1398         return 0;
1399 }
1400
1401 static int
1402 daemon_timed_out_cb(void *_handler_ctx)
1403 {
1404         ERROR("Timed out waiting for unmount request! "
1405               "Changes to the mounted WIM will not be committed.");
1406         return WIMLIB_ERR_TIMEOUT;
1407 }
1408
1409 typedef int (*msg_handler_t)(const void *_msg, void *_handler_ctx);
1410
1411 struct msg_handler_callbacks {
1412         int (*timed_out)(void * _handler_ctx);
1413         msg_handler_t msg_handlers[MSG_TYPE_MAX];
1414 };
1415
1416 static const struct msg_handler_callbacks unmount_msg_handler_callbacks = {
1417         .timed_out = unmount_timed_out_cb,
1418         .msg_handlers = {
1419                 [MSG_TYPE_DAEMON_INFO] = msg_daemon_info_handler,
1420                 [MSG_TYPE_WRITE_STREAMS_PROGRESS] = msg_write_streams_progress_handler,
1421                 [MSG_TYPE_UNMOUNT_FINISHED] = msg_unmount_finished_handler,
1422         },
1423 };
1424
1425 static const struct msg_handler_callbacks daemon_msg_handler_callbacks = {
1426         .timed_out = daemon_timed_out_cb,
1427         .msg_handlers = {
1428                 [MSG_TYPE_UNMOUNT_REQUEST] = msg_unmount_request_handler,
1429         },
1430 };
1431
1432 static int
1433 receive_message(mqd_t mq,
1434                 struct msg_handler_context_hdr *handler_ctx,
1435                 const msg_handler_t msg_handlers[],
1436                 long mailbox_size, void *mailbox)
1437 {
1438         struct timeval now;
1439         struct timespec timeout;
1440         ssize_t bytes_received;
1441         struct unmount_msg_hdr *hdr;
1442         int ret;
1443
1444         gettimeofday(&now, NULL);
1445         timeout.tv_sec = now.tv_sec + handler_ctx->timeout_seconds;
1446         timeout.tv_nsec = now.tv_usec * 1000;
1447
1448         bytes_received = mq_timedreceive(mq, mailbox,
1449                                          mailbox_size, NULL, &timeout);
1450         hdr = mailbox;
1451         if (bytes_received == -1) {
1452                 if (errno == ETIMEDOUT) {
1453                         ret = WIMLIB_ERR_TIMEOUT;
1454                 } else {
1455                         ERROR_WITH_ERRNO("mq_timedreceive()");
1456                         ret = WIMLIB_ERR_MQUEUE;
1457                 }
1458         } else if (bytes_received < sizeof(*hdr) ||
1459                    bytes_received != hdr->msg_size) {
1460                 ret = WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE;
1461         } else if (WIMLIB_VERSION_CODE < hdr->min_version) {
1462                 /*ERROR("Cannot understand the received message. "*/
1463                       /*"Please upgrade wimlib to at least v%d.%d.%d",*/
1464                       /*WIMLIB_GET_MAJOR_VERSION(hdr->min_version),*/
1465                       /*WIMLIB_GET_MINOR_VERSION(hdr->min_version),*/
1466                       /*WIMLIB_GET_PATCH_VERSION(hdr->min_version));*/
1467                 ret = MSG_VERSION_TOO_HIGH;
1468         } else if (hdr->msg_type >= MSG_TYPE_MAX) {
1469                 ret = WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE;
1470         } else if (msg_handlers[hdr->msg_type] == NULL) {
1471                 ret = WIMLIB_ERR_INVALID_UNMOUNT_MESSAGE;
1472         } else {
1473                 ret = msg_handlers[hdr->msg_type](mailbox, handler_ctx);
1474         }
1475         return ret;
1476 }
1477
1478 static int
1479 message_loop(mqd_t mq,
1480              const struct msg_handler_callbacks *callbacks,
1481              struct msg_handler_context_hdr *handler_ctx)
1482 {
1483         static const size_t MAX_MSG_SIZE = 512;
1484         long msgsize;
1485         void *mailbox;
1486         int ret;
1487
1488         DEBUG("Entering message loop");
1489
1490         ret = get_mailbox(mq, MAX_MSG_SIZE, &msgsize, &mailbox);
1491         if (ret != 0)
1492                 return ret;
1493         while (1) {
1494                 ret = receive_message(mq, handler_ctx,
1495                                       callbacks->msg_handlers,
1496                                       msgsize, mailbox);
1497                 if (ret == 0 || ret == MSG_VERSION_TOO_HIGH) {
1498                         continue;
1499                 } else if (ret == MSG_BREAK_LOOP) {
1500                         ret = 0;
1501                         break;
1502                 } else if (ret == WIMLIB_ERR_TIMEOUT) {
1503                         if (callbacks->timed_out)
1504                                 ret = callbacks->timed_out(handler_ctx);
1505                         if (ret == 0)
1506                                 continue;
1507                         else
1508                                 break;
1509                 } else {
1510                         ERROR_WITH_ERRNO("Error communicating with "
1511                                          "filesystem daemon");
1512                         break;
1513                 }
1514         }
1515         FREE(mailbox);
1516         DEBUG("Exiting message loop");
1517         return ret;
1518 }
1519
1520 /* Execute `fusermount -u', which is installed setuid root, to unmount the WIM.
1521  *
1522  * FUSE does not yet implement synchronous unmounts.  This means that fusermount
1523  * -u will return before the filesystem daemon returns from wimfs_destroy().
1524  *  This is partly what we want, because we need to send a message from this
1525  *  process to the filesystem daemon telling whether --commit was specified or
1526  *  not.  However, after that, the unmount process must wait for the filesystem
1527  *  daemon to finish writing the WIM file.
1528  */
1529 static int
1530 execute_fusermount(const char *dir, bool lazy)
1531 {
1532         pid_t pid;
1533         int ret;
1534         int status;
1535
1536         pid = fork();
1537         if (pid == -1) {
1538                 ERROR_WITH_ERRNO("Failed to fork()");
1539                 return WIMLIB_ERR_FORK;
1540         }
1541         if (pid == 0) {
1542                 /* Child */
1543                 char *argv[10];
1544                 char **argp = argv;
1545                 *argp++ = "fusermount";
1546                 if (lazy)
1547                         *argp++ = "-z";
1548                 *argp++ = "-u";
1549                 *argp++ = (char*)dir;
1550                 *argp = NULL;
1551                 execvp("fusermount", argv);
1552                 ERROR_WITH_ERRNO("Failed to execute `fusermount'");
1553                 exit(WIMLIB_ERR_FUSERMOUNT);
1554         }
1555
1556         /* Parent */
1557         ret = waitpid(pid, &status, 0);
1558         if (ret == -1) {
1559                 ERROR_WITH_ERRNO("Failed to wait for fusermount process to "
1560                                  "terminate");
1561                 return WIMLIB_ERR_FUSERMOUNT;
1562         }
1563
1564         if (!WIFEXITED(status)) {
1565                 ERROR("'fusermount' did not terminate normally!");
1566                 return WIMLIB_ERR_FUSERMOUNT;
1567         }
1568
1569         status = WEXITSTATUS(status);
1570
1571         if (status == 0)
1572                 return 0;
1573
1574         if (status != WIMLIB_ERR_FUSERMOUNT)
1575                 return WIMLIB_ERR_FUSERMOUNT;
1576
1577         /* Try again, but with the `umount' program.  This is required on other
1578          * FUSE implementations such as FreeBSD's that do not have a
1579          * `fusermount' program. */
1580         ERROR("Falling back to 'umount'.  Note: you may need to be "
1581               "root for this to work");
1582         pid = fork();
1583         if (pid == -1) {
1584                 ERROR_WITH_ERRNO("Failed to fork()");
1585                 return WIMLIB_ERR_FORK;
1586         }
1587         if (pid == 0) {
1588                 /* Child */
1589                 char *argv[10];
1590                 char **argp = argv;
1591                 *argp++ = "umount";
1592                 if (lazy)
1593                         *argp++ = "-l";
1594                 *argp++ = (char*)dir;
1595                 *argp = NULL;
1596                 execvp("umount", argv);
1597                 ERROR_WITH_ERRNO("Failed to execute `umount'");
1598                 exit(WIMLIB_ERR_FUSERMOUNT);
1599         }
1600
1601         /* Parent */
1602         ret = waitpid(pid, &status, 0);
1603         if (ret == -1) {
1604                 ERROR_WITH_ERRNO("Failed to wait for `umount' process to "
1605                                  "terminate");
1606                 return WIMLIB_ERR_FUSERMOUNT;
1607         }
1608
1609         if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1610                 ERROR("`umount' did not successfully complete");
1611                 return WIMLIB_ERR_FUSERMOUNT;
1612         }
1613
1614         return 0;
1615 }
1616
1617 static int
1618 wimfs_chmod(const char *path, mode_t mask)
1619 {
1620         struct wim_dentry *dentry;
1621         struct wimfs_context *ctx = wimfs_get_context();
1622         int ret;
1623
1624         if (!(ctx->mount_flags & WIMLIB_MOUNT_FLAG_UNIX_DATA))
1625                 return -EPERM;
1626
1627         ret = wim_pathname_to_stream(ctx->wim, path, LOOKUP_FLAG_DIRECTORY_OK,
1628                                      &dentry, NULL, NULL);
1629         if (ret)
1630                 return ret;
1631
1632         ret = inode_set_unix_data(dentry->d_inode, ctx->default_uid,
1633                                   ctx->default_gid, mask,
1634                                   ctx->wim->lookup_table, UNIX_DATA_MODE);
1635         return ret ? -ENOMEM : 0;
1636 }
1637
1638 static int
1639 wimfs_chown(const char *path, uid_t uid, gid_t gid)
1640 {
1641         struct wim_dentry *dentry;
1642         struct wimfs_context *ctx = wimfs_get_context();
1643         int ret;
1644
1645         if (!(ctx->mount_flags & WIMLIB_MOUNT_FLAG_UNIX_DATA))
1646                 return -EPERM;
1647
1648         ret = wim_pathname_to_stream(ctx->wim, path, LOOKUP_FLAG_DIRECTORY_OK,
1649                                      &dentry, NULL, NULL);
1650         if (ret)
1651                 return ret;
1652
1653         ret = inode_set_unix_data(dentry->d_inode, uid, gid,
1654                                   inode_default_unix_mode(dentry->d_inode),
1655                                   ctx->wim->lookup_table,
1656                                   UNIX_DATA_UID | UNIX_DATA_GID);
1657         return ret ? -ENOMEM : 0;
1658 }
1659
1660 /* Called when the filesystem is unmounted. */
1661 static void
1662 wimfs_destroy(void *p)
1663 {
1664         struct wimfs_context *wimfs_ctx = wimfs_get_context();
1665         if (open_message_queues(wimfs_ctx, true) == 0) {
1666                 struct daemon_msg_handler_context handler_ctx = {
1667                         .hdr = {
1668                                 .timeout_seconds = 5,
1669                         },
1670                         .wimfs_ctx = wimfs_ctx,
1671                 };
1672                 message_loop(wimfs_ctx->unmount_to_daemon_mq,
1673                              &daemon_msg_handler_callbacks,
1674                              &handler_ctx.hdr);
1675         }
1676 }
1677
1678 static int
1679 wimfs_fgetattr(const char *path, struct stat *stbuf,
1680                struct fuse_file_info *fi)
1681 {
1682         struct wimfs_fd *fd = (struct wimfs_fd*)(uintptr_t)fi->fh;
1683         return inode_to_stbuf(fd->f_inode, fd->f_lte, stbuf);
1684 }
1685
1686 static int
1687 wimfs_ftruncate(const char *path, off_t size, struct fuse_file_info *fi)
1688 {
1689         struct wimfs_fd *fd = (struct wimfs_fd*)(uintptr_t)fi->fh;
1690         int ret = ftruncate(fd->staging_fd.fd, size);
1691         if (ret)
1692                 return -errno;
1693         touch_inode(fd->f_inode);
1694         fd->f_lte->size = size;
1695         return 0;
1696 }
1697
1698 /*
1699  * Fills in a `struct stat' that corresponds to a file or directory in the WIM.
1700  */
1701 static int
1702 wimfs_getattr(const char *path, struct stat *stbuf)
1703 {
1704         struct wim_dentry *dentry;
1705         struct wim_lookup_table_entry *lte;
1706         int ret;
1707         struct wimfs_context *ctx = wimfs_get_context();
1708
1709         ret = wim_pathname_to_stream(ctx->wim, path,
1710                                      get_lookup_flags(ctx) |
1711                                         LOOKUP_FLAG_DIRECTORY_OK,
1712                                      &dentry, &lte, NULL);
1713         if (ret != 0)
1714                 return ret;
1715         return inode_to_stbuf(dentry->d_inode, lte, stbuf);
1716 }
1717
1718 #ifdef ENABLE_XATTR
1719 /* Read an alternate data stream through the XATTR interface, or get its size */
1720 static int
1721 wimfs_getxattr(const char *path, const char *name, char *value,
1722                size_t size)
1723 {
1724         int ret;
1725         struct wim_inode *inode;
1726         struct wim_ads_entry *ads_entry;
1727         u64 stream_size;
1728         struct wim_lookup_table_entry *lte;
1729         struct wimfs_context *ctx = wimfs_get_context();
1730
1731         if (!(ctx->mount_flags & WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR))
1732                 return -ENOTSUP;
1733
1734         if (strlen(name) <= 5 || memcmp(name, "user.", 5) != 0)
1735                 return -ENOATTR;
1736         name += 5;
1737
1738         inode = wim_pathname_to_inode(ctx->wim, path);
1739         if (!inode)
1740                 return -errno;
1741
1742         ads_entry = inode_get_ads_entry(inode, name, NULL);
1743         if (!ads_entry)
1744                 return -ENOATTR;
1745
1746         lte = ads_entry->lte;
1747         stream_size = lte->size;
1748
1749         if (size == 0)
1750                 return stream_size;
1751
1752         if (stream_size > size)
1753                 return -ERANGE;
1754
1755         ret = read_full_stream_into_buf(lte, value);
1756         if (ret) {
1757                 if (errno)
1758                         return -errno;
1759                 else
1760                         return -EIO;
1761         }
1762         return stream_size;
1763 }
1764 #endif
1765
1766 /* Create a hard link */
1767 static int
1768 wimfs_link(const char *to, const char *from)
1769 {
1770         struct wim_dentry *from_dentry, *from_dentry_parent;
1771         const char *link_name;
1772         struct wim_inode *inode;
1773         WIMStruct *wim = wimfs_get_WIMStruct();
1774         int ret;
1775
1776         inode = wim_pathname_to_inode(wim, to);
1777         if (!inode)
1778                 return -errno;
1779
1780         if (inode->i_attributes & (FILE_ATTRIBUTE_DIRECTORY |
1781                                    FILE_ATTRIBUTE_REPARSE_POINT))
1782                 return -EPERM;
1783
1784         from_dentry_parent = get_parent_dentry(wim, from, WIMLIB_CASE_SENSITIVE);
1785         if (!from_dentry_parent)
1786                 return -errno;
1787         if (!dentry_is_directory(from_dentry_parent))
1788                 return -ENOTDIR;
1789
1790         link_name = path_basename(from);
1791         if (get_dentry_child_with_name(from_dentry_parent, link_name,
1792                                        WIMLIB_CASE_SENSITIVE))
1793                 return -EEXIST;
1794
1795         ret = new_dentry(link_name, &from_dentry);
1796         if (ret)
1797                 return -ENOMEM;
1798
1799         inode->i_nlink++;
1800         inode_ref_streams(inode);
1801         from_dentry->d_inode = inode;
1802         inode_add_dentry(from_dentry, inode);
1803         dentry_add_child(from_dentry_parent, from_dentry);
1804         return 0;
1805 }
1806
1807 #ifdef ENABLE_XATTR
1808 static int
1809 wimfs_listxattr(const char *path, char *list, size_t size)
1810 {
1811         size_t needed_size;
1812         struct wim_inode *inode;
1813         struct wimfs_context *ctx = wimfs_get_context();
1814         u16 i;
1815         char *p;
1816         bool size_only = (size == 0);
1817
1818         if (!(ctx->mount_flags & WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR))
1819                 return -ENOTSUP;
1820
1821         /* List alternate data streams, or get the list size */
1822
1823         inode = wim_pathname_to_inode(ctx->wim, path);
1824         if (!inode)
1825                 return -errno;
1826
1827         p = list;
1828         for (i = 0; i < inode->i_num_ads; i++) {
1829
1830                 if (!ads_entry_is_named_stream(&inode->i_ads_entries[i]))
1831                         continue;
1832
1833                 char *stream_name_mbs;
1834                 size_t stream_name_mbs_nbytes;
1835                 int ret;
1836
1837                 ret = utf16le_to_tstr(inode->i_ads_entries[i].stream_name,
1838                                       inode->i_ads_entries[i].stream_name_nbytes,
1839                                       &stream_name_mbs,
1840                                       &stream_name_mbs_nbytes);
1841                 if (ret)
1842                         return -errno;
1843
1844                 needed_size = stream_name_mbs_nbytes + 6;
1845                 if (!size_only) {
1846                         if (needed_size > size) {
1847                                 FREE(stream_name_mbs);
1848                                 return -ERANGE;
1849                         }
1850                         sprintf(p, "user.%s", stream_name_mbs);
1851                         size -= needed_size;
1852                 }
1853                 p += needed_size;
1854                 FREE(stream_name_mbs);
1855         }
1856         return p - list;
1857 }
1858 #endif
1859
1860
1861 /* Create a directory in the WIM image. */
1862 static int
1863 wimfs_mkdir(const char *path, mode_t mode)
1864 {
1865         return create_dentry(fuse_get_context(), path, mode | S_IFDIR,
1866                              FILE_ATTRIBUTE_DIRECTORY, NULL);
1867 }
1868
1869 /* Create a regular file or alternate data stream in the WIM image. */
1870 static int
1871 wimfs_mknod(const char *path, mode_t mode, dev_t rdev)
1872 {
1873         const char *stream_name;
1874         struct fuse_context *fuse_ctx = fuse_get_context();
1875         struct wimfs_context *wimfs_ctx = WIMFS_CTX(fuse_ctx);
1876
1877         if (!S_ISREG(mode))
1878                 return -EPERM;
1879
1880         if ((wimfs_ctx->mount_flags & WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS)
1881              && (stream_name = path_stream_name(path))) {
1882                 /* Make an alternate data stream */
1883                 struct wim_ads_entry *new_entry;
1884                 struct wim_inode *inode;
1885
1886                 char *p = (char*)stream_name - 1;
1887                 wimlib_assert(*p == ':');
1888                 *p = '\0';
1889
1890                 inode = wim_pathname_to_inode(wimfs_ctx->wim, path);
1891                 if (!inode)
1892                         return -errno;
1893                 if (inode->i_attributes & FILE_ATTRIBUTE_REPARSE_POINT)
1894                         return -ENOENT;
1895                 if (inode_get_ads_entry(inode, stream_name, NULL))
1896                         return -EEXIST;
1897                 new_entry = inode_add_ads(inode, stream_name);
1898                 if (!new_entry)
1899                         return -ENOMEM;
1900                 return 0;
1901         } else {
1902                 /* Make a normal file (not an alternate data stream) */
1903                 return create_dentry(fuse_ctx, path, mode | S_IFREG,
1904                                      FILE_ATTRIBUTE_NORMAL, NULL);
1905         }
1906 }
1907
1908 /* Open a file.  */
1909 static int
1910 wimfs_open(const char *path, struct fuse_file_info *fi)
1911 {
1912         struct wim_dentry *dentry;
1913         struct wim_lookup_table_entry *lte;
1914         int ret;
1915         struct wimfs_fd *fd;
1916         struct wim_inode *inode;
1917         u16 stream_idx;
1918         u32 stream_id;
1919         struct wimfs_context *ctx = wimfs_get_context();
1920         struct wim_lookup_table_entry **back_ptr;
1921
1922         ret = wim_pathname_to_stream(ctx->wim, path, get_lookup_flags(ctx),
1923                                      &dentry, &lte, &stream_idx);
1924         if (ret)
1925                 return ret;
1926
1927         inode = dentry->d_inode;
1928
1929         if (stream_idx == 0) {
1930                 stream_id = 0;
1931                 back_ptr = &inode->i_lte;
1932         } else {
1933                 stream_id = inode->i_ads_entries[stream_idx - 1].stream_id;
1934                 back_ptr = &inode->i_ads_entries[stream_idx - 1].lte;
1935         }
1936
1937         /* The file resource may be in the staging directory (read-write mounts
1938          * only) or in the WIM.  If it's in the staging directory, we need to
1939          * open a native file descriptor for the corresponding file.  Otherwise,
1940          * we can read the file resource directly from the WIM file if we are
1941          * opening it read-only, but we need to extract the resource to the
1942          * staging directory if we are opening it writable. */
1943
1944         if (flags_writable(fi->flags) &&
1945             (!lte || lte->resource_location != RESOURCE_IN_STAGING_FILE)) {
1946                 u64 size = (lte) ? lte->size : 0;
1947                 ret = extract_resource_to_staging_dir(inode, stream_id,
1948                                                       &lte, size, ctx);
1949                 if (ret)
1950                         return ret;
1951                 *back_ptr = lte;
1952         }
1953
1954         ret = alloc_wimfs_fd(inode, stream_id, lte, &fd);
1955         if (ret)
1956                 return ret;
1957
1958         if (lte && lte->resource_location == RESOURCE_IN_STAGING_FILE) {
1959                 int raw_fd;
1960
1961                 raw_fd = open(lte->staging_file_name, fi->flags);
1962                 if (raw_fd < 0) {
1963                         int errno_save = errno;
1964                         close_wimfs_fd(fd);
1965                         return -errno_save;
1966                 }
1967                 filedes_init(&fd->staging_fd, raw_fd);
1968         }
1969         fi->fh = (uintptr_t)fd;
1970         return 0;
1971 }
1972
1973 /* Opens a directory. */
1974 static int
1975 wimfs_opendir(const char *path, struct fuse_file_info *fi)
1976 {
1977         struct wim_inode *inode;
1978         int ret;
1979         struct wimfs_fd *fd = NULL;
1980         struct wimfs_context *ctx = wimfs_get_context();
1981         WIMStruct *wim = ctx->wim;
1982
1983         inode = wim_pathname_to_inode(wim, path);
1984         if (!inode)
1985                 return -errno;
1986         if (!inode_is_directory(inode))
1987                 return -ENOTDIR;
1988         ret = alloc_wimfs_fd(inode, 0, NULL, &fd);
1989         fi->fh = (uintptr_t)fd;
1990         return ret;
1991 }
1992
1993
1994 /*
1995  * Read data from a file in the WIM or in the staging directory.
1996  */
1997 static int
1998 wimfs_read(const char *path, char *buf, size_t size,
1999            off_t offset, struct fuse_file_info *fi)
2000 {
2001         struct wimfs_fd *fd = (struct wimfs_fd*)(uintptr_t)fi->fh;
2002         ssize_t ret;
2003         u64 stream_size;
2004
2005         if (!fd)
2006                 return -EBADF;
2007
2008         if (size == 0)
2009                 return 0;
2010
2011         if (fd->f_lte)
2012                 stream_size = fd->f_lte->size;
2013         else
2014                 stream_size = 0;
2015
2016         if (offset > stream_size)
2017                 return -EOVERFLOW;
2018
2019         size = min(size, stream_size - offset);
2020         if (size == 0)
2021                 return 0;
2022
2023         switch (fd->f_lte->resource_location) {
2024         case RESOURCE_IN_STAGING_FILE:
2025                 ret = raw_pread(&fd->staging_fd, buf, size, offset);
2026                 if (ret == -1)
2027                         ret = -errno;
2028                 break;
2029         case RESOURCE_IN_WIM:
2030                 if (read_partial_wim_stream_into_buf(fd->f_lte, size,
2031                                                      offset, buf))
2032                         ret = errno ? -errno : -EIO;
2033                 else
2034                         ret = size;
2035                 break;
2036         case RESOURCE_IN_ATTACHED_BUFFER:
2037                 memcpy(buf, fd->f_lte->attached_buffer + offset, size);
2038                 ret = size;
2039                 break;
2040         default:
2041                 ERROR("Invalid resource location");
2042                 ret = -EIO;
2043                 break;
2044         }
2045         return ret;
2046 }
2047
2048 /* Fills in the entries of the directory specified by @path using the
2049  * FUSE-provided function @filler.  */
2050 static int
2051 wimfs_readdir(const char *path, void *buf, fuse_fill_dir_t filler,
2052               off_t offset, struct fuse_file_info *fi)
2053 {
2054         struct wimfs_fd *fd = (struct wimfs_fd*)(uintptr_t)fi->fh;
2055         struct wim_inode *inode;
2056         struct wim_dentry *child;
2057         int ret;
2058
2059         if (!fd)
2060                 return -EBADF;
2061
2062         inode = fd->f_inode;
2063
2064         ret = filler(buf, ".", NULL, 0);
2065         if (ret)
2066                 return ret;
2067         ret = filler(buf, "..", NULL, 0);
2068         if (ret)
2069                 return ret;
2070
2071         for_inode_child(child, inode) {
2072                 char *file_name_mbs;
2073                 size_t file_name_mbs_nbytes;
2074
2075                 ret = utf16le_to_tstr(child->file_name,
2076                                       child->file_name_nbytes,
2077                                       &file_name_mbs,
2078                                       &file_name_mbs_nbytes);
2079                 if (ret)
2080                         return -errno;
2081
2082                 ret = filler(buf, file_name_mbs, NULL, 0);
2083                 FREE(file_name_mbs);
2084                 if (ret)
2085                         return ret;
2086         }
2087         return 0;
2088 }
2089
2090
2091 static int
2092 wimfs_readlink(const char *path, char *buf, size_t buf_len)
2093 {
2094         struct wimfs_context *ctx = wimfs_get_context();
2095         struct wim_inode *inode = wim_pathname_to_inode(ctx->wim, path);
2096         int ret;
2097         if (!inode)
2098                 return -errno;
2099         if (!inode_is_symlink(inode))
2100                 return -EINVAL;
2101         if (buf_len == 0)
2102                 return -EINVAL;
2103         ret = wim_inode_readlink(inode, buf, buf_len - 1, NULL);
2104         if (ret >= 0) {
2105                 wimlib_assert(ret <= buf_len - 1);
2106                 buf[ret] = '\0';
2107                 ret = 0;
2108         } else if (ret == -ENAMETOOLONG) {
2109                 buf[buf_len - 1] = '\0';
2110         }
2111         return ret;
2112 }
2113
2114 /* Close a file. */
2115 static int
2116 wimfs_release(const char *path, struct fuse_file_info *fi)
2117 {
2118         struct wimfs_fd *fd = (struct wimfs_fd*)(uintptr_t)fi->fh;
2119         return close_wimfs_fd(fd);
2120 }
2121
2122 /* Close a directory */
2123 static int
2124 wimfs_releasedir(const char *path, struct fuse_file_info *fi)
2125 {
2126         struct wimfs_fd *fd = (struct wimfs_fd*)(uintptr_t)fi->fh;
2127         return close_wimfs_fd(fd);
2128 }
2129
2130 #ifdef ENABLE_XATTR
2131 /* Remove an alternate data stream through the XATTR interface */
2132 static int
2133 wimfs_removexattr(const char *path, const char *name)
2134 {
2135         struct wim_inode *inode;
2136         struct wim_ads_entry *ads_entry;
2137         u16 ads_idx;
2138         struct wimfs_context *ctx = wimfs_get_context();
2139
2140         if (!(ctx->mount_flags & WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR))
2141                 return -ENOTSUP;
2142
2143         if (strlen(name) < 5 || memcmp(name, "user.", 5) != 0)
2144                 return -ENOATTR;
2145         name += 5;
2146
2147         inode = wim_pathname_to_inode(ctx->wim, path);
2148         if (!inode)
2149                 return -errno;
2150
2151         ads_entry = inode_get_ads_entry(inode, name, &ads_idx);
2152         if (!ads_entry)
2153                 return -ENOATTR;
2154         inode_remove_ads(inode, ads_idx, ctx->wim->lookup_table);
2155         return 0;
2156 }
2157 #endif
2158
2159 /* Renames a file or directory.  See rename (3) */
2160 static int
2161 wimfs_rename(const char *from, const char *to)
2162 {
2163         return rename_wim_path(wimfs_get_WIMStruct(), from, to,
2164                                WIMLIB_CASE_SENSITIVE);
2165 }
2166
2167 /* Remove a directory */
2168 static int
2169 wimfs_rmdir(const char *path)
2170 {
2171         struct wim_dentry *dentry;
2172         WIMStruct *wim = wimfs_get_WIMStruct();
2173
2174         dentry = get_dentry(wim, path, WIMLIB_CASE_SENSITIVE);
2175         if (!dentry)
2176                 return -errno;
2177
2178         if (!dentry_is_directory(dentry))
2179                 return -ENOTDIR;
2180
2181         if (dentry_has_children(dentry))
2182                 return -ENOTEMPTY;
2183
2184         remove_dentry(dentry, wim->lookup_table);
2185         return 0;
2186 }
2187
2188 #ifdef ENABLE_XATTR
2189 /* Write an alternate data stream through the XATTR interface */
2190 static int
2191 wimfs_setxattr(const char *path, const char *name,
2192                const char *value, size_t size, int flags)
2193 {
2194         struct wim_ads_entry *existing_ads_entry;
2195         struct wim_inode *inode;
2196         u16 ads_idx;
2197         struct wimfs_context *ctx = wimfs_get_context();
2198         int ret;
2199
2200         if (!(ctx->mount_flags & WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR))
2201                 return -ENOTSUP;
2202
2203         if (strlen(name) <= 5 || memcmp(name, "user.", 5) != 0)
2204                 return -ENOATTR;
2205         name += 5;
2206
2207         inode = wim_pathname_to_inode(ctx->wim, path);
2208         if (!inode)
2209                 return -errno;
2210
2211         existing_ads_entry = inode_get_ads_entry(inode, name, &ads_idx);
2212         if (existing_ads_entry) {
2213                 if (flags & XATTR_CREATE)
2214                         return -EEXIST;
2215         } else {
2216                 if (flags & XATTR_REPLACE)
2217                         return -ENOATTR;
2218         }
2219
2220         ret = inode_add_ads_with_data(inode, name, value,
2221                                       size, ctx->wim->lookup_table);
2222         if (ret == 0) {
2223                 if (existing_ads_entry)
2224                         inode_remove_ads(inode, ads_idx, ctx->wim->lookup_table);
2225         } else {
2226                 ret = -ENOMEM;
2227         }
2228         return ret;
2229 }
2230 #endif
2231
2232 static int
2233 wimfs_symlink(const char *to, const char *from)
2234 {
2235         struct fuse_context *fuse_ctx = fuse_get_context();
2236         struct wimfs_context *wimfs_ctx = WIMFS_CTX(fuse_ctx);
2237         struct wim_dentry *dentry;
2238         int ret;
2239
2240         ret = create_dentry(fuse_ctx, from, S_IFLNK | 0777,
2241                             FILE_ATTRIBUTE_REPARSE_POINT, &dentry);
2242         if (ret == 0) {
2243                 dentry->d_inode->i_reparse_tag = WIM_IO_REPARSE_TAG_SYMLINK;
2244                 ret = wim_inode_set_symlink(dentry->d_inode, to,
2245                                             wimfs_ctx->wim->lookup_table);
2246                 if (ret) {
2247                         remove_dentry(dentry, wimfs_ctx->wim->lookup_table);
2248                         if (ret == WIMLIB_ERR_NOMEM)
2249                                 ret = -ENOMEM;
2250                         else
2251                                 ret = -EIO;
2252                 }
2253         }
2254         return ret;
2255 }
2256
2257
2258 /* Reduce the size of a file */
2259 static int
2260 wimfs_truncate(const char *path, off_t size)
2261 {
2262         struct wim_dentry *dentry;
2263         struct wim_lookup_table_entry *lte;
2264         int ret;
2265         u16 stream_idx;
2266         u32 stream_id;
2267         struct wim_inode *inode;
2268         struct wimfs_context *ctx = wimfs_get_context();
2269
2270         ret = wim_pathname_to_stream(ctx->wim, path, get_lookup_flags(ctx),
2271                                      &dentry, &lte, &stream_idx);
2272
2273         if (ret != 0)
2274                 return ret;
2275
2276         if (lte == NULL && size == 0)
2277                 return 0;
2278
2279         if (lte != NULL && lte->resource_location == RESOURCE_IN_STAGING_FILE) {
2280                 ret = truncate(lte->staging_file_name, size);
2281                 if (ret)
2282                         ret = -errno;
2283                 else
2284                         lte->size = size;
2285         } else {
2286                 /* File in WIM.  Extract it to the staging directory, but only
2287                  * the first @size bytes of it. */
2288                 struct wim_lookup_table_entry **back_ptr;
2289
2290                 inode = dentry->d_inode;
2291                 if (stream_idx == 0) {
2292                         stream_id = 0;
2293                         back_ptr = &inode->i_lte;
2294                 } else {
2295                         stream_id = inode->i_ads_entries[stream_idx - 1].stream_id;
2296                         back_ptr = &inode->i_ads_entries[stream_idx - 1].lte;
2297                 }
2298                 ret = extract_resource_to_staging_dir(inode, stream_id,
2299                                                       &lte, size, ctx);
2300                 *back_ptr = lte;
2301         }
2302         return ret;
2303 }
2304
2305 /* Unlink a non-directory or alternate data stream */
2306 static int
2307 wimfs_unlink(const char *path)
2308 {
2309         struct wim_dentry *dentry;
2310         struct wim_lookup_table_entry *lte;
2311         int ret;
2312         u16 stream_idx;
2313         struct wimfs_context *ctx = wimfs_get_context();
2314
2315         ret = wim_pathname_to_stream(ctx->wim, path, get_lookup_flags(ctx),
2316                                      &dentry, &lte, &stream_idx);
2317
2318         if (ret != 0)
2319                 return ret;
2320
2321         if (inode_stream_name_nbytes(dentry->d_inode, stream_idx) == 0)
2322                 remove_dentry(dentry, ctx->wim->lookup_table);
2323         else
2324                 inode_remove_ads(dentry->d_inode, stream_idx - 1,
2325                                  ctx->wim->lookup_table);
2326         return 0;
2327 }
2328
2329 #ifdef HAVE_UTIMENSAT
2330 /*
2331  * Change the timestamp on a file dentry.
2332  *
2333  * Note that alternate data streams do not have their own timestamps.
2334  */
2335 static int
2336 wimfs_utimens(const char *path, const struct timespec tv[2])
2337 {
2338         struct wim_inode *inode;
2339         WIMStruct *wim = wimfs_get_WIMStruct();
2340
2341         inode = wim_pathname_to_inode(wim, path);
2342         if (!inode)
2343                 return -errno;
2344
2345         if (tv[0].tv_nsec != UTIME_OMIT) {
2346                 if (tv[0].tv_nsec == UTIME_NOW)
2347                         inode->i_last_access_time = get_wim_timestamp();
2348                 else
2349                         inode->i_last_access_time = timespec_to_wim_timestamp(tv[0]);
2350         }
2351         if (tv[1].tv_nsec != UTIME_OMIT) {
2352                 if (tv[1].tv_nsec == UTIME_NOW)
2353                         inode->i_last_write_time = get_wim_timestamp();
2354                 else
2355                         inode->i_last_write_time = timespec_to_wim_timestamp(tv[1]);
2356         }
2357         return 0;
2358 }
2359 #else /* HAVE_UTIMENSAT */
2360 static int
2361 wimfs_utime(const char *path, struct utimbuf *times)
2362 {
2363         struct wim_inode *inode;
2364         WIMStruct *wim = wimfs_get_WIMStruct();
2365
2366         inode = wim_pathname_to_inode(wim, path);
2367         if (!inode)
2368                 return -errno;
2369
2370         inode->i_last_write_time = unix_timestamp_to_wim(times->modtime);
2371         inode->i_last_access_time = unix_timestamp_to_wim(times->actime);
2372         return 0;
2373 }
2374 #endif /* !HAVE_UTIMENSAT */
2375
2376 /* Writes to a file in the WIM filesystem.
2377  * It may be an alternate data stream, but here we don't even notice because we
2378  * just get a lookup table entry. */
2379 static int
2380 wimfs_write(const char *path, const char *buf, size_t size,
2381             off_t offset, struct fuse_file_info *fi)
2382 {
2383         struct wimfs_fd *fd = (struct wimfs_fd*)(uintptr_t)fi->fh;
2384         int ret;
2385
2386         if (!fd)
2387                 return -EBADF;
2388
2389         wimlib_assert(fd->f_lte != NULL);
2390         wimlib_assert(fd->f_lte->staging_file_name != NULL);
2391         wimlib_assert(filedes_valid(&fd->staging_fd));
2392         wimlib_assert(fd->f_inode != NULL);
2393
2394         /* Write the data. */
2395         ret = raw_pwrite(&fd->staging_fd, buf, size, offset);
2396         if (ret == -1)
2397                 return -errno;
2398
2399         /* Update file size */
2400         if (offset + size > fd->f_lte->size) {
2401                 DEBUG("Update file size %"PRIu64 " => %"PRIu64"",
2402                       fd->f_lte->size, offset + size);
2403                 fd->f_lte->size = offset + size;
2404         }
2405
2406         /* Update timestamps */
2407         touch_inode(fd->f_inode);
2408         return ret;
2409 }
2410
2411 static struct fuse_operations wimfs_operations = {
2412         .chmod       = wimfs_chmod,
2413         .chown       = wimfs_chown,
2414         .destroy     = wimfs_destroy,
2415         .fgetattr    = wimfs_fgetattr,
2416         .ftruncate   = wimfs_ftruncate,
2417         .getattr     = wimfs_getattr,
2418 #ifdef ENABLE_XATTR
2419         .getxattr    = wimfs_getxattr,
2420 #endif
2421         .link        = wimfs_link,
2422 #ifdef ENABLE_XATTR
2423         .listxattr   = wimfs_listxattr,
2424 #endif
2425         .mkdir       = wimfs_mkdir,
2426         .mknod       = wimfs_mknod,
2427         .open        = wimfs_open,
2428         .opendir     = wimfs_opendir,
2429         .read        = wimfs_read,
2430         .readdir     = wimfs_readdir,
2431         .readlink    = wimfs_readlink,
2432         .release     = wimfs_release,
2433         .releasedir  = wimfs_releasedir,
2434 #ifdef ENABLE_XATTR
2435         .removexattr = wimfs_removexattr,
2436 #endif
2437         .rename      = wimfs_rename,
2438         .rmdir       = wimfs_rmdir,
2439 #ifdef ENABLE_XATTR
2440         .setxattr    = wimfs_setxattr,
2441 #endif
2442         .symlink     = wimfs_symlink,
2443         .truncate    = wimfs_truncate,
2444         .unlink      = wimfs_unlink,
2445 #ifdef HAVE_UTIMENSAT
2446         .utimens     = wimfs_utimens,
2447 #else
2448         .utime       = wimfs_utime,
2449 #endif
2450         .write       = wimfs_write,
2451
2452         /* wimfs keeps file descriptor structures (struct wimfs_fd), so there is
2453          * no need to have the file path provided on operations such as read()
2454          * where only the file descriptor is needed. */
2455 #if FUSE_MAJOR_VERSION > 2 || (FUSE_MAJOR_VERSION == 2 && FUSE_MINOR_VERSION >= 8)
2456         .flag_nullpath_ok = 1,
2457 #endif
2458 #if FUSE_MAJOR_VERSION > 2 || (FUSE_MAJOR_VERSION == 2 && FUSE_MINOR_VERSION >= 9)
2459         .flag_nopath = 1,
2460         .flag_utime_omit_ok = 1,
2461 #endif
2462 };
2463
2464
2465 /* API function documented in wimlib.h  */
2466 WIMLIBAPI int
2467 wimlib_mount_image(WIMStruct *wim, int image, const char *dir,
2468                    int mount_flags, const char *staging_dir)
2469 {
2470         int argc;
2471         char *argv[16];
2472         int ret;
2473         char *dir_copy;
2474         struct wim_image_metadata *imd;
2475         struct wimfs_context ctx;
2476         struct wim_inode *inode;
2477
2478         DEBUG("Mount: wim = %p, image = %d, dir = %s, flags = %d, ",
2479               wim, image, dir, mount_flags);
2480
2481         if (!wim || !dir)
2482                 return WIMLIB_ERR_INVALID_PARAM;
2483
2484         if (mount_flags & ~(WIMLIB_MOUNT_FLAG_READWRITE |
2485                             WIMLIB_MOUNT_FLAG_DEBUG |
2486                             WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_NONE |
2487                             WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR |
2488                             WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS |
2489                             WIMLIB_MOUNT_FLAG_UNIX_DATA |
2490                             WIMLIB_MOUNT_FLAG_ALLOW_OTHER))
2491                 return WIMLIB_ERR_INVALID_PARAM;
2492
2493         if (mount_flags & WIMLIB_MOUNT_FLAG_READWRITE) {
2494                 ret = can_delete_from_wim(wim);
2495                 if (ret)
2496                         return ret;
2497         }
2498
2499         ret = select_wim_image(wim, image);
2500         if (ret)
2501                 return ret;
2502
2503         DEBUG("Selected image %d", image);
2504
2505         imd = wim_get_current_image_metadata(wim);
2506
2507         if (imd->modified) {
2508                 /* wimfs_read() only supports a limited number of stream
2509                  * locations, not including RESOURCE_IN_FILE_ON_DISK,
2510                  * RESOURCE_IN_NTFS_VOLUME, etc. that might appear if files were
2511                  * added to the WIM image.  */
2512                 ERROR("Cannot mount an image with newly added files!");
2513                 return WIMLIB_ERR_INVALID_PARAM;
2514         }
2515
2516         if (mount_flags & WIMLIB_MOUNT_FLAG_READWRITE) {
2517                 ret = lock_wim(wim, wim->in_fd.fd);
2518                 if (ret)
2519                         return ret;
2520         }
2521
2522         /* Use default stream interface if one was not specified */
2523         if (!(mount_flags & (WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_NONE |
2524                        WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR |
2525                        WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS)))
2526                 mount_flags |= WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR;
2527
2528         DEBUG("Initializing struct wimfs_context");
2529         init_wimfs_context(&ctx);
2530         ctx.wim = wim;
2531         ctx.mount_flags = mount_flags;
2532         ctx.image_inode_list = &imd->inode_list;
2533         ctx.default_uid = getuid();
2534         ctx.default_gid = getgid();
2535         wimlib_assert(list_empty(&imd->unhashed_streams));
2536         if (mount_flags & WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS)
2537                 ctx.default_lookup_flags = LOOKUP_FLAG_ADS_OK;
2538
2539         DEBUG("Unlinking message queues in case they already exist");
2540         ret = set_message_queue_names(&ctx, dir);
2541         if (ret)
2542                 goto out_unlock;
2543         unlink_message_queues(&ctx);
2544
2545         DEBUG("Preparing arguments to fuse_main()");
2546
2547         dir_copy = STRDUP(dir);
2548         if (!dir_copy) {
2549                 ret = WIMLIB_ERR_NOMEM;
2550                 goto out_free_message_queue_names;
2551         }
2552
2553         argc = 0;
2554         argv[argc++] = "wimlib";
2555         argv[argc++] = dir_copy;
2556
2557         /* disable multi-threaded operation */
2558         argv[argc++] = "-s";
2559
2560         if (mount_flags & WIMLIB_MOUNT_FLAG_DEBUG)
2561                 argv[argc++] = "-d";
2562
2563         /*
2564          * We provide the use_ino option to the FUSE mount because we are going
2565          * to assign inode numbers ourselves. */
2566         char optstring[256] =
2567                 "use_ino"
2568                 ",subtype=wimfs"
2569                 ",attr_timeout=0"
2570 #if FUSE_MAJOR_VERSION > 2 || (FUSE_MAJOR_VERSION == 2 && FUSE_MINOR_VERSION >= 8)
2571                 ",hard_remove"
2572 #endif
2573                 ",default_permissions"
2574                 ;
2575         argv[argc++] = "-o";
2576         argv[argc++] = optstring;
2577         if ((mount_flags & WIMLIB_MOUNT_FLAG_READWRITE)) {
2578                 /* Read-write mount.  Make the staging directory */
2579                 ret = make_staging_dir(&ctx, staging_dir);
2580                 if (ret)
2581                         goto out_free_dir_copy;
2582         } else {
2583                 /* Read-only mount */
2584                 strcat(optstring, ",ro");
2585         }
2586         if (mount_flags & WIMLIB_MOUNT_FLAG_ALLOW_OTHER)
2587                 strcat(optstring, ",allow_other");
2588         argv[argc] = NULL;
2589
2590 #ifdef ENABLE_DEBUG
2591         {
2592                 int i;
2593                 DEBUG("FUSE command line (argc = %d): ", argc);
2594                 for (i = 0; i < argc; i++) {
2595                         fputs(argv[i], stdout);
2596                         putchar(' ');
2597                 }
2598                 putchar('\n');
2599                 fflush(stdout);
2600         }
2601 #endif
2602
2603         /* Assign inode numbers.  Also, if a read-write mount was requested,
2604          * mark the dentry tree as modified, and add each stream referenced by
2605          * files in the image to a list and preemptively double the number of
2606          * references to each.  The latter is done to allow implementing the
2607          * WIMLIB_UNMOUNT_FLAG_NEW_IMAGE semantics.  */
2608         ctx.next_ino = 1;
2609         INIT_LIST_HEAD(&ctx.orig_stream_list);
2610         if (mount_flags & WIMLIB_MOUNT_FLAG_READWRITE) {
2611                 imd->modified = 1;
2612                 image_for_each_inode(inode, imd) {
2613                         inode->i_ino = ctx.next_ino++;
2614                         for (unsigned i = 0; i <= inode->i_num_ads; i++) {
2615                                 struct wim_lookup_table_entry *lte;
2616
2617                                 lte = inode_stream_lte(inode, i, wim->lookup_table);
2618                                 if (lte)
2619                                         lte->out_refcnt = 0;
2620                         }
2621                 }
2622                 image_for_each_inode(inode, imd) {
2623                         for (unsigned i = 0; i <= inode->i_num_ads; i++) {
2624                                 struct wim_lookup_table_entry *lte;
2625
2626                                 lte = inode_stream_lte(inode, i,
2627                                                        wim->lookup_table);
2628                                 if (lte) {
2629                                         if (lte->out_refcnt == 0)
2630                                                 list_add(&lte->orig_stream_list,
2631                                                          &ctx.orig_stream_list);
2632                                         lte->out_refcnt += inode->i_nlink;
2633                                         lte->refcnt += inode->i_nlink;
2634                                 }
2635                         }
2636                 }
2637         } else {
2638                 image_for_each_inode(inode, imd)
2639                         inode->i_ino = ctx.next_ino++;
2640         }
2641
2642         DEBUG("(next_ino = %"PRIu64")", ctx.next_ino);
2643
2644         DEBUG("Calling fuse_main()");
2645
2646         ret = fuse_main(argc, argv, &wimfs_operations, &ctx);
2647
2648         DEBUG("Returned from fuse_main() (ret = %d)", ret);
2649
2650         if (ret) {
2651                 ret = WIMLIB_ERR_FUSE;
2652         } else {
2653                 if (ctx.have_status)
2654                         ret = ctx.status;
2655                 else
2656                         ret = WIMLIB_ERR_TIMEOUT;
2657         }
2658         if (ctx.daemon_to_unmount_mq != (mqd_t)(-1)) {
2659                 send_unmount_finished_msg(ctx.daemon_to_unmount_mq, ret);
2660                 close_message_queues(&ctx);
2661         }
2662
2663         release_extra_refcnts(&ctx);
2664
2665         /* Try to delete the staging directory if a deletion wasn't yet
2666          * attempted due to an earlier error */
2667         if (ctx.staging_dir_name)
2668                 delete_staging_dir(&ctx);
2669 out_free_dir_copy:
2670         FREE(dir_copy);
2671 out_unlock:
2672         wim->wim_locked = 0;
2673 out_free_message_queue_names:
2674         free_message_queue_names(&ctx);
2675         return ret;
2676 }
2677
2678 /* API function documented in wimlib.h  */
2679 WIMLIBAPI int
2680 wimlib_unmount_image(const char *dir, int unmount_flags,
2681                      wimlib_progress_func_t progress_func)
2682 {
2683         int ret;
2684         struct wimfs_context wimfs_ctx;
2685
2686         if (unmount_flags & ~(WIMLIB_UNMOUNT_FLAG_CHECK_INTEGRITY |
2687                               WIMLIB_UNMOUNT_FLAG_COMMIT |
2688                               WIMLIB_UNMOUNT_FLAG_REBUILD |
2689                               WIMLIB_UNMOUNT_FLAG_RECOMPRESS |
2690                               WIMLIB_UNMOUNT_FLAG_LAZY |
2691                               WIMLIB_UNMOUNT_FLAG_NEW_IMAGE))
2692                 return WIMLIB_ERR_INVALID_PARAM;
2693
2694         init_wimfs_context(&wimfs_ctx);
2695
2696         ret = set_message_queue_names(&wimfs_ctx, dir);
2697         if (ret != 0)
2698                 goto out;
2699
2700         ret = open_message_queues(&wimfs_ctx, false);
2701         if (ret != 0)
2702                 goto out_free_message_queue_names;
2703
2704         ret = send_unmount_request_msg(wimfs_ctx.unmount_to_daemon_mq,
2705                                        unmount_flags,
2706                                        progress_func != NULL);
2707         if (ret != 0)
2708                 goto out_close_message_queues;
2709
2710         ret = execute_fusermount(dir, (unmount_flags & WIMLIB_UNMOUNT_FLAG_LAZY) != 0);
2711         if (ret != 0)
2712                 goto out_close_message_queues;
2713
2714         struct unmount_msg_handler_context handler_ctx = {
2715                 .hdr = {
2716                         .timeout_seconds = 5,
2717                 },
2718                 .daemon_pid = 0,
2719                 .progress_func = progress_func,
2720         };
2721
2722         ret = message_loop(wimfs_ctx.daemon_to_unmount_mq,
2723                            &unmount_msg_handler_callbacks,
2724                            &handler_ctx.hdr);
2725         if (ret == 0)
2726                 ret = handler_ctx.status;
2727 out_close_message_queues:
2728         close_message_queues(&wimfs_ctx);
2729 out_free_message_queue_names:
2730         free_message_queue_names(&wimfs_ctx);
2731 out:
2732         return ret;
2733 }
2734
2735 #else /* WITH_FUSE */
2736
2737
2738 static int
2739 mount_unsupported_error(void)
2740 {
2741 #if defined(__WIN32__)
2742         ERROR("Sorry-- Mounting WIM images is not supported on Windows!");
2743 #else
2744         ERROR("wimlib was compiled with --without-fuse, which disables support "
2745               "for mounting WIMs.");
2746 #endif
2747         return WIMLIB_ERR_UNSUPPORTED;
2748 }
2749
2750 WIMLIBAPI int
2751 wimlib_unmount_image(const tchar *dir, int unmount_flags,
2752                      wimlib_progress_func_t progress_func)
2753 {
2754         return mount_unsupported_error();
2755 }
2756
2757 WIMLIBAPI int
2758 wimlib_mount_image(WIMStruct *wim, int image, const tchar *dir,
2759                    int mount_flags, const tchar *staging_dir)
2760 {
2761         return mount_unsupported_error();
2762 }
2763
2764 #endif /* !WITH_FUSE */