FD.io VPP  v21.06
Vector Packet Processing
esp.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 __ESP_H__
16 #define __ESP_H__
17 
18 #include <vnet/ip/ip.h>
19 #include <vnet/crypto/crypto.h>
20 #include <vnet/ipsec/ipsec.h>
21 
22 typedef struct
23 {
24  union
25  {
27  u8 spi_bytes[4];
28  };
30  u8 data[0];
31 } esp_header_t;
32 
33 typedef struct
34 {
37 } esp_footer_t;
38 
39 /* *INDENT-OFF* */
40 typedef CLIB_PACKED (struct {
42  esp_header_t esp;
43 }) ip4_and_esp_header_t;
44 /* *INDENT-ON* */
45 
46 /* *INDENT-OFF* */
47 typedef CLIB_PACKED (struct {
49  udp_header_t udp;
50  esp_header_t esp;
51 }) ip4_and_udp_and_esp_header_t;
52 /* *INDENT-ON* */
53 
54 /* *INDENT-OFF* */
55 typedef CLIB_PACKED (struct {
57  esp_header_t esp;
58 }) ip6_and_esp_header_t;
59 /* *INDENT-ON* */
60 
61 /**
62  * AES counter mode nonce
63  */
64 typedef struct
65 {
66  u32 salt;
67  u64 iv;
68  u32 ctr; /* counter: 1 in big-endian for ctr, unused for gcm */
69 } __clib_packed esp_ctr_nonce_t;
70 
71 STATIC_ASSERT_SIZEOF (esp_ctr_nonce_t, 16);
72 
73 /**
74  * AES GCM Additional Authentication data
75  */
76 typedef struct esp_aead_t_
77 {
78  /**
79  * for GCM: when using ESN it's:
80  * SPI, seq-hi, seg-low
81  * else
82  * SPI, seq-low
83  */
84  u32 data[3];
85 } __clib_packed esp_aead_t;
86 
87 #define ESP_SEQ_MAX (4294967295UL)
88 #define ESP_MAX_BLOCK_SIZE (16)
89 #define ESP_MAX_IV_SIZE (16)
90 #define ESP_MAX_ICV_SIZE (32)
91 
92 u8 *format_esp_header (u8 * s, va_list * args);
93 
94 /* TODO seq increment should be atomic to be accessed by multiple workers */
95 always_inline int
97 {
98  if (PREDICT_TRUE (ipsec_sa_is_set_USE_ESN (sa)))
99  {
100  if (PREDICT_FALSE (sa->seq == ESP_SEQ_MAX))
101  {
102  if (PREDICT_FALSE (ipsec_sa_is_set_USE_ANTI_REPLAY (sa) &&
103  sa->seq_hi == ESP_SEQ_MAX))
104  return 1;
105  sa->seq_hi++;
106  }
107  sa->seq++;
108  }
109  else
110  {
111  if (PREDICT_FALSE (ipsec_sa_is_set_USE_ANTI_REPLAY (sa) &&
112  sa->seq == ESP_SEQ_MAX))
113  return 1;
114  sa->seq++;
115  }
116 
117  return 0;
118 }
119 
121 esp_aad_fill (u8 * data, const esp_header_t * esp, const ipsec_sa_t * sa)
122 {
123  esp_aead_t *aad;
124 
125  aad = (esp_aead_t *) data;
126  aad->data[0] = esp->spi;
127 
128  if (ipsec_sa_is_set_USE_ESN (sa))
129  {
130  /* SPI, seq-hi, seq-low */
131  aad->data[1] = (u32) clib_host_to_net_u32 (sa->seq_hi);
132  aad->data[2] = esp->seq;
133  return 12;
134  }
135  else
136  {
137  /* SPI, seq-low */
138  aad->data[1] = esp->seq;
139  return 8;
140  }
141 }
142 
143 /* Special case to drop or hand off packets for sync/async modes.
144  *
145  * Different than sync mode, async mode only enqueue drop or hand-off packets
146  * to next nodes.
147  */
148 always_inline void
150  u16 index, u16 *nexts, u16 drop_next)
151 {
152  nexts[index] = drop_next;
153  b->error = node->errors[err];
154 }
155 
156 /* when submitting a frame is failed, drop all buffers in the frame */
160  u32 *from, u16 *nexts, u16 drop_next_index)
161 {
162  u32 n_drop = f->n_elts;
163  u32 *bi = f->buffer_indices;
164 
165  while (n_drop--)
166  {
167  from[index] = bi[0];
168  esp_set_next_index (vlib_get_buffer (vm, bi[0]), node, err, index, nexts,
169  drop_next_index);
170  bi++;
171  index++;
172  }
174 
175  return (f->n_elts);
176 }
177 
178 /**
179  * The post data structure to for esp_encrypt/decrypt_inline to write to
180  * vib_buffer_t opaque unused field, and for post nodes to pick up after
181  * dequeue.
182  **/
183 typedef struct
184 {
185  union
186  {
187  struct
188  {
193  };
195  };
196 
204 
207 
208 /* we are forced to store the decrypt post data into 2 separate places -
209  vlib_opaque and opaque2. */
210 typedef struct
211 {
216 
217 typedef union
218 {
222 
223 STATIC_ASSERT (sizeof (esp_post_data_t) <=
225  "Custom meta-data too large for vnet_buffer_opaque_t");
226 
227 #define esp_post_data(b) \
228  ((esp_post_data_t *)((u8 *)((b)->opaque) \
229  + STRUCT_OFFSET_OF (vnet_buffer_opaque_t, unused)))
230 
233  "Custom meta-data too large for vnet_buffer_opaque2_t");
234 
235 #define esp_post_data2(b) \
236  ((esp_decrypt_packet_data2_t *)((u8 *)((b)->opaque2) \
237  + STRUCT_OFFSET_OF (vnet_buffer_opaque2_t, unused)))
238 
239 typedef struct
240 {
241  /* esp post node index for async crypto */
248 
251 
252 #endif /* __ESP_H__ */
253 
254 /*
255  * fd.io coding-style-patch-verification: ON
256  *
257  * Local Variables:
258  * eval: (c-set-style "gnu")
259  * End:
260  */
The post data structure to for esp_encrypt/decrypt_inline to write to vib_buffer_t opaque unused fiel...
Definition: esp.h:183
static_always_inline void vnet_crypto_async_reset_frame(vnet_crypto_async_frame_t *f)
Definition: crypto.h:650
static u16 esp_aad_fill(u8 *data, const esp_header_t *esp, const ipsec_sa_t *sa)
Definition: esp.h:121
#define PREDICT_TRUE(x)
Definition: clib.h:125
unsigned long u64
Definition: types.h:89
u16 nexts[VLIB_FRAME_SIZE]
u32 esp6_post_next
Definition: esp.h:243
static void esp_set_next_index(vlib_buffer_t *b, vlib_node_runtime_t *node, u32 err, u16 index, u16 *nexts, u16 drop_next)
Definition: esp.h:149
struct esp_aead_t_ esp_aead_t
AES GCM Additional Authentication data.
Definition: esp.h:239
AES GCM Additional Authentication data.
Definition: esp.h:76
STATIC_ASSERT(sizeof(esp_post_data_t)<=STRUCT_SIZE_OF(vnet_buffer_opaque_t, unused), "Custom meta-data too large for vnet_buffer_opaque_t")
vlib_error_t * errors
Vector of errors for this node.
Definition: node.h:461
unsigned char u8
Definition: types.h:56
vlib_buffer_t ** b
u8 data[128]
Definition: ipsec_types.api:92
u32 seq_hi
Definition: ipsec_sa.h:133
unsigned int u32
Definition: types.h:88
static int esp_seq_advance(ipsec_sa_t *sa)
Definition: esp.h:96
vlib_frame_t * f
vl_api_ip6_address_t ip6
Definition: one.api:424
u32 esp4_tun_post_next
Definition: esp.h:244
u32 data[3]
for GCM: when using ESN it&#39;s: SPI, seq-hi, seg-low else SPI, seq-low
Definition: esp.h:84
u32 salt
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:145
static u8 iv[]
Definition: aes_cbc.c:24
esp_async_post_next_t esp_decrypt_async_next
Definition: ipsec.c:30
typedef CLIB_PACKED(struct { ip4_header_t ip4;esp_header_t esp;}) ip4_and_esp_header_t
unsigned short u16
Definition: types.h:57
esp_async_post_next_t esp_encrypt_async_next
Definition: ipsec.c:29
#define PREDICT_FALSE(x)
Definition: clib.h:124
vl_api_ip4_address_t ip4
Definition: one.api:376
vlib_main_t * vm
X-connect all packets from the HOST to the PHY.
Definition: nat44_ei.c:3047
static u32 esp_async_recycle_failed_submit(vlib_main_t *vm, vnet_crypto_async_frame_t *f, vlib_node_runtime_t *node, u32 err, u16 index, u32 *from, u16 *nexts, u16 drop_next_index)
Definition: esp.h:158
u32 buffer_indices[VNET_CRYPTO_FRAME_SIZE]
Definition: crypto.h:365
u32 index
Definition: flow_types.api:221
enum ipsec_sad_flags_t_ ipsec_sa_flags_t
STATIC_ASSERT_SIZEOF(esp_ctr_nonce_t, 16)
u32 esp4_post_next
Definition: esp.h:242
u32 esp6_tun_post_next
Definition: esp.h:245
u8 * format_esp_header(u8 *s, va_list *args)
Definition: esp_format.c:23
#define always_inline
Definition: rdma_mlx5dv.h:23
ipsec_sa_flags_t flags
Definition: esp.h:191
u32 seq
Definition: esp.h:29
#define ESP_SEQ_MAX
Definition: esp.h:87
u32 spi
Definition: esp.h:26
u16 next_index
Definition: esp.h:219
vlib_main_t vlib_node_runtime_t * node
Definition: nat44_ei.c:3047
VLIB buffer representation.
Definition: buffer.h:111
esp_decrypt_packet_data_t decrypt_data
Definition: esp.h:220
#define STRUCT_SIZE_OF(t, f)
Definition: clib.h:75
vlib_buffer_t * lb
Definition: esp.h:212
u32 esp_mpls_tun_post_next
Definition: esp.h:246
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:111
signed short i16
Definition: types.h:46
Definition: esp.h:217
STATIC_ASSERT_OFFSET_OF(esp_decrypt_packet_data_t, seq, sizeof(u64))