FD.io VPP  v17.01.1-3-gc6833f8
Vector Packet Processing
ipsec_if_out.c
Go to the documentation of this file.
1 /*
2  * ipsec_if_out.c : IPSec interface output 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 
24 #if DPDK_CRYPTO==1
25 #define ESP_NODE "dpdk-esp-encrypt"
26 #else
27 #define ESP_NODE "esp-encrypt"
28 #endif
29 
30 /* Statistics (not really errors) */
31 #define foreach_ipsec_if_output_error \
32 _(TX, "good packets transmitted")
33 
35 #define _(sym,string) string,
37 #undef _
38 };
39 
40 typedef enum
41 {
42 #define _(sym,str) IPSEC_IF_OUTPUT_ERROR_##sym,
44 #undef _
47 
48 typedef enum
49 {
54 
55 typedef struct
56 {
60 
61 
62 u8 *
63 format_ipsec_if_output_trace (u8 * s, va_list * args)
64 {
65  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
66  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
67  ipsec_if_output_trace_t *t = va_arg (*args, ipsec_if_output_trace_t *);
68 
69  s = format (s, "IPSec: spi %u seq %u", t->spi, t->seq);
70  return s;
71 }
72 
73 static uword
75  vlib_frame_t * from_frame)
76 {
77  ipsec_main_t *im = &ipsec_main;
78  vnet_main_t *vnm = im->vnet_main;
79  u32 *from, *to_next = 0, next_index;
80  u32 n_left_from, sw_if_index0;
81 
82  from = vlib_frame_vector_args (from_frame);
83  n_left_from = from_frame->n_vectors;
84  next_index = node->cached_next_index;
85 
86  while (n_left_from > 0)
87  {
88  u32 n_left_to_next;
89 
90  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
91 
92  while (n_left_from > 0 && n_left_to_next > 0)
93  {
94  u32 bi0, next0;
95  vlib_buffer_t *b0;
98 
99  bi0 = to_next[0] = from[0];
100  from += 1;
101  n_left_from -= 1;
102  to_next += 1;
103  n_left_to_next -= 1;
104  b0 = vlib_get_buffer (vm, bi0);
105  sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_TX];
106  hi0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
108  vnet_buffer (b0)->ipsec.sad_index = t0->output_sa_index;
110 
112  {
114  vlib_add_trace (vm, node, b0, sizeof (*tr));
115  ipsec_sa_t *sa0 =
117  tr->spi = sa0->spi;
118  tr->seq = sa0->seq;
119  }
120 
121  vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
122  n_left_to_next, bi0, next0);
123  }
124  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
125  }
126 
128  IPSEC_IF_OUTPUT_ERROR_TX,
129  from_frame->n_vectors);
130 
131  return from_frame->n_vectors;
132 }
133 
134 /* *INDENT-OFF* */
136  .function = ipsec_if_output_node_fn,
137  .name = "ipsec-if-output",
138  .vector_size = sizeof (u32),
139  .format_trace = format_ipsec_if_output_trace,
141 
143  .error_strings = ipsec_if_output_error_strings,
144 
145  .n_next_nodes = IPSEC_IF_OUTPUT_N_NEXT,
146 
147  .next_nodes = {
149  [IPSEC_IF_OUTPUT_NEXT_DROP] = "error-drop",
150  },
151 };
152 /* *INDENT-ON* */
153 
155 /*
156  * fd.io coding-style-patch-verification: ON
157  *
158  * Local Variables:
159  * eval: (c-set-style "gnu")
160  * End:
161  */
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
Definition: main.c:459
u8 * format_ipsec_if_output_trace(u8 *s, va_list *args)
Definition: ipsec_if_out.c:63
static uword ipsec_if_output_node_fn(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: ipsec_if_out.c:74
#define CLIB_UNUSED(x)
Definition: clib.h:79
ipsec_tunnel_if_t * tunnel_interfaces
Definition: ipsec.h:233
bad routing header type(not 4)") sr_error (NO_MORE_SEGMENTS
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
static char * ipsec_if_output_error_strings[]
Definition: ipsec_if_out.c:34
u32 spi
Definition: ipsec.h:95
ipsec_if_output_error_t
Definition: ipsec_if_out.c:40
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:369
vnet_main_t * vnet_main
Definition: ipsec.h:242
#define PREDICT_FALSE(x)
Definition: clib.h:97
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
Definition: buffer_node.h:216
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
Definition: node_funcs.h:350
#define ESP_NODE
Definition: ipsec_if_out.c:27
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
Definition: node_funcs.h:1113
ipsec_main_t ipsec_main
Definition: ipsec.h:260
u16 n_vectors
Definition: node.h:344
#define foreach_ipsec_if_output_error
Definition: ipsec_if_out.c:31
#define ARRAY_LEN(x)
Definition: clib.h:59
u32 output_sa_index
Definition: ipsec.h:222
u16 cached_next_index
Definition: node.h:463
unsigned int u32
Definition: types.h:88
#define vnet_buffer(b)
Definition: buffer.h:361
ipsec_sa_t * sad
Definition: ipsec.h:230
#define VLIB_BUFFER_IS_TRACED
Definition: buffer.h:95
u32 seq
Definition: ipsec.h:117
u64 uword
Definition: types.h:112
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace_funcs.h:55
Definition: defs.h:47
unsigned char u8
Definition: types.h:56
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:253
vlib_node_registration_t ipsec_if_output_node
(constructor) VLIB_REGISTER_NODE (ipsec_if_output_node)
Definition: ipsec_if_out.c:135
#define VLIB_NODE_FUNCTION_MULTIARCH(node, fn)
Definition: node.h:158
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:143
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:418
u32 flags
buffer flags: VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:85
ipsec_if_output_next_t
Definition: ipsec_if_out.c:48
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:57