-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cp: copy attributes after making subdir #6884
Open
rm-dr
wants to merge
2
commits into
uutils:main
Choose a base branch
from
rm-dr:6875-cp-a
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3364,6 +3364,38 @@ fn test_copy_dir_preserve_permissions() { | |
assert_metadata_eq!(metadata1, metadata2); | ||
} | ||
|
||
/// cp should preserve most permissions of subdirectories when recursively copying a directory, | ||
/// with exceptions detailed in [`test_dir_perm_race_with_preserve_mode_and_ownership`]. | ||
#[cfg(all(not(windows), not(target_os = "freebsd"), not(target_os = "openbsd")))] | ||
#[test] | ||
fn test_copy_dir_preserve_subdir_permissions() { | ||
let (at, mut ucmd) = at_and_ucmd!(); | ||
at.mkdir("a1"); | ||
at.mkdir("a1/a2"); | ||
// Use different permissions for a better test | ||
at.set_mode("a1/a2", 0o0555); | ||
at.set_mode("a1", 0o0777); | ||
|
||
// Copy the directory, preserving those permissions. | ||
// | ||
// preserve permissions (mode, ownership, timestamps) | ||
// | copy directories recursively | ||
// | | from this source directory | ||
// | | | to this destination | ||
// | | | | | ||
// V V V V | ||
Comment on lines
+3379
to
+3386
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think we need this comment :) |
||
ucmd.args(&["-p", "-r", "a1", "b1"]) | ||
.succeeds() | ||
.no_stderr() | ||
.no_stdout(); | ||
|
||
// Make sure everything is preserved | ||
assert!(at.dir_exists("b1")); | ||
assert!(at.dir_exists("b1/a2")); | ||
assert_metadata_eq!(at.metadata("a1"), at.metadata("b1")); | ||
assert_metadata_eq!(at.metadata("a1/a2"), at.metadata("b1/a2")); | ||
} | ||
|
||
/// Test for preserving permissions when copying a directory, even in | ||
/// the face of an inaccessible file in that directory. | ||
#[cfg(all(not(windows), not(target_os = "freebsd"), not(target_os = "openbsd")))] | ||
|
@@ -5615,7 +5647,7 @@ mod link_deref { | |
// which could be problematic if we aim to preserve ownership or mode. For example, when | ||
// copying a directory, the destination directory could temporarily be setgid on some filesystems. | ||
// This temporary setgid status could grant access to other users who share the same group | ||
// ownership as the newly created directory.To mitigate this issue, when creating a directory we | ||
// ownership as the newly created directory. To mitigate this issue, when creating a directory we | ||
// disable these excessive permissions. | ||
#[test] | ||
#[cfg(unix)] | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why changing the order?