Page MenuHomeFreeBSD

cp: fix some cases with infinite recursion
ClosedPublic

Authored by kevans on Jan 19 2022, 5:06 AM.
Tags
None
Referenced Files
F151174811: D33944.id101632.diff
Mon, Apr 6, 2:39 PM
Unknown Object (File)
Mon, Apr 6, 1:54 AM
Unknown Object (File)
Sun, Apr 5, 6:20 AM
Unknown Object (File)
Wed, Apr 1, 6:46 PM
Unknown Object (File)
Wed, Apr 1, 1:30 AM
Unknown Object (File)
Wed, Mar 25, 8:02 AM
Unknown Object (File)
Sun, Mar 22, 7:30 AM
Unknown Object (File)
Sat, Mar 21, 10:15 AM
Subscribers

Details

Summary

As noted in the PR, cp -R has some surprising behavior. Typically, when
you cp -R foo bar where both foo and bar exist, foo is cleanly copied
to foo/bar. When you cp -R foo foo (where foo clearly exists), cp(1)
goes a little off the rails as it creates foo/foo, then discovers that
and creates foo/foo/foo, so on and so forth, until it eventually fails.

POSIX doesn't seem to disallow this behavior, but it isn't very useful.
GNU cp(1) will detect the recursion and squash it, but emit a message in
the process that it has done so.

This change seemingly follows the GNU behavior, but it currently doesn't
warn about the situation -- the author feels that the final product is
about what one might expect from doing this and thus, doesn't need a
warning. The author doesn't feel strongly about this.

PR: 235438

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable