]> wimlib.net Git - wimlib/blob - src/unix_capture.c
win32_apply.c: fix extraction of empty reparse points
[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                 name_len = strlen(entry->d_name);
184
185                 if (should_ignore_filename(entry->d_name, name_len))
186                         continue;
187
188                 full_path[full_path_len] = '/';
189                 memcpy(&full_path[full_path_len + 1], entry->d_name, name_len + 1);
190                 ret = unix_build_dentry_tree_recursive(&child,
191                                                        full_path,
192                                                        full_path_len + 1 + name_len,
193                                                        dirfd,
194                                                        &full_path[full_path_len + 1],
195                                                        params);
196                 full_path[full_path_len] = '\0';
197                 if (ret)
198                         break;
199                 attach_scanned_tree(dir_dentry, child, params->blob_table);
200         }
201         closedir(dir);
202         return ret;
203 }
204
205 /*
206  * Given an absolute symbolic link target (UNIX-style, beginning with '/'),
207  * determine whether it points into the directory identified by @ino and @dev.
208  * If yes, return the suffix of @target which is relative to this directory, but
209  * retaining leading slashes.  If no, return @target.
210  *
211  * Here are some examples, assuming that the @ino/@dev directory is "/home/e":
212  *
213  *      Original target         New target
214  *      ---------------         ----------
215  *      /home/e/test            /test
216  *      /home/e/test/           /test/
217  *      //home//e//test//       //test//
218  *      /home/e                                         (empty string)
219  *      /home/e/                /
220  *      /usr/lib                /usr/lib                (external link)
221  *
222  * Because of the possibility of other links into the @ino/@dev directory and/or
223  * multiple path separators, we can't simply do a string comparison; instead we
224  * need to stat() each ancestor directory.
225  *
226  * If the link points directly to the @ino/@dev directory with no trailing
227  * slashes, then the new target will be an empty string.  This is not a valid
228  * UNIX symlink target, but we store this in the archive anyway since the target
229  * is intended to be de-relativized when the link is extracted.
230  */
231 static char *
232 unix_relativize_link_target(char *target, u64 ino, u64 dev)
233 {
234         char *p = target;
235
236         do {
237                 char save;
238                 struct stat stbuf;
239                 int ret;
240
241                 /* Skip slashes (guaranteed to be at least one here)  */
242                 do {
243                         p++;
244                 } while (*p == '/');
245
246                 /* End of string?  */
247                 if (!*p)
248                         break;
249
250                 /* Skip non-slashes (guaranteed to be at least one here)  */
251                 do {
252                         p++;
253                 } while (*p && *p != '/');
254
255                 /* Get the inode and device numbers for this prefix.  */
256                 save = *p;
257                 *p = '\0';
258                 ret = stat(target, &stbuf);
259                 *p = save;
260
261                 if (ret) {
262                         /* stat() failed.  Assume the link points outside the
263                          * directory tree being captured.  */
264                         break;
265                 }
266
267                 if (stbuf.st_ino == ino && stbuf.st_dev == dev) {
268                         /* Link points inside directory tree being captured.
269                          * Return abbreviated path.  */
270                         return p;
271                 }
272         } while (*p);
273
274         /* Link does not point inside directory tree being captured.  */
275         return target;
276 }
277
278 static noinline_for_stack int
279 unix_scan_symlink(const char *full_path, int dirfd, const char *relpath,
280                   struct wim_inode *inode, struct capture_params *params)
281 {
282         char orig_target[REPARSE_POINT_MAX_SIZE];
283         char *target = orig_target;
284         int ret;
285
286         /* Read the UNIX symbolic link target.  */
287         ret = my_readlinkat(full_path, dirfd, relpath, target,
288                             sizeof(orig_target));
289         if (unlikely(ret < 0)) {
290                 ERROR_WITH_ERRNO("\"%s\": Can't read target of symbolic link",
291                                  full_path);
292                 return WIMLIB_ERR_READLINK;
293         }
294         if (unlikely(ret >= sizeof(orig_target))) {
295                 ERROR("\"%s\": target of symbolic link is too long", full_path);
296                 return WIMLIB_ERR_READLINK;
297         }
298         target[ret] = '\0';
299
300         /* If the link is absolute and reparse point fixups are enabled, then
301          * change it to be "absolute" relative to the tree being captured.  */
302         if (target[0] == '/' && (params->add_flags & WIMLIB_ADD_FLAG_RPFIX)) {
303                 int status = WIMLIB_SCAN_DENTRY_NOT_FIXED_SYMLINK;
304
305                 params->progress.scan.cur_path = full_path;
306                 params->progress.scan.symlink_target = target;
307
308                 target = unix_relativize_link_target(target,
309                                                      params->capture_root_ino,
310                                                      params->capture_root_dev);
311                 if (target != orig_target) {
312                         /* Link target was fixed.  */
313                         inode->i_rp_flags &= ~WIM_RP_FLAG_NOT_FIXED;
314                         status = WIMLIB_SCAN_DENTRY_FIXED_SYMLINK;
315                 }
316                 ret = do_capture_progress(params, status, NULL);
317                 if (ret)
318                         return ret;
319         }
320
321         /* Translate the UNIX symlink target into a Windows reparse point.  */
322         ret = wim_inode_set_symlink(inode, target, params->blob_table);
323         if (ret)
324                 return ret;
325
326         /* On Windows, a reparse point can be set on both directory and
327          * non-directory files.  Usually, a link that is intended to point to a
328          * (non-)directory is stored as a reparse point on a (non-)directory
329          * file.  Replicate this behavior by examining the target file.  */
330         struct stat stbuf;
331         if (my_fstatat(full_path, dirfd, relpath, &stbuf, 0) == 0 &&
332             S_ISDIR(stbuf.st_mode))
333                 inode->i_attributes |= FILE_ATTRIBUTE_DIRECTORY;
334         return 0;
335 }
336
337 static int
338 unix_build_dentry_tree_recursive(struct wim_dentry **tree_ret,
339                                  char *full_path, size_t full_path_len,
340                                  int dirfd, const char *relpath,
341                                  struct capture_params *params)
342 {
343         struct wim_dentry *tree = NULL;
344         struct wim_inode *inode = NULL;
345         int ret;
346         struct stat stbuf;
347         int stat_flags;
348
349         ret = try_exclude(full_path, params);
350         if (unlikely(ret < 0)) /* Excluded? */
351                 goto out_progress;
352         if (unlikely(ret > 0)) /* Error? */
353                 goto out;
354
355         if (params->add_flags & (WIMLIB_ADD_FLAG_DEREFERENCE |
356                                  WIMLIB_ADD_FLAG_ROOT))
357                 stat_flags = 0;
358         else
359                 stat_flags = AT_SYMLINK_NOFOLLOW;
360
361         ret = my_fstatat(full_path, dirfd, relpath, &stbuf, stat_flags);
362
363         if (ret) {
364                 ERROR_WITH_ERRNO("\"%s\": Can't read metadata", full_path);
365                 ret = WIMLIB_ERR_STAT;
366                 goto out;
367         }
368
369         if (!(params->add_flags & WIMLIB_ADD_FLAG_UNIX_DATA)) {
370                 if (unlikely(!S_ISREG(stbuf.st_mode) &&
371                              !S_ISDIR(stbuf.st_mode) &&
372                              !S_ISLNK(stbuf.st_mode)))
373                 {
374                         if (params->add_flags &
375                             WIMLIB_ADD_FLAG_NO_UNSUPPORTED_EXCLUDE)
376                         {
377                                 ERROR("\"%s\": File type is unsupported",
378                                       full_path);
379                                 ret = WIMLIB_ERR_UNSUPPORTED_FILE;
380                                 goto out;
381                         }
382                         params->progress.scan.cur_path = full_path;
383                         ret = do_capture_progress(params,
384                                                   WIMLIB_SCAN_DENTRY_UNSUPPORTED,
385                                                   NULL);
386                         goto out;
387                 }
388         }
389
390         ret = inode_table_new_dentry(params->inode_table, relpath,
391                                      stbuf.st_ino, stbuf.st_dev, false, &tree);
392         if (ret)
393                 goto out;
394
395         inode = tree->d_inode;
396
397         /* Already seen this inode?  */
398         if (inode->i_nlink > 1)
399                 goto out_progress;
400
401 #ifdef HAVE_STAT_NANOSECOND_PRECISION
402         inode->i_creation_time = timespec_to_wim_timestamp(&stbuf.st_mtim);
403         inode->i_last_write_time = timespec_to_wim_timestamp(&stbuf.st_mtim);
404         inode->i_last_access_time = timespec_to_wim_timestamp(&stbuf.st_atim);
405 #else
406         inode->i_creation_time = time_t_to_wim_timestamp(stbuf.st_mtime);
407         inode->i_last_write_time = time_t_to_wim_timestamp(stbuf.st_mtime);
408         inode->i_last_access_time = time_t_to_wim_timestamp(stbuf.st_atime);
409 #endif
410         if (params->add_flags & WIMLIB_ADD_FLAG_UNIX_DATA) {
411                 struct wimlib_unix_data unix_data;
412
413                 unix_data.uid = stbuf.st_uid;
414                 unix_data.gid = stbuf.st_gid;
415                 unix_data.mode = stbuf.st_mode;
416                 unix_data.rdev = stbuf.st_rdev;
417                 if (!inode_set_unix_data(inode, &unix_data, UNIX_DATA_ALL)) {
418                         ret = WIMLIB_ERR_NOMEM;
419                         goto out;
420                 }
421         }
422
423         if (params->add_flags & WIMLIB_ADD_FLAG_ROOT) {
424                 params->capture_root_ino = stbuf.st_ino;
425                 params->capture_root_dev = stbuf.st_dev;
426                 params->add_flags &= ~WIMLIB_ADD_FLAG_ROOT;
427         }
428
429         if (S_ISREG(stbuf.st_mode)) {
430                 ret = unix_scan_regular_file(full_path, stbuf.st_size,
431                                              inode, params->unhashed_blobs);
432         } else if (S_ISDIR(stbuf.st_mode)) {
433                 ret = unix_scan_directory(tree, full_path, full_path_len,
434                                           dirfd, relpath, params);
435         } else if (S_ISLNK(stbuf.st_mode)) {
436                 ret = unix_scan_symlink(full_path, dirfd, relpath,
437                                         inode, params);
438         }
439
440         if (ret)
441                 goto out;
442
443 out_progress:
444         params->progress.scan.cur_path = full_path;
445         if (likely(tree))
446                 ret = do_capture_progress(params, WIMLIB_SCAN_DENTRY_OK, inode);
447         else
448                 ret = do_capture_progress(params, WIMLIB_SCAN_DENTRY_EXCLUDED, NULL);
449 out:
450         if (unlikely(ret)) {
451                 free_dentry_tree(tree, params->blob_table);
452                 tree = NULL;
453                 ret = report_capture_error(params, ret, full_path);
454         }
455         *tree_ret = tree;
456         return ret;
457 }
458
459 /*
460  * unix_build_dentry_tree():
461  *      Builds a tree of WIM dentries from an on-disk directory tree (UNIX
462  *      version; no NTFS-specific data is captured).
463  *
464  * @root_ret:   Place to return a pointer to the root of the dentry tree.  Only
465  *              modified if successful.  Set to NULL if the file or directory was
466  *              excluded from capture.
467  *
468  * @root_disk_path:  The path to the root of the directory tree on disk.
469  *
470  * @params:     See doc for `struct capture_params'.
471  *
472  * @return:     0 on success, nonzero on failure.  It is a failure if any of
473  *              the files cannot be `stat'ed, or if any of the needed
474  *              directories cannot be opened or read.  Failure to add the files
475  *              to the WIM may still occur later when trying to actually read
476  *              the on-disk files during a call to wimlib_write() or
477  *              wimlib_overwrite().
478  */
479 int
480 unix_build_dentry_tree(struct wim_dentry **root_ret,
481                        const char *root_disk_path,
482                        struct capture_params *params)
483 {
484         size_t path_len;
485         size_t path_bufsz;
486         char *path_buf;
487         int ret;
488
489         path_len = strlen(root_disk_path);
490         path_bufsz = min(32790, PATH_MAX + 1);
491
492         if (path_len >= path_bufsz)
493                 return WIMLIB_ERR_INVALID_PARAM;
494
495         path_buf = MALLOC(path_bufsz);
496         if (!path_buf)
497                 return WIMLIB_ERR_NOMEM;
498         memcpy(path_buf, root_disk_path, path_len + 1);
499
500         params->capture_root_nchars = path_len;
501
502         ret = unix_build_dentry_tree_recursive(root_ret, path_buf, path_len,
503                                                AT_FDCWD, path_buf, params);
504         FREE(path_buf);
505         return ret;
506 }
507
508 #endif /* !__WIN32__ */