]> wimlib.net Git - wimlib/blob - src/ntfs-capture.c
verify.c, buffer_io.h
[wimlib] / src / ntfs-capture.c
1 /*
2  * ntfs-capture.c
3  *
4  * Capture a WIM image from a NTFS volume.  We capture everything we can,
5  * including security data and alternate data streams.
6  */
7
8 /*
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 General Public License as published by the Free
15  * Software Foundation; either version 3 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 General Public License for more
21  * details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with wimlib; if not, see http://www.gnu.org/licenses/.
25  */
26
27
28 #include "config.h"
29
30 #include <ntfs-3g/endians.h>
31 #include <ntfs-3g/types.h>
32
33 #include "wimlib_internal.h"
34
35
36 #include "dentry.h"
37 #include "lookup_table.h"
38 #include "buffer_io.h"
39 #include <ntfs-3g/layout.h>
40 #include <ntfs-3g/acls.h>
41 #include <ntfs-3g/attrib.h>
42 #include <ntfs-3g/misc.h>
43 #include <ntfs-3g/reparse.h>
44 #include <ntfs-3g/security.h> /* security.h before xattrs.h */
45 #include <ntfs-3g/xattrs.h>
46 #include <ntfs-3g/volume.h>
47 #include <stdlib.h>
48 #include <unistd.h>
49 #include <errno.h>
50
51 /* Structure that allows searching the security descriptors by SHA1 message
52  * digest. */
53 struct sd_set {
54         struct wim_security_data *sd;
55         struct sd_node *root;
56 };
57
58 /* Binary tree node of security descriptors, indexed by the @hash field. */
59 struct sd_node {
60         int security_id;
61         u8 hash[SHA1_HASH_SIZE];
62         struct sd_node *left;
63         struct sd_node *right;
64 };
65
66 static void free_sd_tree(struct sd_node *root)
67 {
68         if (root) {
69                 free_sd_tree(root->left);
70                 free_sd_tree(root->right);
71                 FREE(root);
72         }
73 }
74 /* Frees a security descriptor index set. */
75 static void destroy_sd_set(struct sd_set *sd_set)
76 {
77         free_sd_tree(sd_set->root);
78 }
79
80 /* Inserts a a new node into the security descriptor index tree. */
81 static void insert_sd_node(struct sd_node *new, struct sd_node *root)
82 {
83         int cmp = hashes_cmp(new->hash, root->hash);
84         if (cmp < 0) {
85                 if (root->left)
86                         insert_sd_node(new, root->left);
87                 else
88                         root->left = new;
89         } else if (cmp > 0) {
90                 if (root->right)
91                         insert_sd_node(new, root->right);
92                 else
93                         root->right = new;
94         } else {
95                 wimlib_assert(0);
96         }
97 }
98
99 /* Returns the security ID of the security data having a SHA1 message digest of
100  * @hash in the security descriptor index tree rooted at @root.
101  *
102  * If not found, return -1. */
103 static int lookup_sd(const u8 hash[SHA1_HASH_SIZE], struct sd_node *root)
104 {
105         int cmp;
106         if (!root)
107                 return -1;
108         cmp = hashes_cmp(hash, root->hash);
109         if (cmp < 0)
110                 return lookup_sd(hash, root->left);
111         else if (cmp > 0)
112                 return lookup_sd(hash, root->right);
113         else
114                 return root->security_id;
115 }
116
117 /*
118  * Adds a security descriptor to the indexed security descriptor set as well as
119  * the corresponding `struct wim_security_data', and returns the new security
120  * ID; or, if there is an existing security descriptor that is the same, return
121  * the security ID for it.  If a new security descriptor cannot be allocated,
122  * return -1.
123  */
124 static int sd_set_add_sd(struct sd_set *sd_set, const char descriptor[],
125                          size_t size)
126 {
127         u8 hash[SHA1_HASH_SIZE];
128         int security_id;
129         struct sd_node *new;
130         u8 **descriptors;
131         u64 *sizes;
132         u8 *descr_copy;
133         struct wim_security_data *sd;
134
135         sha1_buffer((const u8*)descriptor, size, hash);
136
137         security_id = lookup_sd(hash, sd_set->root);
138         if (security_id >= 0)
139                 return security_id;
140
141         new = MALLOC(sizeof(*new));
142         if (!new)
143                 goto out;
144         descr_copy = MALLOC(size);
145         if (!descr_copy)
146                 goto out_free_node;
147
148         sd = sd_set->sd;
149
150         memcpy(descr_copy, descriptor, size);
151         new->security_id = sd->num_entries;
152         new->left = NULL;
153         new->right = NULL;
154         copy_hash(new->hash, hash);
155
156
157         descriptors = REALLOC(sd->descriptors,
158                               (sd->num_entries + 1) * sizeof(sd->descriptors[0]));
159         if (!descriptors)
160                 goto out_free_descr;
161         sd->descriptors = descriptors;
162         sizes = REALLOC(sd->sizes,
163                         (sd->num_entries + 1) * sizeof(sd->sizes[0]));
164         if (!sizes)
165                 goto out_free_descr;
166         sd->sizes = sizes;
167         sd->descriptors[sd->num_entries] = descr_copy;
168         sd->sizes[sd->num_entries] = size;
169         sd->num_entries++;
170         DEBUG("There are now %d security descriptors", sd->num_entries);
171         sd->total_length += size + sizeof(sd->sizes[0]);
172
173         if (sd_set->root)
174                 insert_sd_node(new, sd_set->root);
175         else
176                 sd_set->root = new;
177         return new->security_id;
178 out_free_descr:
179         FREE(descr_copy);
180 out_free_node:
181         FREE(new);
182 out:
183         return -1;
184 }
185
186 static inline ntfschar *attr_record_name(ATTR_RECORD *ar)
187 {
188         return (ntfschar*)((u8*)ar + le16_to_cpu(ar->name_offset));
189 }
190
191 /* Calculates the SHA1 message digest of a NTFS attribute.
192  *
193  * @ni:  The NTFS inode containing the attribute.
194  * @ar:  The ATTR_RECORD describing the attribute.
195  * @md:  If successful, the returned SHA1 message digest.
196  * @reparse_tag_ret:    Optional pointer into which the first 4 bytes of the
197  *                              attribute will be written (to get the reparse
198  *                              point ID)
199  *
200  * Return 0 on success or nonzero on error.
201  */
202 static int ntfs_attr_sha1sum(ntfs_inode *ni, ATTR_RECORD *ar,
203                              u8 md[SHA1_HASH_SIZE],
204                              bool is_reparse_point,
205                              u32 *reparse_tag_ret)
206 {
207         s64 pos = 0;
208         s64 bytes_remaining;
209         char buf[BUFFER_SIZE];
210         ntfs_attr *na;
211         SHA_CTX ctx;
212
213         na = ntfs_attr_open(ni, ar->type, attr_record_name(ar),
214                             ar->name_length);
215         if (!na) {
216                 ERROR_WITH_ERRNO("Failed to open NTFS attribute");
217                 return WIMLIB_ERR_NTFS_3G;
218         }
219
220         bytes_remaining = na->data_size;
221
222         if (is_reparse_point) {
223                 if (ntfs_attr_pread(na, 0, 8, buf) != 8)
224                         goto out_error;
225                 *reparse_tag_ret = le32_to_cpu(*(u32*)buf);
226                 pos = 8;
227                 bytes_remaining -= 8;
228         }
229
230         sha1_init(&ctx);
231         while (bytes_remaining) {
232                 s64 to_read = min(bytes_remaining, sizeof(buf));
233                 if (ntfs_attr_pread(na, pos, to_read, buf) != to_read)
234                         goto out_error;
235                 sha1_update(&ctx, buf, to_read);
236                 pos += to_read;
237                 bytes_remaining -= to_read;
238         }
239         sha1_final(md, &ctx);
240         ntfs_attr_close(na);
241         return 0;
242 out_error:
243         ERROR_WITH_ERRNO("Error reading NTFS attribute");
244         return WIMLIB_ERR_NTFS_3G;
245 }
246
247 /* Load the streams from a file or reparse point in the NTFS volume into the WIM
248  * lookup table */
249 static int capture_ntfs_streams(struct dentry *dentry, ntfs_inode *ni,
250                                 char path[], size_t path_len,
251                                 struct lookup_table *lookup_table,
252                                 ntfs_volume **ntfs_vol_p,
253                                 ATTR_TYPES type)
254 {
255         ntfs_attr_search_ctx *actx;
256         u8 attr_hash[SHA1_HASH_SIZE];
257         struct ntfs_location *ntfs_loc = NULL;
258         int ret = 0;
259         struct lookup_table_entry *lte;
260
261         DEBUG2("Capturing NTFS data streams from `%s'", path);
262
263         /* Get context to search the streams of the NTFS file. */
264         actx = ntfs_attr_get_search_ctx(ni, NULL);
265         if (!actx) {
266                 ERROR_WITH_ERRNO("Cannot get NTFS attribute search "
267                                  "context");
268                 return WIMLIB_ERR_NTFS_3G;
269         }
270
271         /* Capture each data stream or reparse data stream. */
272         while (!ntfs_attr_lookup(type, NULL, 0,
273                                  CASE_SENSITIVE, 0, NULL, 0, actx))
274         {
275                 char *stream_name_utf8;
276                 u32 reparse_tag;
277                 u64 data_size = ntfs_get_attribute_value_length(actx->attr);
278                 u64 name_length = actx->attr->name_length;
279
280                 if (data_size == 0) {
281                         if (errno != 0) {
282                                 ERROR_WITH_ERRNO("Failed to get size of attribute of "
283                                                  "`%s'", path);
284                                 ret = WIMLIB_ERR_NTFS_3G;
285                                 goto out_put_actx;
286                         }
287                         /* Empty stream.  No lookup table entry is needed. */
288                         lte = NULL;
289                 } else {
290                         if (type == AT_REPARSE_POINT && data_size < 8) {
291                                 ERROR("`%s': reparse point buffer too small",
292                                       path);
293                                 ret = WIMLIB_ERR_NTFS_3G;
294                                 goto out_put_actx;
295                         }
296                         /* Checksum the stream. */
297                         ret = ntfs_attr_sha1sum(ni, actx->attr, attr_hash,
298                                                 type == AT_REPARSE_POINT, &reparse_tag);
299                         if (ret != 0)
300                                 goto out_put_actx;
301
302                         /* Make a lookup table entry for the stream, or use an existing
303                          * one if there's already an identical stream. */
304                         lte = __lookup_resource(lookup_table, attr_hash);
305                         ret = WIMLIB_ERR_NOMEM;
306                         if (lte) {
307                                 lte->refcnt++;
308                         } else {
309                                 ntfs_loc = CALLOC(1, sizeof(*ntfs_loc));
310                                 if (!ntfs_loc)
311                                         goto out_put_actx;
312                                 ntfs_loc->ntfs_vol_p = ntfs_vol_p;
313                                 ntfs_loc->path_utf8 = MALLOC(path_len + 1);
314                                 if (!ntfs_loc->path_utf8)
315                                         goto out_free_ntfs_loc;
316                                 memcpy(ntfs_loc->path_utf8, path, path_len + 1);
317                                 if (name_length) {
318                                         ntfs_loc->stream_name_utf16 = MALLOC(name_length * 2);
319                                         if (!ntfs_loc->stream_name_utf16)
320                                                 goto out_free_ntfs_loc;
321                                         memcpy(ntfs_loc->stream_name_utf16,
322                                                attr_record_name(actx->attr),
323                                                actx->attr->name_length * 2);
324                                         ntfs_loc->stream_name_utf16_num_chars = name_length;
325                                 }
326
327                                 lte = new_lookup_table_entry();
328                                 if (!lte)
329                                         goto out_free_ntfs_loc;
330                                 lte->ntfs_loc = ntfs_loc;
331                                 lte->resource_location = RESOURCE_IN_NTFS_VOLUME;
332                                 if (type == AT_REPARSE_POINT) {
333                                         dentry->d_inode->reparse_tag = reparse_tag;
334                                         ntfs_loc->is_reparse_point = true;
335                                         lte->resource_entry.original_size = data_size - 8;
336                                         lte->resource_entry.size = data_size - 8;
337                                 } else {
338                                         ntfs_loc->is_reparse_point = false;
339                                         lte->resource_entry.original_size = data_size;
340                                         lte->resource_entry.size = data_size;
341                                 }
342                                 ntfs_loc = NULL;
343                                 DEBUG("Add resource for `%s' (size = %zu)",
344                                       dentry->file_name_utf8,
345                                       lte->resource_entry.original_size);
346                                 copy_hash(lte->hash, attr_hash);
347                                 lookup_table_insert(lookup_table, lte);
348                         }
349                 }
350                 if (name_length == 0) {
351                         /* Unnamed data stream.  Put the reference to it in the
352                          * dentry's inode. */
353                         if (dentry->d_inode->lte) {
354                                 ERROR("Found two un-named data streams for "
355                                       "`%s'", path);
356                                 ret = WIMLIB_ERR_NTFS_3G;
357                                 goto out_free_lte;
358                         }
359                         dentry->d_inode->lte = lte;
360                 } else {
361                         /* Named data stream.  Put the reference to it in the
362                          * alternate data stream entries */
363                         struct ads_entry *new_ads_entry;
364                         size_t stream_name_utf8_len;
365                         stream_name_utf8 = utf16_to_utf8((const char*)attr_record_name(actx->attr),
366                                                          name_length * 2,
367                                                          &stream_name_utf8_len);
368                         if (!stream_name_utf8)
369                                 goto out_free_lte;
370                         new_ads_entry = inode_add_ads(dentry->d_inode, stream_name_utf8);
371                         FREE(stream_name_utf8);
372                         if (!new_ads_entry)
373                                 goto out_free_lte;
374
375                         wimlib_assert(new_ads_entry->stream_name_len == name_length * 2);
376
377                         new_ads_entry->lte = lte;
378                 }
379         }
380         ret = 0;
381         goto out_put_actx;
382 out_free_lte:
383         free_lookup_table_entry(lte);
384 out_free_ntfs_loc:
385         if (ntfs_loc) {
386                 FREE(ntfs_loc->path_utf8);
387                 FREE(ntfs_loc->stream_name_utf16);
388                 FREE(ntfs_loc);
389         }
390 out_put_actx:
391         ntfs_attr_put_search_ctx(actx);
392         if (ret == 0)
393                 DEBUG2("Successfully captured NTFS streams from `%s'", path);
394         else
395                 ERROR("Failed to capture NTFS streams from `%s", path);
396         return ret;
397 }
398
399 struct readdir_ctx {
400         struct dentry       *parent;
401         ntfs_inode          *dir_ni;
402         char                *path;
403         size_t               path_len;
404         struct lookup_table *lookup_table;
405         struct sd_set       *sd_set;
406         const struct capture_config *config;
407         ntfs_volume        **ntfs_vol_p;
408         int                  add_image_flags;
409         wimlib_progress_func_t progress_func;
410 };
411
412 static int
413 build_dentry_tree_ntfs_recursive(struct dentry **root_p, ntfs_inode *dir_ni,
414                                  ntfs_inode *ni, char path[], size_t path_len,
415                                  int name_type,
416                                  struct lookup_table *lookup_table,
417                                  struct sd_set *sd_set,
418                                  const struct capture_config *config,
419                                  ntfs_volume **ntfs_vol_p,
420                                  int add_image_flags,
421                                  wimlib_progress_func_t progress_func);
422
423 static int wim_ntfs_capture_filldir(void *dirent, const ntfschar *name,
424                                     const int name_len, const int name_type,
425                                     const s64 pos, const MFT_REF mref,
426                                     const unsigned dt_type)
427 {
428         struct readdir_ctx *ctx;
429         size_t utf8_name_len;
430         char *utf8_name;
431         struct dentry *child = NULL;
432         int ret;
433         size_t path_len;
434
435         if (name_type == FILE_NAME_DOS)
436                 return 0;
437
438         ret = -1;
439
440         utf8_name = utf16_to_utf8((const char*)name, name_len * 2,
441                                   &utf8_name_len);
442         if (!utf8_name)
443                 goto out;
444
445         if (utf8_name[0] == '.' &&
446              (utf8_name[1] == '\0' ||
447               (utf8_name[1] == '.' && utf8_name[2] == '\0'))) {
448                 ret = 0;
449                 goto out_free_utf8_name;
450         }
451
452         ctx = dirent;
453
454         ntfs_inode *ni = ntfs_inode_open(ctx->dir_ni->vol, mref);
455         if (!ni) {
456                 ERROR_WITH_ERRNO("Failed to open NTFS inode");
457                 goto out_free_utf8_name;
458         }
459         path_len = ctx->path_len;
460         if (path_len != 1)
461                 ctx->path[path_len++] = '/';
462         memcpy(ctx->path + path_len, utf8_name, utf8_name_len + 1);
463         path_len += utf8_name_len;
464         ret = build_dentry_tree_ntfs_recursive(&child, ctx->dir_ni,
465                                                ni, ctx->path, path_len, name_type,
466                                                ctx->lookup_table, ctx->sd_set,
467                                                ctx->config, ctx->ntfs_vol_p,
468                                                ctx->add_image_flags,
469                                                ctx->progress_func);
470
471         if (child)
472                 dentry_add_child(ctx->parent, child);
473
474         ntfs_inode_close(ni);
475 out_free_utf8_name:
476         FREE(utf8_name);
477 out:
478         return ret;
479 }
480
481 static int change_dentry_short_name(struct dentry *dentry,
482                                     const char short_name_utf8[],
483                                     int short_name_utf8_len)
484 {
485         size_t short_name_utf16_len;
486         char *short_name_utf16;
487         short_name_utf16 = utf8_to_utf16(short_name_utf8, short_name_utf8_len,
488                                          &short_name_utf16_len);
489         if (!short_name_utf16) {
490                 ERROR_WITH_ERRNO("Failed to convert short name to UTF-16");
491                 return WIMLIB_ERR_NOMEM;
492         }
493         dentry->short_name = short_name_utf16;
494         dentry->short_name_len = short_name_utf16_len;
495         return 0;
496 }
497
498 /* Recursively build a WIM dentry tree corresponding to a NTFS volume.
499  * At the same time, update the WIM lookup table with lookup table entries for
500  * the NTFS streams, and build an array of security descriptors.
501  */
502 static int build_dentry_tree_ntfs_recursive(struct dentry **root_p,
503                                             ntfs_inode *dir_ni,
504                                             ntfs_inode *ni,
505                                             char path[],
506                                             size_t path_len,
507                                             int name_type,
508                                             struct lookup_table *lookup_table,
509                                             struct sd_set *sd_set,
510                                             const struct capture_config *config,
511                                             ntfs_volume **ntfs_vol_p,
512                                             int add_image_flags,
513                                             wimlib_progress_func_t progress_func)
514 {
515         u32 attributes;
516         int mrec_flags;
517         int ret;
518         char dos_name_utf8[64];
519         struct dentry *root;
520
521         if (exclude_path(path, config, false)) {
522                 if ((add_image_flags & WIMLIB_ADD_IMAGE_FLAG_VERBOSE)
523                     && progress_func)
524                 {
525                         union wimlib_progress_info info;
526                         info.scan.cur_path = path;
527                         info.scan.excluded = true;
528                         progress_func(WIMLIB_PROGRESS_MSG_SCAN_DENTRY, &info);
529                 }
530                 *root_p = NULL;
531                 return 0;
532         }
533
534         mrec_flags = ni->mrec->flags;
535         struct SECURITY_CONTEXT ctx;
536         memset(&ctx, 0, sizeof(ctx));
537         ctx.vol = ni->vol;
538         ret = ntfs_xattr_system_getxattr(&ctx, XATTR_NTFS_ATTRIB,
539                                          ni, dir_ni, (char *)&attributes,
540                                          sizeof(u32));
541         if (ret != 4) {
542                 ERROR_WITH_ERRNO("Failed to get NTFS attributes from `%s'",
543                                  path);
544                 return WIMLIB_ERR_NTFS_3G;
545         }
546
547         if ((add_image_flags & WIMLIB_ADD_IMAGE_FLAG_VERBOSE)
548             && progress_func)
549         {
550                 union wimlib_progress_info info;
551                 info.scan.cur_path = path;
552                 info.scan.excluded = false;
553                 progress_func(WIMLIB_PROGRESS_MSG_SCAN_DENTRY, &info);
554         }
555
556         root = new_dentry_with_timeless_inode(path_basename(path));
557         if (!root)
558                 return WIMLIB_ERR_NOMEM;
559         *root_p = root;
560
561         if (dir_ni && (name_type == FILE_NAME_WIN32_AND_DOS
562                        || name_type == FILE_NAME_WIN32))
563         {
564                 ret = ntfs_get_ntfs_dos_name(ni, dir_ni, dos_name_utf8,
565                                              sizeof(dos_name_utf8));
566                 if (ret > 0) {
567                         DEBUG("Changing short name of `%s'", path);
568                         ret = change_dentry_short_name(root, dos_name_utf8,
569                                                        ret);
570                         if (ret != 0)
571                                 return ret;
572                 } else {
573                 #ifdef ENODATA
574                         if (errno != ENODATA) {
575                                 ERROR_WITH_ERRNO("Error getting DOS name "
576                                                  "of `%s'", path);
577                                 return WIMLIB_ERR_NTFS_3G;
578                         }
579                 #endif
580                 }
581         }
582
583         root->d_inode->creation_time    = le64_to_cpu(ni->creation_time);
584         root->d_inode->last_write_time  = le64_to_cpu(ni->last_data_change_time);
585         root->d_inode->last_access_time = le64_to_cpu(ni->last_access_time);
586         root->d_inode->attributes       = le32_to_cpu(attributes);
587         root->d_inode->ino              = ni->mft_no;
588         root->d_inode->resolved         = true;
589
590         if (attributes & FILE_ATTR_REPARSE_POINT) {
591                 /* Junction point, symbolic link, or other reparse point */
592                 ret = capture_ntfs_streams(root, ni, path, path_len,
593                                            lookup_table, ntfs_vol_p,
594                                            AT_REPARSE_POINT);
595         } else if (mrec_flags & MFT_RECORD_IS_DIRECTORY) {
596
597                 /* Normal directory */
598                 s64 pos = 0;
599                 struct readdir_ctx ctx = {
600                         .parent       = root,
601                         .dir_ni       = ni,
602                         .path         = path,
603                         .path_len     = path_len,
604                         .lookup_table = lookup_table,
605                         .sd_set       = sd_set,
606                         .config       = config,
607                         .ntfs_vol_p   = ntfs_vol_p,
608                         .add_image_flags = add_image_flags,
609                         .progress_func = progress_func,
610                 };
611                 ret = ntfs_readdir(ni, &pos, &ctx, wim_ntfs_capture_filldir);
612                 if (ret != 0) {
613                         ERROR_WITH_ERRNO("ntfs_readdir()");
614                         ret = WIMLIB_ERR_NTFS_3G;
615                 }
616         } else {
617                 /* Normal file */
618                 ret = capture_ntfs_streams(root, ni, path, path_len,
619                                            lookup_table, ntfs_vol_p,
620                                            AT_DATA);
621         }
622         if (ret != 0)
623                 return ret;
624
625         char _sd[1];
626         char *sd = _sd;
627         errno = 0;
628         ret = ntfs_xattr_system_getxattr(&ctx, XATTR_NTFS_ACL,
629                                          ni, dir_ni, sd,
630                                          sizeof(sd));
631         if (ret > sizeof(sd)) {
632                 sd = alloca(ret);
633                 ret = ntfs_xattr_system_getxattr(&ctx, XATTR_NTFS_ACL,
634                                                  ni, dir_ni, sd, ret);
635         }
636         if (ret > 0) {
637                 root->d_inode->security_id = sd_set_add_sd(sd_set, sd, ret);
638                 if (root->d_inode->security_id == -1) {
639                         ERROR("Out of memory");
640                         return WIMLIB_ERR_NOMEM;
641                 }
642                 DEBUG("Added security ID = %u for `%s'",
643                       root->d_inode->security_id, path);
644                 ret = 0;
645         } else if (ret < 0) {
646                 ERROR_WITH_ERRNO("Failed to get security information from "
647                                  "`%s'", path);
648                 ret = WIMLIB_ERR_NTFS_3G;
649         } else {
650                 root->d_inode->security_id = -1;
651                 DEBUG("No security ID for `%s'", path);
652         }
653         return ret;
654 }
655
656 int build_dentry_tree_ntfs(struct dentry **root_p,
657                            const char *device,
658                            struct lookup_table *lookup_table,
659                            struct wim_security_data *sd,
660                            const struct capture_config *config,
661                            int add_image_flags,
662                            wimlib_progress_func_t progress_func,
663                            void *extra_arg)
664 {
665         ntfs_volume *vol;
666         ntfs_inode *root_ni;
667         int ret = 0;
668         struct sd_set sd_set = {
669                 .sd = sd,
670                 .root = NULL,
671         };
672         ntfs_volume **ntfs_vol_p = extra_arg;
673
674         DEBUG("Mounting NTFS volume `%s' read-only", device);
675
676         vol = ntfs_mount(device, MS_RDONLY);
677         if (!vol) {
678                 ERROR_WITH_ERRNO("Failed to mount NTFS volume `%s' read-only",
679                                  device);
680                 return WIMLIB_ERR_NTFS_3G;
681         }
682         ntfs_open_secure(vol);
683
684         /* We don't want to capture the special NTFS files such as $Bitmap.  Not
685          * to be confused with "hidden" or "system" files which are real files
686          * that we do need to capture.  */
687         NVolClearShowSysFiles(vol);
688
689         DEBUG("Opening root NTFS dentry");
690         root_ni = ntfs_inode_open(vol, FILE_root);
691         if (!root_ni) {
692                 ERROR_WITH_ERRNO("Failed to open root inode of NTFS volume "
693                                  "`%s'", device);
694                 ret = WIMLIB_ERR_NTFS_3G;
695                 goto out;
696         }
697
698         /* Currently we assume that all the UTF-8 paths fit into this length and
699          * there is no check for overflow. */
700         char *path = MALLOC(32768);
701         if (!path) {
702                 ERROR("Could not allocate memory for NTFS pathname");
703                 goto out_cleanup;
704         }
705
706         path[0] = '/';
707         path[1] = '\0';
708         ret = build_dentry_tree_ntfs_recursive(root_p, NULL, root_ni, path, 1,
709                                                FILE_NAME_POSIX, lookup_table,
710                                                &sd_set, config, ntfs_vol_p,
711                                                add_image_flags,
712                                                progress_func);
713 out_cleanup:
714         FREE(path);
715         ntfs_inode_close(root_ni);
716         destroy_sd_set(&sd_set);
717
718 out:
719         if (ret) {
720                 if (ntfs_umount(vol, FALSE) != 0) {
721                         ERROR_WITH_ERRNO("Failed to unmount NTFS volume `%s'",
722                                          device);
723                         if (ret == 0)
724                                 ret = WIMLIB_ERR_NTFS_3G;
725                 }
726         } else {
727                 /* We need to leave the NTFS volume mounted so that we can read
728                  * the NTFS files again when we are actually writing the WIM */
729                 *ntfs_vol_p = vol;
730         }
731         return ret;
732 }