On 10/9/18 7:10 AM, Davide Caratti wrote: > Similarly to what has been done in 8b4c3cdd9dd8 ("net: sched: Add policy > validation for tc attributes"), add validation for TCA_CHAIN and TCA_KIND > netlink attributes. > > tested with: > # ./tdc.py -c filter > > Fixes: 5bc1701881e39 ("net: sched: introduce multichain support for filters") > Signed-off-by: Davide Caratti <dcara...@redhat.com> > --- > net/sched/cls_api.c | 16 +++++++++++----- > 1 file changed, 11 insertions(+), 5 deletions(-) > > diff --git a/net/sched/cls_api.c b/net/sched/cls_api.c > index 0a75cb2e5e7b..fb1afc0e130d 100644 > --- a/net/sched/cls_api.c > +++ b/net/sched/cls_api.c > @@ -37,6 +37,11 @@ static LIST_HEAD(tcf_proto_base); > /* Protects list of registered TC modules. It is pure SMP lock. */ > static DEFINE_RWLOCK(cls_mod_lock); > > +const struct nla_policy cls_tca_policy[TCA_MAX + 1] = { > + [TCA_KIND] = { .type = NLA_STRING }, > + [TCA_CHAIN] = { .type = NLA_U32 }, > +}; > +
That should be static since it can not be used outside this module. it be nice to have a tc_common module so this stuff does not have to be defined multiple times.