Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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: [email protected] Fixes: 0a6e777 ("net/sched: allow flower to match tunnel options") Fixes: 79b1011 ("net: sched: allow flower to match erspan options") Cc: Jamal Hadi Salim <[email protected]> Cc: Xin Long <[email protected]> Cc: Jiri Pirko <[email protected]> Signed-off-by: Cong Wang <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
- Loading branch information