diff options
author | Liping Zhang <zlpnobody@gmail.com> | 2017-02-27 07:59:39 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-03-01 13:25:56 -0500 |
commit | 3b45a4106f146c336cbcaccb9d8d0fa0e5c3dc1d (patch) | |
tree | 6cc6357c067cae23b7dfc81d8fc755bdf33a4b3c /net/ipv6 | |
parent | 8c171d6ca56c6891372a97af26b58b2cfad7fd9a (diff) |
net: route: add missing nla_policy entry for RTA_MARK attribute
This will add stricter validating for RTA_MARK attribute.
Signed-off-by: Liping Zhang <zlpnobody@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/route.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index f54f4265b37f..d94f1dfa54c8 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c | |||
@@ -2891,6 +2891,7 @@ static const struct nla_policy rtm_ipv6_policy[RTA_MAX+1] = { | |||
2891 | [RTA_ENCAP] = { .type = NLA_NESTED }, | 2891 | [RTA_ENCAP] = { .type = NLA_NESTED }, |
2892 | [RTA_EXPIRES] = { .type = NLA_U32 }, | 2892 | [RTA_EXPIRES] = { .type = NLA_U32 }, |
2893 | [RTA_UID] = { .type = NLA_U32 }, | 2893 | [RTA_UID] = { .type = NLA_U32 }, |
2894 | [RTA_MARK] = { .type = NLA_U32 }, | ||
2894 | }; | 2895 | }; |
2895 | 2896 | ||
2896 | static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh, | 2897 | static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh, |