]> wimlib.net Git - wimlib/blob - src/ntfs-apply.c
new NTFS 3g patches
[wimlib] / src / ntfs-apply.c
1 /*
2  * ntfs-apply.c
3  *
4  * Apply a WIM image to a NTFS volume.  We restore everything we can, including
5  * 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 #include "config.h"
28 #include "wimlib_internal.h"
29
30
31 #ifdef WITH_NTFS_3G
32 #include "dentry.h"
33 #include "lookup_table.h"
34 #include "io.h"
35 #include <ntfs-3g/layout.h>
36 #include <ntfs-3g/acls.h>
37 #include <ntfs-3g/attrib.h>
38 #include <ntfs-3g/misc.h>
39 #include <ntfs-3g/reparse.h>
40 #include <ntfs-3g/security.h>
41 #include <ntfs-3g/volume.h>
42 #include <stdlib.h>
43 #include <unistd.h>
44
45 struct ntfs_apply_args {
46         ntfs_volume *vol;
47         int extract_flags;
48         WIMStruct *w;
49 };
50
51
52 #ifndef WITH_NEW_NTFS_3G
53 extern int ntfs_set_inode_security(ntfs_inode *ni, u32 selection,
54                                    const char *attr);
55 extern int ntfs_set_inode_attributes(ntfs_inode *ni, u32 attrib);
56 #endif
57
58 /* 
59  * Extracts a WIM resource to a NTFS attribute.
60  */
61 static int
62 extract_wim_resource_to_ntfs_attr(const struct lookup_table_entry *lte,
63                                   ntfs_attr *na)
64 {
65         u64 bytes_remaining = wim_resource_size(lte);
66         u8 buf[min(WIM_CHUNK_SIZE, bytes_remaining)];
67         u64 offset = 0;
68         int ret = 0;
69         u8 hash[SHA1_HASH_SIZE];
70
71         SHA_CTX ctx;
72         sha1_init(&ctx);
73
74         while (bytes_remaining) {
75                 u64 to_read = min(bytes_remaining, WIM_CHUNK_SIZE);
76                 ret = read_wim_resource(lte, buf, to_read, offset, false);
77                 if (ret != 0)
78                         break;
79                 sha1_update(&ctx, buf, to_read);
80                 if (ntfs_attr_pwrite(na, offset, to_read, buf) != to_read) {
81                         ERROR_WITH_ERRNO("Error extracting WIM resource");
82                         return WIMLIB_ERR_WRITE;
83                 }
84                 bytes_remaining -= to_read;
85                 offset += to_read;
86         }
87         sha1_final(hash, &ctx);
88         if (!hashes_equal(hash, lte->hash)) {
89                 ERROR("Invalid checksum on a WIM resource "
90                       "(detected when extracting to NTFS stream)");
91                 ERROR("The following WIM resource is invalid:");
92                 print_lookup_table_entry(lte);
93                 return WIMLIB_ERR_INVALID_RESOURCE_HASH;
94         }
95         return 0;
96 }
97
98 /* Writes the data streams to a NTFS file
99  *
100  * @ni:      The NTFS inode for the file.
101  * @dentry:  The directory entry in the WIM file.
102  * @w:       The WIMStruct for the WIM containing the image we are applying.
103  *
104  * Returns 0 on success, nonzero on failure.
105  */
106 static int write_ntfs_data_streams(ntfs_inode *ni, const struct dentry *dentry,
107                                    WIMStruct *w)
108 {
109         int ret = 0;
110         unsigned stream_idx = 0;
111         ntfschar *stream_name = AT_UNNAMED;
112         u32 stream_name_len = 0;
113
114         DEBUG("Writing %u NTFS data stream%s for `%s'",
115               dentry->num_ads + 1,
116               (dentry->num_ads == 0 ? "" : "s"),
117               dentry->full_path_utf8);
118
119         while (1) {
120                 struct lookup_table_entry *lte;
121                 ntfs_attr *na;
122
123                 lte = dentry_stream_lte(dentry, stream_idx, w->lookup_table);
124
125                 if (stream_name_len) {
126                         /* Create an empty named stream. */
127                         ret = ntfs_attr_add(ni, AT_DATA, stream_name,
128                                             stream_name_len, NULL, 0);
129                         if (ret != 0) {
130                                 ERROR_WITH_ERRNO("Failed to create name data "
131                                                  "stream for extracted file "
132                                                  "`%s'",
133                                                  dentry->full_path_utf8);
134                                 ret = WIMLIB_ERR_NTFS_3G;
135                                 break;
136
137                         }
138                 }
139                 /* If there's no lookup table entry, it's an empty stream.
140                  * Otherwise, we must open the attribute and extract the data.
141                  * */
142                 if (lte) {
143                         na = ntfs_attr_open(ni, AT_DATA, stream_name, stream_name_len);
144                         if (!na) {
145                                 ERROR_WITH_ERRNO("Failed to open a data stream of "
146                                                  "extracted file `%s'",
147                                                  dentry->full_path_utf8);
148                                 ret = WIMLIB_ERR_NTFS_3G;
149                                 break;
150                         }
151                         ret = extract_wim_resource_to_ntfs_attr(lte, na);
152                         if (ret != 0)
153                                 break;
154                         ntfs_attr_close(na);
155                 }
156                 if (stream_idx == dentry->num_ads)
157                         break;
158                 stream_name = (ntfschar*)dentry->ads_entries[stream_idx].stream_name;
159                 stream_name_len = dentry->ads_entries[stream_idx].stream_name_len / 2;
160                 stream_idx++;
161         }
162         return ret;
163 }
164
165 /*
166  * Makes a NTFS hard link
167  *
168  * It is named @from_dentry->file_name and is located under the directory
169  * specified by @dir_ni, and it is made to point to the previously extracted
170  * file located at @to_dentry->extracted_file.
171  *
172  * Return 0 on success, nonzero on failure.
173  */
174 static int wim_apply_hardlink_ntfs(const struct dentry *from_dentry,
175                                    const struct dentry *to_dentry,
176                                    ntfs_inode *dir_ni,
177                                    ntfs_inode **to_ni_ret)
178 {
179         int ret;
180         char *p;
181         char orig;
182         const char *dir_name;
183
184         ntfs_inode *to_ni;
185         ntfs_volume *vol;
186
187         wimlib_assert(dentry_is_regular_file(from_dentry)
188                         && dentry_is_regular_file(to_dentry));
189
190         if (ntfs_inode_close(dir_ni) != 0) {
191                 ERROR_WITH_ERRNO("Error closing directory");
192                 return WIMLIB_ERR_NTFS_3G;
193         }
194
195         vol = dir_ni->vol;
196
197         DEBUG("Extracting NTFS hard link `%s' => `%s'",
198               from_dentry->full_path_utf8, to_dentry->extracted_file);
199
200         to_ni = ntfs_pathname_to_inode(vol, NULL,
201                                        to_dentry->extracted_file);
202         if (!to_ni) {
203                 ERROR_WITH_ERRNO("Could not find NTFS inode for `%s'",
204                                  to_dentry->extracted_file);
205                 return WIMLIB_ERR_NTFS_3G;
206         }
207         p = from_dentry->full_path_utf8 + from_dentry->full_path_utf8_len;
208         do {
209                 p--;
210         } while (*p != '/');
211
212         orig = *p;
213         *p = '\0';
214         dir_name = from_dentry->full_path_utf8;
215
216         dir_ni = ntfs_pathname_to_inode(vol, NULL, dir_name);
217         if (!dir_ni) {
218                 ERROR_WITH_ERRNO("Could not find NTFS inode for `%s'",
219                                  from_dentry->full_path_utf8);
220                 *p = orig;
221                 return WIMLIB_ERR_NTFS_3G;
222         }
223         *p = orig;
224
225         ret = ntfs_link(to_ni, dir_ni,
226                         (ntfschar*)from_dentry->file_name,
227                         from_dentry->file_name_len / 2);
228         if (ret != 0) {
229                 ERROR_WITH_ERRNO("Could not create hard link `%s' => `%s'",
230                                  from_dentry->full_path_utf8,
231                                  to_dentry->extracted_file);
232                 ret = WIMLIB_ERR_NTFS_3G;
233         }
234         *to_ni_ret = to_ni;
235         return ret;
236 }
237
238 static int
239 apply_file_attributes_and_security_data(ntfs_inode *ni,
240                                         const struct dentry *dentry,
241                                         const WIMStruct *w)
242 {
243         DEBUG("Setting NTFS file attributes on `%s' to %#"PRIx32,
244               dentry->full_path_utf8, dentry->attributes);
245         if (ntfs_set_inode_attributes(ni, dentry->attributes)) {
246                 ERROR("Failed to set NTFS file attributes on `%s'",
247                        dentry->full_path_utf8);
248                 return WIMLIB_ERR_NTFS_3G;
249         }
250
251         if (dentry->security_id != -1) {
252                 const struct wim_security_data *sd;
253                 
254                 sd = wim_const_security_data(w);
255                 wimlib_assert(dentry->security_id < sd->num_entries);
256                 DEBUG("Applying security descriptor %d to `%s'",
257                       dentry->security_id, dentry->full_path_utf8);
258                 u32 selection = OWNER_SECURITY_INFORMATION |
259                                 GROUP_SECURITY_INFORMATION |
260                                 DACL_SECURITY_INFORMATION  |
261                                 SACL_SECURITY_INFORMATION;
262                                 
263                 if (ntfs_set_inode_security(ni, selection,
264                                             (const char*)sd->descriptors[dentry->security_id]))
265                 {
266                         ERROR_WITH_ERRNO("Failed to set security data on `%s'",
267                                         dentry->full_path_utf8);
268                         return WIMLIB_ERR_NTFS_3G;
269                 }
270         }
271         return 0;
272 }
273
274 static int apply_reparse_data(ntfs_inode *ni, const struct dentry *dentry,
275                               const WIMStruct *w)
276 {
277         struct lookup_table_entry *lte;
278         int ret = 0;
279
280         wimlib_assert(dentry->attributes & FILE_ATTRIBUTE_REPARSE_POINT);
281
282         lte = dentry_unnamed_lte(dentry, w->lookup_table);
283
284         DEBUG("Applying reparse data to `%s'", dentry->full_path_utf8);
285
286         if (!lte) {
287                 ERROR("Could not find reparse data for `%s'",
288                       dentry->full_path_utf8);
289                 return WIMLIB_ERR_INVALID_DENTRY;
290         }
291
292         if (wim_resource_size(lte) >= 0xffff) {
293                 ERROR("Reparse data of `%s' is too long (%lu bytes)",
294                       dentry->full_path_utf8, wim_resource_size(lte));
295                 return WIMLIB_ERR_INVALID_DENTRY;
296         }
297
298         u8 reparse_data_buf[8 + wim_resource_size(lte)];
299         u8 *p = reparse_data_buf;
300         p = put_u32(p, dentry->reparse_tag); /* ReparseTag */
301         p = put_u16(p, wim_resource_size(lte)); /* ReparseDataLength */
302         p = put_u16(p, 0); /* Reserved */
303
304         ret = read_full_wim_resource(lte, p);
305         if (ret != 0)
306                 return ret;
307
308         ret = ntfs_set_ntfs_reparse_data(ni, (char*)reparse_data_buf,
309                                          wim_resource_size(lte) + 8, 0);
310         if (ret != 0) {
311                 ERROR_WITH_ERRNO("Failed to set NTFS reparse data on `%s'",
312                                  dentry->full_path_utf8);
313                 return WIMLIB_ERR_NTFS_3G;
314         }
315         return 0;
316 }
317
318 static int do_wim_apply_dentry_ntfs(struct dentry *dentry, ntfs_inode *dir_ni,
319                                     WIMStruct *w);
320
321 /* 
322  * If @dentry is part of a hard link group, search for hard-linked dentries in
323  * the same directory that have a nonempty DOS (short) filename.  There should
324  * be exactly 0 or 1 such dentries.  If there is 1, extract that dentry first,
325  * so that the DOS name is correctly associated with the corresponding long name
326  * in the Win32 namespace, and not any of the additional names in the POSIX
327  * namespace created from hard links.
328  */
329 static int preapply_dentry_with_dos_name(struct dentry *dentry,
330                                          ntfs_inode **dir_ni_p,
331                                          WIMStruct *w)
332 {
333         int ret;
334         struct dentry *other;
335         struct dentry *dentry_with_dos_name;
336
337         if (dentry->link_group_list.next == &dentry->link_group_list)
338                 return 0;
339
340         dentry_with_dos_name = NULL;
341         list_for_each_entry(other, &dentry->link_group_list,
342                             link_group_list)
343         {
344                 if (dentry->parent == other->parent && other->short_name_len) {
345                         if (dentry_with_dos_name) {
346                                 ERROR("Found multiple DOS names for file `%s' "
347                                       "in the same directory",
348                                       dentry_with_dos_name->full_path_utf8);
349                                 return WIMLIB_ERR_INVALID_DENTRY;
350                         }
351                         dentry_with_dos_name = other;
352                 }
353         }
354         /* If there's a dentry with a DOS name, extract it first */
355         if (dentry_with_dos_name && !dentry_with_dos_name->extracted_file) {
356                 char *p;
357                 const char *dir_name;
358                 char orig;
359                 ntfs_volume *vol = (*dir_ni_p)->vol;
360
361                 DEBUG("pre-applying DOS name `%s'",
362                       dentry_with_dos_name->full_path_utf8);
363                 ret = do_wim_apply_dentry_ntfs(dentry_with_dos_name,
364                                                *dir_ni_p, w);
365                 if (ret != 0)
366                         return ret;
367                 p = dentry->full_path_utf8 + dentry->full_path_utf8_len;
368                 do {
369                         p--;
370                 } while (*p != '/');
371
372                 orig = *p;
373                 *p = '\0';
374                 dir_name = dentry->full_path_utf8;
375
376                 *dir_ni_p = ntfs_pathname_to_inode(vol, NULL, dir_name);
377                 *p = orig;
378                 if (!*dir_ni_p) {
379                         ERROR_WITH_ERRNO("Could not find NTFS inode for `%s'",
380                                          dir_name);
381                         return WIMLIB_ERR_NTFS_3G;
382                 }
383         }
384         return 0;
385 }
386
387 /* 
388  * Applies a WIM dentry to a NTFS filesystem.
389  *
390  * @dentry:  The WIM dentry to apply
391  * @dir_ni:  The NTFS inode for the parent directory
392  * @w:       The WIMStruct for the WIM containing the image we are applying.
393  *
394  * @return:  0 on success; nonzero on failure.
395  */
396 static int do_wim_apply_dentry_ntfs(struct dentry *dentry, ntfs_inode *dir_ni,
397                                     WIMStruct *w)
398 {
399         int ret = 0;
400         mode_t type;
401         ntfs_inode *ni = NULL;
402         bool is_hardlink = false;
403         ntfs_volume *vol = dir_ni->vol;
404
405         if (dentry->attributes & FILE_ATTRIBUTE_DIRECTORY) {
406                 type = S_IFDIR;
407         } else {
408                 struct dentry *other;
409
410                 /* Apply hard-linked directory in same directory with DOS name
411                  * (if there is one) before this dentry */
412                 ret = preapply_dentry_with_dos_name(dentry, &dir_ni, w);
413                 if (ret != 0)
414                         return ret;
415
416                 type = S_IFREG;
417                 /* See if we can make a hard link */
418                 list_for_each_entry(other, &dentry->link_group_list,
419                                     link_group_list) {
420                         if (other->extracted_file) {
421                                 /* Already extracted another dentry in the hard
422                                  * link group.  We can make a hard link instead
423                                  * of extracting the file data. */
424                                 ret = wim_apply_hardlink_ntfs(dentry, other,
425                                                               dir_ni, &ni);
426                                 is_hardlink = true;
427                                 if (ret != 0)
428                                         goto out_close_dir_ni;
429                                 else
430                                         goto out_set_dos_name;
431                         }
432                 }
433                 /* Can't make a hard link; extract the file itself */
434                 FREE(dentry->extracted_file);
435                 dentry->extracted_file = STRDUP(dentry->full_path_utf8);
436                 if (!dentry->extracted_file) {
437                         ERROR("Failed to allocate memory for filename");
438                         return WIMLIB_ERR_NOMEM;
439                 }
440         }
441
442         /* 
443          * Create a directory or file.
444          *
445          * Note: For symbolic links that are not directory junctions, pass
446          * S_IFREG here, since we manually set the reparse data later.
447          */
448         ni = ntfs_create(dir_ni, 0, (ntfschar*)dentry->file_name,
449                          dentry->file_name_len / 2, type);
450
451         if (!ni) {
452                 ERROR_WITH_ERRNO("Could not create NTFS object for `%s'",
453                                  dentry->full_path_utf8);
454                 ret = WIMLIB_ERR_NTFS_3G;
455                 goto out_close_dir_ni;
456         }
457
458         /* Write the data streams, unless this is a directory or reparse point
459          * */
460         if (!dentry_is_directory(dentry) &&
461              !(dentry->attributes & FILE_ATTRIBUTE_REPARSE_POINT)) {
462                 ret = write_ntfs_data_streams(ni, dentry, w);
463                 if (ret != 0)
464                         goto out_close_dir_ni;
465         }
466
467
468         ret = apply_file_attributes_and_security_data(ni, dentry, w);
469         if (ret != 0)
470                 goto out_close_dir_ni;
471
472         if (dentry->attributes & FILE_ATTR_REPARSE_POINT) {
473                 ret = apply_reparse_data(ni, dentry, w);
474                 if (ret != 0)
475                         goto out_close_dir_ni;
476         }
477
478 out_set_dos_name:
479         /* Set DOS (short) name if given */
480         if (dentry->short_name_len != 0) {
481
482                 char *short_name_utf8;
483                 size_t short_name_utf8_len;
484                 short_name_utf8 = utf16_to_utf8(dentry->short_name,
485                                                 dentry->short_name_len,
486                                                 &short_name_utf8_len);
487                 if (!short_name_utf8) {
488                         ERROR("Out of memory");
489                         ret = WIMLIB_ERR_NOMEM;
490                         goto out_close_dir_ni;
491                 }
492
493                 if (is_hardlink) {
494                         char *p;
495                         char orig;
496                         const char *dir_name;
497
498                         /* ntfs_set_ntfs_dos_name() closes the inodes in the
499                          * wrong order if we have applied a hard link.   Close
500                          * them ourselves, then re-open then. */
501                         if (ntfs_inode_close(dir_ni) != 0) {
502                                 if (ret == 0)
503                                         ret = WIMLIB_ERR_NTFS_3G;
504                                 ERROR_WITH_ERRNO("Failed to close directory inode");
505                         }
506                         if (ntfs_inode_close(ni) != 0) {
507                                 if (ret == 0)
508                                         ret = WIMLIB_ERR_NTFS_3G;
509                                 ERROR_WITH_ERRNO("Failed to close hard link target inode");
510                         }
511                         p = dentry->full_path_utf8 + dentry->full_path_utf8_len;
512                         do {
513                                 p--;
514                         } while (*p != '/');
515
516                         orig = *p;
517                         *p = '\0';
518                         dir_name = dentry->full_path_utf8;
519
520                         dir_ni = ntfs_pathname_to_inode(vol, NULL, dir_name);
521                         *p = orig;
522                         if (!dir_ni) {
523                                 ERROR_WITH_ERRNO("Could not find NTFS inode for `%s'",
524                                                  dir_name);
525                                 return WIMLIB_ERR_NTFS_3G;
526                         }
527                         ni = ntfs_pathname_to_inode(vol, dir_ni,
528                                                     dentry->file_name_utf8);
529                         if (!ni) {
530                                 ERROR_WITH_ERRNO("Could not find NTFS inode for `%s'",
531                                                  dir_name);
532                                 return WIMLIB_ERR_NTFS_3G;
533                         }
534                 }
535
536                 DEBUG("Setting short (DOS) name of `%s' to %s",
537                       dentry->full_path_utf8, short_name_utf8);
538
539                 ret = ntfs_set_ntfs_dos_name(ni, dir_ni, short_name_utf8,
540                                              short_name_utf8_len, 0);
541                 FREE(short_name_utf8);
542                 if (ret != 0) {
543                         ERROR_WITH_ERRNO("Could not set DOS (short) name for `%s'",
544                                          dentry->full_path_utf8);
545                         ret = WIMLIB_ERR_NTFS_3G;
546                 }
547                 /* inodes have been closed by ntfs_set_ntfs_dos_name(). */
548                 return ret;
549         }
550
551 out_close_dir_ni:
552         if (ntfs_inode_close(dir_ni) != 0) {
553                 if (ret == 0)
554                         ret = WIMLIB_ERR_NTFS_3G;
555                 ERROR_WITH_ERRNO("Failed to close directory inode");
556         }
557         if (ni && ntfs_inode_close(ni) != 0) {
558                 if (ret == 0)
559                         ret = WIMLIB_ERR_NTFS_3G;
560                 ERROR_WITH_ERRNO("Failed to close inode");
561         }
562         return ret;
563 }
564
565 static int wim_apply_root_dentry_ntfs(const struct dentry *dentry,
566                                       ntfs_volume *vol,
567                                       const WIMStruct *w)
568 {
569         ntfs_inode *ni;
570         int ret = 0;
571
572         wimlib_assert(dentry_is_directory(dentry));
573         ni = ntfs_pathname_to_inode(vol, NULL, "/");
574         if (!ni) {
575                 ERROR_WITH_ERRNO("Could not find root NTFS inode");
576                 return WIMLIB_ERR_NTFS_3G;
577         }
578         ret = apply_file_attributes_and_security_data(ni, dentry, w);
579         if (ntfs_inode_close(ni) != 0) {
580                 ERROR_WITH_ERRNO("Failed to close NTFS inode for root "
581                                  "directory");
582                 ret = WIMLIB_ERR_NTFS_3G;
583         }
584         return ret;
585 }
586
587 /* Applies a WIM dentry to the NTFS volume */
588 static int wim_apply_dentry_ntfs(struct dentry *dentry, void *arg)
589 {
590         struct ntfs_apply_args *args = arg;
591         ntfs_volume *vol             = args->vol;
592         int extract_flags            = args->extract_flags;
593         WIMStruct *w                 = args->w;
594         ntfs_inode *dir_ni;
595         char *p;
596         char orig;
597         const char *dir_name;
598
599         if (dentry->extracted_file)
600                 return 0;
601
602         wimlib_assert(dentry->full_path_utf8);
603
604         DEBUG("Applying dentry `%s' to NTFS", dentry->full_path_utf8);
605
606         if (extract_flags & WIMLIB_EXTRACT_FLAG_VERBOSE)
607                 puts(dentry->full_path_utf8);
608
609         if (dentry_is_root(dentry))
610                 return wim_apply_root_dentry_ntfs(dentry, vol, w);
611
612         p = dentry->full_path_utf8 + dentry->full_path_utf8_len;
613         do {
614                 p--;
615         } while (*p != '/');
616
617         orig = *p;
618         *p = '\0';
619         dir_name = dentry->full_path_utf8;
620
621         dir_ni = ntfs_pathname_to_inode(vol, NULL, dir_name);
622         if (dir_ni)
623                 DEBUG("Found NTFS inode for `%s'", dir_name);
624         *p = orig;
625         if (!dir_ni) {
626                 ERROR_WITH_ERRNO("Could not find NTFS inode for `%s'",
627                                  dir_name);
628                 return WIMLIB_ERR_NTFS_3G;
629         }
630         return do_wim_apply_dentry_ntfs(dentry, dir_ni, w);
631 }
632
633 static int wim_apply_dentry_timestamps(struct dentry *dentry, void *arg)
634 {
635         struct ntfs_apply_args *args = arg;
636         ntfs_volume *vol             = args->vol;
637         u8 *p;
638         u8 buf[24];
639         ntfs_inode *ni;
640         int ret = 0;
641
642
643         DEBUG("Setting timestamps on `%s'", dentry->full_path_utf8);
644
645         ni = ntfs_pathname_to_inode(vol, NULL, dentry->full_path_utf8);
646         if (!ni) {
647                 ERROR_WITH_ERRNO("Could not find NTFS inode for `%s'",
648                                  dentry->full_path_utf8);
649                 return WIMLIB_ERR_NTFS_3G;
650         }
651
652         p = buf;
653         p = put_u64(p, dentry->creation_time);
654         p = put_u64(p, dentry->last_write_time);
655         p = put_u64(p, dentry->last_access_time);
656         ret = ntfs_inode_set_times(ni, (const char*)buf, 3 * sizeof(u64), 0);
657         if (ret != 0) {
658                 ERROR_WITH_ERRNO("Failed to set NTFS timestamps on `%s'",
659                                  dentry->full_path_utf8);
660                 ret = WIMLIB_ERR_NTFS_3G;
661         }
662
663         if (ntfs_inode_close(ni) != 0) {
664                 if (ret == 0)
665                         ret = WIMLIB_ERR_NTFS_3G;
666                 ERROR_WITH_ERRNO("Failed to close NTFS inode for `%s'",
667                                  dentry->full_path_utf8);
668         }
669         return ret;
670 }
671
672 static int do_wim_apply_image_ntfs(WIMStruct *w, const char *device, int extract_flags)
673 {
674         ntfs_volume *vol;
675         int ret;
676         
677         DEBUG("Mounting NTFS volume `%s'", device);
678         vol = ntfs_mount(device, 0);
679         if (!vol) {
680                 ERROR_WITH_ERRNO("Failed to mount NTFS volume `%s'", device);
681                 return WIMLIB_ERR_NTFS_3G;
682         }
683         struct ntfs_apply_args args = {
684                 .vol           = vol,
685                 .extract_flags = extract_flags,
686                 .w             = w,
687         };
688         ret = for_dentry_in_tree(wim_root_dentry(w), wim_apply_dentry_ntfs,
689                                  &args);
690
691         if (ret != 0)
692                 goto out;
693         if (extract_flags & WIMLIB_EXTRACT_FLAG_VERBOSE)
694                 printf("Setting timestamps of extracted files on NTFS "
695                        "volume `%s'\n", device);
696         ret = for_dentry_in_tree_depth(wim_root_dentry(w),
697                                        wim_apply_dentry_timestamps,
698                                        &args);
699         if (ret == 0 && (extract_flags & WIMLIB_EXTRACT_FLAG_VERBOSE))
700                 printf("Finished applying image %d of %s to NTFS "
701                        "volume `%s'\n",
702                        w->current_image,
703                        w->filename ? w->filename : "WIM",
704                        device);
705 out:
706         DEBUG("Unmounting NTFS volume `%s'", device);
707         if (ntfs_umount(vol, FALSE) != 0) {
708                 ERROR_WITH_ERRNO("Failed to unmount NTFS volume `%s'", device);
709                 if (ret == 0)
710                         ret = WIMLIB_ERR_NTFS_3G;
711         }
712         return ret;
713 }
714
715
716 /* 
717  * API entry point for applying a WIM image to a NTFS volume.
718  *
719  * Please note that this is a NTFS *volume* and not a directory.  The intention
720  * is that the volume contain an empty filesystem, and the WIM image contain a
721  * full filesystem to be applied to the volume.
722  */
723 WIMLIBAPI int wimlib_apply_image_to_ntfs_volume(WIMStruct *w, int image,
724                                                 const char *device, int flags)
725 {
726         int ret;
727
728         if (!device)
729                 return WIMLIB_ERR_INVALID_PARAM;
730         if (image == WIM_ALL_IMAGES) {
731                 ERROR("Can only apply a single image when applying "
732                       "directly to a NTFS volume");
733                 return WIMLIB_ERR_INVALID_PARAM;
734         }
735         if (flags & (WIMLIB_EXTRACT_FLAG_SYMLINK | WIMLIB_EXTRACT_FLAG_HARDLINK)) {
736                 ERROR("Cannot specify symlink or hardlink flags when applying ");
737                 ERROR("directly to a NTFS volume");
738                 return WIMLIB_ERR_INVALID_PARAM;
739         }
740         ret = wimlib_select_image(w, image);
741         if (ret != 0)
742                 return ret;
743
744         return do_wim_apply_image_ntfs(w, device, flags);
745 }
746
747 #else /* WITH_NTFS_3G */
748 WIMLIBAPI int wimlib_apply_image_to_ntfs_volume(WIMStruct *w, int image,
749                                                 const char *device, int flags)
750 {
751         ERROR("wimlib was compiled without support for NTFS-3g, so");
752         ERROR("we cannot apply a WIM image directly to a NTFS volume");
753         return WIMLIB_ERR_UNSUPPORTED;
754 }
755 #endif /* WITH_NTFS_3G */