This repository has been archived by the owner on Nov 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
adapter.go
190 lines (162 loc) · 3.46 KB
/
adapter.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
package netif
import (
"errors"
"fmt"
"net"
)
type AddrSource int
const (
DHCP AddrSource = 1 + iota
STATIC
LOOPBACK
MANUAL
)
type AddrFamily int
const (
INET AddrFamily = 1 + iota
INET6
)
// A representation of a network adapter
type NetworkAdapter struct {
Name string
Hotplug bool
Auto bool
Address net.IP
Netmask net.IP
Network net.IP
Broadcast net.IP
Gateway net.IP
AddrSource AddrSource
AddrFamily AddrFamily
}
type valueValidator struct {
Type string
Required bool
In []string
}
var valueValidators = map[string]valueValidator{
"hotplug": {Type: "bool"},
"auto": {Type: "bool"},
"name": {Required: true},
"address": {Type: "IP"},
"netmask": {Type: "IP"},
"network": {Type: "IP"},
"broadcast": {Type: "IP"},
"gateway": {Type: "IP"},
"addrFam": {In: []string{"inet", "inet6"}},
"source": {In: []string{"dhcp", "static", "loopback", "manual"}},
}
func (na *NetworkAdapter) validateAll() error {
/*for k, v := range valueValidators {
val := nil
}*/
return nil
}
func (na *NetworkAdapter) validateName() error {
return nil
}
func (na *NetworkAdapter) validateAddress() error {
return nil
}
func (na *NetworkAdapter) validateNetmask() error {
return nil
}
func (na *NetworkAdapter) validateNetwork() error {
return nil
}
func (na *NetworkAdapter) validateBroadcast() error {
return nil
}
func (na *NetworkAdapter) validateGateway() error {
return nil
}
func (na *NetworkAdapter) validateAddrFamily() error {
return nil
}
func (na *NetworkAdapter) validateSource() error {
return nil
}
func (na *NetworkAdapter) validateIP(strIP string) (net.IP, error) {
var ip net.IP
if ip = net.ParseIP(strIP); ip == nil {
return nil, errors.New("invalid IP address")
}
return ip, nil
}
func (na *NetworkAdapter) SetAddress(address string) error {
addr, err := na.validateIP(address)
if err != nil {
return err
}
na.Address = addr
return nil
}
func (na *NetworkAdapter) SetNetmask(address string) error {
addr, err := na.validateIP(address)
if err == nil {
na.Netmask = addr
}
return err
}
func (na *NetworkAdapter) SetGateway(address string) error {
addr, err := na.validateIP(address)
if err == nil {
na.Gateway = addr
}
return err
}
func (na *NetworkAdapter) SetBroadcast(address string) error {
addr, err := na.validateIP(address)
if err == nil {
na.Broadcast = addr
}
return err
}
func (na *NetworkAdapter) SetNetwork(address string) error {
addr, err := na.validateIP(address)
if err == nil {
na.Network = addr
}
return err
}
func (na *NetworkAdapter) SetConfigType(configType string) error {
switch configType {
case "DHCP":
na.AddrSource = DHCP
case "STATIC":
na.AddrSource = STATIC
default:
return fmt.Errorf("unexpected configType: %s", configType)
}
return nil
}
func (na *NetworkAdapter) ParseAddressSource(AddressSource string) (AddrSource, error) {
// Parse the address source for an interface
var src AddrSource
switch AddressSource {
case "static":
src = STATIC
case "dhcp":
src = DHCP
case "loopback":
src = LOOPBACK
case "manual":
src = MANUAL
default:
return -1, errors.New("invalid address source")
}
return src, nil
}
func (na *NetworkAdapter) ParseAddressFamily(AddressFamily string) (AddrFamily, error) {
// Parse the address family for an interface
var fam AddrFamily
switch AddressFamily {
case "inet":
fam = INET
case "inet6":
fam = INET6
default:
return -1, errors.New("invalid address family")
}
return fam, nil
}