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