mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-14 15:54:15 +08:00
[NET_SCHED]: cls_flow: fix key mask validity check
Since we're using fls(), we need to check whether the value is non-zero first. Signed-off-by: Patrick McHardy <kaber@trash.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0ea9d70df8
commit
4f25049106
@ -402,12 +402,13 @@ static int flow_change(struct tcf_proto *tp, unsigned long base,
|
||||
|
||||
if (tb[TCA_FLOW_KEYS]) {
|
||||
keymask = nla_get_u32(tb[TCA_FLOW_KEYS]);
|
||||
if (fls(keymask) - 1 > FLOW_KEY_MAX)
|
||||
return -EOPNOTSUPP;
|
||||
|
||||
nkeys = hweight32(keymask);
|
||||
if (nkeys == 0)
|
||||
return -EINVAL;
|
||||
|
||||
if (fls(keymask) - 1 > FLOW_KEY_MAX)
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
|
||||
err = tcf_exts_validate(tp, tb, tca[TCA_RATE], &e, &flow_ext_map);
|
||||
|
Loading…
Reference in New Issue
Block a user