aboutsummaryrefslogtreecommitdiffstats
path: root/tun/wintun
diff options
context:
space:
mode:
authorSimon Rozman <simon@rozman.si>2019-06-03 14:16:34 +0200
committerSimon Rozman <simon@rozman.si>2019-06-06 08:58:26 +0200
commitc2ed133df80392a1592a6b0b79228041dd725427 (patch)
treef839e2e131b6c345b4dadfd18682f8e4b9e9aa3c /tun/wintun
parentwintun: don't run HrRenameConnection in separate thread (diff)
downloadwireguard-go-c2ed133df80392a1592a6b0b79228041dd725427.tar.xz
wireguard-go-c2ed133df80392a1592a6b0b79228041dd725427.zip
wintun: simplify DeleteInterface method signature
Signed-off-by: Simon Rozman <simon@rozman.si>
Diffstat (limited to 'tun/wintun')
-rw-r--r--tun/wintun/wintun_windows.go133
1 files changed, 77 insertions, 56 deletions
diff --git a/tun/wintun/wintun_windows.go b/tun/wintun/wintun_windows.go
index f962f6e..3d41f38 100644
--- a/tun/wintun/wintun_windows.go
+++ b/tun/wintun/wintun_windows.go
@@ -417,71 +417,41 @@ func CreateInterface(description string, hwndParent uintptr) (*Wintun, bool, err
// optional and can be 0. If a specific top-level window is not required, set
// hwndParent to 0.
//
-// Function returns true if the interface was found and deleted and a flag if
-// reboot is required.
+// Function silently succeeds if the interface was not found.
//
-func (wintun *Wintun) DeleteInterface(hwndParent uintptr) (bool, bool, error) {
- // Create a list of network devices.
- devInfoList, err := setupapi.SetupDiGetClassDevsEx(&deviceClassNetGUID, enumerator, hwndParent, setupapi.DIGCF_PRESENT, setupapi.DevInfo(0), machineName)
+// Function returns true if a reboot is required.
+//
+func (wintun *Wintun) DeleteInterface(hwndParent uintptr) (bool, error) {
+ devInfoList, deviceData, err := wintun.deviceData(hwndParent)
+ if err == windows.ERROR_OBJECT_NOT_FOUND {
+ return false, nil
+ }
if err != nil {
- return false, false, fmt.Errorf("SetupDiGetClassDevsEx(%s) failed: %v", guid.ToString(&deviceClassNetGUID), err.Error())
+ return false, err
}
defer devInfoList.Close()
- // Iterate.
- for index := 0; ; index++ {
- // Get the device from the list. Should anything be wrong with this device, continue with next.
- deviceData, err := devInfoList.EnumDeviceInfo(index)
- if err != nil {
- if errWin, ok := err.(windows.Errno); ok && errWin == windows.ERROR_NO_MORE_ITEMS {
- break
- }
- continue
- }
-
- // Get interface ID.
- //TODO: Store some ID in the Wintun object such that this call isn't required.
- wintun2, err := makeWintun(devInfoList, deviceData)
- if err != nil {
- continue
- }
-
- if wintun.cfgInstanceID == wintun2.cfgInstanceID {
- if hwndParent == 0 {
- err = setQuietInstall(devInfoList, deviceData)
- if err != nil {
- return false, false, fmt.Errorf("Setting quiet installation failed: %v", err)
- }
- }
-
- // Remove the device.
- removeDeviceParams := setupapi.RemoveDeviceParams{
- ClassInstallHeader: *setupapi.MakeClassInstallHeader(setupapi.DIF_REMOVE),
- Scope: setupapi.DI_REMOVEDEVICE_GLOBAL,
- }
-
- // Set class installer parameters for DIF_REMOVE.
- err = devInfoList.SetClassInstallParams(deviceData, &removeDeviceParams.ClassInstallHeader, uint32(unsafe.Sizeof(removeDeviceParams)))
- if err != nil {
- return false, false, fmt.Errorf("SetupDiSetClassInstallParams failed: %v", err)
- }
-
- // Call appropriate class installer.
- err = devInfoList.CallClassInstaller(setupapi.DIF_REMOVE, deviceData)
- if err != nil {
- return false, false, fmt.Errorf("SetupDiCallClassInstaller failed: %v", err)
- }
+ // Remove the device.
+ removeDeviceParams := setupapi.RemoveDeviceParams{
+ ClassInstallHeader: *setupapi.MakeClassInstallHeader(setupapi.DIF_REMOVE),
+ Scope: setupapi.DI_REMOVEDEVICE_GLOBAL,
+ }
- // Check if a system reboot is required. (Ignore errors)
- if ret, _ := checkReboot(devInfoList, deviceData); ret {
- return true, true, nil
- }
+ // Set class installer parameters for DIF_REMOVE.
+ err = devInfoList.SetClassInstallParams(deviceData, &removeDeviceParams.ClassInstallHeader, uint32(unsafe.Sizeof(removeDeviceParams)))
+ if err != nil {
+ return false, fmt.Errorf("SetupDiSetClassInstallParams failed: %v", err)
+ }
- return true, false, nil
- }
+ // Call appropriate class installer.
+ err = devInfoList.CallClassInstaller(setupapi.DIF_REMOVE, deviceData)
+ if err != nil {
+ return false, fmt.Errorf("SetupDiCallClassInstaller failed: %v", err)
}
- return false, false, nil
+ // Check if a system reboot is required. (Ignore errors)
+ ret, _ := checkReboot(devInfoList, deviceData)
+ return ret, nil
}
//
@@ -576,6 +546,57 @@ func (wintun *Wintun) tcpipInterfaceRegKeyName() (path string, err error) {
}
//
+// deviceData returns TUN device info list handle and interface device info
+// data.
+//
+// The device info list handle must be closed after use.
+//
+// In case the device is not found, windows.ERROR_OBJECT_NOT_FOUND is
+// returned.
+//
+func (wintun *Wintun) deviceData(hwndParent uintptr) (setupapi.DevInfo, *setupapi.DevInfoData, error) {
+ // Create a list of network devices.
+ devInfoList, err := setupapi.SetupDiGetClassDevsEx(&deviceClassNetGUID, enumerator, hwndParent, setupapi.DIGCF_PRESENT, setupapi.DevInfo(0), machineName)
+ if err != nil {
+ return 0, nil, fmt.Errorf("SetupDiGetClassDevsEx(%s) failed: %v", guid.ToString(&deviceClassNetGUID), err.Error())
+ }
+
+ // Iterate.
+ for index := 0; ; index++ {
+ // Get the device from the list. Should anything be wrong with this device, continue with next.
+ deviceData, err := devInfoList.EnumDeviceInfo(index)
+ if err != nil {
+ if errWin, ok := err.(windows.Errno); ok && errWin == windows.ERROR_NO_MORE_ITEMS {
+ break
+ }
+ continue
+ }
+
+ // Get interface ID.
+ //TODO: Store some ID in the Wintun object such that this call isn't required.
+ wintun2, err := makeWintun(devInfoList, deviceData)
+ if err != nil {
+ continue
+ }
+
+ if wintun.cfgInstanceID == wintun2.cfgInstanceID {
+ if hwndParent == 0 {
+ err = setQuietInstall(devInfoList, deviceData)
+ if err != nil {
+ devInfoList.Close()
+ return 0, nil, fmt.Errorf("Setting quiet installation failed: %v", err)
+ }
+ }
+
+ return devInfoList, deviceData, nil
+ }
+ }
+
+ devInfoList.Close()
+ return 0, nil, windows.ERROR_OBJECT_NOT_FOUND
+}
+
+//
// DataFileName returns Wintun device data pipe name.
//
func (wintun *Wintun) DataFileName() string {