]> wimlib.net Git - wimlib/blobdiff - src/update_image.c
WIMBoot capture: Override WimBootCompress.ini when config specified
[wimlib] / src / update_image.c
index 8f981ec640def7e1095246b1be3b9e763703f1e3..505a2f668eb085439a6387b3c1834d541ddb6cb4 100644 (file)
@@ -3,7 +3,7 @@
  */
 
 /*
- * Copyright (C) 2013 Eric Biggers
+ * Copyright (C) 2013, 2014 Eric Biggers
  *
  * This file is part of wimlib, a library for working with WIM files.
  *
 #include "wimlib/xml.h"
 
 #include <errno.h>
+#include <sys/stat.h>
 
 /* Overlays @branch onto @target, both of which must be directories. */
 static int
 do_overlay(struct wim_dentry *target, struct wim_dentry *branch)
 {
-       struct rb_root *rb_root;
-
        DEBUG("Doing overlay \"%"WS"\" => \"%"WS"\"",
              branch->file_name, target->file_name);
 
@@ -53,10 +52,9 @@ do_overlay(struct wim_dentry *target, struct wim_dentry *branch)
                return WIMLIB_ERR_INVALID_OVERLAY;
        }
 
-       rb_root = &branch->d_inode->i_children;
        LIST_HEAD(moved_children);
-       while (rb_root->rb_node) { /* While @branch has children... */
-               struct wim_dentry *child = rbnode_dentry(rb_root->rb_node);
+       while (dentry_has_children(branch)) {
+               struct wim_dentry *child = dentry_any_child(branch);
                struct wim_dentry *existing;
 
                /* Move @child to the directory @target */
@@ -88,17 +86,17 @@ do_overlay(struct wim_dentry *target, struct wim_dentry *branch)
 /* Attach or overlay a branch onto the WIM image.
  *
  * @root_p:
- *     Pointer to the root of the WIM image, or pointer to NULL if it has not
- *     been created yet.
+ *     Pointer to the root of the WIM image, or pointer to NULL if it has not
+ *     been created yet.
  * @branch
- *     Branch to add.
+ *     Branch to add.
  * @target_path:
- *     Path in the WIM image to add the branch, with leading and trailing
- *     slashes stripped.
+ *     Path in the WIM image to add the branch, with leading and trailing
+ *     slashes stripped.
  */
 static int
 attach_branch(struct wim_dentry **root_p, struct wim_dentry *branch,
-             tchar *target_path)
+             tchar *target_path, CASE_SENSITIVITY_TYPE case_type)
 {
        tchar *slash;
        struct wim_dentry *dentry, *parent, *target;
@@ -136,7 +134,8 @@ attach_branch(struct wim_dentry **root_p, struct wim_dentry *branch,
        parent = *root_p;
        while ((slash = tstrchr(target_path, WIM_PATH_SEPARATOR))) {
                *slash = T('\0');
-               dentry = get_dentry_child_with_name(parent, target_path);
+               dentry = get_dentry_child_with_name(parent, target_path,
+                                                   case_type);
                if (!dentry) {
                        ret = new_filler_directory(target_path, &dentry);
                        if (ret)
@@ -156,7 +155,8 @@ attach_branch(struct wim_dentry **root_p, struct wim_dentry *branch,
        /* If the target path already existed, overlay the branch onto it.
         * Otherwise, set the branch as the target path. */
        target = get_dentry_child_with_utf16le_name(parent, branch->file_name,
-                                                   branch->file_name_nbytes);
+                                                   branch->file_name_nbytes,
+                                                   case_type);
        if (target) {
                return do_overlay(target, branch);
        } else {
@@ -165,6 +165,95 @@ attach_branch(struct wim_dentry **root_p, struct wim_dentry *branch,
        }
 }
 
+static const char wincfg[] =
+"[ExclusionList]\n"
+"/$ntfs.log\n"
+"/hiberfil.sys\n"
+"/pagefile.sys\n"
+"/System Volume Information\n"
+"/RECYCLER\n"
+"/Windows/CSC\n";
+
+static const tchar *wimboot_cfgfile =
+               T("/Windows/System32/WimBootCompress.ini");
+
+static int
+get_capture_config(const tchar *config_file, struct capture_config *config,
+                  int add_flags, const tchar *fs_source_path)
+{
+       int ret;
+       tchar *tmp_config_file = NULL;
+
+       memset(config, 0, sizeof(*config));
+
+       /* For WIMBoot capture, check for default capture configuration file
+        * unless one was explicitly specified.  */
+       if (!config_file && (add_flags & WIMLIB_ADD_FLAG_WIMBOOT)) {
+
+               /* XXX: Handle loading file correctly when in NTFS volume.  */
+
+               size_t len = tstrlen(fs_source_path) +
+                            tstrlen(wimboot_cfgfile);
+               tmp_config_file = MALLOC((len + 1) * sizeof(tchar));
+               struct stat st;
+
+               tsprintf(tmp_config_file, T("%"TS"%"TS),
+                        fs_source_path, wimboot_cfgfile);
+               if (!tstat(tmp_config_file, &st)) {
+                       config_file = tmp_config_file;
+                       add_flags &= ~WIMLIB_ADD_FLAG_WINCONFIG;
+               } else {
+                       WARNING("\"%"TS"\" does not exist.\n"
+                               "          Using default capture configuration!",
+                               tmp_config_file);
+               }
+       }
+
+       if (add_flags & WIMLIB_ADD_FLAG_WINCONFIG) {
+               /* Use Windows default.  */
+               if (config_file)
+                       return WIMLIB_ERR_INVALID_PARAM;
+               ret = do_read_capture_config_file(T("wincfg"), wincfg,
+                                                 sizeof(wincfg) - 1, config);
+       } else if (config_file) {
+               /* Use the specified configuration file.  */
+               ret = do_read_capture_config_file(config_file, NULL, 0, config);
+       } else {
+               /* ... Or don't use any configuration file at all.  No files
+                * will be excluded from capture, all files will be compressed,
+                * etc.  */
+               ret = 0;
+       }
+       FREE(tmp_config_file);
+       return ret;
+}
+
+static int
+replace_wimboot_cfg(WIMStruct *wim, const tchar *config_file)
+{
+       struct wimlib_update_command cmds[] = {
+               {
+                       .op = WIMLIB_UPDATE_OP_DELETE,
+                       .delete_ = {
+                               .wim_path = (tchar *)wimboot_cfgfile,
+                               .delete_flags = WIMLIB_DELETE_FLAG_FORCE |
+                                               WIMLIB_DELETE_FLAG_RECURSIVE,
+                       },
+               },
+               {
+                       .op = WIMLIB_UPDATE_OP_ADD,
+                       .add = {
+                               .fs_source_path = (tchar *)config_file,
+                               .wim_target_path = (tchar *)wimboot_cfgfile,
+                               .add_flags = 0,
+                               .config_file = NULL,
+                       },
+               },
+       };
+       return wimlib_update_image(wim, wim->current_image,
+                                  cmds, ARRAY_LEN(cmds), 0, NULL);
+}
+
 static int
 execute_add_command(WIMStruct *wim,
                    const struct wimlib_update_command *add_cmd,
@@ -180,7 +269,8 @@ execute_add_command(WIMStruct *wim,
        int (*capture_tree)(struct wim_dentry **,
                            const tchar *,
                            struct add_image_params *);
-       struct wimlib_capture_config *config;
+       const tchar *config_file;
+       struct capture_config config;
 #ifdef WITH_NTFS_3G
        struct _ntfs_volume *ntfs_vol = NULL;
 #endif
@@ -193,7 +283,8 @@ execute_add_command(WIMStruct *wim,
        add_flags = add_cmd->add.add_flags;
        fs_source_path = add_cmd->add.fs_source_path;
        wim_target_path = add_cmd->add.wim_target_path;
-       config = add_cmd->add.config;
+       config_file = add_cmd->add.config_file;
+
        DEBUG("fs_source_path=\"%"TS"\", wim_target_path=\"%"TS"\", add_flags=%#x",
              fs_source_path, wim_target_path, add_flags);
 
@@ -223,19 +314,23 @@ execute_add_command(WIMStruct *wim,
                extra_arg = NULL;
        }
 
+       ret = get_capture_config(config_file, &config,
+                                add_flags, fs_source_path);
+       if (ret)
+               goto out;
 
        ret = init_inode_table(&params.inode_table, 9001);
        if (ret)
-               goto out;
+               goto out_destroy_config;
 
        ret = init_sd_set(&params.sd_set, imd->security_data);
        if (ret)
                goto out_destroy_inode_table;
 
        INIT_LIST_HEAD(&unhashed_streams);
-       wim->lookup_table->unhashed_streams = &unhashed_streams;
        params.lookup_table = wim->lookup_table;
-       params.config = config;
+       params.unhashed_streams = &unhashed_streams;
+       params.config = &config;
        params.add_flags = add_flags;
        params.extra_arg = extra_arg;
 
@@ -244,10 +339,9 @@ execute_add_command(WIMStruct *wim,
        params.progress.scan.wim_target_path = wim_target_path;
        if (progress_func)
                progress_func(WIMLIB_PROGRESS_MSG_SCAN_BEGIN, &params.progress);
-       if (config) {
-               config->_prefix = fs_source_path;
-               config->_prefix_num_tchars = tstrlen(fs_source_path);
-       }
+
+       config.prefix = fs_source_path;
+       config.prefix_num_tchars = tstrlen(fs_source_path);
 
        if (wim_target_path[0] == T('\0'))
                params.add_flags |= WIMLIB_ADD_FLAG_ROOT;
@@ -260,15 +354,32 @@ execute_add_command(WIMStruct *wim,
                 * the root of each branch from a capture
                 * source.  (This will also set the root dentry
                 * of the entire image to be unnamed.) */
-               ret = set_dentry_name(branch,
+               ret = dentry_set_name(branch,
                                      path_basename(wim_target_path));
                if (ret)
                        goto out_ntfs_umount;
 
-               ret = attach_branch(&imd->root_dentry, branch, wim_target_path);
+               ret = attach_branch(&imd->root_dentry, branch, wim_target_path,
+                                   WIMLIB_CASE_PLATFORM_DEFAULT);
                if (ret)
                        goto out_ntfs_umount;
        }
+
+       if (config_file && (add_flags & WIMLIB_ADD_FLAG_WIMBOOT) &&
+           wim_target_path[0] == T('\0'))
+       {
+               /* Save configuration file as \Windows\System32\WimBootCompress.ini  */
+               ret = replace_wimboot_cfg(wim, config_file);
+               if (ret) {
+                       /* Undo attach_branch()  */
+                       if (imd->root_dentry == branch)
+                               imd->root_dentry = NULL;
+                       else
+                               branch = NULL;
+                       goto out_ntfs_umount;
+               }
+       }
+
        if (progress_func)
                progress_func(WIMLIB_PROGRESS_MSG_SCAN_END, &params.progress);
        list_splice_tail(&unhashed_streams, &imd->unhashed_streams);
@@ -291,6 +402,8 @@ out_destroy_sd_set:
        destroy_sd_set(&params.sd_set, rollback_sd);
 out_destroy_inode_table:
        destroy_inode_table(&params.inode_table);
+out_destroy_config:
+       destroy_capture_config(&config);
 out:
        return ret;
 }
@@ -310,7 +423,7 @@ execute_delete_command(WIMStruct *wim,
 
        DEBUG("Deleting WIM path \"%"TS"\" (flags=%#x)", wim_path, flags);
 
-       tree = get_dentry(wim, wim_path);
+       tree = get_dentry(wim, wim_path, WIMLIB_CASE_PLATFORM_DEFAULT);
        if (!tree) {
                /* Path to delete does not exist in the WIM. */
                if (flags & WIMLIB_DELETE_FLAG_FORCE) {
@@ -337,80 +450,6 @@ execute_delete_command(WIMStruct *wim,
        return 0;
 }
 
-static int
-free_dentry_full_path(struct wim_dentry *dentry, void *_ignore)
-{
-       FREE(dentry->_full_path);
-       dentry->_full_path = NULL;
-       return 0;
-}
-
-/*
- * Rename a file or directory in the WIM.
- *
- * This is also called from wimfs_rename() in the FUSE mount code.
- */
-int
-rename_wim_path(WIMStruct *wim, const tchar *from, const tchar *to)
-{
-       struct wim_dentry *src;
-       struct wim_dentry *dst;
-       struct wim_dentry *parent_of_dst;
-       int ret;
-
-       /* This rename() implementation currently only supports actual files
-        * (not alternate data streams) */
-
-       src = get_dentry(wim, from);
-       if (!src)
-               return -errno;
-
-       dst = get_dentry(wim, to);
-
-       if (dst) {
-               /* Destination file exists */
-
-               if (src == dst) /* Same file */
-                       return 0;
-
-               if (!dentry_is_directory(src)) {
-                       /* Cannot rename non-directory to directory. */
-                       if (dentry_is_directory(dst))
-                               return -EISDIR;
-               } else {
-                       /* Cannot rename directory to a non-directory or a non-empty
-                        * directory */
-                       if (!dentry_is_directory(dst))
-                               return -ENOTDIR;
-                       if (dentry_has_children(dst))
-                               return -ENOTEMPTY;
-               }
-               parent_of_dst = dst->parent;
-       } else {
-               /* Destination does not exist */
-               parent_of_dst = get_parent_dentry(wim, to);
-               if (!parent_of_dst)
-                       return -errno;
-
-               if (!dentry_is_directory(parent_of_dst))
-                       return -ENOTDIR;
-       }
-
-       ret = set_dentry_name(src, path_basename(to));
-       if (ret)
-               return -ENOMEM;
-       if (dst) {
-               unlink_dentry(dst);
-               free_dentry_tree(dst, wim->lookup_table);
-       }
-       unlink_dentry(src);
-       dentry_add_child(parent_of_dst, src);
-       if (src->_full_path)
-               for_dentry_in_tree(src, free_dentry_full_path, NULL);
-       return 0;
-}
-
-
 static int
 execute_rename_command(WIMStruct *wim,
                       const struct wimlib_update_command *rename_cmd)
@@ -420,7 +459,8 @@ execute_rename_command(WIMStruct *wim,
        wimlib_assert(rename_cmd->op == WIMLIB_UPDATE_OP_RENAME);
 
        ret = rename_wim_path(wim, rename_cmd->rename.wim_source_path,
-                             rename_cmd->rename.wim_target_path);
+                             rename_cmd->rename.wim_target_path,
+                             WIMLIB_CASE_PLATFORM_DEFAULT);
        if (ret) {
                ret = -ret;
                errno = ret;
@@ -513,28 +553,28 @@ execute_update_commands(WIMStruct *wim,
 }
 
 
-tchar *winpats[] = {
-       T("/$ntfs.log"),
-       T("/hiberfil.sys"),
-       T("/pagefile.sys"),
-       T("/System Volume Information"),
-       T("/RECYCLER"),
-       T("/Windows/CSC"),
-};
-
-static const struct wimlib_capture_config winconfig = {
-       .exclusion_pats = {
-               .num_pats = ARRAY_LEN(winpats),
-               .pats = winpats,
-       },
-};
-
 static int
 check_add_command(struct wimlib_update_command *cmd,
                  const struct wim_header *hdr)
 {
        int add_flags = cmd->add.add_flags;
 
+       if (add_flags & ~(WIMLIB_ADD_FLAG_NTFS |
+                         WIMLIB_ADD_FLAG_DEREFERENCE |
+                         WIMLIB_ADD_FLAG_VERBOSE |
+                         /* BOOT doesn't make sense for wimlib_update_image().  */
+                         /*WIMLIB_ADD_FLAG_BOOT |*/
+                         WIMLIB_ADD_FLAG_WIMBOOT |
+                         WIMLIB_ADD_FLAG_UNIX_DATA |
+                         WIMLIB_ADD_FLAG_NO_ACLS |
+                         WIMLIB_ADD_FLAG_STRICT_ACLS |
+                         WIMLIB_ADD_FLAG_EXCLUDE_VERBOSE |
+                         WIMLIB_ADD_FLAG_RPFIX |
+                         WIMLIB_ADD_FLAG_NORPFIX |
+                         WIMLIB_ADD_FLAG_NO_UNSUPPORTED_EXCLUDE |
+                         WIMLIB_ADD_FLAG_WINCONFIG))
+               return WIMLIB_ERR_INVALID_PARAM;
+
        /* Are we adding the entire image or not?  An empty wim_target_path
         * indicates that the tree we're adding is to be placed in the root of
         * the image.  We consider this to be capturing the entire image,
@@ -604,6 +644,23 @@ check_add_command(struct wimlib_update_command *cmd,
        return 0;
 }
 
+static int
+check_delete_command(const struct wimlib_update_command *cmd)
+{
+       if (cmd->delete_.delete_flags & ~(WIMLIB_DELETE_FLAG_FORCE |
+                                         WIMLIB_DELETE_FLAG_RECURSIVE))
+               return WIMLIB_ERR_INVALID_PARAM;
+       return 0;
+}
+
+static int
+check_rename_command(const struct wimlib_update_command *cmd)
+{
+       if (cmd->rename.rename_flags != 0)
+               return WIMLIB_ERR_INVALID_PARAM;
+       return 0;
+}
+
 static int
 check_update_command(struct wimlib_update_command *cmd,
                     const struct wim_header *hdr)
@@ -612,8 +669,9 @@ check_update_command(struct wimlib_update_command *cmd,
        case WIMLIB_UPDATE_OP_ADD:
                return check_add_command(cmd, hdr);
        case WIMLIB_UPDATE_OP_DELETE:
+               return check_delete_command(cmd);
        case WIMLIB_UPDATE_OP_RENAME:
-               break;
+               return check_rename_command(cmd);
        }
        return 0;
 }
@@ -641,7 +699,7 @@ free_update_commands(struct wimlib_update_command *cmds, size_t num_cmds)
                        case WIMLIB_UPDATE_OP_ADD:
                                FREE(cmds[i].add.fs_source_path);
                                FREE(cmds[i].add.wim_target_path);
-                               free_capture_config(cmds[i].add.config);
+                               FREE(cmds[i].add.config_file);
                                break;
                        case WIMLIB_UPDATE_OP_DELETE:
                                FREE(cmds[i].delete_.wim_path);
@@ -663,7 +721,6 @@ copy_update_commands(const struct wimlib_update_command *cmds,
 {
        int ret;
        struct wimlib_update_command *cmds_copy;
-       const struct wimlib_capture_config *config;
 
        cmds_copy = CALLOC(num_cmds, sizeof(cmds[0]));
        if (!cmds_copy)
@@ -680,14 +737,10 @@ copy_update_commands(const struct wimlib_update_command *cmds,
                        if (!cmds_copy[i].add.fs_source_path ||
                            !cmds_copy[i].add.wim_target_path)
                                goto oom;
-                       config = cmds[i].add.config;
-                       if (cmds[i].add.add_flags & WIMLIB_ADD_FLAG_WINCONFIG)
-                               config = &winconfig;
-                       if (config) {
-                               ret = copy_and_canonicalize_capture_config(config,
-                                                                          &cmds_copy[i].add.config);
-                               if (ret)
-                                       goto err;
+                       if (cmds[i].add.config_file) {
+                               cmds_copy[i].add.config_file = TSTRDUP(cmds[i].add.config_file);
+                               if (!cmds_copy[i].add.config_file)
+                                       goto oom;
                        }
                        cmds_copy[i].add.add_flags = cmds[i].add.add_flags;
                        break;
@@ -737,6 +790,9 @@ wimlib_update_image(WIMStruct *wim,
        struct wimlib_update_command *cmds_copy;
        bool deletion_requested = false;
 
+       if (update_flags & ~WIMLIB_UPDATE_FLAG_SEND_PROGRESS)
+               return WIMLIB_ERR_INVALID_PARAM;
+
        DEBUG("Updating image %d with %zu commands", image, num_cmds);
 
        for (size_t i = 0; i < num_cmds; i++)