提交 c8965932 编写于 作者: S Susant Sahani 提交者: David S. Miller

ip6_tunnel: fix potential NULL pointer dereference

The function ip6_tnl_validate assumes that the rtnl
attribute IFLA_IPTUN_PROTO always be filled . If this
attribute is not filled by  the userspace application
kernel get crashed with NULL pointer dereference. This
patch fixes the potential kernel crash when
IFLA_IPTUN_PROTO is missing .
Signed-off-by: NSusant Sahani <susant@redhat.com>
Acked-by: NThomas Graf <tgraf@suug.ch>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 1c363900
...@@ -1557,7 +1557,7 @@ static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[]) ...@@ -1557,7 +1557,7 @@ static int ip6_tnl_validate(struct nlattr *tb[], struct nlattr *data[])
{ {
u8 proto; u8 proto;
if (!data) if (!data || !data[IFLA_IPTUN_PROTO])
return 0; return 0;
proto = nla_get_u8(data[IFLA_IPTUN_PROTO]); proto = nla_get_u8(data[IFLA_IPTUN_PROTO]);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册