This repository has been archived by the owner on Aug 3, 2020. It is now read-only.
forked from ligato/vpp-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ipsecplugin.go
118 lines (100 loc) · 4.55 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
// 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 SPD --value-type *vpp_ipsec.SecurityPolicyDatabase --meta-type *idxvpp.OnlyIndex --import "github.com/ligato/vpp-agent/pkg/idxvpp" --import "github.com/ligato/vpp-agent/api/models/vpp/ipsec" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name SPDInterface --value-type *vpp_ipsec.SecurityPolicyDatabase_Interface --import "github.com/ligato/vpp-agent/api/models/vpp/ipsec" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name SPDPolicy --value-type *vpp_ipsec.SecurityPolicyDatabase_PolicyEntry --import "github.com/ligato/vpp-agent/api/models/vpp/ipsec" --output-dir "descriptor"
//go:generate descriptor-adapter --descriptor-name SA --value-type *vpp_ipsec.SecurityAssociation --import "github.com/ligato/vpp-agent/api/models/vpp/ipsec" --output-dir "descriptor"
package ipsecplugin
import (
govppapi "git.fd.io/govpp.git/api"
"github.com/ligato/cn-infra/health/statuscheck"
"github.com/ligato/cn-infra/infra"
"github.com/pkg/errors"
"github.com/ligato/vpp-agent/plugins/govppmux"
kvs "github.com/ligato/vpp-agent/plugins/kvscheduler/api"
"github.com/ligato/vpp-agent/plugins/vpp/ifplugin"
"github.com/ligato/vpp-agent/plugins/vpp/ipsecplugin/descriptor"
"github.com/ligato/vpp-agent/plugins/vpp/ipsecplugin/descriptor/adapter"
"github.com/ligato/vpp-agent/plugins/vpp/ipsecplugin/vppcalls"
_ "github.com/ligato/vpp-agent/plugins/vpp/ipsecplugin/vppcalls/vpp1810"
_ "github.com/ligato/vpp-agent/plugins/vpp/ipsecplugin/vppcalls/vpp1901"
)
// IPSecPlugin configures VPP security policy databases and security associations using GoVPP.
type IPSecPlugin struct {
Deps
// GoVPP
vppCh govppapi.Channel
// handler
ipSecHandler vppcalls.IPSecVppAPI
// descriptors
spdDescriptor *descriptor.IPSecSPDDescriptor
saDescriptor *descriptor.IPSecSADescriptor
spdIfDescriptor *descriptor.SPDInterfaceDescriptor
spdPolicyDescriptor *descriptor.SPDPolicyDescriptor
}
// Deps lists dependencies of the IPSec plugin.
type Deps struct {
infra.PluginDeps
KVScheduler kvs.KVScheduler
GoVppmux govppmux.API
IfPlugin ifplugin.API
StatusCheck statuscheck.PluginStatusWriter // optional
}
// Init registers IPSec-related descriptors.
func (p *IPSecPlugin) Init() (err error) {
// GoVPP channels
if p.vppCh, err = p.GoVppmux.NewAPIChannel(); err != nil {
return errors.Errorf("failed to create GoVPP API channel: %v", err)
}
// init IPSec handler
p.ipSecHandler = vppcalls.CompatibleIPSecVppHandler(p.vppCh, 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 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 & 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
}
p.spdPolicyDescriptor = descriptor.NewSPDPolicyDescriptor(p.ipSecHandler, p.Log)
spdPolicyDescriptor := adapter.NewSPDPolicyDescriptor(p.spdPolicyDescriptor.GetDescriptor())
err = p.KVScheduler.RegisterKVDescriptor(spdPolicyDescriptor)
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
}