-
Notifications
You must be signed in to change notification settings - Fork 125
/
ipsecplugin.go
125 lines (106 loc) · 4.88 KB
/
ipsecplugin.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
// 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 SPD --value-type *vpp_ipsec.SecurityPolicyDatabase --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/ipsec" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name SPDInterface --value-type *vpp_ipsec.SecurityPolicyDatabase_Interface --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/ipsec" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name SP --value-type *vpp_ipsec.SecurityPolicy --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/ipsec" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name SA --value-type *vpp_ipsec.SecurityAssociation --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/ipsec" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name TunProtect --value-type *vpp_ipsec.TunnelProtection --import "go.ligato.io/vpp-agent/v3/proto/ligato/vpp/ipsec" --output-dir "descriptor"
package ipsecplugin
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/kvscheduler"
"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/ipsecplugin/descriptor"
"go.ligato.io/vpp-agent/v3/plugins/vpp/ipsecplugin/descriptor/adapter"
"go.ligato.io/vpp-agent/v3/plugins/vpp/ipsecplugin/vppcalls"
_ "go.ligato.io/vpp-agent/v3/plugins/vpp/ipsecplugin/vppcalls/vpp2202"
_ "go.ligato.io/vpp-agent/v3/plugins/vpp/ipsecplugin/vppcalls/vpp2210"
_ "go.ligato.io/vpp-agent/v3/plugins/vpp/ipsecplugin/vppcalls/vpp2306"
)
func init() {
kvscheduler.AddNonRetryableError(vppcalls.ErrTunnelProtectionUnsupported)
}
// IPSecPlugin configures VPP security policy databases and security associations using GoVPP.
type IPSecPlugin struct {
Deps
// handler
ipSecHandler vppcalls.IPSecVppAPI
// descriptors
spdDescriptor *descriptor.IPSecSPDDescriptor
saDescriptor *descriptor.IPSecSADescriptor
spdIfDescriptor *descriptor.SPDInterfaceDescriptor
tunProtectDescriptor *descriptor.TunnelProtectDescriptor
}
// Deps lists dependencies of the IPSec plugin.
type Deps struct {
infra.PluginDeps
KVScheduler kvs.KVScheduler
VPP govppmux.API
IfPlugin ifplugin.API
StatusCheck statuscheck.PluginStatusWriter // optional
}
// Init registers IPSec-related descriptors.
func (p *IPSecPlugin) Init() (err error) {
// init IPSec handler
p.ipSecHandler = vppcalls.CompatibleIPSecVppHandler(p.VPP, p.IfPlugin.GetInterfaceIndex(), p.Log)
if p.ipSecHandler == nil {
return errors.New("ipsecHandler is not available")
}
// init and register security policy database descriptor
p.spdDescriptor = descriptor.NewIPSecSPDDescriptor(p.ipSecHandler, p.Log)
spdDescriptor := adapter.NewSPDDescriptor(p.spdDescriptor.GetDescriptor())
err = p.KVScheduler.RegisterKVDescriptor(spdDescriptor)
if err != nil {
return err
}
// init and register security policy descriptor
spDescriptor := descriptor.NewIPSecSPDescriptor(p.ipSecHandler, p.Log)
err = p.KVScheduler.RegisterKVDescriptor(spDescriptor)
if err != nil {
return err
}
// init and register security association descriptor
p.saDescriptor = descriptor.NewIPSecSADescriptor(p.ipSecHandler, p.Log)
saDescriptor := adapter.NewSADescriptor(p.saDescriptor.GetDescriptor())
err = p.KVScheduler.RegisterKVDescriptor(saDescriptor)
if err != nil {
return err
}
// init and register tunnel protection descriptor
p.tunProtectDescriptor = descriptor.NewTunnelProtectDescriptor(p.ipSecHandler, p.Log)
tunProtectDescriptor := adapter.NewTunProtectDescriptor(p.tunProtectDescriptor.GetDescriptor())
err = p.KVScheduler.RegisterKVDescriptor(tunProtectDescriptor)
if err != nil {
return err
}
// init & register other descriptors for derived types
p.spdIfDescriptor = descriptor.NewSPDInterfaceDescriptor(p.ipSecHandler, p.Log)
spdIfDescriptor := adapter.NewSPDInterfaceDescriptor(p.spdIfDescriptor.GetDescriptor())
err = p.KVScheduler.RegisterKVDescriptor(spdIfDescriptor)
if err != nil {
return err
}
return nil
}
// AfterInit registers plugin with StatusCheck.
func (p *IPSecPlugin) AfterInit() error {
if p.StatusCheck != nil {
p.StatusCheck.Register(p.PluginName, nil)
}
return nil
}