From c403da6a39c876123c096113d08d0d3019b4a07e Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Sun, 7 Jun 2020 01:41:08 -0600 Subject: conn: unbreak boundif on android Another thing never tested ever. Signed-off-by: Jason A. Donenfeld --- device/bindsocketshim.go | 24 ++++++++++++++++++++++++ device/boundif_android.go | 44 -------------------------------------------- 2 files changed, 24 insertions(+), 44 deletions(-) delete mode 100644 device/boundif_android.go (limited to 'device') diff --git a/device/bindsocketshim.go b/device/bindsocketshim.go index 896c7d2..68e1504 100644 --- a/device/bindsocketshim.go +++ b/device/bindsocketshim.go @@ -34,3 +34,27 @@ func (device *Device) BindSocketToInterface6(interfaceIndex uint32, blackhole bo } return nil } + +// TODO(crawshaw): this method is a compatibility shim. Replace with direct use of conn. +func (device *Device) PeekLookAtSocketFd4() (fd int, err error) { + if device.net.bind == nil { + return -1, errors.New("Bind is not yet initialized") + } + + if iface, ok := device.net.bind.(conn.PeekLookAtSocketFd); ok { + return iface.PeekLookAtSocketFd4() + } + return -1, errors.New("unimplemented") +} + +// TODO(crawshaw): this method is a compatibility shim. Replace with direct use of conn. +func (device *Device) PeekLookAtSocketFd6() (fd int, err error) { + if device.net.bind == nil { + return -1, errors.New("Bind is not yet initialized") + } + + if iface, ok := device.net.bind.(conn.PeekLookAtSocketFd); ok { + return iface.PeekLookAtSocketFd6() + } + return -1, errors.New("unimplemented") +} diff --git a/device/boundif_android.go b/device/boundif_android.go deleted file mode 100644 index a4be8de..0000000 --- a/device/boundif_android.go +++ /dev/null @@ -1,44 +0,0 @@ -/* SPDX-License-Identifier: MIT - * - * Copyright (C) 2017-2020 WireGuard LLC. All Rights Reserved. - */ - -package device - -import "errors" - -func (device *Device) PeekLookAtSocketFd4() (fd int, err error) { - nb, ok := device.net.bind.(*nativeBind) - if !ok { - return 0, errors.New("no socket exists") - } - sysconn, err := nb.ipv4.SyscallConn() - if err != nil { - return - } - err = sysconn.Control(func(f uintptr) { - fd = int(f) - }) - if err != nil { - return - } - return -} - -func (device *Device) PeekLookAtSocketFd6() (fd int, err error) { - nb, ok := device.net.bind.(*nativeBind) - if !ok { - return 0, errors.New("no socket exists") - } - sysconn, err := nb.ipv6.SyscallConn() - if err != nil { - return - } - err = sysconn.Control(func(f uintptr) { - fd = int(f) - }) - if err != nil { - return - } - return -} -- cgit v1.2.3-59-g8ed1b