1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-25 18:19:00 +02:00

Fix a bug whereby a user with write access to a directory being removed

could cause the removal of that directory to fail with an erroneous
diagnostic about a directory cycle.  Reported by Vineet Chadha.

(AD_pop_and_chdir): If the directory we're about to
leave (and try to rmdir) is the one whose dev_ino is being used to
detect a cycle, reset cycle_check_state.dev_ino to that of the parent.
This commit is contained in:
Jim Meyering
2006-03-10 21:47:34 +00:00
parent 6754d7a74f
commit 76d20d82dd
+13 -1
View File
@@ -391,7 +391,9 @@ ds_free (Dirstack_state *ds)
static void
AD_pop_and_chdir (DIR **dirp, Dirstack_state *ds, char **prev_dir)
{
enum RM_status old_status = AD_stack_top(ds)->status;
struct AD_ent *leaf_dir_ent = AD_stack_top(ds);
struct dev_ino leaf_dev_ino = leaf_dir_ent->dev_ino;
enum RM_status old_status = leaf_dir_ent->status;
struct AD_ent *top;
/* Get the name of the current (but soon to be `previous') directory
@@ -402,6 +404,16 @@ AD_pop_and_chdir (DIR **dirp, Dirstack_state *ds, char **prev_dir)
pop_dir (ds);
top = AD_stack_top (ds);
/* If the directory we're about to leave (and try to rmdir)
is the one whose dev_ino is being used to detect a cycle,
reset cycle_check_state.dev_ino to that of the parent.
Otherwise, once that directory is removed, its dev_ino
could be reused in the creation (by some other process)
of a directory that this rm process would encounter,
which would result in a false-positive cycle indication. */
if (SAME_INODE (ds->cycle_check_state.dev_ino, leaf_dev_ino))
ds->cycle_check_state.dev_ino = top->dev_ino;
/* Propagate any failure to parent. */
UPDATE_STATUS (top->status, old_status);