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