]> wimlib.net Git - wimlib/blob - src/unix_capture.c
Reparse point updates
[wimlib] / src / unix_capture.c
1 /*
2  * unix_capture.c:  Capture a directory tree on UNIX.
3  */
4
5 /*
6  * Copyright (C) 2012, 2013, 2014 Eric Biggers
7  *
8  * This file is free software; you can redistribute it and/or modify it under
9  * the terms of the GNU Lesser General Public License as published by the Free
10  * Software Foundation; either version 3 of the License, or (at your option) any
11  * later version.
12  *
13  * This file is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this file; if not, see http://www.gnu.org/licenses/.
20  */
21
22 #ifndef __WIN32__
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #include <dirent.h>
29 #include <errno.h>
30 #include <fcntl.h>
31 #include <limits.h> /* for PATH_MAX */
32 #include <sys/stat.h>
33 #include <unistd.h>
34
35 #include "wimlib/blob_table.h"
36 #include "wimlib/capture.h"
37 #include "wimlib/dentry.h"
38 #include "wimlib/error.h"
39 #include "wimlib/reparse.h"
40 #include "wimlib/timestamp.h"
41 #include "wimlib/unix_data.h"
42
43 #ifdef HAVE_FDOPENDIR
44 #  define my_fdopendir(dirfd_p) fdopendir(*(dirfd_p))
45 #else
46 static DIR *
47 my_fdopendir(int *dirfd_p)
48 {
49         DIR *dir = NULL;
50         int old_pwd;
51
52         old_pwd = open(".", O_RDONLY);
53         if (old_pwd >= 0) {
54                 if (!fchdir(*dirfd_p)) {
55                         dir = opendir(".");
56                         if (dir) {
57                                 close(*dirfd_p);
58                                 *dirfd_p = dirfd(dir);
59                         }
60                         fchdir(old_pwd);
61                 }
62                 close(old_pwd);
63         }
64         return dir;
65 }
66 #endif
67
68 #ifdef HAVE_OPENAT
69 #  define my_openat(full_path, dirfd, relpath, flags) \
70                 openat((dirfd), (relpath), (flags))
71 #else
72 #  define my_openat(full_path, dirfd, relpath, flags) \
73                 open((full_path), (flags))
74 #endif
75
76 #ifdef HAVE_READLINKAT
77 #  define my_readlinkat(full_path, dirfd, relpath, buf, bufsize) \
78                 readlinkat((dirfd), (relpath), (buf), (bufsize))
79 #else
80 #  define my_readlinkat(full_path, dirfd, relpath, buf, bufsize) \
81                 readlink((full_path), (buf), (bufsize))
82 #endif
83
84 #ifdef HAVE_FSTATAT
85 #  define my_fstatat(full_path, dirfd, relpath, stbuf, flags)   \
86         fstatat((dirfd), (relpath), (stbuf), (flags))
87 #else
88 #  define my_fstatat(full_path, dirfd, relpath, stbuf, flags)   \
89         ((flags) & AT_SYMLINK_NOFOLLOW) ? \
90                 lstat((full_path), (stbuf)) : \
91                 stat((full_path), (stbuf))
92 #endif
93
94 #ifndef AT_FDCWD
95 #  define AT_FDCWD      -100
96 #endif
97
98 #ifndef AT_SYMLINK_NOFOLLOW
99 #  define AT_SYMLINK_NOFOLLOW   0x100
100 #endif
101
102 static int
103 unix_scan_regular_file(const char *path, u64 size, struct wim_inode *inode,
104                        struct list_head *unhashed_blobs)
105 {
106         struct blob_descriptor *blob = NULL;
107         struct wim_inode_stream *strm;
108
109         inode->i_attributes = FILE_ATTRIBUTE_NORMAL;
110
111         if (size) {
112                 blob = new_blob_descriptor();
113                 if (unlikely(!blob))
114                         goto err_nomem;
115                 blob->file_on_disk = STRDUP(path);
116                 if (unlikely(!blob->file_on_disk))
117                         goto err_nomem;
118                 blob->blob_location = BLOB_IN_FILE_ON_DISK;
119                 blob->size = size;
120                 blob->file_inode = inode;
121         }
122
123         strm = inode_add_stream(inode, STREAM_TYPE_DATA, NO_STREAM_NAME, blob);
124         if (unlikely(!strm))
125                 goto err_nomem;
126
127         prepare_unhashed_blob(blob, inode, strm->stream_id, unhashed_blobs);
128         return 0;
129
130 err_nomem:
131         free_blob_descriptor(blob);
132         return WIMLIB_ERR_NOMEM;
133 }
134
135 static int
136 unix_build_dentry_tree_recursive(struct wim_dentry **tree_ret,
137                                  char *path, size_t path_len,
138                                  int dirfd, const char *relpath,
139                                  struct capture_params *params);
140
141 static int
142 unix_scan_directory(struct wim_dentry *dir_dentry,
143                     char *full_path, size_t full_path_len,
144                     int parent_dirfd, const char *dir_relpath,
145                     struct capture_params *params)
146 {
147
148         int dirfd;
149         DIR *dir;
150         int ret;
151
152         dirfd = my_openat(full_path, parent_dirfd, dir_relpath, O_RDONLY);
153         if (dirfd < 0) {
154                 ERROR_WITH_ERRNO("\"%s\": Can't open directory", full_path);
155                 return WIMLIB_ERR_OPENDIR;
156         }
157
158         dir_dentry->d_inode->i_attributes = FILE_ATTRIBUTE_DIRECTORY;
159         dir = my_fdopendir(&dirfd);
160         if (!dir) {
161                 ERROR_WITH_ERRNO("\"%s\": Can't open directory", full_path);
162                 close(dirfd);
163                 return WIMLIB_ERR_OPENDIR;
164         }
165
166         ret = 0;
167         for (;;) {
168                 struct dirent *entry;
169                 struct wim_dentry *child;
170                 size_t name_len;
171
172                 errno = 0;
173                 entry = readdir(dir);
174                 if (!entry) {
175                         if (errno) {
176                                 ret = WIMLIB_ERR_READ;
177                                 ERROR_WITH_ERRNO("\"%s\": Error reading directory",
178                                                  full_path);
179                         }
180                         break;
181                 }
182
183                 if (entry->d_name[0] == '.' &&
184                     (entry->d_name[1] == '\0' ||
185                      (entry->d_name[1] == '.' && entry->d_name[2] == '\0')))
186                         continue;
187
188                 full_path[full_path_len] = '/';
189                 name_len = strlen(entry->d_name);
190                 memcpy(&full_path[full_path_len + 1], entry->d_name, name_len + 1);
191                 ret = unix_build_dentry_tree_recursive(&child,
192                                                        full_path,
193                                                        full_path_len + 1 + name_len,
194                                                        dirfd,
195                                                        &full_path[full_path_len + 1],
196                                                        params);
197                 full_path[full_path_len] = '\0';
198                 if (ret)
199                         break;
200                 if (child)
201                         dentry_add_child(dir_dentry, child);
202         }
203         closedir(dir);
204         return ret;
205 }
206
207 /*
208  * Given an absolute symbolic link target (UNIX-style, beginning with '/'),
209  * determine whether it points into the directory identified by @ino and @dev.
210  * If yes, return the suffix of @target which is relative to this directory, but
211  * retaining leading slashes.  If no, return @target.
212  *
213  * Here are some examples, assuming that the @ino/@dev directory is "/home/e":
214  *
215  *      Original target         New target
216  *      ---------------         ----------
217  *      /home/e/test            /test
218  *      /home/e/test/           /test/
219  *      //home//e//test//       //test//
220  *      /home/e                                         (empty string)
221  *      /home/e/                /
222  *      /usr/lib                /usr/lib                (external link)
223  *
224  * Because of the possibility of other links into the @ino/@dev directory and/or
225  * multiple path separators, we can't simply do a string comparison; instead we
226  * need to stat() each ancestor directory.
227  *
228  * If the link points directly to the @ino/@dev directory with no trailing
229  * slashes, then the new target will be an empty string.  This is not a valid
230  * UNIX symlink target, but we store this in the archive anyway since the target
231  * is intended to be de-relativized when the link is extracted.
232  */
233 static char *
234 unix_relativize_link_target(char *target, u64 ino, u64 dev)
235 {
236         char *p = target;
237
238         do {
239                 char save;
240                 struct stat stbuf;
241                 int ret;
242
243                 /* Skip slashes (guaranteed to be at least one here)  */
244                 do {
245                         p++;
246                 } while (*p == '/');
247
248                 /* End of string?  */
249                 if (!*p)
250                         break;
251
252                 /* Skip non-slashes (guaranteed to be at least one here)  */
253                 do {
254                         p++;
255                 } while (*p && *p != '/');
256
257                 /* Get the inode and device numbers for this prefix.  */
258                 save = *p;
259                 *p = '\0';
260                 ret = stat(target, &stbuf);
261                 *p = save;
262
263                 if (ret) {
264                         /* stat() failed.  Assume the link points outside the
265                          * directory tree being captured.  */
266                         break;
267                 }
268
269                 if (stbuf.st_ino == ino && stbuf.st_dev == dev) {
270                         /* Link points inside directory tree being captured.
271                          * Return abbreviated path.  */
272                         return p;
273                 }
274         } while (*p);
275
276         /* Link does not point inside directory tree being captured.  */
277         return target;
278 }
279
280 static int
281 unix_scan_symlink(const char *full_path, int dirfd, const char *relpath,
282                   struct wim_inode *inode, struct capture_params *params)
283 {
284         char orig_target[REPARSE_POINT_MAX_SIZE];
285         char *target = orig_target;
286         int ret;
287
288         /* Read the UNIX symbolic link target.  */
289         ret = my_readlinkat(full_path, dirfd, relpath, target,
290                             sizeof(orig_target));
291         if (unlikely(ret < 0)) {
292                 ERROR_WITH_ERRNO("\"%s\": Can't read target of symbolic link",
293                                  full_path);
294                 return WIMLIB_ERR_READLINK;
295         }
296         if (unlikely(ret >= sizeof(orig_target))) {
297                 ERROR("\"%s\": target of symbolic link is too long", full_path);
298                 return WIMLIB_ERR_READLINK;
299         }
300         target[ret] = '\0';
301
302         /* If the link is absolute and reparse point fixups are enabled, then
303          * change it to be "absolute" relative to the tree being captured.  */
304         if (target[0] == '/' && (params->add_flags & WIMLIB_ADD_FLAG_RPFIX)) {
305                 int status = WIMLIB_SCAN_DENTRY_NOT_FIXED_SYMLINK;
306
307                 params->progress.scan.cur_path = full_path;
308                 params->progress.scan.symlink_target = target;
309
310                 target = unix_relativize_link_target(target,
311                                                      params->capture_root_ino,
312                                                      params->capture_root_dev);
313                 if (target != orig_target) {
314                         /* Link target was fixed.  */
315                         inode->i_rp_flags &= ~WIM_RP_FLAG_NOT_FIXED;
316                         status = WIMLIB_SCAN_DENTRY_FIXED_SYMLINK;
317                 }
318                 ret = do_capture_progress(params, status, NULL);
319                 if (ret)
320                         return ret;
321         }
322
323         /* Translate the UNIX symlink target into a Windows reparse point.  */
324         ret = wim_inode_set_symlink(inode, target, params->blob_table);
325         if (ret)
326                 return ret;
327
328         /* On Windows, a reparse point can be set on both directory and
329          * non-directory files.  Usually, a link that is intended to point to a
330          * (non-)directory is stored as a reparse point on a (non-)directory
331          * file.  Replicate this behavior by examining the target file.  */
332         struct stat stbuf;
333         if (my_fstatat(full_path, dirfd, relpath, &stbuf, 0) == 0 &&
334             S_ISDIR(stbuf.st_mode))
335                 inode->i_attributes |= FILE_ATTRIBUTE_DIRECTORY;
336         return 0;
337 }
338
339 static int
340 unix_build_dentry_tree_recursive(struct wim_dentry **tree_ret,
341                                  char *full_path, size_t full_path_len,
342                                  int dirfd, const char *relpath,
343                                  struct capture_params *params)
344 {
345         struct wim_dentry *tree = NULL;
346         struct wim_inode *inode = NULL;
347         int ret;
348         struct stat stbuf;
349         int stat_flags;
350
351         ret = try_exclude(full_path, full_path_len, params);
352         if (ret < 0) /* Excluded? */
353                 goto out_progress;
354         if (ret > 0) /* Error? */
355                 goto out;
356
357         if (params->add_flags & (WIMLIB_ADD_FLAG_DEREFERENCE |
358                                  WIMLIB_ADD_FLAG_ROOT))
359                 stat_flags = 0;
360         else
361                 stat_flags = AT_SYMLINK_NOFOLLOW;
362
363         ret = my_fstatat(full_path, dirfd, relpath, &stbuf, stat_flags);
364
365         if (ret) {
366                 ERROR_WITH_ERRNO("\"%s\": Can't read metadata", full_path);
367                 ret = WIMLIB_ERR_STAT;
368                 goto out;
369         }
370
371         if (!(params->add_flags & WIMLIB_ADD_FLAG_UNIX_DATA)) {
372                 if (unlikely(!S_ISREG(stbuf.st_mode) &&
373                              !S_ISDIR(stbuf.st_mode) &&
374                              !S_ISLNK(stbuf.st_mode)))
375                 {
376                         if (params->add_flags &
377                             WIMLIB_ADD_FLAG_NO_UNSUPPORTED_EXCLUDE)
378                         {
379                                 ERROR("\"%s\": File type is unsupported",
380                                       full_path);
381                                 ret = WIMLIB_ERR_UNSUPPORTED_FILE;
382                                 goto out;
383                         }
384                         params->progress.scan.cur_path = full_path;
385                         ret = do_capture_progress(params,
386                                                   WIMLIB_SCAN_DENTRY_UNSUPPORTED,
387                                                   NULL);
388                         goto out;
389                 }
390         }
391
392         ret = inode_table_new_dentry(params->inode_table, relpath,
393                                      stbuf.st_ino, stbuf.st_dev,
394                                      S_ISDIR(stbuf.st_mode), &tree);
395         if (ret)
396                 goto out;
397
398         inode = tree->d_inode;
399
400         /* Already seen this inode?  */
401         if (inode->i_nlink > 1)
402                 goto out_progress;
403
404 #ifdef HAVE_STAT_NANOSECOND_PRECISION
405         inode->i_creation_time = timespec_to_wim_timestamp(&stbuf.st_mtim);
406         inode->i_last_write_time = timespec_to_wim_timestamp(&stbuf.st_mtim);
407         inode->i_last_access_time = timespec_to_wim_timestamp(&stbuf.st_atim);
408 #else
409         inode->i_creation_time = time_t_to_wim_timestamp(stbuf.st_mtime);
410         inode->i_last_write_time = time_t_to_wim_timestamp(stbuf.st_mtime);
411         inode->i_last_access_time = time_t_to_wim_timestamp(stbuf.st_atime);
412 #endif
413         if (params->add_flags & WIMLIB_ADD_FLAG_UNIX_DATA) {
414                 struct wimlib_unix_data unix_data;
415
416                 unix_data.uid = stbuf.st_uid;
417                 unix_data.gid = stbuf.st_gid;
418                 unix_data.mode = stbuf.st_mode;
419                 unix_data.rdev = stbuf.st_rdev;
420                 if (!inode_set_unix_data(inode, &unix_data, UNIX_DATA_ALL)) {
421                         ret = WIMLIB_ERR_NOMEM;
422                         goto out;
423                 }
424         }
425
426         if (params->add_flags & WIMLIB_ADD_FLAG_ROOT) {
427                 params->capture_root_ino = stbuf.st_ino;
428                 params->capture_root_dev = stbuf.st_dev;
429                 params->add_flags &= ~WIMLIB_ADD_FLAG_ROOT;
430         }
431
432         if (S_ISREG(stbuf.st_mode)) {
433                 ret = unix_scan_regular_file(full_path, stbuf.st_size,
434                                              inode, params->unhashed_blobs);
435         } else if (S_ISDIR(stbuf.st_mode)) {
436                 ret = unix_scan_directory(tree, full_path, full_path_len,
437                                           dirfd, relpath, params);
438         } else if (S_ISLNK(stbuf.st_mode)) {
439                 ret = unix_scan_symlink(full_path, dirfd, relpath,
440                                         inode, params);
441         }
442
443         if (ret)
444                 goto out;
445
446 out_progress:
447         params->progress.scan.cur_path = full_path;
448         if (likely(tree))
449                 ret = do_capture_progress(params, WIMLIB_SCAN_DENTRY_OK, inode);
450         else
451                 ret = do_capture_progress(params, WIMLIB_SCAN_DENTRY_EXCLUDED, NULL);
452 out:
453         if (unlikely(ret)) {
454                 free_dentry_tree(tree, params->blob_table);
455                 tree = NULL;
456                 ret = report_capture_error(params, ret, full_path);
457         }
458         *tree_ret = tree;
459         return ret;
460 }
461
462 /*
463  * unix_build_dentry_tree():
464  *      Builds a tree of WIM dentries from an on-disk directory tree (UNIX
465  *      version; no NTFS-specific data is captured).
466  *
467  * @root_ret:   Place to return a pointer to the root of the dentry tree.  Only
468  *              modified if successful.  Set to NULL if the file or directory was
469  *              excluded from capture.
470  *
471  * @root_disk_path:  The path to the root of the directory tree on disk.
472  *
473  * @params:     See doc for `struct capture_params'.
474  *
475  * @return:     0 on success, nonzero on failure.  It is a failure if any of
476  *              the files cannot be `stat'ed, or if any of the needed
477  *              directories cannot be opened or read.  Failure to add the files
478  *              to the WIM may still occur later when trying to actually read
479  *              the on-disk files during a call to wimlib_write() or
480  *              wimlib_overwrite().
481  */
482 int
483 unix_build_dentry_tree(struct wim_dentry **root_ret,
484                        const char *root_disk_path,
485                        struct capture_params *params)
486 {
487         size_t path_len;
488         size_t path_bufsz;
489         char *path_buf;
490         int ret;
491
492         path_len = strlen(root_disk_path);
493         path_bufsz = min(32790, PATH_MAX + 1);
494
495         if (path_len >= path_bufsz)
496                 return WIMLIB_ERR_INVALID_PARAM;
497
498         path_buf = MALLOC(path_bufsz);
499         if (!path_buf)
500                 return WIMLIB_ERR_NOMEM;
501         memcpy(path_buf, root_disk_path, path_len + 1);
502
503         params->capture_root_nchars = path_len;
504
505         ret = unix_build_dentry_tree_recursive(root_ret, path_buf, path_len,
506                                                AT_FDCWD, path_buf, params);
507         FREE(path_buf);
508         return ret;
509 }
510
511 #endif /* !__WIN32__ */