]> wimlib.net Git - wimlib/blob - src/capture_common.c
4905e35160b3d9d0e64b5806d1915b66dfa0252b
[wimlib] / src / capture_common.c
1 /*
2  * capture_common.c - Mostly code to handle excluding paths from capture.
3  */
4
5 /*
6  * Copyright (C) 2013, 2014 Eric Biggers
7  *
8  * This file is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU Lesser General Public License as published by the Free
10  * Software Foundation; either version 3 of the License, or (at your option) any
11  * later version.
12  *
13  * This file is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this file; if not, see http://www.gnu.org/licenses/.
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #  include "config.h"
24 #endif
25
26 #include "wimlib/capture.h"
27 #include "wimlib/dentry.h"
28 #include "wimlib/error.h"
29 #include "wimlib/lookup_table.h"
30 #include "wimlib/paths.h"
31 #include "wimlib/progress.h"
32 #include "wimlib/textfile.h"
33 #include "wimlib/wildcard.h"
34
35 #include <string.h>
36
37 /*
38  * Tally a file (or directory) that has been scanned for a capture operation,
39  * and possibly call the progress function provided by the library user.
40  *
41  * @params
42  *      Flags, optional progress function, and progress data for the capture
43  *      operation.
44  * @status
45  *      Status of the scanned file.
46  * @inode
47  *      If @status is WIMLIB_SCAN_DENTRY_OK, this is a pointer to the WIM inode
48  *      that has been created for the scanned file.  The first time the file is
49  *      seen, inode->i_nlink will be 1.  On subsequent visits of the same inode
50  *      via additional hard links, inode->i_nlink will be greater than 1.
51  */
52 int
53 do_capture_progress(struct add_image_params *params, int status,
54                     const struct wim_inode *inode)
55 {
56         switch (status) {
57         case WIMLIB_SCAN_DENTRY_OK:
58                 if (!(params->add_flags & WIMLIB_ADD_FLAG_VERBOSE))
59                         return 0;
60                 break;
61         case WIMLIB_SCAN_DENTRY_UNSUPPORTED:
62         case WIMLIB_SCAN_DENTRY_EXCLUDED:
63         case WIMLIB_SCAN_DENTRY_FIXED_SYMLINK:
64         case WIMLIB_SCAN_DENTRY_NOT_FIXED_SYMLINK:
65                 if (!(params->add_flags & WIMLIB_ADD_FLAG_EXCLUDE_VERBOSE))
66                         return 0;
67                 break;
68         }
69         params->progress.scan.status = status;
70         if (status == WIMLIB_SCAN_DENTRY_OK && inode->i_nlink == 1) {
71
72                 /* Successful scan, and visiting inode for the first time  */
73
74                 /* Tally size of all data streams.  */
75                 const struct wim_lookup_table_entry *lte;
76                 for (unsigned i = 0; i <= inode->i_num_ads; i++) {
77                         lte = inode_stream_lte_resolved(inode, i);
78                         if (lte)
79                                 params->progress.scan.num_bytes_scanned += lte->size;
80                 }
81
82                 /* Tally the file itself.  */
83                 if (inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY)
84                         params->progress.scan.num_dirs_scanned++;
85                 else
86                         params->progress.scan.num_nondirs_scanned++;
87         }
88
89         /* Call the user-provided progress function.  */
90         return call_progress(params->progfunc, WIMLIB_PROGRESS_MSG_SCAN_DENTRY,
91                              &params->progress, params->progctx);
92 }
93
94 /*
95  * Given a null-terminated pathname pattern @pat that has been read from line
96  * @line_no of the file @path, validate and canonicalize the pattern.
97  *
98  * On success, returns 0.
99  * On failure, returns WIMLIB_ERR_INVALID_CAPTURE_CONFIG.
100  * In either case, @pat may have been modified in-place (and possibly
101  * shortened).
102  */
103 int
104 mangle_pat(tchar *pat, const tchar *path, unsigned long line_no)
105 {
106         if (!is_any_path_separator(pat[0]) &&
107             pat[0] != T('\0') && pat[1] == T(':'))
108         {
109                 /* Pattern begins with drive letter.  */
110
111                 if (!is_any_path_separator(pat[2])) {
112                         /* Something like c:file, which is actually a path
113                          * relative to the current working directory on the c:
114                          * drive.  We require paths with drive letters to be
115                          * absolute.  */
116                         ERROR("%"TS":%lu: Invalid pattern \"%"TS"\":\n"
117                               "        Patterns including drive letters must be absolute!\n"
118                               "        Maybe try \"%"TC":%"TC"%"TS"\"?\n",
119                               path, line_no, pat,
120                               pat[0], OS_PREFERRED_PATH_SEPARATOR, &pat[2]);
121                         return WIMLIB_ERR_INVALID_CAPTURE_CONFIG;
122                 }
123
124                 WARNING("%"TS":%lu: Pattern \"%"TS"\" starts with a drive "
125                         "letter, which is being removed.",
126                         path, line_no, pat);
127
128                 /* Strip the drive letter.  */
129                 tmemmove(pat, pat + 2, tstrlen(pat + 2) + 1);
130         }
131
132         /* Collapse consecutive path separators, and translate both / and \ into
133          * / (UNIX) or \ (Windows).
134          *
135          * Note: we expect that this function produces patterns that can be used
136          * for both filesystem paths and WIM paths, so the desired path
137          * separators must be the same.  */
138         BUILD_BUG_ON(OS_PREFERRED_PATH_SEPARATOR != WIM_PATH_SEPARATOR);
139         do_canonicalize_path(pat, pat);
140
141         /* Relative patterns can only match file names, so they must be
142          * single-component only.  */
143         if (pat[0] != OS_PREFERRED_PATH_SEPARATOR &&
144             tstrchr(pat, OS_PREFERRED_PATH_SEPARATOR))
145         {
146                 ERROR("%"TS":%lu: Invalid pattern \"%"TS"\":\n"
147                       "        Relative patterns can only include one path component!\n"
148                       "        Maybe try \"%"TC"%"TS"\"?",
149                       path, line_no, pat, OS_PREFERRED_PATH_SEPARATOR, pat);
150                 return WIMLIB_ERR_INVALID_CAPTURE_CONFIG;
151         }
152
153         return 0;
154 }
155
156 /*
157  * Read, parse, and validate a capture configuration file from either an on-disk
158  * file or an in-memory buffer.
159  *
160  * To read from a file, specify @config_file, and use NULL for @buf.
161  * To read from a buffer, specify @buf and @bufsize.
162  *
163  * @config must be initialized to all 0's.
164  *
165  * On success, 0 will be returned, and the resulting capture configuration will
166  * be stored in @config.
167  *
168  * On failure, a positive error code will be returned, and the contents of
169  * @config will be invalidated.
170  */
171 int
172 read_capture_config(const tchar *config_file, const void *buf,
173                     size_t bufsize, struct capture_config *config)
174 {
175         int ret;
176
177         /* [PrepopulateList] is used for apply, not capture.  But since we do
178          * understand it, recognize it, thereby avoiding the unrecognized
179          * section warning, but discard the resulting strings.
180          *
181          * We currently ignore [CompressionExclusionList] and
182          * [CompressionFolderList].  This is a known issue that doesn't seem to
183          * have any real consequences, so don't issue warnings about not
184          * recognizing those sections.  */
185         STRING_SET(prepopulate_pats);
186         STRING_SET(compression_exclusion_pats);
187         STRING_SET(compression_folder_pats);
188
189         struct text_file_section sections[] = {
190                 {T("ExclusionList"),
191                         &config->exclusion_pats},
192                 {T("ExclusionException"),
193                         &config->exclusion_exception_pats},
194                 {T("PrepopulateList"),
195                         &prepopulate_pats},
196                 {T("CompressionExclusionList"),
197                         &compression_exclusion_pats},
198                 {T("CompressionFolderList"),
199                         &compression_folder_pats},
200         };
201         void *mem;
202
203         ret = do_load_text_file(config_file, buf, bufsize, &mem,
204                                 sections, ARRAY_LEN(sections),
205                                 LOAD_TEXT_FILE_REMOVE_QUOTES, mangle_pat);
206         if (ret)
207                 return ret;
208
209         FREE(prepopulate_pats.strings);
210         FREE(compression_exclusion_pats.strings);
211         FREE(compression_folder_pats.strings);
212
213         config->buf = mem;
214         return 0;
215 }
216
217 void
218 destroy_capture_config(struct capture_config *config)
219 {
220         FREE(config->exclusion_pats.strings);
221         FREE(config->exclusion_exception_pats.strings);
222         FREE(config->buf);
223 }
224
225 /*
226  * Determine whether a path matches any wildcard pattern in a list.
227  *
228  * Special rules apply about what form @path must be in; see match_path().
229  */
230 bool
231 match_pattern_list(const tchar *path, size_t path_nchars,
232                    const struct string_set *list)
233 {
234         for (size_t i = 0; i < list->num_strings; i++)
235                 if (match_path(path, path_nchars, list->strings[i],
236                                OS_PREFERRED_PATH_SEPARATOR, true))
237                         return true;
238         return false;
239 }
240
241 /*
242  * Determine whether the filesystem @path should be excluded from capture, based
243  * on the current capture configuration file.
244  *
245  * The @path must be given relative to the root of the capture, but with a
246  * leading path separator.  For example, if the file "in/file" is being tested
247  * and the library user ran wimlib_add_image(wim, "in", ...), then the directory
248  * "in" is the root of the capture and the path should be specified as "/file".
249  *
250  * Also, all path separators in @path must be OS_PREFERRED_PATH_SEPARATOR, there
251  * cannot be trailing slashes, and there cannot be consecutive path separators.
252  *
253  * As a special case, the empty string will be interpreted as a single path
254  * separator (which means the root of capture itself).
255  */
256 static bool
257 should_exclude_path(const tchar *path, size_t path_nchars,
258                     const struct capture_config *config)
259 {
260         tchar dummy[2];
261
262         if (!config)
263                 return false;
264
265         if (!*path) {
266                 dummy[0] = OS_PREFERRED_PATH_SEPARATOR;
267                 dummy[1] = T('\0');
268                 path = dummy;
269                 path_nchars = 1;
270         }
271
272         return match_pattern_list(path, path_nchars, &config->exclusion_pats) &&
273               !match_pattern_list(path, path_nchars, &config->exclusion_exception_pats);
274
275 }
276
277 /*
278  * Determine if a file should be excluded from capture.
279  *
280  * This function tests exclusions from both of the two possible sources of
281  * exclusions:
282  *
283  *      (1) The capture configuration file
284  *      (2) The user-provided progress function
285  *
286  * The capture implementation must have set params->capture_root_nchars to an
287  * appropriate value.  Example for UNIX:  if the capture root directory is
288  * "foobar/subdir", then all paths will be provided starting with
289  * "foobar/subdir", so params->capture_root_nchars must be set to
290  * strlen("foobar/subdir") so that try_exclude() can use the appropriate suffix
291  * when it calls should_exclude_path().
292  *
293  *
294  * Returns:
295  *      < 0 if excluded
296  *      = 0 if not excluded and no error
297  *      > 0 (wimlib error code) if error
298  */
299 int
300 try_exclude(const tchar *full_path, size_t full_path_nchars,
301             const struct add_image_params *params)
302 {
303         int ret;
304
305         if (should_exclude_path(full_path + params->capture_root_nchars,
306                                 full_path_nchars - params->capture_root_nchars,
307                                 params->config))
308                 return -1;
309
310         if (unlikely(params->add_flags & WIMLIB_ADD_FLAG_TEST_FILE_EXCLUSION)) {
311                 union wimlib_progress_info info;
312
313                 info.test_file_exclusion.path = full_path;
314                 info.test_file_exclusion.will_exclude = false;
315
316         #ifdef __WIN32__
317                 /* Hack for Windows...  */
318
319                 wchar_t *p_question_mark = NULL;
320
321                 if (!wcsncmp(full_path, L"\\??\\", 4)) {
322                         /* Trivial transformation:  NT namespace => Win32 namespace  */
323                         p_question_mark = (wchar_t *)&full_path[1];
324                         *p_question_mark = L'\\';
325                 }
326         #endif
327
328                 ret = call_progress(params->progfunc, WIMLIB_PROGRESS_MSG_TEST_FILE_EXCLUSION,
329                                     &info, params->progctx);
330
331         #ifdef __WIN32__
332                 if (p_question_mark)
333                         *p_question_mark = L'?';
334         #endif
335
336                 if (ret)
337                         return ret;
338                 if (info.test_file_exclusion.will_exclude)
339                         return -1;
340         }
341
342         return 0;
343 }