FD.io VPP  v18.07-rc0-415-g6c78436
Vector Packet Processing
ioam_decap.c
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 #include <vppinfra/error.h>
16 #include <vppinfra/hash.h>
17 #include <vnet/vnet.h>
18 #include <vnet/ip/ip.h>
19 #include <vnet/ethernet/ethernet.h>
25 
26 /* Statistics (not really errors) */
27 #define foreach_vxlan_gpe_decap_ioam_v4_error \
28 _(DECAPSULATED, "good packets decapsulated")
29 
31 #define _(sym,string) string,
33 #undef _
34 };
35 
36 typedef enum
37 {
38 #define _(sym,str) VXLAN_GPE_DECAP_IOAM_V4_ERROR_##sym,
40 #undef _
43 
44 
45 always_inline void
47  vlib_node_runtime_t * node,
48  vxlan_gpe_main_t * ngm,
49  vlib_buffer_t * b0, vlib_buffer_t * b1,
50  u32 * next0, u32 * next1)
51 {
53 
54  *next0 = *next1 = hm->decap_v4_next_override;
55  vxlan_gpe_encap_decap_ioam_v4_one_inline (vm, node, b0, next0,
57  0 /* use_adj */ );
58  vxlan_gpe_encap_decap_ioam_v4_one_inline (vm, node, b1, next1,
60  0 /* use_adj */ );
61 }
62 
63 
64 
65 static uword
67  vlib_node_runtime_t * node,
68  vlib_frame_t * from_frame, u8 is_ipv6)
69 {
70  u32 n_left_from, next_index, *from, *to_next;
73 
74  from = vlib_frame_vector_args (from_frame);
75  n_left_from = from_frame->n_vectors;
76 
77  next_index = node->cached_next_index;
78 
79  while (n_left_from > 0)
80  {
81  u32 n_left_to_next;
82 
83  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
84 
85  while (n_left_from >= 4 && n_left_to_next >= 2)
86  {
87  u32 bi0, bi1;
88  vlib_buffer_t *b0, *b1;
89  u32 next0, next1;
90 
91  next0 = next1 = hm->decap_v4_next_override;
92 
93  /* Prefetch next iteration. */
94  {
95  vlib_buffer_t *p2, *p3;
96 
97  p2 = vlib_get_buffer (vm, from[2]);
98  p3 = vlib_get_buffer (vm, from[3]);
99 
100  vlib_prefetch_buffer_header (p2, LOAD);
101  vlib_prefetch_buffer_header (p3, LOAD);
102 
103  CLIB_PREFETCH (p2->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
104  CLIB_PREFETCH (p3->data, 2 * CLIB_CACHE_LINE_BYTES, LOAD);
105  }
106 
107  bi0 = from[0];
108  bi1 = from[1];
109  to_next[0] = bi0;
110  to_next[1] = bi1;
111  from += 2;
112  to_next += 2;
113  n_left_to_next -= 2;
114  n_left_from -= 2;
115 
116  b0 = vlib_get_buffer (vm, bi0);
117  b1 = vlib_get_buffer (vm, bi1);
118 
119 
121  -(word) (sizeof (udp_header_t) +
122  sizeof (ip4_header_t) +
123  sizeof (vxlan_gpe_header_t)));
125  -(word) (sizeof (udp_header_t) +
126  sizeof (ip4_header_t) +
127  sizeof (vxlan_gpe_header_t)));
128 
129  vxlan_gpe_decap_ioam_v4_two_inline (vm, node, ngm, b0, b1,
130  &next0, &next1);
131 
132 
133  vlib_validate_buffer_enqueue_x2 (vm, node, next_index, to_next,
134  n_left_to_next, bi0, bi1, next0,
135  next1);
136 
137  if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
138  {
139  vxlan_gpe_ioam_v4_trace_t *tr = vlib_add_trace (vm, node, b0,
140  sizeof (*tr));
141  }
142  }
143 
144  while (n_left_from > 0 && n_left_to_next > 0)
145  {
146  u32 bi0;
147  vlib_buffer_t *b0;
148  u32 next0 = hm->decap_v4_next_override;
149 
150  bi0 = from[0];
151  to_next[0] = bi0;
152  from += 1;
153  to_next += 1;
154  n_left_from -= 1;
155  n_left_to_next -= 1;
156 
157  b0 = vlib_get_buffer (vm, bi0);
158 
159 
161  -(word) (sizeof (udp_header_t) +
162  sizeof (ip4_header_t) +
163  sizeof (vxlan_gpe_header_t)));
164 
165  next0 = hm->decap_v4_next_override;
167  &next0,
169  0 /* use_adj */ );
170 
171  if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
172  {
173  vxlan_gpe_ioam_v4_trace_t *tr = vlib_add_trace (vm, node, b0,
174  sizeof (*tr));
175  }
176  vlib_validate_buffer_enqueue_x1 (vm, node, next_index, to_next,
177  n_left_to_next, bi0, next0);
178  }
179 
180  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
181  }
182 
183  return from_frame->n_vectors;
184 }
185 
186 
187 static uword
189  vlib_node_runtime_t * node,
190  vlib_frame_t * from_frame)
191 {
192  return vxlan_gpe_decap_ioam (vm, node, from_frame, 0);
193 }
194 
195 
196 /* *INDENT-OFF* */
198  .function = vxlan_gpe_decap_ioam_v4,
199  .name = "vxlan-gpe-decap-ioam-v4",
200  .vector_size = sizeof (u32),
201  .format_trace = format_vxlan_gpe_ioam_v4_trace,
202  .type = VLIB_NODE_TYPE_INTERNAL,
203 
205  .error_strings = vxlan_gpe_decap_ioam_v4_error_strings,
206 
207  .n_next_nodes = VXLAN_GPE_DECAP_IOAM_V4_N_NEXT,
208 
209  .next_nodes = {
210  [VXLAN_GPE_DECAP_IOAM_V4_NEXT_POP] = "vxlan-gpe-pop-ioam-v4",
211  [VXLAN_GPE_DECAP_IOAM_V4_NEXT_DROP] = "error-drop",
212  },
213 };
214 /* *INDENT-ON* */
215 
216 
217 /*
218  * fd.io coding-style-patch-verification: ON
219  *
220  * Local Variables:
221  * eval: (c-set-style "gnu")
222  * End:
223  */
static uword vxlan_gpe_decap_ioam_v4(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: ioam_decap.c:188
static char * vxlan_gpe_decap_ioam_v4_error_strings[]
Definition: ioam_decap.c:30
vlib_node_registration_t vxlan_gpe_decap_ioam_v4_node
(constructor) VLIB_REGISTER_NODE (vxlan_gpe_decap_ioam_v4_node)
Definition: ioam_decap.c:197
VXLAN GPE definitions.
unsigned char u8
Definition: types.h:56
i64 word
Definition: types.h:111
#define always_inline
Definition: clib.h:92
#define vlib_prefetch_buffer_header(b, type)
Prefetch buffer metadata.
Definition: buffer.h:184
vxlan_gpe_ioam_main_t vxlan_gpe_ioam_main
unsigned int u32
Definition: types.h:88
static void vxlan_gpe_decap_ioam_v4_two_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vxlan_gpe_main_t *ngm, vlib_buffer_t *b0, vlib_buffer_t *b1, u32 *next0, u32 *next1)
Definition: ioam_decap.c:46
vxlan_gpe_main_t vxlan_gpe_main
Definition: vxlan_gpe.c:45
#define PREDICT_FALSE(x)
Definition: clib.h:105
#define vlib_validate_buffer_enqueue_x2(vm, node, next_index, to_next, n_left_to_next, bi0, bi1, next0, next1)
Finish enqueueing two buffers forward in the graph.
Definition: buffer_node.h:70
#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:218
#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:364
static u8 * format_vxlan_gpe_ioam_v4_trace(u8 *s, va_list *args)
static void vxlan_gpe_encap_decap_ioam_v4_one_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_buffer_t *b0, u32 *next0, u32 drop_node_val, u8 use_adj)
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:153
u16 n_vectors
Definition: node.h:380
#define CLIB_PREFETCH(addr, size, type)
Definition: cache.h:77
vlib_main_t * vm
Definition: buffer.c:294
#define ARRAY_LEN(x)
Definition: clib.h:59
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:454
#define foreach_vxlan_gpe_decap_ioam_v4_error
Definition: ioam_decap.c:27
vxlan_gpe_decap_ioam_v4_error_t
Definition: ioam_decap.c:36
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
Definition: node.h:492
Struct for VXLAN GPE node state.
Definition: vxlan_gpe.h:196
static void vlib_buffer_advance(vlib_buffer_t *b, word l)
Advance current data pointer by the supplied (signed!) amount.
Definition: buffer.h:215
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
u64 uword
Definition: types.h:112
VXLAN GPE Header definition.
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:267
u8 data[0]
Packet data.
Definition: buffer.h:172
static uword vxlan_gpe_decap_ioam(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame, u8 is_ipv6)
Definition: ioam_decap.c:66
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:62
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:111
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