]> wimlib.net Git - wimlib/blob - src/ntfs-3g_apply.c
249de4c644aa047686a5d74341075a7a193abc59
[wimlib] / src / ntfs-3g_apply.c
1 /*
2  * ntfs-3g_apply.c
3  *
4  * Apply a WIM image directly to an NTFS volume using libntfs-3g.  Restore as
5  * much information as possible, including security data, file attributes, DOS
6  * names, and alternate data streams.
7  *
8  * Note: because NTFS-3g offers inode-based interfaces, we actually don't need
9  * to deal with paths at all!  (Other than for error messages.)
10  */
11
12 /*
13  * Copyright (C) 2012, 2013, 2014, 2015 Eric Biggers
14  *
15  * This file is free software; you can redistribute it and/or modify it under
16  * the terms of the GNU Lesser General Public License as published by the Free
17  * Software Foundation; either version 3 of the License, or (at your option) any
18  * later version.
19  *
20  * This file is distributed in the hope that it will be useful, but WITHOUT
21  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
22  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
23  * details.
24  *
25  * You should have received a copy of the GNU Lesser General Public License
26  * along with this file; if not, see http://www.gnu.org/licenses/.
27  */
28
29 #ifdef HAVE_CONFIG_H
30 #  include "config.h"
31 #endif
32
33 #include <locale.h>
34 #include <string.h>
35
36 #include <ntfs-3g/attrib.h>
37 #include <ntfs-3g/reparse.h>
38 #include <ntfs-3g/security.h>
39
40 #include "wimlib/assert.h"
41 #include "wimlib/apply.h"
42 #include "wimlib/blob_table.h"
43 #include "wimlib/dentry.h"
44 #include "wimlib/encoding.h"
45 #include "wimlib/error.h"
46 #include "wimlib/metadata.h"
47 #include "wimlib/ntfs_3g.h"
48 #include "wimlib/reparse.h"
49 #include "wimlib/security.h"
50 #include "wimlib/security_descriptor.h"
51
52 static int
53 ntfs_3g_get_supported_features(const char *target,
54                                struct wim_features *supported_features)
55 {
56         supported_features->archive_files             = 1;
57         supported_features->hidden_files              = 1;
58         supported_features->system_files              = 1;
59         supported_features->compressed_files          = 1;
60         supported_features->not_context_indexed_files = 1;
61         supported_features->named_data_streams        = 1;
62         supported_features->hard_links                = 1;
63         supported_features->reparse_points            = 1;
64         supported_features->security_descriptors      = 1;
65         supported_features->short_names               = 1;
66         supported_features->timestamps                = 1;
67         supported_features->case_sensitive_filenames  = 1;
68         return 0;
69 }
70
71 struct ntfs_3g_apply_ctx {
72         /* Extract flags, the pointer to the WIMStruct, etc.  */
73         struct apply_ctx common;
74
75         /* Pointer to the open NTFS volume  */
76         ntfs_volume *vol;
77
78         ntfs_attr *open_attrs[MAX_OPEN_FILES];
79         unsigned num_open_attrs;
80         ntfs_inode *open_inodes[MAX_OPEN_FILES];
81         unsigned num_open_inodes;
82
83         struct reparse_buffer_disk rpbuf;
84         u8 *reparse_ptr;
85
86         /* Offset in the blob currently being read  */
87         u64 offset;
88
89         unsigned num_reparse_inodes;
90         ntfs_inode *ntfs_reparse_inodes[MAX_OPEN_FILES];
91         struct wim_inode *wim_reparse_inodes[MAX_OPEN_FILES];
92 };
93
94 static size_t
95 sid_size(const wimlib_SID *sid)
96 {
97         return offsetof(wimlib_SID, sub_authority) +
98                 sizeof(le32) * sid->sub_authority_count;
99 }
100
101 /*
102  * sd_fixup - Fix up a Windows NT security descriptor for libntfs-3g.
103  *
104  * libntfs-3g validates security descriptors before setting them, but old
105  * versions contain bugs causing it to reject unusual but valid security
106  * descriptors:
107  *
108  * - Versions before 2013.1.13 reject security descriptors ending with an empty
109  *   SACL (System Access Control List).  This bug can be worked around either by
110  *   moving the empty SACL earlier in the security descriptor or by removing the
111  *   SACL entirely.  The latter work-around is valid because an empty SACL is
112  *   equivalent to a "null", or non-existent, SACL.
113  * - Versions up to and including 2013.1.13 reject security descriptors ending
114  *   with an empty DACL (Discretionary Access Control List).  This is very
115  *   similar to the SACL bug and should be fixed in the next release after
116  *   2013.1.13.  However, removing the DACL is not a valid workaround because
117  *   this changes the meaning of the security descriptor--- an empty DACL allows
118  *   no access, whereas a "null" DACL allows all access.
119  *
120  * If the security descriptor was fixed, this function returns an allocated
121  * buffer containing the fixed security descriptor, and its size is updated.
122  * Otherwise (or if no memory is available) the original descriptor is returned.
123  */
124 static u8 *
125 sd_fixup(const u8 *_desc, size_t *size_p)
126 {
127         u32 owner_offset, group_offset, dacl_offset;
128 #if !defined(HAVE_NTFS_MNT_RDONLY)
129         u32 sacl_offset;
130 #endif
131         bool owner_valid, group_valid;
132         size_t size = *size_p;
133         const wimlib_SECURITY_DESCRIPTOR_RELATIVE *desc =
134                         (const wimlib_SECURITY_DESCRIPTOR_RELATIVE*)_desc;
135         wimlib_SECURITY_DESCRIPTOR_RELATIVE *desc_new;
136         const wimlib_SID *owner, *group, *sid;
137
138         /* Don't attempt to fix clearly invalid security descriptors.  */
139         if (size < sizeof(wimlib_SECURITY_DESCRIPTOR_RELATIVE))
140                 return (u8*)_desc;
141
142         if (le16_to_cpu(desc->control) & wimlib_SE_DACL_PRESENT)
143                 dacl_offset = le32_to_cpu(desc->dacl_offset);
144         else
145                 dacl_offset = 0;
146
147 #if !defined(HAVE_NTFS_MNT_RDONLY)
148         if (le16_to_cpu(desc->control) & wimlib_SE_SACL_PRESENT)
149                 sacl_offset = le32_to_cpu(desc->sacl_offset);
150         else
151                 sacl_offset = 0;
152 #endif
153
154         /* Check if the security descriptor will be affected by one of the bugs.
155          * If not, do nothing and return.
156          *
157          * Note: HAVE_NTFS_MNT_RDONLY is defined if libntfs-3g is
158          * version 2013.1.13 or later.  */
159         if (!(
160         #if !defined(HAVE_NTFS_MNT_RDONLY)
161             (sacl_offset != 0 && sacl_offset == size - sizeof(wimlib_ACL)) ||
162         #endif
163             (dacl_offset != 0 && dacl_offset == size - sizeof(wimlib_ACL))))
164                 return (u8*)_desc;
165
166         owner_offset = le32_to_cpu(desc->owner_offset);
167         group_offset = le32_to_cpu(desc->group_offset);
168         owner = (const wimlib_SID*)((const u8*)desc + owner_offset);
169         group = (const wimlib_SID*)((const u8*)desc + group_offset);
170
171         /* We'll try to move the owner or group SID to the end of the security
172          * descriptor to avoid the bug.  This is only possible if at least one
173          * is valid.  */
174         owner_valid = (owner_offset != 0) &&
175                         (owner_offset % 4 == 0) &&
176                         (owner_offset <= size - sizeof(SID)) &&
177                         (owner_offset + sid_size(owner) <= size) &&
178                         (owner_offset >= sizeof(wimlib_SECURITY_DESCRIPTOR_RELATIVE));
179         group_valid = (group_offset != 0) &&
180                         (group_offset % 4 == 0) &&
181                         (group_offset <= size - sizeof(SID)) &&
182                         (group_offset + sid_size(group) <= size) &&
183                         (group_offset >= sizeof(wimlib_SECURITY_DESCRIPTOR_RELATIVE));
184         if (owner_valid) {
185                 sid = owner;
186         } else if (group_valid) {
187                 sid = group;
188         } else {
189                 return (u8*)_desc;
190         }
191
192         desc_new = MALLOC(size + sid_size(sid));
193         if (!desc_new)
194                 return (u8*)_desc;
195
196         memcpy(desc_new, desc, size);
197         if (owner_valid)
198                 desc_new->owner_offset = cpu_to_le32(size);
199         else if (group_valid)
200                 desc_new->group_offset = cpu_to_le32(size);
201         memcpy((u8*)desc_new + size, sid, sid_size(sid));
202         *size_p = size + sid_size(sid);
203         return (u8*)desc_new;
204 }
205
206 /* Set the security descriptor @desc of size @desc_size on the NTFS inode @ni.
207   */
208 static int
209 ntfs_3g_set_security_descriptor(ntfs_inode *ni, const void *desc, size_t desc_size)
210 {
211         struct SECURITY_CONTEXT sec_ctx;
212         u8 *desc_fixed;
213         int ret = 0;
214
215         memset(&sec_ctx, 0, sizeof(sec_ctx));
216         sec_ctx.vol = ni->vol;
217
218         desc_fixed = sd_fixup(desc, &desc_size);
219
220         if (ntfs_set_ntfs_acl(&sec_ctx, ni, desc_fixed, desc_size, 0))
221                 ret = WIMLIB_ERR_SET_SECURITY;
222
223         if (desc_fixed != desc)
224                 FREE(desc_fixed);
225
226         return ret;
227 }
228
229 static int
230 ntfs_3g_set_timestamps(ntfs_inode *ni, const struct wim_inode *inode)
231 {
232         u64 times[3] = {
233                 inode->i_creation_time,
234                 inode->i_last_write_time,
235                 inode->i_last_access_time,
236         };
237
238         if (ntfs_inode_set_times(ni, (const char *)times, sizeof(times), 0))
239                 return WIMLIB_ERR_SET_TIMESTAMPS;
240         return 0;
241 }
242
243 /* Restore the timestamps on the NTFS inode corresponding to @inode.  */
244 static int
245 ntfs_3g_restore_timestamps(ntfs_volume *vol, const struct wim_inode *inode)
246 {
247         ntfs_inode *ni;
248         int res;
249
250         ni = ntfs_inode_open(vol, inode->i_mft_no);
251         if (!ni)
252                 goto fail;
253
254         res = ntfs_3g_set_timestamps(ni, inode);
255
256         if (ntfs_inode_close(ni) || res)
257                 goto fail;
258
259         return 0;
260
261 fail:
262         ERROR_WITH_ERRNO("Failed to update timestamps of \"%s\" in NTFS volume",
263                          dentry_full_path(inode_first_extraction_dentry(inode)));
264         return WIMLIB_ERR_SET_TIMESTAMPS;
265 }
266
267 /* Restore the DOS name of the @dentry.
268  * This closes both @ni and @dir_ni.
269  * If either is NULL, then they are opened temporarily.  */
270 static int
271 ntfs_3g_restore_dos_name(ntfs_inode *ni, ntfs_inode *dir_ni,
272                          struct wim_dentry *dentry, ntfs_volume *vol)
273 {
274         int ret;
275         const char *dos_name;
276         size_t dos_name_nbytes;
277
278         /* Note: ntfs_set_ntfs_dos_name() closes both inodes (even if it fails).
279          * And it takes in a multibyte string, even though it translates it to
280          * UTF-16LE internally... which is annoying because we currently have
281          * the UTF-16LE string but not the multibyte string.  */
282
283         ret = utf16le_get_tstr(dentry->short_name, dentry->short_name_nbytes,
284                                &dos_name, &dos_name_nbytes);
285         if (ret)
286                 goto out_close;
287
288         if (!dir_ni)
289                 dir_ni = ntfs_inode_open(vol, dentry->d_parent->d_inode->i_mft_no);
290         if (!ni)
291                 ni = ntfs_inode_open(vol, dentry->d_inode->i_mft_no);
292         if (dir_ni && ni) {
293                 ret = ntfs_set_ntfs_dos_name(ni, dir_ni,
294                                              dos_name, dos_name_nbytes, 0);
295                 dir_ni = NULL;
296                 ni = NULL;
297         } else {
298                 ret = -1;
299         }
300         utf16le_put_tstr(dos_name);
301         if (ret) {
302                 ERROR_WITH_ERRNO("Failed to set DOS name of \"%s\" in NTFS "
303                                  "volume", dentry_full_path(dentry));
304                 ret = WIMLIB_ERR_SET_SHORT_NAME;
305                 goto out_close;
306         }
307
308         /* Unlike most other NTFS-3g functions, ntfs_set_ntfs_dos_name()
309          * changes the directory's last modification timestamp...
310          * Change it back.  */
311         return ntfs_3g_restore_timestamps(vol, dentry->d_parent->d_inode);
312
313 out_close:
314         /* ntfs_inode_close() can take a NULL argument, but it's probably best
315          * not to rely on this behavior.  */
316         if (ni)
317                 ntfs_inode_close(ni);
318         if (dir_ni)
319                 ntfs_inode_close(dir_ni);
320         return ret;
321 }
322
323 /*
324  * Create empty named data streams for the specified file, if there are any.
325  *
326  * Since these won't have blob descriptors, they won't show up in the call to
327  * extract_blob_list().  Hence the need for the special case.
328  */
329 static int
330 ntfs_3g_create_empty_named_data_streams(ntfs_inode *ni,
331                                         const struct wim_inode *inode,
332                                         const struct ntfs_3g_apply_ctx *ctx)
333 {
334         for (unsigned i = 0; i < inode->i_num_streams; i++) {
335
336                 const struct wim_inode_stream *strm = &inode->i_streams[i];
337
338                 if (!stream_is_named_data_stream(strm) ||
339                     stream_blob_resolved(strm) != NULL)
340                         continue;
341
342                 if (ntfs_attr_add(ni, AT_DATA, strm->stream_name,
343                                   utf16le_len_chars(strm->stream_name),
344                                   NULL, 0))
345                 {
346                         ERROR_WITH_ERRNO("Failed to create named data stream "
347                                          "of \"%s\"", dentry_full_path(
348                                                 inode_first_extraction_dentry(inode)));
349                         return WIMLIB_ERR_NTFS_3G;
350                 }
351         }
352         return 0;
353 }
354
355 /* Set attributes, security descriptor, and timestamps on the NTFS inode @ni.
356  */
357 static int
358 ntfs_3g_set_metadata(ntfs_inode *ni, const struct wim_inode *inode,
359                      const struct ntfs_3g_apply_ctx *ctx)
360 {
361         int extract_flags;
362         const struct wim_security_data *sd;
363         struct wim_dentry *one_dentry;
364         int ret;
365
366         extract_flags = ctx->common.extract_flags;
367         sd = wim_get_current_security_data(ctx->common.wim);
368         one_dentry = inode_first_extraction_dentry(inode);
369
370         /* Attributes  */
371         if (!(extract_flags & WIMLIB_EXTRACT_FLAG_NO_ATTRIBUTES)) {
372                 u32 attrib = inode->i_attributes;
373
374                 attrib &= ~(FILE_ATTRIBUTE_SPARSE_FILE |
375                             FILE_ATTRIBUTE_ENCRYPTED);
376
377                 if (ntfs_set_ntfs_attrib(ni, (const char *)&attrib,
378                                          sizeof(attrib), 0))
379                 {
380                         ERROR_WITH_ERRNO("Failed to set attributes on \"%s\" "
381                                          "in NTFS volume",
382                                          dentry_full_path(one_dentry));
383                         return WIMLIB_ERR_SET_ATTRIBUTES;
384                 }
385         }
386
387         /* Security descriptor  */
388         if ((inode->i_security_id >= 0)
389             && !(extract_flags & WIMLIB_EXTRACT_FLAG_NO_ACLS))
390         {
391                 const void *desc;
392                 size_t desc_size;
393
394                 desc = sd->descriptors[inode->i_security_id];
395                 desc_size = sd->sizes[inode->i_security_id];
396
397                 ret = ntfs_3g_set_security_descriptor(ni, desc, desc_size);
398                 if (ret) {
399                         if (wimlib_print_errors) {
400                                 ERROR_WITH_ERRNO("Failed to set security descriptor "
401                                                  "on \"%s\" in NTFS volume",
402                                                  dentry_full_path(one_dentry));
403                                 fprintf(wimlib_error_file,
404                                         "The security descriptor is: ");
405                                 print_byte_field(desc, desc_size, wimlib_error_file);
406                                 fprintf(wimlib_error_file, "\n");
407                         }
408                         return ret;
409                 }
410         }
411
412         /* Timestamps  */
413         ret = ntfs_3g_set_timestamps(ni, inode);
414         if (ret) {
415                 ERROR_WITH_ERRNO("Failed to set timestamps on \"%s\" "
416                                  "in NTFS volume",
417                                  dentry_full_path(one_dentry));
418                 return ret;
419         }
420         return 0;
421 }
422
423 /* Recursively creates all the subdirectories of @dir, which has been created as
424  * the NTFS inode @dir_ni.  */
425 static int
426 ntfs_3g_create_dirs_recursive(ntfs_inode *dir_ni, struct wim_dentry *dir,
427                               struct ntfs_3g_apply_ctx *ctx)
428 {
429         struct wim_dentry *child;
430
431         for_dentry_child(child, dir) {
432                 ntfs_inode *ni;
433                 int ret;
434
435                 if (!(child->d_inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY))
436                         continue;
437                 if (!will_extract_dentry(child))
438                         continue;
439
440                 ni = ntfs_create(dir_ni, 0, child->d_extraction_name,
441                                  child->d_extraction_name_nchars, S_IFDIR);
442                 if (!ni) {
443                         ERROR_WITH_ERRNO("Error creating \"%s\" in NTFS volume",
444                                          dentry_full_path(child));
445                         return WIMLIB_ERR_NTFS_3G;
446                 }
447
448                 child->d_inode->i_mft_no = ni->mft_no;
449
450                 ret = report_file_created(&ctx->common);
451                 if (!ret)
452                         ret = ntfs_3g_set_metadata(ni, child->d_inode, ctx);
453                 if (!ret)
454                         ret = ntfs_3g_create_empty_named_data_streams(ni, child->d_inode, ctx);
455                 if (!ret)
456                         ret = ntfs_3g_create_dirs_recursive(ni, child, ctx);
457
458                 if (ntfs_inode_close_in_dir(ni, dir_ni) && !ret) {
459                         ERROR_WITH_ERRNO("Error closing \"%s\" in NTFS volume",
460                                          dentry_full_path(child));
461                         ret = WIMLIB_ERR_NTFS_3G;
462                 }
463                 if (ret)
464                         return ret;
465         }
466         return 0;
467 }
468
469 /* For each WIM dentry in the @root tree that represents a directory, create the
470  * corresponding directory in the NTFS volume @ctx->vol.  */
471 static int
472 ntfs_3g_create_directories(struct wim_dentry *root,
473                            struct list_head *dentry_list,
474                            struct ntfs_3g_apply_ctx *ctx)
475 {
476         ntfs_inode *root_ni;
477         int ret;
478         struct wim_dentry *dentry;
479
480         /* Create the directories using POSIX names.  */
481
482         root_ni = ntfs_inode_open(ctx->vol, FILE_root);
483         if (!root_ni) {
484                 ERROR_WITH_ERRNO("Can't open root of NTFS volume");
485                 return WIMLIB_ERR_NTFS_3G;
486         }
487
488         root->d_inode->i_mft_no = FILE_root;
489
490         ret = ntfs_3g_create_dirs_recursive(root_ni, root, ctx);
491
492         if (ntfs_inode_close(root_ni) && !ret) {
493                 ERROR_WITH_ERRNO("Error closing root of NTFS volume");
494                 ret = WIMLIB_ERR_NTFS_3G;
495         }
496         if (ret)
497                 return ret;
498
499         /* Set the DOS name of any directory that has one.  */
500         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
501                 if (!(dentry->d_inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY))
502                         continue;
503                 if (!dentry_has_short_name(dentry))
504                         continue;
505                 ret = ntfs_3g_restore_dos_name(NULL, NULL, dentry, ctx->vol);
506                 if (ret)
507                         return ret;
508                 ret = report_file_created(&ctx->common);
509                 if (ret)
510                         return ret;
511         }
512         return 0;
513 }
514
515 /* When creating an inode that will have a short (DOS) name, we create it using
516  * the long name associated with the short name.  This ensures that the short
517  * name gets associated with the correct long name.  */
518 static struct wim_dentry *
519 ntfs_3g_first_extraction_alias(struct wim_inode *inode)
520 {
521         struct list_head *next = inode->i_extraction_aliases.next;
522         struct wim_dentry *dentry;
523
524         do {
525                 dentry = list_entry(next, struct wim_dentry,
526                                     d_extraction_alias_node);
527                 if (dentry_has_short_name(dentry))
528                         break;
529                 next = next->next;
530         } while (next != &inode->i_extraction_aliases);
531         return dentry;
532 }
533
534 /*
535  * Add a hard link for the NTFS inode @ni at the location corresponding to the
536  * WIM dentry @dentry.
537  *
538  * The parent directory must have already been created on the NTFS volume.
539  *
540  * Returns 0 on success; returns WIMLIB_ERR_NTFS_3G and sets errno on failure.
541  */
542 static int
543 ntfs_3g_add_link(ntfs_inode *ni, struct wim_dentry *dentry)
544 {
545         ntfs_inode *dir_ni;
546         int res;
547
548         /* Open the inode of the parent directory.  */
549         dir_ni = ntfs_inode_open(ni->vol, dentry->d_parent->d_inode->i_mft_no);
550         if (!dir_ni)
551                 goto fail;
552
553         /* Create the link.  */
554         res = ntfs_link(ni, dir_ni, dentry->d_extraction_name,
555                         dentry->d_extraction_name_nchars);
556
557         /* Close the parent directory.  */
558         if (ntfs_inode_close(dir_ni) || res)
559                 goto fail;
560
561         return 0;
562
563 fail:
564         ERROR_WITH_ERRNO("Can't create link \"%s\" in NTFS volume",
565                          dentry_full_path(dentry));
566         return WIMLIB_ERR_NTFS_3G;
567 }
568
569 static int
570 ntfs_3g_create_nondirectory(struct wim_inode *inode,
571                             const struct ntfs_3g_apply_ctx *ctx)
572 {
573         struct wim_dentry *first_dentry;
574         ntfs_inode *dir_ni;
575         ntfs_inode *ni;
576         struct list_head *next;
577         struct wim_dentry *dentry;
578         int ret;
579
580         first_dentry = ntfs_3g_first_extraction_alias(inode);
581
582         /* Create first link.  */
583
584         dir_ni = ntfs_inode_open(ctx->vol, first_dentry->d_parent->d_inode->i_mft_no);
585         if (!dir_ni) {
586                 ERROR_WITH_ERRNO("Can't open \"%s\" in NTFS volume",
587                                  dentry_full_path(first_dentry->d_parent));
588                 return WIMLIB_ERR_NTFS_3G;
589         }
590
591         ni = ntfs_create(dir_ni, 0, first_dentry->d_extraction_name,
592                          first_dentry->d_extraction_name_nchars, S_IFREG);
593
594         if (!ni) {
595                 ERROR_WITH_ERRNO("Can't create \"%s\" in NTFS volume",
596                                  dentry_full_path(first_dentry));
597                 ntfs_inode_close(dir_ni);
598                 return WIMLIB_ERR_NTFS_3G;
599         }
600
601         inode->i_mft_no = ni->mft_no;
602
603         /* Set short name if present.  */
604         if (dentry_has_short_name(first_dentry)) {
605
606                 ret = ntfs_3g_restore_dos_name(ni, dir_ni, first_dentry, ctx->vol);
607
608                 /* ntfs_3g_restore_dos_name() closed both 'ni' and 'dir_ni'.  */
609
610                 if (ret)
611                         return ret;
612
613                 /* Reopen the inode.  */
614                 ni = ntfs_inode_open(ctx->vol, inode->i_mft_no);
615                 if (!ni) {
616                         ERROR_WITH_ERRNO("Failed to reopen \"%s\" "
617                                          "in NTFS volume",
618                                          dentry_full_path(first_dentry));
619                         return WIMLIB_ERR_NTFS_3G;
620                 }
621         } else {
622                 /* Close the directory in which the first link was created.  */
623                 if (ntfs_inode_close(dir_ni)) {
624                         ERROR_WITH_ERRNO("Failed to close \"%s\" in NTFS volume",
625                                          dentry_full_path(first_dentry->d_parent));
626                         ret = WIMLIB_ERR_NTFS_3G;
627                         goto out_close_ni;
628                 }
629         }
630
631         /* Create additional links if present.  */
632         next = inode->i_extraction_aliases.next;
633         do {
634                 dentry = list_entry(next, struct wim_dentry,
635                                     d_extraction_alias_node);
636                 if (dentry != first_dentry) {
637                         ret = ntfs_3g_add_link(ni, dentry);
638                         if (ret)
639                                 goto out_close_ni;
640                 }
641                 next = next->next;
642         } while (next != &inode->i_extraction_aliases);
643
644         /* Set metadata.  */
645         ret = ntfs_3g_set_metadata(ni, inode, ctx);
646         if (ret)
647                 goto out_close_ni;
648
649         ret = ntfs_3g_create_empty_named_data_streams(ni, inode, ctx);
650
651 out_close_ni:
652         /* Close the inode.  */
653         if (ntfs_inode_close(ni) && !ret) {
654                 ERROR_WITH_ERRNO("Error closing \"%s\" in NTFS volume",
655                                  dentry_full_path(first_dentry));
656                 ret = WIMLIB_ERR_NTFS_3G;
657         }
658         return ret;
659 }
660
661 /* For each WIM dentry in the @dentry_list that represents a nondirectory file,
662  * create the corresponding nondirectory file in the NTFS volume.
663  *
664  * Directories must have already been created.  */
665 static int
666 ntfs_3g_create_nondirectories(struct list_head *dentry_list,
667                               struct ntfs_3g_apply_ctx *ctx)
668 {
669         struct wim_dentry *dentry;
670         struct wim_inode *inode;
671         int ret;
672
673         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
674                 inode = dentry->d_inode;
675                 if (inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY)
676                         continue;
677                 if (dentry == inode_first_extraction_dentry(inode)) {
678                         ret = ntfs_3g_create_nondirectory(inode, ctx);
679                         if (ret)
680                                 return ret;
681                 }
682                 ret = report_file_created(&ctx->common);
683                 if (ret)
684                         return ret;
685         }
686         return 0;
687 }
688
689 static int
690 ntfs_3g_begin_extract_blob_instance(struct blob_descriptor *blob,
691                                     ntfs_inode *ni,
692                                     struct wim_inode *inode,
693                                     const struct wim_inode_stream *strm,
694                                     struct ntfs_3g_apply_ctx *ctx)
695 {
696         struct wim_dentry *one_dentry = inode_first_extraction_dentry(inode);
697         size_t stream_name_nchars;
698         ntfs_attr *attr;
699
700         if (unlikely(strm->stream_type == STREAM_TYPE_REPARSE_POINT)) {
701
702                 if (blob->size > REPARSE_DATA_MAX_SIZE) {
703                         ERROR("Reparse data of \"%s\" has size "
704                               "%"PRIu64" bytes (exceeds %u bytes)",
705                               dentry_full_path(one_dentry),
706                               blob->size, REPARSE_DATA_MAX_SIZE);
707                         return WIMLIB_ERR_INVALID_REPARSE_DATA;
708                 }
709                 ctx->reparse_ptr = ctx->rpbuf.rpdata;
710                 ctx->rpbuf.rpdatalen = cpu_to_le16(blob->size);
711                 ctx->rpbuf.rpreserved = cpu_to_le16(0);
712                 ctx->ntfs_reparse_inodes[ctx->num_reparse_inodes] = ni;
713                 ctx->wim_reparse_inodes[ctx->num_reparse_inodes] = inode;
714                 ctx->num_reparse_inodes++;
715                 return 0;
716         }
717
718         /* It's a data stream (may be unnamed or named).  */
719         wimlib_assert(strm->stream_type == STREAM_TYPE_DATA);
720
721         stream_name_nchars = utf16le_len_chars(strm->stream_name);
722
723         if (stream_name_nchars &&
724             (ntfs_attr_add(ni, AT_DATA, strm->stream_name,
725                            stream_name_nchars, NULL, 0)))
726         {
727                 ERROR_WITH_ERRNO("Failed to create named data stream of \"%s\"",
728                                  dentry_full_path(one_dentry));
729                 return WIMLIB_ERR_NTFS_3G;
730         }
731
732         /* This should be ensured by extract_blob_list()  */
733         wimlib_assert(ctx->num_open_attrs < MAX_OPEN_FILES);
734
735         attr = ntfs_attr_open(ni, AT_DATA, strm->stream_name,
736                               stream_name_nchars);
737         if (!attr) {
738                 ERROR_WITH_ERRNO("Failed to open data stream of \"%s\"",
739                                  dentry_full_path(one_dentry));
740                 return WIMLIB_ERR_NTFS_3G;
741         }
742         ctx->open_attrs[ctx->num_open_attrs++] = attr;
743         ntfs_attr_truncate_solid(attr, blob->size);
744         return 0;
745 }
746
747 static int
748 ntfs_3g_cleanup_blob_extract(struct ntfs_3g_apply_ctx *ctx)
749 {
750         int ret = 0;
751
752         for (unsigned i = 0; i < ctx->num_open_attrs; i++) {
753                 if (ntfs_attr_pclose(ctx->open_attrs[i]))
754                         ret = -1;
755                 ntfs_attr_close(ctx->open_attrs[i]);
756         }
757
758         ctx->num_open_attrs = 0;
759
760         for (unsigned i = 0; i < ctx->num_open_inodes; i++) {
761                 if (ntfs_inode_close(ctx->open_inodes[i]))
762                         ret = -1;
763         }
764         ctx->num_open_inodes = 0;
765
766         ctx->offset = 0;
767         ctx->reparse_ptr = NULL;
768         ctx->num_reparse_inodes = 0;
769         return ret;
770 }
771
772 static ntfs_inode *
773 ntfs_3g_open_inode(struct wim_inode *inode, struct ntfs_3g_apply_ctx *ctx)
774 {
775         ntfs_inode *ni = NULL;
776
777         if (inode->i_visited) {
778                 for (u32 i = 0; i < ctx->num_open_inodes; i++) {
779                         if (ctx->open_inodes[i]->mft_no == inode->i_mft_no) {
780                                 ni = ctx->open_inodes[i];
781                                 break;
782                         }
783                 }
784         }
785         if (!ni) {
786                 ni = ntfs_inode_open(ctx->vol, inode->i_mft_no);
787                 ctx->open_inodes[ctx->num_open_inodes++] = ni;
788                 inode->i_visited = 1;
789         }
790
791         if (!ni) {
792                 ERROR_WITH_ERRNO("Can't open \"%s\" in NTFS volume",
793                                  dentry_full_path(
794                                         inode_first_extraction_dentry(inode)));
795                 return NULL;
796         }
797         return ni;
798 }
799
800 static int
801 ntfs_3g_begin_extract_blob(struct blob_descriptor *blob, void *_ctx)
802 {
803         struct ntfs_3g_apply_ctx *ctx = _ctx;
804         const struct blob_extraction_target *targets = blob_extraction_targets(blob);
805         int ret;
806         ntfs_inode *ni;
807
808         for (u32 i = 0; i < blob->out_refcnt; i++) {
809                 ret = WIMLIB_ERR_NTFS_3G;
810                 ni = ntfs_3g_open_inode(targets[i].inode, ctx);
811                 if (!ni)
812                         goto out_cleanup;
813
814                 ret = ntfs_3g_begin_extract_blob_instance(blob, ni,
815                                                           targets[i].inode,
816                                                           targets[i].stream, ctx);
817                 if (ret)
818                         goto out_cleanup;
819         }
820         ret = 0;
821         goto out;
822
823 out_cleanup:
824         ntfs_3g_cleanup_blob_extract(ctx);
825 out:
826         for (u32 i = 0; i < blob->out_refcnt; i++)
827                 targets[i].inode->i_visited = 0;
828         return ret;
829 }
830
831 static int
832 ntfs_3g_extract_chunk(const void *chunk, size_t size, void *_ctx)
833 {
834         struct ntfs_3g_apply_ctx *ctx = _ctx;
835         s64 res;
836
837         for (unsigned i = 0; i < ctx->num_open_attrs; i++) {
838                 res = ntfs_attr_pwrite(ctx->open_attrs[i],
839                                        ctx->offset, size, chunk);
840                 if (res != size) {
841                         ERROR_WITH_ERRNO("Error writing data to NTFS volume");
842                         return WIMLIB_ERR_NTFS_3G;
843                 }
844         }
845         if (ctx->reparse_ptr)
846                 ctx->reparse_ptr = mempcpy(ctx->reparse_ptr, chunk, size);
847         ctx->offset += size;
848         return 0;
849 }
850
851 static int
852 ntfs_3g_end_extract_blob(struct blob_descriptor *blob, int status, void *_ctx)
853 {
854         struct ntfs_3g_apply_ctx *ctx = _ctx;
855         int ret;
856
857         if (status) {
858                 ret = status;
859                 goto out;
860         }
861
862         for (u32 i = 0; i < ctx->num_reparse_inodes; i++) {
863                 struct wim_inode *inode = ctx->wim_reparse_inodes[i];
864
865                 ctx->rpbuf.rptag = cpu_to_le32(inode->i_reparse_tag);
866
867                 if (ntfs_set_ntfs_reparse_data(ctx->ntfs_reparse_inodes[i],
868                                                (const char *)&ctx->rpbuf,
869                                                blob->size + REPARSE_DATA_OFFSET,
870                                                0))
871                 {
872                         ERROR_WITH_ERRNO("Failed to set reparse "
873                                          "data on \"%s\"",
874                                          dentry_full_path(
875                                                 inode_first_extraction_dentry(inode)));
876                         ret = WIMLIB_ERR_SET_REPARSE_DATA;
877                         goto out;
878                 }
879         }
880         ret = 0;
881 out:
882         if (ntfs_3g_cleanup_blob_extract(ctx) && !ret) {
883                 ERROR_WITH_ERRNO("Error writing data to NTFS volume");
884                 ret = WIMLIB_ERR_NTFS_3G;
885         }
886         return ret;
887 }
888
889 static uint64_t
890 ntfs_3g_count_dentries(const struct list_head *dentry_list)
891 {
892         const struct wim_dentry *dentry;
893         uint64_t count = 0;
894
895         list_for_each_entry(dentry, dentry_list, d_extraction_list_node) {
896                 count++;
897                 if ((dentry->d_inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY) &&
898                     dentry_has_short_name(dentry))
899                 {
900                         count++;
901                 }
902         }
903
904         return count;
905 }
906
907 static int
908 ntfs_3g_extract(struct list_head *dentry_list, struct apply_ctx *_ctx)
909 {
910         struct ntfs_3g_apply_ctx *ctx = (struct ntfs_3g_apply_ctx *)_ctx;
911         ntfs_volume *vol;
912         struct wim_dentry *root;
913         int ret;
914
915         /* For NTFS-3g extraction mode we require that the dentries to extract
916          * form a single tree.  */
917         root = list_first_entry(dentry_list, struct wim_dentry,
918                                 d_extraction_list_node);
919
920         /* Mount the NTFS volume.  */
921         vol = ntfs_mount(ctx->common.target, 0);
922         if (!vol) {
923                 ERROR_WITH_ERRNO("Failed to mount \"%s\" with NTFS-3g",
924                                  ctx->common.target);
925                 return WIMLIB_ERR_NTFS_3G;
926         }
927         ctx->vol = vol;
928
929         /* Create all inodes and aliases, including short names, and set
930          * metadata (attributes, security descriptors, and timestamps).  */
931
932         ret = start_file_structure_phase(&ctx->common,
933                                          ntfs_3g_count_dentries(dentry_list));
934         if (ret)
935                 goto out_unmount;
936
937         ret = ntfs_3g_create_directories(root, dentry_list, ctx);
938         if (ret)
939                 goto out_unmount;
940
941         ret = ntfs_3g_create_nondirectories(dentry_list, ctx);
942         if (ret)
943                 goto out_unmount;
944
945         ret = end_file_structure_phase(&ctx->common);
946         if (ret)
947                 goto out_unmount;
948
949         /* Extract blobs.  */
950         struct read_blob_list_callbacks cbs = {
951                 .begin_blob        = ntfs_3g_begin_extract_blob,
952                 .begin_blob_ctx    = ctx,
953                 .consume_chunk     = ntfs_3g_extract_chunk,
954                 .consume_chunk_ctx = ctx,
955                 .end_blob          = ntfs_3g_end_extract_blob,
956                 .end_blob_ctx      = ctx,
957         };
958         ret = extract_blob_list(&ctx->common, &cbs);
959
960         /* We do not need a final pass to set timestamps because libntfs-3g does
961          * not update timestamps automatically (exception:
962          * ntfs_set_ntfs_dos_name() does, but we handle this elsewhere).  */
963
964 out_unmount:
965         if (ntfs_umount(ctx->vol, FALSE) && !ret) {
966                 ERROR_WITH_ERRNO("Failed to unmount \"%s\" with NTFS-3g",
967                                  ctx->common.target);
968                 ret = WIMLIB_ERR_NTFS_3G;
969         }
970         return ret;
971 }
972
973 const struct apply_operations ntfs_3g_apply_ops = {
974         .name                   = "NTFS-3g",
975         .get_supported_features = ntfs_3g_get_supported_features,
976         .extract                = ntfs_3g_extract,
977         .context_size           = sizeof(struct ntfs_3g_apply_ctx),
978         .single_tree_only       = true,
979 };
980
981 void
982 libntfs3g_global_init(void)
983 {
984        ntfs_set_char_encoding(setlocale(LC_ALL, ""));
985 }