2 * ipsec_tun_protect_in.c : IPSec interface input node
4 * Copyright (c) 2015 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
18 #include <vnet/vnet.h>
19 #include <vnet/api_errno.h>
20 #include <vnet/ip/ip.h>
22 #include <vnet/ipsec/ipsec.h>
23 #include <vnet/ipsec/esp.h>
24 #include <vnet/ipsec/ipsec_io.h>
25 #include <vnet/ipsec/ipsec_punt.h>
26 #include <vnet/ipsec/ipsec_tun.h>
27 #include <vnet/ip/ip4_input.h>
29 /* Statistics (not really errors) */
30 #define foreach_ipsec_tun_protect_input_error \
31 _(RX, "good packets received") \
32 _(DISABLED, "ipsec packets received on disabled interface") \
33 _(NO_TUNNEL, "no matching tunnel") \
34 _(TUNNEL_MISMATCH, "SPI-tunnel mismatch") \
35 _(NAT_KEEPALIVE, "NAT Keepalive") \
36 _(TOO_SHORT, "Too Short") \
39 static char *ipsec_tun_protect_input_error_strings[] = {
40 #define _(sym,string) string,
41 foreach_ipsec_tun_protect_input_error
47 #define _(sym,str) IPSEC_TUN_PROTECT_INPUT_ERROR_##sym,
48 foreach_ipsec_tun_protect_input_error
50 IPSEC_TUN_PROTECT_INPUT_N_ERROR,
51 } ipsec_tun_protect_input_error_t;
53 typedef enum ipsec_tun_next_t_
55 #define _(v, s) IPSEC_TUN_PROTECT_NEXT_##v,
56 foreach_ipsec_input_next
58 IPSEC_TUN_PROTECT_N_NEXT,
65 ipsec4_tunnel_kv_t kv4;
66 ipsec6_tunnel_kv_t kv6;
70 } ipsec_tun_protect_input_trace_t;
73 format_ipsec_tun_protect_input_trace (u8 * s, va_list * args)
75 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
76 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
77 ipsec_tun_protect_input_trace_t *t =
78 va_arg (*args, ipsec_tun_protect_input_trace_t *);
81 s = format (s, "IPSec: %U seq %u",
82 format_ipsec6_tunnel_kv, &t->kv6, t->seq);
84 s = format (s, "IPSec: %U seq %u sa %d",
85 format_ipsec4_tunnel_kv, &t->kv4, t->seq);
90 ipsec_ip4_if_no_tunnel (vlib_node_runtime_t * node,
92 const esp_header_t * esp, const ip4_header_t * ip4)
94 if (PREDICT_FALSE (0 == esp->spi))
96 b->error = node->errors[IPSEC_TUN_PROTECT_INPUT_ERROR_SPI_0];
97 b->punt_reason = ipsec_punt_reason[(ip4->protocol == IP_PROTOCOL_UDP ?
98 IPSEC_PUNT_IP4_SPI_UDP_0 :
99 IPSEC_PUNT_IP4_NO_SUCH_TUNNEL)];
103 b->error = node->errors[IPSEC_TUN_PROTECT_INPUT_ERROR_NO_TUNNEL];
104 b->punt_reason = ipsec_punt_reason[IPSEC_PUNT_IP4_NO_SUCH_TUNNEL];
106 return VNET_DEVICE_INPUT_NEXT_PUNT;
110 ipsec_ip6_if_no_tunnel (vlib_node_runtime_t * node,
111 vlib_buffer_t * b, const esp_header_t * esp)
113 b->error = node->errors[IPSEC_TUN_PROTECT_INPUT_ERROR_NO_TUNNEL];
114 b->punt_reason = ipsec_punt_reason[IPSEC_PUNT_IP6_NO_SUCH_TUNNEL];
116 return VNET_DEVICE_INPUT_NEXT_PUNT;
120 ipsec_tun_protect_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node,
121 vlib_frame_t * from_frame, int is_ip6)
123 ipsec_main_t *im = &ipsec_main;
124 vnet_main_t *vnm = im->vnet_main;
125 vnet_interface_main_t *vim = &vnm->interface_main;
127 int is_trace = node->flags & VLIB_NODE_FLAG_TRACE;
128 u32 thread_index = vm->thread_index;
130 u32 n_left_from, *from;
131 u16 nexts[VLIB_FRAME_SIZE], *next;
132 vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **b;
134 from = vlib_frame_vector_args (from_frame);
135 n_left_from = from_frame->n_vectors;
137 vlib_get_buffers (vm, from, bufs, n_left_from);
142 nexts, is_ip6 ? im->esp6_decrypt_next_index : im->esp4_decrypt_next_index,
145 u64 n_bytes = 0, n_packets = 0;
146 u32 n_disabled = 0, n_no_tunnel = 0;
148 u32 last_sw_if_index = ~0;
149 ipsec_tun_lkup_result_t last_result = {
152 ipsec4_tunnel_kv_t last_key4;
153 ipsec6_tunnel_kv_t last_key6;
154 ipsec_tun_lkup_result_t itr0;
156 vlib_combined_counter_main_t *rx_counter;
157 vlib_combined_counter_main_t *drop_counter;
160 clib_memset (&last_key6, 0xff, sizeof (last_key6));
164 rx_counter = vim->combined_sw_if_counters + VNET_INTERFACE_COUNTER_RX;
165 drop_counter = vim->combined_sw_if_counters + VNET_INTERFACE_COUNTER_DROP;
167 while (n_left_from > 0)
169 u32 sw_if_index0, len0, hdr_sz0;
170 clib_bihash_kv_24_16_t bkey60;
171 clib_bihash_kv_8_16_t bkey40;
172 ipsec4_tunnel_kv_t *key40;
173 ipsec6_tunnel_kv_t *key60;
180 (ip4_header_t *) (b[0]->data + vnet_buffer (b[0])->l3_hdr_offset);
182 key60 = (ipsec6_tunnel_kv_t *) & bkey60;
183 key40 = (ipsec4_tunnel_kv_t *) & bkey40;
187 ip60 = (ip6_header_t *) ip40;
188 esp0 = (esp_header_t *) (ip60 + 1);
189 hdr_sz0 = sizeof (ip6_header_t);
193 /* NAT UDP port 4500 case, don't advance any more */
194 if (ip40->protocol == IP_PROTOCOL_UDP)
197 (esp_header_t *) ((u8 *) ip40 + ip4_header_bytes (ip40) +
198 sizeof (udp_header_t));
200 buf_rewind0 = ip4_header_bytes (ip40) + sizeof (udp_header_t);
204 esp0 = (esp_header_t *) ((u8 *) ip40 + ip4_header_bytes (ip40));
205 buf_rewind0 = hdr_sz0 = ip4_header_bytes (ip40);
209 /* stats for the tunnel include all the data after the IP header
210 just like a norml IP-IP tunnel */
211 vlib_buffer_advance (b[0], hdr_sz0);
212 len0 = vlib_buffer_length_in_chain (vm, b[0]);
214 if (len0 < sizeof (esp_header_t))
216 if (esp0->spi_bytes[0] == 0xff)
218 node->errors[IPSEC_TUN_PROTECT_INPUT_ERROR_NAT_KEEPALIVE];
221 node->errors[IPSEC_TUN_PROTECT_INPUT_ERROR_TOO_SHORT];
223 next[0] = is_ip6 ? VNET_DEVICE_INPUT_NEXT_IP6_DROP :
224 VNET_DEVICE_INPUT_NEXT_IP4_DROP;
230 key60->key.remote_ip = ip60->src_address;
231 key60->key.spi = esp0->spi;
232 key60->key.__pad = 0;
234 if (memcmp (key60, &last_key6, sizeof (last_key6)) == 0)
236 clib_memcpy_fast (&itr0, &last_result, sizeof (itr0));
241 clib_bihash_search_inline_24_16 (&im->tun6_protect_by_key,
245 clib_memcpy_fast (&itr0, &bkey60.value, sizeof (itr0));
246 clib_memcpy_fast (&last_result, &bkey60.value,
247 sizeof (last_result));
248 clib_memcpy_fast (&last_key6, key60, sizeof (last_key6));
252 next[0] = ipsec_ip6_if_no_tunnel (node, b[0], esp0);
260 ipsec4_tunnel_mk_key (key40, &ip40->src_address, esp0->spi);
262 if (key40->key == last_key4.key)
264 clib_memcpy_fast (&itr0, &last_result, sizeof (itr0));
269 clib_bihash_search_inline_8_16 (&im->tun4_protect_by_key,
273 clib_memcpy_fast (&itr0, &bkey40.value, sizeof (itr0));
274 clib_memcpy_fast (&last_result, &bkey40.value,
275 sizeof (last_result));
276 last_key4.key = key40->key;
280 next[0] = ipsec_ip4_if_no_tunnel (node, b[0], esp0, ip40);
281 vlib_buffer_advance (b[0], -buf_rewind0);
288 vnet_buffer (b[0])->ipsec.sad_index = itr0.sa_index;
289 vnet_buffer (b[0])->ipsec.protect_index = itr0.tun_index;
291 sw_if_index0 = itr0.sw_if_index;
292 vnet_buffer (b[0])->sw_if_index[VLIB_RX] = sw_if_index0;
294 if (PREDICT_FALSE (!vnet_sw_interface_is_admin_up (vnm, sw_if_index0)))
296 vlib_increment_combined_counter
297 (drop_counter, thread_index, sw_if_index0, 1, len0);
299 b[0]->error = node->errors[IPSEC_TUN_PROTECT_INPUT_ERROR_DISABLED];
300 next[0] = is_ip6 ? VNET_DEVICE_INPUT_NEXT_IP6_DROP :
301 VNET_DEVICE_INPUT_NEXT_IP4_DROP;
306 if (PREDICT_TRUE (sw_if_index0 == last_sw_if_index))
313 if (n_packets && !(itr0.flags & IPSEC_PROTECT_ENCAPED))
315 vlib_increment_combined_counter
316 (rx_counter, thread_index, last_sw_if_index,
320 last_sw_if_index = sw_if_index0;
325 //IPSEC_TUN_PROTECT_NEXT_DECRYPT;
326 next[0] = is_ip6 ? im->esp6_decrypt_tun_next_index :
327 im->esp4_decrypt_tun_next_index;
329 if (itr0.flags & IPSEC_PROTECT_FEAT)
332 u8 arc = feature_main.device_input_feature_arc_index;
335 vnet_feature_arc_start (arc, sw_if_index0, &next32, b[0]);
340 if (PREDICT_FALSE (is_trace))
342 if (b[0]->flags & VLIB_BUFFER_IS_TRACED)
344 ipsec_tun_protect_input_trace_t *tr =
345 vlib_add_trace (vm, node, b[0], sizeof (*tr));
347 clib_memcpy (&tr->kv6, &bkey60, sizeof (tr->kv6));
349 clib_memcpy (&tr->kv4, &bkey40, sizeof (tr->kv4));
351 tr->seq = (len0 >= sizeof (*esp0) ?
352 clib_host_to_net_u32 (esp0->seq) : ~0);
362 if (n_packets && !(itr0.flags & IPSEC_PROTECT_ENCAPED))
363 vlib_increment_combined_counter (rx_counter,
365 last_sw_if_index, n_packets, n_bytes);
367 vlib_node_increment_counter (vm, node->node_index,
368 IPSEC_TUN_PROTECT_INPUT_ERROR_RX,
369 from_frame->n_vectors - (n_disabled +
371 vlib_node_increment_counter (vm, node->node_index,
372 IPSEC_TUN_PROTECT_INPUT_ERROR_NO_TUNNEL,
375 vlib_buffer_enqueue_to_next (vm, node, from, nexts, from_frame->n_vectors);
377 return from_frame->n_vectors;
380 VLIB_NODE_FN (ipsec4_tun_input_node) (vlib_main_t * vm,
381 vlib_node_runtime_t * node,
382 vlib_frame_t * from_frame)
384 return ipsec_tun_protect_input_inline (vm, node, from_frame, 0);
388 VLIB_REGISTER_NODE (ipsec4_tun_input_node) = {
389 .name = "ipsec4-tun-input",
390 .vector_size = sizeof (u32),
391 .format_trace = format_ipsec_tun_protect_input_trace,
392 .type = VLIB_NODE_TYPE_INTERNAL,
393 .n_errors = ARRAY_LEN (ipsec_tun_protect_input_error_strings),
394 .error_strings = ipsec_tun_protect_input_error_strings,
395 .sibling_of = "device-input",
399 VLIB_NODE_FN (ipsec6_tun_input_node) (vlib_main_t * vm,
400 vlib_node_runtime_t * node,
401 vlib_frame_t * from_frame)
403 return ipsec_tun_protect_input_inline (vm, node, from_frame, 1);
407 VLIB_REGISTER_NODE (ipsec6_tun_input_node) = {
408 .name = "ipsec6-tun-input",
409 .vector_size = sizeof (u32),
410 .format_trace = format_ipsec_tun_protect_input_trace,
411 .type = VLIB_NODE_TYPE_INTERNAL,
412 .n_errors = ARRAY_LEN (ipsec_tun_protect_input_error_strings),
413 .error_strings = ipsec_tun_protect_input_error_strings,
414 .sibling_of = "device-input",
419 * fd.io coding-style-patch-verification: ON
422 * eval: (c-set-style "gnu")