]> git.baikalelectronics.ru Git - kernel.git/commit
cls_flower: call nla_ok() before nla_next()
authorCong Wang <cong.wang@bytedance.com>
Fri, 15 Jan 2021 18:50:24 +0000 (10:50 -0800)
committerJakub Kicinski <kuba@kernel.org>
Fri, 15 Jan 2021 23:48:53 +0000 (15:48 -0800)
commit5c0a0ff1c35abb6ac1b35173354186ba6e3e26b1
tree33cee1a4b529d142551ac9a95ef517c3882df21f
parent5e57b9196ee362c7e0c11f986a85389f54ca2f57
cls_flower: call nla_ok() before nla_next()

fl_set_enc_opt() simply checks if there are still bytes left to parse,
but this is not sufficent as syzbot seems to be able to generate
malformatted netlink messages. nla_ok() is more strict so should be
used to validate the next nlattr here.

And nla_validate_nested_deprecated() has less strict check too, it is
probably too late to switch to the strict version, but we can just
call nla_ok() too after it.

Reported-and-tested-by: syzbot+2624e3778b18fc497c92@syzkaller.appspotmail.com
Fixes: 21fc99f378e0 ("net/sched: allow flower to match tunnel options")
Fixes: 4af528bb493a ("net: sched: allow flower to match erspan options")
Cc: Jamal Hadi Salim <jhs@mojatatu.com>
Cc: Xin Long <lucien.xin@gmail.com>
Cc: Jiri Pirko <jiri@resnulli.us>
Signed-off-by: Cong Wang <cong.wang@bytedance.com>
Link: https://lore.kernel.org/r/20210115185024.72298-1-xiyou.wangcong@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
net/sched/cls_flower.c