2019-02-01 10:58:06 +01:00
|
|
|
/* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package setupapi
|
|
|
|
|
|
|
|
import (
|
2019-02-04 08:23:55 +01:00
|
|
|
"strings"
|
2019-02-01 10:58:06 +01:00
|
|
|
"syscall"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"golang.org/x/sys/windows"
|
|
|
|
)
|
|
|
|
|
2019-02-01 12:17:09 +01:00
|
|
|
var deviceClassNetGUID = windows.GUID{0x4d36e972, 0xe325, 0x11ce, [8]byte{0xbf, 0xc1, 0x08, 0x00, 0x2b, 0xe1, 0x03, 0x18}}
|
2019-02-01 11:39:57 +01:00
|
|
|
var computerName string
|
2019-02-01 10:58:06 +01:00
|
|
|
|
2019-02-01 11:39:57 +01:00
|
|
|
func init() {
|
|
|
|
computerName, _ = windows.ComputerName()
|
|
|
|
}
|
2019-02-01 10:58:06 +01:00
|
|
|
|
2019-02-04 08:39:31 +01:00
|
|
|
func TestSetupDiClassNameFromGuidEx(t *testing.T) {
|
2019-02-04 11:42:51 +01:00
|
|
|
deviceClassNetName, err := SetupDiClassNameFromGuidEx(&deviceClassNetGUID, "")
|
2019-02-04 08:23:55 +01:00
|
|
|
if err != nil {
|
2019-02-04 08:39:31 +01:00
|
|
|
t.Errorf("Error calling SetupDiClassNameFromGuidEx: %s", err.Error())
|
2019-02-04 11:42:51 +01:00
|
|
|
} else if strings.ToLower(deviceClassNetName) != "net" {
|
2019-02-04 08:39:31 +01:00
|
|
|
t.Errorf("SetupDiClassNameFromGuidEx(%x) should return \"Net\"", deviceClassNetGUID)
|
2019-02-04 08:23:55 +01:00
|
|
|
}
|
|
|
|
|
2019-02-04 11:42:51 +01:00
|
|
|
deviceClassNetName, err = SetupDiClassNameFromGuidEx(&deviceClassNetGUID, computerName)
|
2019-02-04 08:39:31 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiClassNameFromGuidEx: %s", err.Error())
|
2019-02-04 11:42:51 +01:00
|
|
|
} else if strings.ToLower(deviceClassNetName) != "net" {
|
2019-02-04 08:39:31 +01:00
|
|
|
t.Errorf("SetupDiClassNameFromGuidEx(%x) should return \"Net\"", deviceClassNetGUID)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = SetupDiClassNameFromGuidEx(nil, "")
|
2019-02-04 08:23:55 +01:00
|
|
|
if err == nil {
|
2019-02-04 08:39:31 +01:00
|
|
|
t.Errorf("SetupDiClassNameFromGuidEx(nil) should fail")
|
2019-02-04 08:23:55 +01:00
|
|
|
} else {
|
|
|
|
if errWin, ok := err.(syscall.Errno); !ok || errWin != 1784 /*ERROR_INVALID_USER_BUFFER*/ {
|
2019-02-04 08:39:31 +01:00
|
|
|
t.Errorf("SetupDiClassNameFromGuidEx(nil) should fail with ERROR_INVALID_USER_BUFFER")
|
2019-02-04 08:23:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-04 09:36:42 +01:00
|
|
|
func TestSetupDiClassGuidsFromNameEx(t *testing.T) {
|
|
|
|
ClassGUIDs, err := SetupDiClassGuidsFromNameEx("Net", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiClassGuidsFromNameEx: %s", err.Error())
|
|
|
|
} else {
|
|
|
|
found := false
|
|
|
|
for i := range ClassGUIDs {
|
|
|
|
if ClassGUIDs[i] == deviceClassNetGUID {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
t.Errorf("SetupDiClassGuidsFromNameEx(\"Net\") should return %x", deviceClassNetGUID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ClassGUIDs, err = SetupDiClassGuidsFromNameEx("foobar-34274a51-a6e6-45f0-80d6-c62be96dd5fe", computerName)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiClassGuidsFromNameEx: %s", err.Error())
|
|
|
|
} else if len(ClassGUIDs) != 0 {
|
|
|
|
t.Errorf("SetupDiClassGuidsFromNameEx(\"foobar-34274a51-a6e6-45f0-80d6-c62be96dd5fe\") should return an empty GUID set")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-01 11:39:57 +01:00
|
|
|
func TestSetupDiGetClassDevsEx(t *testing.T) {
|
2019-02-01 12:17:09 +01:00
|
|
|
devInfoList, err := SetupDiGetClassDevsEx(&deviceClassNetGUID, "PCI", 0, DIGCF_PRESENT, DevInfo(0), computerName)
|
2019-02-01 10:58:06 +01:00
|
|
|
if err == nil {
|
2019-02-01 12:17:09 +01:00
|
|
|
devInfoList.Close()
|
2019-02-01 10:58:06 +01:00
|
|
|
} else {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
2019-02-01 12:17:09 +01:00
|
|
|
devInfoList, err = SetupDiGetClassDevsEx(nil, "", 0, DIGCF_PRESENT, DevInfo(0), "")
|
2019-02-01 10:58:06 +01:00
|
|
|
if err == nil {
|
2019-02-01 12:17:09 +01:00
|
|
|
devInfoList.Close()
|
2019-02-01 10:58:06 +01:00
|
|
|
t.Errorf("SetupDiGetClassDevsEx(nil, ...) should fail")
|
|
|
|
} else {
|
|
|
|
if errWin, ok := err.(syscall.Errno); !ok || errWin != 87 /*ERROR_INVALID_PARAMETER*/ {
|
|
|
|
t.Errorf("SetupDiGetClassDevsEx(nil, ...) should fail with ERROR_INVALID_PARAMETER")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-01 11:39:57 +01:00
|
|
|
|
|
|
|
func TestSetupDiGetDeviceInfoListDetailLocal(t *testing.T) {
|
2019-02-01 12:17:09 +01:00
|
|
|
devInfoList, err := SetupDiGetClassDevsEx(&deviceClassNetGUID, "", 0, DIGCF_PRESENT, DevInfo(0), "")
|
2019-02-01 11:39:57 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
2019-02-01 13:00:44 +01:00
|
|
|
defer devInfoList.Close()
|
2019-02-01 11:39:57 +01:00
|
|
|
|
2019-02-01 12:17:09 +01:00
|
|
|
data, err := SetupDiGetDeviceInfoListDetail(devInfoList)
|
2019-02-01 11:39:57 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetDeviceInfoListDetail: %s", err.Error())
|
2019-02-04 11:45:37 +01:00
|
|
|
} else {
|
|
|
|
if data.ClassGUID != deviceClassNetGUID {
|
|
|
|
t.Error("SetupDiGetDeviceInfoListDetail returned different class GUID")
|
|
|
|
}
|
2019-02-01 11:39:57 +01:00
|
|
|
|
2019-02-04 11:45:37 +01:00
|
|
|
if data.RemoteMachineHandle != windows.Handle(0) {
|
|
|
|
t.Error("SetupDiGetDeviceInfoListDetail returned non-NULL remote machine handle")
|
|
|
|
}
|
2019-02-01 11:39:57 +01:00
|
|
|
|
2019-02-04 11:45:37 +01:00
|
|
|
if data.RemoteMachineName != "" {
|
|
|
|
t.Error("SetupDiGetDeviceInfoListDetail returned non-NULL remote machine name")
|
|
|
|
}
|
2019-02-01 11:39:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSetupDiGetDeviceInfoListDetailRemote(t *testing.T) {
|
2019-02-01 12:17:09 +01:00
|
|
|
devInfoList, err := SetupDiGetClassDevsEx(&deviceClassNetGUID, "", 0, DIGCF_PRESENT, DevInfo(0), computerName)
|
2019-02-01 11:39:57 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
2019-02-01 13:00:44 +01:00
|
|
|
defer devInfoList.Close()
|
2019-02-01 11:39:57 +01:00
|
|
|
|
2019-02-01 12:17:09 +01:00
|
|
|
data, err := SetupDiGetDeviceInfoListDetail(devInfoList)
|
2019-02-01 11:39:57 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetDeviceInfoListDetail: %s", err.Error())
|
2019-02-04 11:45:37 +01:00
|
|
|
} else {
|
|
|
|
if data.ClassGUID != deviceClassNetGUID {
|
|
|
|
t.Error("SetupDiGetDeviceInfoListDetail returned different class GUID")
|
|
|
|
}
|
2019-02-01 11:39:57 +01:00
|
|
|
|
2019-02-04 11:45:37 +01:00
|
|
|
if data.RemoteMachineHandle == windows.Handle(0) {
|
|
|
|
t.Error("SetupDiGetDeviceInfoListDetail returned NULL remote machine handle")
|
|
|
|
}
|
2019-02-01 11:39:57 +01:00
|
|
|
|
2019-02-04 11:45:37 +01:00
|
|
|
if data.RemoteMachineName != computerName {
|
|
|
|
t.Error("SetupDiGetDeviceInfoListDetail returned different remote machine name")
|
|
|
|
}
|
2019-02-01 11:39:57 +01:00
|
|
|
}
|
|
|
|
}
|
2019-02-01 12:17:09 +01:00
|
|
|
|
|
|
|
func TestSetupDiEnumDeviceInfo(t *testing.T) {
|
|
|
|
devInfoList, err := SetupDiGetClassDevsEx(&deviceClassNetGUID, "", 0, DIGCF_PRESENT, DevInfo(0), "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
2019-02-01 13:00:44 +01:00
|
|
|
defer devInfoList.Close()
|
2019-02-01 12:17:09 +01:00
|
|
|
|
|
|
|
for i := 0; true; i++ {
|
2019-02-04 11:40:44 +01:00
|
|
|
data, err := SetupDiEnumDeviceInfo(devInfoList, i)
|
2019-02-01 12:17:09 +01:00
|
|
|
if err != nil {
|
|
|
|
if errWin, ok := err.(syscall.Errno); ok && errWin == 259 /*ERROR_NO_MORE_ITEMS*/ {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if data.ClassGUID != deviceClassNetGUID {
|
|
|
|
t.Error("SetupDiEnumDeviceInfo returned different class GUID")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-01 13:00:44 +01:00
|
|
|
|
|
|
|
func TestSetupDiOpenDevRegKey(t *testing.T) {
|
|
|
|
devInfoList, err := SetupDiGetClassDevsEx(&deviceClassNetGUID, "", 0, DIGCF_PRESENT, DevInfo(0), "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
|
|
|
defer devInfoList.Close()
|
|
|
|
|
|
|
|
for i := 0; true; i++ {
|
2019-02-04 11:40:44 +01:00
|
|
|
data, err := SetupDiEnumDeviceInfo(devInfoList, i)
|
2019-02-01 13:00:44 +01:00
|
|
|
if err != nil {
|
|
|
|
if errWin, ok := err.(syscall.Errno); ok && errWin == 259 /*ERROR_NO_MORE_ITEMS*/ {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-02-04 11:40:44 +01:00
|
|
|
key, err := SetupDiOpenDevRegKey(devInfoList, data, DICS_FLAG_GLOBAL, 0, DIREG_DRV, windows.KEY_READ)
|
2019-02-01 13:00:44 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiOpenDevRegKey: %s", err.Error())
|
|
|
|
}
|
|
|
|
defer key.Close()
|
|
|
|
}
|
|
|
|
}
|
2019-02-01 13:59:53 +01:00
|
|
|
|
|
|
|
func TestSetupDiGetDeviceInstallParams(t *testing.T) {
|
|
|
|
devInfoList, err := SetupDiGetClassDevsEx(&deviceClassNetGUID, "", 0, DIGCF_PRESENT, DevInfo(0), "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
|
|
|
defer devInfoList.Close()
|
|
|
|
|
|
|
|
for i := 0; true; i++ {
|
2019-02-04 11:40:44 +01:00
|
|
|
data, err := SetupDiEnumDeviceInfo(devInfoList, i)
|
2019-02-01 13:59:53 +01:00
|
|
|
if err != nil {
|
|
|
|
if errWin, ok := err.(syscall.Errno); ok && errWin == 259 /*ERROR_NO_MORE_ITEMS*/ {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-02-04 11:40:44 +01:00
|
|
|
_, err = SetupDiGetDeviceInstallParams(devInfoList, data)
|
2019-02-01 13:59:53 +01:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiOpenDevRegKey: %s", err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|