diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-05-14 04:21:20 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-05-14 17:10:59 +0200 |
commit | e1ac4247ff30e68e7f9aa820fe4d1f5623bf54ee (patch) | |
tree | dbd691eedfa456f0e599eed745d8218ef4d572cc /app/tools/libwg-go | |
parent | 34422e57a906f3806626bc2a87a290688404224e (diff) |
libwg-go: make changes for recent go code
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'app/tools/libwg-go')
-rw-r--r-- | app/tools/libwg-go/Makefile | 4 | ||||
-rw-r--r-- | app/tools/libwg-go/api-android.go | 15 |
2 files changed, 9 insertions, 10 deletions
diff --git a/app/tools/libwg-go/Makefile b/app/tools/libwg-go/Makefile index 3daad830..a7828e79 100644 --- a/app/tools/libwg-go/Makefile +++ b/app/tools/libwg-go/Makefile @@ -2,9 +2,7 @@ # # Copyright © 2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. -containing = $(foreach v,$2,$(if $(findstring $1,$v),$v)) -FILES := $(wildcard ../wireguard-go/*/*.go) $(wildcard ../wireguard-go/*.go) -FILES := $(filter-out %/main.go $(filter-out %_linux.go,$(call containing,_,$(FILES))),$(FILES)) +FILES := $(filter-out %/main.go,$(wildcard ../wireguard-go/*/*.go) $(wildcard ../wireguard-go/*.go)) NDK_GO_ARCH_MAP_x86 := 386 NDK_GO_ARCH_MAP_x86_64 := amd64 diff --git a/app/tools/libwg-go/api-android.go b/app/tools/libwg-go/api-android.go index 63551512..5ea57a9d 100644 --- a/app/tools/libwg-go/api-android.go +++ b/app/tools/libwg-go/api-android.go @@ -10,13 +10,14 @@ package main import "C" import ( + "./rwcancel" "bufio" + "golang.org/x/sys/unix" "io/ioutil" "log" "math" "os" "strings" - "syscall" ) type AndroidLogger struct { @@ -52,21 +53,19 @@ func wgTurnOn(ifnameRef string, tun_fd int32, settings string) int32 { events: make(chan TUNEvent, 5), errors: make(chan error, 5), nopi: true, + statusListenersShutdown: make(chan struct{}), } var err error - err = syscall.SetNonblock(int(tun_fd), true) - if err != nil { - logger.Error.Println(err) - return -1 - } - tun.closingReader, tun.closingWriter, err = os.Pipe() + tun.fdCancel, err = rwcancel.NewRWCancel(int(tun_fd)) if err != nil { + unix.Close(int(tun_fd)) logger.Error.Println(err) return -1 } name, err := tun.Name() if err != nil { + unix.Close(int(tun_fd)) logger.Error.Println(err) return -1 } @@ -77,6 +76,7 @@ func wgTurnOn(ifnameRef string, tun_fd int32, settings string) int32 { bufferedSettings := bufio.NewReadWriter(bufio.NewReader(strings.NewReader(settings)), bufio.NewWriter(ioutil.Discard)) setError := ipcSetOperation(device, bufferedSettings) if setError != nil { + unix.Close(int(tun_fd)) logger.Error.Println(setError) return -1 } @@ -91,6 +91,7 @@ func wgTurnOn(ifnameRef string, tun_fd int32, settings string) int32 { } } if i == math.MaxInt32 { + unix.Close(int(tun_fd)) return -1 } tunnelHandles[i] = device |