提交 104d06f0 编写于 作者: L Lino Sanfilippo 提交者: Eric Paris

fsnotify: take groups mark_lock before mark lock

Race-free addition and removal of a mark to a groups mark list would be easier
if we could lock the mark list of group before we lock the specific mark.
This patch changes the order used to add/remove marks to/from mark lists from

1. mark->lock
2. group->mark_lock
3. inode->i_lock

to

1. group->mark_lock
2. mark->lock
3. inode->i_lock
Signed-off-by: NLino Sanfilippo <LinoSanfilippo@gmx.de>
Signed-off-by: NEric Paris <eparis@redhat.com>
上级 23e964c2
...@@ -127,20 +127,27 @@ void fsnotify_destroy_mark(struct fsnotify_mark *mark) ...@@ -127,20 +127,27 @@ void fsnotify_destroy_mark(struct fsnotify_mark *mark)
struct inode *inode = NULL; struct inode *inode = NULL;
spin_lock(&mark->lock); spin_lock(&mark->lock);
/* dont get the group from a mark that is not alive yet */
if (!(mark->flags & FSNOTIFY_MARK_FLAG_ALIVE)) {
spin_unlock(&mark->lock);
return;
}
fsnotify_get_group(mark->group); fsnotify_get_group(mark->group);
group = mark->group; group = mark->group;
spin_unlock(&mark->lock);
spin_lock(&group->mark_lock);
spin_lock(&mark->lock);
/* something else already called this function on this mark */ /* something else already called this function on this mark */
if (!(mark->flags & FSNOTIFY_MARK_FLAG_ALIVE)) { if (!(mark->flags & FSNOTIFY_MARK_FLAG_ALIVE)) {
spin_unlock(&mark->lock); spin_unlock(&mark->lock);
spin_unlock(&group->mark_lock);
goto put_group; goto put_group;
} }
mark->flags &= ~FSNOTIFY_MARK_FLAG_ALIVE; mark->flags &= ~FSNOTIFY_MARK_FLAG_ALIVE;
spin_lock(&group->mark_lock);
if (mark->flags & FSNOTIFY_MARK_FLAG_INODE) { if (mark->flags & FSNOTIFY_MARK_FLAG_INODE) {
inode = mark->i.inode; inode = mark->i.inode;
fsnotify_destroy_inode_mark(mark); fsnotify_destroy_inode_mark(mark);
...@@ -151,8 +158,8 @@ void fsnotify_destroy_mark(struct fsnotify_mark *mark) ...@@ -151,8 +158,8 @@ void fsnotify_destroy_mark(struct fsnotify_mark *mark)
list_del_init(&mark->g_list); list_del_init(&mark->g_list);
spin_unlock(&group->mark_lock);
spin_unlock(&mark->lock); spin_unlock(&mark->lock);
spin_unlock(&group->mark_lock);
spin_lock(&destroy_lock); spin_lock(&destroy_lock);
list_add(&mark->destroy_list, &destroy_list); list_add(&mark->destroy_list, &destroy_list);
...@@ -225,13 +232,13 @@ int fsnotify_add_mark(struct fsnotify_mark *mark, ...@@ -225,13 +232,13 @@ int fsnotify_add_mark(struct fsnotify_mark *mark,
/* /*
* LOCKING ORDER!!!! * LOCKING ORDER!!!!
* mark->lock
* group->mark_lock * group->mark_lock
* mark->lock
* inode->i_lock * inode->i_lock
*/ */
spin_lock(&mark->lock);
spin_lock(&group->mark_lock); spin_lock(&group->mark_lock);
spin_lock(&mark->lock);
mark->flags |= FSNOTIFY_MARK_FLAG_ALIVE; mark->flags |= FSNOTIFY_MARK_FLAG_ALIVE;
fsnotify_get_group(group); fsnotify_get_group(group);
...@@ -252,13 +259,12 @@ int fsnotify_add_mark(struct fsnotify_mark *mark, ...@@ -252,13 +259,12 @@ int fsnotify_add_mark(struct fsnotify_mark *mark,
BUG(); BUG();
} }
spin_unlock(&group->mark_lock);
/* this will pin the object if appropriate */ /* this will pin the object if appropriate */
fsnotify_set_mark_mask_locked(mark, mark->mask); fsnotify_set_mark_mask_locked(mark, mark->mask);
spin_unlock(&mark->lock); spin_unlock(&mark->lock);
spin_unlock(&group->mark_lock);
if (inode) if (inode)
__fsnotify_update_child_dentry_flags(inode); __fsnotify_update_child_dentry_flags(inode);
...@@ -270,8 +276,8 @@ int fsnotify_add_mark(struct fsnotify_mark *mark, ...@@ -270,8 +276,8 @@ int fsnotify_add_mark(struct fsnotify_mark *mark,
mark->group = NULL; mark->group = NULL;
atomic_dec(&group->num_marks); atomic_dec(&group->num_marks);
spin_unlock(&group->mark_lock);
spin_unlock(&mark->lock); spin_unlock(&mark->lock);
spin_unlock(&group->mark_lock);
spin_lock(&destroy_lock); spin_lock(&destroy_lock);
list_add(&mark->destroy_list, &destroy_list); list_add(&mark->destroy_list, &destroy_list);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册