Skip to content

Commit 2e68039

Browse files
committed
Merge tag 'tracefs-v7.1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace
Pull tracefs fixes from Steven Rostedt: - Use list_add_tail_rcu() for walking eventfs children The linked list of children is protected by SRCU and list walkers can walk the list with only using SRCU. Using just list_add_tail() on weakly ordered architectures can cause issues. Instead use list_add_tail_rcu(). - Hold eventfs_mutex and SRCU for remount walk events The trace_apply_options() walks the tracefs_inodes where some are eventfs inodes and eventfs_remount() is called which in turn calls eventfs_set_attr(). This walk only holds normal RCU read locks, but the eventfs_mutex and SRCU should be held. Add a eventfs_remount_(un)lock() helpers to take the necessary locks before iterating the list. * tag 'tracefs-v7.1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace: eventfs: Hold eventfs_mutex and SRCU when remount walks events eventfs: Use list_add_tail_rcu() for SRCU-protected children list
2 parents 66a7974 + 07004a8 commit 2e68039

3 files changed

Lines changed: 22 additions & 2 deletions

File tree

fs/tracefs/event_inode.c

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,8 @@ static void eventfs_set_attrs(struct eventfs_inode *ei, bool update_uid, kuid_t
244244
{
245245
struct eventfs_inode *ei_child;
246246

247+
lockdep_assert_held(&eventfs_mutex);
248+
247249
/* Update events/<system>/<event> */
248250
if (WARN_ON_ONCE(level > 3))
249251
return;
@@ -706,7 +708,7 @@ struct eventfs_inode *eventfs_create_dir(const char *name, struct eventfs_inode
706708

707709
scoped_guard(mutex, &eventfs_mutex) {
708710
if (!parent->is_freed)
709-
list_add_tail(&ei->list, &parent->children);
711+
list_add_tail_rcu(&ei->list, &parent->children);
710712
}
711713
/* Was the parent freed? */
712714
if (list_empty(&ei->list)) {
@@ -886,3 +888,15 @@ void eventfs_remove_events_dir(struct eventfs_inode *ei)
886888
d_invalidate(dentry);
887889
d_make_discardable(dentry);
888890
}
891+
892+
int eventfs_remount_lock(void)
893+
{
894+
mutex_lock(&eventfs_mutex);
895+
return srcu_read_lock(&eventfs_srcu);
896+
}
897+
898+
void eventfs_remount_unlock(int srcu_idx)
899+
{
900+
srcu_read_unlock(&eventfs_srcu, srcu_idx);
901+
mutex_unlock(&eventfs_mutex);
902+
}

fs/tracefs/inode.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,7 @@ static int tracefs_apply_options(struct super_block *sb, bool remount)
313313
struct inode *inode = d_inode(sb->s_root);
314314
struct tracefs_inode *ti;
315315
bool update_uid, update_gid;
316+
int srcu_idx;
316317
umode_t tmp_mode;
317318

318319
/*
@@ -337,6 +338,7 @@ static int tracefs_apply_options(struct super_block *sb, bool remount)
337338
update_uid = fsi->opts & BIT(Opt_uid);
338339
update_gid = fsi->opts & BIT(Opt_gid);
339340

341+
srcu_idx = eventfs_remount_lock();
340342
rcu_read_lock();
341343
list_for_each_entry_rcu(ti, &tracefs_inodes, list) {
342344
if (update_uid) {
@@ -358,6 +360,7 @@ static int tracefs_apply_options(struct super_block *sb, bool remount)
358360
eventfs_remount(ti, update_uid, update_gid);
359361
}
360362
rcu_read_unlock();
363+
eventfs_remount_unlock(srcu_idx);
361364
}
362365

363366
return 0;
@@ -403,7 +406,7 @@ static int tracefs_drop_inode(struct inode *inode)
403406
* This inode is being freed and cannot be used for
404407
* eventfs. Clear the flag so that it doesn't call into
405408
* eventfs during the remount flag updates. The eventfs_inode
406-
* gets freed after an RCU cycle, so the content will still
409+
* gets freed after an SRCU cycle, so the content will still
407410
* be safe if the iteration is going on now.
408411
*/
409412
ti->flags &= ~TRACEFS_EVENT_INODE;

fs/tracefs/internal.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,7 @@ struct inode *tracefs_get_inode(struct super_block *sb);
7676
void eventfs_remount(struct tracefs_inode *ti, bool update_uid, bool update_gid);
7777
void eventfs_d_release(struct dentry *dentry);
7878

79+
int eventfs_remount_lock(void);
80+
void eventfs_remount_unlock(int srcu_idx);
81+
7982
#endif /* _TRACEFS_INTERNAL_H */

0 commit comments

Comments
 (0)