aboutsummaryrefslogtreecommitdiffstats
path: root/tun/wintun/dll_fromfile_windows.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2020-11-11 18:51:44 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2020-11-11 18:51:44 +0100
commit60b3766b89b9cc664d9bbdc9ab34b283e0374d21 (patch)
tree34c11b87b228b92da4b3fe9d8c50390ece64be70 /tun/wintun/dll_fromfile_windows.go
parentglobal: switch to using %w instead of %v for Errorf (diff)
downloadwireguard-go-60b3766b89b9cc664d9bbdc9ab34b283e0374d21.tar.xz
wireguard-go-60b3766b89b9cc664d9bbdc9ab34b283e0374d21.zip
wintun: load from filesystem by default
We let people loading this from resources opt in via: go build -tags load_wintun_from_rsrc Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'tun/wintun/dll_fromfile_windows.go')
-rw-r--r--tun/wintun/dll_fromfile_windows.go50
1 files changed, 50 insertions, 0 deletions
diff --git a/tun/wintun/dll_fromfile_windows.go b/tun/wintun/dll_fromfile_windows.go
new file mode 100644
index 0000000..525812b
--- /dev/null
+++ b/tun/wintun/dll_fromfile_windows.go
@@ -0,0 +1,50 @@
+// +build !load_wintun_from_rsrc
+
+/* SPDX-License-Identifier: MIT
+ *
+ * Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
+ */
+
+package wintun
+
+import (
+ "fmt"
+ "sync"
+ "sync/atomic"
+ "unsafe"
+
+ "golang.org/x/sys/windows"
+)
+
+type lazyDLL struct {
+ Name string
+ mu sync.Mutex
+ module windows.Handle
+}
+
+func (d *lazyDLL) Load() error {
+ if atomic.LoadPointer((*unsafe.Pointer)(unsafe.Pointer(&d.module))) != nil {
+ return nil
+ }
+ d.mu.Lock()
+ defer d.mu.Unlock()
+ if d.module != 0 {
+ return nil
+ }
+
+ const (
+ LOAD_LIBRARY_SEARCH_APPLICATION_DIR = 0x00000200
+ LOAD_LIBRARY_SEARCH_SYSTEM32 = 0x00000800
+ )
+ module, err := windows.LoadLibraryEx(d.Name, 0, LOAD_LIBRARY_SEARCH_APPLICATION_DIR|LOAD_LIBRARY_SEARCH_SYSTEM32)
+ if err != nil {
+ return fmt.Errorf("Unable to load library: %w", err)
+ }
+
+ atomic.StorePointer((*unsafe.Pointer)(unsafe.Pointer(&d.module)), unsafe.Pointer(module))
+ return nil
+}
+
+func (p *lazyProc) nameToAddr() (uintptr, error) {
+ return windows.GetProcAddress(p.dll.module, p.Name)
+}