diff options
author | jilles <jilles@FreeBSD.org> | 2013-08-02 14:14:23 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2013-08-02 14:14:23 +0000 |
commit | 713e53c6b93f362bd026ade64f87d8fc3b0e70a0 (patch) | |
tree | f1d1b1c80bcd2cc9448bebfd654a13bad4a76f6c /UPDATING | |
parent | 7eacd3a0af787b4bf4f765697081bcd408881d12 (diff) | |
download | FreeBSD-src-713e53c6b93f362bd026ade64f87d8fc3b0e70a0.zip FreeBSD-src-713e53c6b93f362bd026ade64f87d8fc3b0e70a0.tar.gz |
find: Allow -delete to delete files given as arguments.
Formerly, a command like find dir1/dir2 -delete would delete everything
under dir1/dir2 but not dir1/dir2 itself.
When -L is not specified and "." can be opened, the fts(3) code underlying
find(1) is careful to avoid following symlinks or being dropped in different
locations by moving the directory fts is currently traversing. If a
problematic concurrent modification is detected, fts will not enter the
directory or abort. Files found in the search are returned via the current
working directory and a pathname not containing a slash.
For paranoia, find(1) verifies this when -delete is used. However, it is too
paranoid about the root of the traversal. It is already assumed that the
initial pathname does not refer to directories or symlinks that might be
replaced by untrusted users; otherwise, the whole traversal would be unsafe.
Therefore, it is not necessary to do the check for fts_level ==
FTS_ROOTLEVEL.
Deleting the pathnames given as arguments can be prevented without error
messages using -mindepth 1 or by changing directory and passing "." as
argument to find. This works in the old as well as the new version of find.
Tested by: Kurt Lidl
Reviewed by: jhb
Diffstat (limited to 'UPDATING')
-rw-r--r-- | UPDATING | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -31,6 +31,19 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10.x IS SLOW: disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20130802: + find -delete can now delete the pathnames given as arguments, + instead of only files found below them or if the pathname did + not contain any slashes. Formerly, the following error message + would result: + + find: -delete: <path>: relative path potentially not safe + + Deleting the pathnames given as arguments can be prevented + without error messages using -mindepth 1 or by changing + directory and passing "." as argument to find. This works in the + old as well as the new version of find. + 20130726: Behavior of devfs rules path matching has been changed. Pattern is now always matched against fully qualified devfs |