Bug #235
closedmeta: Missing list checks for *list_add*
100%
Description
Simon debugged the refcnt problem and submitted some patches to fix them. I had a brief look and noticed that there are possible more problems similar to the *list_del*
ones - just with *list_add*
. Basically some functions use some kind of get function, notice that the element does not exist and then create a new one to add to the list. Only the "list_add
" is protected. The result may be that an element in twice in a list when only a single occurrence is allowed.
The problem I saw is that functions adding objects in an RCU protected list are missing an definitive check. They first call some kind of *_get
(rcu_read_lock
only) to check if an object with this value already exists and then uses some kind of *_add
to allocate a new object and add it (which may already be added in by a different context). So it has to be made sure that nothing modifies the list between the check and the add of the new object).
There are two common strategies (they are more):
- Fast *_get-check and on failure do locking
- do a fast check with only rcu_read_lock
- return object when found and reference could be increased
- otherwise continue in function
- get spinlock for list
- do the same _get check (but this time with the spinlock)
- return object when found and reference could be increased (unlock spinlock)
- otherwise continue in function
- allocate/initialize new object
- add it to the list
- return newly allocated object (unlock spinlock)
- do a fast check with only rcu_read_lock
- Fast *_get-check and on failure do allocating and check afterwards with locking
- do a fast check with only rcu_read_lock
- return object when found and reference could be increased
- otherwise continue in function
- allocate/initialize new object
- get spinlock for list
- do the same _get check (but this time with the spinlock)
- return object when found and reference could be increased (unlock spinlock); deallocate newly allocated object
- otherwise continue in function
- add it to the list
- return newly allocated object (unlock spinlock)
- do a fast check with only rcu_read_lock
batman-adv already uses both strategies in the code
Just for illustration what I meant with nothing modifies the list between the check and the add of the new object
Updated by Sven Eckelmann almost 8 years ago
- Subject changed from Missing list checks for *list_add* to meta: Missing list checks for *list_add*
Updated by Sven Eckelmann almost 8 years ago
- Assignee changed from Marek Lindner to batman-adv developers
Updated by Sven Eckelmann over 6 years ago
- Status changed from New to In Progress
Updated by Sven Eckelmann about 6 years ago
- Status changed from In Progress to Resolved
- Target version set to 2018.3
Queued up for 2018.3
Updated by Sven Eckelmann about 6 years ago
- Status changed from Resolved to Closed