blob: f9ceae55a05c1776beea49ff79f6a0bde3ed5117 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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 */
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +000015#ifndef __IPSEC_H__
16#define __IPSEC_H__
17
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010018#include <vnet/ip/ip.h>
19#include <vnet/feature/feature.h>
20
Matus Fabian694265d2016-08-10 01:55:36 -070021#define IPSEC_FLAG_IPSEC_GRE_TUNNEL (1 << 0)
22
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +000023
24#define foreach_ipsec_output_next \
25_(DROP, "error-drop") \
“mukeshyadav1984”430ac932017-11-23 02:39:33 -080026_(ESP_ENCRYPT, "esp-encrypt") \
27_(AH_ENCRYPT, "ah-encrypt")
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +000028
29#define _(v, s) IPSEC_OUTPUT_NEXT_##v,
30typedef enum
31{
32 foreach_ipsec_output_next
33#undef _
34 IPSEC_OUTPUT_N_NEXT,
35} ipsec_output_next_t;
36
37
38#define foreach_ipsec_input_next \
39_(DROP, "error-drop") \
“mukeshyadav1984”430ac932017-11-23 02:39:33 -080040_(ESP_DECRYPT, "esp-decrypt") \
41_(AH_DECRYPT, "ah-decrypt")
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +000042
43#define _(v, s) IPSEC_INPUT_NEXT_##v,
44typedef enum
45{
46 foreach_ipsec_input_next
47#undef _
48 IPSEC_INPUT_N_NEXT,
49} ipsec_input_next_t;
50
51
Ed Warnickecb9cada2015-12-08 15:45:58 -070052#define foreach_ipsec_policy_action \
53 _(0, BYPASS, "bypass") \
54 _(1, DISCARD, "discard") \
55 _(2, RESOLVE, "resolve") \
56 _(3, PROTECT, "protect")
57
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070058typedef enum
59{
Ed Warnickecb9cada2015-12-08 15:45:58 -070060#define _(v,f,s) IPSEC_POLICY_ACTION_##f = v,
61 foreach_ipsec_policy_action
62#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070063 IPSEC_POLICY_N_ACTION,
Ed Warnickecb9cada2015-12-08 15:45:58 -070064} ipsec_policy_action_t;
65
Radu Nicolau6929ea92016-11-29 11:00:30 +000066#define foreach_ipsec_crypto_alg \
67 _(0, NONE, "none") \
68 _(1, AES_CBC_128, "aes-cbc-128") \
69 _(2, AES_CBC_192, "aes-cbc-192") \
70 _(3, AES_CBC_256, "aes-cbc-256") \
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010071 _(4, AES_CTR_128, "aes-ctr-128") \
72 _(5, AES_CTR_192, "aes-ctr-192") \
73 _(6, AES_CTR_256, "aes-ctr-256") \
74 _(7, AES_GCM_128, "aes-gcm-128") \
75 _(8, AES_GCM_192, "aes-gcm-192") \
“mukeshyadav1984”72454dd2017-11-28 10:52:34 -080076 _(9, AES_GCM_256, "aes-gcm-256") \
77 _(10, DES_CBC, "des-cbc") \
78 _(11, 3DES_CBC, "3des-cbc")
Ed Warnickecb9cada2015-12-08 15:45:58 -070079
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070080typedef enum
81{
Ed Warnickecb9cada2015-12-08 15:45:58 -070082#define _(v,f,s) IPSEC_CRYPTO_ALG_##f = v,
83 foreach_ipsec_crypto_alg
84#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070085 IPSEC_CRYPTO_N_ALG,
Ed Warnickecb9cada2015-12-08 15:45:58 -070086} ipsec_crypto_alg_t;
87
Radu Nicolau6929ea92016-11-29 11:00:30 +000088#define foreach_ipsec_integ_alg \
89 _(0, NONE, "none") \
90 _(1, MD5_96, "md5-96") /* RFC2403 */ \
91 _(2, SHA1_96, "sha1-96") /* RFC2404 */ \
92 _(3, SHA_256_96, "sha-256-96") /* draft-ietf-ipsec-ciph-sha-256-00 */ \
93 _(4, SHA_256_128, "sha-256-128") /* RFC4868 */ \
94 _(5, SHA_384_192, "sha-384-192") /* RFC4868 */ \
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +010095 _(6, SHA_512_256, "sha-512-256") /* RFC4868 */
Ed Warnickecb9cada2015-12-08 15:45:58 -070096
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070097typedef enum
98{
Ed Warnickecb9cada2015-12-08 15:45:58 -070099#define _(v,f,s) IPSEC_INTEG_ALG_##f = v,
100 foreach_ipsec_integ_alg
101#undef _
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700102 IPSEC_INTEG_N_ALG,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700103} ipsec_integ_alg_t;
104
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700105typedef enum
106{
107 IPSEC_PROTOCOL_AH = 0,
108 IPSEC_PROTOCOL_ESP = 1
Ed Warnickecb9cada2015-12-08 15:45:58 -0700109} ipsec_protocol_t;
110
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700111typedef struct
112{
113 u32 id;
114 u32 spi;
115 ipsec_protocol_t protocol;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700117 ipsec_crypto_alg_t crypto_alg;
118 u8 crypto_key_len;
119 u8 crypto_key[128];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700121 ipsec_integ_alg_t integ_alg;
122 u8 integ_key_len;
123 u8 integ_key[128];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700125 u8 use_esn;
126 u8 use_anti_replay;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700128 u8 is_tunnel;
129 u8 is_tunnel_ip6;
Klement Sekera4b089f22018-04-17 18:04:57 +0200130 u8 udp_encap;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700131 ip46_address_t tunnel_src_addr;
132 ip46_address_t tunnel_dst_addr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133
Radu Nicolau6929ea92016-11-29 11:00:30 +0000134 u32 salt;
135
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700136 /* runtime */
137 u32 seq;
138 u32 seq_hi;
139 u32 last_seq;
140 u32 last_seq_hi;
141 u64 replay_window;
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000142
143 /*lifetime data */
144 u64 total_data_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700145} ipsec_sa_t;
146
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700147typedef struct
148{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700149 ip46_address_t start, stop;
150} ip46_address_range_t;
151
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700152typedef struct
153{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154 u16 start, stop;
155} port_range_t;
156
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700157typedef struct
158{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 u8 is_add;
160 u8 esn;
161 u8 anti_replay;
162 ip4_address_t local_ip, remote_ip;
163 u32 local_spi;
164 u32 remote_spi;
Matthew Smith2838a232016-06-21 16:05:09 -0500165 ipsec_crypto_alg_t crypto_alg;
166 u8 local_crypto_key_len;
167 u8 local_crypto_key[128];
168 u8 remote_crypto_key_len;
169 u8 remote_crypto_key[128];
170 ipsec_integ_alg_t integ_alg;
171 u8 local_integ_key_len;
172 u8 local_integ_key[128];
173 u8 remote_integ_key_len;
174 u8 remote_integ_key[128];
Matthew Smith8e1039a2018-04-12 07:32:56 -0500175 u8 renumber;
176 u32 show_instance;
Radu Nicolau717de092018-08-03 10:37:24 +0100177 u8 udp_encap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700178} ipsec_add_del_tunnel_args_t;
179
Matus Fabian694265d2016-08-10 01:55:36 -0700180typedef struct
181{
182 u8 is_add;
183 u32 local_sa_id;
184 u32 remote_sa_id;
185 ip4_address_t local_ip;
186 ip4_address_t remote_ip;
187} ipsec_add_del_ipsec_gre_tunnel_args_t;
188
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700189typedef enum
190{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191 IPSEC_IF_SET_KEY_TYPE_NONE,
192 IPSEC_IF_SET_KEY_TYPE_LOCAL_CRYPTO,
193 IPSEC_IF_SET_KEY_TYPE_REMOTE_CRYPTO,
194 IPSEC_IF_SET_KEY_TYPE_LOCAL_INTEG,
195 IPSEC_IF_SET_KEY_TYPE_REMOTE_INTEG,
196} ipsec_if_set_key_type_t;
197
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700198typedef struct
199{
200 u32 id;
201 i32 priority;
202 u8 is_outbound;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700204 // Selector
205 u8 is_ipv6;
206 ip46_address_range_t laddr;
207 ip46_address_range_t raddr;
208 u8 protocol;
209 port_range_t lport;
210 port_range_t rport;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700211
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700212 // Policy
213 u8 policy;
214 u32 sa_id;
215 u32 sa_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700216
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700217 // Counter
218 vlib_counter_t counter;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219} ipsec_policy_t;
220
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700221typedef struct
222{
223 u32 id;
224 /* pool of policies */
225 ipsec_policy_t *policies;
226 /* vectors of policy indices */
227 u32 *ipv4_outbound_policies;
228 u32 *ipv6_outbound_policies;
229 u32 *ipv4_inbound_protect_policy_indices;
230 u32 *ipv4_inbound_policy_discard_and_bypass_indices;
231 u32 *ipv6_inbound_protect_policy_indices;
232 u32 *ipv6_inbound_policy_discard_and_bypass_indices;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233} ipsec_spd_t;
234
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700235typedef struct
236{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237 u32 spd_index;
238} ip4_ipsec_config_t;
239
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700240typedef struct
241{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242 u32 spd_index;
243} ip6_ipsec_config_t;
244
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700245typedef struct
246{
Dave Baracheb987d32018-05-03 08:26:39 -0400247 /* Required for pool_get_aligned */
248 CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249 u32 input_sa_index;
250 u32 output_sa_index;
251 u32 hw_if_index;
Matthew Smith8e1039a2018-04-12 07:32:56 -0500252 u32 show_instance;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700253} ipsec_tunnel_if_t;
254
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700255typedef struct
256{
Sergio Gonzalez Monroydb93cd92017-08-26 15:22:05 +0100257 clib_error_t *(*add_del_sa_sess_cb) (u32 sa_index, u8 is_add);
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000258 clib_error_t *(*check_support_cb) (ipsec_sa_t * sa);
259} ipsec_main_callbacks_t;
260
261typedef struct
262{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700263 /* pool of tunnel instances */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700264 ipsec_spd_t *spds;
265 ipsec_sa_t *sad;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266
267 /* pool of tunnel interfaces */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700268 ipsec_tunnel_if_t *tunnel_interfaces;
269 u32 *free_tunnel_if_indices;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700271 u32 **empty_buffers;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700273 uword *tunnel_index_by_key;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274
275 /* convenience */
276 vlib_main_t *vlib_main;
277 vnet_main_t *vnet_main;
278
279 /* next node indices */
280 u32 feature_next_node_index[32];
281
282 /* hashes */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700283 uword *spd_index_by_spd_id;
284 uword *spd_index_by_sw_if_index;
285 uword *sa_index_by_sa_id;
286 uword *ipsec_if_pool_index_by_key;
Matthew Smith8e1039a2018-04-12 07:32:56 -0500287 uword *ipsec_if_real_dev_by_show_dev;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700288
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700289 /* node indices */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700290 u32 error_drop_node_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291 u32 esp_encrypt_node_index;
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000292 u32 esp_decrypt_node_index;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800293 u32 ah_encrypt_node_index;
294 u32 ah_decrypt_node_index;
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700295 /* next node indices */
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000296 u32 esp_encrypt_next_index;
297 u32 esp_decrypt_next_index;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800298 u32 ah_encrypt_next_index;
299 u32 ah_decrypt_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700300
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000301 /* callbacks */
302 ipsec_main_callbacks_t cb;
Klement Sekeraee52d872018-06-07 19:36:07 +0200303
304 /* helper for sort function */
305 ipsec_spd_t *spd_to_sort;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700306} ipsec_main_t;
307
Dave Wallace71612d62017-10-24 01:32:41 -0400308extern ipsec_main_t ipsec_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700309
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100310extern vlib_node_registration_t esp_encrypt_node;
311extern vlib_node_registration_t esp_decrypt_node;
“mukeshyadav1984”430ac932017-11-23 02:39:33 -0800312extern vlib_node_registration_t ah_encrypt_node;
313extern vlib_node_registration_t ah_decrypt_node;
Jean-Mickael Guerin8941ec22016-03-04 14:14:21 +0100314extern vlib_node_registration_t ipsec_if_input_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315
316
317/*
318 * functions
319 */
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700320int ipsec_set_interface_spd (vlib_main_t * vm, u32 sw_if_index, u32 spd_id,
321 int is_add);
322int ipsec_add_del_spd (vlib_main_t * vm, u32 spd_id, int is_add);
323int ipsec_add_del_policy (vlib_main_t * vm, ipsec_policy_t * policy,
324 int is_add);
Radu Nicolau717de092018-08-03 10:37:24 +0100325int ipsec_add_del_sa (vlib_main_t * vm, ipsec_sa_t * new_sa, int is_add);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700326int ipsec_set_sa_key (vlib_main_t * vm, ipsec_sa_t * sa_update);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327
Matus Fabian694265d2016-08-10 01:55:36 -0700328u32 ipsec_get_sa_index_by_sa_id (u32 sa_id);
Matthew Smithca514fd2017-10-12 12:06:59 -0500329u8 ipsec_is_sa_used (u32 sa_index);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700330u8 *format_ipsec_policy_action (u8 * s, va_list * args);
331u8 *format_ipsec_crypto_alg (u8 * s, va_list * args);
332u8 *format_ipsec_integ_alg (u8 * s, va_list * args);
333u8 *format_ipsec_replay_window (u8 * s, va_list * args);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334uword unformat_ipsec_policy_action (unformat_input_t * input, va_list * args);
335uword unformat_ipsec_crypto_alg (unformat_input_t * input, va_list * args);
336uword unformat_ipsec_integ_alg (unformat_input_t * input, va_list * args);
337
Matthew Smithe04d09d2017-05-14 21:47:18 -0500338int ipsec_add_del_tunnel_if_internal (vnet_main_t * vnm,
339 ipsec_add_del_tunnel_args_t * args,
340 u32 * sw_if_index);
Matthew Smith2838a232016-06-21 16:05:09 -0500341int ipsec_add_del_tunnel_if (ipsec_add_del_tunnel_args_t * args);
Matus Fabian694265d2016-08-10 01:55:36 -0700342int ipsec_add_del_ipsec_gre_tunnel (vnet_main_t * vnm,
343 ipsec_add_del_ipsec_gre_tunnel_args_t *
344 args);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700345int ipsec_set_interface_key (vnet_main_t * vnm, u32 hw_if_index,
346 ipsec_if_set_key_type_t type, u8 alg, u8 * key);
Matthew Smithca514fd2017-10-12 12:06:59 -0500347int ipsec_set_interface_sa (vnet_main_t * vnm, u32 hw_if_index, u32 sa_id,
348 u8 is_outbound);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700349
350
351/*
352 * inline functions
353 */
354
355always_inline void
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700356ipsec_alloc_empty_buffers (vlib_main_t * vm, ipsec_main_t * im)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700357{
Damjan Marion067cd622018-07-11 12:47:43 +0200358 u32 thread_index = vm->thread_index;
Damjan Marion586afd72017-04-05 19:18:20 +0200359 uword l = vec_len (im->empty_buffers[thread_index]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360 uword n_alloc = 0;
361
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700362 if (PREDICT_FALSE (l < VLIB_FRAME_SIZE))
Ed Warnickecb9cada2015-12-08 15:45:58 -0700363 {
Damjan Marion586afd72017-04-05 19:18:20 +0200364 if (!im->empty_buffers[thread_index])
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700365 {
Damjan Marion586afd72017-04-05 19:18:20 +0200366 vec_alloc (im->empty_buffers[thread_index], 2 * VLIB_FRAME_SIZE);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700367 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368
Damjan Marion586afd72017-04-05 19:18:20 +0200369 n_alloc = vlib_buffer_alloc (vm, im->empty_buffers[thread_index] + l,
Damjan Marion67655492016-11-15 12:50:28 +0100370 2 * VLIB_FRAME_SIZE - l);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700371
Damjan Marion586afd72017-04-05 19:18:20 +0200372 _vec_len (im->empty_buffers[thread_index]) = l + n_alloc;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373 }
374}
375
Matus Fabian08a6f012016-11-15 06:08:51 -0800376static_always_inline u32
377get_next_output_feature_node_index (vlib_buffer_t * b,
378 vlib_node_runtime_t * nr)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700379{
Matus Fabian08a6f012016-11-15 06:08:51 -0800380 u32 next;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700381 vlib_main_t *vm = vlib_get_main ();
Matus Fabian08a6f012016-11-15 06:08:51 -0800382 vlib_node_t *node = vlib_get_node (vm, nr->node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383
Damjan Marion7d98a122018-07-19 20:42:08 +0200384 vnet_feature_next (&next, b);
Matus Fabian08a6f012016-11-15 06:08:51 -0800385 return node->next_nodes[next];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700386}
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700387
Sergio Gonzalez Monroya10f62b2016-11-25 13:36:12 +0000388#endif /* __IPSEC_H__ */
389
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700390/*
391 * fd.io coding-style-patch-verification: ON
392 *
393 * Local Variables:
394 * eval: (c-set-style "gnu")
395 * End:
396 */