]> wimlib.net Git - wimlib/blob - src/extract.c
80549a6b7df39db616f1b83f40906955c585bd3d
[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 #include "wimlib_internal.h"
28 #include "dentry.h"
29 #include "lookup_table.h"
30 #include "xml.h"
31 #include <sys/stat.h>
32 #include <fcntl.h>
33 #include <unistd.h>
34 #include <dirent.h>
35 #include <string.h>
36 #include <errno.h>
37
38 #ifdef WITH_NTFS_3G
39 #include <ntfs-3g/volume.h>
40 #include <ntfs-3g/security.h>
41 #endif
42
43 /* Sets and creates the directory to which files are to be extracted when
44  * extracting files from the WIM. */
45 static int set_output_dir(WIMStruct *w, const char *dir)
46 {
47         char *p;
48         DEBUG("Setting output directory to `%s'", dir);
49
50         p = STRDUP(dir);
51         if (!p) {
52                 ERROR("Out of memory");
53                 return WIMLIB_ERR_NOMEM;
54         }
55
56         if (mkdir(dir, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) != 0) {
57                 if (errno == EEXIST) {
58                         DEBUG("`%s' already exists", dir);
59                         goto done;
60                 }
61                 ERROR_WITH_ERRNO("Cannot create directory `%s'", dir);
62                 FREE(p);
63                 return WIMLIB_ERR_MKDIR;
64         } else {
65                 DEBUG("Created directory `%s'", dir);
66         }
67 done:
68         FREE(w->output_dir);
69         w->output_dir = p;
70         return 0;
71 }
72
73 /* 
74  * Extracts a regular file from the WIM archive. 
75  *
76  * @dentry:             The directory entry for the file, which must be a
77  *                              regular file.
78  * @output_path:        The path to which the file is to be extracted.
79  * @lookup_table:       The lookup table for the WIM file.
80  * @wim_fp:             The FILE* for the WIM, opened for reading.
81  * @wim_ctype:          The type of compression used in the WIM.
82  * @link_type:          One of WIM_LINK_TYPE_*; specifies what to do with
83  *                      files that are hard-linked inside the WIM.
84  * @is_multi_image_extraction: 
85  *                      True if the image currently being extracted is just one 
86  *                      image of a multi-image extraction.  This is needed so
87  *                      that cross-image symbolic links can be created
88  *                      correctly.
89  */
90 static int extract_regular_file(WIMStruct *w, 
91                                 const struct dentry *dentry, 
92                                 const char *output_path,
93                                 int extract_flags)
94 {
95         struct lookup_table_entry *lte;
96         int ret;
97         int out_fd;
98         const struct resource_entry *res_entry;
99
100         lte = lookup_resource(w->lookup_table, dentry->hash);
101
102         /* If we already extracted the same file or a hard link copy of it, we
103          * may be able to simply create a link.  The exact action is specified
104          * by the current @link_type. */
105         if ((extract_flags & (WIMLIB_EXTRACT_FLAG_SYMLINK | WIMLIB_EXTRACT_FLAG_HARDLINK)) &&
106               lte && lte->out_refcnt != 0)
107         {
108                 wimlib_assert(lte->file_on_disk);
109
110                 if (extract_flags & WIMLIB_EXTRACT_FLAG_HARDLINK) {
111                         if (link(lte->file_on_disk, output_path) != 0) {
112                                 ERROR_WITH_ERRNO("Failed to hard link "
113                                                  "`%s' to `%s'",
114                                                  output_path, lte->file_on_disk);
115                                 return WIMLIB_ERR_LINK;
116                         }
117                 } else {
118                         int num_path_components;
119                         int num_output_dir_path_components;
120                         size_t file_on_disk_len;
121                         char *p;
122                         const char *p2;
123                         size_t i;
124
125                         num_path_components = 
126                                 get_num_path_components(dentry->full_path_utf8) - 1;
127                         num_output_dir_path_components =
128                                 get_num_path_components(w->output_dir);
129
130                         if (w->is_multi_image_extraction) {
131                                 num_path_components++;
132                                 num_output_dir_path_components--;
133                         }
134                         file_on_disk_len = strlen(lte->file_on_disk);
135
136                         char buf[file_on_disk_len + 3 * num_path_components + 1];
137                         p = &buf[0];
138
139                         for (i = 0; i < num_path_components; i++) {
140                                 *p++ = '.';
141                                 *p++ = '.';
142                                 *p++ = '/';
143                         }
144                         p2 = lte->file_on_disk;
145                         while (*p2 == '/')
146                                 p2++;
147                         while (num_output_dir_path_components--)
148                                 p2 = path_next_part(p2, NULL);
149                         strcpy(p, p2);
150                         if (symlink(buf, output_path) != 0) {
151                                 ERROR_WITH_ERRNO("Failed to symlink `%s' to "
152                                                  "`%s'",
153                                                  buf, lte->file_on_disk);
154                                 return WIMLIB_ERR_LINK;
155                         }
156
157                 }
158                 return 0;
159         } 
160
161         /* Otherwise, we must actually extract the file contents. */
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         /* Extract empty file, with no lookup table entry... */
171         if (!lte) {
172                 DEBUG("Empty file `%s'.", output_path);
173                 ret = 0;
174                 goto done;
175         }
176
177         res_entry = &lte->resource_entry;
178
179         ret = extract_resource_to_fd(w, res_entry, out_fd, 
180                                      res_entry->original_size);
181
182         if (ret != 0) {
183                 ERROR("Failed to extract resource to `%s'", output_path);
184                 goto done;
185         }
186
187         /* Mark the lookup table entry to indicate this file has been extracted. */
188         lte->out_refcnt++;
189         FREE(lte->file_on_disk);
190         lte->file_on_disk = STRDUP(output_path);
191         if (lte->file_on_disk)
192                 ret = 0;
193         else
194                 ret = WIMLIB_ERR_NOMEM;
195 done:
196         close(out_fd);
197         return ret;
198 }
199
200 /* 
201  * Extracts a directory from the WIM archive. 
202  *
203  * @dentry:             The directory entry for the directory.
204  * @output_path:        The path to which the directory is to be extracted to.
205  * @return:             True on success, false on failure. 
206  */
207 static int extract_directory(struct dentry *dentry, const char *output_path)
208 {
209         /* Compute the output path directory to the directory. */
210         if (mkdir(output_path, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) != 0) 
211         {
212                 switch (errno) {
213                 case EEXIST: /* Already existing directory is OK */
214                 case EACCES: /* We may have permissions to extract files inside
215                                  the directory, but not for the directory
216                                  itself. */
217                         return 0;
218                 default:
219                         ERROR_WITH_ERRNO("Cannot create directory `%s'",
220                                          output_path);
221                         return WIMLIB_ERR_MKDIR;
222                 }
223         }
224         return 0;
225 }
226
227 struct extract_args {
228         WIMStruct *w;
229         int extract_flags;
230 #ifdef WITH_NTFS_3G
231         struct SECURITY_API *scapi;
232 #endif
233 };
234
235 /* 
236  * Extracts a file or directory from the WIM archive.  For use in
237  * for_dentry_in_tree().
238  *
239  * @dentry:     The dentry to extract.
240  * @arg:        A pointer to the WIMStruct for the WIM file.
241  */
242 static int extract_regular_file_or_directory(struct dentry *dentry, void *arg)
243 {
244         struct extract_args *args = arg;
245         WIMStruct *w = args->w;
246         int extract_flags = args->extract_flags;
247         size_t len = strlen(w->output_dir);
248         char output_path[len + dentry->full_path_utf8_len + 1];
249
250         if (extract_flags & WIMLIB_EXTRACT_FLAG_VERBOSE)
251                 puts(dentry->full_path_utf8);
252
253         memcpy(output_path, w->output_dir, len);
254         memcpy(output_path + len, dentry->full_path_utf8, dentry->full_path_utf8_len);
255         output_path[len + dentry->full_path_utf8_len] = '\0';
256
257         if (dentry_is_regular_file(dentry)) {
258                 return extract_regular_file(w, dentry, output_path, extract_flags);
259         } else {
260                 if (dentry_is_root(dentry)) /* Root doesn't need to be extracted. */
261                         return 0;
262                 else
263                         return extract_directory(dentry, output_path);
264         }
265 }
266
267
268 static int extract_single_image(WIMStruct *w, int image, int extract_flags)
269 {
270         DEBUG("Extracting image %d", image);
271
272         int ret;
273         ret = wimlib_select_image(w, image);
274         if (ret != 0)
275                 return ret;
276
277         struct extract_args args = {
278                 .w = w,
279                 .extract_flags = extract_flags,
280         #ifdef WITH_NTFS_3G
281                 .scapi = NULL
282         #endif
283         };
284
285         return for_dentry_in_tree(wim_root_dentry(w),
286                                   extract_regular_file_or_directory, &args);
287 }
288
289
290 /* Extracts all images from the WIM to w->output_dir, with the images placed in
291  * subdirectories named by their image names. */
292 static int extract_all_images(WIMStruct *w, int extract_flags)
293 {
294         size_t image_name_max_len = max(xml_get_max_image_name_len(w), 20);
295         size_t output_path_len = strlen(w->output_dir);
296         char buf[output_path_len + 1 + image_name_max_len + 1];
297         int ret;
298         int image;
299         const char *image_name;
300
301         DEBUG("Attempting to extract all images from `%s'", w->filename);
302
303         memcpy(buf, w->output_dir, output_path_len);
304         buf[output_path_len] = '/';
305         for (image = 1; image <= w->hdr.image_count; image++) {
306                 
307                 image_name = wimlib_get_image_name(w, image);
308                 if (*image_name) {
309                         strcpy(buf + output_path_len + 1, image_name);
310                 } else {
311                         /* Image name is empty. Use image number instead */
312                         sprintf(buf + output_path_len + 1, "%d", image);
313                 }
314                 ret = set_output_dir(w, buf);
315                 if (ret != 0)
316                         goto done;
317                 ret = extract_single_image(w, image, extract_flags);
318                 if (ret != 0)
319                         goto done;
320         }
321 done:
322         /* Restore original output directory */
323         buf[output_path_len + 1] = '\0';
324         return 0;
325 }
326
327 /* Extracts a single image or all images from a WIM file. */
328 WIMLIBAPI int wimlib_extract_image(WIMStruct *w, int image,
329                                    const char *output_dir, int flags)
330 {
331         int ret;
332         if (!output_dir)
333                 return WIMLIB_ERR_INVALID_PARAM;
334         if ((flags & (WIMLIB_EXTRACT_FLAG_SYMLINK | WIMLIB_EXTRACT_FLAG_HARDLINK))
335                         == (WIMLIB_EXTRACT_FLAG_SYMLINK | WIMLIB_EXTRACT_FLAG_HARDLINK))
336                 return WIMLIB_ERR_INVALID_PARAM;
337         
338         ret = set_output_dir(w, output_dir);
339         if (ret != 0)
340                 return ret;
341
342         if ((flags & WIMLIB_EXTRACT_FLAG_NTFS)) {
343         #ifdef WITH_NTFS_3G
344                 unsigned long mnt_flags;
345                 ret = ntfs_check_if_mounted(output_dir, &mnt_flags);
346                 if (ret != 0) {
347                         ERROR_WITH_ERRNO("NTFS-3g: Cannot determine if `%s' "
348                                          "is mounted", output_dir);
349                         return WIMLIB_ERR_NTFS_3G;
350                 }
351                 if (!(mnt_flags & NTFS_MF_MOUNTED)) {
352                         ERROR("NTFS-3g: Filesystem on `%s' is not mounted ",
353                               output_dir);
354                 }
355                 if (mnt_flags & NTFS_MF_READONLY) {
356                         ERROR("NTFS-3g: Filesystem on `%s' is mounted "
357                               "read-only", output_dir);
358                         return WIMLIB_ERR_NTFS_3G;
359                 }
360         #else
361                 ERROR("wimlib was compiled without support for NTFS-3g, so");
362                 ERROR("we cannot extract a WIM image while preserving NTFS-");
363                 ERROR("specific information");
364                 return WIMLIB_ERR_UNSUPPORTED;
365         #endif
366         }
367         if (image == WIM_ALL_IMAGES) {
368                 w->is_multi_image_extraction = true;
369                 ret = extract_all_images(w, flags);
370         } else {
371                 w->is_multi_image_extraction = false;
372                 ret = extract_single_image(w, image, flags);
373         }
374         return ret;
375
376 }