X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Funix_capture.c;h=66cb4be20265133a647f425d63b8e3f81723d91b;hp=8b1e793413c7faf3f56b96b77c50ffbfca56d8cd;hb=c3e9bd8344d97960e8e6cf29cc1ff633e925f986;hpb=af141a23c4d1540b8a64759bb68c7cd7ff054e72 diff --git a/src/unix_capture.c b/src/unix_capture.c index 8b1e7934..66cb4be2 100644 --- a/src/unix_capture.c +++ b/src/unix_capture.c @@ -5,20 +5,18 @@ /* * Copyright (C) 2012, 2013, 2014 Eric Biggers * - * This file is part of wimlib, a library for working with WIM files. + * This file is free software; you can redistribute it and/or modify it under + * the terms of the GNU Lesser General Public License as published by the Free + * Software Foundation; either version 3 of the License, or (at your option) any + * later version. * - * wimlib is free software; you can redistribute it and/or modify it under the - * terms of the GNU General Public License as published by the Free - * Software Foundation; either version 3 of the License, or (at your option) - * any later version. - * - * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - * A PARTICULAR PURPOSE. See the GNU General Public License for more + * This file is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. * - * You should have received a copy of the GNU General Public License - * along with wimlib; if not, see http://www.gnu.org/licenses/. + * You should have received a copy of the GNU Lesser General Public License + * along with this file; if not, see http://www.gnu.org/licenses/. */ #ifndef __WIN32__ @@ -123,6 +121,7 @@ unix_scan_regular_file(const char *path, u64 size, struct wim_inode *inode, return WIMLIB_ERR_NOMEM; } lte->file_on_disk = file_on_disk; + lte->file_inode = inode; lte->resource_location = RESOURCE_IN_FILE_ON_DISK; lte->size = size; add_unhashed_stream(lte, inode, 0, unhashed_streams); @@ -251,8 +250,7 @@ unix_fixup_abslink(char *dest, u64 ino, u64 dev) } static int -unix_scan_symlink(struct wim_dentry **root_p, const char *full_path, - int dirfd, const char *relpath, +unix_scan_symlink(const char *full_path, int dirfd, const char *relpath, struct wim_inode *inode, struct add_image_params *params) { char deref_name_buf[4096]; @@ -281,31 +279,33 @@ unix_scan_symlink(struct wim_dentry **root_p, const char *full_path, if ((params->add_flags & WIMLIB_ADD_FLAG_RPFIX) && dest[0] == '/') { + char *fixed_dest; + /* RPFIX (reparse point fixup) mode: Change target of absolute * symbolic link to be "absolute" relative to the tree being * captured. */ - dest = unix_fixup_abslink(dest, - params->capture_root_ino, - params->capture_root_dev); + fixed_dest = unix_fixup_abslink(dest, + params->capture_root_ino, + params->capture_root_dev); params->progress.scan.cur_path = full_path; params->progress.scan.symlink_target = deref_name_buf; - if (dest) { - /* Successfully fixed the link target. */ + if (fixed_dest) { + /* Link points inside the tree being captured, so it was + * fixed. */ inode->i_not_rpfixed = 0; + dest = fixed_dest; ret = do_capture_progress(params, WIMLIB_SCAN_DENTRY_FIXED_SYMLINK, NULL); - if (ret) - return ret; } else { - /* Link points outside of the tree being captured. - * Exclude it. */ - free_dentry(*root_p); - *root_p = NULL; - return do_capture_progress(params, - WIMLIB_SCAN_DENTRY_EXCLUDED_SYMLINK, - NULL); + /* Link points outside the tree being captured, so it + * was not fixed. */ + ret = do_capture_progress(params, + WIMLIB_SCAN_DENTRY_NOT_FIXED_SYMLINK, + NULL); } + if (ret) + return ret; } ret = wim_inode_set_symlink(inode, dest, params->lookup_table); if (ret) @@ -334,10 +334,11 @@ unix_build_dentry_tree_recursive(struct wim_dentry **tree_ret, struct stat stbuf; int stat_flags; - if (should_exclude_path(full_path + params->capture_root_nchars, - full_path_len - params->capture_root_nchars, - params->config)) + ret = try_exclude(full_path, full_path_len, params); + if (ret < 0) /* Excluded? */ goto out_progress; + if (ret > 0) /* Error? */ + goto out; if (params->add_flags & (WIMLIB_ADD_FLAG_DEREFERENCE | WIMLIB_ADD_FLAG_ROOT)) @@ -422,10 +423,8 @@ unix_build_dentry_tree_recursive(struct wim_dentry **tree_ret, ret = unix_scan_directory(tree, full_path, full_path_len, dirfd, relpath, params); } else if (S_ISLNK(stbuf.st_mode)) { - ret = unix_scan_symlink(&tree, full_path, dirfd, relpath, + ret = unix_scan_symlink(full_path, dirfd, relpath, inode, params); - if (!tree) - goto out; } if (ret) @@ -438,10 +437,12 @@ out_progress: else ret = do_capture_progress(params, WIMLIB_SCAN_DENTRY_EXCLUDED, NULL); out: - if (likely(ret == 0)) - *tree_ret = tree; - else + if (unlikely(ret)) { free_dentry_tree(tree, params->lookup_table); + tree = NULL; + ret = report_capture_error(params, ret, full_path); + } + *tree_ret = tree; return ret; }