forked from jaypipes/ghw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnet_windows.go
143 lines (126 loc) · 4.25 KB
/
net_windows.go
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
// Use and distribution licensed under the Apache license version 2.
//
// See the COPYING file in the root project directory for full text.
//
package ghw
import (
"strings"
"github.com/StackExchange/wmi"
)
const wqlNetworkAdapter = "SELECT Description, DeviceID, Index, InterfaceIndex, MACAddress, Manufacturer, Name, NetConnectionID, ProductName, ServiceName FROM Win32_NetworkAdapter"
type win32NetworkAdapter struct {
Description string
DeviceID string
Index uint32
InterfaceIndex uint32
MACAddress string
Manufacturer string
Name string
NetConnectionID string
ProductName string
ServiceName string
}
const wqlNetworkAdapterCnofiguration = "SELECT Caption, Description, DefaultIPGateway, DHCPEnabled, Index, InterfaceIndex, IPAddress FROM Win32_NetworkAdapterConfiguration"
type win32NetworkAdapterConfiguration struct {
Caption string
Description string
DefaultIPGateway []string
DHCPEnabled bool
Index uint32
InterfaceIndex uint32
IPAddress []string
}
const wqlIP4RouteTable = "SELECT Caption, Description, Destination, Information, InterfaceIndex, Mask, Metric1, Metric2, Metric3, Metric4, Metric5, Name, NextHop, Protocol, Status, Type FROM Win32_IP4RouteTable"
type win32IP4RouteTable struct {
Caption string
Description string
Destination string
Information string
InterfaceIndex int32
Mask string
Metric1 int32
Metric2 int32
Metric3 int32
Metric4 int32
Metric5 int32
Name string
NextHop string
Protocol uint32
Status string
Type uint32
}
func (ctx *context) netFillInfo(info *NetworkInfo) error {
// Getting info from WMI
var win32NetDescriptions []win32NetworkAdapter
if err := wmi.Query(wqlNetworkAdapter, &win32NetDescriptions); err != nil {
return err
}
var win32NetConfigurationDescriptions []win32NetworkAdapterConfiguration
if err := wmi.Query(wqlNetworkAdapterCnofiguration, &win32NetConfigurationDescriptions); err != nil {
return err
}
var win32IP4RouteTableDescriptions []win32IP4RouteTable
if err := wmi.Query(wqlIP4RouteTable, &win32IP4RouteTableDescriptions); err != nil {
return err
}
info.NICs = ctx.nics(win32NetDescriptions, win32NetConfigurationDescriptions, win32IP4RouteTableDescriptions)
return nil
}
func (ctx *context) nics(win32NetDescriptions []win32NetworkAdapter, win32NetConfigurationDescriptions []win32NetworkAdapterConfiguration, win32IP4RouteTableDescriptions []win32IP4RouteTable) []*NIC {
// Converting into standard structures
nics := make([]*NIC, 0)
for _, nicDescription := range win32NetDescriptions {
nic := &NIC{
Name: ctx.netDeviceName(nicDescription),
MacAddress: nicDescription.MACAddress,
IsVirtual: false,
Capabilities: []*NICCapability{},
}
// Building NIC configurations
for _, configDescription := range win32NetConfigurationDescriptions {
// Looking for configurations
if nicDescription.InterfaceIndex == configDescription.InterfaceIndex {
ipv4, ipv6 := ctx.netConfigIP(configDescription.IPAddress)
var configuration = &NICConfiguration{
DHCPenabled: configDescription.DHCPEnabled,
IPv4: ipv4,
IPv6: ipv6,
}
// Looking for gateway
for _, routeDescription := range win32IP4RouteTableDescriptions {
if nicDescription.InterfaceIndex == uint32(routeDescription.InterfaceIndex) {
if routeDescription.Destination == "0.0.0.0" && routeDescription.Mask == "0.0.0.0" {
configuration.Gateway = routeDescription.NextHop
break
}
}
}
// Appending configuration to NIC configurations
nic.Configurations = append(nic.Configurations, configuration)
}
}
// Appenging NIC to NICs
nics = append(nics, nic)
}
return nics
}
func (ctx *context) netDeviceName(description win32NetworkAdapter) string {
var name string
if strings.TrimSpace(description.NetConnectionID) != "" {
name = description.NetConnectionID + " - " + description.Description
} else {
name = description.Description
}
return name
}
func (ctx *context) netConfigIP(IPs []string) (string, string) {
var IPv4 string
var IPv6 string
if len(IPs) > 0 {
IPv4 = IPs[0]
}
if len(IPs) > 1 {
IPv6 = IPs[1]
}
return IPv4, IPv6
}