]> Cypherpunks repositories - gostls13.git/commit
net: only perform IPv4 map check for AF_INET6 sockets
authorJosh Rickmar <jrick@companyzero.com>
Thu, 25 Mar 2021 14:37:48 +0000 (14:37 +0000)
committerIan Lance Taylor <iant@golang.org>
Thu, 25 Mar 2021 19:55:42 +0000 (19:55 +0000)
commit7ce361737fad30a78e47f2d12bd797efcc056b1c
tree892f552f5f5c06f5c76e3874fdc812059e52abef
parent569c86d23b829726db1030d75dd49008c22a0ffd
net: only perform IPv4 map check for AF_INET6 sockets

This change avoids executing syscalls testing if IPv4 address mapping
is possible unless the socket being opened belongs to the AF_INET6
family.

In a pledged OpenBSD process, this test is only allowed when the
"inet" pledge is granted; however this check was also being performed
for AF_UNIX sockets (separately permitted under the "unix" pledge),
and would cause the process to be killed by the kernel.  By avoiding
the IPv4 address mapping check until the socket is checked to be
AF_INET6, a pledged OpenBSD process using AF_UNIX sockets without the
"inet" pledge won't be killed for this misbehavior.

The OpenBSD kernel is not currently ready to support using UNIX domain
sockets with only the "unix" pledge (and without "inet"), but this is
one change necessary to support this.

Change-Id: If6962a7ad999b71bcfc9fd8e10d9c4067fa3f338
GitHub-Last-Rev: 3c5541b334fad54606a3d14dfe1b63b28b33a0d1
GitHub-Pull-Request: golang/go#45155
Reviewed-on: https://go-review.googlesource.com/c/go/+/303276
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
Reviewed-by: Aaron Bieber <deftly@gmail.com>
Trust: Ian Lance Taylor <iant@golang.org>
src/net/sockopt_bsd.go