]> git.baikalelectronics.ru Git - kernel.git/commit
ipv4: Fix use-after-free when flushing FIB tables
authorIdo Schimmel <idosch@mellanox.com>
Wed, 20 Dec 2017 17:34:19 +0000 (19:34 +0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 20 Dec 2017 20:12:39 +0000 (15:12 -0500)
commita60f4df6d426c1cc79f07521ca69b7ba2427651e
tree2d10e2f4421317dd06c77ffe24d0cfd12b0dec87
parentb9355a164edbf2f6012d5f3f6e42465db4e663f6
ipv4: Fix use-after-free when flushing FIB tables

Since commit ddc9dad4121c ("ipv4: FIB Local/MAIN table collapse") the
local table uses the same trie allocated for the main table when custom
rules are not in use.

When a net namespace is dismantled, the main table is flushed and freed
(via an RCU callback) before the local table. In case the callback is
invoked before the local table is iterated, a use-after-free can occur.

Fix this by iterating over the FIB tables in reverse order, so that the
main table is always freed after the local table.

v3: Reworded comment according to Alex's suggestion.
v2: Add a comment to make the fix more explicit per Dave's and Alex's
feedback.

Fixes: ddc9dad4121c ("ipv4: FIB Local/MAIN table collapse")
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Acked-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/fib_frontend.c