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"
2019-04-01 12:00:33 +02:00
"golang.zx2c4.com/wireguard/tun/wintun/netshell"
2019-02-07 04:18:27 +01:00
"strings"
"syscall"
"time"
"unsafe"
"golang.org/x/sys/windows"
"golang.org/x/sys/windows/registry"
2019-03-04 11:58:02 +01:00
"golang.zx2c4.com/wireguard/tun/wintun/guid"
"golang.zx2c4.com/wireguard/tun/wintun/setupapi"
2019-02-07 04:18:27 +01:00
)
2019-03-04 14:27:16 +01:00
//
// Wintun is a handle of a Wintun adapter
//
2019-03-22 15:28:33 +01:00
type Wintun struct {
CfgInstanceID windows . GUID
LUIDIndex uint32
IfType uint32
}
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-03-04 14:27:16 +01:00
const hardwareID = "Wintun"
2019-03-08 09:42:34 +01:00
const enumerator = ""
const machineName = ""
2019-02-07 04:18:27 +01:00
//
2019-03-22 15:28:33 +01:00
// MakeWintun creates interface handle and populates it from device registry key
//
2019-05-02 23:53:15 +02:00
func makeWintun ( deviceInfoSet setupapi . DevInfo , deviceInfoData * setupapi . DevInfoData , wait bool ) ( * Wintun , error ) {
2019-03-22 15:28:33 +01:00
// Open HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\<class>\<id> registry key.
key , err := deviceInfoSet . OpenDevRegKey ( deviceInfoData , setupapi . DICS_FLAG_GLOBAL , 0 , setupapi . DIREG_DRV , registry . READ )
if err != nil {
return nil , errors . New ( "Device-specific registry key open failed: " + err . Error ( ) )
}
defer key . Close ( )
2019-03-22 23:48:40 +01:00
var valueStr string
var valueType uint32
2019-03-31 10:17:11 +02:00
// Read the NetCfgInstanceId value.
2019-05-02 23:53:15 +02:00
if wait {
valueStr , valueType , err = keyGetStringValueRetry ( key , "NetCfgInstanceId" )
} else {
valueStr , valueType , err = key . GetStringValue ( "NetCfgInstanceId" )
}
2019-03-22 15:28:33 +01:00
if err != nil {
return nil , errors . New ( "RegQueryStringValue(\"NetCfgInstanceId\") failed: " + err . Error ( ) )
}
2019-03-31 10:17:11 +02:00
if valueType != registry . SZ {
return nil , fmt . Errorf ( "NetCfgInstanceId registry value is not REG_SZ (expected: %v, provided: %v)" , registry . SZ , valueType )
}
2019-03-22 15:28:33 +01:00
// Convert to windows.GUID.
ifid , err := guid . FromString ( valueStr )
if err != nil {
return nil , fmt . Errorf ( "NetCfgInstanceId registry value is not a GUID (expected: \"{...}\", provided: %q)" , valueStr )
}
// Read the NetLuidIndex value.
luidIdx , valueType , err := key . GetIntegerValue ( "NetLuidIndex" )
if err != nil {
return nil , errors . New ( "RegQueryValue(\"NetLuidIndex\") failed: " + err . Error ( ) )
}
// Read the NetLuidIndex value.
ifType , valueType , err := key . GetIntegerValue ( "*IfType" )
if err != nil {
return nil , errors . New ( "RegQueryValue(\"*IfType\") failed: " + err . Error ( ) )
}
return & Wintun {
CfgInstanceID : * ifid ,
LUIDIndex : uint32 ( luidIdx ) ,
IfType : uint32 ( ifType ) ,
} , nil
}
//
// GetInterface finds interface by name.
2019-02-07 04:18:27 +01:00
//
// hwndParent is a handle to the top-level window to use for any user
// interface that is related to non-device-specific actions (such as a select-
// device dialog box that uses the global class driver list). This handle is
// optional and can be 0. If a specific top-level window is not required, set
// hwndParent to 0.
//
2019-03-22 15:28:33 +01:00
// Function returns interface if found, or nil otherwise. If the interface is
// found but not Wintun-class, the function returns interface and an error.
2019-02-07 04:18:27 +01:00
//
func GetInterface ( ifname string , hwndParent uintptr ) ( * Wintun , error ) {
// Create a list of network devices.
2019-03-08 09:42:34 +01:00
devInfoList , err := setupapi . SetupDiGetClassDevsEx ( & deviceClassNetGUID , enumerator , hwndParent , setupapi . DIGCF_PRESENT , setupapi . DevInfo ( 0 ) , machineName )
2019-02-07 04:18:27 +01:00
if err != nil {
2019-03-08 09:45:59 +01:00
return nil , errors . New ( fmt . Sprintf ( "SetupDiGetClassDevsEx(%v) failed: " , guid . ToString ( & deviceClassNetGUID ) ) + err . Error ( ) )
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-04-13 01:58:53 +02:00
if errWin , ok := err . ( syscall . Errno ) ; ok && errWin == windows . ERROR_NO_MORE_ITEMS {
2019-02-07 04:18:27 +01:00
break
}
continue
}
// Get interface ID.
2019-05-02 23:53:15 +02:00
wintun , err := makeWintun ( devInfoList , deviceData , false )
2019-02-07 04:18:27 +01:00
if err != nil {
continue
}
2019-05-02 23:53: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-02 23:53:15 +02:00
ifname2 , err := wintun . getInterfaceNameNoRetry ( )
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-03-08 09:45:59 +01:00
return nil , errors . New ( "SetupDiBuildDriverInfoList failed: " + err . Error ( ) )
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-04-13 01:58:53 +02:00
if errWin , ok := err . ( syscall . 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.
driverDetailData , err := devInfoList . GetDriverInfoDetail ( deviceData , driverData )
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-03-31 10:17:11 +02:00
return nil , errors . New ( "Foreign network interface with the same name exists" )
2019-02-07 04:18:27 +01:00
}
}
return nil , nil
}
//
// CreateInterface creates a TUN interface.
//
// description is a string that supplies the text description of the device.
// description is optional and can be "".
//
// hwndParent is a handle to the top-level window to use for any user
// interface that is related to non-device-specific actions (such as a select-
// device dialog box that uses the global class driver list). This handle is
// optional and can be 0. If a specific top-level window is not required, set
// hwndParent to 0.
//
// Function returns the network interface ID and a flag if reboot is required.
//
func CreateInterface ( description string , hwndParent uintptr ) ( * Wintun , bool , error ) {
// Create an empty device info set for network adapter device class.
2019-03-08 09:42:34 +01:00
devInfoList , err := setupapi . SetupDiCreateDeviceInfoListEx ( & deviceClassNetGUID , hwndParent , machineName )
2019-02-07 04:18:27 +01:00
if err != nil {
2019-03-08 09:45:59 +01:00
return nil , false , errors . New ( fmt . Sprintf ( "SetupDiCreateDeviceInfoListEx(%v) failed: " , guid . ToString ( & deviceClassNetGUID ) ) + err . Error ( ) )
2019-02-07 04:18:27 +01:00
}
// Get the device class name from GUID.
2019-03-08 09:42:34 +01:00
className , err := setupapi . SetupDiClassNameFromGuidEx ( & deviceClassNetGUID , machineName )
2019-02-07 04:18:27 +01:00
if err != nil {
2019-03-08 09:45:59 +01:00
return nil , false , errors . New ( fmt . Sprintf ( "SetupDiClassNameFromGuidEx(%v) failed: " , guid . ToString ( & deviceClassNetGUID ) ) + err . Error ( ) )
2019-02-07 04:18:27 +01:00
}
// Create a new device info element and add it to the device info set.
deviceData , err := devInfoList . CreateDeviceInfo ( className , & deviceClassNetGUID , description , hwndParent , setupapi . DICD_GENERATE_ID )
if err != nil {
2019-03-08 09:45:59 +01:00
return nil , false , errors . New ( "SetupDiCreateDeviceInfo failed: " + err . Error ( ) )
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-03-08 09:45:59 +01:00
return nil , false , errors . New ( "SetupDiSetSelectedDevice failed: " + err . Error ( ) )
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-03-08 09:45:59 +01:00
return nil , false , errors . New ( "SetupDiSetDeviceRegistryProperty(SPDRP_HARDWAREID) failed: " + err . Error ( ) )
2019-02-07 04:18:27 +01:00
}
// Search for the driver.
const driverType = setupapi . SPDIT_CLASSDRIVER
err = devInfoList . BuildDriverInfoList ( deviceData , driverType )
if err != nil {
2019-03-08 09:45:59 +01:00
return nil , false , errors . New ( "SetupDiBuildDriverInfoList failed: " + err . Error ( ) )
2019-02-07 04:18:27 +01:00
}
defer devInfoList . DestroyDriverInfoList ( deviceData , driverType )
driverDate := windows . Filetime { }
driverVersion := uint64 ( 0 )
for index := 0 ; ; index ++ {
// Get a driver from the list.
driverData , err := devInfoList . EnumDriverInfo ( deviceData , driverType , index )
if err != nil {
2019-04-13 01:58:53 +02:00
if errWin , ok := err . ( syscall . 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.
driverDetailData , err := devInfoList . GetDriverInfoDetail ( deviceData , driverData )
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-03-08 09:45:59 +01:00
return nil , false , errors . New ( "SetupDiCallClassInstaller(DIF_REGISTERDEVICE) failed: " + err . Error ( ) )
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-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 )
2019-03-07 15:34:34 +01:00
var wintun * Wintun
2019-02-07 04:18:27 +01:00
var rebootRequired bool
// Install the device.
err = devInfoList . CallClassInstaller ( setupapi . DIF_INSTALLDEVICE , deviceData )
2019-03-08 09:45:59 +01:00
if err != nil {
err = errors . New ( "SetupDiCallClassInstaller(DIF_INSTALLDEVICE) failed: " + err . Error ( ) )
}
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-03-07 15:34:34 +01:00
// Get network interface. DIF_INSTALLDEVICE returns almost immediately, while the device
// installation continues in the background. It might take a while, before all registry
// keys and values are populated.
2019-03-07 15:19:27 +01:00
for numAttempts := 0 ; numAttempts < 30 ; numAttempts ++ {
2019-05-02 23:53:15 +02:00
wintun , err = makeWintun ( devInfoList , deviceData , true )
2019-03-07 15:19:27 +01:00
if err != nil {
if errWin , ok := err . ( syscall . Errno ) ; ok && errWin == windows . ERROR_FILE_NOT_FOUND {
// Wait and retry. TODO: Wait for a cancellable event instead.
2019-03-08 09:45:59 +01:00
err = errors . New ( "Time-out waiting for adapter to get ready" )
2019-03-10 03:47:54 +01:00
time . Sleep ( time . Second / 4 )
2019-03-07 15:19:27 +01:00
continue
}
}
break
}
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
}
//
// DeleteInterface deletes a TUN interface.
//
// hwndParent is a handle to the top-level window to use for any user
// interface that is related to non-device-specific actions (such as a select-
// device dialog box that uses the global class driver list). This handle is
// 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.
//
func ( wintun * Wintun ) DeleteInterface ( hwndParent uintptr ) ( bool , bool , error ) {
// Create a list of network devices.
2019-03-08 09:42:34 +01:00
devInfoList , err := setupapi . SetupDiGetClassDevsEx ( & deviceClassNetGUID , enumerator , hwndParent , setupapi . DIGCF_PRESENT , setupapi . DevInfo ( 0 ) , machineName )
2019-02-07 04:18:27 +01:00
if err != nil {
2019-03-08 09:45:59 +01:00
return false , false , errors . New ( fmt . Sprintf ( "SetupDiGetClassDevsEx(%v) failed: " , guid . ToString ( & deviceClassNetGUID ) ) + err . Error ( ) )
2019-02-07 04:18:27 +01:00
}
defer devInfoList . Close ( )
// Iterate.
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-04-13 01:58:53 +02:00
if errWin , ok := err . ( syscall . Errno ) ; ok && errWin == windows . ERROR_NO_MORE_ITEMS {
2019-02-07 04:18:27 +01:00
break
}
continue
}
// Get interface ID.
2019-05-02 23:53:15 +02:00
//TODO: Store some ID in the Wintun object such that this call isn't required.
wintun2 , err := makeWintun ( devInfoList , deviceData , false )
2019-02-07 04:18:27 +01:00
if err != nil {
continue
}
2019-03-22 15:28:33 +01:00
if wintun . CfgInstanceID == wintun2 . CfgInstanceID {
2019-02-07 04:18:27 +01:00
// Remove the device.
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.
err = devInfoList . SetClassInstallParams ( deviceData , & removeDeviceParams . ClassInstallHeader , uint32 ( unsafe . Sizeof ( removeDeviceParams ) ) )
if err != nil {
2019-03-08 09:45:59 +01:00
return false , false , errors . New ( "SetupDiSetClassInstallParams failed: " + err . Error ( ) )
2019-02-07 04:18:27 +01:00
}
// Call appropriate class installer.
err = devInfoList . CallClassInstaller ( setupapi . DIF_REMOVE , deviceData )
if err != nil {
2019-03-08 09:45:59 +01:00
return false , false , errors . New ( "SetupDiCallClassInstaller failed: " + err . Error ( ) )
2019-02-07 04:18:27 +01:00
}
// Check if a system reboot is required. (Ignore errors)
if ret , _ := checkReboot ( devInfoList , deviceData ) ; ret {
return true , true , nil
}
return true , false , nil
}
}
return false , false , nil
}
2019-02-07 18:24:28 +01:00
//
// FlushInterface removes all properties from the interface and gives it only a very
// vanilla IPv4 and IPv6 configuration with no addresses of any sort assigned.
//
func ( wintun * Wintun ) FlushInterface ( ) error {
//TODO: implement me!
return nil
}
//
// 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-02-07 04:18:27 +01:00
devInstallParams , err := deviceInfoSet . GetDeviceInstallParams ( deviceInfoData )
if err != nil {
return false , err
}
if ( devInstallParams . Flags & ( setupapi . DI_NEEDREBOOT | setupapi . DI_NEEDRESTART ) ) != 0 {
return true , nil
}
return false , nil
}
//
// GetInterfaceName returns network interface name.
//
func ( wintun * Wintun ) GetInterfaceName ( ) ( string , error ) {
2019-03-31 10:17:11 +02:00
key , err := registryOpenKeyRetry ( registry . LOCAL_MACHINE , wintun . GetNetRegKeyName ( ) , registry . QUERY_VALUE )
2019-02-07 04:18:27 +01:00
if err != nil {
2019-03-07 15:34:34 +01:00
return "" , errors . New ( "Network-specific registry key open failed: " + err . Error ( ) )
2019-02-07 04:18:27 +01:00
}
defer key . Close ( )
// Get the interface name.
return getRegStringValue ( key , "Name" )
}
2019-05-02 23:53:15 +02:00
func ( wintun * Wintun ) getInterfaceNameNoRetry ( ) ( string , error ) {
key , err := registry . OpenKey ( registry . LOCAL_MACHINE , wintun . GetNetRegKeyName ( ) , registry . QUERY_VALUE )
if err != nil {
return "" , errors . New ( "Network-specific registry key open failed: " + err . Error ( ) )
}
defer key . Close ( )
// Get the interface name.
return getRegStringValue ( key , "Name" )
}
2019-02-07 04:18:27 +01:00
//
// SetInterfaceName sets network interface name.
//
func ( wintun * Wintun ) SetInterfaceName ( ifname string ) error {
2019-04-01 12:00:33 +02:00
// We open the registry key before calling HrRename, because the registry open will wait until the key exists.
2019-03-31 10:17:11 +02:00
key , err := registryOpenKeyRetry ( registry . LOCAL_MACHINE , wintun . GetNetRegKeyName ( ) , registry . SET_VALUE )
2019-02-07 04:18:27 +01:00
if err != nil {
2019-03-07 15:34:34 +01:00
return errors . New ( "Network-specific registry key open failed: " + err . Error ( ) )
2019-02-07 04:18:27 +01:00
}
defer key . Close ( )
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
// error because netshell isn't available on servercore.
// TODO: netsh.exe falls back to NciSetConnection in this case. If somebody complains, maybe
// we should do the same.
_ = netshell . HrRenameConnection ( & wintun . CfgInstanceID , windows . StringToUTF16Ptr ( ifname ) )
// Set the interface name. The above line should have done this too, but in case it failed, we force it.
2019-02-07 04:18:27 +01:00
return key . SetStringValue ( "Name" , ifname )
}
2019-03-04 11:58:02 +01:00
//
2019-03-07 15:34:34 +01:00
// GetNetRegKeyName returns interface-specific network registry key name.
2019-03-04 11:58:02 +01:00
//
2019-03-07 15:34:34 +01:00
func ( wintun * Wintun ) GetNetRegKeyName ( ) string {
2019-03-22 15:28:33 +01:00
return fmt . Sprintf ( "SYSTEM\\CurrentControlSet\\Control\\Network\\%v\\%v\\Connection" , guid . ToString ( & deviceClassNetGUID ) , guid . ToString ( & wintun . CfgInstanceID ) )
2019-03-04 11:58:02 +01:00
}
2019-02-07 04:18:27 +01:00
//
// getRegStringValue function reads a string value from registry.
//
// If the value type is REG_EXPAND_SZ the environment variables are expanded.
// Should expanding fail, original string value and nil error are returned.
//
func getRegStringValue ( key registry . Key , name string ) ( string , error ) {
// Read string value.
2019-03-31 10:17:11 +02:00
value , valueType , err := keyGetStringValueRetry ( key , name )
2019-02-07 04:18:27 +01:00
if err != nil {
return "" , err
}
if valueType != registry . EXPAND_SZ {
// Value does not require expansion.
return value , nil
}
valueExp , err := registry . ExpandString ( value )
if err != nil {
// Expanding failed: return original sting value.
return value , nil
}
// Return expanded value.
return valueExp , nil
}
2019-03-04 14:27:16 +01:00
//
// DataFileName returns Wintun device data pipe name.
//
2019-02-07 04:18:27 +01:00
func ( wintun * Wintun ) DataFileName ( ) string {
2019-03-22 15:28:33 +01:00
return fmt . Sprintf ( "\\\\.\\Global\\WINTUN%d" , wintun . LUIDIndex )
2019-02-07 18:24:28 +01:00
}