]> wimlib.net Git - wimlib/blob - src/extract.c
Fix various issues
[wimlib] / src / extract.c
1 /*
2  * extract.c
3  *
4  * Support for extracting WIM files.
5  *
6  * This code does NOT contain any filesystem-specific features.  In particular,
7  * security information (i.e. file permissions) and alternate data streams are
8  * ignored, except possibly to read an alternate data stream that contains
9  * symbolic link data.
10  */
11
12 /*
13  * Copyright (C) 2010 Carl Thijssen
14  * Copyright (C) 2012 Eric Biggers
15  *
16  * This file is part of wimlib, a library for working with WIM files.
17  *
18  * wimlib is free software; you can redistribute it and/or modify it under the
19  * terms of the GNU Lesser General Public License as published by the Free
20  * Software Foundation; either version 2.1 of the License, or (at your option)
21  * any later version.
22  *
23  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
24  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
25  * A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
26  * details.
27  *
28  * You should have received a copy of the GNU Lesser General Public License
29  * along with wimlib; if not, see http://www.gnu.org/licenses/.
30  */
31
32
33 #include <dirent.h>
34 #include <errno.h>
35 #include <fcntl.h>
36 #include <string.h>
37 #include <sys/stat.h>
38 #include <sys/time.h>
39 #include <unistd.h>
40
41 #include "config.h"
42 #include "dentry.h"
43 #include "lookup_table.h"
44 #include "timestamp.h"
45 #include "wimlib_internal.h"
46 #include "xml.h"
47
48 /* Internal */
49 #define WIMLIB_EXTRACT_FLAG_MULTI_IMAGE 0x80000000
50
51 static int extract_regular_file_linked(const struct dentry *dentry, 
52                                        const char *output_dir,
53                                        const char *output_path,
54                                        int extract_flags,
55                                        struct lookup_table_entry *lte)
56 {
57         /* This mode overrides the normal hard-link extraction and
58          * instead either symlinks or hardlinks *all* identical files in
59          * the WIM, even if they are in a different image (in the case
60          * of a multi-image extraction) */
61         wimlib_assert(lte->extracted_file);
62
63         if (extract_flags & WIMLIB_EXTRACT_FLAG_HARDLINK) {
64                 if (link(lte->extracted_file, output_path) != 0) {
65                         ERROR_WITH_ERRNO("Failed to hard link "
66                                          "`%s' to `%s'",
67                                          output_path, lte->extracted_file);
68                         return WIMLIB_ERR_LINK;
69                 }
70         } else {
71                 int num_path_components;
72                 int num_output_dir_path_components;
73                 size_t extracted_file_len;
74                 char *p;
75                 const char *p2;
76                 size_t i;
77
78                 wimlib_assert(extract_flags & WIMLIB_EXTRACT_FLAG_SYMLINK);
79
80                 num_path_components = 
81                         get_num_path_components(dentry->full_path_utf8) - 1;
82                 num_output_dir_path_components =
83                         get_num_path_components(output_dir);
84
85                 if (extract_flags & WIMLIB_EXTRACT_FLAG_MULTI_IMAGE) {
86                         num_path_components++;
87                         num_output_dir_path_components--;
88                 }
89                 extracted_file_len = strlen(lte->extracted_file);
90
91                 char buf[extracted_file_len + 3 * num_path_components + 1];
92                 p = &buf[0];
93
94                 for (i = 0; i < num_path_components; i++) {
95                         *p++ = '.';
96                         *p++ = '.';
97                         *p++ = '/';
98                 }
99                 p2 = lte->extracted_file;
100                 while (*p2 == '/')
101                         p2++;
102                 while (num_output_dir_path_components--)
103                         p2 = path_next_part(p2, NULL);
104                 strcpy(p, p2);
105                 if (symlink(buf, output_path) != 0) {
106                         ERROR_WITH_ERRNO("Failed to symlink `%s' to "
107                                          "`%s'",
108                                          buf, lte->extracted_file);
109                         return WIMLIB_ERR_LINK;
110                 }
111
112         }
113         return 0;
114 }
115
116 static int extract_regular_file_unlinked(WIMStruct *w,
117                                          struct dentry *dentry, 
118                                          const char *output_path,
119                                          int extract_flags,
120                                          struct lookup_table_entry *lte)
121 {
122         /* Normal mode of extraction.  Regular files and hard links are
123          * extracted in the way that they appear in the WIM. */
124
125         int out_fd;
126         int ret;
127         const struct list_head *head = &dentry->link_group_list;
128
129         if (head->next != head &&
130              !(extract_flags & WIMLIB_EXTRACT_FLAG_MULTI_IMAGE))
131         {
132                 /* This dentry is one of a hard link set of at least 2 dentries.
133                  * If one of the other dentries has already been extracted, make
134                  * a hard link to the file corresponding to this
135                  * already-extracted directory.  Otherwise, extract the
136                  * file, and set the dentry->extracted_file field so that other
137                  * dentries in the hard link group can link to it. */
138                 struct dentry *other;
139                 list_for_each_entry(other, head, link_group_list) {
140                         if (other->extracted_file) {
141                                 DEBUG("Extracting hard link `%s' => `%s'",
142                                       output_path, other->extracted_file);
143                                 if (link(other->extracted_file, output_path) != 0) {
144                                         ERROR_WITH_ERRNO("Failed to hard link "
145                                                          "`%s' to `%s'",
146                                                          output_path,
147                                                          other->extracted_file);
148                                         return WIMLIB_ERR_LINK;
149                                 }
150                                 return 0;
151                         }
152                 }
153                 FREE(dentry->extracted_file);
154                 dentry->extracted_file = STRDUP(output_path);
155                 if (!dentry->extracted_file) {
156                         ERROR("Failed to allocate memory for filename");
157                         return WIMLIB_ERR_NOMEM;
158                 }
159         }
160
161         /* Extract the contents of the file to @output_path. */
162
163         out_fd = open(output_path, O_WRONLY | O_CREAT | O_TRUNC, 0644);
164         if (out_fd == -1) {
165                 ERROR_WITH_ERRNO("Failed to open the file `%s' for writing",
166                                  output_path);
167                 return WIMLIB_ERR_OPEN;
168         }
169
170         if (!lte) {
171                 /* Empty file with no lookup table entry */
172                 DEBUG("Empty file `%s'.", output_path);
173                 ret = 0;
174                 goto done;
175         }
176
177         ret = extract_full_wim_resource_to_fd(lte, out_fd);
178         if (ret != 0) {
179                 ERROR("Failed to extract resource to `%s'", output_path);
180                 goto done;
181         }
182
183 done:
184         if (close(out_fd) != 0) {
185                 ERROR_WITH_ERRNO("Failed to close file `%s'", output_path);
186                 ret = WIMLIB_ERR_WRITE;
187         }
188         return ret;
189 }
190
191 /* 
192  * Extracts a regular file from the WIM archive. 
193  */
194 static int extract_regular_file(WIMStruct *w, 
195                                 struct dentry *dentry, 
196                                 const char *output_dir,
197                                 const char *output_path,
198                                 int extract_flags)
199 {
200         struct lookup_table_entry *lte;
201
202         lte = dentry_unnamed_lte(dentry, w->lookup_table);
203
204         if ((extract_flags & (WIMLIB_EXTRACT_FLAG_SYMLINK |
205                               WIMLIB_EXTRACT_FLAG_HARDLINK)) && lte) {
206                 if (++lte->out_refcnt != 1)
207                         return extract_regular_file_linked(dentry, output_dir,
208                                                            output_path,
209                                                            extract_flags, lte);
210                 lte->extracted_file = STRDUP(output_path);
211                 if (!lte->extracted_file)
212                         return WIMLIB_ERR_NOMEM;
213         }
214
215         return extract_regular_file_unlinked(w, dentry, output_path,
216                                              extract_flags, lte);
217
218 }
219
220 static int extract_symlink(const struct dentry *dentry, const char *output_path,
221                            const WIMStruct *w)
222 {
223         char target[4096];
224         ssize_t ret = dentry_readlink(dentry, target, sizeof(target), w);
225         if (ret <= 0) {
226                 ERROR("Could not read the symbolic link from dentry `%s'",
227                       dentry->full_path_utf8);
228                 return WIMLIB_ERR_INVALID_DENTRY;
229         }
230         ret = symlink(target, output_path);
231         if (ret != 0) {
232                 ERROR_WITH_ERRNO("Failed to symlink `%s' to `%s'",
233                                  output_path, target);
234                 return WIMLIB_ERR_LINK;
235         }
236         return 0;
237 }
238
239 /* 
240  * Extracts a directory from the WIM archive. 
241  *
242  * @dentry:             The directory entry for the directory.
243  * @output_path:        The path to which the directory is to be extracted to.
244  * @return:             True on success, false on failure. 
245  */
246 static int extract_directory(const char *output_path, bool is_root)
247 {
248         int ret;
249         struct stat stbuf;
250         ret = stat(output_path, &stbuf);
251         if (ret == 0) {
252                 if (S_ISDIR(stbuf.st_mode)) {
253                         if (!is_root)
254                                 WARNING("`%s' already exists", output_path);
255                         return 0;
256                 } else {
257                         ERROR("`%s' is not a directory", output_path);
258                         return WIMLIB_ERR_MKDIR;
259                 }
260         } else {
261                 if (errno != ENOENT) {
262                         ERROR_WITH_ERRNO("Failed to stat `%s'", output_path);
263                         return WIMLIB_ERR_STAT;
264                 }
265         }
266         /* Compute the output path directory to the directory. */
267         if (mkdir(output_path, S_IRWXU | S_IRGRP | S_IXGRP |
268                                S_IROTH | S_IXOTH) != 0) {
269                 ERROR_WITH_ERRNO("Cannot create directory `%s'",
270                                  output_path);
271                 return WIMLIB_ERR_MKDIR;
272         }
273         return 0;
274 }
275
276 struct extract_args {
277         WIMStruct *w;
278         int extract_flags;
279         const char *output_dir;
280 #ifdef WITH_NTFS_3G
281         struct SECURITY_API *scapi;
282 #endif
283 };
284
285 /* 
286  * Extracts a file, directory, or symbolic link from the WIM archive.  For use
287  * in for_dentry_in_tree().
288  */
289 static int extract_dentry(struct dentry *dentry, void *arg)
290 {
291         struct extract_args *args = arg;
292         WIMStruct *w = args->w;
293         int extract_flags = args->extract_flags;
294         size_t len = strlen(args->output_dir);
295         char output_path[len + dentry->full_path_utf8_len + 1];
296         int ret;
297
298         if (extract_flags & WIMLIB_EXTRACT_FLAG_VERBOSE) {
299                 wimlib_assert(dentry->full_path_utf8);
300                 puts(dentry->full_path_utf8);
301         }
302
303         memcpy(output_path, args->output_dir, len);
304         memcpy(output_path + len, dentry->full_path_utf8, dentry->full_path_utf8_len);
305         output_path[len + dentry->full_path_utf8_len] = '\0';
306
307         if (dentry_is_symlink(dentry))
308                 ret = extract_symlink(dentry, output_path, w);
309         else if (dentry_is_directory(dentry))
310                 ret = extract_directory(output_path, dentry_is_root(dentry));
311         else
312                 ret = extract_regular_file(w, dentry, args->output_dir,
313                                             output_path, extract_flags);
314         if (ret != 0)
315                 return ret;
316
317         return 0;
318 }
319
320 /* Apply timestamp to extracted file */
321 static int apply_dentry_timestamps(struct dentry *dentry, void *arg)
322 {
323         struct extract_args *args = arg;
324         size_t len = strlen(args->output_dir);
325         char output_path[len + dentry->full_path_utf8_len + 1];
326
327         memcpy(output_path, args->output_dir, len);
328         memcpy(output_path + len, dentry->full_path_utf8, dentry->full_path_utf8_len);
329         output_path[len + dentry->full_path_utf8_len] = '\0';
330
331         struct timeval tv[2];
332         wim_timestamp_to_timeval(dentry->last_access_time, &tv[0]);
333         wim_timestamp_to_timeval(dentry->last_write_time, &tv[1]);
334         if (lutimes(output_path, tv) != 0) {
335                 WARNING("Failed to set timestamp on file `%s': %s",
336                         output_path, strerror(errno));
337         }
338         return 0;
339 }
340
341
342 static int extract_single_image(WIMStruct *w, int image,
343                                 const char *output_dir, int extract_flags)
344 {
345         DEBUG("Extracting image %d", image);
346
347         int ret;
348         ret = wimlib_select_image(w, image);
349         if (ret != 0)
350                 return ret;
351
352         struct extract_args args = {
353                 .w = w,
354                 .extract_flags = extract_flags,
355                 .output_dir = output_dir,
356         #ifdef WITH_NTFS_3G
357                 .scapi = NULL
358         #endif
359         };
360
361         ret = for_dentry_in_tree(wim_root_dentry(w), extract_dentry, &args);
362         if (ret != 0)
363                 return ret;
364         return for_dentry_in_tree_depth(wim_root_dentry(w),
365                                         apply_dentry_timestamps, &args);
366
367 }
368
369
370 /* Extracts all images from the WIM to @output_dir, with the images placed in
371  * subdirectories named by their image names. */
372 static int extract_all_images(WIMStruct *w, const char *output_dir,
373                               int extract_flags)
374 {
375         size_t image_name_max_len = max(xml_get_max_image_name_len(w), 20);
376         size_t output_path_len = strlen(output_dir);
377         char buf[output_path_len + 1 + image_name_max_len + 1];
378         int ret;
379         int image;
380         const char *image_name;
381
382         DEBUG("Attempting to extract all images from `%s'", w->filename);
383
384         ret = extract_directory(output_dir, true);
385         if (ret != 0)
386                 return ret;
387
388         memcpy(buf, output_dir, output_path_len);
389         buf[output_path_len] = '/';
390         for (image = 1; image <= w->hdr.image_count; image++) {
391                 
392                 image_name = wimlib_get_image_name(w, image);
393                 if (*image_name) {
394                         strcpy(buf + output_path_len + 1, image_name);
395                 } else {
396                         /* Image name is empty. Use image number instead */
397                         sprintf(buf + output_path_len + 1, "%d", image);
398                 }
399                 ret = extract_single_image(w, image, buf, extract_flags);
400                 if (ret != 0)
401                         goto done;
402         }
403 done:
404         /* Restore original output directory */
405         buf[output_path_len + 1] = '\0';
406         return 0;
407 }
408
409 /* Extracts a single image or all images from a WIM file. */
410 WIMLIBAPI int wimlib_extract_image(WIMStruct *w, int image,
411                                    const char *output_dir, int flags)
412 {
413         if (!output_dir)
414                 return WIMLIB_ERR_INVALID_PARAM;
415
416         if ((flags & (WIMLIB_EXTRACT_FLAG_SYMLINK | WIMLIB_EXTRACT_FLAG_HARDLINK))
417                         == (WIMLIB_EXTRACT_FLAG_SYMLINK | WIMLIB_EXTRACT_FLAG_HARDLINK))
418                 return WIMLIB_ERR_INVALID_PARAM;
419
420         for_lookup_table_entry(w->lookup_table, zero_out_refcnts, NULL);
421
422         if (image == WIM_ALL_IMAGES) {
423                 flags |= WIMLIB_EXTRACT_FLAG_MULTI_IMAGE;
424                 return extract_all_images(w, output_dir, flags);
425         } else {
426                 flags &= ~WIMLIB_EXTRACT_FLAG_MULTI_IMAGE;
427                 return extract_single_image(w, image, output_dir, flags);
428         }
429
430 }