Improve input validation for the socket option IPV6_CHECKSUM.
When using the IPPROTO_IPV6 level socket option IPV6_CHECKSUM on a raw IPv6 socket, ensure that the value is either -1 or a non-negative even number. Reviewed by: bz@, thj@ MFC after: 1 week Sponsored by: Netflix, Inc. Differential Revision: https://reviews.freebsd.org/D19966
This commit is contained in:
parent
7c2587754a
commit
3e538ee797
@ -2221,8 +2221,11 @@ ip6_raw_ctloutput(struct socket *so, struct sockopt *sopt)
|
||||
sizeof(optval));
|
||||
if (error)
|
||||
break;
|
||||
if ((optval % 2) != 0) {
|
||||
/* the API assumes even offset values */
|
||||
if (optval < -1 || (optval % 2) != 0) {
|
||||
/*
|
||||
* The API assumes non-negative even offset
|
||||
* values or -1 as a special value.
|
||||
*/
|
||||
error = EINVAL;
|
||||
} else if (so->so_proto->pr_protocol ==
|
||||
IPPROTO_ICMPV6) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user