提交 be48220e 编写于 作者: D David Ahern 提交者: David S. Miller

mpls: Return error for RTA_GATEWAY attribute

MPLS does not support nexthops with an MPLS address family.
Specifically, it does not handle RTA_GATEWAY attribute. Make it
clear by returning an error.

Fixes: 03c05665 ("mpls: Netlink commands to add, remove, and dump routes")
Signed-off-by: NDavid Ahern <dsahern@gmail.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 e3818541
...@@ -1838,6 +1838,9 @@ static int rtm_to_route_config(struct sk_buff *skb, ...@@ -1838,6 +1838,9 @@ static int rtm_to_route_config(struct sk_buff *skb,
goto errout; goto errout;
break; break;
} }
case RTA_GATEWAY:
NL_SET_ERR_MSG(extack, "MPLS does not support RTA_GATEWAY attribute");
goto errout;
case RTA_VIA: case RTA_VIA:
{ {
if (nla_get_via(nla, &cfg->rc_via_alen, if (nla_get_via(nla, &cfg->rc_via_alen,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册