forked from cloudfoundry/bosh-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ubuntu_net_manager.go
468 lines (378 loc) · 14.9 KB
/
ubuntu_net_manager.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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
package net
import (
"bytes"
"path"
"sort"
"strings"
"text/template"
bosharp "github.com/cloudfoundry/bosh-agent/platform/net/arp"
boship "github.com/cloudfoundry/bosh-agent/platform/net/ip"
boshsettings "github.com/cloudfoundry/bosh-agent/settings"
bosherr "github.com/cloudfoundry/bosh-utils/errors"
boshlog "github.com/cloudfoundry/bosh-utils/logger"
boshsys "github.com/cloudfoundry/bosh-utils/system"
)
const UbuntuNetManagerLogTag = "UbuntuNetManager"
type UbuntuNetManager struct {
cmdRunner boshsys.CmdRunner
fs boshsys.FileSystem
ipResolver boship.Resolver
interfaceConfigurationCreator InterfaceConfigurationCreator
interfaceAddressesValidator boship.InterfaceAddressesValidator
dnsValidator DNSValidator
addressBroadcaster bosharp.AddressBroadcaster
kernelIPv6 KernelIPv6
logger boshlog.Logger
}
func NewUbuntuNetManager(
fs boshsys.FileSystem,
cmdRunner boshsys.CmdRunner,
ipResolver boship.Resolver,
interfaceConfigurationCreator InterfaceConfigurationCreator,
interfaceAddressesValidator boship.InterfaceAddressesValidator,
dnsValidator DNSValidator,
addressBroadcaster bosharp.AddressBroadcaster,
kernelIPv6 KernelIPv6,
logger boshlog.Logger,
) Manager {
return UbuntuNetManager{
cmdRunner: cmdRunner,
fs: fs,
ipResolver: ipResolver,
interfaceConfigurationCreator: interfaceConfigurationCreator,
interfaceAddressesValidator: interfaceAddressesValidator,
dnsValidator: dnsValidator,
addressBroadcaster: addressBroadcaster,
kernelIPv6: kernelIPv6,
logger: logger,
}
}
// DHCP Config file - /etc/dhcp/dhclient.conf
// Ubuntu 14.04 accepts several DNS as a list in a single prepend directive
const ubuntuDHCPConfigTemplate = `# Generated by bosh-agent
option rfc3442-classless-static-routes code 121 = array of unsigned integer 8;
send host-name "<hostname>";
request subnet-mask, broadcast-address, time-offset, routers,
domain-name, domain-name-servers, domain-search, host-name,
netbios-name-servers, netbios-scope, interface-mtu,
rfc3442-classless-static-routes, ntp-servers;
{{ if . }}
prepend domain-name-servers {{ . }};{{ end }}
`
func (net UbuntuNetManager) ComputeNetworkConfig(networks boshsettings.Networks) ([]StaticInterfaceConfiguration, []DHCPInterfaceConfiguration, []string, error) {
nonVipNetworks := boshsettings.Networks{}
for networkName, networkSettings := range networks {
if networkSettings.IsVIP() {
continue
}
nonVipNetworks[networkName] = networkSettings
}
staticConfigs, dhcpConfigs, err := net.buildInterfaces(nonVipNetworks)
if err != nil {
return nil, nil, nil, err
}
dnsNetwork, _ := nonVipNetworks.DefaultNetworkFor("dns")
dnsServers := dnsNetwork.DNS
return staticConfigs, dhcpConfigs, dnsServers, nil
}
func (net UbuntuNetManager) SetupIPv6(config boshsettings.IPv6, stopCh <-chan struct{}) error {
if config.Enable {
return net.kernelIPv6.Enable(stopCh)
}
return nil
}
func (net UbuntuNetManager) SetupNetworking(networks boshsettings.Networks, errCh chan error) error {
if networks.IsPreconfigured() {
// Note in this case IPs are not broadcast
return net.writeResolvConf(networks)
}
staticConfigs, dhcpConfigs, dnsServers, err := net.ComputeNetworkConfig(networks)
if err != nil {
return bosherr.WrapError(err, "Computing network configuration")
}
if StaticInterfaceConfigurations(staticConfigs).HasVersion6() {
err := net.kernelIPv6.Enable(make(chan struct{}))
if err != nil {
return bosherr.WrapError(err, "Enabling IPv6 in kernel")
}
}
changed, err := net.writeNetConfigs(dhcpConfigs, staticConfigs, dnsServers, boshsys.ConvergeFileContentsOpts{DryRun: true})
if err != nil {
return bosherr.WrapError(err, "Determining if network configs have changed")
}
if changed {
err = net.removeDhcpDNSConfiguration()
if err != nil {
return err
}
net.stopNetworkingInterfaces(dhcpConfigs, staticConfigs)
_, err = net.writeNetConfigs(dhcpConfigs, staticConfigs, dnsServers, boshsys.ConvergeFileContentsOpts{})
if err != nil {
return bosherr.WrapError(err, "Updating network configs")
}
net.startNetworkingInterfaces(dhcpConfigs, staticConfigs)
}
staticAddresses, dynamicAddresses := net.ifaceAddresses(staticConfigs, dhcpConfigs)
err = net.interfaceAddressesValidator.Validate(staticAddresses)
if err != nil {
return bosherr.WrapError(err, "Validating static network configuration")
}
err = net.dnsValidator.Validate(dnsServers)
if err != nil {
return bosherr.WrapError(err, "Validating dns configuration")
}
net.broadcastIps(append(staticAddresses, dynamicAddresses...), errCh)
return nil
}
func (net UbuntuNetManager) writeNetConfigs(
dhcpConfigs DHCPInterfaceConfigurations,
staticConfigs StaticInterfaceConfigurations,
dnsServers []string,
opts boshsys.ConvergeFileContentsOpts) (bool, error) {
interfacesChanged, err := net.writeNetworkInterfaces(dhcpConfigs, staticConfigs, dnsServers, opts)
if err != nil {
return false, bosherr.WrapError(err, "Writing network configuration")
}
dhcpChanged := false
if len(dhcpConfigs) > 0 {
dhcpChanged, err = net.writeDHCPConfiguration(dnsServers, opts)
if err != nil {
return false, err
}
}
return (interfacesChanged || dhcpChanged), nil
}
func (net UbuntuNetManager) GetConfiguredNetworkInterfaces() ([]string, error) {
interfaces := []string{}
interfacesByMacAddress, err := net.detectMacAddresses()
if err != nil {
return interfaces, bosherr.WrapError(err, "Getting network interfaces")
}
for _, iface := range interfacesByMacAddress {
_, stderr, _, err := net.cmdRunner.RunCommand("ifup", "--no-act", iface)
if err != nil {
return interfaces, bosherr.WrapErrorf(err, "Getting interface status: '%s'", stderr)
}
if !strings.Contains(stderr, "unknown interface") {
interfaces = append(interfaces, iface)
}
}
return interfaces, nil
}
func (net UbuntuNetManager) removeDhcpDNSConfiguration() error {
// Removing dhcp configuration from /etc/network/interfaces
// and restarting network does not stop dhclient if dhcp
// is no longer needed. See https://bugs.launchpad.net/ubuntu/+source/dhcp3/+bug/38140
_, _, _, err := net.cmdRunner.RunCommand("pkill", "dhclient")
if err != nil {
net.logger.Error(UbuntuNetManagerLogTag, "Ignoring failure calling 'pkill dhclient': %s", err)
}
interfacesByMacAddress, err := net.detectMacAddresses()
if err != nil {
return err
}
for _, ifaceName := range interfacesByMacAddress {
// Explicitly delete the resolvconf record about given iface
// It seems to hold on to old dhclient records after dhcp configuration
// is removed from /etc/network/interfaces.
_, _, _, err = net.cmdRunner.RunCommand("resolvconf", "-d", ifaceName+".dhclient")
if err != nil {
net.logger.Error(UbuntuNetManagerLogTag, "Ignoring failure calling 'resolvconf -d %s.dhclient': %s", ifaceName, err)
}
}
return nil
}
func (net UbuntuNetManager) buildInterfaces(networks boshsettings.Networks) ([]StaticInterfaceConfiguration, []DHCPInterfaceConfiguration, error) {
interfacesByMacAddress, err := net.detectMacAddresses()
if err != nil {
return nil, nil, bosherr.WrapError(err, "Getting network interfaces")
}
// if len(interfacesByMacAddress) == 0 {
// return nil, nil, bosherr.Error("No network interfaces found")
// }
staticConfigs, dhcpConfigs, err := net.interfaceConfigurationCreator.CreateInterfaceConfigurations(networks, interfacesByMacAddress)
if err != nil {
return nil, nil, bosherr.WrapError(err, "Creating interface configurations")
}
return staticConfigs, dhcpConfigs, nil
}
func (net UbuntuNetManager) ifaceAddresses(staticConfigs []StaticInterfaceConfiguration, dhcpConfigs []DHCPInterfaceConfiguration) ([]boship.InterfaceAddress, []boship.InterfaceAddress) {
staticAddresses := []boship.InterfaceAddress{}
for _, iface := range staticConfigs {
staticAddresses = append(staticAddresses, boship.NewSimpleInterfaceAddress(iface.Name, iface.Address))
}
dynamicAddresses := []boship.InterfaceAddress{}
for _, iface := range dhcpConfigs {
dynamicAddresses = append(dynamicAddresses, boship.NewResolvingInterfaceAddress(iface.Name, net.ipResolver))
}
return staticAddresses, dynamicAddresses
}
func (net UbuntuNetManager) broadcastIps(addresses []boship.InterfaceAddress, errCh chan error) {
go func() {
net.addressBroadcaster.BroadcastMACAddresses(addresses)
if errCh != nil {
errCh <- nil
}
}()
}
func (net UbuntuNetManager) stopNetworkingInterfaces(dhcpConfigs []DHCPInterfaceConfiguration, staticConfigs []StaticInterfaceConfiguration) {
net.logger.Debug(UbuntuNetManagerLogTag, "Stopping network interfaces")
ifaceNames := net.ifaceNames(dhcpConfigs, staticConfigs)
_, _, _, err := net.cmdRunner.RunCommand("ifdown", append([]string{"--force"}, ifaceNames...)...)
if err != nil {
net.logger.Error(UbuntuNetManagerLogTag, "Ignoring ifdown failure: %s", err.Error())
}
}
func (net UbuntuNetManager) startNetworkingInterfaces(dhcpConfigs []DHCPInterfaceConfiguration, staticConfigs []StaticInterfaceConfiguration) {
net.logger.Debug(UbuntuNetManagerLogTag, "Starting network interfaces")
ifaceNames := net.ifaceNames(dhcpConfigs, staticConfigs)
_, _, _, err := net.cmdRunner.RunCommand("ifup", append([]string{"--force"}, ifaceNames...)...)
if err != nil {
net.logger.Error(UbuntuNetManagerLogTag, "Ignoring ifup failure: %s", err.Error())
}
}
func (net UbuntuNetManager) writeDHCPConfiguration(dnsServers []string, opts boshsys.ConvergeFileContentsOpts) (bool, error) {
buffer := bytes.NewBuffer([]byte{})
t := template.Must(template.New("dhcp-config").Parse(ubuntuDHCPConfigTemplate))
// Keep DNS servers in the order specified by the network
// because they are added by a *single* DHCP's prepend command
dnsServersList := strings.Join(dnsServers, ", ")
err := t.Execute(buffer, dnsServersList)
if err != nil {
return false, bosherr.WrapError(err, "Generating config from template")
}
dhclientConfigFile := "/etc/dhcp/dhclient.conf"
changed, err := net.fs.ConvergeFileContents(dhclientConfigFile, buffer.Bytes(), opts)
if err != nil {
return changed, bosherr.WrapErrorf(err, "Writing to %s", dhclientConfigFile)
}
return changed, nil
}
type networkInterfaceConfig struct {
DNSServers []string
StaticConfigs StaticInterfaceConfigurations
DHCPConfigs DHCPInterfaceConfigurations
HasDNSNameServers bool
}
func (c networkInterfaceConfig) HasVersion6() bool {
return c.StaticConfigs.HasVersion6() || c.DHCPConfigs.HasVersion6()
}
func (net UbuntuNetManager) writeNetworkInterfaces(
dhcpConfigs DHCPInterfaceConfigurations,
staticConfigs StaticInterfaceConfigurations,
dnsServers []string,
opts boshsys.ConvergeFileContentsOpts) (bool, error) {
sort.Stable(dhcpConfigs)
sort.Stable(staticConfigs)
networkInterfaceValues := networkInterfaceConfig{
DHCPConfigs: dhcpConfigs,
StaticConfigs: staticConfigs,
HasDNSNameServers: true,
DNSServers: dnsServers,
}
buffer := bytes.NewBuffer([]byte{})
t := template.Must(template.New("network-interfaces").Parse(networkInterfacesTemplate))
err := t.Execute(buffer, networkInterfaceValues)
if err != nil {
return false, bosherr.WrapError(err, "Generating config from template")
}
changed, err := net.fs.ConvergeFileContents("/etc/network/interfaces", buffer.Bytes(), opts)
if err != nil {
return changed, bosherr.WrapError(err, "Writing to /etc/network/interfaces")
}
return changed, nil
}
const networkInterfacesTemplate = `# Generated by bosh-agent
auto lo
iface lo inet loopback
{{ range .DHCPConfigs }}
auto {{ .Name }}
iface {{ .Name }} inet dhcp
{{ end }}{{ range .StaticConfigs }}
auto {{ .Name }}
iface {{ .Name }} inet{{ .Version6 }} static
address {{ .Address }}{{ if not .IsVersion6 }}
network {{ .Network }}{{ end }}
netmask {{ .NetmaskOrLen }}{{ if .IsDefaultForGateway }}{{ if not .IsVersion6 }}
broadcast {{ .Broadcast }}{{ end }}
gateway {{ .Gateway }}{{ end }}
{{ end }}{{ if .HasVersion6 }}
accept_ra 1{{ end }}{{ if .DNSServers }}
dns-nameservers{{ range .DNSServers }} {{ . }}{{ end }}{{ end }}`
func (net UbuntuNetManager) detectMacAddresses() (map[string]string, error) {
addresses := map[string]string{}
filePaths, err := net.fs.Glob("/sys/class/net/*")
if err != nil {
return addresses, bosherr.WrapError(err, "Getting file list from /sys/class/net")
}
var macAddress string
for _, filePath := range filePaths {
isPhysicalDevice := net.fs.FileExists(path.Join(filePath, "device"))
if isPhysicalDevice {
macAddress, err = net.fs.ReadFileString(path.Join(filePath, "address"))
if err != nil {
return addresses, bosherr.WrapError(err, "Reading mac address from file")
}
macAddress = strings.Trim(macAddress, "\n")
interfaceName := path.Base(filePath)
addresses[macAddress] = interfaceName
}
}
return addresses, nil
}
func (net UbuntuNetManager) ifaceNames(dhcpConfigs DHCPInterfaceConfigurations, staticConfigs StaticInterfaceConfigurations) []string {
ifaceNames := []string{}
for _, config := range dhcpConfigs {
ifaceNames = append(ifaceNames, config.Name)
}
for _, config := range staticConfigs {
ifaceNames = append(ifaceNames, config.Name)
}
return ifaceNames
}
func (net UbuntuNetManager) writeResolvConf(networks boshsettings.Networks) error {
buffer := bytes.NewBuffer([]byte{})
const resolvConfTemplate = `# Generated by bosh-agent
{{ range .DNSServers }}nameserver {{ . }}
{{ end }}`
t := template.Must(template.New("resolv-conf").Parse(resolvConfTemplate))
// Keep DNS servers in the order specified by the network
dnsNetwork, _ := networks.DefaultNetworkFor("dns")
type dnsConfigArg struct {
DNSServers []string
}
dnsServersArg := dnsConfigArg{dnsNetwork.DNS}
err := t.Execute(buffer, dnsServersArg)
if err != nil {
return bosherr.WrapError(err, "Generating DNS config from template")
}
if len(dnsNetwork.DNS) > 0 {
// Write out base so that releases may overwrite head
err = net.fs.WriteFile("/etc/resolvconf/resolv.conf.d/base", buffer.Bytes())
if err != nil {
return bosherr.WrapError(err, "Writing to /etc/resolvconf/resolv.conf.d/base")
}
} else {
// For the first time before resolv.conf is symlinked to /run/...
// inherit possibly configured resolv.conf
targetPath, err := net.fs.ReadAndFollowLink("/etc/resolv.conf")
if err != nil {
return bosherr.WrapError(err, "Reading /etc/resolv.conf symlink")
}
if targetPath == "/etc/resolv.conf" {
err := net.fs.CopyFile("/etc/resolv.conf", "/etc/resolvconf/resolv.conf.d/base")
if err != nil {
return bosherr.WrapError(err, "Copying /etc/resolv.conf for backwards compat")
}
}
}
err = net.fs.Symlink("/run/resolvconf/resolv.conf", "/etc/resolv.conf")
if err != nil {
return bosherr.WrapError(err, "Setting up /etc/resolv.conf symlink")
}
_, _, _, err = net.cmdRunner.RunCommand("resolvconf", "-u")
if err != nil {
return bosherr.WrapError(err, "Updating resolvconf")
}
return nil
}