]> wimlib.net Git - wimlib/blob - src/capture_common.c
Add support for special files on UNIX
[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 part of wimlib, a library for working with WIM files.
9  *
10  * wimlib is free software; you can redistribute it and/or modify it under the
11  * terms of the GNU General Public License as published by the Free
12  * Software Foundation; either version 3 of the License, or (at your option)
13  * any later version.
14  *
15  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
16  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
17  * A PARTICULAR PURPOSE. See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with wimlib; if not, see http://www.gnu.org/licenses/.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #include "wimlib/capture.h"
29 #include "wimlib/dentry.h"
30 #include "wimlib/error.h"
31 #include "wimlib/lookup_table.h"
32 #include "wimlib/paths.h"
33 #include "wimlib/progress.h"
34 #include "wimlib/textfile.h"
35 #include "wimlib/wildcard.h"
36
37 #include <string.h>
38
39 /*
40  * Tally a file (or directory) that has been scanned for a capture operation,
41  * and possibly call the progress function provided by the library user.
42  *
43  * @params
44  *      Flags, optional progress function, and progress data for the capture
45  *      operation.
46  * @status
47  *      Status of the scanned file (ok, unsupported, excluded, or excluded
48  *      symlink).
49  * @inode
50  *      If @status is WIMLIB_SCAN_DENTRY_OK, this is a pointer to the WIM inode
51  *      that has been created for the scanned file.  The first time the file is
52  *      seen, inode->i_nlink will be 1.  On subsequent visits of the same inode
53  *      via additional hard links, inode->i_nlink will be greater than 1.
54  */
55 int
56 do_capture_progress(struct add_image_params *params, int status,
57                     const struct wim_inode *inode)
58 {
59         switch (status) {
60         case WIMLIB_SCAN_DENTRY_OK:
61                 if (!(params->add_flags & WIMLIB_ADD_FLAG_VERBOSE))
62                         return 0;
63         case WIMLIB_SCAN_DENTRY_UNSUPPORTED:
64         case WIMLIB_SCAN_DENTRY_EXCLUDED:
65         case WIMLIB_SCAN_DENTRY_EXCLUDED_SYMLINK:
66                 if (!(params->add_flags & WIMLIB_ADD_FLAG_EXCLUDE_VERBOSE))
67                         return 0;
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         STRING_SET(prepopulate_pats);
181
182         struct text_file_section sections[] = {
183                 {T("ExclusionList"),
184                         &config->exclusion_pats},
185                 {T("ExclusionException"),
186                         &config->exclusion_exception_pats},
187                 {T("PrepopulateList"),
188                         &prepopulate_pats},
189         };
190         void *mem;
191
192         ret = do_load_text_file(config_file, buf, bufsize, &mem,
193                                 sections, ARRAY_LEN(sections),
194                                 LOAD_TEXT_FILE_REMOVE_QUOTES, mangle_pat);
195         if (ret)
196                 return ret;
197
198         FREE(prepopulate_pats.strings);
199
200         config->buf = mem;
201         return 0;
202 }
203
204 void
205 destroy_capture_config(struct capture_config *config)
206 {
207         FREE(config->exclusion_pats.strings);
208         FREE(config->exclusion_exception_pats.strings);
209         FREE(config->buf);
210 }
211
212 /*
213  * Determine whether a path matches any wildcard pattern in a list.
214  *
215  * Special rules apply about what form @path must be in; see match_path().
216  */
217 bool
218 match_pattern_list(const tchar *path, size_t path_nchars,
219                    const struct string_set *list)
220 {
221         for (size_t i = 0; i < list->num_strings; i++)
222                 if (match_path(path, path_nchars, list->strings[i],
223                                OS_PREFERRED_PATH_SEPARATOR, true))
224                         return true;
225         return false;
226 }
227
228 /*
229  * Determine whether the filesystem @path should be excluded from capture, based
230  * on the current capture configuration file.
231  *
232  * The @path must be given relative to the root of the capture, but with a
233  * leading path separator.  For example, if the file "in/file" is being tested
234  * and the library user ran wimlib_add_image(wim, "in", ...), then the directory
235  * "in" is the root of the capture and the path should be specified as "/file".
236  *
237  * Also, all path separators in @path must be OS_PREFERRED_PATH_SEPARATOR, there
238  * cannot be trailing slashes, and there cannot be consecutive path separators.
239  *
240  * As a special case, the empty string will be interpreted as a single path
241  * separator (which means the root of capture itself).
242  */
243 bool
244 should_exclude_path(const tchar *path, size_t path_nchars,
245                     const struct capture_config *config)
246 {
247         tchar dummy[2];
248
249         if (!config)
250                 return false;
251
252         if (!*path) {
253                 dummy[0] = OS_PREFERRED_PATH_SEPARATOR;
254                 dummy[1] = T('\0');
255                 path = dummy;
256                 path_nchars = 1;
257         }
258
259         return match_pattern_list(path, path_nchars, &config->exclusion_pats) &&
260               !match_pattern_list(path, path_nchars, &config->exclusion_exception_pats);
261
262 }