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