forked from ligato/vpp-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
natplugin.go
101 lines (86 loc) · 4.2 KB
/
natplugin.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
// Copyright (c) 2018 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 NAT44Global --value-type *vpp_nat.Nat44Global --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/nat" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name NAT44GlobalInterface --value-type *vpp_nat.Nat44Global_Interface --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/nat" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name NAT44GlobalAddress --value-type *vpp_nat.Nat44Global_Address --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/nat" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name DNAT44 --value-type *vpp_nat.DNat44 --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/nat" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name NAT44Interface --value-type *vpp_nat.Nat44Interface --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/nat" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name NAT44AddressPool --value-type *vpp_nat.Nat44AddressPool --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/nat" --output-dir "descriptor"
package natplugin
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/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/natplugin/descriptor"
"go.ligato.io/vpp-agent/v3/plugins/vpp/natplugin/vppcalls"
_ "go.ligato.io/vpp-agent/v3/plugins/vpp/natplugin/vppcalls/vpp1908"
_ "go.ligato.io/vpp-agent/v3/plugins/vpp/natplugin/vppcalls/vpp2001"
_ "go.ligato.io/vpp-agent/v3/plugins/vpp/natplugin/vppcalls/vpp2005"
_ "go.ligato.io/vpp-agent/v3/plugins/vpp/natplugin/vppcalls/vpp2009"
)
// NATPlugin configures VPP NAT.
type NATPlugin struct {
Deps
// handlers
natHandler vppcalls.NatVppAPI
}
// Deps lists dependencies of the NAT plugin.
type Deps struct {
infra.PluginDeps
KVScheduler kvs.KVScheduler
VPP govppmux.API
IfPlugin ifplugin.API
StatusCheck statuscheck.PluginStatusWriter // optional
}
// Init registers NAT-related descriptors.
func (p *NATPlugin) Init() (err error) {
if !p.VPP.IsPluginLoaded("nat") {
p.Log.Warnf("VPP plugin NAT was disabled by VPP")
return nil
}
// init handlers
p.natHandler = vppcalls.CompatibleNatVppHandler(p.VPP, p.IfPlugin.GetInterfaceIndex(), p.IfPlugin.GetDHCPIndex(), p.Log)
if p.natHandler == nil {
return errors.New("natHandler is not available")
}
// init and register descriptors
nat44GlobalCtx, nat44GlobalDescriptor := descriptor.NewNAT44GlobalDescriptor(p.natHandler, p.Log)
nat44GlobalIfaceDescriptor := descriptor.NewNAT44GlobalInterfaceDescriptor(p.natHandler, p.Log)
nat44GlobalAddrDescriptor := descriptor.NewNAT44GlobalAddressDescriptor(p.natHandler, p.Log)
dnat44Descriptor := descriptor.NewDNAT44Descriptor(p.natHandler, p.Log)
nat44IfaceDescriptor := descriptor.NewNAT44InterfaceDescriptor(nat44GlobalCtx, p.natHandler, p.Log)
nat44AddrPoolDescriptor := descriptor.NewNAT44AddressPoolDescriptor(nat44GlobalCtx, p.natHandler, p.Log)
err = p.KVScheduler.RegisterKVDescriptor(
nat44GlobalDescriptor,
nat44GlobalIfaceDescriptor, // deprecated, kept for backward compatibility
nat44GlobalAddrDescriptor, // deprecated, kept for backward compatibility
dnat44Descriptor,
nat44IfaceDescriptor,
nat44AddrPoolDescriptor,
)
if err != nil {
return err
}
return nil
}
// AfterInit registers plugin with StatusCheck.
func (p *NATPlugin) AfterInit() error {
if p.StatusCheck != nil {
p.StatusCheck.Register(p.PluginName, nil)
}
return nil
}