FD.io VPP  v20.01-48-g3e0dafb74
Vector Packet Processing
ipsec_spd.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #ifndef __IPSEC_SPD_H__
16 #define __IPSEC_SPD_H__
17 
18 #include <vlib/vlib.h>
19 
20 #define foreach_ipsec_spd_policy_type \
21  _(IP4_OUTBOUND, "ip4-outbound") \
22  _(IP6_OUTBOUND, "ip6-outbound") \
23  _(IP4_INBOUND_PROTECT, "ip4-inbound-protect") \
24  _(IP6_INBOUND_PROTECT, "ip6-inbound-protect") \
25  _(IP4_INBOUND_BYPASS, "ip4-inbound-bypass") \
26  _(IP6_INBOUND_BYPASS, "ip6-inbound-bypass")
27 
28 typedef enum ipsec_spd_policy_t_
29 {
30 #define _(s,v) IPSEC_SPD_POLICY_##s,
32 #undef _
35 
36 #define FOR_EACH_IPSEC_SPD_POLICY_TYPE(_t) \
37  for (_t = 0; _t < IPSEC_SPD_POLICY_N_TYPES; _t++)
38 
39 extern u8 *format_ipsec_policy_type (u8 * s, va_list * args);
40 
41 /**
42  * @brief A Secruity Policy Database
43  */
44 typedef struct
45 {
46  /** the User's ID for this policy */
48  /** vectors for each of the policy types */
50 } ipsec_spd_t;
51 
52 /**
53  * @brief Add/Delete a SPD
54  */
55 extern int ipsec_add_del_spd (vlib_main_t * vm, u32 spd_id, int is_add);
56 
57 /**
58  * @brief Bind/attach a SPD to an interface
59  */
61  u32 sw_if_index, u32 spd_id, int is_add);
62 
63 extern u8 *format_ipsec_spd (u8 * s, va_list * args);
64 
65 #endif /* __IPSEC_SPD_H__ */
66 
67 /*
68  * fd.io coding-style-patch-verification: ON
69  *
70  * Local Variables:
71  * eval: (c-set-style "gnu")
72  * End:
73  */
u8 * format_ipsec_policy_type(u8 *s, va_list *args)
Definition: ipsec_format.c:46
enum ipsec_spd_policy_t_ ipsec_spd_policy_type_t
A Secruity Policy Database.
Definition: ipsec_spd.h:44
unsigned char u8
Definition: types.h:56
vl_api_interface_index_t sw_if_index
Definition: gre.api:59
unsigned int u32
Definition: types.h:88
u8 * format_ipsec_spd(u8 *s, va_list *args)
Definition: ipsec_format.c:203
vlib_main_t * vm
Definition: in2out_ed.c:1810
int ipsec_set_interface_spd(vlib_main_t *vm, u32 sw_if_index, u32 spd_id, int is_add)
Bind/attach a SPD to an interface.
Definition: ipsec_spd.c:63
int ipsec_add_del_spd(vlib_main_t *vm, u32 spd_id, int is_add)
Add/Delete a SPD.
Definition: ipsec_spd.c:20
u32 id
the User&#39;s ID for this policy
Definition: ipsec_spd.h:47
ipsec_spd_policy_t_
Definition: ipsec_spd.h:28
#define foreach_ipsec_spd_policy_type
Definition: ipsec_spd.h:20