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