]> wimlib.net Git - wimlib/blob - src/ntfs-apply.c
NTFS apply: fix extracting links
[wimlib] / src / ntfs-apply.c
1 /*
2  * ntfs-apply.c
3  *
4  * Apply a WIM image to a NTFS volume.  Restore as much information as possible,
5  * including security data, file attributes, DOS names, and alternate data
6  * streams.
7  */
8
9 /*
10  * Copyright (C) 2012 Eric Biggers
11  *
12  * This file is part of wimlib, a library for working with WIM files.
13  *
14  * wimlib is free software; you can redistribute it and/or modify it under the
15  * terms of the GNU General Public License as published by the Free
16  * Software Foundation; either version 3 of the License, or (at your option)
17  * any later version.
18  *
19  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
20  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
21  * A PARTICULAR PURPOSE. See the GNU General Public License for more
22  * details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with wimlib; if not, see http://www.gnu.org/licenses/.
26  */
27
28
29 #include "config.h"
30
31 #include <ntfs-3g/endians.h>
32 #include <ntfs-3g/types.h>
33
34 #include "wimlib_internal.h"
35 #include "buffer_io.h"
36 #include "dentry.h"
37 #include "lookup_table.h"
38
39 #include <ntfs-3g/attrib.h>
40 #include <ntfs-3g/security.h> /* security.h before xattrs.h */
41 #include <ntfs-3g/reparse.h>
42 #include <ntfs-3g/xattrs.h>
43 #include <string.h>
44
45 static int extract_wim_chunk_to_ntfs_attr(const u8 *buf, size_t len,
46                                           u64 offset, void *arg)
47 {
48         ntfs_attr *na = arg;
49         if (ntfs_attr_pwrite(na, offset, len, buf) == len) {
50                 return 0;
51         } else {
52                 ERROR_WITH_ERRNO("Error extracting WIM resource to NTFS attribute");
53                 return WIMLIB_ERR_WRITE;
54         }
55 }
56
57 /*
58  * Extracts a WIM resource to a NTFS attribute.
59  */
60 static int
61 extract_wim_resource_to_ntfs_attr(const struct wim_lookup_table_entry *lte,
62                                   ntfs_attr *na)
63 {
64         return extract_wim_resource(lte, wim_resource_size(lte),
65                                     extract_wim_chunk_to_ntfs_attr, na);
66 }
67
68 /* Writes the data streams of a WIM inode to the data attributes of a NTFS
69  * inode.
70  *
71  * @ni:      The NTFS inode to which the streams are to be extracted.
72  *
73  * @dentry:  The WIM dentry being extracted.  The @d_inode member points to the
74  *           corresponding WIM inode that contains the streams being extracted.
75  *           The WIM dentry itself is only needed to provide a file path for
76  *           better error messages.
77  *
78  * @progress_info:  Progress information for the image application.  The number
79  *                  of extracted bytes will be incremented by the uncompressed
80  *                  size of each stream extracted.
81  *
82  * Returns 0 on success, nonzero on failure.
83  */
84 static int write_ntfs_data_streams(ntfs_inode *ni, const struct wim_dentry *dentry,
85                                    union wimlib_progress_info *progress_info)
86 {
87         int ret = 0;
88         unsigned stream_idx = 0;
89         ntfschar *stream_name = AT_UNNAMED;
90         u32 stream_name_len = 0;
91         const struct wim_inode *inode = dentry->d_inode;
92         struct wim_lookup_table_entry *lte;
93
94         DEBUG("Writing %u NTFS data stream%s for `%s'",
95               inode->i_num_ads + 1,
96               (inode->i_num_ads == 0 ? "" : "s"),
97               dentry->full_path_utf8);
98
99         lte = inode->i_lte;
100         while (1) {
101                 if (stream_name_len) {
102                         /* Create an empty named stream. */
103                         ret = ntfs_attr_add(ni, AT_DATA, stream_name,
104                                             stream_name_len, NULL, 0);
105                         if (ret != 0) {
106                                 ERROR_WITH_ERRNO("Failed to create name data "
107                                                  "stream for extracted file "
108                                                  "`%s'",
109                                                  dentry->full_path_utf8);
110                                 ret = WIMLIB_ERR_NTFS_3G;
111                                 break;
112
113                         }
114                 }
115
116                 /* If there's no lookup table entry, it's an empty stream.
117                  * Otherwise, open the attribute and extract the data. */
118                 if (lte) {
119                         ntfs_attr *na;
120
121                         na = ntfs_attr_open(ni, AT_DATA, stream_name, stream_name_len);
122                         if (!na) {
123                                 ERROR_WITH_ERRNO("Failed to open a data stream of "
124                                                  "extracted file `%s'",
125                                                  dentry->full_path_utf8);
126                                 ret = WIMLIB_ERR_NTFS_3G;
127                                 break;
128                         }
129
130                         /* The WIM lookup table entry provides the stream
131                          * length, so the NTFS attribute should be resized to
132                          * this length before starting to extract the data. */
133                         ret = ntfs_attr_truncate_solid(na, wim_resource_size(lte));
134                         if (ret != 0) {
135                                 ntfs_attr_close(na);
136                                 break;
137                         }
138
139                         /* Actually extract the stream */
140                         ret = extract_wim_resource_to_ntfs_attr(lte, na);
141
142                         /* Close the attribute */
143                         ntfs_attr_close(na);
144                         if (ret != 0)
145                                 break;
146
147                         /* Record the number of bytes of uncompressed data that
148                          * have been extracted. */
149                         progress_info->extract.completed_bytes += wim_resource_size(lte);
150                 }
151                 if (stream_idx == inode->i_num_ads) /* Has the last stream been extracted? */
152                         break;
153
154                 /* Get the name and lookup table entry for the next stream. */
155                 stream_name = (ntfschar*)inode->i_ads_entries[stream_idx].stream_name;
156                 stream_name_len = inode->i_ads_entries[stream_idx].stream_name_len / 2;
157                 lte = inode->i_ads_entries[stream_idx].lte;
158                 stream_idx++;
159         }
160         return ret;
161 }
162
163 /* Open the NTFS inode that corresponds to the parent of a WIM dentry.  Returns
164  * the opened inode, or NULL on failure. */
165 static ntfs_inode *dentry_open_parent_ni(const struct wim_dentry *dentry,
166                                          ntfs_volume *vol)
167 {
168         char *p;
169         const char *dir_name;
170         ntfs_inode *dir_ni;
171         char orig;
172
173         p = dentry->full_path_utf8 + dentry->full_path_utf8_len;
174         do {
175                 p--;
176         } while (*p != '/');
177
178         orig = *p;
179         *p = '\0';
180         dir_name = dentry->full_path_utf8;
181         dir_ni = ntfs_pathname_to_inode(vol, NULL, dir_name);
182         if (!dir_ni) {
183                 ERROR_WITH_ERRNO("Could not find NTFS inode for `%s'",
184                                  dir_name);
185         }
186         *p = orig;
187         return dir_ni;
188 }
189
190 /*
191  * Makes a NTFS hard link.
192  *
193  * The hard link is named @from_dentry->file_name and is located under the
194  * directory specified by @dir_ni, and it is made to point to the previously
195  * extracted file located at @inode->i_extracted_file.
196  *
197  * Or, in other words, this adds a new name @from_dentry->full_path_utf8 to an
198  * existing NTFS inode which already has a name @inode->i_extracted_file.
199  *
200  * The new name is made in the POSIX namespace (this is the behavior of
201  * ntfs_link()).  I am assuming this is an acceptable behavior; however, it's
202  * possible that the original name was actually in the Win32 namespace.  Note
203  * that the WIM format does not provide enough information to distinguish Win32
204  * names from POSIX names in all cases.
205  *
206  * Return 0 on success, nonzero on failure.
207  */
208 static int apply_ntfs_hardlink(const struct wim_dentry *from_dentry,
209                                const struct wim_inode *inode,
210                                ntfs_inode **dir_ni_p)
211 {
212         int ret;
213         ntfs_inode *to_ni;
214         ntfs_inode *dir_ni;
215         ntfs_volume *vol;
216
217         dir_ni = *dir_ni_p;
218         vol = dir_ni->vol;
219         ret = ntfs_inode_close(dir_ni);
220         *dir_ni_p = NULL;
221         if (ret != 0) {
222                 ERROR_WITH_ERRNO("Error closing directory");
223                 return WIMLIB_ERR_NTFS_3G;
224         }
225
226         DEBUG("Extracting NTFS hard link `%s' => `%s'",
227               from_dentry->full_path_utf8, inode->i_extracted_file);
228
229         to_ni = ntfs_pathname_to_inode(vol, NULL, inode->i_extracted_file);
230         if (!to_ni) {
231                 ERROR_WITH_ERRNO("Could not find NTFS inode for `%s'",
232                                  inode->i_extracted_file);
233                 return WIMLIB_ERR_NTFS_3G;
234         }
235
236         dir_ni = dentry_open_parent_ni(from_dentry, vol);
237         if (!dir_ni) {
238                 ntfs_inode_close(to_ni);
239                 return WIMLIB_ERR_NTFS_3G;
240         }
241
242         ret = ntfs_link(to_ni, dir_ni,
243                         (ntfschar*)from_dentry->file_name,
244                         from_dentry->file_name_len / 2);
245         ret |= ntfs_inode_close(dir_ni);
246         ret |= ntfs_inode_close(to_ni);
247         if (ret) {
248                 ERROR_WITH_ERRNO("Could not create hard link `%s' => `%s' (ret=%d)",
249                                  from_dentry->full_path_utf8,
250                                  inode->i_extracted_file,
251                                  ret);
252                 ret = WIMLIB_ERR_NTFS_3G;
253         }
254         return ret;
255 }
256
257 /* Transfers file attributes and possibly a security descriptor from a WIM inode
258  * to a NTFS inode.
259  *
260  * @ni:      The NTFS inode to apply the metadata to.
261  * @dir_ni:  The NTFS inode for a directory containing @ni.
262  * @dentry:  The WIM dentry whose inode contains the metadata to apply.
263  * @w:       The WIMStruct for the WIM, through which the table of security
264  *              descriptors can be accessed.
265  *
266  * Returns 0 on success, nonzero on failure.
267  */
268 static int
269 apply_file_attributes_and_security_data(ntfs_inode *ni,
270                                         ntfs_inode *dir_ni,
271                                         const struct wim_dentry *dentry,
272                                         const WIMStruct *w)
273 {
274         int ret;
275         struct SECURITY_CONTEXT ctx;
276         u32 attributes_le32;
277         const struct wim_inode *inode;
278
279         inode = dentry->d_inode;
280
281         DEBUG("Setting NTFS file attributes on `%s' to %#"PRIx32,
282               dentry->full_path_utf8, inode->i_attributes);
283
284         attributes_le32 = cpu_to_le32(inode->i_attributes);
285         memset(&ctx, 0, sizeof(ctx));
286         ctx.vol = ni->vol;
287         ret = ntfs_xattr_system_setxattr(&ctx, XATTR_NTFS_ATTRIB,
288                                          ni, dir_ni,
289                                          (const char*)&attributes_le32,
290                                          sizeof(u32), 0);
291         if (ret != 0) {
292                 ERROR("Failed to set NTFS file attributes on `%s'",
293                        dentry->full_path_utf8);
294                 return WIMLIB_ERR_NTFS_3G;
295         }
296         if (inode->i_security_id != -1) {
297                 const char *desc;
298                 const struct wim_security_data *sd;
299
300                 sd = wim_const_security_data(w);
301                 wimlib_assert(inode->i_security_id < sd->num_entries);
302                 desc = (const char *)sd->descriptors[inode->i_security_id];
303                 DEBUG("Applying security descriptor %d to `%s'",
304                       inode->i_security_id, dentry->full_path_utf8);
305
306                 ret = ntfs_xattr_system_setxattr(&ctx, XATTR_NTFS_ACL,
307                                                  ni, dir_ni, desc,
308                                                  sd->sizes[inode->i_security_id], 0);
309
310                 if (ret != 0) {
311                         ERROR_WITH_ERRNO("Failed to set security data on `%s'",
312                                         dentry->full_path_utf8);
313                         return WIMLIB_ERR_NTFS_3G;
314                 }
315         }
316         return 0;
317 }
318
319 /*
320  * Transfers the reparse data from a WIM inode (which must represent a reparse
321  * point) to a NTFS inode.
322  */
323 static int apply_reparse_data(ntfs_inode *ni, const struct wim_dentry *dentry,
324                               union wimlib_progress_info *progress_info)
325 {
326         struct wim_lookup_table_entry *lte;
327         int ret = 0;
328
329         lte = inode_unnamed_lte_resolved(dentry->d_inode);
330
331         DEBUG("Applying reparse data to `%s'", dentry->full_path_utf8);
332
333         if (!lte) {
334                 ERROR("Could not find reparse data for `%s'",
335                       dentry->full_path_utf8);
336                 return WIMLIB_ERR_INVALID_DENTRY;
337         }
338
339         if (wim_resource_size(lte) >= 0xffff) {
340                 ERROR("Reparse data of `%s' is too long (%"PRIu64" bytes)",
341                       dentry->full_path_utf8, wim_resource_size(lte));
342                 return WIMLIB_ERR_INVALID_DENTRY;
343         }
344
345         u8 reparse_data_buf[8 + wim_resource_size(lte)];
346         u8 *p = reparse_data_buf;
347         p = put_u32(p, dentry->d_inode->i_reparse_tag); /* ReparseTag */
348         p = put_u16(p, wim_resource_size(lte)); /* ReparseDataLength */
349         p = put_u16(p, 0); /* Reserved */
350
351         ret = read_full_wim_resource(lte, p, 0);
352         if (ret != 0)
353                 return ret;
354
355         ret = ntfs_set_ntfs_reparse_data(ni, (char*)reparse_data_buf,
356                                          wim_resource_size(lte) + 8, 0);
357         if (ret != 0) {
358                 ERROR_WITH_ERRNO("Failed to set NTFS reparse data on `%s'",
359                                  dentry->full_path_utf8);
360                 return WIMLIB_ERR_NTFS_3G;
361         }
362         progress_info->extract.completed_bytes += wim_resource_size(lte);
363         return 0;
364 }
365
366 /*
367  * Applies a WIM dentry to a NTFS filesystem.
368  *
369  * @dentry:  The WIM dentry to apply
370  * @dir_ni:  The NTFS inode for the parent directory
371  *
372  * @return:  0 on success; nonzero on failure.
373  */
374 static int do_apply_dentry_ntfs(struct wim_dentry *dentry, ntfs_inode *dir_ni,
375                                 struct apply_args *args)
376 {
377         int ret = 0;
378         mode_t type;
379         ntfs_inode *ni = NULL;
380         struct wim_inode *inode = dentry->d_inode;
381         dentry->is_extracted = 1;
382
383         if (inode->i_attributes & FILE_ATTRIBUTE_DIRECTORY) {
384                 type = S_IFDIR;
385         } else {
386                 type = S_IFREG;
387                 if (inode->i_nlink > 1) {
388                         /* Inode has multiple dentries referencing it. */
389                         if (inode->i_extracted_file) {
390                                 /* Already extracted another dentry in the hard
391                                  * link group.  Make a hard link instead of
392                                  * extracting the file data. */
393                                 ret = apply_ntfs_hardlink(dentry, inode,
394                                                           &dir_ni);
395                                 goto out_close_dir_ni;
396                         } else {
397                                 /* None of the dentries of this inode have been
398                                  * extracted yet, so go ahead and extract the
399                                  * first one. */
400                                 FREE(inode->i_extracted_file);
401                                 inode->i_extracted_file = STRDUP(dentry->full_path_utf8);
402                                 if (!inode->i_extracted_file) {
403                                         ret = WIMLIB_ERR_NOMEM;
404                                         goto out_close_dir_ni;
405                                 }
406                         }
407                 }
408         }
409
410         /* Create a NTFS directory or file.
411          *
412          * Note: For symbolic links that are not directory junctions, S_IFREG is
413          * passed here, since the reparse data and file attributes are set
414          * later. */
415         ni = ntfs_create(dir_ni, 0, (ntfschar*)dentry->file_name,
416                          dentry->file_name_len / 2, type);
417
418         if (!ni) {
419                 ERROR_WITH_ERRNO("Could not create NTFS inode for `%s'",
420                                  dentry->full_path_utf8);
421                 ret = WIMLIB_ERR_NTFS_3G;
422                 goto out_close_dir_ni;
423         }
424
425         /* Write the data streams, unless this is a directory or reparse point
426          * */
427         if (!(inode->i_attributes & (FILE_ATTRIBUTE_REPARSE_POINT |
428                                    FILE_ATTRIBUTE_DIRECTORY))) {
429                 ret = write_ntfs_data_streams(ni, dentry, &args->progress);
430                 if (ret != 0)
431                         goto out_close_dir_ni;
432         }
433
434
435         ret = apply_file_attributes_and_security_data(ni, dir_ni, dentry,
436                                                       args->w);
437         if (ret != 0)
438                 goto out_close_dir_ni;
439
440         if (inode->i_attributes & FILE_ATTR_REPARSE_POINT) {
441                 ret = apply_reparse_data(ni, dentry, &args->progress);
442                 if (ret != 0)
443                         goto out_close_dir_ni;
444         }
445
446         /* Set DOS (short) name if given */
447         if (dentry->short_name_len != 0) {
448                 char *short_name_utf8;
449                 size_t short_name_utf8_len;
450                 ret = utf16_to_utf8(dentry->short_name,
451                                     dentry->short_name_len,
452                                     &short_name_utf8,
453                                     &short_name_utf8_len);
454                 if (ret != 0)
455                         goto out_close_dir_ni;
456
457                 DEBUG("Setting short (DOS) name of `%s' to %s",
458                       dentry->full_path_utf8, short_name_utf8);
459
460                 ret = ntfs_set_ntfs_dos_name(ni, dir_ni, short_name_utf8,
461                                              short_name_utf8_len, 0);
462                 FREE(short_name_utf8);
463                 if (ret != 0) {
464                         ERROR_WITH_ERRNO("Could not set DOS (short) name for `%s'",
465                                          dentry->full_path_utf8);
466                         ret = WIMLIB_ERR_NTFS_3G;
467                 }
468                 /* inodes have been closed by ntfs_set_ntfs_dos_name(). */
469                 goto out;
470         }
471 out_close_dir_ni:
472         if (dir_ni) {
473                 if (ni) {
474                         if (ntfs_inode_close_in_dir(ni, dir_ni)) {
475                                 if (ret == 0)
476                                         ret = WIMLIB_ERR_NTFS_3G;
477                                 ERROR_WITH_ERRNO("Failed to close inode for `%s'",
478                                                  dentry->full_path_utf8);
479                         }
480                 }
481                 if (ntfs_inode_close(dir_ni)) {
482                         if (ret == 0)
483                                 ret = WIMLIB_ERR_NTFS_3G;
484                         ERROR_WITH_ERRNO("Failed to close inode of directory "
485                                          "containing `%s'", dentry->full_path_utf8);
486                 }
487         }
488 out:
489         return ret;
490 }
491
492 static int apply_root_dentry_ntfs(const struct wim_dentry *dentry,
493                                   ntfs_volume *vol, const WIMStruct *w)
494 {
495         ntfs_inode *ni;
496         int ret = 0;
497
498         ni = ntfs_pathname_to_inode(vol, NULL, "/");
499         if (!ni) {
500                 ERROR_WITH_ERRNO("Could not find root NTFS inode");
501                 return WIMLIB_ERR_NTFS_3G;
502         }
503         ret = apply_file_attributes_and_security_data(ni, ni, dentry, w);
504         if (ntfs_inode_close(ni) != 0) {
505                 ERROR_WITH_ERRNO("Failed to close NTFS inode for root "
506                                  "directory");
507                 ret = WIMLIB_ERR_NTFS_3G;
508         }
509         return ret;
510 }
511
512 /* Applies a WIM dentry to the NTFS volume */
513 int apply_dentry_ntfs(struct wim_dentry *dentry, void *arg)
514 {
515         struct apply_args *args = arg;
516         ntfs_volume *vol = args->vol;
517         WIMStruct *w = args->w;
518         struct wim_dentry *orig_dentry;
519         struct wim_dentry *other;
520         int ret;
521
522         /* Treat the root dentry specially. */
523         if (dentry_is_root(dentry))
524                 return apply_root_dentry_ntfs(dentry, vol, w);
525
526         /* NTFS filename namespaces need careful consideration.  A name for a
527          * NTFS file may be in either the POSIX, Win32, DOS, or Win32+DOS
528          * namespaces.  A NTFS file (a.k.a. inode) may have multiple names in
529          * multiple directories (i.e. hard links); however, a NTFS file can have
530          * at most 1 DOS name total.  Furthermore, a Win32 name is always
531          * associated with a DOS name (either as a Win32+DOS name, or a Win32
532          * name and a DOS name separately), which implies that a NTFS file can
533          * have at most 1 Win32 name.
534          *
535          * A WIM dentry just contains a "long name", which wimlib makes sure is
536          * non-empty, and a "short name", which may be empty.  So, wimlib must
537          * map these to the correct NTFS names.  wimlib collects all WIM
538          * dentries that map to the same NTFS inode and factors out the common
539          * information into a 'struct wim_inode', so this should make the
540          * mapping a little more obvious.  As a NTFS file can have at most 1 DOS
541          * name, a WIM inode cannot have more than 1 dentry with a non-empty
542          * short name, and this is checked in the verify_inode() function in
543          * verify.c.  Furthermore, a WIM dentry, if any, that has a DOS name
544          * must have a long name that corresponds to a Win32 name or Win32+DOS
545          * name.
546          *
547          * WIM dentries that have a long name but no associated short name are
548          * assumed to be in the POSIX namespace.
549          *
550          * So, given a WIM inode that is to map to a NTFS inode, we must apply
551          * the Win32 and DOS or Win32+DOS names, if they exist, then any
552          * additional (POSIX) names.  A caveat when actually doing this:  as
553          * confirmed by the libntfs-3g authors, ntfs_set_ntfs_dos_name() is only
554          * guaranteed to associate a DOS name with the appropriate long name if
555          * it's called when that long name is the only one in existence for that
556          * file.  So, this implies that the correct ordering of function calls
557          * to extract a NTFS file are:
558          *
559          *      if (file has a DOS name) {
560          *              - Call ntfs_create() to create long name associated with
561          *              the DOS name (this initially creates a POSIX name)
562          *              - Call ntfs_set_ntfs_dos_name() to associate a DOS name
563          *              with the long name just created.  This either changes
564          *              the POSIX name to Win32+DOS, or changes the POSIX name
565          *              to Win32 and creates a separate DOS name.
566          *      } else {
567          *              - Call ntfs_create() to create the first link to the
568          *              file in the POSIX namespace
569          *      }
570          *      - Call ntfs_link() to create the other names of the file, in the
571          *      POSIX namespace.
572          */
573 again:
574         orig_dentry = NULL;
575         if (!dentry->d_inode->i_dos_name_extracted &&
576             dentry->short_name_len == 0)
577         {
578                 inode_for_each_dentry(other, dentry->d_inode) {
579                         if (other->short_name_len != 0) {
580                                 orig_dentry = dentry;
581                                 dentry = other;
582                                 break;
583                         }
584                 }
585         }
586         dentry->d_inode->i_dos_name_extracted = 1;
587         ntfs_inode *dir_ni = dentry_open_parent_ni(dentry, vol);
588         if (dir_ni) {
589                 ret = do_apply_dentry_ntfs(dentry, dir_ni, arg);
590                 if (ret == 0 && orig_dentry != NULL) {
591                         dentry = orig_dentry;
592                         goto again;
593                 }
594         } else {
595                 ret = WIMLIB_ERR_NTFS_3G;
596         }
597         return ret;
598 }
599
600 /* Transfers the 100-nanosecond precision timestamps from a WIM dentry to a NTFS
601  * inode */
602 int apply_dentry_timestamps_ntfs(struct wim_dentry *dentry, void *arg)
603 {
604         struct apply_args *args = arg;
605         ntfs_volume *vol = args->vol;
606         u8 *p;
607         u8 buf[24];
608         ntfs_inode *ni;
609         int ret;
610
611         DEBUG("Setting timestamps on `%s'", dentry->full_path_utf8);
612
613         ni = ntfs_pathname_to_inode(vol, NULL, dentry->full_path_utf8);
614         if (!ni) {
615                 ERROR_WITH_ERRNO("Could not find NTFS inode for `%s'",
616                                  dentry->full_path_utf8);
617                 return WIMLIB_ERR_NTFS_3G;
618         }
619
620         p = buf;
621         p = put_u64(p, dentry->d_inode->i_creation_time);
622         p = put_u64(p, dentry->d_inode->i_last_write_time);
623         p = put_u64(p, dentry->d_inode->i_last_access_time);
624         ret = ntfs_inode_set_times(ni, (const char*)buf, 3 * sizeof(u64), 0);
625         if (ret != 0) {
626                 ERROR_WITH_ERRNO("Failed to set NTFS timestamps on `%s'",
627                                  dentry->full_path_utf8);
628                 ret = WIMLIB_ERR_NTFS_3G;
629         }
630
631         if (ntfs_inode_close(ni) != 0) {
632                 if (ret == 0)
633                         ret = WIMLIB_ERR_NTFS_3G;
634                 ERROR_WITH_ERRNO("Failed to close NTFS inode for `%s'",
635                                  dentry->full_path_utf8);
636         }
637         return ret;
638 }