blob: 3a820b3cefc541605f593f726ed61a4e26b72976 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +05302 * Copyright (c) 2016 Cisco and/or its affiliates.
Ed Warnickecb9cada2015-12-08 15:45:58 -07003 * 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 <vlib/vlib.h>
16#include <vnet/vnet.h>
17#include <vnet/pg/pg.h>
18#include <vppinfra/error.h>
19
20#include <vnet/ip/ip.h>
21
22#include <vppinfra/hash.h>
23#include <vppinfra/error.h>
24#include <vppinfra/elog.h>
25
26#include <vnet/ip/ip6_hop_by_hop.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010027#include <vnet/fib/ip6_fib.h>
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +053028#include <vnet/classify/vnet_classify.h>
Ole Troan944f5482016-05-24 11:56:58 +020029
Billy McFall0683c9c2016-10-13 08:27:31 -040030/**
31 * @file
32 * @brief In-band OAM (iOAM).
33 *
34 * In-band OAM (iOAM) is an implementation study to record operational
35 * information in the packet while the packet traverses a path between
36 * two points in the network.
37 *
38 * VPP can function as in-band OAM encapsulating, transit and
39 * decapsulating node. In this version of VPP in-band OAM data is
40 * transported as options in an IPv6 hop-by-hop extension header. Hence
41 * in-band OAM can be enabled for IPv6 traffic.
42 */
43
Ole Troan944f5482016-05-24 11:56:58 +020044ip6_hop_by_hop_ioam_main_t ip6_hop_by_hop_ioam_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070045
Ole Troan944f5482016-05-24 11:56:58 +020046#define foreach_ip6_hbyh_ioam_input_next \
47 _(IP6_REWRITE, "ip6-rewrite") \
48 _(IP6_LOOKUP, "ip6-lookup") \
Vengada Govindan07d2f842016-08-25 10:34:34 -070049 _(DROP, "error-drop")
ranganf5bf6dd2016-04-15 17:31:46 +053050
Vengada Govindan07d2f842016-08-25 10:34:34 -070051typedef enum
52{
Ole Troan944f5482016-05-24 11:56:58 +020053#define _(s,n) IP6_HBYH_IOAM_INPUT_NEXT_##s,
54 foreach_ip6_hbyh_ioam_input_next
ranganf5bf6dd2016-04-15 17:31:46 +053055#undef _
Vengada Govindan07d2f842016-08-25 10:34:34 -070056 IP6_HBYH_IOAM_INPUT_N_NEXT,
Ole Troan944f5482016-05-24 11:56:58 +020057} ip6_hbyh_ioam_input_next_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070058
Ed Warnickecb9cada2015-12-08 15:45:58 -070059
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +053060u32
61ioam_flow_add (u8 encap, u8 * flow_name)
62{
63 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
64 flow_data_t *flow = 0;
65 u32 index = 0;
66 u8 i;
67
68 pool_get (hm->flows, flow);
69 memset (flow, 0, sizeof (flow_data_t));
70
71 index = flow - hm->flows;
72 strncpy ((char *) flow->flow_name, (char *) flow_name, 31);
73
74 if (!encap)
75 IOAM_SET_DECAP (index);
76
77 for (i = 0; i < 255; i++)
78 {
79 if (hm->flow_handler[i])
80 flow->ctx[i] = hm->flow_handler[i] (index, 1);
81 }
82 return (index);
83}
84
85static uword
86unformat_opaque_ioam (unformat_input_t * input, va_list * args)
87{
88 u64 *opaquep = va_arg (*args, u64 *);
89 u8 *flow_name = NULL;
90 uword ret = 0;
91
92 if (unformat (input, "ioam-encap %s", &flow_name))
93 {
94 *opaquep = ioam_flow_add (1, flow_name);
95 ret = 1;
96 }
97 else if (unformat (input, "ioam-decap %s", &flow_name))
98 {
99 *opaquep = ioam_flow_add (0, flow_name);
100 ret = 1;
101 }
102
103 vec_free (flow_name);
104 return ret;
105}
106
107u8 *
108get_flow_name_from_flow_ctx (u32 flow_ctx)
109{
110 flow_data_t *flow = NULL;
111 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
112 u32 index;
113
114 index = IOAM_MASK_DECAP_BIT (flow_ctx);
115
116 if (pool_is_free_index (hm->flows, index))
117 return NULL;
118
119 flow = pool_elt_at_index (hm->flows, index);
120 return (flow->flow_name);
121}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700122
Shwetha85b528e2016-06-15 16:34:16 +0100123/* The main h-b-h tracer will be invoked, no need to do much here */
Ole Troan944f5482016-05-24 11:56:58 +0200124int
Shwetha85b528e2016-06-15 16:34:16 +0100125ip6_hbh_add_register_option (u8 option,
126 u8 size,
Vengada Govindan07d2f842016-08-25 10:34:34 -0700127 int rewrite_options (u8 * rewrite_string,
128 u8 * rewrite_size))
Ole Troan944f5482016-05-24 11:56:58 +0200129{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700130 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700131
Shwetha85b528e2016-06-15 16:34:16 +0100132 ASSERT (option < ARRAY_LEN (hm->add_options));
133
134 /* Already registered */
135 if (hm->add_options[option])
Ole Troan944f5482016-05-24 11:56:58 +0200136 return (-1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137
Shwetha85b528e2016-06-15 16:34:16 +0100138 hm->add_options[option] = rewrite_options;
139 hm->options_size[option] = size;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700140
Shwetha85b528e2016-06-15 16:34:16 +0100141 return (0);
Ole Troan944f5482016-05-24 11:56:58 +0200142}
Damjan Marion1c80e832016-05-11 23:07:18 +0200143
Shwetha85b528e2016-06-15 16:34:16 +0100144int
145ip6_hbh_add_unregister_option (u8 option)
146{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700147 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Shwetha85b528e2016-06-15 16:34:16 +0100148
149 ASSERT (option < ARRAY_LEN (hm->add_options));
150
151 /* Not registered */
152 if (!hm->add_options[option])
153 return (-1);
154
155 hm->add_options[option] = NULL;
156 hm->options_size[option] = 0;
157 return (0);
158}
159
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530160/* Config handler registration */
161int
162ip6_hbh_config_handler_register (u8 option,
163 int config_handler (void *data, u8 disable))
164{
165 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
166
167 ASSERT (option < ARRAY_LEN (hm->config_handler));
168
169 /* Already registered */
170 if (hm->config_handler[option])
171 return (VNET_API_ERROR_INVALID_REGISTRATION);
172
173 hm->config_handler[option] = config_handler;
174
175 return (0);
176}
177
178int
179ip6_hbh_config_handler_unregister (u8 option)
180{
181 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
182
183 ASSERT (option < ARRAY_LEN (hm->config_handler));
184
185 /* Not registered */
186 if (!hm->config_handler[option])
187 return (VNET_API_ERROR_INVALID_REGISTRATION);
188
189 hm->config_handler[option] = NULL;
190 return (0);
191}
192
193/* Flow handler registration */
194int
195ip6_hbh_flow_handler_register (u8 option,
196 u32 ioam_flow_handler (u32 flow_ctx, u8 add))
197{
198 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
199
200 ASSERT (option < ARRAY_LEN (hm->flow_handler));
201
202 /* Already registered */
203 if (hm->flow_handler[option])
204 return (VNET_API_ERROR_INVALID_REGISTRATION);
205
206 hm->flow_handler[option] = ioam_flow_handler;
207
208 return (0);
209}
210
211int
212ip6_hbh_flow_handler_unregister (u8 option)
213{
214 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
215
216 ASSERT (option < ARRAY_LEN (hm->flow_handler));
217
218 /* Not registered */
219 if (!hm->flow_handler[option])
220 return (VNET_API_ERROR_INVALID_REGISTRATION);
221
222 hm->flow_handler[option] = NULL;
223 return (0);
224}
225
Vengada Govindan07d2f842016-08-25 10:34:34 -0700226typedef struct
227{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700228 u32 next_index;
229} ip6_add_hop_by_hop_trace_t;
230
231/* packet trace format function */
Vengada Govindan07d2f842016-08-25 10:34:34 -0700232static u8 *
233format_ip6_add_hop_by_hop_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234{
235 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
236 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Vengada Govindan07d2f842016-08-25 10:34:34 -0700237 ip6_add_hop_by_hop_trace_t *t = va_arg (*args,
238 ip6_add_hop_by_hop_trace_t *);
239
240 s = format (s, "IP6_ADD_HOP_BY_HOP: next index %d", t->next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700241 return s;
242}
243
244vlib_node_registration_t ip6_add_hop_by_hop_node;
245
246#define foreach_ip6_add_hop_by_hop_error \
247_(PROCESSED, "Pkts w/ added ip6 hop-by-hop options")
248
Vengada Govindan07d2f842016-08-25 10:34:34 -0700249typedef enum
250{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700251#define _(sym,str) IP6_ADD_HOP_BY_HOP_ERROR_##sym,
252 foreach_ip6_add_hop_by_hop_error
253#undef _
Vengada Govindan07d2f842016-08-25 10:34:34 -0700254 IP6_ADD_HOP_BY_HOP_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700255} ip6_add_hop_by_hop_error_t;
256
Vengada Govindan07d2f842016-08-25 10:34:34 -0700257static char *ip6_add_hop_by_hop_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700258#define _(sym,string) string,
259 foreach_ip6_add_hop_by_hop_error
260#undef _
261};
262
263static uword
264ip6_add_hop_by_hop_node_fn (vlib_main_t * vm,
Vengada Govindan07d2f842016-08-25 10:34:34 -0700265 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700266{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700267 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
268 u32 n_left_from, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700269 ip_lookup_next_t next_index;
270 u32 processed = 0;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700271 u8 *rewrite = hm->rewrite;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700272 u32 rewrite_length = vec_len (rewrite);
273
274 from = vlib_frame_vector_args (frame);
275 n_left_from = frame->n_vectors;
276 next_index = node->cached_next_index;
277
278 while (n_left_from > 0)
279 {
280 u32 n_left_to_next;
281
Vengada Govindan07d2f842016-08-25 10:34:34 -0700282 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700283 while (n_left_from >= 4 && n_left_to_next >= 2)
Vengada Govindan07d2f842016-08-25 10:34:34 -0700284 {
285 u32 bi0, bi1;
286 vlib_buffer_t *b0, *b1;
287 u32 next0, next1;
288 ip6_header_t *ip0, *ip1;
289 ip6_hop_by_hop_header_t *hbh0, *hbh1;
290 u64 *copy_src0, *copy_dst0, *copy_src1, *copy_dst1;
291 u16 new_l0, new_l1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700292
Vengada Govindan07d2f842016-08-25 10:34:34 -0700293 /* Prefetch next iteration. */
294 {
295 vlib_buffer_t *p2, *p3;
Shwethaa91cbe62016-08-08 15:51:04 +0100296
Vengada Govindan07d2f842016-08-25 10:34:34 -0700297 p2 = vlib_get_buffer (vm, from[2]);
298 p3 = vlib_get_buffer (vm, from[3]);
Shwethaa91cbe62016-08-08 15:51:04 +0100299
Vengada Govindan07d2f842016-08-25 10:34:34 -0700300 vlib_prefetch_buffer_header (p2, LOAD);
301 vlib_prefetch_buffer_header (p3, LOAD);
Shwethaa91cbe62016-08-08 15:51:04 +0100302
Vengada Govindan07d2f842016-08-25 10:34:34 -0700303 CLIB_PREFETCH (p2->data - rewrite_length,
304 2 * CLIB_CACHE_LINE_BYTES, STORE);
305 CLIB_PREFETCH (p3->data - rewrite_length,
306 2 * CLIB_CACHE_LINE_BYTES, STORE);
307 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700308
Vengada Govindan07d2f842016-08-25 10:34:34 -0700309 /* speculatively enqueue b0 and b1 to the current next frame */
310 to_next[0] = bi0 = from[0];
311 to_next[1] = bi1 = from[1];
312 from += 2;
313 to_next += 2;
314 n_left_from -= 2;
315 n_left_to_next -= 2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316
Vengada Govindan07d2f842016-08-25 10:34:34 -0700317 b0 = vlib_get_buffer (vm, bi0);
318 b1 = vlib_get_buffer (vm, bi1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319
Vengada Govindan07d2f842016-08-25 10:34:34 -0700320 /* $$$$$ Dual loop: process 2 x packets here $$$$$ */
Vengada Govindan07d2f842016-08-25 10:34:34 -0700321 ip0 = vlib_buffer_get_current (b0);
322 ip1 = vlib_buffer_get_current (b1);
Shwethaa91cbe62016-08-08 15:51:04 +0100323
Vengada Govindan07d2f842016-08-25 10:34:34 -0700324 /* Copy the ip header left by the required amount */
325 copy_dst0 = (u64 *) (((u8 *) ip0) - rewrite_length);
326 copy_dst1 = (u64 *) (((u8 *) ip1) - rewrite_length);
327 copy_src0 = (u64 *) ip0;
328 copy_src1 = (u64 *) ip1;
Shwethaa91cbe62016-08-08 15:51:04 +0100329
Vengada Govindan07d2f842016-08-25 10:34:34 -0700330 copy_dst0[0] = copy_src0[0];
331 copy_dst0[1] = copy_src0[1];
332 copy_dst0[2] = copy_src0[2];
333 copy_dst0[3] = copy_src0[3];
334 copy_dst0[4] = copy_src0[4];
Shwethaa91cbe62016-08-08 15:51:04 +0100335
Vengada Govindan07d2f842016-08-25 10:34:34 -0700336 copy_dst1[0] = copy_src1[0];
337 copy_dst1[1] = copy_src1[1];
338 copy_dst1[2] = copy_src1[2];
339 copy_dst1[3] = copy_src1[3];
340 copy_dst1[4] = copy_src1[4];
Shwethaa91cbe62016-08-08 15:51:04 +0100341
Vengada Govindan07d2f842016-08-25 10:34:34 -0700342 vlib_buffer_advance (b0, -(word) rewrite_length);
343 vlib_buffer_advance (b1, -(word) rewrite_length);
344 ip0 = vlib_buffer_get_current (b0);
345 ip1 = vlib_buffer_get_current (b1);
Shwethaa91cbe62016-08-08 15:51:04 +0100346
Vengada Govindan07d2f842016-08-25 10:34:34 -0700347 hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
348 hbh1 = (ip6_hop_by_hop_header_t *) (ip1 + 1);
349 /* $$$ tune, rewrite_length is a multiple of 8 */
350 clib_memcpy (hbh0, rewrite, rewrite_length);
351 clib_memcpy (hbh1, rewrite, rewrite_length);
352 /* Patch the protocol chain, insert the h-b-h (type 0) header */
353 hbh0->protocol = ip0->protocol;
354 hbh1->protocol = ip1->protocol;
355 ip0->protocol = 0;
356 ip1->protocol = 0;
357 new_l0 =
358 clib_net_to_host_u16 (ip0->payload_length) + rewrite_length;
359 new_l1 =
360 clib_net_to_host_u16 (ip1->payload_length) + rewrite_length;
361 ip0->payload_length = clib_host_to_net_u16 (new_l0);
362 ip1->payload_length = clib_host_to_net_u16 (new_l1);
Shwethaa91cbe62016-08-08 15:51:04 +0100363
Vengada Govindan07d2f842016-08-25 10:34:34 -0700364 /* Populate the (first) h-b-h list elt */
365 next0 = IP6_HBYH_IOAM_INPUT_NEXT_IP6_LOOKUP;
366 next1 = IP6_HBYH_IOAM_INPUT_NEXT_IP6_LOOKUP;
Shwethaa91cbe62016-08-08 15:51:04 +0100367
Ed Warnickecb9cada2015-12-08 15:45:58 -0700368
Vengada Govindan07d2f842016-08-25 10:34:34 -0700369 /* $$$$$ End of processing 2 x packets $$$$$ */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370
Vengada Govindan07d2f842016-08-25 10:34:34 -0700371 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
372 {
373 if (b0->flags & VLIB_BUFFER_IS_TRACED)
374 {
Shwethaa91cbe62016-08-08 15:51:04 +0100375 ip6_add_hop_by_hop_trace_t *t =
376 vlib_add_trace (vm, node, b0, sizeof (*t));
377 t->next_index = next0;
378 }
379 if (b1->flags & VLIB_BUFFER_IS_TRACED)
380 {
381 ip6_add_hop_by_hop_trace_t *t =
382 vlib_add_trace (vm, node, b1, sizeof (*t));
383 t->next_index = next1;
384 }
385 }
Vengada Govindan07d2f842016-08-25 10:34:34 -0700386 processed += 2;
Shwethaa91cbe62016-08-08 15:51:04 +0100387 /* verify speculative enqueues, maybe switch current next frame */
388 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
389 to_next, n_left_to_next,
390 bi0, bi1, next0, next1);
Vengada Govindan07d2f842016-08-25 10:34:34 -0700391 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700392 while (n_left_from > 0 && n_left_to_next > 0)
393 {
Vengada Govindan07d2f842016-08-25 10:34:34 -0700394 u32 bi0;
395 vlib_buffer_t *b0;
396 u32 next0;
397 ip6_header_t *ip0;
398 ip6_hop_by_hop_header_t *hbh0;
399 u64 *copy_src0, *copy_dst0;
400 u16 new_l0;
401
402 /* speculatively enqueue b0 to the current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403 bi0 = from[0];
404 to_next[0] = bi0;
405 from += 1;
406 to_next += 1;
407 n_left_from -= 1;
408 n_left_to_next -= 1;
409
410 b0 = vlib_get_buffer (vm, bi0);
411
Vengada Govindan07d2f842016-08-25 10:34:34 -0700412 ip0 = vlib_buffer_get_current (b0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413
Vengada Govindan07d2f842016-08-25 10:34:34 -0700414 /* Copy the ip header left by the required amount */
415 copy_dst0 = (u64 *) (((u8 *) ip0) - rewrite_length);
416 copy_src0 = (u64 *) ip0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700417
Vengada Govindan07d2f842016-08-25 10:34:34 -0700418 copy_dst0[0] = copy_src0[0];
419 copy_dst0[1] = copy_src0[1];
420 copy_dst0[2] = copy_src0[2];
421 copy_dst0[3] = copy_src0[3];
422 copy_dst0[4] = copy_src0[4];
423 vlib_buffer_advance (b0, -(word) rewrite_length);
424 ip0 = vlib_buffer_get_current (b0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700425
Vengada Govindan07d2f842016-08-25 10:34:34 -0700426 hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
427 /* $$$ tune, rewrite_length is a multiple of 8 */
428 clib_memcpy (hbh0, rewrite, rewrite_length);
429 /* Patch the protocol chain, insert the h-b-h (type 0) header */
430 hbh0->protocol = ip0->protocol;
431 ip0->protocol = 0;
432 new_l0 =
433 clib_net_to_host_u16 (ip0->payload_length) + rewrite_length;
434 ip0->payload_length = clib_host_to_net_u16 (new_l0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435
Vengada Govindan07d2f842016-08-25 10:34:34 -0700436 /* Populate the (first) h-b-h list elt */
437 next0 = IP6_HBYH_IOAM_INPUT_NEXT_IP6_LOOKUP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438
Vengada Govindan07d2f842016-08-25 10:34:34 -0700439 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)
440 && (b0->flags & VLIB_BUFFER_IS_TRACED)))
441 {
442 ip6_add_hop_by_hop_trace_t *t =
443 vlib_add_trace (vm, node, b0, sizeof (*t));
444 t->next_index = next0;
445 }
446
447 processed++;
448
449 /* verify speculative enqueue, maybe switch current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
451 to_next, n_left_to_next,
452 bi0, next0);
453 }
454
455 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
456 }
457
Vengada Govindan07d2f842016-08-25 10:34:34 -0700458 vlib_node_increment_counter (vm, ip6_add_hop_by_hop_node.index,
459 IP6_ADD_HOP_BY_HOP_ERROR_PROCESSED, processed);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700460 return frame->n_vectors;
461}
462
Dave Barachd7cb1b52016-12-09 09:52:16 -0500463/* *INDENT-OFF* */
Vengada Govindan07d2f842016-08-25 10:34:34 -0700464VLIB_REGISTER_NODE (ip6_add_hop_by_hop_node) = /* *INDENT-OFF* */
465{
466 .function = ip6_add_hop_by_hop_node_fn,.name =
467 "ip6-add-hop-by-hop",.vector_size = sizeof (u32),.format_trace =
468 format_ip6_add_hop_by_hop_trace,.type =
469 VLIB_NODE_TYPE_INTERNAL,.n_errors =
470 ARRAY_LEN (ip6_add_hop_by_hop_error_strings),.error_strings =
471 ip6_add_hop_by_hop_error_strings,
472 /* See ip/lookup.h */
473 .n_next_nodes = IP6_HBYH_IOAM_INPUT_N_NEXT,.next_nodes =
474 {
Ole Troan944f5482016-05-24 11:56:58 +0200475#define _(s,n) [IP6_HBYH_IOAM_INPUT_NEXT_##s] = n,
476 foreach_ip6_hbyh_ioam_input_next
ranganf5bf6dd2016-04-15 17:31:46 +0530477#undef _
Vengada Govindan07d2f842016-08-25 10:34:34 -0700478 }
479,};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500480/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700481
Vengada Govindan07d2f842016-08-25 10:34:34 -0700482/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700483
Vengada Govindan07d2f842016-08-25 10:34:34 -0700484VLIB_NODE_FUNCTION_MULTIARCH (ip6_add_hop_by_hop_node,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500485 ip6_add_hop_by_hop_node_fn);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700486/* The main h-b-h tracer was already invoked, no need to do much here */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500487typedef struct
488{
489 u32 next_index;
490} ip6_pop_hop_by_hop_trace_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700491
492/* packet trace format function */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500493static u8 *
494format_ip6_pop_hop_by_hop_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700495{
496 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
497 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Vengada Govindan07d2f842016-08-25 10:34:34 -0700498 ip6_pop_hop_by_hop_trace_t *t =
499 va_arg (*args, ip6_pop_hop_by_hop_trace_t *);
500
501 s = format (s, "IP6_POP_HOP_BY_HOP: next index %d", t->next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700502 return s;
503}
504
Shwetha85b528e2016-06-15 16:34:16 +0100505int
506ip6_hbh_pop_register_option (u8 option,
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530507 int options (vlib_buffer_t * b,
508 ip6_header_t * ip,
Vengada Govindan07d2f842016-08-25 10:34:34 -0700509 ip6_hop_by_hop_option_t * opt))
Shwetha85b528e2016-06-15 16:34:16 +0100510{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700511 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Shwetha85b528e2016-06-15 16:34:16 +0100512
513 ASSERT (option < ARRAY_LEN (hm->pop_options));
514
515 /* Already registered */
516 if (hm->pop_options[option])
517 return (-1);
518
519 hm->pop_options[option] = options;
520
521 return (0);
522}
523
524int
525ip6_hbh_pop_unregister_option (u8 option)
526{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700527 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Shwetha85b528e2016-06-15 16:34:16 +0100528
529 ASSERT (option < ARRAY_LEN (hm->pop_options));
530
531 /* Not registered */
532 if (!hm->pop_options[option])
533 return (-1);
534
535 hm->pop_options[option] = NULL;
536 return (0);
537}
538
Ed Warnickecb9cada2015-12-08 15:45:58 -0700539vlib_node_registration_t ip6_pop_hop_by_hop_node;
540
541#define foreach_ip6_pop_hop_by_hop_error \
542_(PROCESSED, "Pkts w/ removed ip6 hop-by-hop options") \
Shwetha85b528e2016-06-15 16:34:16 +0100543_(NO_HOHO, "Pkts w/ no ip6 hop-by-hop options") \
544_(OPTION_FAILED, "ip6 pop hop-by-hop failed to process")
Ed Warnickecb9cada2015-12-08 15:45:58 -0700545
Vengada Govindan07d2f842016-08-25 10:34:34 -0700546typedef enum
547{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700548#define _(sym,str) IP6_POP_HOP_BY_HOP_ERROR_##sym,
549 foreach_ip6_pop_hop_by_hop_error
550#undef _
Vengada Govindan07d2f842016-08-25 10:34:34 -0700551 IP6_POP_HOP_BY_HOP_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552} ip6_pop_hop_by_hop_error_t;
553
Vengada Govindan07d2f842016-08-25 10:34:34 -0700554static char *ip6_pop_hop_by_hop_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700555#define _(sym,string) string,
556 foreach_ip6_pop_hop_by_hop_error
557#undef _
558};
559
Vengada Govindan07d2f842016-08-25 10:34:34 -0700560static inline void
561ioam_pop_hop_by_hop_processing (vlib_main_t * vm,
562 ip6_header_t * ip0,
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530563 ip6_hop_by_hop_header_t * hbh0,
564 vlib_buffer_t * b)
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200565{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700566 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200567 ip6_hop_by_hop_option_t *opt0, *limit0;
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200568 u8 type0;
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200569
Vengada Govindan07d2f842016-08-25 10:34:34 -0700570 if (!hbh0 || !ip0)
571 return;
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200572
Vengada Govindan07d2f842016-08-25 10:34:34 -0700573 opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200574 limit0 = (ip6_hop_by_hop_option_t *)
Vengada Govindan07d2f842016-08-25 10:34:34 -0700575 ((u8 *) hbh0 + ((hbh0->length + 1) << 3));
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200576
577 /* Scan the set of h-b-h options, process ones that we understand */
578 while (opt0 < limit0)
579 {
Ole Troan944f5482016-05-24 11:56:58 +0200580 type0 = opt0->type;
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200581 switch (type0)
Shwetha85b528e2016-06-15 16:34:16 +0100582 {
Vengada Govindan07d2f842016-08-25 10:34:34 -0700583 case 0: /* Pad1 */
584 opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0) + 1;
Shwetha85b528e2016-06-15 16:34:16 +0100585 continue;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700586 case 1: /* PadN */
Shwetha85b528e2016-06-15 16:34:16 +0100587 break;
588 default:
589 if (hm->pop_options[type0])
590 {
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530591 if ((*hm->pop_options[type0]) (b, ip0, opt0) < 0)
Vengada Govindan07d2f842016-08-25 10:34:34 -0700592 {
593 vlib_node_increment_counter (vm,
594 ip6_pop_hop_by_hop_node.index,
595 IP6_POP_HOP_BY_HOP_ERROR_OPTION_FAILED,
596 1);
597 }
Shwetha85b528e2016-06-15 16:34:16 +0100598 }
599 }
Vengada Govindan07d2f842016-08-25 10:34:34 -0700600 opt0 =
601 (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
602 sizeof (ip6_hop_by_hop_option_t));
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200603 }
604}
605
Ed Warnickecb9cada2015-12-08 15:45:58 -0700606static uword
607ip6_pop_hop_by_hop_node_fn (vlib_main_t * vm,
Vengada Govindan07d2f842016-08-25 10:34:34 -0700608 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700609{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700610 ip6_main_t *im = &ip6_main;
611 ip_lookup_main_t *lm = &im->lookup_main;
612 u32 n_left_from, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700613 ip_lookup_next_t next_index;
614 u32 processed = 0;
615 u32 no_header = 0;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700616
Ed Warnickecb9cada2015-12-08 15:45:58 -0700617 from = vlib_frame_vector_args (frame);
618 n_left_from = frame->n_vectors;
619 next_index = node->cached_next_index;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700620
Ed Warnickecb9cada2015-12-08 15:45:58 -0700621 while (n_left_from > 0)
622 {
623 u32 n_left_to_next;
624
Vengada Govindan07d2f842016-08-25 10:34:34 -0700625 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700626
Ed Warnickecb9cada2015-12-08 15:45:58 -0700627 while (n_left_from >= 4 && n_left_to_next >= 2)
628 {
Vengada Govindan07d2f842016-08-25 10:34:34 -0700629 u32 bi0, bi1;
630 vlib_buffer_t *b0, *b1;
Shwethaa91cbe62016-08-08 15:51:04 +0100631 u32 next0, next1;
632 u32 adj_index0, adj_index1;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700633 ip6_header_t *ip0, *ip1;
634 ip_adjacency_t *adj0, *adj1;
Shwethaa91cbe62016-08-08 15:51:04 +0100635 ip6_hop_by_hop_header_t *hbh0, *hbh1;
636 u64 *copy_dst0, *copy_src0, *copy_dst1, *copy_src1;
637 u16 new_l0, new_l1;
638
Ed Warnickecb9cada2015-12-08 15:45:58 -0700639 /* Prefetch next iteration. */
640 {
Vengada Govindan07d2f842016-08-25 10:34:34 -0700641 vlib_buffer_t *p2, *p3;
Shwethaa91cbe62016-08-08 15:51:04 +0100642
Ed Warnickecb9cada2015-12-08 15:45:58 -0700643 p2 = vlib_get_buffer (vm, from[2]);
644 p3 = vlib_get_buffer (vm, from[3]);
Shwethaa91cbe62016-08-08 15:51:04 +0100645
Ed Warnickecb9cada2015-12-08 15:45:58 -0700646 vlib_prefetch_buffer_header (p2, LOAD);
647 vlib_prefetch_buffer_header (p3, LOAD);
648
649 CLIB_PREFETCH (p2->data, CLIB_CACHE_LINE_BYTES, STORE);
650 CLIB_PREFETCH (p3->data, CLIB_CACHE_LINE_BYTES, STORE);
651 }
652
Vengada Govindan07d2f842016-08-25 10:34:34 -0700653 /* speculatively enqueue b0 and b1 to the current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700654 to_next[0] = bi0 = from[0];
655 to_next[1] = bi1 = from[1];
656 from += 2;
657 to_next += 2;
658 n_left_from -= 2;
659 n_left_to_next -= 2;
660
661 b0 = vlib_get_buffer (vm, bi0);
662 b1 = vlib_get_buffer (vm, bi1);
663
Vengada Govindan07d2f842016-08-25 10:34:34 -0700664 /* $$$$$ Dual loop: process 2 x packets here $$$$$ */
Vengada Govindan07d2f842016-08-25 10:34:34 -0700665 ip0 = vlib_buffer_get_current (b0);
666 ip1 = vlib_buffer_get_current (b1);
Shwethaa91cbe62016-08-08 15:51:04 +0100667 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
668 adj_index1 = vnet_buffer (b1)->ip.adj_index[VLIB_TX];
669 adj0 = ip_get_adjacency (lm, adj_index0);
670 adj1 = ip_get_adjacency (lm, adj_index1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700671
Shwethaa91cbe62016-08-08 15:51:04 +0100672 next0 = adj0->lookup_next_index;
673 next1 = adj1->lookup_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700674
Vengada Govindan07d2f842016-08-25 10:34:34 -0700675 hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
676 hbh1 = (ip6_hop_by_hop_header_t *) (ip1 + 1);
Shwethaa91cbe62016-08-08 15:51:04 +0100677
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530678 ioam_pop_hop_by_hop_processing (vm, ip0, hbh0, b0);
679 ioam_pop_hop_by_hop_processing (vm, ip1, hbh1, b1);
Shwethaa91cbe62016-08-08 15:51:04 +0100680
Vengada Govindan07d2f842016-08-25 10:34:34 -0700681 vlib_buffer_advance (b0, (hbh0->length + 1) << 3);
682 vlib_buffer_advance (b1, (hbh1->length + 1) << 3);
Shwethaa91cbe62016-08-08 15:51:04 +0100683
684 new_l0 = clib_net_to_host_u16 (ip0->payload_length) -
Vengada Govindan07d2f842016-08-25 10:34:34 -0700685 ((hbh0->length + 1) << 3);
Shwethaa91cbe62016-08-08 15:51:04 +0100686 new_l1 = clib_net_to_host_u16 (ip1->payload_length) -
Vengada Govindan07d2f842016-08-25 10:34:34 -0700687 ((hbh1->length + 1) << 3);
Shwethaa91cbe62016-08-08 15:51:04 +0100688
689 ip0->payload_length = clib_host_to_net_u16 (new_l0);
690 ip1->payload_length = clib_host_to_net_u16 (new_l1);
691
692 ip0->protocol = hbh0->protocol;
693 ip1->protocol = hbh1->protocol;
694
Vengada Govindan07d2f842016-08-25 10:34:34 -0700695 copy_src0 = (u64 *) ip0;
696 copy_src1 = (u64 *) ip1;
697 copy_dst0 = copy_src0 + (hbh0->length + 1);
698 copy_dst0[4] = copy_src0[4];
699 copy_dst0[3] = copy_src0[3];
700 copy_dst0[2] = copy_src0[2];
701 copy_dst0[1] = copy_src0[1];
702 copy_dst0[0] = copy_src0[0];
703 copy_dst1 = copy_src1 + (hbh1->length + 1);
704 copy_dst1[4] = copy_src1[4];
705 copy_dst1[3] = copy_src1[3];
706 copy_dst1[2] = copy_src1[2];
707 copy_dst1[1] = copy_src1[1];
708 copy_dst1[0] = copy_src1[0];
709 processed += 2;
710 /* $$$$$ End of processing 2 x packets $$$$$ */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711
Vengada Govindan07d2f842016-08-25 10:34:34 -0700712 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
713 {
714 if (b0->flags & VLIB_BUFFER_IS_TRACED)
715 {
716 ip6_pop_hop_by_hop_trace_t *t =
717 vlib_add_trace (vm, node, b0, sizeof (*t));
718 t->next_index = next0;
719 }
720 if (b1->flags & VLIB_BUFFER_IS_TRACED)
721 {
722 ip6_pop_hop_by_hop_trace_t *t =
723 vlib_add_trace (vm, node, b1, sizeof (*t));
724 t->next_index = next1;
725 }
726 }
Shwethaa91cbe62016-08-08 15:51:04 +0100727
Vengada Govindan07d2f842016-08-25 10:34:34 -0700728 /* verify speculative enqueues, maybe switch current next frame */
729 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
730 to_next, n_left_to_next,
731 bi0, bi1, next0, next1);
732 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700733
734 while (n_left_from > 0 && n_left_to_next > 0)
735 {
Vengada Govindan07d2f842016-08-25 10:34:34 -0700736 u32 bi0;
737 vlib_buffer_t *b0;
738 u32 next0;
739 u32 adj_index0;
740 ip6_header_t *ip0;
741 ip_adjacency_t *adj0;
742 ip6_hop_by_hop_header_t *hbh0;
743 u64 *copy_dst0, *copy_src0;
744 u16 new_l0;
745
746 /* speculatively enqueue b0 to the current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700747 bi0 = from[0];
748 to_next[0] = bi0;
749 from += 1;
750 to_next += 1;
751 n_left_from -= 1;
752 n_left_to_next -= 1;
753
754 b0 = vlib_get_buffer (vm, bi0);
755
Vengada Govindan07d2f842016-08-25 10:34:34 -0700756 ip0 = vlib_buffer_get_current (b0);
757 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
758 adj0 = ip_get_adjacency (lm, adj_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759
Ole Troan944f5482016-05-24 11:56:58 +0200760 /* Default use the next_index from the adjacency. */
761 next0 = adj0->lookup_next_index;
762
Vengada Govindan07d2f842016-08-25 10:34:34 -0700763 /* Perfectly normal to end up here w/ out h-b-h header */
764 hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
765
Ole Troan944f5482016-05-24 11:56:58 +0200766 /* TODO:Temporarily doing it here.. do this validation in end_of_path_cb */
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530767 ioam_pop_hop_by_hop_processing (vm, ip0, hbh0, b0);
Ole Troan944f5482016-05-24 11:56:58 +0200768 /* Pop the trace data */
Vengada Govindan07d2f842016-08-25 10:34:34 -0700769 vlib_buffer_advance (b0, (hbh0->length + 1) << 3);
Ole Troan944f5482016-05-24 11:56:58 +0200770 new_l0 = clib_net_to_host_u16 (ip0->payload_length) -
Vengada Govindan07d2f842016-08-25 10:34:34 -0700771 ((hbh0->length + 1) << 3);
Ole Troan944f5482016-05-24 11:56:58 +0200772 ip0->payload_length = clib_host_to_net_u16 (new_l0);
773 ip0->protocol = hbh0->protocol;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700774 copy_src0 = (u64 *) ip0;
775 copy_dst0 = copy_src0 + (hbh0->length + 1);
776 copy_dst0[4] = copy_src0[4];
777 copy_dst0[3] = copy_src0[3];
778 copy_dst0[2] = copy_src0[2];
779 copy_dst0[1] = copy_src0[1];
780 copy_dst0[0] = copy_src0[0];
Ole Troan944f5482016-05-24 11:56:58 +0200781 processed++;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700782
Vengada Govindan07d2f842016-08-25 10:34:34 -0700783 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)
784 && (b0->flags & VLIB_BUFFER_IS_TRACED)))
785 {
786 ip6_pop_hop_by_hop_trace_t *t =
787 vlib_add_trace (vm, node, b0, sizeof (*t));
788 t->next_index = next0;
789 }
790
791 /* verify speculative enqueue, maybe switch current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700792 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
793 to_next, n_left_to_next,
794 bi0, next0);
795 }
796
797 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
798 }
799
Vengada Govindan07d2f842016-08-25 10:34:34 -0700800 vlib_node_increment_counter (vm, ip6_pop_hop_by_hop_node.index,
801 IP6_POP_HOP_BY_HOP_ERROR_PROCESSED, processed);
802 vlib_node_increment_counter (vm, ip6_pop_hop_by_hop_node.index,
803 IP6_POP_HOP_BY_HOP_ERROR_NO_HOHO, no_header);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700804 return frame->n_vectors;
805}
806
Vengada Govindan07d2f842016-08-25 10:34:34 -0700807/* *INDENT-OFF* */
808VLIB_REGISTER_NODE (ip6_pop_hop_by_hop_node) =
809{
810 .function = ip6_pop_hop_by_hop_node_fn,.name =
811 "ip6-pop-hop-by-hop",.vector_size = sizeof (u32),.format_trace =
812 format_ip6_pop_hop_by_hop_trace,.type =
813 VLIB_NODE_TYPE_INTERNAL,.sibling_of = "ip6-lookup",.n_errors =
814 ARRAY_LEN (ip6_pop_hop_by_hop_error_strings),.error_strings =
815 ip6_pop_hop_by_hop_error_strings,
816 /* See ip/lookup.h */
817.n_next_nodes = 0,};
Ed Warnickecb9cada2015-12-08 15:45:58 -0700818
Vengada Govindan07d2f842016-08-25 10:34:34 -0700819/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700820
Damjan Marion1c80e832016-05-11 23:07:18 +0200821VLIB_NODE_FUNCTION_MULTIARCH (ip6_pop_hop_by_hop_node,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500822 ip6_pop_hop_by_hop_node_fn);
823static clib_error_t *
824ip6_hop_by_hop_ioam_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700825{
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530826 clib_error_t *error;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700827 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700828
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530829 if ((error = vlib_call_init_function (vm, ip_main_init)))
830 return (error);
831
832 if ((error = vlib_call_init_function (vm, ip6_lookup_init)))
833 return error;
834
Ed Warnickecb9cada2015-12-08 15:45:58 -0700835 hm->vlib_main = vm;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700836 hm->vnet_main = vnet_get_main ();
837 hm->unix_time_0 = (u32) time (0); /* Store starting time */
rangan4f810852016-03-18 03:31:17 +0530838 hm->vlib_time_0 = vlib_time_now (vm);
839 hm->ioam_flag = IOAM_HBYH_MOD;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700840 memset (hm->add_options, 0, sizeof (hm->add_options));
841 memset (hm->pop_options, 0, sizeof (hm->pop_options));
842 memset (hm->options_size, 0, sizeof (hm->options_size));
Ole Troan944f5482016-05-24 11:56:58 +0200843
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530844 vnet_classify_register_unformat_opaque_index_fn (unformat_opaque_ioam);
845
Ole Troan944f5482016-05-24 11:56:58 +0200846 return (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700847}
848
Ole Troan944f5482016-05-24 11:56:58 +0200849VLIB_INIT_FUNCTION (ip6_hop_by_hop_ioam_init);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700850
Vengada Govindan07d2f842016-08-25 10:34:34 -0700851int
852ip6_ioam_set_rewrite (u8 ** rwp, int has_trace_option,
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530853 int has_pot_option, int has_seqno_option)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700854{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700855 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530856 u8 *rewrite = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700857 u32 size, rnd_size;
858 ip6_hop_by_hop_header_t *hbh;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700859 u8 *current;
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530860 u8 *trace_data_size = NULL;
861 u8 *pot_data_size = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700862
863 vec_free (*rwp);
864
Vengada Govindan07d2f842016-08-25 10:34:34 -0700865 if (has_trace_option == 0 && has_pot_option == 0)
rangan4f810852016-03-18 03:31:17 +0530866 return -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700867
868 /* Work out how much space we need */
869 size = sizeof (ip6_hop_by_hop_header_t);
870
Vengada Govindan07d2f842016-08-25 10:34:34 -0700871 //if (has_trace_option && hm->get_sizeof_options[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST] != 0)
872 if (has_trace_option
873 && hm->options_size[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST] != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700874 {
Vengada Govindan07d2f842016-08-25 10:34:34 -0700875 size += hm->options_size[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876 }
Vengada Govindan07d2f842016-08-25 10:34:34 -0700877 if (has_pot_option
878 && hm->add_options[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT] != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700879 {
Shwetha85b528e2016-06-15 16:34:16 +0100880 size += hm->options_size[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700881 }
882
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530883 if (has_seqno_option)
884 {
885 size += hm->options_size[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE];
886 }
887
Ed Warnickecb9cada2015-12-08 15:45:58 -0700888 /* Round to a multiple of 8 octets */
889 rnd_size = (size + 7) & ~7;
890
891 /* allocate it, zero-fill / pad by construction */
Vengada Govindan07d2f842016-08-25 10:34:34 -0700892 vec_validate (rewrite, rnd_size - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700893
894 hbh = (ip6_hop_by_hop_header_t *) rewrite;
895 /* Length of header in 8 octet units, not incl first 8 octets */
Vengada Govindan07d2f842016-08-25 10:34:34 -0700896 hbh->length = (rnd_size >> 3) - 1;
897 current = (u8 *) (hbh + 1);
898
899 if (has_trace_option
900 && hm->add_options[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST] != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700901 {
Vengada Govindan07d2f842016-08-25 10:34:34 -0700902 if (0 != (hm->options_size[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST]))
903 {
904 trace_data_size =
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530905 &hm->options_size[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST];
Vengada Govindan07d2f842016-08-25 10:34:34 -0700906 if (0 ==
907 hm->add_options[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST] (current,
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530908 trace_data_size))
909 current += *trace_data_size;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700910 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700911 }
Vengada Govindan07d2f842016-08-25 10:34:34 -0700912 if (has_pot_option
913 && hm->add_options[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT] != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700914 {
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530915 pot_data_size =
916 &hm->options_size[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT];
Vengada Govindan07d2f842016-08-25 10:34:34 -0700917 if (0 ==
918 hm->add_options[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT] (current,
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530919 pot_data_size))
920 current += *pot_data_size;
921 }
922
923 if (has_seqno_option &&
924 (hm->add_options[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE] != 0))
925 {
926 if (0 == hm->add_options[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE] (current,
927 &
928 (hm->options_size
929 [HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE])))
930 current += hm->options_size[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700931 }
Vengada Govindan07d2f842016-08-25 10:34:34 -0700932
Ed Warnickecb9cada2015-12-08 15:45:58 -0700933 *rwp = rewrite;
934 return 0;
935}
936
rangan4f810852016-03-18 03:31:17 +0530937clib_error_t *
Vengada Govindan07d2f842016-08-25 10:34:34 -0700938clear_ioam_rewrite_fn (void)
rangan4f810852016-03-18 03:31:17 +0530939{
Ole Troan944f5482016-05-24 11:56:58 +0200940 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
rangan4f810852016-03-18 03:31:17 +0530941
Vengada Govindan07d2f842016-08-25 10:34:34 -0700942 vec_free (hm->rewrite);
rangan4f810852016-03-18 03:31:17 +0530943 hm->rewrite = 0;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700944 hm->has_trace_option = 0;
Shwetha85b528e2016-06-15 16:34:16 +0100945 hm->has_pot_option = 0;
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530946 hm->has_seqno_option = 0;
947 hm->has_analyse_option = 0;
948 if (hm->config_handler[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST])
949 hm->config_handler[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST] (NULL, 1);
950
951 if (hm->config_handler[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT])
952 hm->config_handler[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT] (NULL, 1);
953
954 if (hm->config_handler[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE])
955 {
956 hm->config_handler[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE] ((void *)
957 &hm->has_analyse_option,
958 1);
959 }
rangan4f810852016-03-18 03:31:17 +0530960
961 return 0;
962}
Shwetha20a64f52016-03-25 10:55:01 +0000963
Vengada Govindan07d2f842016-08-25 10:34:34 -0700964clib_error_t *
965clear_ioam_rewrite_command_fn (vlib_main_t * vm,
966 unformat_input_t * input,
967 vlib_cli_command_t * cmd)
Shwetha20a64f52016-03-25 10:55:01 +0000968{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700969 return (clear_ioam_rewrite_fn ());
Shwetha20a64f52016-03-25 10:55:01 +0000970}
Vengada Govindan07d2f842016-08-25 10:34:34 -0700971
Billy McFall0683c9c2016-10-13 08:27:31 -0400972/*?
973 * This command clears all the In-band OAM (iOAM) features enabled by
974 * the '<em>set ioam rewrite</em>' command. Use '<em>show ioam summary</em>' to
975 * verify the configured settings cleared.
976 *
977 * @cliexpar
978 * Example of how to clear iOAM features:
979 * @cliexcmd{clear ioam rewrite}
980?*/
Vengada Govindan07d2f842016-08-25 10:34:34 -0700981/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400982VLIB_CLI_COMMAND (ip6_clear_ioam_rewrite_cmd, static) = {
983 .path = "clear ioam rewrite",
984 .short_help = "clear ioam rewrite",
985 .function = clear_ioam_rewrite_command_fn,
986};
Vengada Govindan07d2f842016-08-25 10:34:34 -0700987/* *INDENT-ON* */
rangan4f810852016-03-18 03:31:17 +0530988
989clib_error_t *
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530990ip6_ioam_enable (int has_trace_option, int has_pot_option,
991 int has_seqno_option, int has_analyse_option)
rangan4f810852016-03-18 03:31:17 +0530992{
993 int rv;
Ole Troan944f5482016-05-24 11:56:58 +0200994 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700995 rv = ip6_ioam_set_rewrite (&hm->rewrite, has_trace_option,
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530996 has_pot_option, has_seqno_option);
rangan4f810852016-03-18 03:31:17 +0530997
998 switch (rv)
999 {
1000 case 0:
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +05301001 if (has_trace_option)
1002 {
1003 hm->has_trace_option = has_trace_option;
1004 if (hm->config_handler[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST])
1005 hm->config_handler[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST] (NULL,
1006 0);
1007 }
1008
1009 if (has_pot_option)
1010 {
1011 hm->has_pot_option = has_pot_option;
1012 if (hm->config_handler[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT])
1013 hm->config_handler[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT] (NULL,
1014 0);
1015 }
1016 hm->has_analyse_option = has_analyse_option;
1017 if (has_seqno_option)
1018 {
1019 hm->has_seqno_option = has_seqno_option;
1020 if (hm->config_handler[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE])
1021 {
1022 hm->config_handler[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE] ((void *)
1023 &has_analyse_option,
1024 0);
1025 }
1026 }
rangan4f810852016-03-18 03:31:17 +05301027 break;
1028
1029 default:
Vengada Govindan07d2f842016-08-25 10:34:34 -07001030 return clib_error_return_code (0, rv, 0,
1031 "ip6_ioam_set_rewrite returned %d", rv);
rangan4f810852016-03-18 03:31:17 +05301032 }
1033
1034 return 0;
1035}
1036
1037
Ed Warnickecb9cada2015-12-08 15:45:58 -07001038static clib_error_t *
rangan2375fbd2016-03-04 22:23:25 +05301039ip6_set_ioam_rewrite_command_fn (vlib_main_t * vm,
Vengada Govindan07d2f842016-08-25 10:34:34 -07001040 unformat_input_t * input,
1041 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001042{
Vengada Govindan07d2f842016-08-25 10:34:34 -07001043 int has_trace_option = 0;
Shwetha85b528e2016-06-15 16:34:16 +01001044 int has_pot_option = 0;
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +05301045 int has_seqno_option = 0;
1046 int has_analyse_option = 0;
Vengada Govindan07d2f842016-08-25 10:34:34 -07001047 clib_error_t *rv = 0;
1048
Ed Warnickecb9cada2015-12-08 15:45:58 -07001049 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1050 {
Vengada Govindan07d2f842016-08-25 10:34:34 -07001051 if (unformat (input, "trace"))
1052 has_trace_option = 1;
Shwetha85b528e2016-06-15 16:34:16 +01001053 else if (unformat (input, "pot"))
Vengada Govindan07d2f842016-08-25 10:34:34 -07001054 has_pot_option = 1;
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +05301055 else if (unformat (input, "seqno"))
1056 has_seqno_option = 1;
1057 else if (unformat (input, "analyse"))
1058 has_analyse_option = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001059 else
Vengada Govindan07d2f842016-08-25 10:34:34 -07001060 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001061 }
rangan4f810852016-03-18 03:31:17 +05301062
Vengada Govindan07d2f842016-08-25 10:34:34 -07001063
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +05301064 rv = ip6_ioam_enable (has_trace_option, has_pot_option,
1065 has_seqno_option, has_analyse_option);
Vengada Govindan07d2f842016-08-25 10:34:34 -07001066
1067 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001068}
1069
Billy McFall0683c9c2016-10-13 08:27:31 -04001070/*?
1071 * This command is used to enable In-band OAM (iOAM) features on IPv6.
1072 * '<em>trace</em>' is used to enable iOAM trace feature. '<em>pot</em>' is used to
1073 * enable the Proof Of Transit feature. '<em>ppc</em>' is used to indicate the
1074 * Per Packet Counter feature for Edge to Edge processing. '<em>ppc</em>' is
1075 * used to indicate if this node is an '<em>encap</em>' node (iOAM edge node
1076 * where packet enters iOAM domain), a '<em>decap</em>' node (iOAM edge node
1077 * where packet leaves iOAM domain) or '<em>none</em>' (iOAM node where packet
1078 * is in-transit through the iOAM domain). '<em>ppc</em>' can only be set if
1079 * '<em>trace</em>' or '<em>pot</em>' is enabled.
1080 *
1081 * Use '<em>clear ioam rewrite</em>' to disable all features enabled by this
1082 * command. Use '<em>show ioam summary</em>' to verify the configured settings.
1083 *
1084 * @cliexpar
1085 * Example of how to enable trace and pot with ppc set to encap:
1086 * @cliexcmd{set ioam rewrite trace pot ppc encap}
1087?*/
Vengada Govindan07d2f842016-08-25 10:34:34 -07001088/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -04001089VLIB_CLI_COMMAND (ip6_set_ioam_rewrite_cmd, static) = {
1090 .path = "set ioam rewrite",
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +05301091 .short_help = "set ioam [trace] [pot] [seqno] [analyse]",
Billy McFall0683c9c2016-10-13 08:27:31 -04001092 .function = ip6_set_ioam_rewrite_command_fn,
1093};
Vengada Govindan07d2f842016-08-25 10:34:34 -07001094/* *INDENT-ON* */
rangan4f810852016-03-18 03:31:17 +05301095
rangan4f810852016-03-18 03:31:17 +05301096static clib_error_t *
1097ip6_show_ioam_summary_cmd_fn (vlib_main_t * vm,
Vengada Govindan07d2f842016-08-25 10:34:34 -07001098 unformat_input_t * input,
1099 vlib_cli_command_t * cmd)
rangan4f810852016-03-18 03:31:17 +05301100{
Ole Troan944f5482016-05-24 11:56:58 +02001101 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
rangan4f810852016-03-18 03:31:17 +05301102 u8 *s = 0;
1103
1104
Vengada Govindan07d2f842016-08-25 10:34:34 -07001105 if (!is_zero_ip6_address (&hm->adj))
1106 {
1107 s = format (s, " REWRITE FLOW CONFIGS - \n");
1108 s = format (s, " Destination Address : %U\n",
1109 format_ip6_address, &hm->adj, sizeof (ip6_address_t));
1110 s =
1111 format (s, " Flow operation : %d (%s)\n",
1112 hm->ioam_flag,
1113 (hm->ioam_flag ==
1114 IOAM_HBYH_ADD) ? "Add" : ((hm->ioam_flag ==
1115 IOAM_HBYH_MOD) ? "Mod" : "Pop"));
1116 }
rangan4f810852016-03-18 03:31:17 +05301117 else
Vengada Govindan07d2f842016-08-25 10:34:34 -07001118 {
1119 s = format (s, " REWRITE FLOW CONFIGS - Not configured\n");
1120 }
rangan4f810852016-03-18 03:31:17 +05301121
Vengada Govindan07d2f842016-08-25 10:34:34 -07001122
1123 s = format (s, " TRACE OPTION - %d (%s)\n",
1124 hm->has_trace_option,
1125 (hm->has_trace_option ? "Enabled" : "Disabled"));
1126 if (hm->has_trace_option)
1127 s =
1128 format (s,
1129 "Try 'show ioam trace and show ioam-trace profile' for more information\n");
1130
1131
1132 s = format (s, " POT OPTION - %d (%s)\n",
1133 hm->has_pot_option,
1134 (hm->has_pot_option ? "Enabled" : "Disabled"));
Shwetha85b528e2016-06-15 16:34:16 +01001135 if (hm->has_pot_option)
Vengada Govindan07d2f842016-08-25 10:34:34 -07001136 s =
1137 format (s,
1138 "Try 'show ioam pot and show pot profile' for more information\n");
rangan4f810852016-03-18 03:31:17 +05301139
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +05301140 s = format (s, " EDGE TO EDGE - SeqNo OPTION - %d (%s)\n",
1141 hm->has_seqno_option,
1142 hm->has_seqno_option ? "Enabled" : "Disabled");
1143 if (hm->has_seqno_option)
1144 s = format (s, "Try 'show ioam e2e' for more information\n");
1145
1146 s = format (s, " iOAM Analyse OPTION - %d (%s)\n",
1147 hm->has_analyse_option,
1148 hm->has_analyse_option ? "Enabled" : "Disabled");
rangan4f810852016-03-18 03:31:17 +05301149
Vengada Govindan07d2f842016-08-25 10:34:34 -07001150 vlib_cli_output (vm, "%v", s);
1151 vec_free (s);
rangan4f810852016-03-18 03:31:17 +05301152 return 0;
1153}
1154
Billy McFall0683c9c2016-10-13 08:27:31 -04001155/*?
1156 * This command displays the current configuration data for In-band
1157 * OAM (iOAM).
1158 *
1159 * @cliexpar
1160 * Example to show the iOAM configuration:
1161 * @cliexstart{show ioam summary}
1162 * REWRITE FLOW CONFIGS -
1163 * Destination Address : ff02::1
1164 * Flow operation : 2 (Pop)
1165 * TRACE OPTION - 1 (Enabled)
1166 * Try 'show ioam trace and show ioam-trace profile' for more information
1167 * POT OPTION - 1 (Enabled)
1168 * Try 'show ioam pot and show pot profile' for more information
1169 * EDGE TO EDGE - PPC OPTION - 1 (Encap)
1170 * @cliexend
1171?*/
Vengada Govindan07d2f842016-08-25 10:34:34 -07001172/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -04001173VLIB_CLI_COMMAND (ip6_show_ioam_run_cmd, static) = {
1174 .path = "show ioam summary",
1175 .short_help = "show ioam summary",
1176 .function = ip6_show_ioam_summary_cmd_fn,
1177};
Vengada Govindan07d2f842016-08-25 10:34:34 -07001178/* *INDENT-ON* */
1179
Vengada Govindan07d2f842016-08-25 10:34:34 -07001180void
1181vnet_register_ioam_end_of_path_callback (void *cb)
1182{
1183 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001184
1185 hm->ioam_end_of_path_cb = cb;
1186}
Vengada Govindan07d2f842016-08-25 10:34:34 -07001187
1188/*
1189 * fd.io coding-style-patch-verification: ON
1190 *
1191 * Local Variables:
1192 * eval: (c-set-style "gnu")
1193 * End:
1194 */