]> wimlib.net Git - wimlib/blob - src/update_image.c
rename_wim_path(): Free full paths in renamed trees
[wimlib] / src / update_image.c
1 /*
2  * update_image.c - Update a WIM image.
3  */
4
5 /*
6  * Copyright (C) 2013 Eric Biggers
7  *
8  * This file is part of wimlib, a library for working with WIM files.
9  *
10  * wimlib is free software; you can redistribute it and/or modify it under the
11  * terms of the GNU General Public License as published by the Free
12  * Software Foundation; either version 3 of the License, or (at your option)
13  * any later version.
14  *
15  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
16  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17  * A PARTICULAR PURPOSE. See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with wimlib; if not, see http://www.gnu.org/licenses/.
22  */
23
24 #include "wimlib_internal.h"
25 #include "dentry.h"
26 #include "lookup_table.h"
27 #include "security.h"
28 #include "xml.h"
29 #include <errno.h>
30
31 #ifdef __WIN32__
32 #  include "win32.h"
33 #endif
34
35 /* Overlays @branch onto @target, both of which must be directories. */
36 static int
37 do_overlay(struct wim_dentry *target, struct wim_dentry *branch)
38 {
39         struct rb_root *rb_root;
40
41         DEBUG("Doing overlay \"%"WS"\" => \"%"WS"\"",
42               branch->file_name, target->file_name);
43
44         if (!dentry_is_directory(branch) || !dentry_is_directory(target)) {
45                 ERROR("Cannot overlay \"%"WS"\" onto existing dentry: "
46                       "is not directory-on-directory!", branch->file_name);
47                 return WIMLIB_ERR_INVALID_OVERLAY;
48         }
49
50         rb_root = &branch->d_inode->i_children;
51         LIST_HEAD(moved_children);
52         while (rb_root->rb_node) { /* While @branch has children... */
53                 struct wim_dentry *child = rbnode_dentry(rb_root->rb_node);
54                 struct wim_dentry *existing;
55
56                 /* Move @child to the directory @target */
57                 unlink_dentry(child);
58                 existing = dentry_add_child(target, child);
59
60                 /* File or directory with same name already exists */
61                 if (existing) {
62                         int ret;
63                         ret = do_overlay(existing, child);
64                         if (ret) {
65                                 /* Overlay failed.  Revert the changes. */
66                                 dentry_add_child(branch, child);
67                                 list_for_each_entry(child, &moved_children, tmp_list)
68                                 {
69                                         unlink_dentry(child);
70                                         dentry_add_child(branch, child);
71                                 }
72                                 return ret;
73                         }
74                 } else {
75                         list_add(&child->tmp_list, &moved_children);
76                 }
77         }
78         free_dentry(branch);
79         return 0;
80 }
81
82 /* Attach or overlay a branch onto the WIM image.
83  *
84  * @root_p:
85  *      Pointer to the root of the WIM image, or pointer to NULL if it has not
86  *      been created yet.
87  * @branch
88  *      Branch to add.
89  * @target_path:
90  *      Path in the WIM image to add the branch, with leading and trailing
91  *      slashes stripped.
92  */
93 static int
94 attach_branch(struct wim_dentry **root_p, struct wim_dentry *branch,
95               tchar *target_path)
96 {
97         tchar *slash;
98         struct wim_dentry *dentry, *parent, *target;
99         int ret;
100
101         DEBUG("Attaching branch \"%"WS"\" => \"%"TS"\"",
102               branch->file_name, target_path);
103
104         if (*target_path == T('\0')) {
105                 /* Target: root directory */
106                 if (*root_p) {
107                         /* Overlay on existing root */
108                         return do_overlay(*root_p, branch);
109                 } else {
110                         if (!dentry_is_directory(branch)) {
111                                 ERROR("Cannot set non-directory as root of WIM image");
112                                 return WIMLIB_ERR_NOTDIR;
113                         }
114                         /* Set as root */
115                         *root_p = branch;
116                         return 0;
117                 }
118         }
119
120         /* Adding a non-root branch.  Create root if it hasn't been created
121          * already. */
122         if (!*root_p) {
123                 ret  = new_filler_directory(T(""), root_p);
124                 if (ret)
125                         return ret;
126         }
127
128         /* Walk the path to the branch, creating filler directories as needed.
129          * */
130         parent = *root_p;
131         while ((slash = tstrchr(target_path, T('/')))) {
132                 *slash = T('\0');
133                 dentry = get_dentry_child_with_name(parent, target_path);
134                 if (!dentry) {
135                         ret = new_filler_directory(target_path, &dentry);
136                         if (ret)
137                                 return ret;
138                         dentry_add_child(parent, dentry);
139                 }
140                 parent = dentry;
141                 target_path = slash;
142                 /* Skip over slashes.  Note: this cannot overrun the length of
143                  * the string because the last character cannot be a slash, as
144                  * trailing slashes were tripped.  */
145                 do {
146                         ++target_path;
147                 } while (*target_path == T('/'));
148         }
149
150         /* If the target path already existed, overlay the branch onto it.
151          * Otherwise, set the branch as the target path. */
152         target = get_dentry_child_with_utf16le_name(parent, branch->file_name,
153                                                     branch->file_name_nbytes);
154         if (target) {
155                 return do_overlay(target, branch);
156         } else {
157                 dentry_add_child(parent, branch);
158                 return 0;
159         }
160 }
161
162 static int
163 execute_add_command(WIMStruct *wim,
164                     const struct wimlib_update_command *add_cmd,
165                     wimlib_progress_func_t progress_func)
166 {
167         int ret;
168         int add_flags;
169         tchar *fs_source_path;
170         tchar *wim_target_path;
171         struct wim_inode_table inode_table;
172         struct sd_set sd_set;
173         struct wim_image_metadata *imd;
174         struct list_head unhashed_streams;
175         struct add_image_params params;
176         int (*capture_tree)(struct wim_dentry **,
177                             const tchar *,
178                             struct add_image_params *);
179         union wimlib_progress_info progress;
180         struct wimlib_capture_config *config;
181 #ifdef WITH_NTFS_3G
182         struct _ntfs_volume *ntfs_vol = NULL;
183 #endif
184         void *extra_arg;
185         struct wim_dentry *branch;
186         bool rollback_sd = true;
187
188         wimlib_assert(add_cmd->op == WIMLIB_UPDATE_OP_ADD);
189         add_flags = add_cmd->add.add_flags;
190         fs_source_path = add_cmd->add.fs_source_path;
191         wim_target_path = add_cmd->add.wim_target_path;
192         config = add_cmd->add.config;
193         DEBUG("fs_source_path=\"%"TS"\", wim_target_path=\"%"TS"\", add_flags=%#x",
194               fs_source_path, wim_target_path, add_flags);
195
196         imd = wim->image_metadata[wim->current_image - 1];
197
198         if (add_flags & WIMLIB_ADD_FLAG_NTFS) {
199         #ifdef WITH_NTFS_3G
200                 capture_tree = build_dentry_tree_ntfs;
201                 extra_arg = &ntfs_vol;
202                 if (imd->ntfs_vol != NULL) {
203                         ERROR("NTFS volume already set");
204                         ret = WIMLIB_ERR_INVALID_PARAM;
205                         goto out;
206                 }
207         #else
208                 ret = WIMLIB_ERR_INVALID_PARAM;
209                 goto out;
210         #endif
211         } else {
212         #ifdef __WIN32__
213                 capture_tree = win32_build_dentry_tree;
214         #else
215                 capture_tree = unix_build_dentry_tree;
216         #endif
217                 extra_arg = NULL;
218         }
219
220         ret = init_inode_table(&inode_table, 9001);
221         if (ret)
222                 goto out;
223
224         ret = init_sd_set(&sd_set, imd->security_data);
225         if (ret)
226                 goto out_destroy_inode_table;
227
228         INIT_LIST_HEAD(&unhashed_streams);
229         wim->lookup_table->unhashed_streams = &unhashed_streams;
230         params.lookup_table = wim->lookup_table;
231         params.inode_table = &inode_table;
232         params.sd_set = &sd_set;
233         params.config = config;
234         params.add_flags = add_flags;
235         params.progress_func = progress_func;
236         params.extra_arg = extra_arg;
237
238         if (progress_func) {
239                 memset(&progress, 0, sizeof(progress));
240                 progress.scan.source = fs_source_path;
241                 progress.scan.wim_target_path = wim_target_path;
242                 progress_func(WIMLIB_PROGRESS_MSG_SCAN_BEGIN, &progress);
243         }
244         config->_prefix = fs_source_path;
245         config->_prefix_num_tchars = tstrlen(fs_source_path);
246
247         if (wim_target_path[0] == T('\0'))
248                 add_flags |= WIMLIB_ADD_FLAG_ROOT;
249         ret = (*capture_tree)(&branch, fs_source_path, &params);
250         if (ret) {
251                 ERROR("Failed to build dentry tree for \"%"TS"\"",
252                       fs_source_path);
253                 goto out_destroy_sd_set;
254         }
255         if (branch) {
256                 /* Use the target name, not the source name, for
257                  * the root of each branch from a capture
258                  * source.  (This will also set the root dentry
259                  * of the entire image to be unnamed.) */
260                 ret = set_dentry_name(branch,
261                                       path_basename(wim_target_path));
262                 if (ret)
263                         goto out_ntfs_umount;
264
265                 ret = attach_branch(&imd->root_dentry, branch, wim_target_path);
266                 if (ret)
267                         goto out_ntfs_umount;
268         }
269         if (progress_func)
270                 progress_func(WIMLIB_PROGRESS_MSG_SCAN_END, &progress);
271         list_splice_tail(&unhashed_streams, &imd->unhashed_streams);
272 #ifdef WITH_NTFS_3G
273         imd->ntfs_vol = ntfs_vol;
274 #endif
275         inode_table_prepare_inode_list(&inode_table, &imd->inode_list);
276         ret = 0;
277         rollback_sd = false;
278         if (add_flags & WIMLIB_ADD_FLAG_RPFIX)
279                 wim->hdr.flags |= WIM_HDR_FLAG_RP_FIX;
280         goto out_destroy_sd_set;
281 out_ntfs_umount:
282 #ifdef WITH_NTFS_3G
283         if (ntfs_vol)
284                 do_ntfs_umount(ntfs_vol);
285 #endif
286         free_dentry_tree(branch, wim->lookup_table);
287 out_destroy_sd_set:
288         destroy_sd_set(&sd_set, rollback_sd);
289 out_destroy_inode_table:
290         destroy_inode_table(&inode_table);
291 out:
292         return ret;
293 }
294
295 static int
296 execute_delete_command(WIMStruct *wim,
297                        const struct wimlib_update_command *delete_cmd)
298 {
299         int flags;
300         const tchar *wim_path;
301         struct wim_dentry *tree;
302         bool is_root;
303
304         wimlib_assert(delete_cmd->op == WIMLIB_UPDATE_OP_DELETE);
305         flags = delete_cmd->delete.delete_flags;
306         wim_path = delete_cmd->delete.wim_path;
307
308         DEBUG("Deleting WIM path \"%"TS"\" (flags=%#x)", wim_path, flags);
309
310         tree = get_dentry(wim, wim_path);
311         if (!tree) {
312                 /* Path to delete does not exist in the WIM. */
313                 if (flags & WIMLIB_DELETE_FLAG_FORCE) {
314                         return 0;
315                 } else {
316                         ERROR("Path \"%"TS"\" does not exist in WIM image %d",
317                               wim_path, wim->current_image);
318                         return WIMLIB_ERR_PATH_DOES_NOT_EXIST;
319                 }
320         }
321
322         if (dentry_is_directory(tree) && !(flags & WIMLIB_DELETE_FLAG_RECURSIVE)) {
323                 ERROR("Path \"%"TS"\" in WIM image %d is a directory "
324                       "but a recursive delete was not requested",
325                       wim_path, wim->current_image);
326                 return WIMLIB_ERR_IS_DIRECTORY;
327         }
328
329         is_root = dentry_is_root(tree);
330         unlink_dentry(tree);
331         free_dentry_tree(tree, wim->lookup_table);
332         if (is_root)
333                 wim->image_metadata[wim->current_image - 1]->root_dentry = NULL;
334         return 0;
335 }
336
337 static int
338 free_dentry_full_path(struct wim_dentry *dentry, void *_ignore)
339 {
340         FREE(dentry->_full_path);
341         dentry->_full_path = NULL;
342         return 0;
343 }
344
345 /*
346  * Rename a file or directory in the WIM.
347  *
348  * This is also called from wimfs_rename() in the FUSE mount code.
349  */
350 int
351 rename_wim_path(WIMStruct *wim, const tchar *from, const tchar *to)
352 {
353         struct wim_dentry *src;
354         struct wim_dentry *dst;
355         struct wim_dentry *parent_of_dst;
356         int ret;
357
358         /* This rename() implementation currently only supports actual files
359          * (not alternate data streams) */
360
361         src = get_dentry(wim, from);
362         if (!src)
363                 return -errno;
364
365         dst = get_dentry(wim, to);
366
367         if (dst) {
368                 /* Destination file exists */
369
370                 if (src == dst) /* Same file */
371                         return 0;
372
373                 if (!dentry_is_directory(src)) {
374                         /* Cannot rename non-directory to directory. */
375                         if (dentry_is_directory(dst))
376                                 return -EISDIR;
377                 } else {
378                         /* Cannot rename directory to a non-directory or a non-empty
379                          * directory */
380                         if (!dentry_is_directory(dst))
381                                 return -ENOTDIR;
382                         if (inode_has_children(dst->d_inode))
383                                 return -ENOTEMPTY;
384                 }
385                 parent_of_dst = dst->parent;
386         } else {
387                 /* Destination does not exist */
388                 parent_of_dst = get_parent_dentry(wim, to);
389                 if (!parent_of_dst)
390                         return -errno;
391
392                 if (!dentry_is_directory(parent_of_dst))
393                         return -ENOTDIR;
394         }
395
396         ret = set_dentry_name(src, path_basename(to));
397         if (ret)
398                 return -ENOMEM;
399         if (dst) {
400                 unlink_dentry(dst);
401                 free_dentry_tree(dst, wim->lookup_table);
402         }
403         unlink_dentry(src);
404         dentry_add_child(parent_of_dst, src);
405         if (src->_full_path)
406                 for_dentry_in_tree(src, free_dentry_full_path, NULL);
407         return 0;
408 }
409
410
411 static int
412 execute_rename_command(WIMStruct *wim,
413                        const struct wimlib_update_command *rename_cmd)
414 {
415         int ret;
416
417         wimlib_assert(rename_cmd->op == WIMLIB_UPDATE_OP_RENAME);
418
419         ret = rename_wim_path(wim, rename_cmd->rename.wim_source_path,
420                               rename_cmd->rename.wim_target_path);
421         if (ret) {
422                 ret = -ret;
423                 errno = ret;
424                 ERROR_WITH_ERRNO("Can't rename \"%"TS"\" to \"%"TS"\"",
425                                  rename_cmd->rename.wim_source_path,
426                                  rename_cmd->rename.wim_target_path);
427                 switch (ret) {
428                 case ENOMEM:
429                         ret = WIMLIB_ERR_NOMEM;
430                         break;
431                 case ENOTDIR:
432                         ret = WIMLIB_ERR_NOTDIR;
433                         break;
434                 case ENOTEMPTY:
435                         ret = WIMLIB_ERR_NOTEMPTY;
436                         break;
437                 case EISDIR:
438                         ret = WIMLIB_ERR_IS_DIRECTORY;
439                         break;
440                 case ENOENT:
441                 default:
442                         ret = WIMLIB_ERR_PATH_DOES_NOT_EXIST;
443                         break;
444                 }
445         }
446         return ret;
447 }
448
449 static inline const tchar *
450 update_op_to_str(int op)
451 {
452         switch (op) {
453         case WIMLIB_UPDATE_OP_ADD:
454                 return T("add");
455         case WIMLIB_UPDATE_OP_DELETE:
456                 return T("delete");
457         case WIMLIB_UPDATE_OP_RENAME:
458                 return T("rename");
459         default:
460                 wimlib_assert(0);
461         }
462 }
463
464 static int
465 execute_update_commands(WIMStruct *wim,
466                         const struct wimlib_update_command *cmds,
467                         size_t num_cmds,
468                         wimlib_progress_func_t progress_func)
469 {
470         int ret = 0;
471         for (size_t i = 0; i < num_cmds; i++) {
472                 DEBUG("Executing update command %zu of %zu (op=%"TS")",
473                       i + 1, num_cmds, update_op_to_str(cmds[i].op));
474                 switch (cmds[i].op) {
475                 case WIMLIB_UPDATE_OP_ADD:
476                         ret = execute_add_command(wim, &cmds[i], progress_func);
477                         break;
478                 case WIMLIB_UPDATE_OP_DELETE:
479                         ret = execute_delete_command(wim, &cmds[i]);
480                         break;
481                 case WIMLIB_UPDATE_OP_RENAME:
482                         ret = execute_rename_command(wim, &cmds[i]);
483                         break;
484                 default:
485                         wimlib_assert(0);
486                 }
487                 if (ret)
488                         break;
489         }
490         return ret;
491 }
492
493 static int
494 check_add_command(struct wimlib_update_command *cmd,
495                   const struct wim_header *hdr)
496 {
497         int add_flags = cmd->add.add_flags;
498
499         /* Are we adding the entire image or not?  An empty wim_target_path
500          * indicates that the tree we're adding is to be placed in the root of
501          * the image.  We consider this to be capturing the entire image,
502          * although it could potentially be an overlay on an existing root as
503          * well. */
504         bool is_entire_image = cmd->add.wim_target_path[0] == T('\0');
505
506 #ifdef __WIN32__
507         /* Check for flags not supported on Windows */
508         if (add_flags & WIMLIB_ADD_FLAG_NTFS) {
509                 ERROR("wimlib was compiled without support for NTFS-3g, so");
510                 ERROR("we cannot capture a WIM image directly from a NTFS volume");
511                 return WIMLIB_ERR_UNSUPPORTED;
512         }
513         if (add_flags & WIMLIB_ADD_FLAG_UNIX_DATA) {
514                 ERROR("Capturing UNIX-specific data is not supported on Windows");
515                 return WIMLIB_ERR_UNSUPPORTED;
516         }
517         if (add_flags & WIMLIB_ADD_FLAG_DEREFERENCE) {
518                 ERROR("Dereferencing symbolic links is not supported on Windows");
519                 return WIMLIB_ERR_UNSUPPORTED;
520         }
521 #endif
522
523         /* VERBOSE implies EXCLUDE_VERBOSE */
524         if (add_flags & WIMLIB_ADD_FLAG_VERBOSE)
525                 add_flags |= WIMLIB_ADD_FLAG_EXCLUDE_VERBOSE;
526
527         /* Check for contradictory reparse point fixup flags */
528         if ((add_flags & (WIMLIB_ADD_FLAG_RPFIX |
529                           WIMLIB_ADD_FLAG_NORPFIX)) ==
530                 (WIMLIB_ADD_FLAG_RPFIX |
531                  WIMLIB_ADD_FLAG_NORPFIX))
532         {
533                 ERROR("Cannot specify RPFIX and NORPFIX flags "
534                       "at the same time!");
535                 return WIMLIB_ERR_INVALID_PARAM;
536         }
537
538         /* Set default behavior on reparse point fixups if requested */
539         if ((add_flags & (WIMLIB_ADD_FLAG_RPFIX |
540                           WIMLIB_ADD_FLAG_NORPFIX)) == 0)
541         {
542                 /* Do reparse-point fixups by default if we are capturing an
543                  * entire image and either the header flag is set from previous
544                  * images, or if this is the first image being added. */
545                 if (is_entire_image &&
546                     ((hdr->flags & WIM_HDR_FLAG_RP_FIX) || hdr->image_count == 1))
547                         add_flags |= WIMLIB_ADD_FLAG_RPFIX;
548         }
549
550         if (!is_entire_image) {
551                 if (add_flags & WIMLIB_ADD_FLAG_NTFS) {
552                         ERROR("Cannot add directly from a NTFS volume "
553                               "when not capturing a full image!");
554                         return WIMLIB_ERR_INVALID_PARAM;
555                 }
556
557                 if (add_flags & WIMLIB_ADD_FLAG_RPFIX) {
558                         ERROR("Cannot do reparse point fixups when "
559                               "not capturing a full image!");
560                         return WIMLIB_ERR_INVALID_PARAM;
561                 }
562         }
563         /* We may have modified the add flags. */
564         cmd->add.add_flags = add_flags;
565         return 0;
566 }
567
568 static int
569 check_update_command(struct wimlib_update_command *cmd,
570                      const struct wim_header *hdr)
571 {
572         switch (cmd->op) {
573         case WIMLIB_UPDATE_OP_ADD:
574                 return check_add_command(cmd, hdr);
575         case WIMLIB_UPDATE_OP_DELETE:
576         case WIMLIB_UPDATE_OP_RENAME:
577                 break;
578         }
579         return 0;
580 }
581
582 static int
583 check_update_commands(struct wimlib_update_command *cmds, size_t num_cmds,
584                       const struct wim_header *hdr)
585 {
586         int ret = 0;
587         for (size_t i = 0; i < num_cmds; i++) {
588                 ret = check_update_command(&cmds[i], hdr);
589                 if (ret)
590                         break;
591         }
592         return ret;
593 }
594
595
596 extern void
597 free_update_commands(struct wimlib_update_command *cmds, size_t num_cmds)
598 {
599         if (cmds) {
600                 for (size_t i = 0; i < num_cmds; i++) {
601                         switch (cmds[i].op) {
602                         case WIMLIB_UPDATE_OP_ADD:
603                                 FREE(cmds[i].add.fs_source_path);
604                                 FREE(cmds[i].add.wim_target_path);
605                                 free_capture_config(cmds[i].add.config);
606                                 break;
607                         case WIMLIB_UPDATE_OP_DELETE:
608                                 FREE(cmds[i].delete.wim_path);
609                                 break;
610                         case WIMLIB_UPDATE_OP_RENAME:
611                                 FREE(cmds[i].rename.wim_source_path);
612                                 FREE(cmds[i].rename.wim_target_path);
613                                 break;
614                         }
615                 }
616                 FREE(cmds);
617         }
618 }
619
620 static int
621 copy_update_commands(const struct wimlib_update_command *cmds,
622                      size_t num_cmds,
623                      struct wimlib_update_command **cmds_copy_ret)
624 {
625         int ret;
626         struct wimlib_update_command *cmds_copy;
627
628         cmds_copy = CALLOC(num_cmds, sizeof(cmds[0]));
629         if (!cmds_copy)
630                 goto oom;
631
632         for (size_t i = 0; i < num_cmds; i++) {
633                 cmds_copy[i].op = cmds[i].op;
634                 switch (cmds[i].op) {
635                 case WIMLIB_UPDATE_OP_ADD:
636                         cmds_copy[i].add.fs_source_path =
637                                 canonicalize_fs_path(cmds[i].add.fs_source_path);
638                         cmds_copy[i].add.wim_target_path =
639                                 canonicalize_wim_path(cmds[i].add.wim_target_path);
640                         if (!cmds_copy[i].add.fs_source_path ||
641                             !cmds_copy[i].add.wim_target_path)
642                                 goto oom;
643                         if (cmds[i].add.config) {
644                                 ret = copy_and_canonicalize_capture_config(cmds[i].add.config,
645                                                                            &cmds_copy[i].add.config);
646                                 if (ret)
647                                         goto err;
648                         }
649                         cmds_copy[i].add.add_flags = cmds[i].add.add_flags;
650                         break;
651                 case WIMLIB_UPDATE_OP_DELETE:
652                         cmds_copy[i].delete.wim_path =
653                                 canonicalize_wim_path(cmds[i].delete.wim_path);
654                         if (!cmds_copy[i].delete.wim_path)
655                                 goto oom;
656                         cmds_copy[i].delete.delete_flags = cmds[i].delete.delete_flags;
657                         break;
658                 case WIMLIB_UPDATE_OP_RENAME:
659                         cmds_copy[i].rename.wim_source_path =
660                                 canonicalize_wim_path(cmds[i].rename.wim_source_path);
661                         cmds_copy[i].rename.wim_target_path =
662                                 canonicalize_wim_path(cmds[i].rename.wim_target_path);
663                         if (!cmds_copy[i].rename.wim_source_path ||
664                             !cmds_copy[i].rename.wim_target_path)
665                                 goto oom;
666                         break;
667                 default:
668                         ERROR("Unknown update operation %u", cmds[i].op);
669                         ret = WIMLIB_ERR_INVALID_PARAM;
670                         goto err;
671                 }
672         }
673         *cmds_copy_ret = cmds_copy;
674         ret = 0;
675 out:
676         return ret;
677 oom:
678         ret = WIMLIB_ERR_NOMEM;
679 err:
680         free_update_commands(cmds_copy, num_cmds);
681         goto out;
682 }
683
684 /*
685  * Entry point for making a series of updates to a WIM image.
686  */
687 WIMLIBAPI int
688 wimlib_update_image(WIMStruct *wim,
689                     int image,
690                     const struct wimlib_update_command *cmds,
691                     size_t num_cmds,
692                     int update_flags,
693                     wimlib_progress_func_t progress_func)
694 {
695         int ret;
696         struct wimlib_update_command *cmds_copy;
697
698         DEBUG("Updating image %d with %zu commands", image, num_cmds);
699
700         /* Refuse to update a split WIM. */
701         if (wim->hdr.total_parts != 1) {
702                 ERROR("Cannot update a split WIM!");
703                 ret = WIMLIB_ERR_SPLIT_UNSUPPORTED;
704                 goto out;
705         }
706
707         /* Load the metadata for the image to modify (if not loaded already) */
708         ret = select_wim_image(wim, image);
709         if (ret)
710                 goto out;
711
712         /* Short circuit a successful return if no commands were specified.
713          * Avoids problems with trying to allocate 0 bytes of memory. */
714         if (num_cmds == 0)
715                 goto out;
716
717         DEBUG("Preparing %zu update commands", num_cmds);
718
719         /* Make a copy of the update commands, in the process doing certain
720          * canonicalizations on paths (e.g. translating backslashes to forward
721          * slashes).  This is done to avoid modifying the caller's copy of the
722          * commands. */
723         ret = copy_update_commands(cmds, num_cmds, &cmds_copy);
724         if (ret)
725                 goto out;
726
727         /* Perform additional checks on the update commands before we execute
728          * them. */
729         ret = check_update_commands(cmds_copy, num_cmds, &wim->hdr);
730         if (ret)
731                 goto out_free_cmds_copy;
732
733         /* Actually execute the update commands. */
734         DEBUG("Executing %zu update commands", num_cmds);
735         ret = execute_update_commands(wim, cmds_copy, num_cmds, progress_func);
736         if (ret)
737                 goto out_free_cmds_copy;
738
739         wim->image_metadata[image - 1]->modified = 1;
740
741         /* Statistics about the WIM image, such as the numbers of files and
742          * directories, may have changed.  Call xml_update_image_info() to
743          * recalculate these statistics. */
744         xml_update_image_info(wim, image);
745 out_free_cmds_copy:
746         free_update_commands(cmds_copy, num_cmds);
747 out:
748         return ret;
749 }