Commit e8766fc8 authored by Shan Wei's avatar Shan Wei Committed by YOSHIFUJI Hideaki

ipv6: Check the hop limit setting in ancillary data.

When specifing the outgoing hop limit as ancillary data for sendmsg(),
the kernel doesn't check the integer hop limit value as specified in
[RFC-3542] section 6.3.
Signed-off-by: default avatarShan Wei <shanwei@cn.fujitsu.com>
Signed-off-by: default avatarYOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
parent 36e3deae
...@@ -705,6 +705,11 @@ int datagram_send_ctl(struct net *net, ...@@ -705,6 +705,11 @@ int datagram_send_ctl(struct net *net,
} }
*hlimit = *(int *)CMSG_DATA(cmsg); *hlimit = *(int *)CMSG_DATA(cmsg);
if (*hlimit < -1 || *hlimit > 0xff) {
err = -EINVAL;
goto exit_f;
}
break; break;
case IPV6_TCLASS: case IPV6_TCLASS:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment