]> git.baikalelectronics.ru Git - kernel.git/commit
net: sched: don't use tc_action->order during action dump
authorVlad Buslov <vladbu@mellanox.com>
Thu, 23 May 2019 06:32:31 +0000 (09:32 +0300)
committerDavid S. Miller <davem@davemloft.net>
Fri, 24 May 2019 20:27:52 +0000 (13:27 -0700)
commit121c2feae4129823aec6fd090065964f367a495a
treeef1c2f78f301bc874193fae3b17cea81bfb0c882
parentdb3da6c51dc84bad896443be6b7afff43ee2597a
net: sched: don't use tc_action->order during action dump

Function tcf_action_dump() relies on tc_action->order field when starting
nested nla to send action data to userspace. This approach breaks in
several cases:

- When multiple filters point to same shared action, tc_action->order field
  is overwritten each time it is attached to filter. This causes filter
  dump to output action with incorrect attribute for all filters that have
  the action in different position (different order) from the last set
  tc_action->order value.

- When action data is displayed using tc action API (RTM_GETACTION), action
  order is overwritten by tca_action_gd() according to its position in
  resulting array of nl attributes, which will break filter dump for all
  filters attached to that shared action that expect it to have different
  order value.

Don't rely on tc_action->order when dumping actions. Set nla according to
action position in resulting array of actions instead.

Signed-off-by: Vlad Buslov <vladbu@mellanox.com>
Acked-by: Jamal Hadi Salim <jhs@mojatatu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/sched/act_api.c