Merge branch 'net-sched-fix-NULL-dereference-in-goto-chain-control-action'
authorDavid S. Miller <davem@davemloft.net>
Sat, 7 Jul 2018 13:01:09 +0000 (22:01 +0900)
committerDavid S. Miller <davem@davemloft.net>
Sat, 7 Jul 2018 13:01:09 +0000 (22:01 +0900)
commitde508f8b5a1eb965c63ac6741acb19b703005cb6
tree551ed13178e7e3c880085dc904b56ea33425b00d
parent404cd086f29e867fc99f1174e8f3246a4ea14b7b
parent38230a3e0e0933bbcf5df6fa469ba0667f667568
Merge branch 'net-sched-fix-NULL-dereference-in-goto-chain-control-action'

Davide Caratti says:

====================
net/sched: fix NULL dereference in 'goto chain' control action

in a couple of TC actions (i.e. csum and tunnel_key), the control action
is stored together with the action-specific configuration data.
This avoids a race condition (see [1]), but it causes a crash when 'goto
chain' is used with the above actions. Since this race condition is
tolerated on the other TC actions (it's present even on actions where the
spinlock is still used), storing the control action in the common area
should be acceptable for tunnel_key and csum as well.

[1] https://www.spinics.net/lists/netdev/msg472047.html
====================

Signed-off-by: David S. Miller <davem@davemloft.net>