diff options
| author | ChenXiaoSong <chenxiaosong2@huawei.com> | 2022-02-15 10:10:30 +0300 | 
|---|---|---|
| committer | Christoph Hellwig <hch@lst.de> | 2022-02-22 20:30:28 +0300 | 
| commit | 84ec758fb2daa236026506868c8796b0500c047d (patch) | |
| tree | ce8ffacc756674199e92e4c9b07a200e715fb801 /scripts/gcc-plugins/sancov_plugin.c | |
| parent | 038101e6b2cd5c55f888f85db42ea2ad3aecb4b6 (diff) | |
| download | linux-84ec758fb2daa236026506868c8796b0500c047d.tar.xz | |
configfs: fix a race in configfs_{,un}register_subsystem()
When configfs_register_subsystem() or configfs_unregister_subsystem()
is executing link_group() or unlink_group(),
it is possible that two processes add or delete list concurrently.
Some unfortunate interleavings of them can cause kernel panic.
One of cases is:
A --> B --> C --> D
A <-- B <-- C <-- D
     delete list_head *B        |      delete list_head *C
--------------------------------|-----------------------------------
configfs_unregister_subsystem   |   configfs_unregister_subsystem
  unlink_group                  |     unlink_group
    unlink_obj                  |       unlink_obj
      list_del_init             |         list_del_init
        __list_del_entry        |           __list_del_entry
          __list_del            |             __list_del
            // next == C        |
            next->prev = prev   |
                                |               next->prev = prev
            prev->next = next   |
                                |                 // prev == B
                                |                 prev->next = next
Fix this by adding mutex when calling link_group() or unlink_group(),
but parent configfs_subsystem is NULL when config_item is root.
So I create a mutex configfs_subsystem_mutex.
Fixes: 7063fbf22611 ("[PATCH] configfs: User-driven configuration filesystem")
Signed-off-by: ChenXiaoSong <chenxiaosong2@huawei.com>
Signed-off-by: Laibin Qiu <qiulaibin@huawei.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Diffstat (limited to 'scripts/gcc-plugins/sancov_plugin.c')
0 files changed, 0 insertions, 0 deletions
