Re: [RFC][PATCH 1/3] vfs: Keep a list of mounts on a mount point

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

 



Miklos Szeredi <miklos@xxxxxxxxxx> writes:

>> @@ -691,6 +693,7 @@ static void detach_mnt(struct mount *mnt, struct path *old_path)
>>  	list_del_init(&mnt->mnt_hash);
>>  	put_mountpoint(mnt->mnt_mp);
>>  	mnt->mnt_mp = NULL;
>> +	list_del_init(&mnt->mnt_mp_list);
>
> Should be done *before* put_mountpoint(), for obvious reasons.
>
> And a BUG_ON(!list_empty(&mp->m_list)) in put_mountpoint() for good measure (and
> no, WARN_ON() is not better here, since use-after-free is definitely worse than
> a BUG).

Good point.  I will take a look at making this change shortly and repost
the patches.


>>  }
>>  
>>  /*
>> @@ -705,6 +708,7 @@ void mnt_set_mountpoint(struct mount *mnt,
>>  	child_mnt->mnt_mountpoint = dget(mp->m_dentry);
>>  	child_mnt->mnt_parent = mnt;
>>  	child_mnt->mnt_mp = mp;
>> +	list_add_tail(&child_mnt->mnt_mp_list, &mp->m_list);
>>  }
>>  
>>  /*
>> @@ -1193,6 +1197,7 @@ void umount_tree(struct mount *mnt, int propagate)
>>  			p->mnt_parent->mnt_ghosts++;
>>  			put_mountpoint(p->mnt_mp);
>>  			p->mnt_mp = NULL;
>> +			list_del_init(&mnt->mnt_mp_list);
>
> Ditto.
>
>>  		}
>>  		change_mnt_propagation(p, MS_PRIVATE);
>>  	}
>> -- 
>> 1.7.5.4
>> 
--
To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




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