-
Notifications
You must be signed in to change notification settings - Fork 125
/
l2plugin.go
129 lines (109 loc) · 4.78 KB
/
l2plugin.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
// Copyright (c) 2021 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.
//go:generate descriptor-adapter --descriptor-name BridgeDomain --value-type *vpp_l2.BridgeDomain --meta-type *idxvpp.OnlyIndex --import "go.ligato.io/vpp-agent/v3/pkg/idxvpp" --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/l2" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name BDInterface --value-type *vpp_l2.BridgeDomain_Interface --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/l2" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name FIB --value-type *vpp_l2.FIBEntry --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/l2" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name XConnect --value-type *vpp_l2.XConnectPair --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/l2" --output-dir "descriptor"
package l2plugin
import (
"github.com/pkg/errors"
"go.ligato.io/cn-infra/v2/health/statuscheck"
"go.ligato.io/cn-infra/v2/infra"
"go.ligato.io/vpp-agent/v3/pkg/idxvpp"
"go.ligato.io/vpp-agent/v3/plugins/govppmux"
kvs "go.ligato.io/vpp-agent/v3/plugins/kvscheduler/api"
"go.ligato.io/vpp-agent/v3/plugins/vpp/ifplugin"
"go.ligato.io/vpp-agent/v3/plugins/vpp/l2plugin/descriptor"
"go.ligato.io/vpp-agent/v3/plugins/vpp/l2plugin/descriptor/adapter"
"go.ligato.io/vpp-agent/v3/plugins/vpp/l2plugin/vppcalls"
_ "go.ligato.io/vpp-agent/v3/plugins/vpp/l2plugin/vppcalls/vpp2202"
_ "go.ligato.io/vpp-agent/v3/plugins/vpp/l2plugin/vppcalls/vpp2210"
_ "go.ligato.io/vpp-agent/v3/plugins/vpp/l2plugin/vppcalls/vpp2306"
)
// L2Plugin configures VPP bridge domains, L2 FIBs and xConnects using GoVPP.
type L2Plugin struct {
Deps
// handlers
l2Handler vppcalls.L2VppAPI
// descriptors
bdDescriptor *descriptor.BridgeDomainDescriptor
bdIfaceDescriptor *descriptor.BDInterfaceDescriptor
fibDescriptor *descriptor.FIBDescriptor
xcDescriptor *descriptor.XConnectDescriptor
// index maps
bdIndex idxvpp.NameToIndex
}
// Deps lists dependencies of the L2 plugin.
type Deps struct {
infra.PluginDeps
KVScheduler kvs.KVScheduler
VPP govppmux.API
IfPlugin ifplugin.API
StatusCheck statuscheck.PluginStatusWriter // optional
}
// Init registers L2-related descriptors.
func (p *L2Plugin) Init() (err error) {
// init handlers
p.l2Handler = vppcalls.CompatibleL2VppHandler(p.VPP, p.IfPlugin.GetInterfaceIndex(), p.bdIndex, p.Log)
if p.l2Handler == nil {
return errors.Errorf("could not find compatible L2VppHandler")
}
// init and register bridge domain descriptor
p.bdDescriptor = descriptor.NewBridgeDomainDescriptor(p.l2Handler, p.Log)
bdDescriptor := adapter.NewBridgeDomainDescriptor(p.bdDescriptor.GetDescriptor())
err = p.KVScheduler.RegisterKVDescriptor(bdDescriptor)
if err != nil {
return err
}
// obtain read-only references to BD index map
var withIndex bool
metadataMap := p.KVScheduler.GetMetadataMap(bdDescriptor.Name)
p.bdIndex, withIndex = metadataMap.(idxvpp.NameToIndex)
if !withIndex {
return errors.New("missing index with bridge domain metadata")
}
// we set l2Handler again here, because bdIndex was nil before
p.l2Handler = vppcalls.CompatibleL2VppHandler(p.VPP, p.IfPlugin.GetInterfaceIndex(), p.bdIndex, p.Log)
// init & register descriptors
p.bdIfaceDescriptor = descriptor.NewBDInterfaceDescriptor(p.bdIndex, p.l2Handler, p.Log)
bdIfaceDescriptor := adapter.NewBDInterfaceDescriptor(p.bdIfaceDescriptor.GetDescriptor())
err = p.KVScheduler.RegisterKVDescriptor(bdIfaceDescriptor)
if err != nil {
return err
}
p.fibDescriptor = descriptor.NewFIBDescriptor(p.l2Handler, p.Log)
fibDescriptor := adapter.NewFIBDescriptor(p.fibDescriptor.GetDescriptor())
err = p.KVScheduler.RegisterKVDescriptor(fibDescriptor)
if err != nil {
return err
}
p.xcDescriptor = descriptor.NewXConnectDescriptor(p.l2Handler, p.Log)
xcDescriptor := adapter.NewXConnectDescriptor(p.xcDescriptor.GetDescriptor())
err = p.KVScheduler.RegisterKVDescriptor(xcDescriptor)
if err != nil {
return err
}
return nil
}
// AfterInit registers plugin with StatusCheck.
func (p *L2Plugin) AfterInit() error {
if p.StatusCheck != nil {
p.StatusCheck.Register(p.PluginName, nil)
}
return nil
}
// GetBDIndex return bridge domain index.
func (p *L2Plugin) GetBDIndex() idxvpp.NameToIndex {
return p.bdIndex
}