forked from redhat-best-practices-for-k8s/l2discovery-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathl2lib.go
420 lines (375 loc) · 14.9 KB
/
l2lib.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
package l2lib
import (
"context"
"encoding/json"
"fmt"
"os"
"sort"
"strings"
"time"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
l2 "github.com/redhat-cne/l2discovery-exports"
"github.com/redhat-cne/l2discovery-lib/pkg/l2client"
"github.com/redhat-cne/l2discovery-lib/pkg/pods"
daemonsets "github.com/redhat-cne/privileged-daemonset"
"github.com/sirupsen/logrus"
"github.com/yourbasic/graph"
v1core "k8s.io/api/core/v1"
)
func init() {
GlobalL2DiscoveryConfig.refresh = true
}
type L2Info interface {
// list of cluster interfaces indexed with a simple integer (X) for readability in the graph
GetPtpIfList() []*l2.PtpIf
// list of unfiltered cluster interfaces indexed with a simple integer (X) for readability in the graph
GetPtpIfListUnfiltered() map[string]*l2.PtpIf
// LANs identified in the graph
GetLANs() *[][]int
// List of port receiving PTP frames (assuming valid GM signal received)
GetPortsGettingPTP() []*l2.PtpIf
SetL2Client(kubernetes.Interface, *rest.Config)
GetL2DiscoveryConfig(ptpInterfacesOnly, allIFs, useContainerCmds bool, l2DiscoveryImage string) (config L2Info, err error)
}
const (
ExperimentalEthertype = "88b5"
PtpEthertype = "88f7"
LocalInterfaces = "0000"
L2DaemonsetManagedString = "MANAGED"
L2DaemonsetPreConfiguredString = "PRECONFIGURED"
L2DiscoveryDsName = "l2discovery"
L2DiscoveryNsName = "l2discovery"
L2DiscoveryContainerName = "l2discovery"
timeoutDaemon = time.Second * 60
L2DiscoveryDuration = time.Second * 15
L2ContainerCPULim = "100m"
L2ContainerCPUReq = "100m"
L2ContainerMemLim = "100M"
L2ContainerMemReq = "100M"
)
type L2DaemonsetMode int64
const (
// In managed mode, the L2 Topology discovery Daemonset is created by the conformance suite
Managed L2DaemonsetMode = iota
// In pre-configured mode, the L2 topology daemonset is pre-configured by the user in the cluster
PreConfigured
)
func (mode L2DaemonsetMode) String() string {
switch mode {
case Managed:
return L2DaemonsetManagedString
case PreConfigured:
return L2DaemonsetPreConfiguredString
default:
return L2DaemonsetManagedString
}
}
func StringToL2Mode(aString string) L2DaemonsetMode {
switch aString {
case L2DaemonsetManagedString:
return Managed
case L2DaemonsetPreConfiguredString:
return PreConfigured
default:
return Managed
}
}
type L2DiscoveryConfig struct {
// Map of L2 topology as discovered by L2 discovery mechanism
DiscoveryMap map[string]map[string]map[string]*l2.Neighbors
// L2 topology graph created from discovery map. This is the main internal graph
L2ConnectivityMap *graph.Mutable
// Max size of graph
MaxL2GraphSize int
// list of cluster interfaces indexed with a simple integer (X) for readability in the graph
PtpIfList []*l2.PtpIf
// list of unfiltered cluster interfaces indexed with a simple integer (X) for readability in the graph
PtpIfListUnfiltered map[string]*l2.PtpIf
// list of L2discovery daemonset pods
L2DiscoveryPods map[string]*v1core.Pod
// Mapping between clusterwide interface index and Mac address
ClusterMacs map[l2.IfClusterIndex]string
// Mapping between clusterwide interface index and a simple integer (X) for readability in the graph
ClusterIndexToInt map[l2.IfClusterIndex]int
// Mapping between a cluster wide MAC address and a simple integer (X) for readability in the graph
ClusterMacToInt map[string]int
// Mapping between a Mac address and a cluster wide interface index
ClusterIndexes map[string]l2.IfClusterIndex
// indicates whether the L2discovery daemonset is created by the test suite (managed) or not
L2DsMode L2DaemonsetMode
// LANs identified in the graph
LANs *[][]int
// List of port receiving PTP frames (assuming valid GM signal received)
PortsGettingPTP []*l2.PtpIf
// interfaces to avoid when running the tests
SkippedInterfaces []string
// Indicates that the L2 configuration must be refreshed
refresh bool
}
var GlobalL2DiscoveryConfig L2DiscoveryConfig
func (config *L2DiscoveryConfig) GetPtpIfList() []*l2.PtpIf {
return config.PtpIfList
}
func (config *L2DiscoveryConfig) GetPtpIfListUnfiltered() map[string]*l2.PtpIf {
return config.PtpIfListUnfiltered
}
func (config *L2DiscoveryConfig) GetLANs() *[][]int {
return config.LANs
}
func (config *L2DiscoveryConfig) GetPortsGettingPTP() []*l2.PtpIf {
return config.PortsGettingPTP
}
func (config *L2DiscoveryConfig) SetL2Client(k8sClient kubernetes.Interface, restClient *rest.Config) {
l2client.Set(k8sClient, restClient)
}
// Gets existing L2 configuration or creates a new one (if refresh is set to true)
func (config *L2DiscoveryConfig) GetL2DiscoveryConfig(ptpInterfacesOnly, allIFs, useContainerCmds bool, l2DiscoveryImage string) (L2Info, error) {
if GlobalL2DiscoveryConfig.refresh {
err := GlobalL2DiscoveryConfig.DiscoverL2Connectivity(ptpInterfacesOnly, allIFs, useContainerCmds, l2DiscoveryImage)
if err != nil {
GlobalL2DiscoveryConfig.refresh = false
return nil, fmt.Errorf("failed to discover L2 connectivity: %w", err)
}
}
GlobalL2DiscoveryConfig.refresh = false
return &GlobalL2DiscoveryConfig, nil
}
// Resets the L2 configuration
func (config *L2DiscoveryConfig) reset() {
GlobalL2DiscoveryConfig.PtpIfList = []*l2.PtpIf{}
GlobalL2DiscoveryConfig.L2DiscoveryPods = make(map[string]*v1core.Pod)
GlobalL2DiscoveryConfig.ClusterMacs = make(map[l2.IfClusterIndex]string)
GlobalL2DiscoveryConfig.ClusterIndexes = make(map[string]l2.IfClusterIndex)
GlobalL2DiscoveryConfig.ClusterMacToInt = make(map[string]int)
GlobalL2DiscoveryConfig.ClusterIndexToInt = make(map[l2.IfClusterIndex]int)
GlobalL2DiscoveryConfig.ClusterIndexes = make(map[string]l2.IfClusterIndex)
GlobalL2DiscoveryConfig.PtpIfListUnfiltered = make(map[string]*l2.PtpIf)
}
// Discovers the L2 connectivity using l2discovery daemonset
func (config *L2DiscoveryConfig) DiscoverL2Connectivity(ptpInterfacesOnly, allIFs, useContainerCmds bool, l2DiscoveryImage string) error {
GlobalL2DiscoveryConfig.reset()
GlobalL2DiscoveryConfig.InitSkippedInterfaces()
// initializes clusterwide ptp interfaces
var err error
// Create L2 discovery daemonset
config.L2DsMode = StringToL2Mode(os.Getenv("L2_DAEMONSET"))
if config.L2DsMode == Managed {
dummyMap := map[string]string{}
env := []v1core.EnvVar{}
if allIFs {
env = append(env, v1core.EnvVar{Name: "L2DISCOVERY_ALLIFS", Value: "true"})
}
if useContainerCmds {
env = append(env, v1core.EnvVar{Name: "L2DISCOVERY_USECONTAINERCMDS", Value: "true"})
}
_, err = daemonsets.CreateDaemonSet(L2DiscoveryDsName, L2DiscoveryNsName, L2DiscoveryContainerName, l2DiscoveryImage, dummyMap, env, timeoutDaemon,
L2ContainerCPUReq, L2ContainerCPULim, L2ContainerMemReq, L2ContainerMemLim)
if err != nil {
return fmt.Errorf("error creating l2 discovery daemonset, err=%s", err)
}
}
// Sleep a short time to allow discovery to happen (first report after 5s)
time.Sleep(L2DiscoveryDuration)
// Get the L2 topology pods
err = GlobalL2DiscoveryConfig.getL2TopologyDiscoveryPods()
if err != nil {
return fmt.Errorf("could not get l2 discovery pods, err=%s", err)
}
err = config.getL2Disc(ptpInterfacesOnly)
if err != nil {
logrus.Errorf("error getting l2 discovery data, err=%s", err)
}
// Delete L2 discovery daemonset
if config.L2DsMode == Managed {
err = daemonsets.DeleteNamespaceIfPresent(L2DiscoveryNsName)
if err != nil {
logrus.Errorf("error deleting l2 discovery namespace, err=%s", err)
}
}
// Create a graph from the discovered data
err = config.createL2InternalGraph(ptpInterfacesOnly)
if err != nil {
return err
}
return nil
}
// Print database with all NICs
func (config *L2DiscoveryConfig) PrintAllNICs() {
logrus.Info("List All NICS (node name: interface)")
for index, aIf := range config.PtpIfList {
logrus.Infof("%d %s", index, aIf)
}
for index, lan := range *config.LANs {
aLog := fmt.Sprintf("LAN %d: ", index)
for _, aIf := range lan {
aLog += fmt.Sprintf("%s **** ", config.PtpIfList[aIf])
}
logrus.Debug(aLog)
}
}
// Gets the latest topology reports from the l2discovery pods
func (config *L2DiscoveryConfig) getL2Disc(ptpInterfacesOnly bool) error {
config.DiscoveryMap = make(map[string]map[string]map[string]*l2.Neighbors)
index := 0
keys := make([]string, 0, len(config.L2DiscoveryPods))
for k := range config.L2DiscoveryPods {
keys = append(keys, k)
}
sort.Strings(keys)
for _, k := range keys {
podLogs, _ := pods.GetLog(config.L2DiscoveryPods[k], config.L2DiscoveryPods[k].Spec.Containers[0].Name)
indexReport := strings.LastIndex(podLogs, "JSON_REPORT")
report := strings.Split(strings.Split(podLogs[indexReport:], `\n`)[0], "JSON_REPORT")[1]
var discDataPerNode map[string]map[string]*l2.Neighbors
if err := json.Unmarshal([]byte(report), &discDataPerNode); err != nil {
return err
}
if _, ok := config.DiscoveryMap[config.L2DiscoveryPods[k].Spec.NodeName]; !ok {
config.DiscoveryMap[config.L2DiscoveryPods[k].Spec.NodeName] = make(map[string]map[string]*l2.Neighbors)
}
config.DiscoveryMap[config.L2DiscoveryPods[k].Spec.NodeName] = discDataPerNode
config.createMaps(discDataPerNode, config.L2DiscoveryPods[k].Spec.NodeName, &index, ptpInterfacesOnly)
}
config.MaxL2GraphSize = index
return nil
}
// Creates the Main topology graph
func (config *L2DiscoveryConfig) createL2InternalGraph(ptpInterfacesOnly bool) error {
GlobalL2DiscoveryConfig.L2ConnectivityMap = graph.New(config.MaxL2GraphSize)
keys := make([]string, 0, len(config.L2DiscoveryPods))
for k := range config.L2DiscoveryPods {
keys = append(keys, k)
}
sort.Strings(keys)
for _, k := range keys {
for iface, ifaceMap := range config.DiscoveryMap[config.L2DiscoveryPods[k].Spec.NodeName][ExperimentalEthertype] {
for mac := range ifaceMap.Remote {
if v, ok := config.ClusterIndexToInt[l2.IfClusterIndex{InterfaceName: iface, NodeName: config.L2DiscoveryPods[k].Spec.NodeName}]; ok {
if w, ok := config.ClusterMacToInt[mac]; ok {
if ptpInterfacesOnly &&
(strings.Contains(config.PtpIfList[v].IfPci.Description, "Virtual") ||
!config.PtpIfList[v].IfPTPCaps.HwRx ||
!config.PtpIfList[v].IfPTPCaps.HwTx ||
!config.PtpIfList[v].IfPTPCaps.HwRawClock ||
!config.PtpIfList[w].IfPTPCaps.HwRx ||
!config.PtpIfList[w].IfPTPCaps.HwTx ||
!config.PtpIfList[w].IfPTPCaps.HwRawClock) {
continue
}
config.L2ConnectivityMap.AddBoth(v, w)
}
}
}
}
}
// Init LANs
out := graph.Components(config.L2ConnectivityMap)
logrus.Infof("LANs connectivity map: %v", out)
config.LANs = &out
config.PrintAllNICs()
logrus.Infof("NIC num: %d", config.MaxL2GraphSize)
return nil
}
// Gets the grandmaster port by using L2 discovery data for ptp ethertype
func (config *L2DiscoveryConfig) getInterfacesReceivingPTP(ptpInterfacesOnly bool) {
keys := make([]string, 0, len(config.L2DiscoveryPods))
for k := range config.L2DiscoveryPods {
keys = append(keys, k)
}
sort.Strings(keys)
for _, k := range keys {
for _, ifaceMap := range config.DiscoveryMap[config.L2DiscoveryPods[k].Spec.NodeName][PtpEthertype] {
if len(ifaceMap.Remote) == 0 {
continue
}
aPortGettingPTP := &l2.PtpIf{}
aPortGettingPTP.Iface = ifaceMap.Local
aPortGettingPTP.NodeName = config.L2DiscoveryPods[k].Spec.NodeName
aPortGettingPTP.InterfaceName = aPortGettingPTP.Iface.IfName
if ptpInterfacesOnly &&
(strings.Contains(aPortGettingPTP.IfPci.Description, "Virtual") ||
!aPortGettingPTP.IfPTPCaps.HwRx ||
!aPortGettingPTP.IfPTPCaps.HwTx ||
!aPortGettingPTP.IfPTPCaps.HwRawClock) {
continue
}
config.PortsGettingPTP = append(config.PortsGettingPTP, aPortGettingPTP)
}
}
logrus.Debugf("interfaces receiving PTP frames: %v", config.PortsGettingPTP)
}
// Creates Mapping tables between interfaces index, mac address, and graph integer indexes
func (config *L2DiscoveryConfig) createMaps(disc map[string]map[string]*l2.Neighbors, nodeName string, index *int, ptpInterfacesOnly bool) {
config.updateMaps(disc, nodeName, index, ExperimentalEthertype, ptpInterfacesOnly)
config.updateMaps(disc, nodeName, index, LocalInterfaces, ptpInterfacesOnly)
config.getInterfacesReceivingPTP(ptpInterfacesOnly)
}
// retrieves interfaces to skip in the cluster
func (config *L2DiscoveryConfig) InitSkippedInterfaces() {
ifs, isSet := os.LookupEnv("SKIP_INTERFACES")
if isSet {
tokens := strings.Split(ifs, ",")
for _, token := range tokens {
token = strings.TrimSpace(token)
config.SkippedInterfaces = append(config.SkippedInterfaces, token)
}
}
logrus.Infof("Will skip the following interfaces in every nodes: %v", config.SkippedInterfaces)
}
func (config *L2DiscoveryConfig) isSkipped(aIfToCheck string) bool {
for _, ifName := range config.SkippedInterfaces {
if aIfToCheck == ifName {
return true
}
}
return false
}
// updates Mapping tables between interfaces index, mac address, and graph integer indexes for a given ethertype
func (config *L2DiscoveryConfig) updateMaps(disc map[string]map[string]*l2.Neighbors, nodeName string, index *int, ethertype string, ptpInterfacesOnly bool) {
// Sorting L2 discovery
keys := make([]string, 0, len(disc[ethertype]))
for k := range disc[ethertype] {
keys = append(keys, k)
}
sort.Strings(keys)
for _, k := range keys {
if _, ok := config.ClusterMacToInt[disc[ethertype][k].Local.IfMac.Data]; ok {
continue
}
aInterface := l2.PtpIf{}
aInterface.NodeName = nodeName
aInterface.InterfaceName = disc[ethertype][k].Local.IfName
aInterface.Iface = disc[ethertype][k].Local
if ptpInterfacesOnly &&
(strings.Contains(aInterface.IfPci.Description, "Virtual") ||
!aInterface.IfPTPCaps.HwRx ||
!aInterface.IfPTPCaps.HwTx ||
!aInterface.IfPTPCaps.HwRawClock) {
continue
}
config.PtpIfListUnfiltered[disc[ethertype][k].Local.IfMac.Data] = &aInterface
if config.isSkipped(disc[ethertype][k].Local.IfName) {
continue
}
// create maps
config.ClusterMacToInt[disc[ethertype][k].Local.IfMac.Data] = *index
config.ClusterIndexToInt[l2.IfClusterIndex{InterfaceName: disc[ethertype][k].Local.IfName, NodeName: nodeName}] = *index
config.ClusterMacs[l2.IfClusterIndex{InterfaceName: disc[ethertype][k].Local.IfName, NodeName: nodeName}] = disc[ethertype][k].Local.IfMac.Data
config.ClusterIndexes[disc[ethertype][k].Local.IfMac.Data] = l2.IfClusterIndex{InterfaceName: disc[ethertype][k].Local.IfName, NodeName: nodeName}
config.PtpIfList = append(config.PtpIfList, &aInterface)
(*index)++
}
}
// Gets the list of l2discovery pods
func (config *L2DiscoveryConfig) getL2TopologyDiscoveryPods() error {
aPodList, err := l2client.Client.K8sClient.CoreV1().Pods(L2DiscoveryNsName).List(context.Background(), metav1.ListOptions{LabelSelector: "name=l2discovery"})
if err != nil {
return fmt.Errorf("could not get list of linkloop pods, err=%s", err)
}
for index := range aPodList.Items {
config.L2DiscoveryPods[aPodList.Items[index].Spec.NodeName] = &aPodList.Items[index]
}
return nil
}