blob: bd2a9f78195ca3b64b144c9e596625f8da56fc87 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * ipsec_if_in.c : IPSec interface input node
3 *
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:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
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.
16 */
17
18#include <vnet/vnet.h>
19#include <vnet/api_errno.h>
20#include <vnet/ip/ip.h>
21
22#include <vnet/ipsec/ipsec.h>
23#include <vnet/ipsec/esp.h>
24
25/* Statistics (not really errors) */
26#define foreach_ipsec_if_input_error \
27_(RX, "good packets received")
28
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070029static char *ipsec_if_input_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -070030#define _(sym,string) string,
31 foreach_ipsec_if_input_error
32#undef _
33};
34
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070035typedef enum
36{
Ed Warnickecb9cada2015-12-08 15:45:58 -070037#define _(sym,str) IPSEC_IF_INPUT_ERROR_##sym,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070038 foreach_ipsec_if_input_error
Ed Warnickecb9cada2015-12-08 15:45:58 -070039#undef _
40 IPSEC_IF_INPUT_N_ERROR,
41} ipsec_if_input_error_t;
42
Ed Warnickecb9cada2015-12-08 15:45:58 -070043
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070044typedef struct
45{
Ed Warnickecb9cada2015-12-08 15:45:58 -070046 u32 spi;
47 u32 seq;
48} ipsec_if_input_trace_t;
49
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070050u8 *
51format_ipsec_if_input_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -070052{
53 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
54 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070055 ipsec_if_input_trace_t *t = va_arg (*args, ipsec_if_input_trace_t *);
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
57 s = format (s, "IPSec: spi %u seq %u", t->spi, t->seq);
58 return s;
59}
60
61static uword
62ipsec_if_input_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070063 vlib_frame_t * from_frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -070064{
65 ipsec_main_t *im = &ipsec_main;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070066 u32 *from, *to_next = 0, next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -070067 u32 n_left_from;
68
69 from = vlib_frame_vector_args (from_frame);
70 n_left_from = from_frame->n_vectors;
71 next_index = node->cached_next_index;
72
73 while (n_left_from > 0)
74 {
75 u32 n_left_to_next;
76
77 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
78
79 while (n_left_from > 0 && n_left_to_next > 0)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070080 {
81 u32 bi0, next0;
82 vlib_buffer_t *b0;
83 ip4_header_t *ip0;
84 esp_header_t *esp0;
85 uword *p;
Ed Warnickecb9cada2015-12-08 15:45:58 -070086
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070087 bi0 = to_next[0] = from[0];
88 from += 1;
89 n_left_from -= 1;
90 to_next += 1;
91 n_left_to_next -= 1;
92 b0 = vlib_get_buffer (vm, bi0);
93 ip0 = vlib_buffer_get_current (b0);
94 esp0 = (esp_header_t *) ((u8 *) ip0 + ip4_header_bytes (ip0));
Ed Warnickecb9cada2015-12-08 15:45:58 -070095
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +000096 next0 = IPSEC_INPUT_NEXT_DROP;
Ed Warnickecb9cada2015-12-08 15:45:58 -070097
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -070098 u64 key = (u64) ip0->src_address.as_u32 << 32 |
99 (u64) clib_net_to_host_u32 (esp0->spi);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700101 p = hash_get (im->ipsec_if_pool_index_by_key, key);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700103 if (p)
104 {
105 ipsec_tunnel_if_t *t;
106 t = pool_elt_at_index (im->tunnel_interfaces, p[0]);
Damjan Marion9c6ae5f2016-11-15 23:20:01 +0100107 vnet_buffer (b0)->ipsec.sad_index = t->input_sa_index;
108 vnet_buffer (b0)->ipsec.flags =
Matus Fabian694265d2016-08-10 01:55:36 -0700109 t->hw_if_index == ~0 ? IPSEC_FLAG_IPSEC_GRE_TUNNEL : 0;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700110 vlib_buffer_advance (b0, ip4_header_bytes (ip0));
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000111 next0 = im->esp_decrypt_next_index;
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700112 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700114 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
115 {
116 ipsec_if_input_trace_t *tr =
117 vlib_add_trace (vm, node, b0, sizeof (*tr));
118 tr->spi = clib_host_to_net_u32 (esp0->spi);
119 tr->seq = clib_host_to_net_u32 (esp0->seq);
120 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700121
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700122 vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
123 n_left_to_next, bi0, next0);
124 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
126 }
127
128 vlib_node_increment_counter (vm, ipsec_if_input_node.index,
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700129 IPSEC_IF_INPUT_ERROR_RX,
130 from_frame->n_vectors);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131
132 return from_frame->n_vectors;
133}
134
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700135/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136VLIB_REGISTER_NODE (ipsec_if_input_node) = {
137 .function = ipsec_if_input_node_fn,
138 .name = "ipsec-if-input",
139 .vector_size = sizeof (u32),
140 .format_trace = format_ipsec_if_input_trace,
141 .type = VLIB_NODE_TYPE_INTERNAL,
142
143 .n_errors = ARRAY_LEN(ipsec_if_input_error_strings),
144 .error_strings = ipsec_if_input_error_strings,
145
Sergio Gonzalez Monroyd04b60b2017-01-20 15:35:23 +0000146 .sibling_of = "ipsec-input-ip4",
Damjan Marion1c80e832016-05-11 23:07:18 +0200147};
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700148/* *INDENT-ON* */
Damjan Marion1c80e832016-05-11 23:07:18 +0200149
150VLIB_NODE_FUNCTION_MULTIARCH (ipsec_if_input_node, ipsec_if_input_node_fn)
Keith Burns (alagalah)166a9d42016-08-06 11:00:56 -0700151/*
152 * fd.io coding-style-patch-verification: ON
153 *
154 * Local Variables:
155 * eval: (c-set-style "gnu")
156 * End:
157 */