aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tunnel/winipcfg/unicast_address_change_handler.go
blob: ad11e636c5dac7d03968dddfe38cebe8035a00f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2019-2020 WireGuard LLC. All Rights Reserved.
 */

package winipcfg

import (
	"sync"

	"golang.org/x/sys/windows"
)

// UnicastAddressChangeCallback structure allows unicast address change callback handling.
type UnicastAddressChangeCallback struct {
	cb   func(notificationType MibNotificationType, unicastAddress *MibUnicastIPAddressRow)
	wait sync.WaitGroup
}

var (
	unicastAddressChangeAddRemoveMutex = sync.Mutex{}
	unicastAddressChangeMutex          = sync.Mutex{}
	unicastAddressChangeCallbacks      = make(map[*UnicastAddressChangeCallback]bool)
	unicastAddressChangeHandle         = windows.Handle(0)
)

// RegisterUnicastAddressChangeCallback registers a new UnicastAddressChangeCallback. If this particular callback is already
// registered, the function will silently return. Returned UnicastAddressChangeCallback.Unregister method should be used
// to unregister.
func RegisterUnicastAddressChangeCallback(callback func(notificationType MibNotificationType, unicastAddress *MibUnicastIPAddressRow)) (*UnicastAddressChangeCallback, error) {
	s := &UnicastAddressChangeCallback{cb: callback}

	unicastAddressChangeAddRemoveMutex.Lock()
	defer unicastAddressChangeAddRemoveMutex.Unlock()

	unicastAddressChangeMutex.Lock()
	defer unicastAddressChangeMutex.Unlock()

	unicastAddressChangeCallbacks[s] = true

	if unicastAddressChangeHandle == 0 {
		err := notifyUnicastIPAddressChange(windows.AF_UNSPEC, windows.NewCallback(unicastAddressChanged), 0, false, &unicastAddressChangeHandle)
		if err != nil {
			delete(unicastAddressChangeCallbacks, s)
			unicastAddressChangeHandle = 0
			return nil, err
		}
	}

	return s, nil
}

// Unregister unregisters the callback.
func (callback *UnicastAddressChangeCallback) Unregister() error {
	unicastAddressChangeAddRemoveMutex.Lock()
	defer unicastAddressChangeAddRemoveMutex.Unlock()

	unicastAddressChangeMutex.Lock()
	delete(unicastAddressChangeCallbacks, callback)
	removeIt := len(unicastAddressChangeCallbacks) == 0 && unicastAddressChangeHandle != 0
	unicastAddressChangeMutex.Unlock()

	callback.wait.Wait()

	if removeIt {
		err := cancelMibChangeNotify2(unicastAddressChangeHandle)
		if err != nil {
			return err
		}
		unicastAddressChangeHandle = 0
	}

	return nil
}

func unicastAddressChanged(callerContext uintptr, row *MibUnicastIPAddressRow, notificationType MibNotificationType) uintptr {
	rowCopy := *row
	unicastAddressChangeMutex.Lock()
	for cb := range unicastAddressChangeCallbacks {
		cb.wait.Add(1)
		go func(cb *UnicastAddressChangeCallback) {
			cb.cb(notificationType, &rowCopy)
			cb.wait.Done()
		}(cb)
	}
	unicastAddressChangeMutex.Unlock()
	return 0
}