2019-02-07 04:18:27 +01:00
/ * SPDX - License - Identifier : MIT
*
* Copyright ( C ) 2019 WireGuard LLC . All Rights Reserved .
* /
package wintun
import (
"errors"
"fmt"
"strings"
"time"
"unsafe"
"golang.org/x/sys/windows"
"golang.org/x/sys/windows/registry"
2019-05-17 14:26:46 +02:00
2019-05-09 10:11:15 +02:00
"golang.zx2c4.com/wireguard/tun/wintun/netshell"
registryEx "golang.zx2c4.com/wireguard/tun/wintun/registry"
2019-03-04 11:58:02 +01:00
"golang.zx2c4.com/wireguard/tun/wintun/setupapi"
2019-02-07 04:18:27 +01:00
)
2019-06-10 11:02:18 +02:00
// Wintun is a handle of a Wintun adapter.
2019-03-22 15:28:33 +01:00
type Wintun struct {
2019-05-17 14:26:46 +02:00
cfgInstanceID windows . GUID
luidIndex uint32
ifType uint32
2019-03-22 15:28:33 +01:00
}
2019-02-07 04:18:27 +01:00
2019-03-04 14:27:16 +01:00
var deviceClassNetGUID = windows . GUID { Data1 : 0x4d36e972 , Data2 : 0xe325 , Data3 : 0x11ce , Data4 : [ 8 ] byte { 0xbf , 0xc1 , 0x08 , 0x00 , 0x2b , 0xe1 , 0x03 , 0x18 } }
2019-02-07 04:18:27 +01:00
2019-06-10 11:02:18 +02:00
const (
hardwareID = "Wintun"
waitForRegistryTimeout = time . Second * 5
)
2019-02-07 04:18:27 +01:00
2019-06-10 11:02:18 +02:00
// makeWintun creates a Wintun interface handle and populates it from the device's registry key.
2019-05-09 10:11:15 +02:00
func makeWintun ( deviceInfoSet setupapi . DevInfo , deviceInfoData * setupapi . DevInfoData ) ( * Wintun , error ) {
2019-03-22 15:28:33 +01:00
// Open HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\<class>\<id> registry key.
2019-05-09 10:11:15 +02:00
key , err := deviceInfoSet . OpenDevRegKey ( deviceInfoData , setupapi . DICS_FLAG_GLOBAL , 0 , setupapi . DIREG_DRV , registry . QUERY_VALUE )
2019-03-22 15:28:33 +01:00
if err != nil {
2019-05-10 18:01:47 +02:00
return nil , fmt . Errorf ( "Device-specific registry key open failed: %v" , err )
2019-03-22 15:28:33 +01:00
}
defer key . Close ( )
2019-03-31 10:17:11 +02:00
// Read the NetCfgInstanceId value.
2019-05-09 10:11:15 +02:00
valueStr , err := registryEx . GetStringValue ( key , "NetCfgInstanceId" )
2019-03-22 15:28:33 +01:00
if err != nil {
2019-05-10 18:01:47 +02:00
return nil , fmt . Errorf ( "RegQueryStringValue(\"NetCfgInstanceId\") failed: %v" , err )
2019-03-22 15:28:33 +01:00
}
2019-06-06 22:28:13 +02:00
// Convert to GUID.
ifid , err := windows . GUIDFromString ( valueStr )
2019-03-22 15:28:33 +01:00
if err != nil {
return nil , fmt . Errorf ( "NetCfgInstanceId registry value is not a GUID (expected: \"{...}\", provided: %q)" , valueStr )
}
// Read the NetLuidIndex value.
2019-05-09 10:11:15 +02:00
luidIdx , _ , err := key . GetIntegerValue ( "NetLuidIndex" )
2019-03-22 15:28:33 +01:00
if err != nil {
2019-05-10 18:01:47 +02:00
return nil , fmt . Errorf ( "RegQueryValue(\"NetLuidIndex\") failed: %v" , err )
2019-03-22 15:28:33 +01:00
}
// Read the NetLuidIndex value.
2019-05-09 10:11:15 +02:00
ifType , _ , err := key . GetIntegerValue ( "*IfType" )
2019-03-22 15:28:33 +01:00
if err != nil {
2019-05-10 18:01:47 +02:00
return nil , fmt . Errorf ( "RegQueryValue(\"*IfType\") failed: %v" , err )
2019-03-22 15:28:33 +01:00
}
return & Wintun {
2019-06-06 22:28:13 +02:00
cfgInstanceID : ifid ,
2019-05-17 14:26:46 +02:00
luidIndex : uint32 ( luidIdx ) ,
ifType : uint32 ( ifType ) ,
2019-03-22 15:28:33 +01:00
} , nil
}
2019-06-10 11:02:18 +02:00
// GetInterface finds a Wintun interface by its name. This function returns
// the interface if found, or windows.ERROR_OBJECT_NOT_FOUND otherwise. If
// the interface is found but not a Wintun-class, this function returns
// windows.ERROR_ALREADY_EXISTS.
func GetInterface ( ifname string ) ( * Wintun , error ) {
2019-02-07 04:18:27 +01:00
// Create a list of network devices.
2019-06-10 11:02:18 +02:00
devInfoList , err := setupapi . SetupDiGetClassDevsEx ( & deviceClassNetGUID , "" , 0 , setupapi . DIGCF_PRESENT , setupapi . DevInfo ( 0 ) , "" )
2019-02-07 04:18:27 +01:00
if err != nil {
2019-06-06 22:28:13 +02:00
return nil , fmt . Errorf ( "SetupDiGetClassDevsEx(%v) failed: %v" , deviceClassNetGUID , err )
2019-02-07 04:18:27 +01:00
}
defer devInfoList . Close ( )
2019-02-07 19:42:59 +01:00
// Windows requires each interface to have a different name. When
// enforcing this, Windows treats interface names case-insensitive. If an
// interface "FooBar" exists and this function reports there is no
// interface "foobar", an attempt to create a new interface and name it
// "foobar" would cause conflict with "FooBar".
2019-02-07 04:18:27 +01:00
ifname = strings . ToLower ( ifname )
for index := 0 ; ; index ++ {
2019-03-07 15:19:27 +01:00
// Get the device from the list. Should anything be wrong with this device, continue with next.
2019-02-07 04:18:27 +01:00
deviceData , err := devInfoList . EnumDeviceInfo ( index )
if err != nil {
2019-06-04 14:54:56 +02:00
if errWin , ok := err . ( windows . Errno ) ; ok && errWin == windows . ERROR_NO_MORE_ITEMS {
2019-02-07 04:18:27 +01:00
break
}
continue
}
// Get interface ID.
2019-05-09 10:11:15 +02:00
wintun , err := makeWintun ( devInfoList , deviceData )
2019-02-07 04:18:27 +01:00
if err != nil {
continue
}
2019-06-06 23:00:15 +02:00
// TODO: is there a better way than comparing ifnames?
2019-02-07 04:18:27 +01:00
// Get interface name.
2019-05-22 19:31:52 +02:00
ifname2 , err := wintun . InterfaceName ( )
2019-02-07 04:18:27 +01:00
if err != nil {
continue
}
if ifname == strings . ToLower ( ifname2 ) {
2019-02-07 22:02:51 +01:00
// Interface name found. Check its driver.
const driverType = setupapi . SPDIT_COMPATDRIVER
err = devInfoList . BuildDriverInfoList ( deviceData , driverType )
if err != nil {
2019-05-10 18:01:47 +02:00
return nil , fmt . Errorf ( "SetupDiBuildDriverInfoList failed: %v" , err )
2019-02-07 22:02:51 +01:00
}
defer devInfoList . DestroyDriverInfoList ( deviceData , driverType )
for index := 0 ; ; index ++ {
// Get a driver from the list.
driverData , err := devInfoList . EnumDriverInfo ( deviceData , driverType , index )
if err != nil {
2019-06-04 14:54:56 +02:00
if errWin , ok := err . ( windows . Errno ) ; ok && errWin == windows . ERROR_NO_MORE_ITEMS {
2019-02-07 22:02:51 +01:00
break
}
// Something is wrong with this driver. Skip it.
continue
}
// Get driver info details.
2019-05-22 19:31:52 +02:00
driverDetailData , err := devInfoList . DriverInfoDetail ( deviceData , driverData )
2019-02-07 22:02:51 +01:00
if err != nil {
// Something is wrong with this driver. Skip it.
continue
}
2019-03-04 14:27:16 +01:00
if driverDetailData . IsCompatible ( hardwareID ) {
2019-02-07 22:02:51 +01:00
// Matching hardware ID found.
2019-03-22 15:28:33 +01:00
return wintun , nil
2019-02-07 22:02:51 +01:00
}
}
// This interface is not using Wintun driver.
2019-05-24 09:28:50 +02:00
return nil , windows . ERROR_ALREADY_EXISTS
2019-02-07 04:18:27 +01:00
}
}
2019-05-23 15:25:53 +02:00
return nil , windows . ERROR_OBJECT_NOT_FOUND
2019-02-07 04:18:27 +01:00
}
2019-06-10 11:02:18 +02:00
// CreateInterface creates a Wintun interface. description is a string that
// supplies the text description of the device. The description is optional
// and can be "". requestedGUID is the GUID of the created network interface,
// which then influences NLA generation deterministically. If it is set to nil,
// the GUID is chosen by the system at random, and hence a new NLA entry is
// created for each new interface. It is called "requested" GUID because the
// API it uses is completely undocumented, and so there could be minor
// interesting complications with its usage. This function returns the network
// interface ID and a flag if reboot is required.
//
func CreateInterface ( description string , requestedGUID * windows . GUID ) ( wintun * Wintun , rebootRequired bool , err error ) {
2019-02-07 04:18:27 +01:00
// Create an empty device info set for network adapter device class.
2019-06-10 11:02:18 +02:00
devInfoList , err := setupapi . SetupDiCreateDeviceInfoListEx ( & deviceClassNetGUID , 0 , "" )
2019-02-07 04:18:27 +01:00
if err != nil {
2019-06-06 22:28:13 +02:00
return nil , false , fmt . Errorf ( "SetupDiCreateDeviceInfoListEx(%v) failed: %v" , deviceClassNetGUID , err )
2019-02-07 04:18:27 +01:00
}
2019-05-10 20:19:11 +02:00
defer devInfoList . Close ( )
2019-02-07 04:18:27 +01:00
// Get the device class name from GUID.
2019-06-10 11:02:18 +02:00
className , err := setupapi . SetupDiClassNameFromGuidEx ( & deviceClassNetGUID , "" )
2019-02-07 04:18:27 +01:00
if err != nil {
2019-06-06 22:28:13 +02:00
return nil , false , fmt . Errorf ( "SetupDiClassNameFromGuidEx(%v) failed: %v" , deviceClassNetGUID , err )
2019-02-07 04:18:27 +01:00
}
// Create a new device info element and add it to the device info set.
2019-06-10 11:02:18 +02:00
deviceData , err := devInfoList . CreateDeviceInfo ( className , & deviceClassNetGUID , description , 0 , setupapi . DICD_GENERATE_ID )
2019-02-07 04:18:27 +01:00
if err != nil {
2019-05-10 18:01:47 +02:00
return nil , false , fmt . Errorf ( "SetupDiCreateDeviceInfo failed: %v" , err )
2019-02-07 04:18:27 +01:00
}
2019-06-10 11:02:18 +02:00
err = setQuietInstall ( devInfoList , deviceData )
if err != nil {
return nil , false , fmt . Errorf ( "Setting quiet installation failed: %v" , err )
2019-06-04 13:57:36 +02:00
}
2019-02-07 04:18:27 +01:00
// Set a device information element as the selected member of a device information set.
err = devInfoList . SetSelectedDevice ( deviceData )
if err != nil {
2019-05-10 18:01:47 +02:00
return nil , false , fmt . Errorf ( "SetupDiSetSelectedDevice failed: %v" , err )
2019-02-07 04:18:27 +01:00
}
// Set Plug&Play device hardware ID property.
2019-05-03 09:34:00 +02:00
err = devInfoList . SetDeviceRegistryPropertyString ( deviceData , setupapi . SPDRP_HARDWAREID , hardwareID )
2019-02-07 04:18:27 +01:00
if err != nil {
2019-05-10 18:01:47 +02:00
return nil , false , fmt . Errorf ( "SetupDiSetDeviceRegistryProperty(SPDRP_HARDWAREID) failed: %v" , err )
2019-02-07 04:18:27 +01:00
}
// Search for the driver.
2019-05-10 20:30:59 +02:00
const driverType = setupapi . SPDIT_COMPATDRIVER
2019-06-06 23:00:15 +02:00
err = devInfoList . BuildDriverInfoList ( deviceData , driverType ) // TODO: This takes ~510ms
2019-02-07 04:18:27 +01:00
if err != nil {
2019-05-10 18:01:47 +02:00
return nil , false , fmt . Errorf ( "SetupDiBuildDriverInfoList failed: %v" , err )
2019-02-07 04:18:27 +01:00
}
defer devInfoList . DestroyDriverInfoList ( deviceData , driverType )
driverDate := windows . Filetime { }
driverVersion := uint64 ( 0 )
2019-06-06 23:00:15 +02:00
for index := 0 ; ; index ++ { // TODO: This loop takes ~600ms
2019-02-07 04:18:27 +01:00
// Get a driver from the list.
driverData , err := devInfoList . EnumDriverInfo ( deviceData , driverType , index )
if err != nil {
2019-06-04 14:54:56 +02:00
if errWin , ok := err . ( windows . Errno ) ; ok && errWin == windows . ERROR_NO_MORE_ITEMS {
2019-02-07 04:18:27 +01:00
break
}
// Something is wrong with this driver. Skip it.
continue
}
// Check the driver version first, since the check is trivial and will save us iterating over hardware IDs for any driver versioned prior our best match.
if driverData . IsNewer ( driverDate , driverVersion ) {
// Get driver info details.
2019-05-22 19:31:52 +02:00
driverDetailData , err := devInfoList . DriverInfoDetail ( deviceData , driverData )
2019-02-07 04:18:27 +01:00
if err != nil {
// Something is wrong with this driver. Skip it.
continue
}
2019-03-04 14:27:16 +01:00
if driverDetailData . IsCompatible ( hardwareID ) {
2019-02-07 04:18:27 +01:00
// Matching hardware ID found. Select the driver.
err := devInfoList . SetSelectedDriver ( deviceData , driverData )
if err != nil {
// Something is wrong with this driver. Skip it.
continue
}
driverDate = driverData . DriverDate
driverVersion = driverData . DriverVersion
}
}
}
if driverVersion == 0 {
2019-03-08 09:43:54 +01:00
return nil , false , fmt . Errorf ( "No driver for device %q installed" , hardwareID )
2019-02-07 04:18:27 +01:00
}
// Call appropriate class installer.
err = devInfoList . CallClassInstaller ( setupapi . DIF_REGISTERDEVICE , deviceData )
if err != nil {
2019-05-10 18:01:47 +02:00
return nil , false , fmt . Errorf ( "SetupDiCallClassInstaller(DIF_REGISTERDEVICE) failed: %v" , err )
2019-02-07 04:18:27 +01:00
}
2019-03-08 09:45:59 +01:00
// Register device co-installers if any. (Ignore errors)
2019-02-07 04:18:27 +01:00
devInfoList . CallClassInstaller ( setupapi . DIF_REGISTER_COINSTALLERS , deviceData )
2019-06-09 19:20:17 +02:00
if requestedGUID != nil {
key , err := devInfoList . OpenDevRegKey ( deviceData , setupapi . DICS_FLAG_GLOBAL , 0 , setupapi . DIREG_DRV , registry . SET_VALUE )
if err != nil {
return nil , false , fmt . Errorf ( "OpenDevRegKey failed: %v" , err )
}
err = key . SetStringValue ( "NetSetupAnticipatedInstanceId" , requestedGUID . String ( ) )
key . Close ( )
if err != nil {
return nil , false , fmt . Errorf ( "SetStringValue(NetSetupAnticipatedInstanceId) failed: %v" , err )
}
}
2019-03-08 09:45:59 +01:00
// Install interfaces if any. (Ignore errors)
2019-02-07 04:18:27 +01:00
devInfoList . CallClassInstaller ( setupapi . DIF_INSTALLINTERFACES , deviceData )
// Install the device.
err = devInfoList . CallClassInstaller ( setupapi . DIF_INSTALLDEVICE , deviceData )
2019-03-08 09:45:59 +01:00
if err != nil {
2019-05-10 18:01:47 +02:00
err = fmt . Errorf ( "SetupDiCallClassInstaller(DIF_INSTALLDEVICE) failed: %v" , err )
2019-03-08 09:45:59 +01:00
}
2019-05-10 18:01:47 +02:00
var key registry . Key
2019-02-07 04:18:27 +01:00
if err == nil {
// Check if a system reboot is required. (Ignore errors)
if ret , _ := checkReboot ( devInfoList , deviceData ) ; ret {
rebootRequired = true
}
2019-05-09 10:11:15 +02:00
// DIF_INSTALLDEVICE returns almost immediately, while the device installation
// continues in the background. It might take a while, before all registry
2019-03-07 15:34:34 +01:00
// keys and values are populated.
2019-05-10 17:34:03 +02:00
const pollTimeout = time . Millisecond * 50
for i := 0 ; i < int ( waitForRegistryTimeout / pollTimeout ) ; i ++ {
if i != 0 {
time . Sleep ( pollTimeout )
}
2019-05-10 17:37:03 +02:00
key , err = devInfoList . OpenDevRegKey ( deviceData , setupapi . DICS_FLAG_GLOBAL , 0 , setupapi . DIREG_DRV , registry . QUERY_VALUE | registry . NOTIFY )
2019-05-10 17:34:03 +02:00
if err == nil {
break
}
}
2019-05-09 10:11:15 +02:00
if err == nil {
_ , err = registryEx . GetStringValueWait ( key , "NetCfgInstanceId" , waitForRegistryTimeout )
if err == nil {
_ , err = registryEx . GetIntegerValueWait ( key , "NetLuidIndex" , waitForRegistryTimeout )
2019-03-07 15:19:27 +01:00
}
2019-05-09 10:11:15 +02:00
if err == nil {
_ , err = registryEx . GetIntegerValueWait ( key , "*IfType" , waitForRegistryTimeout )
}
key . Close ( )
}
}
2019-03-07 15:19:27 +01:00
2019-05-09 10:11:15 +02:00
if err == nil {
// Get network interface.
wintun , err = makeWintun ( devInfoList , deviceData )
}
if err == nil {
// Wait for network registry key to emerge and populate.
2019-05-10 16:59:24 +02:00
key , err = registryEx . OpenKeyWait (
2019-05-09 10:11:15 +02:00
registry . LOCAL_MACHINE ,
2019-05-17 14:26:46 +02:00
wintun . netRegKeyName ( ) ,
2019-05-10 17:37:03 +02:00
registry . QUERY_VALUE | registry . NOTIFY ,
2019-05-09 10:11:15 +02:00
waitForRegistryTimeout )
if err == nil {
_ , err = registryEx . GetStringValueWait ( key , "Name" , waitForRegistryTimeout )
key . Close ( )
2019-03-07 15:19:27 +01:00
}
2019-02-07 04:18:27 +01:00
}
2019-05-09 10:11:15 +02:00
if err == nil {
// Wait for TCP/IP adapter registry key to emerge and populate.
2019-05-10 16:59:24 +02:00
key , err = registryEx . OpenKeyWait (
2019-05-09 10:11:15 +02:00
registry . LOCAL_MACHINE ,
2019-05-17 14:26:46 +02:00
wintun . tcpipAdapterRegKeyName ( ) , registry . QUERY_VALUE | registry . NOTIFY ,
2019-05-09 10:11:15 +02:00
waitForRegistryTimeout )
if err == nil {
2019-05-11 06:21:02 +02:00
_ , err = registryEx . GetStringValueWait ( key , "IpConfig" , waitForRegistryTimeout )
2019-05-09 10:11:15 +02:00
key . Close ( )
}
}
2019-05-10 18:01:47 +02:00
var tcpipInterfaceRegKeyName string
2019-05-09 10:11:15 +02:00
if err == nil {
2019-05-17 14:26:46 +02:00
tcpipInterfaceRegKeyName , err = wintun . tcpipInterfaceRegKeyName ( )
2019-05-09 10:11:15 +02:00
if err == nil {
2019-05-10 18:01:47 +02:00
// Wait for TCP/IP interface registry key to emerge.
key , err = registryEx . OpenKeyWait (
registry . LOCAL_MACHINE ,
tcpipInterfaceRegKeyName , registry . QUERY_VALUE ,
waitForRegistryTimeout )
if err == nil {
key . Close ( )
}
2019-05-09 10:11:15 +02:00
}
}
//
// All the registry keys and values we're relying on are present now.
//
if err == nil {
// Disable dead gateway detection on our interface.
2019-05-10 18:01:47 +02:00
key , err = registry . OpenKey ( registry . LOCAL_MACHINE , tcpipInterfaceRegKeyName , registry . SET_VALUE )
2019-05-09 10:11:15 +02:00
if err != nil {
2019-05-10 18:01:47 +02:00
err = fmt . Errorf ( "Error opening interface-specific TCP/IP network registry key: %v" , err )
2019-05-09 10:11:15 +02:00
}
key . SetDWordValue ( "EnableDeadGWDetect" , 0 )
key . Close ( )
}
2019-02-07 04:18:27 +01:00
if err == nil {
2019-03-07 15:34:34 +01:00
return wintun , rebootRequired , nil
2019-02-07 04:18:27 +01:00
}
// The interface failed to install, or the interface ID was unobtainable. Clean-up.
2019-02-07 23:00:52 +01:00
removeDeviceParams := setupapi . RemoveDeviceParams {
2019-02-07 22:37:14 +01:00
ClassInstallHeader : * setupapi . MakeClassInstallHeader ( setupapi . DIF_REMOVE ) ,
Scope : setupapi . DI_REMOVEDEVICE_GLOBAL ,
2019-02-07 04:18:27 +01:00
}
// Set class installer parameters for DIF_REMOVE.
if devInfoList . SetClassInstallParams ( deviceData , & removeDeviceParams . ClassInstallHeader , uint32 ( unsafe . Sizeof ( removeDeviceParams ) ) ) == nil {
// Call appropriate class installer.
if devInfoList . CallClassInstaller ( setupapi . DIF_REMOVE , deviceData ) == nil {
// Check if a system reboot is required. (Ignore errors)
if ret , _ := checkReboot ( devInfoList , deviceData ) ; ret {
rebootRequired = true
}
}
}
2019-03-08 09:45:18 +01:00
return nil , rebootRequired , err
2019-02-07 04:18:27 +01:00
}
2019-06-10 11:02:18 +02:00
// DeleteInterface deletes a Wintun interface. This function succeeds
// if the interface was not found. It returns a bool indicating whether
// a reboot is required.
func ( wintun * Wintun ) DeleteInterface ( ) ( rebootRequired bool , err error ) {
devInfoList , deviceData , err := wintun . deviceData ( )
2019-06-03 14:16:34 +02:00
if err == windows . ERROR_OBJECT_NOT_FOUND {
return false , nil
}
2019-02-07 04:18:27 +01:00
if err != nil {
2019-06-03 14:16:34 +02:00
return false , err
2019-02-07 04:18:27 +01:00
}
defer devInfoList . Close ( )
2019-06-03 14:16:34 +02:00
// Remove the device.
removeDeviceParams := setupapi . RemoveDeviceParams {
ClassInstallHeader : * setupapi . MakeClassInstallHeader ( setupapi . DIF_REMOVE ) ,
Scope : setupapi . DI_REMOVEDEVICE_GLOBAL ,
}
2019-02-07 04:18:27 +01:00
2019-06-03 14:16:34 +02:00
// 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 )
}
2019-02-07 04:18:27 +01:00
2019-06-03 14:16:34 +02:00
// Call appropriate class installer.
err = devInfoList . CallClassInstaller ( setupapi . DIF_REMOVE , deviceData )
if err != nil {
return false , fmt . Errorf ( "SetupDiCallClassInstaller failed: %v" , err )
2019-02-07 04:18:27 +01:00
}
2019-06-03 14:16:34 +02:00
// Check if a system reboot is required. (Ignore errors)
2019-06-10 11:02:18 +02:00
rebootRequired , _ = checkReboot ( devInfoList , deviceData )
return rebootRequired , nil
2019-02-07 04:18:27 +01:00
}
2019-02-07 18:24:28 +01:00
// checkReboot checks device install parameters if a system reboot is required.
2019-02-07 22:09:18 +01:00
func checkReboot ( deviceInfoSet setupapi . DevInfo , deviceInfoData * setupapi . DevInfoData ) ( bool , error ) {
2019-05-22 19:31:52 +02:00
devInstallParams , err := deviceInfoSet . DeviceInstallParams ( deviceInfoData )
2019-02-07 04:18:27 +01:00
if err != nil {
return false , err
}
2019-06-04 13:57:36 +02:00
return ( devInstallParams . Flags & ( setupapi . DI_NEEDREBOOT | setupapi . DI_NEEDRESTART ) ) != 0 , nil
}
// setQuietInstall sets device install parameters for a quiet installation
func setQuietInstall ( deviceInfoSet setupapi . DevInfo , deviceInfoData * setupapi . DevInfoData ) error {
devInstallParams , err := deviceInfoSet . DeviceInstallParams ( deviceInfoData )
if err != nil {
return err
2019-02-07 04:18:27 +01:00
}
2019-06-04 13:57:36 +02:00
devInstallParams . Flags |= setupapi . DI_QUIETINSTALL
return deviceInfoSet . SetDeviceInstallParams ( deviceInfoData , devInstallParams )
2019-02-07 04:18:27 +01:00
}
2019-06-10 11:02:18 +02:00
// InterfaceName returns the name of the Wintun interface.
2019-05-22 19:31:52 +02:00
func ( wintun * Wintun ) InterfaceName ( ) ( string , error ) {
2019-05-17 14:26:46 +02:00
key , err := registry . OpenKey ( registry . LOCAL_MACHINE , wintun . netRegKeyName ( ) , registry . QUERY_VALUE )
2019-05-02 23:53:15 +02:00
if err != nil {
2019-05-10 18:01:47 +02:00
return "" , fmt . Errorf ( "Network-specific registry key open failed: %v" , err )
2019-05-02 23:53:15 +02:00
}
defer key . Close ( )
// Get the interface name.
2019-05-09 10:11:15 +02:00
return registryEx . GetStringValue ( key , "Name" )
2019-05-02 23:53:15 +02:00
}
2019-06-10 11:02:18 +02:00
// SetInterfaceName sets name of the Wintun interface.
2019-02-07 04:18:27 +01:00
func ( wintun * Wintun ) SetInterfaceName ( ifname string ) error {
2019-04-01 12:00:33 +02:00
// We have to tell the various runtime COM services about the new name too. We ignore the
2019-06-05 13:09:00 +02:00
// error because netshell isn't available on servercore.
2019-04-01 12:00:33 +02:00
// TODO: netsh.exe falls back to NciSetConnection in this case. If somebody complains, maybe
// we should do the same.
2019-06-05 13:09:00 +02:00
netshell . HrRenameConnection ( & wintun . cfgInstanceID , windows . StringToUTF16Ptr ( ifname ) )
2019-04-01 12:00:33 +02:00
// Set the interface name. The above line should have done this too, but in case it failed, we force it.
2019-05-17 14:26:46 +02:00
key , err := registry . OpenKey ( registry . LOCAL_MACHINE , wintun . netRegKeyName ( ) , registry . SET_VALUE )
2019-05-09 10:11:15 +02:00
if err != nil {
2019-05-10 18:01:47 +02:00
return fmt . Errorf ( "Network-specific registry key open failed: %v" , err )
2019-05-09 10:11:15 +02:00
}
defer key . Close ( )
2019-02-07 04:18:27 +01:00
return key . SetStringValue ( "Name" , ifname )
}
2019-06-10 11:02:18 +02:00
// netRegKeyName returns the interface-specific network registry key name.
2019-05-17 14:26:46 +02:00
func ( wintun * Wintun ) netRegKeyName ( ) string {
2019-06-06 22:28:13 +02:00
return fmt . Sprintf ( "SYSTEM\\CurrentControlSet\\Control\\Network\\%v\\%v\\Connection" , deviceClassNetGUID , wintun . cfgInstanceID )
2019-03-04 11:58:02 +01:00
}
2019-06-10 11:02:18 +02:00
// tcpipAdapterRegKeyName returns the adapter-specific TCP/IP network registry key name.
2019-05-17 14:26:46 +02:00
func ( wintun * Wintun ) tcpipAdapterRegKeyName ( ) string {
2019-06-06 22:28:13 +02:00
return fmt . Sprintf ( "SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters\\Adapters\\%v" , wintun . cfgInstanceID )
2019-05-09 10:11:15 +02:00
}
2019-06-10 11:02:18 +02:00
// tcpipInterfaceRegKeyName returns the interface-specific TCP/IP network registry key name.
2019-05-17 14:26:46 +02:00
func ( wintun * Wintun ) tcpipInterfaceRegKeyName ( ) ( path string , err error ) {
key , err := registry . OpenKey ( registry . LOCAL_MACHINE , wintun . tcpipAdapterRegKeyName ( ) , registry . QUERY_VALUE )
2019-02-07 04:18:27 +01:00
if err != nil {
2019-05-10 18:01:47 +02:00
return "" , fmt . Errorf ( "Error opening adapter-specific TCP/IP network registry key: %v" , err )
2019-02-07 04:18:27 +01:00
}
2019-05-10 18:01:47 +02:00
paths , _ , err := key . GetStringsValue ( "IpConfig" )
key . Close ( )
2019-02-07 04:18:27 +01:00
if err != nil {
2019-05-10 18:01:47 +02:00
return "" , fmt . Errorf ( "Error reading IpConfig registry key: %v" , err )
2019-02-07 04:18:27 +01:00
}
2019-05-10 18:01:47 +02:00
if len ( paths ) == 0 {
return "" , errors . New ( "No TCP/IP interfaces found on adapter" )
}
return fmt . Sprintf ( "SYSTEM\\CurrentControlSet\\Services\\%s" , paths [ 0 ] ) , nil
2019-02-07 04:18:27 +01:00
}
2019-06-03 14:16:34 +02:00
// deviceData returns TUN device info list handle and interface device info
2019-06-10 11:02:18 +02:00
// 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 ( ) ( setupapi . DevInfo , * setupapi . DevInfoData , error ) {
2019-06-03 14:16:34 +02:00
// Create a list of network devices.
2019-06-10 11:02:18 +02:00
devInfoList , err := setupapi . SetupDiGetClassDevsEx ( & deviceClassNetGUID , "" , 0 , setupapi . DIGCF_PRESENT , setupapi . DevInfo ( 0 ) , "" )
2019-06-03 14:16:34 +02:00
if err != nil {
2019-06-06 22:28:13 +02:00
return 0 , nil , fmt . Errorf ( "SetupDiGetClassDevsEx(%v) failed: %v" , deviceClassNetGUID , err . Error ( ) )
2019-06-03 14:16:34 +02:00
}
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.
2019-06-06 23:00:15 +02:00
// TODO: Store some ID in the Wintun object such that this call isn't required.
2019-06-03 14:16:34 +02:00
wintun2 , err := makeWintun ( devInfoList , deviceData )
if err != nil {
continue
}
if wintun . cfgInstanceID == wintun2 . cfgInstanceID {
2019-06-10 11:02:18 +02:00
err = setQuietInstall ( devInfoList , deviceData )
if err != nil {
devInfoList . Close ( )
return 0 , nil , fmt . Errorf ( "Setting quiet installation failed: %v" , err )
2019-06-03 14:16:34 +02:00
}
return devInfoList , deviceData , nil
}
}
devInfoList . Close ( )
return 0 , nil , windows . ERROR_OBJECT_NOT_FOUND
}
2019-06-10 11:02:18 +02:00
// DataFileName returns the Wintun device data pipe name.
2019-02-07 04:18:27 +01:00
func ( wintun * Wintun ) DataFileName ( ) string {
2019-05-17 14:26:46 +02:00
return fmt . Sprintf ( "\\\\.\\Global\\WINTUN%d" , wintun . luidIndex )
}
// GUID returns the GUID of the interface.
func ( wintun * Wintun ) GUID ( ) windows . GUID {
return wintun . cfgInstanceID
}
// LUID returns the LUID of the interface.
func ( wintun * Wintun ) LUID ( ) uint64 {
return ( ( uint64 ( wintun . luidIndex ) & ( ( 1 << 24 ) - 1 ) ) << 24 ) | ( ( uint64 ( wintun . ifType ) & ( ( 1 << 16 ) - 1 ) ) << 48 )
2019-02-07 18:24:28 +01:00
}