summaryrefslogtreecommitdiffstats
path: root/conn
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2021-05-20 18:09:55 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2021-05-20 18:09:55 +0200
commitbd83f0ac993bc5bee0b0f96c74d24cab142ba385 (patch)
tree07e339d5d06b4e688ad3d0256ecf49b944a9e76e /conn
parentrwcancel: use ordinary os.ErrClosed instead of custom error (diff)
downloadwireguard-go-bd83f0ac993bc5bee0b0f96c74d24cab142ba385.tar.xz
wireguard-go-bd83f0ac993bc5bee0b0f96c74d24cab142ba385.zip
conn: linux: protect read fds
The -1 protection was removed and the wrong error was returned, causing us to read from a bogus fd. As well, remove the useless closures that aren't doing anything, since this is all synchronized anyway. Fixes: 10533c3 ("all: make conn.Bind.Open return a slice of receive functions") Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'conn')
-rw-r--r--conn/bind_linux.go30
1 files changed, 18 insertions, 12 deletions
diff --git a/conn/bind_linux.go b/conn/bind_linux.go
index c10d8b6..7b970e6 100644
--- a/conn/bind_linux.go
+++ b/conn/bind_linux.go
@@ -148,12 +148,12 @@ again:
var fns []ReceiveFunc
if sock4 != -1 {
- fns = append(fns, bind.makeReceiveIPv4(sock4))
bind.sock4 = sock4
+ fns = append(fns, bind.receiveIPv4)
}
if sock6 != -1 {
- fns = append(fns, bind.makeReceiveIPv6(sock6))
bind.sock6 = sock6
+ fns = append(fns, bind.receiveIPv6)
}
if len(fns) == 0 {
return nil, 0, syscall.EAFNOSUPPORT
@@ -224,20 +224,26 @@ func (bind *LinuxSocketBind) Close() error {
return err2
}
-func (*LinuxSocketBind) makeReceiveIPv6(sock int) ReceiveFunc {
- return func(buff []byte) (int, Endpoint, error) {
- var end LinuxSocketEndpoint
- n, err := receive6(sock, buff, &end)
- return n, &end, err
+func (bind *LinuxSocketBind) receiveIPv4(buf []byte) (int, Endpoint, error) {
+ bind.mu.RLock()
+ defer bind.mu.RUnlock()
+ if bind.sock4 == -1 {
+ return 0, nil, net.ErrClosed
}
+ var end LinuxSocketEndpoint
+ n, err := receive4(bind.sock4, buf, &end)
+ return n, &end, err
}
-func (*LinuxSocketBind) makeReceiveIPv4(sock int) ReceiveFunc {
- return func(buff []byte) (int, Endpoint, error) {
- var end LinuxSocketEndpoint
- n, err := receive4(sock, buff, &end)
- return n, &end, err
+func (bind *LinuxSocketBind) receiveIPv6(buf []byte) (int, Endpoint, error) {
+ bind.mu.RLock()
+ defer bind.mu.RUnlock()
+ if bind.sock6 == -1 {
+ return 0, nil, net.ErrClosed
}
+ var end LinuxSocketEndpoint
+ n, err := receive6(bind.sock6, buf, &end)
+ return n, &end, err
}
func (bind *LinuxSocketBind) Send(buff []byte, end Endpoint) error {