blob: da0197061e2563a924dfbb766cb73bb1e4f8b5e1 [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
Filip Tehlar26ea14e2019-03-11 05:30:21 -070044#ifndef CLIB_MARCH_VARIANT
Ole Troan944f5482016-05-24 11:56:58 +020045ip6_hop_by_hop_ioam_main_t ip6_hop_by_hop_ioam_main;
Filip Tehlar26ea14e2019-03-11 05:30:21 -070046#endif /* CLIB_MARCH_VARIANT */
Ed Warnickecb9cada2015-12-08 15:45:58 -070047
Ole Troan944f5482016-05-24 11:56:58 +020048#define foreach_ip6_hbyh_ioam_input_next \
49 _(IP6_REWRITE, "ip6-rewrite") \
50 _(IP6_LOOKUP, "ip6-lookup") \
Vijayabhaskar Katamreddyce074122017-11-15 13:50:26 -080051 _(DROP, "ip6-drop")
ranganf5bf6dd2016-04-15 17:31:46 +053052
Vengada Govindan07d2f842016-08-25 10:34:34 -070053typedef enum
54{
Ole Troan944f5482016-05-24 11:56:58 +020055#define _(s,n) IP6_HBYH_IOAM_INPUT_NEXT_##s,
56 foreach_ip6_hbyh_ioam_input_next
ranganf5bf6dd2016-04-15 17:31:46 +053057#undef _
Vengada Govindan07d2f842016-08-25 10:34:34 -070058 IP6_HBYH_IOAM_INPUT_N_NEXT,
Ole Troan944f5482016-05-24 11:56:58 +020059} ip6_hbyh_ioam_input_next_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -070060
Filip Tehlar26ea14e2019-03-11 05:30:21 -070061#ifndef CLIB_MARCH_VARIANT
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +053062static uword
63unformat_opaque_ioam (unformat_input_t * input, va_list * args)
64{
65 u64 *opaquep = va_arg (*args, u64 *);
66 u8 *flow_name = NULL;
67 uword ret = 0;
68
69 if (unformat (input, "ioam-encap %s", &flow_name))
70 {
71 *opaquep = ioam_flow_add (1, flow_name);
72 ret = 1;
73 }
74 else if (unformat (input, "ioam-decap %s", &flow_name))
75 {
76 *opaquep = ioam_flow_add (0, flow_name);
77 ret = 1;
78 }
79
80 vec_free (flow_name);
81 return ret;
82}
83
84u8 *
85get_flow_name_from_flow_ctx (u32 flow_ctx)
86{
87 flow_data_t *flow = NULL;
88 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
89 u32 index;
90
91 index = IOAM_MASK_DECAP_BIT (flow_ctx);
92
93 if (pool_is_free_index (hm->flows, index))
94 return NULL;
95
96 flow = pool_elt_at_index (hm->flows, index);
97 return (flow->flow_name);
98}
Ed Warnickecb9cada2015-12-08 15:45:58 -070099
Shwetha85b528e2016-06-15 16:34:16 +0100100/* The main h-b-h tracer will be invoked, no need to do much here */
Ole Troan944f5482016-05-24 11:56:58 +0200101int
Shwetha85b528e2016-06-15 16:34:16 +0100102ip6_hbh_add_register_option (u8 option,
103 u8 size,
Vengada Govindan07d2f842016-08-25 10:34:34 -0700104 int rewrite_options (u8 * rewrite_string,
105 u8 * rewrite_size))
Ole Troan944f5482016-05-24 11:56:58 +0200106{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700107 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700108
Neale Ranns756cd942018-04-06 09:18:11 -0700109 ASSERT ((u32) option < ARRAY_LEN (hm->add_options));
Shwetha85b528e2016-06-15 16:34:16 +0100110
111 /* Already registered */
112 if (hm->add_options[option])
Ole Troan944f5482016-05-24 11:56:58 +0200113 return (-1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700114
Shwetha85b528e2016-06-15 16:34:16 +0100115 hm->add_options[option] = rewrite_options;
116 hm->options_size[option] = size;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700117
Shwetha85b528e2016-06-15 16:34:16 +0100118 return (0);
Ole Troan944f5482016-05-24 11:56:58 +0200119}
Damjan Marion1c80e832016-05-11 23:07:18 +0200120
Shwetha85b528e2016-06-15 16:34:16 +0100121int
122ip6_hbh_add_unregister_option (u8 option)
123{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700124 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Shwetha85b528e2016-06-15 16:34:16 +0100125
Neale Ranns756cd942018-04-06 09:18:11 -0700126 ASSERT ((u32) option < ARRAY_LEN (hm->add_options));
Shwetha85b528e2016-06-15 16:34:16 +0100127
128 /* Not registered */
129 if (!hm->add_options[option])
130 return (-1);
131
132 hm->add_options[option] = NULL;
133 hm->options_size[option] = 0;
134 return (0);
135}
136
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530137/* Config handler registration */
138int
139ip6_hbh_config_handler_register (u8 option,
140 int config_handler (void *data, u8 disable))
141{
142 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
143
Neale Ranns756cd942018-04-06 09:18:11 -0700144 ASSERT ((u32) option < ARRAY_LEN (hm->config_handler));
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530145
146 /* Already registered */
147 if (hm->config_handler[option])
148 return (VNET_API_ERROR_INVALID_REGISTRATION);
149
150 hm->config_handler[option] = config_handler;
151
152 return (0);
153}
154
155int
156ip6_hbh_config_handler_unregister (u8 option)
157{
158 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
159
Neale Ranns756cd942018-04-06 09:18:11 -0700160 ASSERT ((u32) option < ARRAY_LEN (hm->config_handler));
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530161
162 /* Not registered */
163 if (!hm->config_handler[option])
164 return (VNET_API_ERROR_INVALID_REGISTRATION);
165
166 hm->config_handler[option] = NULL;
167 return (0);
168}
169
170/* Flow handler registration */
171int
172ip6_hbh_flow_handler_register (u8 option,
173 u32 ioam_flow_handler (u32 flow_ctx, u8 add))
174{
175 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
176
Neale Ranns756cd942018-04-06 09:18:11 -0700177 ASSERT ((u32) option < ARRAY_LEN (hm->flow_handler));
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530178
179 /* Already registered */
180 if (hm->flow_handler[option])
181 return (VNET_API_ERROR_INVALID_REGISTRATION);
182
183 hm->flow_handler[option] = ioam_flow_handler;
184
185 return (0);
186}
187
188int
189ip6_hbh_flow_handler_unregister (u8 option)
190{
191 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
192
Neale Ranns756cd942018-04-06 09:18:11 -0700193 ASSERT ((u32) option < ARRAY_LEN (hm->flow_handler));
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530194
195 /* Not registered */
196 if (!hm->flow_handler[option])
197 return (VNET_API_ERROR_INVALID_REGISTRATION);
198
199 hm->flow_handler[option] = NULL;
200 return (0);
201}
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700202#endif /* CLIB_MARCH_VARIANT */
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530203
Vengada Govindan07d2f842016-08-25 10:34:34 -0700204typedef struct
205{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206 u32 next_index;
207} ip6_add_hop_by_hop_trace_t;
208
209/* packet trace format function */
Vengada Govindan07d2f842016-08-25 10:34:34 -0700210static u8 *
211format_ip6_add_hop_by_hop_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212{
213 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
214 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Vengada Govindan07d2f842016-08-25 10:34:34 -0700215 ip6_add_hop_by_hop_trace_t *t = va_arg (*args,
216 ip6_add_hop_by_hop_trace_t *);
217
218 s = format (s, "IP6_ADD_HOP_BY_HOP: next index %d", t->next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219 return s;
220}
221
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700222extern vlib_node_registration_t ip6_add_hop_by_hop_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223
224#define foreach_ip6_add_hop_by_hop_error \
225_(PROCESSED, "Pkts w/ added ip6 hop-by-hop options")
226
Vengada Govindan07d2f842016-08-25 10:34:34 -0700227typedef enum
228{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229#define _(sym,str) IP6_ADD_HOP_BY_HOP_ERROR_##sym,
230 foreach_ip6_add_hop_by_hop_error
231#undef _
Vengada Govindan07d2f842016-08-25 10:34:34 -0700232 IP6_ADD_HOP_BY_HOP_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700233} ip6_add_hop_by_hop_error_t;
234
Vengada Govindan07d2f842016-08-25 10:34:34 -0700235static char *ip6_add_hop_by_hop_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700236#define _(sym,string) string,
237 foreach_ip6_add_hop_by_hop_error
238#undef _
239};
240
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700241VLIB_NODE_FN (ip6_add_hop_by_hop_node) (vlib_main_t * vm,
242 vlib_node_runtime_t * node,
243 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700245 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
246 u32 n_left_from, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247 ip_lookup_next_t next_index;
248 u32 processed = 0;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700249 u8 *rewrite = hm->rewrite;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700250 u32 rewrite_length = vec_len (rewrite);
251
252 from = vlib_frame_vector_args (frame);
253 n_left_from = frame->n_vectors;
254 next_index = node->cached_next_index;
255
256 while (n_left_from > 0)
257 {
258 u32 n_left_to_next;
259
Vengada Govindan07d2f842016-08-25 10:34:34 -0700260 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700261 while (n_left_from >= 4 && n_left_to_next >= 2)
Vengada Govindan07d2f842016-08-25 10:34:34 -0700262 {
263 u32 bi0, bi1;
264 vlib_buffer_t *b0, *b1;
265 u32 next0, next1;
266 ip6_header_t *ip0, *ip1;
267 ip6_hop_by_hop_header_t *hbh0, *hbh1;
268 u64 *copy_src0, *copy_dst0, *copy_src1, *copy_dst1;
269 u16 new_l0, new_l1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700270
Vengada Govindan07d2f842016-08-25 10:34:34 -0700271 /* Prefetch next iteration. */
272 {
273 vlib_buffer_t *p2, *p3;
Shwethaa91cbe62016-08-08 15:51:04 +0100274
Vengada Govindan07d2f842016-08-25 10:34:34 -0700275 p2 = vlib_get_buffer (vm, from[2]);
276 p3 = vlib_get_buffer (vm, from[3]);
Shwethaa91cbe62016-08-08 15:51:04 +0100277
Vengada Govindan07d2f842016-08-25 10:34:34 -0700278 vlib_prefetch_buffer_header (p2, LOAD);
279 vlib_prefetch_buffer_header (p3, LOAD);
Shwethaa91cbe62016-08-08 15:51:04 +0100280
Vengada Govindan07d2f842016-08-25 10:34:34 -0700281 CLIB_PREFETCH (p2->data - rewrite_length,
282 2 * CLIB_CACHE_LINE_BYTES, STORE);
283 CLIB_PREFETCH (p3->data - rewrite_length,
284 2 * CLIB_CACHE_LINE_BYTES, STORE);
285 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286
Vengada Govindan07d2f842016-08-25 10:34:34 -0700287 /* speculatively enqueue b0 and b1 to the current next frame */
288 to_next[0] = bi0 = from[0];
289 to_next[1] = bi1 = from[1];
290 from += 2;
291 to_next += 2;
292 n_left_from -= 2;
293 n_left_to_next -= 2;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294
Vengada Govindan07d2f842016-08-25 10:34:34 -0700295 b0 = vlib_get_buffer (vm, bi0);
296 b1 = vlib_get_buffer (vm, bi1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700297
Vengada Govindan07d2f842016-08-25 10:34:34 -0700298 /* $$$$$ Dual loop: process 2 x packets here $$$$$ */
Vengada Govindan07d2f842016-08-25 10:34:34 -0700299 ip0 = vlib_buffer_get_current (b0);
300 ip1 = vlib_buffer_get_current (b1);
Shwethaa91cbe62016-08-08 15:51:04 +0100301
Vengada Govindan07d2f842016-08-25 10:34:34 -0700302 /* Copy the ip header left by the required amount */
303 copy_dst0 = (u64 *) (((u8 *) ip0) - rewrite_length);
304 copy_dst1 = (u64 *) (((u8 *) ip1) - rewrite_length);
305 copy_src0 = (u64 *) ip0;
306 copy_src1 = (u64 *) ip1;
Shwethaa91cbe62016-08-08 15:51:04 +0100307
Vengada Govindan07d2f842016-08-25 10:34:34 -0700308 copy_dst0[0] = copy_src0[0];
309 copy_dst0[1] = copy_src0[1];
310 copy_dst0[2] = copy_src0[2];
311 copy_dst0[3] = copy_src0[3];
312 copy_dst0[4] = copy_src0[4];
Shwethaa91cbe62016-08-08 15:51:04 +0100313
Vengada Govindan07d2f842016-08-25 10:34:34 -0700314 copy_dst1[0] = copy_src1[0];
315 copy_dst1[1] = copy_src1[1];
316 copy_dst1[2] = copy_src1[2];
317 copy_dst1[3] = copy_src1[3];
318 copy_dst1[4] = copy_src1[4];
Shwethaa91cbe62016-08-08 15:51:04 +0100319
Vengada Govindan07d2f842016-08-25 10:34:34 -0700320 vlib_buffer_advance (b0, -(word) rewrite_length);
321 vlib_buffer_advance (b1, -(word) rewrite_length);
322 ip0 = vlib_buffer_get_current (b0);
323 ip1 = vlib_buffer_get_current (b1);
Shwethaa91cbe62016-08-08 15:51:04 +0100324
Vengada Govindan07d2f842016-08-25 10:34:34 -0700325 hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
326 hbh1 = (ip6_hop_by_hop_header_t *) (ip1 + 1);
327 /* $$$ tune, rewrite_length is a multiple of 8 */
Dave Barach178cf492018-11-13 16:34:13 -0500328 clib_memcpy_fast (hbh0, rewrite, rewrite_length);
329 clib_memcpy_fast (hbh1, rewrite, rewrite_length);
Vengada Govindan07d2f842016-08-25 10:34:34 -0700330 /* Patch the protocol chain, insert the h-b-h (type 0) header */
331 hbh0->protocol = ip0->protocol;
332 hbh1->protocol = ip1->protocol;
333 ip0->protocol = 0;
334 ip1->protocol = 0;
335 new_l0 =
336 clib_net_to_host_u16 (ip0->payload_length) + rewrite_length;
337 new_l1 =
338 clib_net_to_host_u16 (ip1->payload_length) + rewrite_length;
339 ip0->payload_length = clib_host_to_net_u16 (new_l0);
340 ip1->payload_length = clib_host_to_net_u16 (new_l1);
Shwethaa91cbe62016-08-08 15:51:04 +0100341
Vengada Govindan07d2f842016-08-25 10:34:34 -0700342 /* Populate the (first) h-b-h list elt */
343 next0 = IP6_HBYH_IOAM_INPUT_NEXT_IP6_LOOKUP;
344 next1 = IP6_HBYH_IOAM_INPUT_NEXT_IP6_LOOKUP;
Shwethaa91cbe62016-08-08 15:51:04 +0100345
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346
Vengada Govindan07d2f842016-08-25 10:34:34 -0700347 /* $$$$$ End of processing 2 x packets $$$$$ */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700348
Vengada Govindan07d2f842016-08-25 10:34:34 -0700349 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
350 {
351 if (b0->flags & VLIB_BUFFER_IS_TRACED)
352 {
Shwethaa91cbe62016-08-08 15:51:04 +0100353 ip6_add_hop_by_hop_trace_t *t =
354 vlib_add_trace (vm, node, b0, sizeof (*t));
355 t->next_index = next0;
356 }
357 if (b1->flags & VLIB_BUFFER_IS_TRACED)
358 {
359 ip6_add_hop_by_hop_trace_t *t =
360 vlib_add_trace (vm, node, b1, sizeof (*t));
361 t->next_index = next1;
362 }
363 }
Vengada Govindan07d2f842016-08-25 10:34:34 -0700364 processed += 2;
Shwethaa91cbe62016-08-08 15:51:04 +0100365 /* verify speculative enqueues, maybe switch current next frame */
366 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
367 to_next, n_left_to_next,
368 bi0, bi1, next0, next1);
Vengada Govindan07d2f842016-08-25 10:34:34 -0700369 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700370 while (n_left_from > 0 && n_left_to_next > 0)
371 {
Vengada Govindan07d2f842016-08-25 10:34:34 -0700372 u32 bi0;
373 vlib_buffer_t *b0;
374 u32 next0;
375 ip6_header_t *ip0;
376 ip6_hop_by_hop_header_t *hbh0;
377 u64 *copy_src0, *copy_dst0;
378 u16 new_l0;
379
380 /* speculatively enqueue b0 to the current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700381 bi0 = from[0];
382 to_next[0] = bi0;
383 from += 1;
384 to_next += 1;
385 n_left_from -= 1;
386 n_left_to_next -= 1;
387
388 b0 = vlib_get_buffer (vm, bi0);
389
Vengada Govindan07d2f842016-08-25 10:34:34 -0700390 ip0 = vlib_buffer_get_current (b0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700391
Vengada Govindan07d2f842016-08-25 10:34:34 -0700392 /* Copy the ip header left by the required amount */
393 copy_dst0 = (u64 *) (((u8 *) ip0) - rewrite_length);
394 copy_src0 = (u64 *) ip0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700395
Vengada Govindan07d2f842016-08-25 10:34:34 -0700396 copy_dst0[0] = copy_src0[0];
397 copy_dst0[1] = copy_src0[1];
398 copy_dst0[2] = copy_src0[2];
399 copy_dst0[3] = copy_src0[3];
400 copy_dst0[4] = copy_src0[4];
401 vlib_buffer_advance (b0, -(word) rewrite_length);
402 ip0 = vlib_buffer_get_current (b0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700403
Vengada Govindan07d2f842016-08-25 10:34:34 -0700404 hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
405 /* $$$ tune, rewrite_length is a multiple of 8 */
Dave Barach178cf492018-11-13 16:34:13 -0500406 clib_memcpy_fast (hbh0, rewrite, rewrite_length);
Vengada Govindan07d2f842016-08-25 10:34:34 -0700407 /* Patch the protocol chain, insert the h-b-h (type 0) header */
408 hbh0->protocol = ip0->protocol;
409 ip0->protocol = 0;
410 new_l0 =
411 clib_net_to_host_u16 (ip0->payload_length) + rewrite_length;
412 ip0->payload_length = clib_host_to_net_u16 (new_l0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700413
Vengada Govindan07d2f842016-08-25 10:34:34 -0700414 /* Populate the (first) h-b-h list elt */
415 next0 = IP6_HBYH_IOAM_INPUT_NEXT_IP6_LOOKUP;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700416
Vengada Govindan07d2f842016-08-25 10:34:34 -0700417 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)
418 && (b0->flags & VLIB_BUFFER_IS_TRACED)))
419 {
420 ip6_add_hop_by_hop_trace_t *t =
421 vlib_add_trace (vm, node, b0, sizeof (*t));
422 t->next_index = next0;
423 }
424
425 processed++;
426
427 /* verify speculative enqueue, maybe switch current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700428 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
429 to_next, n_left_to_next,
430 bi0, next0);
431 }
432
433 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
434 }
435
Vengada Govindan07d2f842016-08-25 10:34:34 -0700436 vlib_node_increment_counter (vm, ip6_add_hop_by_hop_node.index,
437 IP6_ADD_HOP_BY_HOP_ERROR_PROCESSED, processed);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438 return frame->n_vectors;
439}
440
Dave Barachd7cb1b52016-12-09 09:52:16 -0500441/* *INDENT-OFF* */
Vengada Govindan07d2f842016-08-25 10:34:34 -0700442VLIB_REGISTER_NODE (ip6_add_hop_by_hop_node) = /* *INDENT-OFF* */
443{
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700444 .name =
Vengada Govindan07d2f842016-08-25 10:34:34 -0700445 "ip6-add-hop-by-hop",.vector_size = sizeof (u32),.format_trace =
446 format_ip6_add_hop_by_hop_trace,.type =
447 VLIB_NODE_TYPE_INTERNAL,.n_errors =
448 ARRAY_LEN (ip6_add_hop_by_hop_error_strings),.error_strings =
449 ip6_add_hop_by_hop_error_strings,
450 /* See ip/lookup.h */
451 .n_next_nodes = IP6_HBYH_IOAM_INPUT_N_NEXT,.next_nodes =
452 {
Ole Troan944f5482016-05-24 11:56:58 +0200453#define _(s,n) [IP6_HBYH_IOAM_INPUT_NEXT_##s] = n,
454 foreach_ip6_hbyh_ioam_input_next
ranganf5bf6dd2016-04-15 17:31:46 +0530455#undef _
Vengada Govindan07d2f842016-08-25 10:34:34 -0700456 }
457,};
Dave Barachd7cb1b52016-12-09 09:52:16 -0500458/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700459
Vengada Govindan07d2f842016-08-25 10:34:34 -0700460/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700461
462/* The main h-b-h tracer was already invoked, no need to do much here */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500463typedef struct
464{
465 u32 next_index;
466} ip6_pop_hop_by_hop_trace_t;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700467
468/* packet trace format function */
Dave Barachd7cb1b52016-12-09 09:52:16 -0500469static u8 *
470format_ip6_pop_hop_by_hop_trace (u8 * s, va_list * args)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700471{
472 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
473 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Vengada Govindan07d2f842016-08-25 10:34:34 -0700474 ip6_pop_hop_by_hop_trace_t *t =
475 va_arg (*args, ip6_pop_hop_by_hop_trace_t *);
476
477 s = format (s, "IP6_POP_HOP_BY_HOP: next index %d", t->next_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478 return s;
479}
480
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700481#ifndef CLIB_MARCH_VARIANT
Shwetha85b528e2016-06-15 16:34:16 +0100482int
483ip6_hbh_pop_register_option (u8 option,
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530484 int options (vlib_buffer_t * b,
485 ip6_header_t * ip,
Vengada Govindan07d2f842016-08-25 10:34:34 -0700486 ip6_hop_by_hop_option_t * opt))
Shwetha85b528e2016-06-15 16:34:16 +0100487{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700488 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Shwetha85b528e2016-06-15 16:34:16 +0100489
Neale Ranns756cd942018-04-06 09:18:11 -0700490 ASSERT ((u32) option < ARRAY_LEN (hm->pop_options));
Shwetha85b528e2016-06-15 16:34:16 +0100491
492 /* Already registered */
493 if (hm->pop_options[option])
494 return (-1);
495
496 hm->pop_options[option] = options;
497
498 return (0);
499}
500
501int
502ip6_hbh_pop_unregister_option (u8 option)
503{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700504 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Shwetha85b528e2016-06-15 16:34:16 +0100505
Neale Ranns756cd942018-04-06 09:18:11 -0700506 ASSERT ((u32) option < ARRAY_LEN (hm->pop_options));
Shwetha85b528e2016-06-15 16:34:16 +0100507
508 /* Not registered */
509 if (!hm->pop_options[option])
510 return (-1);
511
512 hm->pop_options[option] = NULL;
513 return (0);
514}
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700515#endif /* CLIB_MARCH_VARIANT */
Shwetha85b528e2016-06-15 16:34:16 +0100516
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700517extern vlib_node_registration_t ip6_pop_hop_by_hop_node;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700518
519#define foreach_ip6_pop_hop_by_hop_error \
520_(PROCESSED, "Pkts w/ removed ip6 hop-by-hop options") \
Shwetha85b528e2016-06-15 16:34:16 +0100521_(NO_HOHO, "Pkts w/ no ip6 hop-by-hop options") \
522_(OPTION_FAILED, "ip6 pop hop-by-hop failed to process")
Ed Warnickecb9cada2015-12-08 15:45:58 -0700523
Vengada Govindan07d2f842016-08-25 10:34:34 -0700524typedef enum
525{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700526#define _(sym,str) IP6_POP_HOP_BY_HOP_ERROR_##sym,
527 foreach_ip6_pop_hop_by_hop_error
528#undef _
Vengada Govindan07d2f842016-08-25 10:34:34 -0700529 IP6_POP_HOP_BY_HOP_N_ERROR,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700530} ip6_pop_hop_by_hop_error_t;
531
Vengada Govindan07d2f842016-08-25 10:34:34 -0700532static char *ip6_pop_hop_by_hop_error_strings[] = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533#define _(sym,string) string,
534 foreach_ip6_pop_hop_by_hop_error
535#undef _
536};
537
Vengada Govindan07d2f842016-08-25 10:34:34 -0700538static inline void
539ioam_pop_hop_by_hop_processing (vlib_main_t * vm,
540 ip6_header_t * ip0,
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530541 ip6_hop_by_hop_header_t * hbh0,
542 vlib_buffer_t * b)
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200543{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700544 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200545 ip6_hop_by_hop_option_t *opt0, *limit0;
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200546 u8 type0;
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200547
Vengada Govindan07d2f842016-08-25 10:34:34 -0700548 if (!hbh0 || !ip0)
549 return;
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200550
Vengada Govindan07d2f842016-08-25 10:34:34 -0700551 opt0 = (ip6_hop_by_hop_option_t *) (hbh0 + 1);
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200552 limit0 = (ip6_hop_by_hop_option_t *)
Vengada Govindan07d2f842016-08-25 10:34:34 -0700553 ((u8 *) hbh0 + ((hbh0->length + 1) << 3));
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200554
555 /* Scan the set of h-b-h options, process ones that we understand */
556 while (opt0 < limit0)
557 {
Ole Troan944f5482016-05-24 11:56:58 +0200558 type0 = opt0->type;
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200559 switch (type0)
Shwetha85b528e2016-06-15 16:34:16 +0100560 {
Vengada Govindan07d2f842016-08-25 10:34:34 -0700561 case 0: /* Pad1 */
562 opt0 = (ip6_hop_by_hop_option_t *) ((u8 *) opt0) + 1;
Shwetha85b528e2016-06-15 16:34:16 +0100563 continue;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700564 case 1: /* PadN */
Shwetha85b528e2016-06-15 16:34:16 +0100565 break;
566 default:
567 if (hm->pop_options[type0])
568 {
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530569 if ((*hm->pop_options[type0]) (b, ip0, opt0) < 0)
Vengada Govindan07d2f842016-08-25 10:34:34 -0700570 {
571 vlib_node_increment_counter (vm,
572 ip6_pop_hop_by_hop_node.index,
573 IP6_POP_HOP_BY_HOP_ERROR_OPTION_FAILED,
574 1);
575 }
Shwetha85b528e2016-06-15 16:34:16 +0100576 }
577 }
Vengada Govindan07d2f842016-08-25 10:34:34 -0700578 opt0 =
579 (ip6_hop_by_hop_option_t *) (((u8 *) opt0) + opt0->length +
580 sizeof (ip6_hop_by_hop_option_t));
Shwetha Bhandari05866a12016-05-04 08:12:57 +0200581 }
582}
583
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700584VLIB_NODE_FN (ip6_pop_hop_by_hop_node) (vlib_main_t * vm,
585 vlib_node_runtime_t * node,
586 vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700588 u32 n_left_from, *from, *to_next;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700589 ip_lookup_next_t next_index;
590 u32 processed = 0;
591 u32 no_header = 0;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700592
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593 from = vlib_frame_vector_args (frame);
594 n_left_from = frame->n_vectors;
595 next_index = node->cached_next_index;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700596
Ed Warnickecb9cada2015-12-08 15:45:58 -0700597 while (n_left_from > 0)
598 {
599 u32 n_left_to_next;
600
Vengada Govindan07d2f842016-08-25 10:34:34 -0700601 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603 while (n_left_from >= 4 && n_left_to_next >= 2)
604 {
Vengada Govindan07d2f842016-08-25 10:34:34 -0700605 u32 bi0, bi1;
606 vlib_buffer_t *b0, *b1;
Shwethaa91cbe62016-08-08 15:51:04 +0100607 u32 next0, next1;
608 u32 adj_index0, adj_index1;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700609 ip6_header_t *ip0, *ip1;
610 ip_adjacency_t *adj0, *adj1;
Shwethaa91cbe62016-08-08 15:51:04 +0100611 ip6_hop_by_hop_header_t *hbh0, *hbh1;
612 u64 *copy_dst0, *copy_src0, *copy_dst1, *copy_src1;
613 u16 new_l0, new_l1;
614
Ed Warnickecb9cada2015-12-08 15:45:58 -0700615 /* Prefetch next iteration. */
616 {
Vengada Govindan07d2f842016-08-25 10:34:34 -0700617 vlib_buffer_t *p2, *p3;
Shwethaa91cbe62016-08-08 15:51:04 +0100618
Ed Warnickecb9cada2015-12-08 15:45:58 -0700619 p2 = vlib_get_buffer (vm, from[2]);
620 p3 = vlib_get_buffer (vm, from[3]);
Shwethaa91cbe62016-08-08 15:51:04 +0100621
Ed Warnickecb9cada2015-12-08 15:45:58 -0700622 vlib_prefetch_buffer_header (p2, LOAD);
623 vlib_prefetch_buffer_header (p3, LOAD);
624
625 CLIB_PREFETCH (p2->data, CLIB_CACHE_LINE_BYTES, STORE);
626 CLIB_PREFETCH (p3->data, CLIB_CACHE_LINE_BYTES, STORE);
627 }
628
Vengada Govindan07d2f842016-08-25 10:34:34 -0700629 /* speculatively enqueue b0 and b1 to the current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630 to_next[0] = bi0 = from[0];
631 to_next[1] = bi1 = from[1];
632 from += 2;
633 to_next += 2;
634 n_left_from -= 2;
635 n_left_to_next -= 2;
636
637 b0 = vlib_get_buffer (vm, bi0);
638 b1 = vlib_get_buffer (vm, bi1);
639
Vengada Govindan07d2f842016-08-25 10:34:34 -0700640 /* $$$$$ Dual loop: process 2 x packets here $$$$$ */
Vengada Govindan07d2f842016-08-25 10:34:34 -0700641 ip0 = vlib_buffer_get_current (b0);
642 ip1 = vlib_buffer_get_current (b1);
Shwethaa91cbe62016-08-08 15:51:04 +0100643 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
644 adj_index1 = vnet_buffer (b1)->ip.adj_index[VLIB_TX];
Neale Ranns107e7d42017-04-11 09:55:19 -0700645 adj0 = adj_get (adj_index0);
646 adj1 = adj_get (adj_index1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700647
Shwethaa91cbe62016-08-08 15:51:04 +0100648 next0 = adj0->lookup_next_index;
649 next1 = adj1->lookup_next_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700650
Vengada Govindan07d2f842016-08-25 10:34:34 -0700651 hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
652 hbh1 = (ip6_hop_by_hop_header_t *) (ip1 + 1);
Shwethaa91cbe62016-08-08 15:51:04 +0100653
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530654 ioam_pop_hop_by_hop_processing (vm, ip0, hbh0, b0);
655 ioam_pop_hop_by_hop_processing (vm, ip1, hbh1, b1);
Shwethaa91cbe62016-08-08 15:51:04 +0100656
Vengada Govindan07d2f842016-08-25 10:34:34 -0700657 vlib_buffer_advance (b0, (hbh0->length + 1) << 3);
658 vlib_buffer_advance (b1, (hbh1->length + 1) << 3);
Shwethaa91cbe62016-08-08 15:51:04 +0100659
660 new_l0 = clib_net_to_host_u16 (ip0->payload_length) -
Vengada Govindan07d2f842016-08-25 10:34:34 -0700661 ((hbh0->length + 1) << 3);
Shwethaa91cbe62016-08-08 15:51:04 +0100662 new_l1 = clib_net_to_host_u16 (ip1->payload_length) -
Vengada Govindan07d2f842016-08-25 10:34:34 -0700663 ((hbh1->length + 1) << 3);
Shwethaa91cbe62016-08-08 15:51:04 +0100664
665 ip0->payload_length = clib_host_to_net_u16 (new_l0);
666 ip1->payload_length = clib_host_to_net_u16 (new_l1);
667
668 ip0->protocol = hbh0->protocol;
669 ip1->protocol = hbh1->protocol;
670
Vengada Govindan07d2f842016-08-25 10:34:34 -0700671 copy_src0 = (u64 *) ip0;
672 copy_src1 = (u64 *) ip1;
673 copy_dst0 = copy_src0 + (hbh0->length + 1);
674 copy_dst0[4] = copy_src0[4];
675 copy_dst0[3] = copy_src0[3];
676 copy_dst0[2] = copy_src0[2];
677 copy_dst0[1] = copy_src0[1];
678 copy_dst0[0] = copy_src0[0];
679 copy_dst1 = copy_src1 + (hbh1->length + 1);
680 copy_dst1[4] = copy_src1[4];
681 copy_dst1[3] = copy_src1[3];
682 copy_dst1[2] = copy_src1[2];
683 copy_dst1[1] = copy_src1[1];
684 copy_dst1[0] = copy_src1[0];
685 processed += 2;
686 /* $$$$$ End of processing 2 x packets $$$$$ */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687
Vengada Govindan07d2f842016-08-25 10:34:34 -0700688 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)))
689 {
690 if (b0->flags & VLIB_BUFFER_IS_TRACED)
691 {
692 ip6_pop_hop_by_hop_trace_t *t =
693 vlib_add_trace (vm, node, b0, sizeof (*t));
694 t->next_index = next0;
695 }
696 if (b1->flags & VLIB_BUFFER_IS_TRACED)
697 {
698 ip6_pop_hop_by_hop_trace_t *t =
699 vlib_add_trace (vm, node, b1, sizeof (*t));
700 t->next_index = next1;
701 }
702 }
Shwethaa91cbe62016-08-08 15:51:04 +0100703
Vengada Govindan07d2f842016-08-25 10:34:34 -0700704 /* verify speculative enqueues, maybe switch current next frame */
705 vlib_validate_buffer_enqueue_x2 (vm, node, next_index,
706 to_next, n_left_to_next,
707 bi0, bi1, next0, next1);
708 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700709
710 while (n_left_from > 0 && n_left_to_next > 0)
711 {
Vengada Govindan07d2f842016-08-25 10:34:34 -0700712 u32 bi0;
713 vlib_buffer_t *b0;
714 u32 next0;
715 u32 adj_index0;
716 ip6_header_t *ip0;
717 ip_adjacency_t *adj0;
718 ip6_hop_by_hop_header_t *hbh0;
719 u64 *copy_dst0, *copy_src0;
720 u16 new_l0;
721
722 /* speculatively enqueue b0 to the current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700723 bi0 = from[0];
724 to_next[0] = bi0;
725 from += 1;
726 to_next += 1;
727 n_left_from -= 1;
728 n_left_to_next -= 1;
729
730 b0 = vlib_get_buffer (vm, bi0);
731
Vengada Govindan07d2f842016-08-25 10:34:34 -0700732 ip0 = vlib_buffer_get_current (b0);
733 adj_index0 = vnet_buffer (b0)->ip.adj_index[VLIB_TX];
Neale Ranns107e7d42017-04-11 09:55:19 -0700734 adj0 = adj_get (adj_index0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700735
Ole Troan944f5482016-05-24 11:56:58 +0200736 /* Default use the next_index from the adjacency. */
737 next0 = adj0->lookup_next_index;
738
Vengada Govindan07d2f842016-08-25 10:34:34 -0700739 /* Perfectly normal to end up here w/ out h-b-h header */
740 hbh0 = (ip6_hop_by_hop_header_t *) (ip0 + 1);
741
Ole Troan944f5482016-05-24 11:56:58 +0200742 /* TODO:Temporarily doing it here.. do this validation in end_of_path_cb */
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530743 ioam_pop_hop_by_hop_processing (vm, ip0, hbh0, b0);
Ole Troan944f5482016-05-24 11:56:58 +0200744 /* Pop the trace data */
Vengada Govindan07d2f842016-08-25 10:34:34 -0700745 vlib_buffer_advance (b0, (hbh0->length + 1) << 3);
Ole Troan944f5482016-05-24 11:56:58 +0200746 new_l0 = clib_net_to_host_u16 (ip0->payload_length) -
Vengada Govindan07d2f842016-08-25 10:34:34 -0700747 ((hbh0->length + 1) << 3);
Ole Troan944f5482016-05-24 11:56:58 +0200748 ip0->payload_length = clib_host_to_net_u16 (new_l0);
749 ip0->protocol = hbh0->protocol;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700750 copy_src0 = (u64 *) ip0;
751 copy_dst0 = copy_src0 + (hbh0->length + 1);
752 copy_dst0[4] = copy_src0[4];
753 copy_dst0[3] = copy_src0[3];
754 copy_dst0[2] = copy_src0[2];
755 copy_dst0[1] = copy_src0[1];
756 copy_dst0[0] = copy_src0[0];
Ole Troan944f5482016-05-24 11:56:58 +0200757 processed++;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700758
Vengada Govindan07d2f842016-08-25 10:34:34 -0700759 if (PREDICT_FALSE ((node->flags & VLIB_NODE_FLAG_TRACE)
760 && (b0->flags & VLIB_BUFFER_IS_TRACED)))
761 {
762 ip6_pop_hop_by_hop_trace_t *t =
763 vlib_add_trace (vm, node, b0, sizeof (*t));
764 t->next_index = next0;
765 }
766
767 /* verify speculative enqueue, maybe switch current next frame */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700768 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
769 to_next, n_left_to_next,
770 bi0, next0);
771 }
772
773 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
774 }
775
Vengada Govindan07d2f842016-08-25 10:34:34 -0700776 vlib_node_increment_counter (vm, ip6_pop_hop_by_hop_node.index,
777 IP6_POP_HOP_BY_HOP_ERROR_PROCESSED, processed);
778 vlib_node_increment_counter (vm, ip6_pop_hop_by_hop_node.index,
779 IP6_POP_HOP_BY_HOP_ERROR_NO_HOHO, no_header);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700780 return frame->n_vectors;
781}
782
Vengada Govindan07d2f842016-08-25 10:34:34 -0700783/* *INDENT-OFF* */
784VLIB_REGISTER_NODE (ip6_pop_hop_by_hop_node) =
785{
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700786 .name =
Vengada Govindan07d2f842016-08-25 10:34:34 -0700787 "ip6-pop-hop-by-hop",.vector_size = sizeof (u32),.format_trace =
788 format_ip6_pop_hop_by_hop_trace,.type =
789 VLIB_NODE_TYPE_INTERNAL,.sibling_of = "ip6-lookup",.n_errors =
790 ARRAY_LEN (ip6_pop_hop_by_hop_error_strings),.error_strings =
791 ip6_pop_hop_by_hop_error_strings,
792 /* See ip/lookup.h */
793.n_next_nodes = 0,};
Ed Warnickecb9cada2015-12-08 15:45:58 -0700794
Vengada Govindan07d2f842016-08-25 10:34:34 -0700795/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700796
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700797#ifndef CLIB_MARCH_VARIANT
Dave Barachd7cb1b52016-12-09 09:52:16 -0500798static clib_error_t *
799ip6_hop_by_hop_ioam_init (vlib_main_t * vm)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700800{
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530801 clib_error_t *error;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700802 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700803
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530804 if ((error = vlib_call_init_function (vm, ip_main_init)))
805 return (error);
806
807 if ((error = vlib_call_init_function (vm, ip6_lookup_init)))
808 return error;
809
Ed Warnickecb9cada2015-12-08 15:45:58 -0700810 hm->vlib_main = vm;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700811 hm->vnet_main = vnet_get_main ();
812 hm->unix_time_0 = (u32) time (0); /* Store starting time */
rangan4f810852016-03-18 03:31:17 +0530813 hm->vlib_time_0 = vlib_time_now (vm);
814 hm->ioam_flag = IOAM_HBYH_MOD;
Dave Barachb7b92992018-10-17 10:38:51 -0400815 clib_memset (hm->add_options, 0, sizeof (hm->add_options));
816 clib_memset (hm->pop_options, 0, sizeof (hm->pop_options));
817 clib_memset (hm->options_size, 0, sizeof (hm->options_size));
Ole Troan944f5482016-05-24 11:56:58 +0200818
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530819 vnet_classify_register_unformat_opaque_index_fn (unformat_opaque_ioam);
820
Ole Troan944f5482016-05-24 11:56:58 +0200821 return (0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700822}
823
Ole Troan944f5482016-05-24 11:56:58 +0200824VLIB_INIT_FUNCTION (ip6_hop_by_hop_ioam_init);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700825
Vengada Govindan07d2f842016-08-25 10:34:34 -0700826int
827ip6_ioam_set_rewrite (u8 ** rwp, int has_trace_option,
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530828 int has_pot_option, int has_seqno_option)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700829{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700830 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530831 u8 *rewrite = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700832 u32 size, rnd_size;
833 ip6_hop_by_hop_header_t *hbh;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700834 u8 *current;
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530835 u8 *trace_data_size = NULL;
836 u8 *pot_data_size = NULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700837
838 vec_free (*rwp);
839
Vengada Govindan07d2f842016-08-25 10:34:34 -0700840 if (has_trace_option == 0 && has_pot_option == 0)
rangan4f810852016-03-18 03:31:17 +0530841 return -1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700842
843 /* Work out how much space we need */
844 size = sizeof (ip6_hop_by_hop_header_t);
845
Vengada Govindan07d2f842016-08-25 10:34:34 -0700846 //if (has_trace_option && hm->get_sizeof_options[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST] != 0)
847 if (has_trace_option
848 && hm->options_size[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST] != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700849 {
Vengada Govindan07d2f842016-08-25 10:34:34 -0700850 size += hm->options_size[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700851 }
Vengada Govindan07d2f842016-08-25 10:34:34 -0700852 if (has_pot_option
853 && hm->add_options[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT] != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700854 {
Shwetha85b528e2016-06-15 16:34:16 +0100855 size += hm->options_size[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700856 }
857
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530858 if (has_seqno_option)
859 {
860 size += hm->options_size[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE];
861 }
862
Ed Warnickecb9cada2015-12-08 15:45:58 -0700863 /* Round to a multiple of 8 octets */
864 rnd_size = (size + 7) & ~7;
865
866 /* allocate it, zero-fill / pad by construction */
Vengada Govindan07d2f842016-08-25 10:34:34 -0700867 vec_validate (rewrite, rnd_size - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700868
869 hbh = (ip6_hop_by_hop_header_t *) rewrite;
870 /* Length of header in 8 octet units, not incl first 8 octets */
Vengada Govindan07d2f842016-08-25 10:34:34 -0700871 hbh->length = (rnd_size >> 3) - 1;
872 current = (u8 *) (hbh + 1);
873
874 if (has_trace_option
875 && hm->add_options[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST] != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700876 {
Vengada Govindan07d2f842016-08-25 10:34:34 -0700877 if (0 != (hm->options_size[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST]))
878 {
879 trace_data_size =
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530880 &hm->options_size[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST];
Vengada Govindan07d2f842016-08-25 10:34:34 -0700881 if (0 ==
882 hm->add_options[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST] (current,
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530883 trace_data_size))
884 current += *trace_data_size;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700885 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700886 }
Vengada Govindan07d2f842016-08-25 10:34:34 -0700887 if (has_pot_option
888 && hm->add_options[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT] != 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700889 {
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530890 pot_data_size =
891 &hm->options_size[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT];
Vengada Govindan07d2f842016-08-25 10:34:34 -0700892 if (0 ==
893 hm->add_options[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT] (current,
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530894 pot_data_size))
895 current += *pot_data_size;
896 }
897
898 if (has_seqno_option &&
899 (hm->add_options[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE] != 0))
900 {
901 if (0 == hm->add_options[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE] (current,
902 &
903 (hm->options_size
904 [HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE])))
905 current += hm->options_size[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700906 }
Vengada Govindan07d2f842016-08-25 10:34:34 -0700907
Ed Warnickecb9cada2015-12-08 15:45:58 -0700908 *rwp = rewrite;
909 return 0;
910}
911
rangan4f810852016-03-18 03:31:17 +0530912clib_error_t *
Vengada Govindan07d2f842016-08-25 10:34:34 -0700913clear_ioam_rewrite_fn (void)
rangan4f810852016-03-18 03:31:17 +0530914{
Ole Troan944f5482016-05-24 11:56:58 +0200915 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
rangan4f810852016-03-18 03:31:17 +0530916
Vengada Govindan07d2f842016-08-25 10:34:34 -0700917 vec_free (hm->rewrite);
rangan4f810852016-03-18 03:31:17 +0530918 hm->rewrite = 0;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700919 hm->has_trace_option = 0;
Shwetha85b528e2016-06-15 16:34:16 +0100920 hm->has_pot_option = 0;
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530921 hm->has_seqno_option = 0;
922 hm->has_analyse_option = 0;
923 if (hm->config_handler[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST])
924 hm->config_handler[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST] (NULL, 1);
925
926 if (hm->config_handler[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT])
927 hm->config_handler[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT] (NULL, 1);
928
929 if (hm->config_handler[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE])
930 {
931 hm->config_handler[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE] ((void *)
932 &hm->has_analyse_option,
933 1);
934 }
rangan4f810852016-03-18 03:31:17 +0530935
936 return 0;
937}
Shwetha20a64f52016-03-25 10:55:01 +0000938
Vengada Govindan07d2f842016-08-25 10:34:34 -0700939clib_error_t *
940clear_ioam_rewrite_command_fn (vlib_main_t * vm,
941 unformat_input_t * input,
942 vlib_cli_command_t * cmd)
Shwetha20a64f52016-03-25 10:55:01 +0000943{
Vengada Govindan07d2f842016-08-25 10:34:34 -0700944 return (clear_ioam_rewrite_fn ());
Shwetha20a64f52016-03-25 10:55:01 +0000945}
Vengada Govindan07d2f842016-08-25 10:34:34 -0700946
Billy McFall0683c9c2016-10-13 08:27:31 -0400947/*?
948 * This command clears all the In-band OAM (iOAM) features enabled by
949 * the '<em>set ioam rewrite</em>' command. Use '<em>show ioam summary</em>' to
950 * verify the configured settings cleared.
951 *
952 * @cliexpar
953 * Example of how to clear iOAM features:
954 * @cliexcmd{clear ioam rewrite}
955?*/
Vengada Govindan07d2f842016-08-25 10:34:34 -0700956/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -0400957VLIB_CLI_COMMAND (ip6_clear_ioam_rewrite_cmd, static) = {
958 .path = "clear ioam rewrite",
959 .short_help = "clear ioam rewrite",
960 .function = clear_ioam_rewrite_command_fn,
961};
Vengada Govindan07d2f842016-08-25 10:34:34 -0700962/* *INDENT-ON* */
rangan4f810852016-03-18 03:31:17 +0530963
964clib_error_t *
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530965ip6_ioam_enable (int has_trace_option, int has_pot_option,
966 int has_seqno_option, int has_analyse_option)
rangan4f810852016-03-18 03:31:17 +0530967{
968 int rv;
Ole Troan944f5482016-05-24 11:56:58 +0200969 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Vengada Govindan07d2f842016-08-25 10:34:34 -0700970 rv = ip6_ioam_set_rewrite (&hm->rewrite, has_trace_option,
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530971 has_pot_option, has_seqno_option);
rangan4f810852016-03-18 03:31:17 +0530972
973 switch (rv)
974 {
975 case 0:
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +0530976 if (has_trace_option)
977 {
978 hm->has_trace_option = has_trace_option;
979 if (hm->config_handler[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST])
980 hm->config_handler[HBH_OPTION_TYPE_IOAM_TRACE_DATA_LIST] (NULL,
981 0);
982 }
983
984 if (has_pot_option)
985 {
986 hm->has_pot_option = has_pot_option;
987 if (hm->config_handler[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT])
988 hm->config_handler[HBH_OPTION_TYPE_IOAM_PROOF_OF_TRANSIT] (NULL,
989 0);
990 }
991 hm->has_analyse_option = has_analyse_option;
992 if (has_seqno_option)
993 {
994 hm->has_seqno_option = has_seqno_option;
995 if (hm->config_handler[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE])
996 {
997 hm->config_handler[HBH_OPTION_TYPE_IOAM_EDGE_TO_EDGE] ((void *)
998 &has_analyse_option,
999 0);
1000 }
1001 }
rangan4f810852016-03-18 03:31:17 +05301002 break;
1003
1004 default:
Vengada Govindan07d2f842016-08-25 10:34:34 -07001005 return clib_error_return_code (0, rv, 0,
1006 "ip6_ioam_set_rewrite returned %d", rv);
rangan4f810852016-03-18 03:31:17 +05301007 }
1008
1009 return 0;
1010}
1011
1012
Ed Warnickecb9cada2015-12-08 15:45:58 -07001013static clib_error_t *
rangan2375fbd2016-03-04 22:23:25 +05301014ip6_set_ioam_rewrite_command_fn (vlib_main_t * vm,
Vengada Govindan07d2f842016-08-25 10:34:34 -07001015 unformat_input_t * input,
1016 vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001017{
Vengada Govindan07d2f842016-08-25 10:34:34 -07001018 int has_trace_option = 0;
Shwetha85b528e2016-06-15 16:34:16 +01001019 int has_pot_option = 0;
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +05301020 int has_seqno_option = 0;
1021 int has_analyse_option = 0;
Vengada Govindan07d2f842016-08-25 10:34:34 -07001022 clib_error_t *rv = 0;
1023
Ed Warnickecb9cada2015-12-08 15:45:58 -07001024 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1025 {
Vengada Govindan07d2f842016-08-25 10:34:34 -07001026 if (unformat (input, "trace"))
1027 has_trace_option = 1;
Shwetha85b528e2016-06-15 16:34:16 +01001028 else if (unformat (input, "pot"))
Vengada Govindan07d2f842016-08-25 10:34:34 -07001029 has_pot_option = 1;
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +05301030 else if (unformat (input, "seqno"))
1031 has_seqno_option = 1;
1032 else if (unformat (input, "analyse"))
1033 has_analyse_option = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001034 else
Vengada Govindan07d2f842016-08-25 10:34:34 -07001035 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001036 }
rangan4f810852016-03-18 03:31:17 +05301037
Vengada Govindan07d2f842016-08-25 10:34:34 -07001038
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +05301039 rv = ip6_ioam_enable (has_trace_option, has_pot_option,
1040 has_seqno_option, has_analyse_option);
Vengada Govindan07d2f842016-08-25 10:34:34 -07001041
1042 return rv;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001043}
1044
Billy McFall0683c9c2016-10-13 08:27:31 -04001045/*?
1046 * This command is used to enable In-band OAM (iOAM) features on IPv6.
1047 * '<em>trace</em>' is used to enable iOAM trace feature. '<em>pot</em>' is used to
1048 * enable the Proof Of Transit feature. '<em>ppc</em>' is used to indicate the
1049 * Per Packet Counter feature for Edge to Edge processing. '<em>ppc</em>' is
1050 * used to indicate if this node is an '<em>encap</em>' node (iOAM edge node
1051 * where packet enters iOAM domain), a '<em>decap</em>' node (iOAM edge node
1052 * where packet leaves iOAM domain) or '<em>none</em>' (iOAM node where packet
1053 * is in-transit through the iOAM domain). '<em>ppc</em>' can only be set if
1054 * '<em>trace</em>' or '<em>pot</em>' is enabled.
1055 *
1056 * Use '<em>clear ioam rewrite</em>' to disable all features enabled by this
1057 * command. Use '<em>show ioam summary</em>' to verify the configured settings.
1058 *
1059 * @cliexpar
1060 * Example of how to enable trace and pot with ppc set to encap:
1061 * @cliexcmd{set ioam rewrite trace pot ppc encap}
1062?*/
Vengada Govindan07d2f842016-08-25 10:34:34 -07001063/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -04001064VLIB_CLI_COMMAND (ip6_set_ioam_rewrite_cmd, static) = {
1065 .path = "set ioam rewrite",
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +05301066 .short_help = "set ioam [trace] [pot] [seqno] [analyse]",
Billy McFall0683c9c2016-10-13 08:27:31 -04001067 .function = ip6_set_ioam_rewrite_command_fn,
1068};
Vengada Govindan07d2f842016-08-25 10:34:34 -07001069/* *INDENT-ON* */
rangan4f810852016-03-18 03:31:17 +05301070
rangan4f810852016-03-18 03:31:17 +05301071static clib_error_t *
1072ip6_show_ioam_summary_cmd_fn (vlib_main_t * vm,
Vengada Govindan07d2f842016-08-25 10:34:34 -07001073 unformat_input_t * input,
1074 vlib_cli_command_t * cmd)
rangan4f810852016-03-18 03:31:17 +05301075{
Ole Troan944f5482016-05-24 11:56:58 +02001076 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
rangan4f810852016-03-18 03:31:17 +05301077 u8 *s = 0;
1078
1079
Vengada Govindan07d2f842016-08-25 10:34:34 -07001080 if (!is_zero_ip6_address (&hm->adj))
1081 {
1082 s = format (s, " REWRITE FLOW CONFIGS - \n");
1083 s = format (s, " Destination Address : %U\n",
1084 format_ip6_address, &hm->adj, sizeof (ip6_address_t));
1085 s =
1086 format (s, " Flow operation : %d (%s)\n",
1087 hm->ioam_flag,
1088 (hm->ioam_flag ==
1089 IOAM_HBYH_ADD) ? "Add" : ((hm->ioam_flag ==
1090 IOAM_HBYH_MOD) ? "Mod" : "Pop"));
1091 }
rangan4f810852016-03-18 03:31:17 +05301092 else
Vengada Govindan07d2f842016-08-25 10:34:34 -07001093 {
1094 s = format (s, " REWRITE FLOW CONFIGS - Not configured\n");
1095 }
rangan4f810852016-03-18 03:31:17 +05301096
Vengada Govindan07d2f842016-08-25 10:34:34 -07001097
1098 s = format (s, " TRACE OPTION - %d (%s)\n",
1099 hm->has_trace_option,
1100 (hm->has_trace_option ? "Enabled" : "Disabled"));
1101 if (hm->has_trace_option)
1102 s =
1103 format (s,
1104 "Try 'show ioam trace and show ioam-trace profile' for more information\n");
1105
1106
1107 s = format (s, " POT OPTION - %d (%s)\n",
1108 hm->has_pot_option,
1109 (hm->has_pot_option ? "Enabled" : "Disabled"));
Shwetha85b528e2016-06-15 16:34:16 +01001110 if (hm->has_pot_option)
Vengada Govindan07d2f842016-08-25 10:34:34 -07001111 s =
1112 format (s,
1113 "Try 'show ioam pot and show pot profile' for more information\n");
rangan4f810852016-03-18 03:31:17 +05301114
AkshayaNadahallied4a2fd2016-08-09 13:38:04 +05301115 s = format (s, " EDGE TO EDGE - SeqNo OPTION - %d (%s)\n",
1116 hm->has_seqno_option,
1117 hm->has_seqno_option ? "Enabled" : "Disabled");
1118 if (hm->has_seqno_option)
1119 s = format (s, "Try 'show ioam e2e' for more information\n");
1120
1121 s = format (s, " iOAM Analyse OPTION - %d (%s)\n",
1122 hm->has_analyse_option,
1123 hm->has_analyse_option ? "Enabled" : "Disabled");
rangan4f810852016-03-18 03:31:17 +05301124
Vengada Govindan07d2f842016-08-25 10:34:34 -07001125 vlib_cli_output (vm, "%v", s);
1126 vec_free (s);
rangan4f810852016-03-18 03:31:17 +05301127 return 0;
1128}
1129
Billy McFall0683c9c2016-10-13 08:27:31 -04001130/*?
1131 * This command displays the current configuration data for In-band
1132 * OAM (iOAM).
1133 *
1134 * @cliexpar
1135 * Example to show the iOAM configuration:
1136 * @cliexstart{show ioam summary}
1137 * REWRITE FLOW CONFIGS -
1138 * Destination Address : ff02::1
1139 * Flow operation : 2 (Pop)
1140 * TRACE OPTION - 1 (Enabled)
1141 * Try 'show ioam trace and show ioam-trace profile' for more information
1142 * POT OPTION - 1 (Enabled)
1143 * Try 'show ioam pot and show pot profile' for more information
1144 * EDGE TO EDGE - PPC OPTION - 1 (Encap)
1145 * @cliexend
1146?*/
Vengada Govindan07d2f842016-08-25 10:34:34 -07001147/* *INDENT-OFF* */
Billy McFall0683c9c2016-10-13 08:27:31 -04001148VLIB_CLI_COMMAND (ip6_show_ioam_run_cmd, static) = {
1149 .path = "show ioam summary",
1150 .short_help = "show ioam summary",
1151 .function = ip6_show_ioam_summary_cmd_fn,
1152};
Vengada Govindan07d2f842016-08-25 10:34:34 -07001153/* *INDENT-ON* */
1154
Vengada Govindan07d2f842016-08-25 10:34:34 -07001155void
1156vnet_register_ioam_end_of_path_callback (void *cb)
1157{
1158 ip6_hop_by_hop_ioam_main_t *hm = &ip6_hop_by_hop_ioam_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001159
1160 hm->ioam_end_of_path_cb = cb;
1161}
Vengada Govindan07d2f842016-08-25 10:34:34 -07001162
Filip Tehlar26ea14e2019-03-11 05:30:21 -07001163#endif /* CLIB_MARCH_VARIANT */
Vengada Govindan07d2f842016-08-25 10:34:34 -07001164/*
1165 * fd.io coding-style-patch-verification: ON
1166 *
1167 * Local Variables:
1168 * eval: (c-set-style "gnu")
1169 * End:
1170 */