aboutsummaryrefslogtreecommitdiffstats
path: root/tun/wintun/dll_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'tun/wintun/dll_windows.go')
-rw-r--r--tun/wintun/dll_windows.go40
1 files changed, 1 insertions, 39 deletions
diff --git a/tun/wintun/dll_windows.go b/tun/wintun/dll_windows.go
index 4a55e97..9f04f73 100644
--- a/tun/wintun/dll_windows.go
+++ b/tun/wintun/dll_windows.go
@@ -10,50 +10,12 @@ import (
"sync"
"sync/atomic"
"unsafe"
-
- "golang.org/x/sys/windows"
- "golang.zx2c4.com/wireguard/tun/wintun/memmod"
- "golang.zx2c4.com/wireguard/tun/wintun/resource"
)
-type lazyDLL struct {
- Name string
- mu sync.Mutex
- module *memmod.Module
-}
-
func newLazyDLL(name string) *lazyDLL {
return &lazyDLL{Name: name}
}
-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 != nil {
- return nil
- }
-
- const ourModule windows.Handle = 0
- resInfo, err := resource.FindByName(ourModule, d.Name, resource.RT_RCDATA)
- if err != nil {
- return fmt.Errorf("Unable to find \"%v\" RCDATA resource: %w", d.Name, err)
- }
- data, err := resource.Load(ourModule, resInfo)
- if err != nil {
- return fmt.Errorf("Unable to load resource: %w", err)
- }
- module, err := memmod.LoadLibrary(data)
- 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 (d *lazyDLL) NewProc(name string) *lazyProc {
return &lazyProc{dll: d, Name: name}
}
@@ -79,7 +41,7 @@ func (p *lazyProc) Find() error {
if err != nil {
return fmt.Errorf("Error loading %v DLL: %w", p.dll.Name, err)
}
- addr, err := p.dll.module.ProcAddressByName(p.Name)
+ addr, err := p.nameToAddr()
if err != nil {
return fmt.Errorf("Error getting %v address: %w", p.Name, err)
}