]> wimlib.net Git - wimlib/blob - programs/imagex.c
e524135870343292797ac5ea1a185a929c40ed06
[wimlib] / programs / imagex.c
1 /*
2  * imagex.c
3  *
4  * Use wimlib to create, modify, extract, mount, unmount, or display information
5  * about a WIM file
6  */
7
8 /*
9  * Copyright (C) 2012, 2013 Eric Biggers
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
23  */
24
25 #ifdef HAVE_CONFIG_H
26 #  include "config.h" /* Need for PACKAGE_VERSION, etc. */
27 #endif
28
29 #include "wimlib.h"
30 #include "wimlib_tchar.h"
31
32 #include <ctype.h>
33 #include <errno.h>
34
35 #include <inttypes.h>
36 #include <libgen.h>
37 #include <limits.h>
38 #include <stdarg.h>
39 #include <stdlib.h>
40 #include <string.h>
41 #include <sys/stat.h>
42 #include <unistd.h>
43 #include <locale.h>
44
45 #ifdef HAVE_ALLOCA_H
46 #  include <alloca.h>
47 #endif
48
49 #ifdef __WIN32__
50 #  include "imagex-win32.h"
51 #  define tbasename     win32_wbasename
52 #  define tglob         win32_wglob
53 #else /* __WIN32__ */
54 #  include <glob.h>
55 #  include <getopt.h>
56 #  include <langinfo.h>
57 #  define tbasename     basename
58 #  define tglob         glob
59 #endif /* !__WIN32 */
60
61
62 #define ARRAY_LEN(array) (sizeof(array) / sizeof(array[0]))
63
64 #define for_opt(c, opts) while ((c = getopt_long_only(argc, (tchar**)argv, T(""), \
65                                 opts, NULL)) != -1)
66
67 enum imagex_op_type {
68         APPEND = 0,
69         APPLY,
70         CAPTURE,
71         DELETE,
72         DIR,
73         EXPORT,
74         EXTRACT,
75         INFO,
76         JOIN,
77         MOUNT,
78         MOUNTRW,
79         OPTIMIZE,
80         SPLIT,
81         UNMOUNT,
82         UPDATE,
83 };
84
85 static void usage(int cmd_type);
86 static void usage_all(void);
87
88 static bool imagex_be_quiet = false;
89
90
91 static const tchar *usage_strings[] = {
92 [APPEND] =
93 T(
94 IMAGEX_PROGNAME" append (DIRECTORY | NTFS_VOLUME) WIMFILE [IMAGE_NAME]\n"
95 "                     [DESCRIPTION] [--boot] [--check] [--flags EDITION_ID]\n"
96 "                     [--verbose] [--dereference] [--config=FILE]\n"
97 "                     [--threads=NUM_THREADS] [--rebuild] [--unix-data]\n"
98 "                     [--source-list] [--no-acls] [--strict-acls]\n"
99 "                     [--rpfix] [--norpfix]\n"
100 ),
101 [APPLY] =
102 T(
103 IMAGEX_PROGNAME" apply WIMFILE [IMAGE_NUM | IMAGE_NAME | all]\n"
104 "                    (DIRECTORY | NTFS_VOLUME) [--check] [--hardlink]\n"
105 "                    [--symlink] [--verbose] [--ref=\"GLOB\"] [--unix-data]\n"
106 "                    [--no-acls] [--strict-acls] [--rpfix] [--norpfix]\n"
107 "                    [--include-invalid-names]\n"
108 ),
109 [CAPTURE] =
110 T(
111 IMAGEX_PROGNAME" capture (DIRECTORY | NTFS_VOLUME) WIMFILE [IMAGE_NAME]\n"
112 "                      [DESCRIPTION] [--boot] [--check] [--compress=TYPE]\n"
113 "                      [--flags EDITION_ID] [--verbose] [--dereference]\n"
114 "                      [--config=FILE] [--threads=NUM_THREADS] [--unix-data]\n"
115 "                      [--source-list] [--no-acls] [--strict-acls]\n"
116 "                      [--rpfix] [--norpfix]\n"
117 ),
118 [DELETE] =
119 T(
120 IMAGEX_PROGNAME" delete WIMFILE (IMAGE_NUM | IMAGE_NAME | all) [--check] [--soft]\n"
121 ),
122 [DIR] =
123 T(
124 IMAGEX_PROGNAME" dir WIMFILE (IMAGE_NUM | IMAGE_NAME | all)\n"
125 ),
126 [EXPORT] =
127 T(
128 IMAGEX_PROGNAME" export SRC_WIMFILE (SRC_IMAGE_NUM | SRC_IMAGE_NAME | all ) \n"
129 "              DEST_WIMFILE [DEST_IMAGE_NAME] [DEST_IMAGE_DESCRIPTION]\n"
130 "              [--boot] [--check] [--compress=TYPE] [--ref=\"GLOB\"]\n"
131 "              [--threads=NUM_THREADS] [--rebuild]\n"
132 ),
133 [EXTRACT] =
134 T(
135 IMAGEX_PROGNAME" extract WIMFILE (IMAGE_NUM | IMAGE_NAME) [PATH...]\n"
136 "              [--check] [--ref=\"GLOB\"] [--verbose] [--unix-data]\n"
137 "              [--no-acls] [--strict-acls] [--to-stdout] [--dest-dir=DIR]\n"
138 "              [--include-invalid-names]\n"
139 ),
140 [INFO] =
141 T(
142 IMAGEX_PROGNAME" info WIMFILE [IMAGE_NUM | IMAGE_NAME] [NEW_NAME]\n"
143 "                   [NEW_DESC] [--boot] [--check] [--header] [--lookup-table]\n"
144 "                   [--xml] [--extract-xml FILE] [--metadata]\n"
145 ),
146 [JOIN] =
147 T(
148 IMAGEX_PROGNAME" join [--check] WIMFILE SPLIT_WIM...\n"
149 ),
150 [MOUNT] =
151 T(
152 IMAGEX_PROGNAME" mount WIMFILE (IMAGE_NUM | IMAGE_NAME) DIRECTORY\n"
153 "                    [--check] [--debug] [--streams-interface=INTERFACE]\n"
154 "                    [--ref=\"GLOB\"] [--unix-data] [--allow-other]\n"
155 ),
156 [MOUNTRW] =
157 T(
158 IMAGEX_PROGNAME" mountrw WIMFILE [IMAGE_NUM | IMAGE_NAME] DIRECTORY\n"
159 "                      [--check] [--debug] [--streams-interface=INTERFACE]\n"
160 "                      [--staging-dir=DIR] [--unix-data] [--allow-other]\n"
161 ),
162 [OPTIMIZE] =
163 T(
164 IMAGEX_PROGNAME" optimize WIMFILE [--check] [--recompress]\n"
165 "                      [--threads=NUM_THREADS]\n"
166 ),
167 [SPLIT] =
168 T(
169 IMAGEX_PROGNAME" split WIMFILE SPLIT_WIMFILE PART_SIZE_MB [--check]\n"
170 ),
171 [UNMOUNT] =
172 T(
173 IMAGEX_PROGNAME" unmount DIRECTORY [--commit] [--check] [--rebuild] [--lazy]\n"
174 ),
175 [UPDATE] =
176 T(
177 IMAGEX_PROGNAME" update WIMFILE [IMAGE_NUM | IMAGE_NAME] [--check] [--rebuild]\n"
178 "                       [--threads=NUM_THREADS] [DEFAULT_ADD_OPTIONS]\n"
179 "                       [DEFAULT_DELETE_OPTIONS] [--command=STRING] [< CMDFILE]\n"
180 ),
181 };
182
183
184 static void
185 recommend_man_page(const tchar *cmd_name)
186 {
187         const tchar *format_str;
188 #ifdef __WIN32__
189         format_str = T("See "IMAGEX_PROGNAME"%"TS"%"TS".pdf in the "
190                        "doc directory for more details.\n");
191 #else
192         format_str = T("Try `man "IMAGEX_PROGNAME"%"TS"%"TS"' "
193                        "for more details.\n");
194 #endif
195         tprintf(format_str, *cmd_name ? T("-") : T(""), cmd_name);
196 }
197
198 enum {
199         IMAGEX_ALLOW_OTHER_OPTION,
200         IMAGEX_BOOT_OPTION,
201         IMAGEX_CHECK_OPTION,
202         IMAGEX_COMMAND_OPTION,
203         IMAGEX_COMMIT_OPTION,
204         IMAGEX_COMPRESS_OPTION,
205         IMAGEX_CONFIG_OPTION,
206         IMAGEX_DEBUG_OPTION,
207         IMAGEX_DEREFERENCE_OPTION,
208         IMAGEX_DEST_DIR_OPTION,
209         IMAGEX_EXTRACT_XML_OPTION,
210         IMAGEX_FLAGS_OPTION,
211         IMAGEX_FORCE_OPTION,
212         IMAGEX_HARDLINK_OPTION,
213         IMAGEX_HEADER_OPTION,
214         IMAGEX_INCLUDE_INVALID_NAMES_OPTION,
215         IMAGEX_LAZY_OPTION,
216         IMAGEX_LOOKUP_TABLE_OPTION,
217         IMAGEX_METADATA_OPTION,
218         IMAGEX_NORPFIX_OPTION,
219         IMAGEX_NO_ACLS_OPTION,
220         IMAGEX_REBUILD_OPTION,
221         IMAGEX_RECOMPRESS_OPTION,
222         IMAGEX_RECURSIVE_OPTION,
223         IMAGEX_REF_OPTION,
224         IMAGEX_RPFIX_OPTION,
225         IMAGEX_SOFT_OPTION,
226         IMAGEX_SOURCE_LIST_OPTION,
227         IMAGEX_STAGING_DIR_OPTION,
228         IMAGEX_STREAMS_INTERFACE_OPTION,
229         IMAGEX_STRICT_ACLS_OPTION,
230         IMAGEX_SYMLINK_OPTION,
231         IMAGEX_THREADS_OPTION,
232         IMAGEX_TO_STDOUT_OPTION,
233         IMAGEX_UNIX_DATA_OPTION,
234         IMAGEX_VERBOSE_OPTION,
235         IMAGEX_XML_OPTION,
236 };
237
238 static const struct option apply_options[] = {
239         {T("check"),       no_argument,       NULL, IMAGEX_CHECK_OPTION},
240         {T("hardlink"),    no_argument,       NULL, IMAGEX_HARDLINK_OPTION},
241         {T("symlink"),     no_argument,       NULL, IMAGEX_SYMLINK_OPTION},
242         {T("verbose"),     no_argument,       NULL, IMAGEX_VERBOSE_OPTION},
243         {T("ref"),         required_argument, NULL, IMAGEX_REF_OPTION},
244         {T("unix-data"),   no_argument,       NULL, IMAGEX_UNIX_DATA_OPTION},
245         {T("noacls"),      no_argument,       NULL, IMAGEX_NO_ACLS_OPTION},
246         {T("no-acls"),     no_argument,       NULL, IMAGEX_NO_ACLS_OPTION},
247         {T("strict-acls"), no_argument,       NULL, IMAGEX_STRICT_ACLS_OPTION},
248         {T("rpfix"),       no_argument,       NULL, IMAGEX_RPFIX_OPTION},
249         {T("norpfix"),     no_argument,       NULL, IMAGEX_NORPFIX_OPTION},
250         {T("include-invalid-names"), no_argument,       NULL, IMAGEX_INCLUDE_INVALID_NAMES_OPTION},
251         {NULL, 0, NULL, 0},
252 };
253 static const struct option capture_or_append_options[] = {
254         {T("boot"),        no_argument,       NULL, IMAGEX_BOOT_OPTION},
255         {T("check"),       no_argument,       NULL, IMAGEX_CHECK_OPTION},
256         {T("compress"),    required_argument, NULL, IMAGEX_COMPRESS_OPTION},
257         {T("config"),      required_argument, NULL, IMAGEX_CONFIG_OPTION},
258         {T("dereference"), no_argument,       NULL, IMAGEX_DEREFERENCE_OPTION},
259         {T("flags"),       required_argument, NULL, IMAGEX_FLAGS_OPTION},
260         {T("verbose"),     no_argument,       NULL, IMAGEX_VERBOSE_OPTION},
261         {T("threads"),     required_argument, NULL, IMAGEX_THREADS_OPTION},
262         {T("rebuild"),     no_argument,       NULL, IMAGEX_REBUILD_OPTION},
263         {T("unix-data"),   no_argument,       NULL, IMAGEX_UNIX_DATA_OPTION},
264         {T("source-list"), no_argument,       NULL, IMAGEX_SOURCE_LIST_OPTION},
265         {T("noacls"),      no_argument,       NULL, IMAGEX_NO_ACLS_OPTION},
266         {T("no-acls"),     no_argument,       NULL, IMAGEX_NO_ACLS_OPTION},
267         {T("strict-acls"), no_argument,       NULL, IMAGEX_STRICT_ACLS_OPTION},
268         {T("rpfix"),       no_argument,       NULL, IMAGEX_RPFIX_OPTION},
269         {T("norpfix"),     no_argument,       NULL, IMAGEX_NORPFIX_OPTION},
270         {NULL, 0, NULL, 0},
271 };
272 static const struct option delete_options[] = {
273         {T("check"), no_argument, NULL, IMAGEX_CHECK_OPTION},
274         {T("soft"),  no_argument, NULL, IMAGEX_SOFT_OPTION},
275         {NULL, 0, NULL, 0},
276 };
277
278 static const struct option export_options[] = {
279         {T("boot"),       no_argument,       NULL, IMAGEX_BOOT_OPTION},
280         {T("check"),      no_argument,       NULL, IMAGEX_CHECK_OPTION},
281         {T("compress"),   required_argument, NULL, IMAGEX_COMPRESS_OPTION},
282         {T("ref"),        required_argument, NULL, IMAGEX_REF_OPTION},
283         {T("threads"),    required_argument, NULL, IMAGEX_THREADS_OPTION},
284         {T("rebuild"),    no_argument,       NULL, IMAGEX_REBUILD_OPTION},
285         {NULL, 0, NULL, 0},
286 };
287
288 static const struct option extract_options[] = {
289         {T("check"),       no_argument,       NULL, IMAGEX_CHECK_OPTION},
290         {T("verbose"),     no_argument,       NULL, IMAGEX_VERBOSE_OPTION},
291         {T("ref"),         required_argument, NULL, IMAGEX_REF_OPTION},
292         {T("unix-data"),   no_argument,       NULL, IMAGEX_UNIX_DATA_OPTION},
293         {T("noacls"),      no_argument,       NULL, IMAGEX_NO_ACLS_OPTION},
294         {T("no-acls"),     no_argument,       NULL, IMAGEX_NO_ACLS_OPTION},
295         {T("strict-acls"), no_argument,       NULL, IMAGEX_STRICT_ACLS_OPTION},
296         {T("dest-dir"),    required_argument, NULL, IMAGEX_DEST_DIR_OPTION},
297         {T("to-stdout"),   no_argument,       NULL, IMAGEX_TO_STDOUT_OPTION},
298         {T("include-invalid-names"), no_argument, NULL, IMAGEX_INCLUDE_INVALID_NAMES_OPTION},
299         {NULL, 0, NULL, 0},
300 };
301
302 static const struct option info_options[] = {
303         {T("boot"),         no_argument,       NULL, IMAGEX_BOOT_OPTION},
304         {T("check"),        no_argument,       NULL, IMAGEX_CHECK_OPTION},
305         {T("extract-xml"),  required_argument, NULL, IMAGEX_EXTRACT_XML_OPTION},
306         {T("header"),       no_argument,       NULL, IMAGEX_HEADER_OPTION},
307         {T("lookup-table"), no_argument,       NULL, IMAGEX_LOOKUP_TABLE_OPTION},
308         {T("metadata"),     no_argument,       NULL, IMAGEX_METADATA_OPTION},
309         {T("xml"),          no_argument,       NULL, IMAGEX_XML_OPTION},
310         {NULL, 0, NULL, 0},
311 };
312
313 static const struct option join_options[] = {
314         {T("check"), no_argument, NULL, IMAGEX_CHECK_OPTION},
315         {NULL, 0, NULL, 0},
316 };
317
318 static const struct option mount_options[] = {
319         {T("check"),             no_argument,       NULL, IMAGEX_CHECK_OPTION},
320         {T("debug"),             no_argument,       NULL, IMAGEX_DEBUG_OPTION},
321         {T("streams-interface"), required_argument, NULL, IMAGEX_STREAMS_INTERFACE_OPTION},
322         {T("ref"),               required_argument, NULL, IMAGEX_REF_OPTION},
323         {T("staging-dir"),       required_argument, NULL, IMAGEX_STAGING_DIR_OPTION},
324         {T("unix-data"),         no_argument,       NULL, IMAGEX_UNIX_DATA_OPTION},
325         {T("allow-other"),       no_argument,       NULL, IMAGEX_ALLOW_OTHER_OPTION},
326         {NULL, 0, NULL, 0},
327 };
328
329 static const struct option optimize_options[] = {
330         {T("check"),      no_argument, NULL, IMAGEX_CHECK_OPTION},
331         {T("recompress"), no_argument, NULL, IMAGEX_RECOMPRESS_OPTION},
332         {T("threads"),    required_argument, NULL, IMAGEX_THREADS_OPTION},
333         {NULL, 0, NULL, 0},
334 };
335
336 static const struct option split_options[] = {
337         {T("check"), no_argument, NULL, IMAGEX_CHECK_OPTION},
338         {NULL, 0, NULL, 0},
339 };
340
341 static const struct option unmount_options[] = {
342         {T("commit"),  no_argument, NULL, IMAGEX_COMMIT_OPTION},
343         {T("check"),   no_argument, NULL, IMAGEX_CHECK_OPTION},
344         {T("rebuild"), no_argument, NULL, IMAGEX_REBUILD_OPTION},
345         {T("lazy"),    no_argument, NULL, IMAGEX_LAZY_OPTION},
346         {NULL, 0, NULL, 0},
347 };
348
349 static const struct option update_options[] = {
350         /* Careful: some of the options here set the defaults for update
351          * commands, but the flags given to an actual update command (and not to
352          * `imagex update' itself are also handled in
353          * update_command_add_option().  */
354         {T("threads"),     required_argument, NULL, IMAGEX_THREADS_OPTION},
355         {T("check"),       no_argument,       NULL, IMAGEX_CHECK_OPTION},
356         {T("rebuild"),     no_argument,       NULL, IMAGEX_REBUILD_OPTION},
357         {T("command"),     required_argument, NULL, IMAGEX_COMMAND_OPTION},
358
359         /* Default delete options */
360         {T("force"),       no_argument,       NULL, IMAGEX_FORCE_OPTION},
361         {T("recursive"),   no_argument,       NULL, IMAGEX_RECURSIVE_OPTION},
362
363         /* Global add option */
364         {T("config"),      required_argument, NULL, IMAGEX_CONFIG_OPTION},
365
366         /* Default add options */
367         {T("verbose"),     no_argument,       NULL, IMAGEX_VERBOSE_OPTION},
368         {T("dereference"), no_argument,       NULL, IMAGEX_DEREFERENCE_OPTION},
369         {T("unix-data"),   no_argument,       NULL, IMAGEX_UNIX_DATA_OPTION},
370         {T("noacls"),      no_argument,       NULL, IMAGEX_NO_ACLS_OPTION},
371         {T("no-acls"),     no_argument,       NULL, IMAGEX_NO_ACLS_OPTION},
372         {T("strict-acls"), no_argument,       NULL, IMAGEX_STRICT_ACLS_OPTION},
373
374         {NULL, 0, NULL, 0},
375 };
376
377 /* Print formatted error message to stderr. */
378 static void
379 imagex_error(const tchar *format, ...)
380 {
381         va_list va;
382         va_start(va, format);
383         tfputs(T("ERROR: "), stderr);
384         tvfprintf(stderr, format, va);
385         tputc(T('\n'), stderr);
386         va_end(va);
387 }
388
389 /* Print formatted error message to stderr. */
390 static void
391 imagex_error_with_errno(const tchar *format, ...)
392 {
393         int errno_save = errno;
394         va_list va;
395         va_start(va, format);
396         tfputs(T("ERROR: "), stderr);
397         tvfprintf(stderr, format, va);
398         tfprintf(stderr, T(": %"TS"\n"), tstrerror(errno_save));
399         va_end(va);
400 }
401
402 static int
403 verify_image_exists(int image, const tchar *image_name, const tchar *wim_name)
404 {
405         if (image == WIMLIB_NO_IMAGE) {
406                 imagex_error(T("\"%"TS"\" is not a valid image in \"%"TS"\"!\n"
407                              "       Please specify a 1-based image index or "
408                              "image name.\n"
409                              "       You may use `"IMAGEX_PROGNAME" info' to list the images "
410                              "contained in a WIM."),
411                              image_name, wim_name);
412                 return -1;
413         }
414         return 0;
415 }
416
417 static int
418 verify_image_is_single(int image)
419 {
420         if (image == WIMLIB_ALL_IMAGES) {
421                 imagex_error(T("Cannot specify all images for this action!"));
422                 return -1;
423         }
424         return 0;
425 }
426
427 static int
428 verify_image_exists_and_is_single(int image, const tchar *image_name,
429                                   const tchar *wim_name)
430 {
431         int ret;
432         ret = verify_image_exists(image, image_name, wim_name);
433         if (ret == 0)
434                 ret = verify_image_is_single(image);
435         return ret;
436 }
437
438 /* Parse the argument to --compress */
439 static int
440 get_compression_type(const tchar *optarg)
441 {
442         if (!tstrcasecmp(optarg, T("maximum")) || !tstrcasecmp(optarg, T("lzx")))
443                 return WIMLIB_COMPRESSION_TYPE_LZX;
444         else if (!tstrcasecmp(optarg, T("fast")) || !tstrcasecmp(optarg, T("xpress")))
445                 return WIMLIB_COMPRESSION_TYPE_XPRESS;
446         else if (!tstrcasecmp(optarg, T("none")))
447                 return WIMLIB_COMPRESSION_TYPE_NONE;
448         else {
449                 imagex_error(T("Invalid compression type \"%"TS"\"! Must be "
450                              "\"maximum\", \"fast\", or \"none\"."), optarg);
451                 return WIMLIB_COMPRESSION_TYPE_INVALID;
452         }
453 }
454
455 /* Returns the size of a file given its name, or -1 if the file does not exist
456  * or its size cannot be determined.  */
457 static off_t
458 file_get_size(const tchar *filename)
459 {
460         struct stat st;
461         if (tstat(filename, &st) == 0)
462                 return st.st_size;
463         else
464                 return (off_t)-1;
465 }
466
467 tchar pat_ntfs_log[]                  = T("/$ntfs.log");
468 tchar pat_hiberfil_sys[]              = T("/hiberfil.sys");
469 tchar pat_pagefile_sys[]              = T("/pagefile.sys");
470 tchar pat_system_volume_information[] = T("/System Volume Information");
471 tchar pat_recycler[]                  = T("/RECYCLER");
472 tchar pat_windows_csc[]               = T("/Windows/CSC");
473
474 tchar *default_pats[] = {
475         pat_ntfs_log,
476         pat_hiberfil_sys,
477         pat_pagefile_sys,
478         pat_system_volume_information,
479         pat_recycler,
480         pat_windows_csc,
481 };
482
483 static struct wimlib_capture_config default_capture_config = {
484         .exclusion_pats = {
485                 .num_pats = sizeof(default_pats) / sizeof(*default_pats),
486                 .pats = default_pats,
487         },
488 };
489
490 enum {
491         PARSE_STRING_SUCCESS = 0,
492         PARSE_STRING_FAILURE = 1,
493         PARSE_STRING_NONE = 2,
494 };
495
496 /*
497  * Parses a string token from an array of characters.
498  *
499  * Tokens are either whitespace-delimited, or double or single-quoted.
500  *
501  * @line_p:  Pointer to the pointer to the line of data.  Will be updated
502  *           to point past the string token iff the return value is
503  *           PARSE_STRING_SUCCESS.  If *len_p > 0, (*line_p)[*len_p - 1] must
504  *           be '\0'.
505  *
506  * @len_p:   @len_p initially stores the length of the line of data, which may
507  *           be 0, and it will be updated to the number of bytes remaining in
508  *           the line iff the return value is PARSE_STRING_SUCCESS.
509  *
510  * @fn_ret:  Iff the return value is PARSE_STRING_SUCCESS, a pointer to the
511  *           parsed string token will be returned here.
512  *
513  * Returns: PARSE_STRING_SUCCESS if a string token was successfully parsed; or
514  *          PARSE_STRING_FAILURE if the data was invalid due to a missing
515  *          closing quote; or PARSE_STRING_NONE if the line ended before the
516  *          beginning of a string token was found.
517  */
518 static int
519 parse_string(tchar **line_p, size_t *len_p, tchar **fn_ret)
520 {
521         size_t len = *len_p;
522         tchar *line = *line_p;
523         tchar *fn;
524         tchar quote_char;
525
526         /* Skip leading whitespace */
527         for (;;) {
528                 if (len == 0)
529                         return PARSE_STRING_NONE;
530                 if (!istspace(*line) && *line != T('\0'))
531                         break;
532                 line++;
533                 len--;
534         }
535         quote_char = *line;
536         if (quote_char == T('"') || quote_char == T('\'')) {
537                 /* Quoted string */
538                 line++;
539                 len--;
540                 fn = line;
541                 line = tmemchr(line, quote_char, len);
542                 if (!line) {
543                         imagex_error(T("Missing closing quote: %"TS), fn - 1);
544                         return PARSE_STRING_FAILURE;
545                 }
546         } else {
547                 /* Unquoted string.  Go until whitespace.  Line is terminated
548                  * by '\0', so no need to check 'len'. */
549                 fn = line;
550                 do {
551                         line++;
552                 } while (!istspace(*line) && *line != T('\0'));
553         }
554         *line = T('\0');
555         len -= line - fn;
556         *len_p = len;
557         *line_p = line;
558         *fn_ret = fn;
559         return PARSE_STRING_SUCCESS;
560 }
561
562 /* Parses a line of data (not an empty line or comment) in the source list file
563  * format.  (See the man page for 'wimlib-imagex capture' for details on this
564  * format and the meaning.)
565  *
566  * @line:  Line of data to be parsed.  line[len - 1] must be '\0', unless
567  *         len == 0.  The data in @line will be modified by this function call.
568  *
569  * @len:   Length of the line of data.
570  *
571  * @source:  On success, the capture source and target described by the line is
572  *           written into this destination.  Note that it will contain pointers
573  *           to data in the @line array.
574  *
575  * Returns true if the line was valid; false otherwise.  */
576 static bool
577 parse_source_list_line(tchar *line, size_t len,
578                        struct wimlib_capture_source *source)
579 {
580         /* SOURCE [DEST] */
581         int ret;
582         ret = parse_string(&line, &len, &source->fs_source_path);
583         if (ret != PARSE_STRING_SUCCESS)
584                 return false;
585         ret = parse_string(&line, &len, &source->wim_target_path);
586         if (ret == PARSE_STRING_NONE)
587                 source->wim_target_path = source->fs_source_path;
588         return ret != PARSE_STRING_FAILURE;
589 }
590
591 /* Returns %true if the given line of length @len > 0 is a comment or empty line
592  * in the source list file format. */
593 static bool
594 is_comment_line(const tchar *line, size_t len)
595 {
596         for (;;) {
597                 if (*line == T('#'))
598                         return true;
599                 if (!istspace(*line) && *line != T('\0'))
600                         return false;
601                 ++line;
602                 --len;
603                 if (len == 0)
604                         return true;
605         }
606 }
607
608 static ssize_t
609 text_file_count_lines(tchar **contents_p, size_t *nchars_p)
610 {
611         ssize_t nlines = 0;
612         tchar *contents = *contents_p;
613         size_t nchars = *nchars_p;
614         size_t i;
615
616         for (i = 0; i < nchars; i++)
617                 if (contents[i] == T('\n'))
618                         nlines++;
619
620         /* Handle last line not terminated by a newline */
621         if (nchars != 0 && contents[nchars - 1] != T('\n')) {
622                 contents = realloc(contents, (nchars + 1) * sizeof(tchar));
623                 if (!contents) {
624                         imagex_error(T("Out of memory!"));
625                         return -1;
626                 }
627                 contents[nchars] = T('\n');
628                 *contents_p = contents;
629                 nchars++;
630                 nlines++;
631         }
632         *nchars_p = nchars;
633         return nlines;
634 }
635
636 /* Parses a file in the source list format.  (See the man page for
637  * 'wimlib-imagex capture' for details on this format and the meaning.)
638  *
639  * @source_list_contents:  Contents of the source list file.  Note that this
640  *                         buffer will be modified to save memory allocations,
641  *                         and cannot be freed until the returned array of
642  *                         wimlib_capture_source's has also been freed.
643  *
644  * @source_list_nbytes:    Number of bytes of data in the @source_list_contents
645  *                         buffer.
646  *
647  * @nsources_ret:          On success, the length of the returned array is
648  *                         returned here.
649  *
650  * Returns:   An array of `struct wimlib_capture_source's that can be passed to
651  * the wimlib_add_image_multisource() function to specify how a WIM image is to
652  * be created.  */
653 static struct wimlib_capture_source *
654 parse_source_list(tchar **source_list_contents_p, size_t source_list_nchars,
655                   size_t *nsources_ret)
656 {
657         ssize_t nlines;
658         tchar *p;
659         struct wimlib_capture_source *sources;
660         size_t i, j;
661
662         nlines = text_file_count_lines(source_list_contents_p,
663                                        &source_list_nchars);
664         if (nlines < 0)
665                 return NULL;
666
667         /* Always allocate at least 1 slot, just in case the implementation of
668          * calloc() returns NULL if 0 bytes are requested. */
669         sources = calloc(nlines ?: 1, sizeof(*sources));
670         if (!sources) {
671                 imagex_error(T("out of memory"));
672                 return NULL;
673         }
674         p = *source_list_contents_p;
675         j = 0;
676         for (i = 0; i < nlines; i++) {
677                 /* XXX: Could use rawmemchr() here instead, but it may not be
678                  * available on all platforms. */
679                 tchar *endp = tmemchr(p, T('\n'), source_list_nchars);
680                 size_t len = endp - p + 1;
681                 *endp = T('\0');
682                 if (!is_comment_line(p, len)) {
683                         if (!parse_source_list_line(p, len, &sources[j++])) {
684                                 free(sources);
685                                 return NULL;
686                         }
687                 }
688                 p = endp + 1;
689
690         }
691         *nsources_ret = j;
692         return sources;
693 }
694
695
696 enum capture_config_section {
697         CAPTURE_CONFIG_NO_SECTION,
698         CAPTURE_CONFIG_EXCLUSION_SECTION,
699         CAPTURE_CONFIG_EXCLUSION_EXCEPTION_SECTION,
700         CAPTURE_CONFIG_IGNORE_SECTION,
701 };
702
703 enum {
704         CAPTURE_CONFIG_INVALID_SECTION,
705         CAPTURE_CONFIG_CHANGED_SECTION,
706         CAPTURE_CONFIG_SAME_SECTION,
707 };
708
709 static int
710 check_config_section(tchar *line, size_t len,
711                      enum capture_config_section *cur_section)
712 {
713         while (istspace(*line))
714                 line++;
715
716         if (*line != T('['))
717                 return CAPTURE_CONFIG_SAME_SECTION;
718
719         line++;
720         tchar *endbrace = tstrrchr(line, T(']'));
721         if (!endbrace)
722                 return CAPTURE_CONFIG_SAME_SECTION;
723
724         if (!tmemcmp(line, T("ExclusionList"), endbrace - line)) {
725                 *cur_section = CAPTURE_CONFIG_EXCLUSION_SECTION;
726         } else if (!tmemcmp(line, T("ExclusionException"), endbrace - line)) {
727                 *cur_section = CAPTURE_CONFIG_EXCLUSION_EXCEPTION_SECTION;
728         } else if (!tmemcmp(line, T("CompressionExclusionList"), endbrace - line)) {
729                 *cur_section = CAPTURE_CONFIG_IGNORE_SECTION;
730                 tfputs(T("WARNING: Ignoring [CompressionExclusionList] section "
731                          "of capture config file\n"),
732                        stderr);
733         } else if (!tmemcmp(line, T("AlignmentList"), endbrace - line)) {
734                 *cur_section = CAPTURE_CONFIG_IGNORE_SECTION;
735                 tfputs(T("WARNING: Ignoring [AlignmentList] section "
736                          "of capture config file\n"),
737                        stderr);
738         } else {
739                 imagex_error(T("Invalid capture config file section \"%"TS"\""),
740                              line - 1);
741                 return CAPTURE_CONFIG_INVALID_SECTION;
742         }
743         return CAPTURE_CONFIG_CHANGED_SECTION;
744 }
745
746
747 static bool
748 pattern_list_add_pattern(struct wimlib_pattern_list *pat_list,
749                          tchar *pat)
750 {
751         if (pat_list->num_pats == pat_list->num_allocated_pats) {
752                 tchar **pats;
753                 size_t num_allocated_pats = pat_list->num_pats + 8;
754
755                 pats = realloc(pat_list->pats,
756                                num_allocated_pats * sizeof(pat_list->pats[0]));
757                 if (!pats) {
758                         imagex_error(T("Out of memory!"));
759                         return false;
760                 }
761                 pat_list->pats = pats;
762                 pat_list->num_allocated_pats = num_allocated_pats;
763         }
764         pat_list->pats[pat_list->num_pats++] = pat;
765         return true;
766 }
767
768 static bool
769 parse_capture_config_line(tchar *line, size_t len,
770                           enum capture_config_section *cur_section,
771                           struct wimlib_capture_config *config)
772 {
773         tchar *filename;
774         int ret;
775
776         ret = check_config_section(line, len, cur_section);
777         if (ret == CAPTURE_CONFIG_INVALID_SECTION)
778                 return false;
779         if (ret == CAPTURE_CONFIG_CHANGED_SECTION)
780                 return true;
781
782         switch (*cur_section) {
783         case CAPTURE_CONFIG_NO_SECTION:
784                 imagex_error(T("Line \"%"TS"\" is not in a section "
785                                "(such as [ExclusionList]"), line);
786                 return false;
787         case CAPTURE_CONFIG_EXCLUSION_SECTION:
788                 if (parse_string(&line, &len, &filename) != PARSE_STRING_SUCCESS)
789                         return false;
790                 return pattern_list_add_pattern(&config->exclusion_pats,
791                                                 filename);
792         case CAPTURE_CONFIG_EXCLUSION_EXCEPTION_SECTION:
793                 if (parse_string(&line, &len, &filename) != PARSE_STRING_SUCCESS)
794                         return false;
795                 return pattern_list_add_pattern(&config->exclusion_exception_pats,
796                                                 filename);
797         case CAPTURE_CONFIG_IGNORE_SECTION:
798                 return true;
799         }
800         return false;
801 }
802
803 static int
804 parse_capture_config(tchar **contents_p, size_t nchars,
805                      struct wimlib_capture_config *config)
806 {
807         ssize_t nlines;
808         tchar *p;
809         size_t i;
810         enum capture_config_section cur_section;
811
812         memset(config, 0, sizeof(*config));
813
814         nlines = text_file_count_lines(contents_p, &nchars);
815         if (nlines < 0)
816                 return -1;
817
818         cur_section = CAPTURE_CONFIG_NO_SECTION;
819         p = *contents_p;
820         for (i = 0; i < nlines; i++) {
821                 tchar *endp = tmemchr(p, T('\n'), nchars);
822                 size_t len = endp - p + 1;
823                 *endp = T('\0');
824                 if (!is_comment_line(p, len))
825                         if (!parse_capture_config_line(p, len, &cur_section, config))
826                                 return -1;
827                 p = endp + 1;
828
829         }
830         return 0;
831 }
832
833 /* Reads the contents of a file into memory. */
834 static char *
835 file_get_contents(const tchar *filename, size_t *len_ret)
836 {
837         struct stat stbuf;
838         void *buf = NULL;
839         size_t len;
840         FILE *fp;
841
842         if (tstat(filename, &stbuf) != 0) {
843                 imagex_error_with_errno(T("Failed to stat the file \"%"TS"\""), filename);
844                 goto out;
845         }
846         len = stbuf.st_size;
847
848         fp = tfopen(filename, T("rb"));
849         if (!fp) {
850                 imagex_error_with_errno(T("Failed to open the file \"%"TS"\""), filename);
851                 goto out;
852         }
853
854         buf = malloc(len);
855         if (!buf) {
856                 imagex_error(T("Failed to allocate buffer of %zu bytes to hold "
857                                "contents of file \"%"TS"\""), len, filename);
858                 goto out_fclose;
859         }
860         if (fread(buf, 1, len, fp) != len) {
861                 imagex_error_with_errno(T("Failed to read %zu bytes from the "
862                                           "file \"%"TS"\""), len, filename);
863                 goto out_free_buf;
864         }
865         *len_ret = len;
866         goto out_fclose;
867 out_free_buf:
868         free(buf);
869         buf = NULL;
870 out_fclose:
871         fclose(fp);
872 out:
873         return buf;
874 }
875
876 /* Read standard input until EOF and return the full contents in a malloc()ed
877  * buffer and the number of bytes of data in @len_ret.  Returns NULL on read
878  * error. */
879 static char *
880 stdin_get_contents(size_t *len_ret)
881 {
882         /* stdin can, of course, be a pipe or other non-seekable file, so the
883          * total length of the data cannot be pre-determined */
884         char *buf = NULL;
885         size_t newlen = 1024;
886         size_t pos = 0;
887         size_t inc = 1024;
888         for (;;) {
889                 char *p = realloc(buf, newlen);
890                 size_t bytes_read, bytes_to_read;
891                 if (!p) {
892                         imagex_error(T("out of memory while reading stdin"));
893                         break;
894                 }
895                 buf = p;
896                 bytes_to_read = newlen - pos;
897                 bytes_read = fread(&buf[pos], 1, bytes_to_read, stdin);
898                 pos += bytes_read;
899                 if (bytes_read != bytes_to_read) {
900                         if (feof(stdin)) {
901                                 *len_ret = pos;
902                                 return buf;
903                         } else {
904                                 imagex_error_with_errno(T("error reading stdin"));
905                                 break;
906                         }
907                 }
908                 newlen += inc;
909                 inc *= 3;
910                 inc /= 2;
911         }
912         free(buf);
913         return NULL;
914 }
915
916
917 static tchar *
918 translate_text_to_tstr(char *text, size_t num_bytes, size_t *num_tchars_ret)
919 {
920 #ifndef __WIN32__
921         /* On non-Windows, assume an ASCII-compatible encoding, such as UTF-8.
922          * */
923         *num_tchars_ret = num_bytes;
924         return text;
925 #else /* !__WIN32__ */
926         /* On Windows, translate the text to UTF-16LE */
927         wchar_t *text_wstr;
928         size_t num_wchars;
929
930         if (num_bytes >= 2 &&
931             ((text[0] == 0xff && text[1] == 0xfe) ||
932              (text[0] <= 0x7f && text[1] == 0x00)))
933         {
934                 /* File begins with 0xfeff, the BOM for UTF-16LE, or it begins
935                  * with something that looks like an ASCII character encoded as
936                  * a UTF-16LE code unit.  Assume the file is encoded as
937                  * UTF-16LE.  This is not a 100% reliable check. */
938                 num_wchars = num_bytes / 2;
939                 text_wstr = (wchar_t*)text;
940         } else {
941                 /* File does not look like UTF-16LE.  Assume it is encoded in
942                  * the current Windows code page.  I think these are always
943                  * ASCII-compatible, so any so-called "plain-text" (ASCII) files
944                  * should work as expected. */
945                 text_wstr = win32_mbs_to_wcs(text,
946                                              num_bytes,
947                                              &num_wchars);
948                 free(text);
949         }
950         *num_tchars_ret = num_wchars;
951         return text_wstr;
952 #endif /* __WIN32__ */
953 }
954
955 static tchar *
956 file_get_text_contents(const tchar *filename, size_t *num_tchars_ret)
957 {
958         char *contents;
959         size_t num_bytes;
960
961         contents = file_get_contents(filename, &num_bytes);
962         if (!contents)
963                 return NULL;
964         return translate_text_to_tstr(contents, num_bytes, num_tchars_ret);
965 }
966
967 static tchar *
968 stdin_get_text_contents(size_t *num_tchars_ret)
969 {
970         char *contents;
971         size_t num_bytes;
972
973         contents = stdin_get_contents(&num_bytes);
974         if (!contents)
975                 return NULL;
976         return translate_text_to_tstr(contents, num_bytes, num_tchars_ret);
977 }
978
979 /* Return 0 if a path names a file to which the current user has write access;
980  * -1 otherwise (and print an error message). */
981 static int
982 file_writable(const tchar *path)
983 {
984         int ret;
985         ret = taccess(path, W_OK);
986         if (ret != 0)
987                 imagex_error_with_errno(T("Can't modify \"%"TS"\""), path);
988         return ret;
989 }
990
991 #define TO_PERCENT(numerator, denominator) \
992         (((denominator) == 0) ? 0 : ((numerator) * 100 / (denominator)))
993
994 /* Given an enumerated value for WIM compression type, return a descriptive
995  * string. */
996 static const tchar *
997 get_data_type(int ctype)
998 {
999         switch (ctype) {
1000         case WIMLIB_COMPRESSION_TYPE_NONE:
1001                 return T("uncompressed");
1002         case WIMLIB_COMPRESSION_TYPE_LZX:
1003                 return T("LZX-compressed");
1004         case WIMLIB_COMPRESSION_TYPE_XPRESS:
1005                 return T("XPRESS-compressed");
1006         }
1007         return NULL;
1008 }
1009
1010 #define GIBIBYTE_MIN_NBYTES 10000000000ULL
1011 #define MEBIBYTE_MIN_NBYTES 10000000ULL
1012 #define KIBIBYTE_MIN_NBYTES 10000ULL
1013
1014 static unsigned
1015 get_unit(uint64_t total_bytes, const tchar **name_ret)
1016 {
1017         if (total_bytes >= GIBIBYTE_MIN_NBYTES) {
1018                 *name_ret = T("GiB");
1019                 return 30;
1020         } else if (total_bytes >= MEBIBYTE_MIN_NBYTES) {
1021                 *name_ret = T("MiB");
1022                 return 20;
1023         } else if (total_bytes >= KIBIBYTE_MIN_NBYTES) {
1024                 *name_ret = T("KiB");
1025                 return 10;
1026         } else {
1027                 *name_ret = T("bytes");
1028                 return 0;
1029         }
1030 }
1031
1032 /* Progress callback function passed to various wimlib functions. */
1033 static int
1034 imagex_progress_func(enum wimlib_progress_msg msg,
1035                      const union wimlib_progress_info *info)
1036 {
1037         unsigned percent_done;
1038         unsigned unit_shift;
1039         const tchar *unit_name;
1040         if (imagex_be_quiet)
1041                 return 0;
1042         switch (msg) {
1043         case WIMLIB_PROGRESS_MSG_WRITE_STREAMS:
1044                 unit_shift = get_unit(info->write_streams.total_bytes, &unit_name);
1045                 percent_done = TO_PERCENT(info->write_streams.completed_bytes,
1046                                           info->write_streams.total_bytes);
1047                 if (info->write_streams.completed_streams == 0) {
1048                         const tchar *data_type;
1049
1050                         data_type = get_data_type(info->write_streams.compression_type);
1051                         tprintf(T("Writing %"TS" data using %u thread%"TS"\n"),
1052                                 data_type, info->write_streams.num_threads,
1053                                 (info->write_streams.num_threads == 1) ? T("") : T("s"));
1054                 }
1055                 tprintf(T("\r%"PRIu64" %"TS" of %"PRIu64" %"TS" (uncompressed) "
1056                         "written (%u%% done)"),
1057                         info->write_streams.completed_bytes >> unit_shift,
1058                         unit_name,
1059                         info->write_streams.total_bytes >> unit_shift,
1060                         unit_name,
1061                         percent_done);
1062                 if (info->write_streams.completed_bytes >= info->write_streams.total_bytes)
1063                         tputchar(T('\n'));
1064                 break;
1065         case WIMLIB_PROGRESS_MSG_SCAN_BEGIN:
1066                 tprintf(T("Scanning \"%"TS"\""), info->scan.source);
1067                 if (*info->scan.wim_target_path) {
1068                         tprintf(T(" (loading as WIM path: \"/%"TS"\")...\n"),
1069                                info->scan.wim_target_path);
1070                 } else {
1071                         tprintf(T(" (loading as root of WIM image)...\n"));
1072                 }
1073                 break;
1074         case WIMLIB_PROGRESS_MSG_SCAN_DENTRY:
1075                 if (info->scan.excluded)
1076                         tprintf(T("Excluding \"%"TS"\" from capture\n"), info->scan.cur_path);
1077                 else
1078                         tprintf(T("Scanning \"%"TS"\"\n"), info->scan.cur_path);
1079                 break;
1080         /*case WIMLIB_PROGRESS_MSG_SCAN_END:*/
1081                 /*break;*/
1082         case WIMLIB_PROGRESS_MSG_VERIFY_INTEGRITY:
1083                 unit_shift = get_unit(info->integrity.total_bytes, &unit_name);
1084                 percent_done = TO_PERCENT(info->integrity.completed_bytes,
1085                                           info->integrity.total_bytes);
1086                 tprintf(T("\rVerifying integrity of \"%"TS"\": %"PRIu64" %"TS" "
1087                         "of %"PRIu64" %"TS" (%u%%) done"),
1088                         info->integrity.filename,
1089                         info->integrity.completed_bytes >> unit_shift,
1090                         unit_name,
1091                         info->integrity.total_bytes >> unit_shift,
1092                         unit_name,
1093                         percent_done);
1094                 if (info->integrity.completed_bytes == info->integrity.total_bytes)
1095                         tputchar(T('\n'));
1096                 break;
1097         case WIMLIB_PROGRESS_MSG_CALC_INTEGRITY:
1098                 unit_shift = get_unit(info->integrity.total_bytes, &unit_name);
1099                 percent_done = TO_PERCENT(info->integrity.completed_bytes,
1100                                           info->integrity.total_bytes);
1101                 tprintf(T("\rCalculating integrity table for WIM: %"PRIu64" %"TS" "
1102                           "of %"PRIu64" %"TS" (%u%%) done"),
1103                         info->integrity.completed_bytes >> unit_shift,
1104                         unit_name,
1105                         info->integrity.total_bytes >> unit_shift,
1106                         unit_name,
1107                         percent_done);
1108                 if (info->integrity.completed_bytes == info->integrity.total_bytes)
1109                         tputchar(T('\n'));
1110                 break;
1111         case WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_BEGIN:
1112                 tprintf(T("Applying image %d (\"%"TS"\") from \"%"TS"\" "
1113                           "to %"TS" \"%"TS"\"\n"),
1114                         info->extract.image,
1115                         info->extract.image_name,
1116                         info->extract.wimfile_name,
1117                         ((info->extract.extract_flags & WIMLIB_EXTRACT_FLAG_NTFS) ?
1118                          T("NTFS volume") : T("directory")),
1119                         info->extract.target);
1120                 break;
1121         case WIMLIB_PROGRESS_MSG_EXTRACT_TREE_BEGIN:
1122                 tprintf(T("Extracting \"%"TS"\" from image %d (\"%"TS"\") "
1123                           "in \"%"TS"\" to \"%"TS"\"\n"),
1124                         info->extract.extract_root_wim_source_path,
1125                         info->extract.image,
1126                         info->extract.image_name,
1127                         info->extract.wimfile_name,
1128                         info->extract.target);
1129                 break;
1130         /*case WIMLIB_PROGRESS_MSG_EXTRACT_DIR_STRUCTURE_BEGIN:*/
1131                 /*tprintf(T("Applying directory structure to %"TS"\n"),*/
1132                         /*info->extract.target);*/
1133                 /*break;*/
1134         case WIMLIB_PROGRESS_MSG_EXTRACT_STREAMS:
1135                 percent_done = TO_PERCENT(info->extract.completed_bytes,
1136                                           info->extract.total_bytes);
1137                 unit_shift = get_unit(info->extract.total_bytes, &unit_name);
1138                 tprintf(T("\rExtracting files: "
1139                           "%"PRIu64" %"TS" of %"PRIu64" %"TS" (%u%%) done"),
1140                         info->extract.completed_bytes >> unit_shift,
1141                         unit_name,
1142                         info->extract.total_bytes >> unit_shift,
1143                         unit_name,
1144                         percent_done);
1145                 if (info->extract.completed_bytes >= info->extract.total_bytes)
1146                         tputchar(T('\n'));
1147                 break;
1148         case WIMLIB_PROGRESS_MSG_EXTRACT_DENTRY:
1149                 tprintf(T("%"TS"\n"), info->extract.cur_path);
1150                 break;
1151         case WIMLIB_PROGRESS_MSG_APPLY_TIMESTAMPS:
1152                 if (info->extract.extract_root_wim_source_path[0] == T('\0'))
1153                         tprintf(T("Setting timestamps on all extracted files...\n"));
1154                 break;
1155         case WIMLIB_PROGRESS_MSG_EXTRACT_IMAGE_END:
1156                 if (info->extract.extract_flags & WIMLIB_EXTRACT_FLAG_NTFS) {
1157                         tprintf(T("Unmounting NTFS volume \"%"TS"\"...\n"),
1158                                 info->extract.target);
1159                 }
1160                 break;
1161         case WIMLIB_PROGRESS_MSG_JOIN_STREAMS:
1162                 percent_done = TO_PERCENT(info->join.completed_bytes,
1163                                           info->join.total_bytes);
1164                 unit_shift = get_unit(info->join.total_bytes, &unit_name);
1165                 tprintf(T("Writing resources from part %u of %u: "
1166                           "%"PRIu64 " %"TS" of %"PRIu64" %"TS" (%u%%) written\n"),
1167                         (info->join.completed_parts == info->join.total_parts) ?
1168                         info->join.completed_parts : info->join.completed_parts + 1,
1169                         info->join.total_parts,
1170                         info->join.completed_bytes >> unit_shift,
1171                         unit_name,
1172                         info->join.total_bytes >> unit_shift,
1173                         unit_name,
1174                         percent_done);
1175                 break;
1176         case WIMLIB_PROGRESS_MSG_SPLIT_BEGIN_PART:
1177                 percent_done = TO_PERCENT(info->split.completed_bytes,
1178                                           info->split.total_bytes);
1179                 unit_shift = get_unit(info->split.total_bytes, &unit_name);
1180                 tprintf(T("Writing \"%"TS"\": %"PRIu64" %"TS" of "
1181                           "%"PRIu64" %"TS" (%u%%) written\n"),
1182                         info->split.part_name,
1183                         info->split.completed_bytes >> unit_shift,
1184                         unit_name,
1185                         info->split.total_bytes >> unit_shift,
1186                         unit_name,
1187                         percent_done);
1188                 break;
1189         case WIMLIB_PROGRESS_MSG_SPLIT_END_PART:
1190                 if (info->split.completed_bytes == info->split.total_bytes) {
1191                         tprintf(T("Finished writing %u split WIM parts\n"),
1192                                 info->split.cur_part_number);
1193                 }
1194                 break;
1195         default:
1196                 break;
1197         }
1198         fflush(stdout);
1199         return 0;
1200 }
1201
1202 /* Open all the split WIM parts that correspond to a file glob.
1203  *
1204  * @first_part specifies the first part of the split WIM and it may be either
1205  * included or omitted from the glob. */
1206 static int
1207 open_swms_from_glob(const tchar *swm_glob,
1208                     const tchar *first_part,
1209                     int open_flags,
1210                     WIMStruct ***additional_swms_ret,
1211                     unsigned *num_additional_swms_ret)
1212 {
1213         unsigned num_additional_swms = 0;
1214         WIMStruct **additional_swms = NULL;
1215         glob_t globbuf;
1216         int ret;
1217
1218         /* Warning: glob() is replaced in Windows native builds */
1219         ret = tglob(swm_glob, GLOB_ERR | GLOB_NOSORT, NULL, &globbuf);
1220         if (ret != 0) {
1221                 if (ret == GLOB_NOMATCH) {
1222                         imagex_error(T("Found no files for glob \"%"TS"\""),
1223                                      swm_glob);
1224                 } else {
1225                         imagex_error_with_errno(T("Failed to process glob \"%"TS"\""),
1226                                                 swm_glob);
1227                 }
1228                 ret = -1;
1229                 goto out;
1230         }
1231         num_additional_swms = globbuf.gl_pathc;
1232         additional_swms = calloc(num_additional_swms, sizeof(additional_swms[0]));
1233         if (!additional_swms) {
1234                 imagex_error(T("Out of memory"));
1235                 ret = -1;
1236                 goto out_globfree;
1237         }
1238         unsigned offset = 0;
1239         for (unsigned i = 0; i < num_additional_swms; i++) {
1240                 if (tstrcmp(globbuf.gl_pathv[i], first_part) == 0) {
1241                         offset++;
1242                         continue;
1243                 }
1244                 ret = wimlib_open_wim(globbuf.gl_pathv[i],
1245                                       open_flags | WIMLIB_OPEN_FLAG_SPLIT_OK,
1246                                       &additional_swms[i - offset],
1247                                       imagex_progress_func);
1248                 if (ret != 0)
1249                         goto out_close_swms;
1250         }
1251         *additional_swms_ret = additional_swms;
1252         *num_additional_swms_ret = num_additional_swms - offset;
1253         ret = 0;
1254         goto out_globfree;
1255 out_close_swms:
1256         for (unsigned i = 0; i < num_additional_swms; i++)
1257                 wimlib_free(additional_swms[i]);
1258         free(additional_swms);
1259 out_globfree:
1260         globfree(&globbuf);
1261 out:
1262         return ret;
1263 }
1264
1265
1266 static unsigned
1267 parse_num_threads(const tchar *optarg)
1268 {
1269         tchar *tmp;
1270         unsigned long ul_nthreads = tstrtoul(optarg, &tmp, 10);
1271         if (ul_nthreads >= UINT_MAX || *tmp || tmp == optarg) {
1272                 imagex_error(T("Number of threads must be a non-negative integer!"));
1273                 return UINT_MAX;
1274         } else {
1275                 return ul_nthreads;
1276         }
1277 }
1278
1279 /*
1280  * Parse an option passed to an update command.
1281  *
1282  * @op:         One of WIMLIB_UPDATE_OP_* that indicates the command being
1283  *              parsed.
1284  *
1285  * @option:     Text string for the option (beginning with --)
1286  *
1287  * @cmd:        `struct wimlib_update_command' that is being constructed for
1288  *              this command.
1289  *
1290  * Returns true if the option was recognized; false if not.
1291  */
1292 static bool
1293 update_command_add_option(int op, const tchar *option,
1294                           struct wimlib_update_command *cmd)
1295 {
1296         bool recognized = true;
1297         switch (op) {
1298         case WIMLIB_UPDATE_OP_ADD:
1299                 if (!tstrcmp(option, T("--verbose")))
1300                         cmd->add.add_flags |= WIMLIB_ADD_IMAGE_FLAG_VERBOSE;
1301                 else if (!tstrcmp(option, T("--unix-data")))
1302                         cmd->add.add_flags |= WIMLIB_ADD_IMAGE_FLAG_UNIX_DATA;
1303                 else if (!tstrcmp(option, T("--no-acls")) || !tstrcmp(option, T("--noacls")))
1304                         cmd->add.add_flags |= WIMLIB_ADD_IMAGE_FLAG_NO_ACLS;
1305                 else if (!tstrcmp(option, T("--strict-acls")))
1306                         cmd->add.add_flags |= WIMLIB_ADD_IMAGE_FLAG_STRICT_ACLS;
1307                 else if (!tstrcmp(option, T("--dereference")))
1308                         cmd->add.add_flags |= WIMLIB_ADD_IMAGE_FLAG_DEREFERENCE;
1309                 else
1310                         recognized = false;
1311                 break;
1312         case WIMLIB_UPDATE_OP_DELETE:
1313                 if (!tstrcmp(option, T("--force")))
1314                         cmd->delete.delete_flags |= WIMLIB_DELETE_FLAG_FORCE;
1315                 else if (!tstrcmp(option, T("--recursive")))
1316                         cmd->delete.delete_flags |= WIMLIB_DELETE_FLAG_RECURSIVE;
1317                 else
1318                         recognized = false;
1319                 break;
1320         default:
1321                 recognized = false;
1322                 break;
1323         }
1324         return recognized;
1325 }
1326
1327 /* How many nonoption arguments each `imagex update' command expects */
1328 static const unsigned update_command_num_nonoptions[] = {
1329         [WIMLIB_UPDATE_OP_ADD] = 2,
1330         [WIMLIB_UPDATE_OP_DELETE] = 1,
1331         [WIMLIB_UPDATE_OP_RENAME] = 2,
1332 };
1333
1334 static void
1335 update_command_add_nonoption(int op, const tchar *nonoption,
1336                              struct wimlib_update_command *cmd,
1337                              unsigned num_nonoptions)
1338 {
1339         switch (op) {
1340         case WIMLIB_UPDATE_OP_ADD:
1341                 if (num_nonoptions == 0)
1342                         cmd->add.fs_source_path = (tchar*)nonoption;
1343                 else
1344                         cmd->add.wim_target_path = (tchar*)nonoption;
1345                 break;
1346         case WIMLIB_UPDATE_OP_DELETE:
1347                 cmd->delete.wim_path = (tchar*)nonoption;
1348                 break;
1349         case WIMLIB_UPDATE_OP_RENAME:
1350                 if (num_nonoptions == 0)
1351                         cmd->rename.wim_source_path = (tchar*)nonoption;
1352                 else
1353                         cmd->rename.wim_target_path = (tchar*)nonoption;
1354                 break;
1355         }
1356 }
1357
1358 /*
1359  * Parse a command passed on stdin to `imagex update'.
1360  *
1361  * @line:       Text of the command.
1362  * @len:        Length of the line, including a null terminator
1363  *              at line[len - 1].
1364  *
1365  * @command:    A `struct wimlib_update_command' to fill in from the parsed
1366  *              line.
1367  *
1368  * @line_number: Line number of the command, for diagnostics.
1369  *
1370  * Returns true on success; returns false on parse error.
1371  */
1372 static bool
1373 parse_update_command(tchar *line, size_t len,
1374                      struct wimlib_update_command *command,
1375                      size_t line_number)
1376 {
1377         int ret;
1378         tchar *command_name;
1379         int op;
1380         size_t num_nonoptions;
1381
1382         /* Get the command name ("add", "delete", "rename") */
1383         ret = parse_string(&line, &len, &command_name);
1384         if (ret != PARSE_STRING_SUCCESS)
1385                 return false;
1386
1387         if (!tstrcasecmp(command_name, T("add"))) {
1388                 op = WIMLIB_UPDATE_OP_ADD;
1389         } else if (!tstrcasecmp(command_name, T("delete"))) {
1390                 op = WIMLIB_UPDATE_OP_DELETE;
1391         } else if (!tstrcasecmp(command_name, T("rename"))) {
1392                 op = WIMLIB_UPDATE_OP_RENAME;
1393         } else {
1394                 imagex_error(T("Unknown update command \"%"TS"\" on line %zu"),
1395                              command_name, line_number);
1396                 return false;
1397         }
1398         command->op = op;
1399
1400         /* Parse additional options and non-options as needed */
1401         num_nonoptions = 0;
1402         for (;;) {
1403                 tchar *next_string;
1404
1405                 ret = parse_string(&line, &len, &next_string);
1406                 if (ret == PARSE_STRING_NONE) /* End of line */
1407                         break;
1408                 else if (ret != PARSE_STRING_SUCCESS) /* Parse failure */
1409                         return false;
1410                 if (next_string[0] == T('-') && next_string[1] == T('-')) {
1411                         /* Option */
1412                         if (!update_command_add_option(op, next_string, command))
1413                         {
1414                                 imagex_error(T("Unrecognized option \"%"TS"\" to "
1415                                                "update command \"%"TS"\" on line %zu"),
1416                                              next_string, command_name, line_number);
1417
1418                                 return false;
1419                         }
1420                 } else {
1421                         /* Nonoption */
1422                         if (num_nonoptions == update_command_num_nonoptions[op])
1423                         {
1424                                 imagex_error(T("Unexpected argument \"%"TS"\" in "
1425                                                "update command on line %zu\n"
1426                                                "       (The \"%"TS"\" command only "
1427                                                "takes %u nonoption arguments!)\n"),
1428                                              next_string, line_number,
1429                                              command_name, num_nonoptions);
1430                                 return false;
1431                         }
1432                         update_command_add_nonoption(op, next_string,
1433                                                      command, num_nonoptions);
1434                         num_nonoptions++;
1435                 }
1436         }
1437
1438         if (num_nonoptions != update_command_num_nonoptions[op]) {
1439                 imagex_error(T("Not enough arguments to update command "
1440                                "\"%"TS"\" on line %zu"), command_name, line_number);
1441                 return false;
1442         }
1443         return true;
1444 }
1445
1446 static struct wimlib_update_command *
1447 parse_update_command_file(tchar **cmd_file_contents_p, size_t cmd_file_nchars,
1448                           size_t *num_cmds_ret)
1449 {
1450         ssize_t nlines;
1451         tchar *p;
1452         struct wimlib_update_command *cmds;
1453         size_t i, j;
1454
1455         nlines = text_file_count_lines(cmd_file_contents_p,
1456                                        &cmd_file_nchars);
1457         if (nlines < 0)
1458                 return NULL;
1459
1460         /* Always allocate at least 1 slot, just in case the implementation of
1461          * calloc() returns NULL if 0 bytes are requested. */
1462         cmds = calloc(nlines ?: 1, sizeof(struct wimlib_update_command));
1463         if (!cmds) {
1464                 imagex_error(T("out of memory"));
1465                 return NULL;
1466         }
1467         p = *cmd_file_contents_p;
1468         j = 0;
1469         for (i = 0; i < nlines; i++) {
1470                 /* XXX: Could use rawmemchr() here instead, but it may not be
1471                  * available on all platforms. */
1472                 tchar *endp = tmemchr(p, T('\n'), cmd_file_nchars);
1473                 size_t len = endp - p + 1;
1474                 *endp = T('\0');
1475                 if (!is_comment_line(p, len)) {
1476                         if (!parse_update_command(p, len, &cmds[j++], i + 1)) {
1477                                 free(cmds);
1478                                 return NULL;
1479                         }
1480                 }
1481                 p = endp + 1;
1482         }
1483         *num_cmds_ret = j;
1484         return cmds;
1485 }
1486
1487 /* Apply one image, or all images, from a WIM file into a directory, OR apply
1488  * one image from a WIM file to a NTFS volume. */
1489 static int
1490 imagex_apply(int argc, tchar **argv)
1491 {
1492         int c;
1493         int open_flags = WIMLIB_OPEN_FLAG_SPLIT_OK;
1494         int image;
1495         int num_images;
1496         WIMStruct *w;
1497         int ret;
1498         const tchar *wimfile;
1499         const tchar *target;
1500         const tchar *image_num_or_name;
1501         int extract_flags = WIMLIB_EXTRACT_FLAG_SEQUENTIAL;
1502
1503         const tchar *swm_glob = NULL;
1504         WIMStruct **additional_swms = NULL;
1505         unsigned num_additional_swms = 0;
1506
1507         for_opt(c, apply_options) {
1508                 switch (c) {
1509                 case IMAGEX_CHECK_OPTION:
1510                         open_flags |= WIMLIB_OPEN_FLAG_CHECK_INTEGRITY;
1511                         break;
1512                 case IMAGEX_HARDLINK_OPTION:
1513                         extract_flags |= WIMLIB_EXTRACT_FLAG_HARDLINK;
1514                         break;
1515                 case IMAGEX_SYMLINK_OPTION:
1516                         extract_flags |= WIMLIB_EXTRACT_FLAG_SYMLINK;
1517                         break;
1518                 case IMAGEX_VERBOSE_OPTION:
1519                         extract_flags |= WIMLIB_EXTRACT_FLAG_VERBOSE;
1520                         break;
1521                 case IMAGEX_REF_OPTION:
1522                         swm_glob = optarg;
1523                         break;
1524                 case IMAGEX_UNIX_DATA_OPTION:
1525                         extract_flags |= WIMLIB_EXTRACT_FLAG_UNIX_DATA;
1526                         break;
1527                 case IMAGEX_NO_ACLS_OPTION:
1528                         extract_flags |= WIMLIB_EXTRACT_FLAG_NO_ACLS;
1529                         break;
1530                 case IMAGEX_STRICT_ACLS_OPTION:
1531                         extract_flags |= WIMLIB_EXTRACT_FLAG_STRICT_ACLS;
1532                         break;
1533                 case IMAGEX_NORPFIX_OPTION:
1534                         extract_flags |= WIMLIB_EXTRACT_FLAG_NORPFIX;
1535                         break;
1536                 case IMAGEX_RPFIX_OPTION:
1537                         extract_flags |= WIMLIB_EXTRACT_FLAG_RPFIX;
1538                         break;
1539                 case IMAGEX_INCLUDE_INVALID_NAMES_OPTION:
1540                         extract_flags |= WIMLIB_EXTRACT_FLAG_REPLACE_INVALID_FILENAMES;
1541                         extract_flags |= WIMLIB_EXTRACT_FLAG_ALL_CASE_CONFLICTS;
1542                         break;
1543                 default:
1544                         usage(APPLY);
1545                         return -1;
1546                 }
1547         }
1548         argc -= optind;
1549         argv += optind;
1550         if (argc != 2 && argc != 3) {
1551                 usage(APPLY);
1552                 return -1;
1553         }
1554
1555         wimfile = argv[0];
1556         if (argc == 2) {
1557                 image_num_or_name = T("1");
1558                 target = argv[1];
1559         } else {
1560                 image_num_or_name = argv[1];
1561                 target = argv[2];
1562         }
1563
1564         ret = wimlib_open_wim(wimfile, open_flags, &w, imagex_progress_func);
1565         if (ret != 0)
1566                 return ret;
1567
1568         image = wimlib_resolve_image(w, image_num_or_name);
1569         ret = verify_image_exists(image, image_num_or_name, wimfile);
1570         if (ret != 0)
1571                 goto out;
1572
1573         num_images = wimlib_get_num_images(w);
1574         if (argc == 2 && num_images != 1) {
1575                 imagex_error(T("\"%"TS"\" contains %d images; Please select one "
1576                                "(or all)."), wimfile, num_images);
1577                 usage(APPLY);
1578                 ret = -1;
1579                 goto out;
1580         }
1581
1582         if (swm_glob) {
1583                 ret = open_swms_from_glob(swm_glob, wimfile, open_flags,
1584                                           &additional_swms,
1585                                           &num_additional_swms);
1586                 if (ret != 0)
1587                         goto out;
1588         }
1589
1590         struct stat stbuf;
1591
1592         ret = tstat(target, &stbuf);
1593         if (ret == 0) {
1594                 if (S_ISBLK(stbuf.st_mode) || S_ISREG(stbuf.st_mode))
1595                         extract_flags |= WIMLIB_EXTRACT_FLAG_NTFS;
1596         } else {
1597                 if (errno != ENOENT) {
1598                         imagex_error_with_errno(T("Failed to stat \"%"TS"\""),
1599                                                 target);
1600                         ret = -1;
1601                         goto out;
1602                 }
1603         }
1604
1605 #ifdef __WIN32__
1606         win32_acquire_restore_privileges();
1607 #endif
1608         ret = wimlib_extract_image(w, image, target, extract_flags,
1609                                    additional_swms, num_additional_swms,
1610                                    imagex_progress_func);
1611         if (ret == 0)
1612                 tprintf(T("Done applying WIM image.\n"));
1613 #ifdef __WIN32__
1614         win32_release_restore_privileges();
1615 #endif
1616 out:
1617         wimlib_free(w);
1618         if (additional_swms) {
1619                 for (unsigned i = 0; i < num_additional_swms; i++)
1620                         wimlib_free(additional_swms[i]);
1621                 free(additional_swms);
1622         }
1623         return ret;
1624 }
1625
1626 /* Create a WIM image from a directory tree, NTFS volume, or multiple files or
1627  * directory trees.  'wimlib-imagex capture': create a new WIM file containing
1628  * the desired image.  'wimlib-imagex append': add a new image to an existing
1629  * WIM file. */
1630 static int
1631 imagex_capture_or_append(int argc, tchar **argv)
1632 {
1633         int c;
1634         int open_flags = 0;
1635         int add_image_flags = WIMLIB_ADD_IMAGE_FLAG_EXCLUDE_VERBOSE;
1636         int write_flags = 0;
1637         int compression_type = WIMLIB_COMPRESSION_TYPE_XPRESS;
1638         const tchar *wimfile;
1639         const tchar *name;
1640         const tchar *desc;
1641         const tchar *flags_element = NULL;
1642         WIMStruct *w;
1643         int ret;
1644         int cur_image;
1645         int cmd = tstrcmp(argv[0], T("append")) ? CAPTURE : APPEND;
1646         unsigned num_threads = 0;
1647
1648         tchar *source;
1649         size_t source_name_len;
1650         tchar *source_copy;
1651
1652         const tchar *config_file = NULL;
1653         tchar *config_str;
1654         struct wimlib_capture_config *config = NULL;
1655
1656         bool source_list = false;
1657         size_t source_list_nchars;
1658         tchar *source_list_contents;
1659         bool capture_sources_malloced;
1660         struct wimlib_capture_source *capture_sources;
1661         size_t num_sources;
1662
1663         for_opt(c, capture_or_append_options) {
1664                 switch (c) {
1665                 case IMAGEX_BOOT_OPTION:
1666                         add_image_flags |= WIMLIB_ADD_IMAGE_FLAG_BOOT;
1667                         break;
1668                 case IMAGEX_CHECK_OPTION:
1669                         open_flags |= WIMLIB_OPEN_FLAG_CHECK_INTEGRITY;
1670                         write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
1671                         break;
1672                 case IMAGEX_CONFIG_OPTION:
1673                         config_file = optarg;
1674                         break;
1675                 case IMAGEX_COMPRESS_OPTION:
1676                         compression_type = get_compression_type(optarg);
1677                         if (compression_type == WIMLIB_COMPRESSION_TYPE_INVALID)
1678                                 return -1;
1679                         break;
1680                 case IMAGEX_FLAGS_OPTION:
1681                         flags_element = optarg;
1682                         break;
1683                 case IMAGEX_DEREFERENCE_OPTION:
1684                         add_image_flags |= WIMLIB_ADD_IMAGE_FLAG_DEREFERENCE;
1685                         break;
1686                 case IMAGEX_VERBOSE_OPTION:
1687                         add_image_flags |= WIMLIB_ADD_IMAGE_FLAG_VERBOSE;
1688                         break;
1689                 case IMAGEX_THREADS_OPTION:
1690                         num_threads = parse_num_threads(optarg);
1691                         if (num_threads == UINT_MAX)
1692                                 return -1;
1693                         break;
1694                 case IMAGEX_REBUILD_OPTION:
1695                         write_flags |= WIMLIB_WRITE_FLAG_REBUILD;
1696                         break;
1697                 case IMAGEX_UNIX_DATA_OPTION:
1698                         add_image_flags |= WIMLIB_ADD_IMAGE_FLAG_UNIX_DATA;
1699                         break;
1700                 case IMAGEX_SOURCE_LIST_OPTION:
1701                         source_list = true;
1702                         break;
1703                 case IMAGEX_NO_ACLS_OPTION:
1704                         add_image_flags |= WIMLIB_ADD_IMAGE_FLAG_NO_ACLS;
1705                         break;
1706                 case IMAGEX_STRICT_ACLS_OPTION:
1707                         add_image_flags |= WIMLIB_ADD_IMAGE_FLAG_STRICT_ACLS;
1708                         break;
1709                 case IMAGEX_RPFIX_OPTION:
1710                         add_image_flags |= WIMLIB_ADD_IMAGE_FLAG_RPFIX;
1711                         break;
1712                 case IMAGEX_NORPFIX_OPTION:
1713                         add_image_flags |= WIMLIB_ADD_IMAGE_FLAG_NORPFIX;
1714                         break;
1715                 default:
1716                         usage(cmd);
1717                         return -1;
1718                 }
1719         }
1720         argc -= optind;
1721         argv += optind;
1722
1723         if (argc < 2 || argc > 4) {
1724                 usage(cmd);
1725                 return -1;
1726         }
1727
1728         source = argv[0];
1729         wimfile = argv[1];
1730
1731         if (argc >= 3) {
1732                 name = argv[2];
1733         } else {
1734                 /* Set default name to SOURCE argument, omitting any directory
1735                  * prefixes and trailing slashes.  This requires making a copy
1736                  * of @source. */
1737                 source_name_len = tstrlen(source);
1738                 source_copy = alloca((source_name_len + 1) * sizeof(tchar));
1739                 name = tbasename(tstrcpy(source_copy, source));
1740         }
1741         /* Image description defaults to NULL if not given. */
1742         desc = (argc >= 4) ? argv[3] : NULL;
1743
1744         if (source_list) {
1745                 /* Set up capture sources in source list mode */
1746                 if (source[0] == T('-') && source[1] == T('\0')) {
1747                         source_list_contents = stdin_get_text_contents(&source_list_nchars);
1748                 } else {
1749                         source_list_contents = file_get_text_contents(source,
1750                                                                       &source_list_nchars);
1751                 }
1752                 if (!source_list_contents)
1753                         return -1;
1754
1755                 capture_sources = parse_source_list(&source_list_contents,
1756                                                     source_list_nchars,
1757                                                     &num_sources);
1758                 if (!capture_sources) {
1759                         ret = -1;
1760                         goto out_free_source_list_contents;
1761                 }
1762                 capture_sources_malloced = true;
1763         } else {
1764                 /* Set up capture source in non-source-list mode (could be
1765                  * either "normal" mode or "NTFS mode"--- see the man page). */
1766                 capture_sources = alloca(sizeof(struct wimlib_capture_source));
1767                 capture_sources[0].fs_source_path = source;
1768                 capture_sources[0].wim_target_path = NULL;
1769                 capture_sources[0].reserved = 0;
1770                 num_sources = 1;
1771                 capture_sources_malloced = false;
1772                 source_list_contents = NULL;
1773         }
1774
1775         if (config_file) {
1776                 size_t config_len;
1777
1778                 config_str = file_get_text_contents(config_file, &config_len);
1779                 if (!config_str) {
1780                         ret = -1;
1781                         goto out_free_capture_sources;
1782                 }
1783
1784                 config = alloca(sizeof(*config));
1785                 ret = parse_capture_config(&config_str, config_len, config);
1786                 if (ret)
1787                         goto out_free_config;
1788         } else {
1789                 config = &default_capture_config;
1790         }
1791
1792         if (cmd == APPEND)
1793                 ret = wimlib_open_wim(wimfile, open_flags, &w,
1794                                       imagex_progress_func);
1795         else
1796                 ret = wimlib_create_new_wim(compression_type, &w);
1797         if (ret)
1798                 goto out_free_config;
1799
1800         if (!source_list) {
1801                 struct stat stbuf;
1802                 ret = tstat(source, &stbuf);
1803                 if (ret == 0) {
1804                         if (S_ISBLK(stbuf.st_mode) || S_ISREG(stbuf.st_mode)) {
1805                                 tprintf(T("Capturing WIM image from NTFS "
1806                                           "filesystem on \"%"TS"\"\n"), source);
1807                                 add_image_flags |= WIMLIB_ADD_IMAGE_FLAG_NTFS;
1808                         }
1809                 } else {
1810                         if (errno != ENOENT) {
1811                                 imagex_error_with_errno(T("Failed to stat "
1812                                                           "\"%"TS"\""), source);
1813                                 ret = -1;
1814                                 goto out_wimlib_free;
1815                         }
1816                 }
1817         }
1818 #ifdef __WIN32__
1819         win32_acquire_capture_privileges();
1820 #endif
1821
1822         ret = wimlib_add_image_multisource(w,
1823                                            capture_sources,
1824                                            num_sources,
1825                                            name,
1826                                            config,
1827                                            add_image_flags,
1828                                            imagex_progress_func);
1829         if (ret != 0)
1830                 goto out_release_privs;
1831         cur_image = wimlib_get_num_images(w);
1832         if (desc) {
1833                 ret = wimlib_set_image_descripton(w, cur_image, desc);
1834                 if (ret != 0)
1835                         goto out_release_privs;
1836         }
1837         if (flags_element) {
1838                 ret = wimlib_set_image_flags(w, cur_image, flags_element);
1839                 if (ret != 0)
1840                         goto out_release_privs;
1841         }
1842         if (cmd == APPEND) {
1843                 ret = wimlib_overwrite(w, write_flags, num_threads,
1844                                        imagex_progress_func);
1845         } else {
1846                 ret = wimlib_write(w, wimfile, WIMLIB_ALL_IMAGES, write_flags,
1847                                    num_threads, imagex_progress_func);
1848         }
1849         if (ret == WIMLIB_ERR_REOPEN)
1850                 ret = 0;
1851         if (ret != 0)
1852                 imagex_error(T("Failed to write the WIM file \"%"TS"\""),
1853                              wimfile);
1854 out_release_privs:
1855 #ifdef __WIN32__
1856         win32_release_capture_privileges();
1857 #endif
1858 out_wimlib_free:
1859         wimlib_free(w);
1860 out_free_config:
1861         if (config != NULL && config != &default_capture_config) {
1862                 free(config->exclusion_pats.pats);
1863                 free(config->exclusion_exception_pats.pats);
1864                 free(config_str);
1865         }
1866 out_free_capture_sources:
1867         if (capture_sources_malloced)
1868                 free(capture_sources);
1869 out_free_source_list_contents:
1870         free(source_list_contents);
1871         return ret;
1872 }
1873
1874 /* Remove image(s) from a WIM. */
1875 static int
1876 imagex_delete(int argc, tchar **argv)
1877 {
1878         int c;
1879         int open_flags = 0;
1880         int write_flags = 0;
1881         const tchar *wimfile;
1882         const tchar *image_num_or_name;
1883         WIMStruct *w;
1884         int image;
1885         int ret;
1886
1887         for_opt(c, delete_options) {
1888                 switch (c) {
1889                 case IMAGEX_CHECK_OPTION:
1890                         open_flags |= WIMLIB_OPEN_FLAG_CHECK_INTEGRITY;
1891                         write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
1892                         break;
1893                 case IMAGEX_SOFT_OPTION:
1894                         write_flags |= WIMLIB_WRITE_FLAG_SOFT_DELETE;
1895                         break;
1896                 default:
1897                         usage(DELETE);
1898                         return -1;
1899                 }
1900         }
1901         argc -= optind;
1902         argv += optind;
1903
1904         if (argc != 2) {
1905                 if (argc < 1)
1906                         imagex_error(T("Must specify a WIM file"));
1907                 if (argc < 2)
1908                         imagex_error(T("Must specify an image"));
1909                 usage(DELETE);
1910                 return -1;
1911         }
1912         wimfile = argv[0];
1913         image_num_or_name = argv[1];
1914
1915         ret = file_writable(wimfile);
1916         if (ret != 0)
1917                 return ret;
1918
1919         ret = wimlib_open_wim(wimfile, open_flags, &w,
1920                               imagex_progress_func);
1921         if (ret != 0)
1922                 return ret;
1923
1924         image = wimlib_resolve_image(w, image_num_or_name);
1925
1926         ret = verify_image_exists(image, image_num_or_name, wimfile);
1927         if (ret != 0)
1928                 goto out;
1929
1930         ret = wimlib_delete_image(w, image);
1931         if (ret != 0) {
1932                 imagex_error(T("Failed to delete image from \"%"TS"\""), wimfile);
1933                 goto out;
1934         }
1935
1936         ret = wimlib_overwrite(w, write_flags, 0, imagex_progress_func);
1937         if (ret == WIMLIB_ERR_REOPEN)
1938                 ret = 0;
1939         if (ret != 0) {
1940                 imagex_error(T("Failed to write the file \"%"TS"\" with image "
1941                                "deleted"), wimfile);
1942         }
1943 out:
1944         wimlib_free(w);
1945         return ret;
1946 }
1947
1948 /* Print the files contained in an image(s) in a WIM file. */
1949 static int
1950 imagex_dir(int argc, tchar **argv)
1951 {
1952         const tchar *wimfile;
1953         WIMStruct *w;
1954         int image;
1955         int ret;
1956         int num_images;
1957
1958         if (argc < 2) {
1959                 imagex_error(T("Must specify a WIM file"));
1960                 usage(DIR);
1961                 return -1;
1962         }
1963         if (argc > 3) {
1964                 imagex_error(T("Too many arguments"));
1965                 usage(DIR);
1966                 return -1;
1967         }
1968
1969         wimfile = argv[1];
1970         ret = wimlib_open_wim(wimfile, WIMLIB_OPEN_FLAG_SPLIT_OK, &w,
1971                               imagex_progress_func);
1972         if (ret != 0)
1973                 return ret;
1974
1975         if (argc == 3) {
1976                 image = wimlib_resolve_image(w, argv[2]);
1977                 ret = verify_image_exists(image, argv[2], wimfile);
1978                 if (ret != 0)
1979                         goto out;
1980         } else {
1981                 /* Image was not specified.  If the WIM only contains one image,
1982                  * choose that one; otherwise, print an error. */
1983                 num_images = wimlib_get_num_images(w);
1984                 if (num_images != 1) {
1985                         imagex_error(T("\"%"TS"\" contains %d images; Please "
1986                                        "select one."), wimfile, num_images);
1987                         usage(DIR);
1988                         ret = -1;
1989                         goto out;
1990                 }
1991                 image = 1;
1992         }
1993
1994         ret = wimlib_print_files(w, image);
1995 out:
1996         wimlib_free(w);
1997         return ret;
1998 }
1999
2000 /* Exports one, or all, images from a WIM file to a new WIM file or an existing
2001  * WIM file. */
2002 static int
2003 imagex_export(int argc, tchar **argv)
2004 {
2005         int c;
2006         int open_flags = 0;
2007         int export_flags = 0;
2008         int write_flags = 0;
2009         int compression_type = WIMLIB_COMPRESSION_TYPE_NONE;
2010         bool compression_type_specified = false;
2011         const tchar *src_wimfile;
2012         const tchar *src_image_num_or_name;
2013         const tchar *dest_wimfile;
2014         const tchar *dest_name;
2015         const tchar *dest_desc;
2016         WIMStruct *src_w = NULL;
2017         WIMStruct *dest_w = NULL;
2018         int ret;
2019         int image;
2020         struct stat stbuf;
2021         bool wim_is_new;
2022         const tchar *swm_glob = NULL;
2023         WIMStruct **additional_swms = NULL;
2024         unsigned num_additional_swms = 0;
2025         unsigned num_threads = 0;
2026
2027         for_opt(c, export_options) {
2028                 switch (c) {
2029                 case IMAGEX_BOOT_OPTION:
2030                         export_flags |= WIMLIB_EXPORT_FLAG_BOOT;
2031                         break;
2032                 case IMAGEX_CHECK_OPTION:
2033                         open_flags |= WIMLIB_OPEN_FLAG_CHECK_INTEGRITY;
2034                         write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
2035                         break;
2036                 case IMAGEX_COMPRESS_OPTION:
2037                         compression_type = get_compression_type(optarg);
2038                         if (compression_type == WIMLIB_COMPRESSION_TYPE_INVALID)
2039                                 return -1;
2040                         compression_type_specified = true;
2041                         break;
2042                 case IMAGEX_REF_OPTION:
2043                         swm_glob = optarg;
2044                         break;
2045                 case IMAGEX_THREADS_OPTION:
2046                         num_threads = parse_num_threads(optarg);
2047                         if (num_threads == UINT_MAX)
2048                                 return -1;
2049                         break;
2050                 case IMAGEX_REBUILD_OPTION:
2051                         write_flags |= WIMLIB_WRITE_FLAG_REBUILD;
2052                         break;
2053                 default:
2054                         usage(EXPORT);
2055                         return -1;
2056                 }
2057         }
2058         argc -= optind;
2059         argv += optind;
2060         if (argc < 3 || argc > 5) {
2061                 usage(EXPORT);
2062                 return -1;
2063         }
2064         src_wimfile           = argv[0];
2065         src_image_num_or_name = argv[1];
2066         dest_wimfile          = argv[2];
2067         dest_name             = (argc >= 4) ? argv[3] : NULL;
2068         dest_desc             = (argc >= 5) ? argv[4] : NULL;
2069         ret = wimlib_open_wim(src_wimfile,
2070                               open_flags | WIMLIB_OPEN_FLAG_SPLIT_OK, &src_w,
2071                               imagex_progress_func);
2072         if (ret != 0)
2073                 return ret;
2074
2075         /* Determine if the destination is an existing file or not.
2076          * If so, we try to append the exported image(s) to it; otherwise, we
2077          * create a new WIM containing the exported image(s). */
2078         if (tstat(dest_wimfile, &stbuf) == 0) {
2079                 int dest_ctype;
2080
2081                 wim_is_new = false;
2082                 /* Destination file exists. */
2083
2084                 if (!S_ISREG(stbuf.st_mode)) {
2085                         imagex_error(T("\"%"TS"\" is not a regular file"),
2086                                      dest_wimfile);
2087                         ret = -1;
2088                         goto out;
2089                 }
2090                 ret = wimlib_open_wim(dest_wimfile, open_flags, &dest_w,
2091                                       imagex_progress_func);
2092                 if (ret != 0)
2093                         goto out;
2094
2095                 ret = file_writable(dest_wimfile);
2096                 if (ret != 0)
2097                         goto out;
2098
2099                 dest_ctype = wimlib_get_compression_type(dest_w);
2100                 if (compression_type_specified
2101                     && compression_type != dest_ctype)
2102                 {
2103                         imagex_error(T("Cannot specify a compression type that is "
2104                                        "not the same as that used in the "
2105                                        "destination WIM"));
2106                         ret = -1;
2107                         goto out;
2108                 }
2109         } else {
2110                 wim_is_new = true;
2111                 /* dest_wimfile is not an existing file, so create a new WIM. */
2112                 if (!compression_type_specified)
2113                         compression_type = wimlib_get_compression_type(src_w);
2114                 if (errno == ENOENT) {
2115                         ret = wimlib_create_new_wim(compression_type, &dest_w);
2116                         if (ret != 0)
2117                                 goto out;
2118                 } else {
2119                         imagex_error_with_errno(T("Cannot stat file \"%"TS"\""),
2120                                                 dest_wimfile);
2121                         ret = -1;
2122                         goto out;
2123                 }
2124         }
2125
2126         image = wimlib_resolve_image(src_w, src_image_num_or_name);
2127         ret = verify_image_exists(image, src_image_num_or_name, src_wimfile);
2128         if (ret != 0)
2129                 goto out;
2130
2131         if (swm_glob) {
2132                 ret = open_swms_from_glob(swm_glob, src_wimfile, open_flags,
2133                                           &additional_swms,
2134                                           &num_additional_swms);
2135                 if (ret != 0)
2136                         goto out;
2137         }
2138
2139         ret = wimlib_export_image(src_w, image, dest_w, dest_name, dest_desc,
2140                                   export_flags, additional_swms,
2141                                   num_additional_swms, imagex_progress_func);
2142         if (ret != 0)
2143                 goto out;
2144
2145
2146         if (wim_is_new)
2147                 ret = wimlib_write(dest_w, dest_wimfile, WIMLIB_ALL_IMAGES,
2148                                    write_flags, num_threads,
2149                                    imagex_progress_func);
2150         else
2151                 ret = wimlib_overwrite(dest_w, write_flags, num_threads,
2152                                        imagex_progress_func);
2153 out:
2154         if (ret == WIMLIB_ERR_REOPEN)
2155                 ret = 0;
2156         wimlib_free(src_w);
2157         wimlib_free(dest_w);
2158         if (additional_swms) {
2159                 for (unsigned i = 0; i < num_additional_swms; i++)
2160                         wimlib_free(additional_swms[i]);
2161                 free(additional_swms);
2162         }
2163         return ret;
2164 }
2165
2166 static bool
2167 is_root_wim_path(const tchar *path)
2168 {
2169         const tchar *p;
2170         for (p = path; *p; p++)
2171                 if (*p != T('\\') && *p != T('/'))
2172                         return false;
2173         return true;
2174 }
2175
2176 static void
2177 free_extract_commands(struct wimlib_extract_command *cmds, size_t num_cmds,
2178                       const tchar *dest_dir)
2179 {
2180         for (size_t i = 0; i < num_cmds; i++)
2181                 if (cmds[i].fs_dest_path != dest_dir)
2182                         free(cmds[i].fs_dest_path);
2183         free(cmds);
2184 }
2185
2186 static struct wimlib_extract_command *
2187 prepare_extract_commands(tchar **paths, unsigned num_paths,
2188                          int extract_flags, tchar *dest_dir,
2189                          size_t *num_cmds_ret)
2190 {
2191         struct wimlib_extract_command *cmds;
2192         size_t num_cmds;
2193         tchar *emptystr = T("");
2194
2195         if (num_paths == 0) {
2196                 num_paths = 1;
2197                 paths = &emptystr;
2198         }
2199         num_cmds = num_paths;
2200         cmds = calloc(num_cmds, sizeof(cmds[0]));
2201         if (!cmds) {
2202                 imagex_error(T("Out of memory!"));
2203                 return NULL;
2204         }
2205
2206         for (size_t i = 0; i < num_cmds; i++) {
2207                 cmds[i].extract_flags = extract_flags;
2208                 cmds[i].wim_source_path = paths[i];
2209                 if (is_root_wim_path(paths[i])) {
2210                         cmds[i].fs_dest_path = dest_dir;
2211                 } else {
2212                         size_t len = tstrlen(dest_dir) + 1 + tstrlen(paths[i]);
2213                         cmds[i].fs_dest_path = malloc((len + 1) * sizeof(tchar));
2214                         if (!cmds[i].fs_dest_path) {
2215                                 free_extract_commands(cmds, num_cmds, dest_dir);
2216                                 return NULL;
2217                         }
2218                         tsprintf(cmds[i].fs_dest_path, T("%"TS"/%"TS), dest_dir,
2219                                  tbasename(paths[i]));
2220                 }
2221         }
2222         *num_cmds_ret = num_cmds;
2223         return cmds;
2224 }
2225
2226 /* Extract files or directories from a WIM image */
2227 static int
2228 imagex_extract(int argc, tchar **argv)
2229 {
2230         int c;
2231         int open_flags = WIMLIB_OPEN_FLAG_SPLIT_OK;
2232         int image;
2233         WIMStruct *wim;
2234         int ret;
2235         const tchar *wimfile;
2236         const tchar *image_num_or_name;
2237         tchar *dest_dir = T(".");
2238         int extract_flags = WIMLIB_EXTRACT_FLAG_SEQUENTIAL | WIMLIB_EXTRACT_FLAG_NORPFIX;
2239
2240         const tchar *swm_glob = NULL;
2241         WIMStruct **additional_swms = NULL;
2242         unsigned num_additional_swms = 0;
2243
2244         struct wimlib_extract_command *cmds;
2245         size_t num_cmds;
2246
2247         for_opt(c, extract_options) {
2248                 switch (c) {
2249                 case IMAGEX_CHECK_OPTION:
2250                         open_flags |= WIMLIB_OPEN_FLAG_CHECK_INTEGRITY;
2251                         break;
2252                 case IMAGEX_VERBOSE_OPTION:
2253                         extract_flags |= WIMLIB_EXTRACT_FLAG_VERBOSE;
2254                         break;
2255                 case IMAGEX_REF_OPTION:
2256                         swm_glob = optarg;
2257                         break;
2258                 case IMAGEX_UNIX_DATA_OPTION:
2259                         extract_flags |= WIMLIB_EXTRACT_FLAG_UNIX_DATA;
2260                         break;
2261                 case IMAGEX_NO_ACLS_OPTION:
2262                         extract_flags |= WIMLIB_EXTRACT_FLAG_NO_ACLS;
2263                         break;
2264                 case IMAGEX_STRICT_ACLS_OPTION:
2265                         extract_flags |= WIMLIB_EXTRACT_FLAG_STRICT_ACLS;
2266                         break;
2267                 case IMAGEX_DEST_DIR_OPTION:
2268                         dest_dir = optarg;
2269                         break;
2270                 case IMAGEX_TO_STDOUT_OPTION:
2271                         extract_flags |= WIMLIB_EXTRACT_FLAG_TO_STDOUT;
2272                         imagex_be_quiet = true;
2273                         break;
2274                 case IMAGEX_INCLUDE_INVALID_NAMES_OPTION:
2275                         extract_flags |= WIMLIB_EXTRACT_FLAG_REPLACE_INVALID_FILENAMES;
2276                         extract_flags |= WIMLIB_EXTRACT_FLAG_ALL_CASE_CONFLICTS;
2277                         break;
2278                 default:
2279                         goto out_usage;
2280                 }
2281         }
2282         argc -= optind;
2283         argv += optind;
2284
2285         if (argc < 2)
2286                 goto out_usage;
2287
2288         wimfile = argv[0];
2289         image_num_or_name = argv[1];
2290
2291         argc -= 2;
2292         argv += 2;
2293
2294         cmds = prepare_extract_commands(argv, argc, extract_flags, dest_dir,
2295                                         &num_cmds);
2296         if (!cmds) {
2297                 ret = -1;
2298                 goto out;
2299         }
2300
2301         ret = wimlib_open_wim(wimfile, open_flags, &wim, imagex_progress_func);
2302         if (ret)
2303                 goto out_free_cmds;
2304
2305         image = wimlib_resolve_image(wim, image_num_or_name);
2306         ret = verify_image_exists_and_is_single(image,
2307                                                 image_num_or_name,
2308                                                 wimfile);
2309         if (ret)
2310                 goto out_wimlib_free;
2311
2312         if (swm_glob) {
2313                 ret = open_swms_from_glob(swm_glob, wimfile, open_flags,
2314                                           &additional_swms,
2315                                           &num_additional_swms);
2316                 if (ret)
2317                         goto out_wimlib_free;
2318         }
2319
2320 #ifdef __WIN32__
2321         win32_acquire_restore_privileges();
2322 #endif
2323
2324         ret = wimlib_extract_files(wim, image, cmds, num_cmds, 0,
2325                                    additional_swms, num_additional_swms,
2326                                    imagex_progress_func);
2327         if (ret == 0) {
2328                 if (!imagex_be_quiet)
2329                         tprintf(T("Done extracting files.\n"));
2330         } else if (ret == WIMLIB_ERR_PATH_DOES_NOT_EXIST) {
2331                 tfprintf(stderr, T("Note: You can use `"IMAGEX_PROGNAME" dir' to see what "
2332                                    "files and directories\n"
2333                                    "      are in the WIM image.\n"));
2334         }
2335 #ifdef __WIN32__
2336         win32_release_restore_privileges();
2337 #endif
2338         if (additional_swms) {
2339                 for (unsigned i = 0; i < num_additional_swms; i++)
2340                         wimlib_free(additional_swms[i]);
2341                 free(additional_swms);
2342         }
2343 out_wimlib_free:
2344         wimlib_free(wim);
2345 out_free_cmds:
2346         free_extract_commands(cmds, num_cmds, dest_dir);
2347 out:
2348         return ret;
2349 out_usage:
2350         usage(EXTRACT);
2351         ret = -1;
2352         goto out;
2353 }
2354
2355 /* Prints information about a WIM file; also can mark an image as bootable,
2356  * change the name of an image, or change the description of an image. */
2357 static int
2358 imagex_info(int argc, tchar **argv)
2359 {
2360         int c;
2361         bool boot         = false;
2362         bool check        = false;
2363         bool header       = false;
2364         bool lookup_table = false;
2365         bool xml          = false;
2366         bool metadata     = false;
2367         bool short_header = true;
2368         const tchar *xml_out_file = NULL;
2369         const tchar *wimfile;
2370         const tchar *image_num_or_name = T("all");
2371         const tchar *new_name = NULL;
2372         const tchar *new_desc = NULL;
2373         WIMStruct *w;
2374         FILE *fp;
2375         int image;
2376         int ret;
2377         int open_flags = WIMLIB_OPEN_FLAG_SPLIT_OK;
2378         int part_number;
2379         int total_parts;
2380         int num_images;
2381
2382         for_opt(c, info_options) {
2383                 switch (c) {
2384                 case IMAGEX_BOOT_OPTION:
2385                         boot = true;
2386                         break;
2387                 case IMAGEX_CHECK_OPTION:
2388                         check = true;
2389                         break;
2390                 case IMAGEX_HEADER_OPTION:
2391                         header = true;
2392                         short_header = false;
2393                         break;
2394                 case IMAGEX_LOOKUP_TABLE_OPTION:
2395                         lookup_table = true;
2396                         short_header = false;
2397                         break;
2398                 case IMAGEX_XML_OPTION:
2399                         xml = true;
2400                         short_header = false;
2401                         break;
2402                 case IMAGEX_EXTRACT_XML_OPTION:
2403                         xml_out_file = optarg;
2404                         short_header = false;
2405                         break;
2406                 case IMAGEX_METADATA_OPTION:
2407                         metadata = true;
2408                         short_header = false;
2409                         break;
2410                 default:
2411                         usage(INFO);
2412                         return -1;
2413                 }
2414         }
2415
2416         argc -= optind;
2417         argv += optind;
2418         if (argc == 0 || argc > 4) {
2419                 usage(INFO);
2420                 return -1;
2421         }
2422         wimfile = argv[0];
2423         if (argc > 1) {
2424                 image_num_or_name = argv[1];
2425                 if (argc > 2) {
2426                         new_name = argv[2];
2427                         if (argc > 3) {
2428                                 new_desc = argv[3];
2429                         }
2430                 }
2431         }
2432
2433         if (check)
2434                 open_flags |= WIMLIB_OPEN_FLAG_CHECK_INTEGRITY;
2435
2436         ret = wimlib_open_wim(wimfile, open_flags, &w,
2437                               imagex_progress_func);
2438         if (ret != 0)
2439                 return ret;
2440
2441         part_number = wimlib_get_part_number(w, &total_parts);
2442
2443         image = wimlib_resolve_image(w, image_num_or_name);
2444         if (image == WIMLIB_NO_IMAGE && tstrcmp(image_num_or_name, T("0"))) {
2445                 imagex_error(T("The image \"%"TS"\" does not exist"),
2446                              image_num_or_name);
2447                 if (boot) {
2448                         imagex_error(T("If you would like to set the boot "
2449                                        "index to 0, specify image \"0\" with "
2450                                        "the --boot flag."));
2451                 }
2452                 ret = WIMLIB_ERR_INVALID_IMAGE;
2453                 goto out;
2454         }
2455
2456         num_images = wimlib_get_num_images(w);
2457
2458         if (num_images == 0) {
2459                 if (boot) {
2460                         imagex_error(T("--boot is meaningless on a WIM with no "
2461                                        "images"));
2462                         ret = WIMLIB_ERR_INVALID_IMAGE;
2463                         goto out;
2464                 }
2465         }
2466
2467         if (image == WIMLIB_ALL_IMAGES && num_images > 1) {
2468                 if (boot) {
2469                         imagex_error(T("Cannot specify the --boot flag "
2470                                        "without specifying a specific "
2471                                        "image in a multi-image WIM"));
2472                         ret = WIMLIB_ERR_INVALID_IMAGE;
2473                         goto out;
2474                 }
2475                 if (new_name) {
2476                         imagex_error(T("Cannot specify the NEW_NAME "
2477                                        "without specifying a specific "
2478                                        "image in a multi-image WIM"));
2479                         ret = WIMLIB_ERR_INVALID_IMAGE;
2480                         goto out;
2481                 }
2482         }
2483
2484         /* Operations that print information are separated from operations that
2485          * recreate the WIM file. */
2486         if (!new_name && !boot) {
2487
2488                 /* Read-only operations */
2489
2490                 if (image == WIMLIB_NO_IMAGE) {
2491                         imagex_error(T("\"%"TS"\" is not a valid image"),
2492                                      image_num_or_name);
2493                         ret = WIMLIB_ERR_INVALID_IMAGE;
2494                         goto out;
2495                 }
2496
2497                 if (image == WIMLIB_ALL_IMAGES && short_header)
2498                         wimlib_print_wim_information(w);
2499
2500                 if (header)
2501                         wimlib_print_header(w);
2502
2503                 if (lookup_table) {
2504                         if (total_parts != 1) {
2505                                 tprintf(T("Warning: Only showing the lookup table "
2506                                           "for part %d of a %d-part WIM.\n"),
2507                                         part_number, total_parts);
2508                         }
2509                         wimlib_print_lookup_table(w);
2510                 }
2511
2512                 if (xml) {
2513                         ret = wimlib_extract_xml_data(w, stdout);
2514                         if (ret != 0)
2515                                 goto out;
2516                 }
2517
2518                 if (xml_out_file) {
2519                         fp = tfopen(xml_out_file, T("wb"));
2520                         if (!fp) {
2521                                 imagex_error_with_errno(T("Failed to open the "
2522                                                           "file \"%"TS"\" for "
2523                                                           "writing "),
2524                                                         xml_out_file);
2525                                 ret = -1;
2526                                 goto out;
2527                         }
2528                         ret = wimlib_extract_xml_data(w, fp);
2529                         if (fclose(fp) != 0) {
2530                                 imagex_error(T("Failed to close the file "
2531                                                "\"%"TS"\""),
2532                                              xml_out_file);
2533                                 ret = -1;
2534                         }
2535
2536                         if (ret != 0)
2537                                 goto out;
2538                 }
2539
2540                 if (short_header)
2541                         wimlib_print_available_images(w, image);
2542
2543                 if (metadata) {
2544                         ret = wimlib_print_metadata(w, image);
2545                         if (ret != 0)
2546                                 goto out;
2547                 }
2548         } else {
2549
2550                 /* Modification operations */
2551                 if (total_parts != 1) {
2552                         imagex_error(T("Modifying a split WIM is not supported."));
2553                         ret = -1;
2554                         goto out;
2555                 }
2556                 if (image == WIMLIB_ALL_IMAGES)
2557                         image = 1;
2558
2559                 if (image == WIMLIB_NO_IMAGE && new_name) {
2560                         imagex_error(T("Cannot specify new_name (\"%"TS"\") "
2561                                        "when using image 0"), new_name);
2562                         ret = -1;
2563                         goto out;
2564                 }
2565
2566                 if (boot) {
2567                         if (image == wimlib_get_boot_idx(w)) {
2568                                 tprintf(T("Image %d is already marked as "
2569                                           "bootable.\n"), image);
2570                                 boot = false;
2571                         } else {
2572                                 tprintf(T("Marking image %d as bootable.\n"),
2573                                         image);
2574                                 wimlib_set_boot_idx(w, image);
2575                         }
2576                 }
2577                 if (new_name) {
2578                         if (!tstrcmp(wimlib_get_image_name(w, image), new_name))
2579                         {
2580                                 tprintf(T("Image %d is already named \"%"TS"\".\n"),
2581                                         image, new_name);
2582                                 new_name = NULL;
2583                         } else {
2584                                 tprintf(T("Changing the name of image %d to "
2585                                           "\"%"TS"\".\n"), image, new_name);
2586                                 ret = wimlib_set_image_name(w, image, new_name);
2587                                 if (ret != 0)
2588                                         goto out;
2589                         }
2590                 }
2591                 if (new_desc) {
2592                         const tchar *old_desc;
2593                         old_desc = wimlib_get_image_description(w, image);
2594                         if (old_desc && !tstrcmp(old_desc, new_desc)) {
2595                                 tprintf(T("The description of image %d is already "
2596                                           "\"%"TS"\".\n"), image, new_desc);
2597                                 new_desc = NULL;
2598                         } else {
2599                                 tprintf(T("Changing the description of image %d "
2600                                           "to \"%"TS"\".\n"), image, new_desc);
2601                                 ret = wimlib_set_image_descripton(w, image,
2602                                                                   new_desc);
2603                                 if (ret != 0)
2604                                         goto out;
2605                         }
2606                 }
2607
2608                 /* Only call wimlib_overwrite() if something actually needs to
2609                  * be changed. */
2610                 if (boot || new_name || new_desc ||
2611                     (check && !wimlib_has_integrity_table(w)))
2612                 {
2613                         int write_flags;
2614
2615                         ret = file_writable(wimfile);
2616                         if (ret != 0)
2617                                 goto out;
2618
2619                         if (check)
2620                                 write_flags = WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
2621                         else
2622                                 write_flags = 0;
2623
2624                         ret = wimlib_overwrite(w, write_flags, 1,
2625                                                imagex_progress_func);
2626                         if (ret == WIMLIB_ERR_REOPEN)
2627                                 ret = 0;
2628                 } else {
2629                         tprintf(T("The file \"%"TS"\" was not modified because nothing "
2630                                   "needed to be done.\n"), wimfile);
2631                         ret = 0;
2632                 }
2633         }
2634 out:
2635         wimlib_free(w);
2636         return ret;
2637 }
2638
2639 /* Join split WIMs into one part WIM */
2640 static int
2641 imagex_join(int argc, tchar **argv)
2642 {
2643         int c;
2644         int swm_open_flags = WIMLIB_OPEN_FLAG_SPLIT_OK;
2645         int wim_write_flags = 0;
2646         const tchar *output_path;
2647
2648         for_opt(c, join_options) {
2649                 switch (c) {
2650                 case IMAGEX_CHECK_OPTION:
2651                         swm_open_flags |= WIMLIB_OPEN_FLAG_CHECK_INTEGRITY;
2652                         wim_write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
2653                         break;
2654                 default:
2655                         goto err;
2656                 }
2657         }
2658         argc -= optind;
2659         argv += optind;
2660
2661         if (argc < 2) {
2662                 imagex_error(T("Must specify one or more split WIM (.swm) "
2663                                "parts to join"));
2664                 goto err;
2665         }
2666         output_path = argv[0];
2667         return wimlib_join((const tchar * const *)++argv,
2668                            --argc,
2669                            output_path,
2670                            swm_open_flags,
2671                            wim_write_flags,
2672                            imagex_progress_func);
2673 err:
2674         usage(JOIN);
2675         return -1;
2676 }
2677
2678 /* Mounts an image using a FUSE mount. */
2679 static int
2680 imagex_mount_rw_or_ro(int argc, tchar **argv)
2681 {
2682         int c;
2683         int mount_flags = 0;
2684         int open_flags = WIMLIB_OPEN_FLAG_SPLIT_OK;
2685         const tchar *wimfile;
2686         const tchar *dir;
2687         WIMStruct *w;
2688         int image;
2689         int num_images;
2690         int ret;
2691         const tchar *swm_glob = NULL;
2692         WIMStruct **additional_swms = NULL;
2693         unsigned num_additional_swms = 0;
2694         const tchar *staging_dir = NULL;
2695
2696         if (!tstrcmp(argv[0], T("mountrw")))
2697                 mount_flags |= WIMLIB_MOUNT_FLAG_READWRITE;
2698
2699         for_opt(c, mount_options) {
2700                 switch (c) {
2701                 case IMAGEX_ALLOW_OTHER_OPTION:
2702                         mount_flags |= WIMLIB_MOUNT_FLAG_ALLOW_OTHER;
2703                         break;
2704                 case IMAGEX_CHECK_OPTION:
2705                         open_flags |= WIMLIB_OPEN_FLAG_CHECK_INTEGRITY;
2706                         break;
2707                 case IMAGEX_DEBUG_OPTION:
2708                         mount_flags |= WIMLIB_MOUNT_FLAG_DEBUG;
2709                         break;
2710                 case IMAGEX_STREAMS_INTERFACE_OPTION:
2711                         if (!tstrcasecmp(optarg, T("none")))
2712                                 mount_flags |= WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_NONE;
2713                         else if (!tstrcasecmp(optarg, T("xattr")))
2714                                 mount_flags |= WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_XATTR;
2715                         else if (!tstrcasecmp(optarg, T("windows")))
2716                                 mount_flags |= WIMLIB_MOUNT_FLAG_STREAM_INTERFACE_WINDOWS;
2717                         else {
2718                                 imagex_error(T("Unknown stream interface \"%"TS"\""),
2719                                              optarg);
2720                                 goto mount_usage;
2721                         }
2722                         break;
2723                 case IMAGEX_REF_OPTION:
2724                         swm_glob = optarg;
2725                         break;
2726                 case IMAGEX_STAGING_DIR_OPTION:
2727                         staging_dir = optarg;
2728                         break;
2729                 case IMAGEX_UNIX_DATA_OPTION:
2730                         mount_flags |= WIMLIB_MOUNT_FLAG_UNIX_DATA;
2731                         break;
2732                 default:
2733                         goto mount_usage;
2734                 }
2735         }
2736         argc -= optind;
2737         argv += optind;
2738         if (argc != 2 && argc != 3)
2739                 goto mount_usage;
2740
2741         wimfile = argv[0];
2742
2743         ret = wimlib_open_wim(wimfile, open_flags, &w,
2744                               imagex_progress_func);
2745         if (ret != 0)
2746                 return ret;
2747
2748         if (swm_glob) {
2749                 ret = open_swms_from_glob(swm_glob, wimfile, open_flags,
2750                                           &additional_swms,
2751                                           &num_additional_swms);
2752                 if (ret != 0)
2753                         goto out;
2754         }
2755
2756         if (argc == 2) {
2757                 image = 1;
2758                 num_images = wimlib_get_num_images(w);
2759                 if (num_images != 1) {
2760                         imagex_error(T("\"%"TS"\" contains %d images; Please "
2761                                        "select one."), wimfile, num_images);
2762                         usage((mount_flags & WIMLIB_MOUNT_FLAG_READWRITE)
2763                                         ? MOUNTRW : MOUNT);
2764                         ret = -1;
2765                         goto out;
2766                 }
2767                 dir = argv[1];
2768         } else {
2769                 image = wimlib_resolve_image(w, argv[1]);
2770                 dir = argv[2];
2771                 ret = verify_image_exists_and_is_single(image, argv[1], wimfile);
2772                 if (ret != 0)
2773                         goto out;
2774         }
2775
2776         if (mount_flags & WIMLIB_MOUNT_FLAG_READWRITE) {
2777                 ret = file_writable(wimfile);
2778                 if (ret != 0)
2779                         goto out;
2780         }
2781
2782         ret = wimlib_mount_image(w, image, dir, mount_flags, additional_swms,
2783                                  num_additional_swms, staging_dir);
2784         if (ret != 0) {
2785                 imagex_error(T("Failed to mount image %d from \"%"TS"\" "
2786                                "on \"%"TS"\""),
2787                              image, wimfile, dir);
2788
2789         }
2790 out:
2791         wimlib_free(w);
2792         if (additional_swms) {
2793                 for (unsigned i = 0; i < num_additional_swms; i++)
2794                         wimlib_free(additional_swms[i]);
2795                 free(additional_swms);
2796         }
2797         return ret;
2798 mount_usage:
2799         usage((mount_flags & WIMLIB_MOUNT_FLAG_READWRITE)
2800                         ? MOUNTRW : MOUNT);
2801         return -1;
2802 }
2803
2804 /* Rebuild a WIM file */
2805 static int
2806 imagex_optimize(int argc, tchar **argv)
2807 {
2808         int c;
2809         int open_flags = 0;
2810         int write_flags = WIMLIB_WRITE_FLAG_REBUILD;
2811         int ret;
2812         WIMStruct *w;
2813         const tchar *wimfile;
2814         off_t old_size;
2815         off_t new_size;
2816         unsigned num_threads = 0;
2817
2818         for_opt(c, optimize_options) {
2819                 switch (c) {
2820                 case IMAGEX_CHECK_OPTION:
2821                         open_flags |= WIMLIB_OPEN_FLAG_CHECK_INTEGRITY;
2822                         write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
2823                         break;
2824                 case IMAGEX_RECOMPRESS_OPTION:
2825                         write_flags |= WIMLIB_WRITE_FLAG_RECOMPRESS;
2826                         break;
2827                 case IMAGEX_THREADS_OPTION:
2828                         num_threads = parse_num_threads(optarg);
2829                         if (num_threads == UINT_MAX)
2830                                 return -1;
2831                         break;
2832                 default:
2833                         usage(OPTIMIZE);
2834                         return -1;
2835                 }
2836         }
2837         argc -= optind;
2838         argv += optind;
2839
2840         if (argc != 1) {
2841                 usage(OPTIMIZE);
2842                 return -1;
2843         }
2844
2845         wimfile = argv[0];
2846
2847         ret = file_writable(wimfile);
2848         if (ret)
2849                 return ret;
2850
2851         ret = wimlib_open_wim(wimfile, open_flags, &w,
2852                               imagex_progress_func);
2853         if (ret)
2854                 return ret;
2855
2856         old_size = file_get_size(argv[0]);
2857         tprintf(T("\"%"TS"\" original size: "), wimfile);
2858         if (old_size == -1)
2859                 tfputs(T("Unknown\n"), stdout);
2860         else
2861                 tprintf(T("%"PRIu64" KiB\n"), old_size >> 10);
2862
2863         ret = wimlib_overwrite(w, write_flags, num_threads,
2864                                imagex_progress_func);
2865
2866         if (ret == 0) {
2867                 new_size = file_get_size(argv[0]);
2868                 tprintf(T("\"%"TS"\" optimized size: "), wimfile);
2869                 if (new_size == -1)
2870                         tfputs(T("Unknown\n"), stdout);
2871                 else
2872                         tprintf(T("%"PRIu64" KiB\n"), new_size >> 10);
2873
2874                 tfputs(T("Space saved: "), stdout);
2875                 if (new_size != -1 && old_size != -1) {
2876                         tprintf(T("%lld KiB\n"),
2877                                ((long long)old_size - (long long)new_size) >> 10);
2878                 } else {
2879                         tfputs(T("Unknown\n"), stdout);
2880                 }
2881         }
2882
2883         wimlib_free(w);
2884         return ret;
2885 }
2886
2887 /* Split a WIM into a spanned set */
2888 static int
2889 imagex_split(int argc, tchar **argv)
2890 {
2891         int c;
2892         int open_flags = WIMLIB_OPEN_FLAG_SPLIT_OK;
2893         int write_flags = 0;
2894         unsigned long part_size;
2895         tchar *tmp;
2896         int ret;
2897         WIMStruct *w;
2898
2899         for_opt(c, split_options) {
2900                 switch (c) {
2901                 case IMAGEX_CHECK_OPTION:
2902                         open_flags |= WIMLIB_OPEN_FLAG_CHECK_INTEGRITY;
2903                         write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
2904                         break;
2905                 default:
2906                         usage(SPLIT);
2907                         return -1;
2908                 }
2909         }
2910         argc -= optind;
2911         argv += optind;
2912
2913         if (argc != 3) {
2914                 usage(SPLIT);
2915                 return -1;
2916         }
2917         part_size = tstrtod(argv[2], &tmp) * (1 << 20);
2918         if (tmp == argv[2] || *tmp) {
2919                 imagex_error(T("Invalid part size \"%"TS"\""), argv[2]);
2920                 imagex_error(T("The part size must be an integer or "
2921                                "floating-point number of megabytes."));
2922                 return -1;
2923         }
2924         ret = wimlib_open_wim(argv[0], open_flags, &w, imagex_progress_func);
2925         if (ret != 0)
2926                 return ret;
2927         ret = wimlib_split(w, argv[1], part_size, write_flags, imagex_progress_func);
2928         wimlib_free(w);
2929         return ret;
2930 }
2931
2932 /* Unmounts a mounted WIM image. */
2933 static int
2934 imagex_unmount(int argc, tchar **argv)
2935 {
2936         int c;
2937         int unmount_flags = 0;
2938         int ret;
2939
2940         for_opt(c, unmount_options) {
2941                 switch (c) {
2942                 case IMAGEX_COMMIT_OPTION:
2943                         unmount_flags |= WIMLIB_UNMOUNT_FLAG_COMMIT;
2944                         break;
2945                 case IMAGEX_CHECK_OPTION:
2946                         unmount_flags |= WIMLIB_UNMOUNT_FLAG_CHECK_INTEGRITY;
2947                         break;
2948                 case IMAGEX_REBUILD_OPTION:
2949                         unmount_flags |= WIMLIB_UNMOUNT_FLAG_REBUILD;
2950                         break;
2951                 case IMAGEX_LAZY_OPTION:
2952                         unmount_flags |= WIMLIB_UNMOUNT_FLAG_LAZY;
2953                         break;
2954                 default:
2955                         usage(UNMOUNT);
2956                         return -1;
2957                 }
2958         }
2959         argc -= optind;
2960         argv += optind;
2961         if (argc != 1) {
2962                 usage(UNMOUNT);
2963                 return -1;
2964         }
2965
2966         ret = wimlib_unmount_image(argv[0], unmount_flags,
2967                                    imagex_progress_func);
2968         if (ret != 0)
2969                 imagex_error(T("Failed to unmount \"%"TS"\""), argv[0]);
2970         return ret;
2971 }
2972
2973 /*
2974  * Add, delete, or rename files in a WIM image.
2975  */
2976 static int
2977 imagex_update(int argc, tchar **argv)
2978 {
2979         const tchar *wimfile;
2980         const tchar *image_num_or_name;
2981         int image;
2982         WIMStruct *wim;
2983         int ret;
2984         int open_flags = 0;
2985         int write_flags = 0;
2986         int update_flags = 0;
2987         int default_add_flags = WIMLIB_ADD_IMAGE_FLAG_EXCLUDE_VERBOSE;
2988         int default_delete_flags = 0;
2989         unsigned num_threads = 0;
2990         int c;
2991         tchar *cmd_file_contents = NULL;
2992         size_t cmd_file_nchars;
2993         struct wimlib_update_command *cmds;
2994         size_t num_cmds;
2995         int num_images;
2996         tchar *command_str = NULL;
2997
2998         const tchar *config_file = NULL;
2999         tchar *config_str;
3000         struct wimlib_capture_config *config = NULL;
3001
3002         for_opt(c, update_options) {
3003                 switch (c) {
3004                 /* Generic or write options */
3005                 case IMAGEX_THREADS_OPTION:
3006                         num_threads = parse_num_threads(optarg);
3007                         if (num_threads == UINT_MAX) {
3008                                 ret = -1;
3009                                 goto out;
3010                         }
3011                         break;
3012                 case IMAGEX_CHECK_OPTION:
3013                         open_flags |= WIMLIB_OPEN_FLAG_CHECK_INTEGRITY;
3014                         write_flags |= WIMLIB_WRITE_FLAG_CHECK_INTEGRITY;
3015                         break;
3016                 case IMAGEX_REBUILD_OPTION:
3017                         write_flags |= WIMLIB_WRITE_FLAG_REBUILD;
3018                         break;
3019                 case IMAGEX_COMMAND_OPTION:
3020                         if (command_str) {
3021                                 imagex_error(T("--command may only be specified "
3022                                                "one time.  Please provide\n"
3023                                                "       the update commands "
3024                                                "on standard input instead."));
3025                                 ret = -1;
3026                                 goto out;
3027                         }
3028                         command_str = tstrdup(optarg);
3029                         if (!command_str) {
3030                                 imagex_error(T("Out of memory!"));
3031                                 ret = -1;
3032                                 goto out;
3033                         }
3034                         break;
3035                 /* Default delete options */
3036                 case IMAGEX_FORCE_OPTION:
3037                         default_delete_flags |= WIMLIB_DELETE_FLAG_FORCE;
3038                         break;
3039                 case IMAGEX_RECURSIVE_OPTION:
3040                         default_delete_flags |= WIMLIB_DELETE_FLAG_RECURSIVE;
3041                         break;
3042
3043                 /* Global add option */
3044                 case IMAGEX_CONFIG_OPTION:
3045                         config_file = optarg;
3046                         break;
3047
3048                 /* Default add options */
3049                 case IMAGEX_VERBOSE_OPTION:
3050                         default_add_flags |= WIMLIB_ADD_IMAGE_FLAG_VERBOSE;
3051                         break;
3052                 case IMAGEX_DEREFERENCE_OPTION:
3053                         default_add_flags |= WIMLIB_ADD_IMAGE_FLAG_DEREFERENCE;
3054                         break;
3055                 case IMAGEX_UNIX_DATA_OPTION:
3056                         default_add_flags |= WIMLIB_ADD_IMAGE_FLAG_UNIX_DATA;
3057                         break;
3058                 case IMAGEX_NO_ACLS_OPTION:
3059                         default_add_flags |= WIMLIB_ADD_IMAGE_FLAG_NO_ACLS;
3060                         break;
3061                 case IMAGEX_STRICT_ACLS_OPTION:
3062                         default_add_flags |= WIMLIB_ADD_IMAGE_FLAG_STRICT_ACLS;
3063                         break;
3064                 default:
3065                         goto out_usage;
3066                 }
3067         }
3068         argv += optind;
3069         argc -= optind;
3070
3071         if (argc < 1 || argc > 2)
3072                 goto out_usage;
3073         wimfile = argv[0];
3074
3075         ret = file_writable(wimfile);
3076         if (ret)
3077                 goto out;
3078
3079         ret = wimlib_open_wim(wimfile, open_flags, &wim, imagex_progress_func);
3080         if (ret)
3081                 goto out;
3082
3083         if (argc == 2)
3084                 image_num_or_name = argv[1];
3085         else
3086                 image_num_or_name = T("1");
3087
3088         image = wimlib_resolve_image(wim, image_num_or_name);
3089
3090         ret = verify_image_exists_and_is_single(image, image_num_or_name,
3091                                                 wimfile);
3092         if (ret)
3093                 goto out_wimlib_free;
3094
3095         num_images = wimlib_get_num_images(wim);
3096         if (argc == 1 && num_images != 1) {
3097                 imagex_error(T("\"%"TS"\" contains %d images; Please select one."),
3098                              wimfile, num_images);
3099                 usage(UPDATE);
3100                 ret = -1;
3101                 goto out_wimlib_free;
3102         }
3103
3104         /* Parse capture configuration file if specified */
3105         if (config_file) {
3106                 size_t config_len;
3107
3108                 config_str = file_get_text_contents(config_file, &config_len);
3109                 if (!config_str) {
3110                         ret = -1;
3111                         goto out_wimlib_free;
3112                 }
3113
3114                 config = alloca(sizeof(*config));
3115                 ret = parse_capture_config(&config_str, config_len, config);
3116                 if (ret)
3117                         goto out_free_config;
3118         } else {
3119                 config = &default_capture_config;
3120         }
3121
3122         /* Read update commands from standard input, or the command string if
3123          * specified.  */
3124         if (command_str) {
3125                 cmds = parse_update_command_file(&command_str, tstrlen(command_str),
3126                                                  &num_cmds);
3127         } else {
3128                 if (isatty(STDIN_FILENO)) {
3129                         tputs(T("Reading update commands from standard input..."));
3130                         recommend_man_page(T("update"));
3131                 }
3132                 cmd_file_contents = stdin_get_text_contents(&cmd_file_nchars);
3133                 if (!cmd_file_contents) {
3134                         ret = -1;
3135                         goto out_free_config;
3136                 }
3137
3138                 /* Parse the update commands */
3139                 cmds = parse_update_command_file(&cmd_file_contents, cmd_file_nchars,
3140                                                  &num_cmds);
3141         }
3142         if (!cmds) {
3143                 ret = -1;
3144                 goto out_free_cmd_file_contents;
3145         }
3146
3147         /* Set default flags and capture config on the update commands */
3148         for (size_t i = 0; i < num_cmds; i++) {
3149                 switch (cmds[i].op) {
3150                 case WIMLIB_UPDATE_OP_ADD:
3151                         cmds[i].add.add_flags |= default_add_flags;
3152                         cmds[i].add.config = config;
3153                         break;
3154                 case WIMLIB_UPDATE_OP_DELETE:
3155                         cmds[i].delete.delete_flags |= default_delete_flags;
3156                         break;
3157                 default:
3158                         break;
3159                 }
3160         }
3161
3162 #ifdef __WIN32__
3163         win32_acquire_capture_privileges();
3164 #endif
3165
3166         /* Execute the update commands */
3167         ret = wimlib_update_image(wim, image, cmds, num_cmds, update_flags,
3168                                   imagex_progress_func);
3169         if (ret)
3170                 goto out_release_privs;
3171
3172         /* Overwrite the updated WIM */
3173         ret = wimlib_overwrite(wim, write_flags, num_threads,
3174                                imagex_progress_func);
3175 out_release_privs:
3176 #ifdef __WIN32__
3177         win32_release_capture_privileges();
3178 #endif
3179         free(cmds);
3180 out_free_cmd_file_contents:
3181         free(cmd_file_contents);
3182 out_free_config:
3183         if (config != NULL && config != &default_capture_config) {
3184                 free(config->exclusion_pats.pats);
3185                 free(config->exclusion_exception_pats.pats);
3186                 free(config_str);
3187         }
3188 out_wimlib_free:
3189         wimlib_free(wim);
3190 out:
3191         free(command_str);
3192         return ret;
3193 out_usage:
3194         usage(UPDATE);
3195         ret = -1;
3196         goto out;
3197 }
3198
3199 struct imagex_command {
3200         const tchar *name;
3201         int (*func)(int , tchar **);
3202         int cmd;
3203 };
3204
3205
3206 #define for_imagex_command(p) for (p = &imagex_commands[0]; \
3207                 p != &imagex_commands[ARRAY_LEN(imagex_commands)]; p++)
3208
3209 static const struct imagex_command imagex_commands[] = {
3210         {T("append"),  imagex_capture_or_append, APPEND},
3211         {T("apply"),   imagex_apply,             APPLY},
3212         {T("capture"), imagex_capture_or_append, CAPTURE},
3213         {T("delete"),  imagex_delete,            DELETE},
3214         {T("dir"),     imagex_dir,               DIR},
3215         {T("export"),  imagex_export,            EXPORT},
3216         {T("extract"), imagex_extract,           EXTRACT},
3217         {T("info"),    imagex_info,              INFO},
3218         {T("join"),    imagex_join,              JOIN},
3219         {T("mount"),   imagex_mount_rw_or_ro,    MOUNT},
3220         {T("mountrw"), imagex_mount_rw_or_ro,    MOUNTRW},
3221         {T("optimize"),imagex_optimize,          OPTIMIZE},
3222         {T("split"),   imagex_split,             SPLIT},
3223         {T("unmount"), imagex_unmount,           UNMOUNT},
3224         {T("update"),  imagex_update,            UPDATE},
3225 };
3226
3227 static void
3228 version(void)
3229 {
3230         static const tchar *s =
3231         T(
3232 IMAGEX_PROGNAME " (" PACKAGE ") " PACKAGE_VERSION "\n"
3233 "Copyright (C) 2012, 2013 Eric Biggers\n"
3234 "License GPLv3+; GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n"
3235 "This is free software: you are free to change and redistribute it.\n"
3236 "There is NO WARRANTY, to the extent permitted by law.\n"
3237 "\n"
3238 "Report bugs to "PACKAGE_BUGREPORT".\n"
3239         );
3240         tfputs(s, stdout);
3241 }
3242
3243
3244 static void
3245 help_or_version(int argc, tchar **argv)
3246 {
3247         int i;
3248         const tchar *p;
3249         const struct imagex_command *cmd;
3250
3251         for (i = 1; i < argc; i++) {
3252                 p = argv[i];
3253                 if (*p == T('-'))
3254                         p++;
3255                 else
3256                         continue;
3257                 if (*p == T('-'))
3258                         p++;
3259                 if (!tstrcmp(p, T("help"))) {
3260                         for_imagex_command(cmd) {
3261                                 if (!tstrcmp(cmd->name, argv[1])) {
3262                                         usage(cmd->cmd);
3263                                         exit(0);
3264                                 }
3265                         }
3266                         usage_all();
3267                         exit(0);
3268                 }
3269                 if (!tstrcmp(p, T("version"))) {
3270                         version();
3271                         exit(0);
3272                 }
3273         }
3274 }
3275
3276
3277 static void
3278 usage(int cmd_type)
3279 {
3280         const struct imagex_command *cmd;
3281         tprintf(T("Usage:\n%"TS), usage_strings[cmd_type]);
3282         for_imagex_command(cmd) {
3283                 if (cmd->cmd == cmd_type) {
3284                         tputc(T('\n'), stdout);
3285                         recommend_man_page(cmd->name);
3286                 }
3287         }
3288 }
3289
3290 static void
3291 usage_all(void)
3292 {
3293         tfputs(T("Usage:\n"), stdout);
3294         for (int i = 0; i < ARRAY_LEN(usage_strings); i++)
3295                 tprintf(T("    %"TS), usage_strings[i]);
3296         static const tchar *extra =
3297         T(
3298 "    "IMAGEX_PROGNAME" --help\n"
3299 "    "IMAGEX_PROGNAME" --version\n"
3300 "\n"
3301 "    The compression TYPE may be \"maximum\", \"fast\", or \"none\".\n"
3302 "\n"
3303         );
3304         tfputs(extra, stdout);
3305         recommend_man_page(T(""));
3306 }
3307
3308 /* Entry point for wimlib's ImageX implementation.  On UNIX the command
3309  * arguments will just be 'char' strings (ideally UTF-8 encoded, but could be
3310  * something else), while an Windows the command arguments will be UTF-16LE
3311  * encoded 'wchar_t' strings. */
3312 int
3313 #ifdef __WIN32__
3314 wmain(int argc, wchar_t **argv, wchar_t **envp)
3315 #else
3316 main(int argc, char **argv)
3317 #endif
3318 {
3319         const struct imagex_command *cmd;
3320         int ret;
3321         int init_flags = 0;
3322
3323 #ifndef __WIN32__
3324         if (getenv("WIMLIB_IMAGEX_USE_UTF8")) {
3325                 init_flags |= WIMLIB_INIT_FLAG_ASSUME_UTF8;
3326         } else {
3327                 char *codeset;
3328
3329                 setlocale(LC_ALL, "");
3330                 codeset = nl_langinfo(CODESET);
3331                 if (!strstr(codeset, "UTF-8") &&
3332                     !strstr(codeset, "UTF8") &&
3333                     !strstr(codeset, "utf-8") &&
3334                     !strstr(codeset, "utf8"))
3335                 {
3336                         fputs(
3337 "WARNING: Running "IMAGEX_PROGNAME" in a UTF-8 locale is recommended!\n"
3338 "         Maybe try: `export LANG=en_US.UTF-8'?\n"
3339 "         Alternatively, set the environmental variable WIMLIB_IMAGEX_USE_UTF8\n"
3340 "         to any value to force wimlib to use UTF-8.\n",
3341                         stderr);
3342
3343                 }
3344         }
3345 #endif /* !__WIN32__ */
3346
3347         if (argc < 2) {
3348                 imagex_error(T("No command specified"));
3349                 usage_all();
3350                 ret = 2;
3351                 goto out;
3352         }
3353
3354         /* Handle --help and --version for all commands.  Note that this will
3355          * not return if either of these arguments are present. */
3356         help_or_version(argc, argv);
3357         argc--;
3358         argv++;
3359
3360         /* The user may like to see more informative error messages. */
3361         wimlib_set_print_errors(true);
3362
3363         /* Do any initializations that the library needs */
3364         ret = wimlib_global_init(init_flags);
3365         if (ret)
3366                 goto out_check_status;
3367
3368         /* Search for the function to handle the ImageX subcommand. */
3369         for_imagex_command(cmd) {
3370                 if (!tstrcmp(cmd->name, *argv)) {
3371                         ret = cmd->func(argc, argv);
3372                         goto out_check_write_error;
3373                 }
3374         }
3375
3376         imagex_error(T("Unrecognized command: `%"TS"'"), argv[0]);
3377         usage_all();
3378         ret = 2;
3379         goto out_cleanup;
3380 out_check_write_error:
3381         /* For 'wimlib-imagex info' and 'wimlib-imagex dir', data printed to
3382          * standard output is part of the program's actual behavior and not just
3383          * for informational purposes, so we should set a failure exit status if
3384          * there was a write error. */
3385         if (cmd == &imagex_commands[INFO] || cmd == &imagex_commands[DIR]) {
3386                 if (ferror(stdout) || fclose(stdout)) {
3387                         imagex_error_with_errno(T("error writing to standard output"));
3388                         if (ret == 0)
3389                                 ret = -1;
3390                 }
3391         }
3392 out_check_status:
3393         /* Exit status (ret):  -1 indicates an error found by 'wimlib-imagex'
3394          * outside of the wimlib library code.  0 indicates success.  > 0
3395          * indicates a wimlib error code from which an error message can be
3396          * printed. */
3397         if (ret > 0) {
3398                 imagex_error(T("Exiting with error code %d:\n"
3399                                "       %"TS"."), ret,
3400                              wimlib_get_error_string(ret));
3401                 if (ret == WIMLIB_ERR_NTFS_3G && errno != 0)
3402                         imagex_error_with_errno(T("errno"));
3403         }
3404 out_cleanup:
3405         /* Make the library free any resources it's holding (not strictly
3406          * necessary because the process is ending anyway). */
3407         wimlib_global_cleanup();
3408 out:
3409         return ret;
3410 }