Re: [PATCH 10/11] VFS: take a shared lock for create/remove directory operations.

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Mon, 23 Dec 2024, Al Viro wrote:
> On Fri, Dec 20, 2024 at 01:54:28PM +1100, NeilBrown wrote:
> 
> > Once the exclusive "update" lock is obtained on the dentry we must make
> > sure it wasn't unlinked or renamed while we slept.  If it was we repeat
> > the lookup.
> 
> > +		if (
> > +			/* Was unlinked while we waited ?*/
> > +			d_unhashed(dentry) ||
> > +			/* Or was dentry renamed ?? */
> > +			dentry->d_parent != base ||
> > +			dentry->d_name.hash != last->hash ||
> > +			!d_same_name(dentry, base, last)
> > +		) {
> > +			rcu_read_unlock();
> > +			spin_unlock(&dentry->d_lock);
> > +			lock_map_release(&dentry->d_update_map);
> > +			dput(dentry);
> > +			goto retry;
> > +		}
> > +		rcu_read_unlock();
> > +	}
> > +	dentry->d_flags |= DCACHE_PAR_UPDATE;
> > +	spin_unlock(&dentry->d_lock);
> 
> ... and now __d_unalias() moves it to new place, making all the checks
> you've just done completely useless.
> 

... Yes, thanks.

So I need __d_unalias() to effectively do a "try_lock" of
DCACHE_PAR_UPDATE and hold the lock across __d_move().
I think that would address the concerned you raised.

Did you see anything else that might be problematic?

Thanks,
NeilBrown






[Index of Archives]     [Linux Ext4 Filesystem]     [Union Filesystem]     [Filesystem Testing]     [Ceph Users]     [Ecryptfs]     [NTFS 3]     [AutoFS]     [Kernel Newbies]     [Share Photos]     [Security]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux Cachefs]     [Reiser Filesystem]     [Linux RAID]     [NTFS 3]     [Samba]     [Device Mapper]     [CEPH Development]

  Powered by Linux