summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorCong Wang <xiyou.wangcong@gmail.com>2019-07-22 21:43:00 -0700
committerDavid S. Miller <davem@davemloft.net>2019-07-25 11:21:39 -0700
commitc8ec4632c6ac9cda0e8c3d51aa41eeab66585bd5 (patch)
treec74a1286f66589e6e7b5fe0c82982b91cdf47bc8 /net
parent4638faac032756f7eab5524be7be56bee77e426b (diff)
downloadlinux-0-day-c8ec4632c6ac9cda0e8c3d51aa41eeab66585bd5.tar.gz
linux-0-day-c8ec4632c6ac9cda0e8c3d51aa41eeab66585bd5.tar.xz
ife: error out when nla attributes are empty
act_ife at least requires TCA_IFE_PARMS, so we have to bail out when there is no attribute passed in. Reported-by: syzbot+fbb5b288c9cb6a2eeac4@syzkaller.appspotmail.com Fixes: ef6980b6becb ("introduce IFE action") Cc: Jamal Hadi Salim <jhs@mojatatu.com> Cc: Jiri Pirko <jiri@resnulli.us> Signed-off-by: Cong Wang <xiyou.wangcong@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/sched/act_ife.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/net/sched/act_ife.c b/net/sched/act_ife.c
index 41d5398dd2f2e..3578196d1600e 100644
--- a/net/sched/act_ife.c
+++ b/net/sched/act_ife.c
@@ -481,6 +481,11 @@ static int tcf_ife_init(struct net *net, struct nlattr *nla,
int ret = 0;
int err;
+ if (!nla) {
+ NL_SET_ERR_MSG_MOD(extack, "IFE requires attributes to be passed");
+ return -EINVAL;
+ }
+
err = nla_parse_nested_deprecated(tb, TCA_IFE_MAX, nla, ife_policy,
NULL);
if (err < 0)