blob: 91d21d4dce991e7adc2caf835defb693da254cb4 [file] [log] [blame]
Neale Ranns17dcec02019-01-09 21:22:20 -08001/* Hey Emacs use -*- mode: C -*- */
Pavel Kotucek9c7ef032016-12-21 07:46:45 +01002/*
3 * Copyright (c) 2015-2016 Cisco and/or its affiliates.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Neale Ranns17dcec02019-01-09 21:22:20 -080017option version = "3.0.0";
18
19import "vnet/ip/ip_types.api";
Dave Barach0d056e52017-09-28 15:11:16 -040020
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010021/** \brief IPsec: Add/delete Security Policy Database
22 @param client_index - opaque cookie to identify the sender
23 @param context - sender context, to match reply w/ request
24 @param is_add - add SPD if non-zero, else delete
25 @param spd_id - SPD instance id (control plane allocated)
26*/
27
Dave Barach11b8dbf2017-04-24 10:46:54 -040028autoreply define ipsec_spd_add_del
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010029{
30 u32 client_index;
31 u32 context;
32 u8 is_add;
33 u32 spd_id;
34};
35
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010036/** \brief IPsec: Add/delete SPD from interface
37
38 @param client_index - opaque cookie to identify the sender
39 @param context - sender context, to match reply w/ request
40 @param is_add - add security mode if non-zero, else delete
41 @param sw_if_index - index of the interface
42 @param spd_id - SPD instance id to use for lookups
43*/
44
45
Dave Barach11b8dbf2017-04-24 10:46:54 -040046autoreply define ipsec_interface_add_del_spd
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010047{
48 u32 client_index;
49 u32 context;
50
51 u8 is_add;
52 u32 sw_if_index;
53 u32 spd_id;
54};
55
Neale Ranns17dcec02019-01-09 21:22:20 -080056
57enum ipsec_spd_action
58{
59 /* bypass - no IPsec processing */
60 IPSEC_API_SPD_ACTION_BYPASS = 0,
61 /* discard - discard packet with ICMP processing */
62 IPSEC_API_SPD_ACTION_DISCARD,
63 /* resolve - send request to control plane for SA resolving */
64 IPSEC_API_SPD_ACTION_RESOLVE,
65 /* protect - apply IPsec policy using following parameters */
66 IPSEC_API_SPD_ACTION_PROTECT,
67};
68
69/** \brief IPsec: Security Policy Database entry
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010070
71 See RFC 4301, 4.4.1.1 on how to match packet to selectors
72
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010073 @param spd_id - SPD instance id (control plane allocated)
74 @param priority - priority of SPD entry (non-unique value). Used to order SPD matching - higher priorities match before lower
75 @param is_outbound - entry applies to outbound traffic if non-zero, otherwise applies to inbound traffic
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010076 @param remote_address_start - start of remote address range to match
77 @param remote_address_stop - end of remote address range to match
78 @param local_address_start - start of local address range to match
79 @param local_address_stop - end of local address range to match
Neale Ranns17dcec02019-01-09 21:22:20 -080080 @param protocol - protocol type to match [0 means any] otherwise IANA value
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010081 @param remote_port_start - start of remote port range to match ...
82 @param remote_port_stop - end of remote port range to match [0 to 65535 means ANY, 65535 to 0 means OPAQUE]
83 @param local_port_start - start of local port range to match ...
84 @param local_port_stop - end of remote port range to match [0 to 65535 means ANY, 65535 to 0 means OPAQUE]
Neale Ranns17dcec02019-01-09 21:22:20 -080085 @param policy - action to perform on match
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010086 @param sa_id - SAD instance id (control plane allocated)
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010087*/
Neale Ranns17dcec02019-01-09 21:22:20 -080088typedef ipsec_spd_entry
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010089{
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010090 u32 spd_id;
91 i32 priority;
92 u8 is_outbound;
93
Neale Ranns17dcec02019-01-09 21:22:20 -080094 u32 sa_id;
95 vl_api_ipsec_spd_action_t policy;
Pavel Kotucek9c7ef032016-12-21 07:46:45 +010096 u8 protocol;
97
Neale Ranns17dcec02019-01-09 21:22:20 -080098 // Selector
Neale Ranns17dcec02019-01-09 21:22:20 -080099 vl_api_address_t remote_address_start;
100 vl_api_address_t remote_address_stop;
101 vl_api_address_t local_address_start;
102 vl_api_address_t local_address_stop;
103
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100104 u16 remote_port_start;
105 u16 remote_port_stop;
106 u16 local_port_start;
107 u16 local_port_stop;
Neale Ranns17dcec02019-01-09 21:22:20 -0800108};
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100109
Neale Ranns17dcec02019-01-09 21:22:20 -0800110/** \brief IPsec: Add/delete Security Policy Database entry
111
112 @param client_index - opaque cookie to identify the sender
113 @param context - sender context, to match reply w/ request
114 @param is_add - add SPD if non-zero, else delete
115 @param entry - Description of the entry to add/dell
116*/
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800117define ipsec_spd_entry_add_del
Neale Ranns17dcec02019-01-09 21:22:20 -0800118{
119 u32 client_index;
120 u32 context;
121 u8 is_add;
122 vl_api_ipsec_spd_entry_t entry;
123};
124
Neale Rannsa09c1ff2019-02-04 01:10:30 -0800125/** \brief IPsec: Reply Add/delete Security Policy Database entry
126
127 @param context - sender context, to match reply w/ request
128 @param retval - success/fail rutrun code
129 @param stat_index - An index for the policy in the stats segment @ /net/ipec/policy
130*/
131define ipsec_spd_entry_add_del_reply
132{
133 u32 context;
134 i32 retval;
135 u32 stat_index;
136};
137
Neale Ranns17dcec02019-01-09 21:22:20 -0800138/** \brief Dump IPsec all SPD IDs
139 @param client_index - opaque cookie to identify the sender
140 @param context - sender context, to match reply w/ request
141*/
142define ipsec_spds_dump {
143 u32 client_index;
144 u32 context;
145};
146
147/** \brief Dump IPsec all SPD IDs response
148 @param client_index - opaque cookie to identify the sender
149 @param spd_id - SPD instance id (control plane allocated)
150 @param npolicies - number of policies in SPD
151*/
152define ipsec_spds_details {
153 u32 context;
154 u32 spd_id;
155 u32 npolicies;
156};
157
158/** \brief Dump ipsec policy database data
159 @param client_index - opaque cookie to identify the sender
160 @param context - sender context, to match reply w/ request
161 @param spd_id - SPD instance id
162 @param sa_id - SA id, optional, set to ~0 to see all policies in SPD
163*/
164define ipsec_spd_dump {
165 u32 client_index;
166 u32 context;
167 u32 spd_id;
168 u32 sa_id;
169};
170
171/** \brief IPsec policy database response
172 @param context - sender context which was passed in the request
173 €param entry - The SPD entry.
174 @param bytes - byte count of packets matching this policy
175 @param packets - count of packets matching this policy
176*/
177define ipsec_spd_details {
178 u32 context;
179 vl_api_ipsec_spd_entry_t entry;
Neale Ranns17dcec02019-01-09 21:22:20 -0800180};
181
182/*
183 * @brief Support cryptographic algorithms
184 */
185enum ipsec_crypto_alg
186{
187 IPSEC_API_CRYPTO_ALG_NONE = 0,
188 IPSEC_API_CRYPTO_ALG_AES_CBC_128,
189 IPSEC_API_CRYPTO_ALG_AES_CBC_192,
190 IPSEC_API_CRYPTO_ALG_AES_CBC_256,
191 IPSEC_API_CRYPTO_ALG_AES_CTR_128,
192 IPSEC_API_CRYPTO_ALG_AES_CTR_192,
193 IPSEC_API_CRYPTO_ALG_AES_CTR_256,
194 IPSEC_API_CRYPTO_ALG_AES_GCM_128,
195 IPSEC_API_CRYPTO_ALG_AES_GCM_192,
196 IPSEC_API_CRYPTO_ALG_AES_GCM_256,
197 IPSEC_API_CRYPTO_ALG_DES_CBC,
198 IPSEC_API_CRYPTO_ALG_3DES_CBC,
199};
200
201/*
202 * @brief Supported Integrity Algorithms
203 */
204enum ipsec_integ_alg
205{
206 IPSEC_API_INTEG_ALG_NONE = 0,
207 /* RFC2403 */
208 IPSEC_API_INTEG_ALG_MD5_96,
209 /* RFC2404 */
210 IPSEC_API_INTEG_ALG_SHA1_96,
211 /* draft-ietf-ipsec-ciph-sha-256-00 */
212 IPSEC_API_INTEG_ALG_SHA_256_96,
213 /* RFC4868 */
214 IPSEC_API_INTEG_ALG_SHA_256_128,
215 /* RFC4868 */
216 IPSEC_API_INTEG_ALG_SHA_384_192,
217 /* RFC4868 */
218 IPSEC_API_INTEG_ALG_SHA_512_256,
219};
220
221enum ipsec_sad_flags
222{
223 IPSEC_API_SAD_FLAG_NONE = 0,
224 /* Enable extended sequence numbers */
225 IPSEC_API_SAD_FLAG_USE_EXTENDED_SEQ_NUM = 0x01,
226 /* Enable Anti-replay */
227 IPSEC_API_SAD_FLAG_USE_ANTI_REPLAY = 0x02,
228 /* IPsec tunnel mode if non-zero, else transport mode */
229 IPSEC_API_SAD_FLAG_IS_TUNNEL = 0x04,
230 /* IPsec tunnel mode is IPv6 if non-zero,
231 * else IPv4 tunnel only valid if is_tunnel is non-zero */
232 IPSEC_API_SAD_FLAG_IS_TUNNEL_V6 = 0x08,
233 /* enable UDP encapsulation for NAT traversal */
234 IPSEC_API_SAD_FLAG_UDP_ENCAP = 0x10,
Neale Ranns8d7c5022019-02-06 01:41:05 -0800235
236 /* come-on Ole please fix this */
237 IPSEC_API_SAD_COMBO_12 = 12,
238 IPSEC_API_SAD_COMBO_20 = 20,
Neale Ranns17dcec02019-01-09 21:22:20 -0800239};
240
241enum ipsec_proto
242{
243 IPSEC_API_PROTO_ESP,
244 IPSEC_API_PROTO_AH,
245};
246
247typedef key
248{
249 /* the length of the key */
250 u8 length;
251 /* The data for the key */
252 u8 data[128];
253};
254
255/** \brief IPsec: Security Association Database entry
256 @param client_index - opaque cookie to identify the sender
257 @param context - sender context, to match reply w/ request
258 @param is_add - add SAD entry if non-zero, else delete
259 @param sad_id - sad id
260 @param spi - security parameter index
261 @param protocol - 0 = AH, 1 = ESP
262 @param crypto_algorithm - a supported crypto algorithm
263 @param crypto_key - crypto keying material
264 @param integrity_algorithm - one of the supported algorithms
265 @param integrity_key - integrity keying material
266 @param tunnel_src_address - IPsec tunnel source address IPv6 if is_tunnel_ipv6 is non-zero, else IPv4. Only valid if is_tunnel is non-zero
267 @param tunnel_dst_address - IPsec tunnel destination address IPv6 if is_tunnel_ipv6 is non-zero, else IPv4. Only valid if is_tunnel is non-zero
Neale Ranns8d7c5022019-02-06 01:41:05 -0800268 @param tx_table_id - the FIB id used for encapsulated packets
Neale Ranns17dcec02019-01-09 21:22:20 -0800269 */
270typedef ipsec_sad_entry
271{
272 u32 sad_id;
273
274 u32 spi;
275
276 vl_api_ipsec_proto_t protocol;
277
278 vl_api_ipsec_crypto_alg_t crypto_algorithm;
279 vl_api_key_t crypto_key;
280
281 vl_api_ipsec_integ_alg_t integrity_algorithm;
282 vl_api_key_t integrity_key;
283
284 vl_api_ipsec_sad_flags_t flags;
285
286 vl_api_address_t tunnel_src;
287 vl_api_address_t tunnel_dst;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800288 u32 tx_table_id;
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100289};
290
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100291/** \brief IPsec: Add/delete Security Association Database entry
292 @param client_index - opaque cookie to identify the sender
293 @param context - sender context, to match reply w/ request
Neale Ranns17dcec02019-01-09 21:22:20 -0800294 @param entry - Entry to add or delete
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100295 */
Neale Rannseba31ec2019-02-17 18:04:27 +0000296define ipsec_sad_entry_add_del
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100297{
298 u32 client_index;
299 u32 context;
300 u8 is_add;
Neale Ranns17dcec02019-01-09 21:22:20 -0800301 vl_api_ipsec_sad_entry_t entry;
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100302};
Neale Rannseba31ec2019-02-17 18:04:27 +0000303define ipsec_sad_entry_add_del_reply
304{
305 u32 context;
306 i32 retval;
307 u32 stat_index;
308};
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100309
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100310/** \brief IPsec: Update Security Association keys
311 @param client_index - opaque cookie to identify the sender
312 @param context - sender context, to match reply w/ request
313
314 @param sa_id - sa id
315
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100316 @param crypto_key - crypto keying material
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100317 @param integrity_key - integrity keying material
318*/
319
Dave Barach11b8dbf2017-04-24 10:46:54 -0400320autoreply define ipsec_sa_set_key
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100321{
322 u32 client_index;
323 u32 context;
324
325 u32 sa_id;
326
Neale Ranns17dcec02019-01-09 21:22:20 -0800327 vl_api_key_t crypto_key;
328 vl_api_key_t integrity_key;
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100329};
330
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100331/** \brief IKEv2: Add/delete profile
332 @param client_index - opaque cookie to identify the sender
333 @param context - sender context, to match reply w/ request
334
335 @param name - IKEv2 profile name
336 @param is_add - Add IKEv2 profile if non-zero, else delete
337*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400338autoreply define ikev2_profile_add_del
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100339{
340 u32 client_index;
341 u32 context;
342
343 u8 name[64];
344 u8 is_add;
345};
346
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100347/** \brief IKEv2: Set IKEv2 profile authentication method
348 @param client_index - opaque cookie to identify the sender
349 @param context - sender context, to match reply w/ request
350
351 @param name - IKEv2 profile name
352 @param auth_method - IKEv2 authentication method (shared-key-mic/rsa-sig)
353 @param is_hex - Authentication data in hex format if non-zero, else string
354 @param data_len - Authentication data length
355 @param data - Authentication data (for rsa-sig cert file path)
356*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400357autoreply define ikev2_profile_set_auth
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100358{
359 u32 client_index;
360 u32 context;
361
362 u8 name[64];
363 u8 auth_method;
364 u8 is_hex;
365 u32 data_len;
Juraj Slobodae9fcf232018-04-23 10:14:37 +0200366 u8 data[data_len];
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100367};
368
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100369/** \brief IKEv2: Set IKEv2 profile local/remote identification
370 @param client_index - opaque cookie to identify the sender
371 @param context - sender context, to match reply w/ request
372
373 @param name - IKEv2 profile name
374 @param is_local - Identification is local if non-zero, else remote
375 @param id_type - Identification type
376 @param data_len - Identification data length
377 @param data - Identification data
378*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400379autoreply define ikev2_profile_set_id
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100380{
381 u32 client_index;
382 u32 context;
383
384 u8 name[64];
385 u8 is_local;
386 u8 id_type;
387 u32 data_len;
Juraj Slobodae9fcf232018-04-23 10:14:37 +0200388 u8 data[data_len];
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100389};
390
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100391/** \brief IKEv2: Set IKEv2 profile traffic selector parameters
392 @param client_index - opaque cookie to identify the sender
393 @param context - sender context, to match reply w/ request
394
395 @param name - IKEv2 profile name
396 @param is_local - Traffic selector is local if non-zero, else remote
397 @param proto - Traffic selector IP protocol (if zero not relevant)
398 @param start_port - The smallest port number allowed by traffic selector
399 @param end_port - The largest port number allowed by traffic selector
400 @param start_addr - The smallest address included in traffic selector
401 @param end_addr - The largest address included in traffic selector
402*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400403autoreply define ikev2_profile_set_ts
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100404{
405 u32 client_index;
406 u32 context;
407
408 u8 name[64];
409 u8 is_local;
410 u8 proto;
411 u16 start_port;
412 u16 end_port;
413 u32 start_addr;
414 u32 end_addr;
415};
416
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100417/** \brief IKEv2: Set IKEv2 local RSA private key
418 @param client_index - opaque cookie to identify the sender
419 @param context - sender context, to match reply w/ request
420
421 @param key_file - Key file absolute path
422*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400423autoreply define ikev2_set_local_key
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100424{
425 u32 client_index;
426 u32 context;
427
428 u8 key_file[256];
429};
430
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000431/** \brief IKEv2: Set IKEv2 responder interface and IP address
432 @param client_index - opaque cookie to identify the sender
433 @param context - sender context, to match reply w/ request
434
435 @param name - IKEv2 profile name
436 @param sw_if_index - interface index
437 @param address - interface address
438*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400439autoreply define ikev2_set_responder
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000440{
441 u32 client_index;
442 u32 context;
443
444 u8 name[64];
445 u32 sw_if_index;
446 u8 address[4];
447};
448
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000449/** \brief IKEv2: Set IKEv2 IKE transforms in SA_INIT proposal (RFC 7296)
450 @param client_index - opaque cookie to identify the sender
451 @param context - sender context, to match reply w/ request
452
453 @param name - IKEv2 profile name
454 @param crypto_alg - encryption algorithm
455 @param crypto_key_size - encryption key size
456 @param integ_alg - integrity algorithm
457 @param dh_group - Diffie-Hellman group
458
459*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400460autoreply define ikev2_set_ike_transforms
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000461{
462 u32 client_index;
463 u32 context;
464
465 u8 name[64];
466 u32 crypto_alg;
467 u32 crypto_key_size;
468 u32 integ_alg;
469 u32 dh_group;
470};
471
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000472/** \brief IKEv2: Set IKEv2 ESP transforms in SA_INIT proposal (RFC 7296)
473 @param client_index - opaque cookie to identify the sender
474 @param context - sender context, to match reply w/ request
475
476 @param name - IKEv2 profile name
477 @param crypto_alg - encryption algorithm
478 @param crypto_key_size - encryption key size
479 @param integ_alg - integrity algorithm
480 @param dh_group - Diffie-Hellman group
481
482*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400483autoreply define ikev2_set_esp_transforms
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000484{
485 u32 client_index;
486 u32 context;
487
488 u8 name[64];
489 u32 crypto_alg;
490 u32 crypto_key_size;
491 u32 integ_alg;
492 u32 dh_group;
493};
494
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000495/** \brief IKEv2: Set Child SA lifetime, limited by time and/or data
496 @param client_index - opaque cookie to identify the sender
497 @param context - sender context, to match reply w/ request
498
499 @param name - IKEv2 profile name
500 @param lifetime - SA maximum life time in seconds (0 to disable)
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -0700501 @param lifetime_jitter - Jitter added to prevent simultaneous rekeying
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000502 @param handover - Hand over time
503 @param lifetime_maxdata - SA maximum life time in bytes (0 to disable)
504
505*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400506autoreply define ikev2_set_sa_lifetime
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000507{
508 u32 client_index;
509 u32 context;
510
511 u8 name[64];
512 u64 lifetime;
513 u32 lifetime_jitter;
514 u32 handover;
515 u64 lifetime_maxdata;
516};
517
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000518/** \brief IKEv2: Initiate the SA_INIT exchange
519 @param client_index - opaque cookie to identify the sender
520 @param context - sender context, to match reply w/ request
521
522 @param name - IKEv2 profile name
523
524*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400525autoreply define ikev2_initiate_sa_init
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000526{
527 u32 client_index;
528 u32 context;
529
530 u8 name[64];
531};
532
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000533/** \brief IKEv2: Initiate the delete IKE SA exchange
534 @param client_index - opaque cookie to identify the sender
535 @param context - sender context, to match reply w/ request
536
537 @param ispi - IKE SA initiator SPI
538
539*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400540autoreply define ikev2_initiate_del_ike_sa
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000541{
542 u32 client_index;
543 u32 context;
544
545 u64 ispi;
546};
547
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000548/** \brief IKEv2: Initiate the delete Child SA exchange
549 @param client_index - opaque cookie to identify the sender
550 @param context - sender context, to match reply w/ request
551
552 @param ispi - Child SA initiator SPI
553
554*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400555autoreply define ikev2_initiate_del_child_sa
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000556{
557 u32 client_index;
558 u32 context;
559
560 u32 ispi;
561};
562
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000563/** \brief IKEv2: Initiate the rekey Child SA exchange
564 @param client_index - opaque cookie to identify the sender
565 @param context - sender context, to match reply w/ request
566
567 @param ispi - Child SA initiator SPI
568
569*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400570autoreply define ikev2_initiate_rekey_child_sa
Radu Nicolaucb33dc22017-02-16 16:49:46 +0000571{
572 u32 client_index;
573 u32 context;
574
575 u32 ispi;
576};
577
Filip Varga871bca92018-11-02 13:51:44 +0100578/** \brief IPsec: Get SPD interfaces
579 @param client_index - opaque cookie to identify the sender
580 @param context - sender context, to match reply w/ request
581 @param spd_index - SPD index
582 @param spd_index_valid - if 1 spd_index is used to filter
583 spd_index's, if 0 no filtering is done
584*/
585define ipsec_spd_interface_dump {
586 u32 client_index;
587 u32 context;
588 u32 spd_index;
589 u8 spd_index_valid;
590};
591
592/** \brief IPsec: SPD interface response
593 @param context - sender context which was passed in the request
594 @param spd_index - SPD index
595 @param sw_if_index - index of the interface
596*/
597define ipsec_spd_interface_details {
598 u32 context;
599 u32 spd_index;
600 u32 sw_if_index;
601};
602
Matthew Smithb0972cb2017-05-02 16:20:41 -0500603/** \brief Add or delete IPsec tunnel interface
604 @param client_index - opaque cookie to identify the sender
605 @param context - sender context, to match reply w/ request
606 @param is_add - add IPsec tunnel interface if nonzero, else delete
607 @param esn - enable extended sequence numbers if nonzero, else disable
608 @param anti_replay - enable anti replay check if nonzero, else disable
609 @param local_ip - local IP address
610 @param remote_ip - IP address of remote IPsec peer
611 @param local_spi - SPI of outbound IPsec SA
612 @param remote_spi - SPI of inbound IPsec SA
613 @param crypto_alg - encryption algorithm ID
614 @param local_crypto_key_len - length of local crypto key in bytes
615 @param local_crypto_key - crypto key for outbound IPsec SA
616 @param remote_crypto_key_len - length of remote crypto key in bytes
617 @param remote_crypto_key - crypto key for inbound IPsec SA
618 @param integ_alg - integrity algorithm ID
619 @param local_integ_key_len - length of local integrity key in bytes
620 @param local_integ_key - integrity key for outbound IPsec SA
621 @param remote_integ_key_len - length of remote integrity key in bytes
622 @param remote_integ_key - integrity key for inbound IPsec SA
Matthew Smith8e1039a2018-04-12 07:32:56 -0500623 @param renumber - intf display name uses a specified instance if != 0
624 @param show_instance - instance to display for intf if renumber is set
Filip Tehlarb4a7a7d2018-11-30 07:27:27 -0800625 @param udp_encap - enable UDP encapsulation for NAT traversal
Pierre Pfister4c422f92018-12-10 11:19:08 +0100626 @param tx_table_id - the FIB id used after packet encap
Matthew Smithb0972cb2017-05-02 16:20:41 -0500627*/
Matthew Smithe04d09d2017-05-14 21:47:18 -0500628define ipsec_tunnel_if_add_del {
Matthew Smithb0972cb2017-05-02 16:20:41 -0500629 u32 client_index;
630 u32 context;
631 u8 is_add;
632 u8 esn;
633 u8 anti_replay;
634 u8 local_ip[4];
635 u8 remote_ip[4];
636 u32 local_spi;
637 u32 remote_spi;
638 u8 crypto_alg;
639 u8 local_crypto_key_len;
640 u8 local_crypto_key[128];
641 u8 remote_crypto_key_len;
642 u8 remote_crypto_key[128];
643 u8 integ_alg;
644 u8 local_integ_key_len;
645 u8 local_integ_key[128];
646 u8 remote_integ_key_len;
647 u8 remote_integ_key[128];
Matthew Smith8e1039a2018-04-12 07:32:56 -0500648 u8 renumber;
649 u32 show_instance;
Filip Tehlarb4a7a7d2018-11-30 07:27:27 -0800650 u8 udp_encap;
Pierre Pfister4c422f92018-12-10 11:19:08 +0100651 u32 tx_table_id;
Matthew Smithb0972cb2017-05-02 16:20:41 -0500652};
653
Matthew Smithe04d09d2017-05-14 21:47:18 -0500654/** \brief Add/delete IPsec tunnel interface response
655 @param context - sender context, to match reply w/ request
656 @param retval - return status
657 @param sw_if_index - sw_if_index of new interface (for successful add)
658*/
659define ipsec_tunnel_if_add_del_reply {
660 u32 context;
661 i32 retval;
662 u32 sw_if_index;
663};
664
Matthew Smith28029532017-09-26 13:33:44 -0500665/** \brief Dump IPsec security association
666 @param client_index - opaque cookie to identify the sender
667 @param context - sender context, to match reply w/ request
668 @param sa_id - optional ID of an SA to dump, if ~0 dump all SAs in SAD
669*/
670define ipsec_sa_dump {
671 u32 client_index;
672 u32 context;
673 u32 sa_id;
674};
675
676/** \brief IPsec security association database response
677 @param context - sender context which was passed in the request
678 @param sa_id - SA ID, policy-based SAs >=0, tunnel interface SAs = 0
679 @param sw_if_index - sw_if_index of tunnel interface, policy-based SAs = ~0
680 @param spi - security parameter index
681 @param protocol - IPsec protocol (value from ipsec_protocol_t)
682 @param crypto_alg - crypto algorithm (value from ipsec_crypto_alg_t)
683 @param crypto_key_len - length of crypto_key in bytes
684 @param crypto_key - crypto keying material
685 @param integ_alg - integrity algorithm (value from ipsec_integ_alg_t)
686 @param integ_key_len - length of integ_key in bytes
687 @param integ_key - integrity keying material
688 @param use_esn - using extended sequence numbers when non-zero
689 @param use_anti_replay - using anti-replay window when non-zero
690 @param is_tunnel - IPsec tunnel mode when non-zero, else transport mode
691 @param is_tunnel_ipv6 - If using tunnel mode, endpoints are IPv6
692 @param tunnel_src_addr - Tunnel source address if using tunnel mode
693 @param tunnel_dst_addr - Tunnel destination address is using tunnel mode
694 @param salt - 4 byte salt
695 @param seq - current sequence number for outbound
696 @param seq_hi - high 32 bits of ESN for outbound
697 @param last_seq - highest sequence number received inbound
698 @param last_seq_hi - high 32 bits of highest ESN received inbound
699 @param replay_window - bit map of seq nums received relative to last_seq if using anti-replay
700 @param total_data_size - total bytes sent or received
Klement Sekera4b089f22018-04-17 18:04:57 +0200701 @param udp_encap - 1 if UDP encap enabled, 0 otherwise
Matthew Smith28029532017-09-26 13:33:44 -0500702*/
703define ipsec_sa_details {
704 u32 context;
Neale Ranns8d7c5022019-02-06 01:41:05 -0800705 vl_api_ipsec_sad_entry_t entry;
706
Matthew Smith28029532017-09-26 13:33:44 -0500707 u32 sw_if_index;
Matthew Smith28029532017-09-26 13:33:44 -0500708 u32 salt;
709 u64 seq_outbound;
710 u64 last_seq_inbound;
711 u64 replay_window;
712
713 u64 total_data_size;
714};
715
Matthew Smith75d85602017-10-05 19:03:05 -0500716/** \brief Set key on IPsec interface
717 @param client_index - opaque cookie to identify the sender
718 @param context - sender context, to match reply w/ request
719 @param sw_if_index - index of tunnel interface
720 @param key_type - type of key being set
721 @param alg - algorithm used with key
722 @param key_len - length key in bytes
723 @param key - key
724*/
725autoreply define ipsec_tunnel_if_set_key {
726 u32 client_index;
727 u32 context;
728 u32 sw_if_index;
729 u8 key_type;
730 u8 alg;
731 u8 key_len;
732 u8 key[128];
733};
734
Matthew Smithca514fd2017-10-12 12:06:59 -0500735/** \brief Set new SA on IPsec interface
736 @param client_index - opaque cookie to identify the sender
737 @param context - sender context, to match reply w/ request
738 @param sw_if_index - index of tunnel interface
739 @param sa_id - ID of SA to use
740 @param is_outbound - 1 if outbound (local) SA, 0 if inbound (remote)
741*/
742autoreply define ipsec_tunnel_if_set_sa {
743 u32 client_index;
744 u32 context;
745 u32 sw_if_index;
746 u32 sa_id;
747 u8 is_outbound;
748};
749
Klement Sekerab4d30532018-11-08 13:00:02 +0100750/** \brief Dump IPsec backends
751 @param client_index - opaque cookie to identify the sender
752 @param context - sender context, to match reply w/ request
753*/
754define ipsec_backend_dump {
755 u32 client_index;
756 u32 context;
757};
758
759/** \brief IPsec backend details
760 @param name - name of the backend
761 @param protocol - IPsec protocol (value from ipsec_protocol_t)
762 @param index - backend index
763 @param active - set to 1 if the backend is active, otherwise 0
764*/
765define ipsec_backend_details {
766 u32 context;
767 u8 name[128];
Neale Ranns17dcec02019-01-09 21:22:20 -0800768 vl_api_ipsec_proto_t protocol;
Klement Sekerab4d30532018-11-08 13:00:02 +0100769 u8 index;
770 u8 active;
771};
772
773/** \brief Select IPsec backend
774 @param client_index - opaque cookie to identify the sender
775 @param context - sender context, to match reply w/ request
776 @param protocol - IPsec protocol (value from ipsec_protocol_t)
777 @param index - backend index
778*/
779autoreply define ipsec_select_backend {
780 u32 client_index;
781 u32 context;
Neale Ranns17dcec02019-01-09 21:22:20 -0800782 vl_api_ipsec_proto_t protocol;
Klement Sekerab4d30532018-11-08 13:00:02 +0100783 u8 index;
784};
785
Pavel Kotucek9c7ef032016-12-21 07:46:45 +0100786/*
787 * Local Variables:
788 * eval: (c-set-style "gnu")
789 * End:
790 */
Dave Barach11b8dbf2017-04-24 10:46:54 -0400791