forked from ligato/vpp-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinuxplugin_init.go
269 lines (224 loc) · 8.93 KB
/
linuxplugin_init.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
// Copyright (c) 2017 Cisco and/or its affiliates.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at:
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package linux implements the Linux plugin that handles management
// of Linux VETH interfaces.
package linux
import (
"context"
"sync"
"github.com/ligato/cn-infra/datasync"
"github.com/ligato/cn-infra/health/statuscheck"
"github.com/ligato/cn-infra/infra"
"github.com/ligato/cn-infra/servicelabel"
"github.com/ligato/cn-infra/utils/safeclose"
"github.com/ligato/vpp-agent/idxvpp/nametoidx"
"github.com/ligato/vpp-agent/plugins/linux/ifplugin"
"github.com/ligato/vpp-agent/plugins/linux/ifplugin/ifaceidx"
ifLinuxcalls "github.com/ligato/vpp-agent/plugins/linux/ifplugin/linuxcalls"
"github.com/ligato/vpp-agent/plugins/linux/l3plugin"
"github.com/ligato/vpp-agent/plugins/linux/l3plugin/l3idx"
l3Linuxcalls "github.com/ligato/vpp-agent/plugins/linux/l3plugin/linuxcalls"
"github.com/ligato/vpp-agent/plugins/linux/nsplugin"
"github.com/ligato/vpp-agent/plugins/vpp"
ifaceVPP "github.com/ligato/vpp-agent/plugins/vpp/ifplugin/ifaceidx"
)
// Plugin implements Plugin interface, therefore it can be loaded with other plugins.
type Plugin struct {
Deps
disabled bool
// Configurators
ifConfigurator *ifplugin.LinuxInterfaceConfigurator
ifLinuxStateUpdater *ifplugin.LinuxInterfaceStateUpdater
arpConfigurator *l3plugin.LinuxArpConfigurator
routeConfigurator *l3plugin.LinuxRouteConfigurator
// Shared indexes
ifIndexes ifaceidx.LinuxIfIndexRW
vppIfIndexes ifaceVPP.SwIfIndex
// Interface/namespace handling
ifHandler ifLinuxcalls.NetlinkAPI
nsHandler nsplugin.NamespaceAPI
// Channels (watch, notification, ...) which should be closed
ifIndexesWatchChan chan ifaceidx.LinuxIfIndexDto
vppIfIndexesWatchChan chan ifaceVPP.SwIfIdxDto
ifLinuxNotifChan chan *ifplugin.LinuxInterfaceStateNotification
ifMicroserviceNotif chan *nsplugin.MicroserviceEvent
resyncChan chan datasync.ResyncEvent
changeChan chan datasync.ChangeEvent // TODO dedicated type abstracted from ETCD
msChan chan *nsplugin.MicroserviceCtx
// Registrations
watchDataReg datasync.WatchRegistration
// Common
cancel context.CancelFunc // Cancel can be used to cancel all goroutines and their jobs inside of the plugin.
wg sync.WaitGroup // Wait group allows to wait until all goroutines of the plugin have finished.
}
// Deps groups injected dependencies of plugin
// so that they do not mix with other plugin fields.
type Deps struct {
infra.PluginDeps
StatusCheck statuscheck.PluginStatusWriter
ServiceLabel servicelabel.ReaderAPI
Watcher datasync.KeyValProtoWatcher // injected
VPP *vpp.Plugin
WatchEventsMutex *sync.Mutex
}
// Config holds the linuxplugin configuration.
type Config struct {
Stopwatch bool `json:"stopwatch"`
Disabled bool `json:"disabled"`
}
// GetLinuxIfIndexes gives access to mapping of logical names (used in ETCD configuration)
// interface indexes.
func (plugin *Plugin) GetLinuxIfIndexes() ifaceidx.LinuxIfIndex {
return plugin.ifIndexes
}
// GetLinuxARPIndexes gives access to mapping of logical names (used in ETCD configuration) to corresponding Linux
// ARP entry indexes.
func (plugin *Plugin) GetLinuxARPIndexes() l3idx.LinuxARPIndex {
return plugin.arpConfigurator.GetArpIndexes()
}
// GetLinuxRouteIndexes gives access to mapping of logical names (used in ETCD configuration) to corresponding Linux
// route indexes.
func (plugin *Plugin) GetLinuxRouteIndexes() l3idx.LinuxRouteIndex {
return plugin.routeConfigurator.GetRouteIndexes()
}
// GetNamespaceHandler gives access to namespace API which allows plugins to manipulate with linux namespaces
func (plugin *Plugin) GetNamespaceHandler() nsplugin.NamespaceAPI {
return plugin.nsHandler
}
// InjectVppIfIndexes injects VPP interfaces mapping into Linux plugin
func (plugin *Plugin) InjectVppIfIndexes(indexes ifaceVPP.SwIfIndex) {
plugin.vppIfIndexes = indexes
plugin.vppIfIndexes.WatchNameToIdx(plugin.String(), plugin.vppIfIndexesWatchChan)
}
// Init gets handlers for ETCD and Kafka and delegates them to ifConfigurator.
func (plugin *Plugin) Init() error {
plugin.Log.Debug("Initializing Linux plugin")
config, err := plugin.retrieveLinuxConfig()
if err != nil {
return err
}
if config != nil {
if config.Disabled {
plugin.disabled = true
plugin.Log.Infof("Disabling Linux plugin")
return nil
}
} else {
plugin.Log.Infof("stopwatch disabled for %v", plugin.PluginName)
}
plugin.resyncChan = make(chan datasync.ResyncEvent)
plugin.changeChan = make(chan datasync.ChangeEvent)
plugin.msChan = make(chan *nsplugin.MicroserviceCtx)
plugin.ifMicroserviceNotif = make(chan *nsplugin.MicroserviceEvent, 100)
plugin.ifIndexesWatchChan = make(chan ifaceidx.LinuxIfIndexDto, 100)
plugin.vppIfIndexesWatchChan = make(chan ifaceVPP.SwIfIdxDto, 100)
// Create plugin context and save cancel function into the plugin handle.
var ctx context.Context
ctx, plugin.cancel = context.WithCancel(context.Background())
// Run event handler go routines
go plugin.watchEvents(ctx)
err = plugin.initNs()
if err != nil {
return err
}
err = plugin.initIF(ctx)
if err != nil {
return err
}
err = plugin.initL3()
if err != nil {
return err
}
return plugin.subscribeWatcher()
}
// Close cleans up the resources.
func (plugin *Plugin) Close() error {
if plugin.disabled {
return nil
}
plugin.cancel()
plugin.wg.Wait()
return safeclose.Close(
// Configurators
plugin.ifConfigurator, plugin.arpConfigurator, plugin.routeConfigurator,
// Status updater
plugin.ifLinuxStateUpdater,
// Channels
plugin.ifIndexesWatchChan, plugin.ifMicroserviceNotif, plugin.changeChan, plugin.resyncChan,
plugin.msChan,
// Registrations
plugin.watchDataReg,
)
}
// Initialize namespace handler plugin
func (plugin *Plugin) initNs() error {
plugin.Log.Infof("Init Linux namespace handler")
namespaceHandler := &nsplugin.NsHandler{}
plugin.nsHandler = namespaceHandler
return namespaceHandler.Init(plugin.Log, nsplugin.NewSystemHandler(), plugin.msChan,
plugin.ifMicroserviceNotif)
}
// Initialize linux interface plugin
func (plugin *Plugin) initIF(ctx context.Context) error {
plugin.Log.Infof("Init Linux interface plugin")
// Init shared interface index mapping
plugin.ifIndexes = ifaceidx.NewLinuxIfIndex(nametoidx.NewNameToIdx(plugin.Log, "linux_if_indexes", nil))
// Shared interface linux calls handler
plugin.ifHandler = ifLinuxcalls.NewNetLinkHandler(plugin.nsHandler, plugin.ifIndexes, plugin.Log)
// Linux interface configurator
plugin.ifLinuxNotifChan = make(chan *ifplugin.LinuxInterfaceStateNotification, 10)
plugin.ifConfigurator = &ifplugin.LinuxInterfaceConfigurator{}
if err := plugin.ifConfigurator.Init(plugin.Log, plugin.ifHandler, plugin.nsHandler, nsplugin.NewSystemHandler(),
plugin.ifIndexes, plugin.ifMicroserviceNotif, plugin.ifLinuxNotifChan); err != nil {
return plugin.ifConfigurator.LogError(err)
}
plugin.ifLinuxStateUpdater = &ifplugin.LinuxInterfaceStateUpdater{}
if err := plugin.ifLinuxStateUpdater.Init(ctx, plugin.Log, plugin.ifIndexes, plugin.ifLinuxNotifChan); err != nil {
return plugin.ifConfigurator.LogError(err)
}
return nil
}
// Initialize linux L3 plugin
func (plugin *Plugin) initL3() error {
plugin.Log.Infof("Init Linux L3 plugin")
// Init shared ARP/Route index mapping
arpIndexes := l3idx.NewLinuxARPIndex(nametoidx.NewNameToIdx(plugin.Log, "linux_arp_indexes", nil))
routeIndexes := l3idx.NewLinuxRouteIndex(nametoidx.NewNameToIdx(plugin.Log, "linux_route_indexes", nil))
// L3 linux calls handler
l3Handler := l3Linuxcalls.NewNetLinkHandler(plugin.nsHandler, plugin.ifIndexes, arpIndexes, routeIndexes, plugin.Log)
// Linux ARP configurator
plugin.arpConfigurator = &l3plugin.LinuxArpConfigurator{}
if err := plugin.arpConfigurator.Init(plugin.Log, l3Handler, plugin.nsHandler, arpIndexes, plugin.ifIndexes); err != nil {
return plugin.arpConfigurator.LogError(err)
}
// Linux Route configurator
plugin.routeConfigurator = &l3plugin.LinuxRouteConfigurator{}
if err := plugin.routeConfigurator.Init(plugin.Log, l3Handler, plugin.nsHandler, routeIndexes, plugin.ifIndexes); err != nil {
plugin.routeConfigurator.LogError(err)
}
return nil
}
func (plugin *Plugin) retrieveLinuxConfig() (*Config, error) {
config := &Config{}
found, err := plugin.Cfg.LoadValue(config)
if !found {
plugin.Log.Debug("Linuxplugin config not found")
return nil, nil
}
if err != nil {
return nil, err
}
plugin.Log.Debug("Linuxplugin config found")
return config, err
}