blob: 4a7fdd6cba6ffa34734672f12ab403a30c313910 [file] [log] [blame]
Andrew Yourtchenko7e682202016-08-04 13:39:35 +00001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
Andrew Yourtchenko61459c92017-01-28 15:31:19 +000016#include <stddef.h>
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000017#include <vnet/ip/ping.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010018#include <vnet/fib/ip6_fib.h>
19#include <vnet/fib/ip4_fib.h>
20#include <vnet/fib/fib_entry.h>
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000021
Billy McFall0683c9c2016-10-13 08:27:31 -040022/**
23 * @file
24 * @brief IPv4 and IPv6 ICMP Ping.
25 *
26 * This file contains code to suppport IPv4 or IPv6 ICMP ECHO_REQUEST to
27 * network hosts.
28 *
29 */
30
31
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000032u8 *
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -080033format_icmp_echo_trace (u8 * s, va_list * va)
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000034{
35 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
36 CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -080037 icmp_echo_trace_t *t = va_arg (*va, icmp_echo_trace_t *);
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000038
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -080039 s = format (s, "ICMP echo id %d seq %d%s",
Dave Barachd7cb1b52016-12-09 09:52:16 -050040 clib_net_to_host_u16 (t->id),
41 clib_net_to_host_u16 (t->seq), t->bound ? "" : " (unknown)");
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000042
43 return s;
44}
45
46/*
47 * If we can find the ping run by an ICMP ID, then we send the signal
48 * to the CLI process referenced by that ping run, alongside with
49 * a freshly made copy of the packet.
50 * I opted for a packet copy to keep the main packet processing path
51 * the same as for all the other nodes.
52 *
53 */
54
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -080055static int
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000056signal_ip46_icmp_reply_event (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -050057 u8 event_type, vlib_buffer_t * b0)
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000058{
59 ping_main_t *pm = &ping_main;
60 u16 net_icmp_id = 0;
61 u32 bi0_copy = 0;
62
63 switch (event_type)
64 {
65 case PING_RESPONSE_IP4:
66 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050067 icmp4_echo_request_header_t *h0 = vlib_buffer_get_current (b0);
68 net_icmp_id = h0->icmp_echo.id;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000069 }
70 break;
71 case PING_RESPONSE_IP6:
72 {
Dave Barachd7cb1b52016-12-09 09:52:16 -050073 icmp6_echo_request_header_t *h0 = vlib_buffer_get_current (b0);
74 net_icmp_id = h0->icmp_echo.id;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000075 }
76 break;
77 default:
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -080078 return 0;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000079 }
80
81 uword *p = hash_get (pm->ping_run_by_icmp_id,
Dave Barachd7cb1b52016-12-09 09:52:16 -050082 clib_net_to_host_u16 (net_icmp_id));
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000083 if (!p)
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -080084 return 0;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000085
86 ping_run_t *pr = vec_elt_at_index (pm->ping_runs, p[0]);
87 if (vlib_buffer_alloc (vm, &bi0_copy, 1) == 1)
88 {
89 void *dst = vlib_buffer_get_current (vlib_get_buffer (vm, bi0_copy));
90 clib_memcpy (dst, vlib_buffer_get_current (b0), b0->current_length);
91 }
92 /* If buffer_alloc failed, bi0_copy == 0 - just signaling an event. */
93
94 vlib_process_signal_event (vm, pr->cli_process_id, event_type, bi0_copy);
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -080095 return 1;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000096}
97
98/*
99 * Process ICMPv6 echo replies
100 */
101static uword
102ip6_icmp_echo_reply_node_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500103 vlib_node_runtime_t * node, vlib_frame_t * frame)
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000104{
105 u32 n_left_from, *from;
106
Dave Barachd7cb1b52016-12-09 09:52:16 -0500107 from = vlib_frame_vector_args (frame); /* array of buffer indices */
108 n_left_from = frame->n_vectors; /* number of buffer indices */
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000109
110 while (n_left_from > 0)
111 {
112 u32 bi0;
113 vlib_buffer_t *b0;
114 u32 next0;
115
116 bi0 = from[0];
117 b0 = vlib_get_buffer (vm, bi0);
118
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -0800119 next0 = signal_ip46_icmp_reply_event (vm, PING_RESPONSE_IP6, b0) ?
Dave Barachd7cb1b52016-12-09 09:52:16 -0500120 ICMP6_ECHO_REPLY_NEXT_DROP : ICMP6_ECHO_REPLY_NEXT_PUNT;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000121
Dave Barachd7cb1b52016-12-09 09:52:16 -0500122 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
123 {
124 icmp6_echo_request_header_t *h0 = vlib_buffer_get_current (b0);
125 icmp_echo_trace_t *tr = vlib_add_trace (vm, node, b0, sizeof (*tr));
126 tr->id = h0->icmp_echo.id;
127 tr->seq = h0->icmp_echo.seq;
128 tr->bound = (next0 == ICMP6_ECHO_REPLY_NEXT_DROP);
129 }
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -0800130
131 /* push this pkt to the next graph node */
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000132 vlib_set_next_frame_buffer (vm, node, next0, bi0);
133
134 from += 1;
135 n_left_from -= 1;
136 }
137
138 return frame->n_vectors;
139}
140
141/* *INDENT-OFF* */
142VLIB_REGISTER_NODE (ip6_icmp_echo_reply_node, static) =
143{
144 .function = ip6_icmp_echo_reply_node_fn,
145 .name = "ip6-icmp-echo-reply",
146 .vector_size = sizeof (u32),
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -0800147 .format_trace = format_icmp_echo_trace,
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000148 .n_next_nodes = ICMP6_ECHO_REPLY_N_NEXT,
149 .next_nodes = {
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -0800150 [ICMP6_ECHO_REPLY_NEXT_DROP] = "error-drop",
151 [ICMP6_ECHO_REPLY_NEXT_PUNT] = "error-punt",
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000152 },
153};
154/* *INDENT-ON* */
155
156/*
157 * Process ICMPv4 echo replies
158 */
159static uword
160ip4_icmp_echo_reply_node_fn (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500161 vlib_node_runtime_t * node, vlib_frame_t * frame)
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000162{
163 u32 n_left_from, *from;
164
Dave Barachd7cb1b52016-12-09 09:52:16 -0500165 from = vlib_frame_vector_args (frame); /* array of buffer indices */
166 n_left_from = frame->n_vectors; /* number of buffer indices */
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000167
168 while (n_left_from > 0)
169 {
170 u32 bi0;
171 vlib_buffer_t *b0;
172 u32 next0;
173
174 bi0 = from[0];
175 b0 = vlib_get_buffer (vm, bi0);
176
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -0800177 next0 = signal_ip46_icmp_reply_event (vm, PING_RESPONSE_IP4, b0) ?
Dave Barachd7cb1b52016-12-09 09:52:16 -0500178 ICMP4_ECHO_REPLY_NEXT_DROP : ICMP4_ECHO_REPLY_NEXT_PUNT;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000179
Dave Barachd7cb1b52016-12-09 09:52:16 -0500180 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
181 {
182 icmp4_echo_request_header_t *h0 = vlib_buffer_get_current (b0);
183 icmp_echo_trace_t *tr = vlib_add_trace (vm, node, b0, sizeof (*tr));
184 tr->id = h0->icmp_echo.id;
185 tr->seq = h0->icmp_echo.seq;
186 tr->bound = (next0 == ICMP4_ECHO_REPLY_NEXT_DROP);
187 }
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -0800188
189 /* push this pkt to the next graph node */
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000190 vlib_set_next_frame_buffer (vm, node, next0, bi0);
191
192 from += 1;
193 n_left_from -= 1;
194 }
195
196 return frame->n_vectors;
197}
198
199/* *INDENT-OFF* */
200VLIB_REGISTER_NODE (ip4_icmp_echo_reply_node, static) =
201{
202 .function = ip4_icmp_echo_reply_node_fn,
203 .name = "ip4-icmp-echo-reply",
204 .vector_size = sizeof (u32),
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -0800205 .format_trace = format_icmp_echo_trace,
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000206 .n_next_nodes = ICMP4_ECHO_REPLY_N_NEXT,
207 .next_nodes = {
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -0800208 [ICMP4_ECHO_REPLY_NEXT_DROP] = "error-drop",
209 [ICMP4_ECHO_REPLY_NEXT_PUNT] = "error-punt",
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000210 },
211};
212/* *INDENT-ON* */
213
214char *ip6_lookup_next_nodes[] = IP6_LOOKUP_NEXT_NODES;
215char *ip4_lookup_next_nodes[] = IP4_LOOKUP_NEXT_NODES;
216
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000217/* Fill in the ICMP ECHO structure, return the safety-checked and possibly shrunk data_len */
218static u16
219init_icmp46_echo_request (icmp46_echo_request_t * icmp46_echo,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500220 u16 seq_host, u16 id_host, u16 data_len)
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000221{
222 int i;
223 icmp46_echo->seq = clib_host_to_net_u16 (seq_host);
224 icmp46_echo->id = clib_host_to_net_u16 (id_host);
225
Andrew Yourtchenko61459c92017-01-28 15:31:19 +0000226 if (data_len > PING_MAXIMUM_DATA_SIZE)
227 data_len = PING_MAXIMUM_DATA_SIZE;
228 for (i = 0; i < data_len; i++)
229 icmp46_echo->data[i] = i % 256;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000230 return data_len;
231}
232
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000233static send_ip46_ping_result_t
Neale Rannsf06aea52016-11-29 06:51:37 -0800234send_ip6_ping (vlib_main_t * vm, ip6_main_t * im,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500235 u32 table_id, ip6_address_t * pa6,
236 u32 sw_if_index, u16 seq_host, u16 id_host, u16 data_len,
Andrew Yourtchenko864b25d2017-03-22 10:51:14 +0100237 u32 burst, u8 verbose)
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000238{
239 icmp6_echo_request_header_t *h0;
240 u32 bi0 = 0;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000241 int bogus_length = 0;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000242 vlib_buffer_t *p0;
243 vlib_frame_t *f;
244 u32 *to_next;
Andrew Yourtchenko61459c92017-01-28 15:31:19 +0000245 vlib_buffer_free_list_t *fl;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000246
247 if (vlib_buffer_alloc (vm, &bi0, 1) != 1)
248 return SEND_PING_ALLOC_FAIL;
249
250 p0 = vlib_get_buffer (vm, bi0);
Andrew Yourtchenko61459c92017-01-28 15:31:19 +0000251 fl = vlib_buffer_get_free_list (vm, VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
252 vlib_buffer_init_for_free_list (p0, fl);
253 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (p0);
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000254
Neale Rannsf06aea52016-11-29 06:51:37 -0800255 /*
256 * if the user did not provide a source interface, use the any interface
257 * that the destination resolves via.
258 */
259 if (~0 == sw_if_index)
260 {
261 fib_node_index_t fib_entry_index;
262 u32 fib_index;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100263
Dave Barachd7cb1b52016-12-09 09:52:16 -0500264 fib_index = ip6_fib_index_from_table_id (table_id);
Neale Rannsf06aea52016-11-29 06:51:37 -0800265
266 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500267 {
268 vlib_buffer_free (vm, &bi0, 1);
269 return SEND_PING_NO_TABLE;
270 }
Neale Rannsf06aea52016-11-29 06:51:37 -0800271
Dave Barachd7cb1b52016-12-09 09:52:16 -0500272 fib_entry_index = ip6_fib_table_lookup (fib_index, pa6, 128);
273 sw_if_index = fib_entry_get_resolving_interface (fib_entry_index);
Neale Rannsf06aea52016-11-29 06:51:37 -0800274 /*
275 * Set the TX interface to force ip-lookup to use its table ID
276 */
277 vnet_buffer (p0)->sw_if_index[VLIB_TX] = fib_index;
278 }
279 else
280 {
281 /*
282 * force an IP lookup in the table bound to the user's chosen
283 * source interface.
284 */
285 vnet_buffer (p0)->sw_if_index[VLIB_TX] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500286 ip6_fib_table_get_index_for_sw_if_index (sw_if_index);
Neale Rannsf06aea52016-11-29 06:51:37 -0800287 }
288
289 if (~0 == sw_if_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100290 {
291 vlib_buffer_free (vm, &bi0, 1);
292 return SEND_PING_NO_INTERFACE;
293 }
294
Neale Rannsf06aea52016-11-29 06:51:37 -0800295 vnet_buffer (p0)->sw_if_index[VLIB_RX] = sw_if_index;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000296
297 h0 = vlib_buffer_get_current (p0);
298
299 /* Fill in ip6 header fields */
300 h0->ip6.ip_version_traffic_class_and_flow_label =
301 clib_host_to_net_u32 (0x6 << 28);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500302 h0->ip6.payload_length = 0; /* Set below */
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000303 h0->ip6.protocol = IP_PROTOCOL_ICMP6;
304 h0->ip6.hop_limit = 255;
305 h0->ip6.dst_address = *pa6;
306 h0->ip6.src_address = *pa6;
307
308 /* Fill in the correct source now */
Neale Rannsf06aea52016-11-29 06:51:37 -0800309 ip6_address_t *a = ip6_interface_first_address (im, sw_if_index);
Andrew Yourtchenko1b33fde2017-03-16 12:24:24 +0000310 if (!a)
311 {
312 vlib_buffer_free (vm, &bi0, 1);
313 return SEND_PING_NO_SRC_ADDRESS;
314 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000315 h0->ip6.src_address = a[0];
316
317 /* Fill in icmp fields */
318 h0->icmp.type = ICMP6_echo_request;
319 h0->icmp.code = 0;
320 h0->icmp.checksum = 0;
321
322 data_len =
323 init_icmp46_echo_request (&h0->icmp_echo, seq_host, id_host, data_len);
324 h0->icmp_echo.time_sent = vlib_time_now (vm);
325
326 /* Fix up the lengths */
327 h0->ip6.payload_length =
328 clib_host_to_net_u16 (data_len + sizeof (icmp46_header_t));
329
330 p0->current_length = clib_net_to_host_u16 (h0->ip6.payload_length) +
331 STRUCT_OFFSET_OF (icmp6_echo_request_header_t, icmp);
332
333 /* Calculate the ICMP checksum */
334 h0->icmp.checksum = 0;
335 h0->icmp.checksum =
336 ip6_tcp_udp_icmp_compute_checksum (vm, 0, &h0->ip6, &bogus_length);
337
338 /* Enqueue the packet right now */
339 f = vlib_get_frame_to_node (vm, ip6_lookup_node.index);
340 to_next = vlib_frame_vector_args (f);
341 to_next[0] = bi0;
Andrew Yourtchenko864b25d2017-03-22 10:51:14 +0100342
343 ASSERT (burst <= VLIB_FRAME_SIZE);
344 f->n_vectors = burst;
345 while (--burst)
346 {
347 vlib_buffer_t *c0 = vlib_buffer_copy (vm, p0);
348 to_next++;
349 to_next[0] = vlib_get_buffer_index (vm, c0);
350 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000351 vlib_put_frame_to_node (vm, ip6_lookup_node.index, f);
352
353 return SEND_PING_OK;
354}
355
356static send_ip46_ping_result_t
357send_ip4_ping (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500358 ip4_main_t * im,
359 u32 table_id,
360 ip4_address_t * pa4,
361 u32 sw_if_index,
Andrew Yourtchenko864b25d2017-03-22 10:51:14 +0100362 u16 seq_host, u16 id_host, u16 data_len, u32 burst, u8 verbose)
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000363{
364 icmp4_echo_request_header_t *h0;
365 u32 bi0 = 0;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000366 ip_lookup_main_t *lm = &im->lookup_main;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000367 vlib_buffer_t *p0;
368 vlib_frame_t *f;
369 u32 *to_next;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000370 u32 if_add_index0;
Andrew Yourtchenko61459c92017-01-28 15:31:19 +0000371 vlib_buffer_free_list_t *fl;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000372
373 if (vlib_buffer_alloc (vm, &bi0, 1) != 1)
374 return SEND_PING_ALLOC_FAIL;
375
376 p0 = vlib_get_buffer (vm, bi0);
Andrew Yourtchenko61459c92017-01-28 15:31:19 +0000377 fl = vlib_buffer_get_free_list (vm, VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
378 vlib_buffer_init_for_free_list (p0, fl);
379 VLIB_BUFFER_TRACE_TRAJECTORY_INIT (p0);
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000380
Neale Rannsf06aea52016-11-29 06:51:37 -0800381 /*
382 * if the user did not provide a source interface, use the any interface
383 * that the destination resolves via.
384 */
385 if (~0 == sw_if_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500386 {
Neale Rannsf06aea52016-11-29 06:51:37 -0800387 fib_node_index_t fib_entry_index;
388 u32 fib_index;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100389
Dave Barachd7cb1b52016-12-09 09:52:16 -0500390 fib_index = ip4_fib_index_from_table_id (table_id);
Neale Rannsf06aea52016-11-29 06:51:37 -0800391
392 if (~0 == fib_index)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500393 {
394 vlib_buffer_free (vm, &bi0, 1);
395 return SEND_PING_NO_TABLE;
396 }
Neale Rannsf06aea52016-11-29 06:51:37 -0800397
Dave Barachd7cb1b52016-12-09 09:52:16 -0500398 fib_entry_index =
399 ip4_fib_table_lookup (ip4_fib_get (fib_index), pa4, 32);
400 sw_if_index = fib_entry_get_resolving_interface (fib_entry_index);
Neale Rannsf06aea52016-11-29 06:51:37 -0800401 /*
402 * Set the TX interface to force ip-lookup to use the user's table ID
403 */
404 vnet_buffer (p0)->sw_if_index[VLIB_TX] = fib_index;
405 }
406 else
407 {
408 /*
409 * force an IP lookup in the table bound to the user's chosen
410 * source interface.
411 */
412 vnet_buffer (p0)->sw_if_index[VLIB_TX] =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500413 ip4_fib_table_get_index_for_sw_if_index (sw_if_index);
Neale Rannsf06aea52016-11-29 06:51:37 -0800414 }
415
416 if (~0 == sw_if_index)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100417 {
418 vlib_buffer_free (vm, &bi0, 1);
419 return SEND_PING_NO_INTERFACE;
420 }
421
Neale Rannsf06aea52016-11-29 06:51:37 -0800422 vnet_buffer (p0)->sw_if_index[VLIB_RX] = sw_if_index;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000423
424 h0 = vlib_buffer_get_current (p0);
425
426 /* Fill in ip4 header fields */
427 h0->ip4.checksum = 0;
428 h0->ip4.ip_version_and_header_length = 0x45;
429 h0->ip4.tos = 0;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500430 h0->ip4.length = 0; /* Set below */
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000431 h0->ip4.fragment_id = 0;
432 h0->ip4.flags_and_fragment_offset = 0;
433 h0->ip4.ttl = 0xff;
434 h0->ip4.protocol = IP_PROTOCOL_ICMP;
435 h0->ip4.dst_address = *pa4;
436 h0->ip4.src_address = *pa4;
437
438 /* Fill in the correct source now */
Neale Rannsf06aea52016-11-29 06:51:37 -0800439 if_add_index0 = lm->if_address_pool_index_by_sw_if_index[sw_if_index];
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000440 if (PREDICT_TRUE (if_add_index0 != ~0))
441 {
442 ip_interface_address_t *if_add =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500443 pool_elt_at_index (lm->if_address_pool, if_add_index0);
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000444 ip4_address_t *if_ip = ip_interface_address_get_address (lm, if_add);
445 h0->ip4.src_address = *if_ip;
446 if (verbose)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500447 {
448 vlib_cli_output (vm, "Source address: %U",
449 format_ip4_address, &h0->ip4.src_address);
450 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000451 }
452
453 /* Fill in icmp fields */
454 h0->icmp.type = ICMP4_echo_request;
455 h0->icmp.code = 0;
456 h0->icmp.checksum = 0;
457
458 data_len =
459 init_icmp46_echo_request (&h0->icmp_echo, seq_host, id_host, data_len);
460 h0->icmp_echo.time_sent = vlib_time_now (vm);
461
462 /* Fix up the lengths */
463 h0->ip4.length =
464 clib_host_to_net_u16 (data_len + sizeof (icmp46_header_t) +
Dave Barachd7cb1b52016-12-09 09:52:16 -0500465 sizeof (ip4_header_t));
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000466
467 p0->current_length = clib_net_to_host_u16 (h0->ip4.length);
468
469 /* Calculate the IP and ICMP checksums */
470 h0->ip4.checksum = ip4_header_checksum (&(h0->ip4));
471 h0->icmp.checksum =
472 ~ip_csum_fold (ip_incremental_checksum (0, &(h0->icmp),
Dave Barachd7cb1b52016-12-09 09:52:16 -0500473 p0->current_length -
474 sizeof (ip4_header_t)));
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000475
476 /* Enqueue the packet right now */
477 f = vlib_get_frame_to_node (vm, ip4_lookup_node.index);
478 to_next = vlib_frame_vector_args (f);
479 to_next[0] = bi0;
Andrew Yourtchenko864b25d2017-03-22 10:51:14 +0100480
481 ASSERT (burst <= VLIB_FRAME_SIZE);
482 f->n_vectors = burst;
483 while (--burst)
484 {
485 vlib_buffer_t *c0 = vlib_buffer_copy (vm, p0);
486 to_next++;
487 to_next[0] = vlib_get_buffer_index (vm, c0);
488 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000489 vlib_put_frame_to_node (vm, ip4_lookup_node.index, f);
490
491 return SEND_PING_OK;
492}
493
494
495static void
496print_ip6_icmp_reply (vlib_main_t * vm, u32 bi0)
497{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500498 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000499 icmp6_echo_request_header_t *h0 = vlib_buffer_get_current (b0);
500 f64 rtt = vlib_time_now (vm) - h0->icmp_echo.time_sent;
501
502 vlib_cli_output (vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500503 "%d bytes from %U: icmp_seq=%d ttl=%d time=%.4f ms",
504 clib_host_to_net_u16 (h0->ip6.payload_length),
505 format_ip6_address,
506 &h0->ip6.src_address,
507 clib_host_to_net_u16 (h0->icmp_echo.seq),
508 h0->ip6.hop_limit, rtt * 1000.0);
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000509}
510
511static void
512print_ip4_icmp_reply (vlib_main_t * vm, u32 bi0)
513{
Dave Barachd7cb1b52016-12-09 09:52:16 -0500514 vlib_buffer_t *b0 = vlib_get_buffer (vm, bi0);
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000515 icmp4_echo_request_header_t *h0 = vlib_buffer_get_current (b0);
516 f64 rtt = vlib_time_now (vm) - h0->icmp_echo.time_sent;
517 u32 rcvd_icmp_len =
518 clib_host_to_net_u16 (h0->ip4.length) -
519 (4 * (0xF & h0->ip4.ip_version_and_header_length));
520
521 vlib_cli_output (vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500522 "%d bytes from %U: icmp_seq=%d ttl=%d time=%.4f ms",
523 rcvd_icmp_len,
524 format_ip4_address,
525 &h0->ip4.src_address,
526 clib_host_to_net_u16 (h0->icmp_echo.seq),
527 h0->ip4.ttl, rtt * 1000.0);
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000528}
529
530
531/*
532 * Perform the ping run with the given parameters in the current CLI process.
533 * Depending on whether pa4 or pa6 is set, runs IPv4 or IPv6 ping.
534 * The amusing side effect is of course if both are set, then both pings are sent.
535 * This behavior can be used to ping a dualstack host over IPv4 and IPv6 at once.
536 */
537
538static void
Neale Rannsf06aea52016-11-29 06:51:37 -0800539run_ping_ip46_address (vlib_main_t * vm, u32 table_id, ip4_address_t * pa4,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500540 ip6_address_t * pa6, u32 sw_if_index,
541 f64 ping_interval, u32 ping_repeat, u32 data_len,
Andrew Yourtchenko864b25d2017-03-22 10:51:14 +0100542 u32 ping_burst, u32 verbose)
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000543{
544 int i;
545 ping_main_t *pm = &ping_main;
546 uword curr_proc = vlib_current_process (vm);
547 u32 n_replies = 0;
548 u32 n_requests = 0;
549 ping_run_t *pr = 0;
550 u32 ping_run_index = 0;
Andrew Yourtchenkoacfb47d2016-09-14 15:51:16 +0000551 u16 icmp_id;
552
553 static u32 rand_seed = 0;
554
Dave Barachd7cb1b52016-12-09 09:52:16 -0500555 if (PREDICT_FALSE (!rand_seed))
556 rand_seed = random_default_seed ();
Andrew Yourtchenkoacfb47d2016-09-14 15:51:16 +0000557
Dave Barachd7cb1b52016-12-09 09:52:16 -0500558 icmp_id = random_u32 (&rand_seed) & 0xffff;
Andrew Yourtchenkoacfb47d2016-09-14 15:51:16 +0000559
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000560 while (hash_get (pm->ping_run_by_icmp_id, icmp_id))
561 {
562 vlib_cli_output (vm, "ICMP ID collision at %d, incrementing", icmp_id);
563 icmp_id++;
564 }
565 pool_get (pm->ping_runs, pr);
566 ping_run_index = pr - pm->ping_runs;
567 pr->cli_process_id = curr_proc;
568 pr->icmp_id = icmp_id;
569 hash_set (pm->ping_run_by_icmp_id, icmp_id, ping_run_index);
570 for (i = 1; i <= ping_repeat; i++)
571 {
572 f64 sleep_interval;
573 f64 time_ping_sent = vlib_time_now (vm);
574 /* Reset pr: running ping in other process could have changed pm->ping_runs */
575 pr = vec_elt_at_index (pm->ping_runs, ping_run_index);
576 pr->curr_seq = i;
577 if (pa6 &&
Dave Barachd7cb1b52016-12-09 09:52:16 -0500578 (SEND_PING_OK ==
579 send_ip6_ping (vm, ping_main.ip6_main, table_id, pa6, sw_if_index,
Andrew Yourtchenko864b25d2017-03-22 10:51:14 +0100580 i, icmp_id, data_len, ping_burst, verbose)))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500581 {
Andrew Yourtchenko864b25d2017-03-22 10:51:14 +0100582 n_requests += ping_burst;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500583 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000584 if (pa4 &&
Dave Barachd7cb1b52016-12-09 09:52:16 -0500585 (SEND_PING_OK ==
586 send_ip4_ping (vm, ping_main.ip4_main, table_id, pa4, sw_if_index,
Andrew Yourtchenko864b25d2017-03-22 10:51:14 +0100587 i, icmp_id, data_len, ping_burst, verbose)))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500588 {
Andrew Yourtchenko864b25d2017-03-22 10:51:14 +0100589 n_requests += ping_burst;
Dave Barachd7cb1b52016-12-09 09:52:16 -0500590 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000591 while ((i <= ping_repeat)
Dave Barachd7cb1b52016-12-09 09:52:16 -0500592 &&
593 ((sleep_interval =
594 time_ping_sent + ping_interval - vlib_time_now (vm)) > 0.0))
595 {
596 uword event_type, *event_data = 0;
597 vlib_process_wait_for_event_or_clock (vm, sleep_interval);
598 event_type = vlib_process_get_events (vm, &event_data);
599 switch (event_type)
600 {
601 case ~0: /* no events => timeout */
602 break;
603 case PING_RESPONSE_IP6:
604 {
605 int i;
606 for (i = 0; i < vec_len (event_data); i++)
607 {
Andrew Yourtchenkof69ecfe2017-01-24 15:47:27 +0100608 u32 bi0 = event_data[i];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500609 print_ip6_icmp_reply (vm, bi0);
610 n_replies++;
611 if (0 != bi0)
612 {
613 vlib_buffer_free (vm, &bi0, 1);
614 }
615 }
616 }
617 break;
618 case PING_RESPONSE_IP4:
619 {
620 int i;
621 for (i = 0; i < vec_len (event_data); i++)
622 {
Andrew Yourtchenkof69ecfe2017-01-24 15:47:27 +0100623 u32 bi0 = event_data[i];
Dave Barachd7cb1b52016-12-09 09:52:16 -0500624 print_ip4_icmp_reply (vm, bi0);
625 n_replies++;
626 if (0 != bi0)
627 {
628 vlib_buffer_free (vm, &bi0, 1);
629 }
630 }
631 }
632 break;
633 default:
634 /* someone pressed a key, abort */
635 vlib_cli_output (vm, "Aborted due to a keypress.");
636 i = 1 + ping_repeat;
637 break;
638 }
639 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000640 }
641 vlib_cli_output (vm, "\n");
642 {
643 float loss =
644 (0 ==
645 n_requests) ? 0 : 100.0 * ((float) n_requests -
Dave Barachd7cb1b52016-12-09 09:52:16 -0500646 (float) n_replies) / (float) n_requests;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000647 vlib_cli_output (vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500648 "Statistics: %u sent, %u received, %f%% packet loss\n",
649 n_requests, n_replies, loss);
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000650 /* Reset pr: running ping in other process could have changed pm->ping_runs */
651 pr = vec_elt_at_index (pm->ping_runs, ping_run_index);
652 hash_unset (pm->ping_run_by_icmp_id, icmp_id);
653 pool_put (pm->ping_runs, pr);
654 }
655}
656
657
658
659
660
661static clib_error_t *
662ping_ip_address (vlib_main_t * vm,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500663 unformat_input_t * input, vlib_cli_command_t * cmd)
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000664{
665 ip4_address_t a4;
666 ip6_address_t a6;
667 clib_error_t *error = 0;
668 u32 ping_repeat = 5;
Andrew Yourtchenko864b25d2017-03-22 10:51:14 +0100669 u32 ping_burst = 1;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000670 u8 ping_ip4, ping_ip6;
671 vnet_main_t *vnm = vnet_get_main ();
672 u32 data_len = PING_DEFAULT_DATA_LEN;
673 u32 verbose = 0;
674 f64 ping_interval = PING_DEFAULT_INTERVAL;
Neale Rannsf06aea52016-11-29 06:51:37 -0800675 u32 sw_if_index, table_id;
676
677 table_id = 0;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000678 ping_ip4 = ping_ip6 = 0;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000679 sw_if_index = ~0;
Neale Rannsf06aea52016-11-29 06:51:37 -0800680
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000681 if (unformat (input, "%U", unformat_ip4_address, &a4))
682 {
683 ping_ip4 = 1;
684 }
685 else if (unformat (input, "%U", unformat_ip6_address, &a6))
686 {
687 ping_ip6 = 1;
688 }
689 else if (unformat (input, "ipv4"))
690 {
691 if (unformat (input, "%U", unformat_ip4_address, &a4))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500692 {
693 ping_ip4 = 1;
694 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000695 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500696 {
697 error =
698 clib_error_return (0,
699 "expecting IPv4 address but got `%U'",
700 format_unformat_error, input);
701 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000702 }
703 else if (unformat (input, "ipv6"))
704 {
705 if (unformat (input, "%U", unformat_ip6_address, &a6))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500706 {
707 ping_ip6 = 1;
708 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000709 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500710 {
711 error =
712 clib_error_return (0,
713 "expecting IPv6 address but got `%U'",
714 format_unformat_error, input);
715 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000716 }
717 else
718 {
719 error =
Dave Barachd7cb1b52016-12-09 09:52:16 -0500720 clib_error_return (0,
721 "expecting IP4/IP6 address `%U'. Usage: ping <addr> [source <intf>] [size <datasz>] [repeat <count>] [verbose]",
722 format_unformat_error, input);
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000723 goto done;
724 }
725
726 /* allow for the second AF in the same ping */
727 if (!ping_ip4 && (unformat (input, "ipv4")))
728 {
729 if (unformat (input, "%U", unformat_ip4_address, &a4))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500730 {
731 ping_ip4 = 1;
732 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000733 }
734 else if (!ping_ip6 && (unformat (input, "ipv6")))
735 {
736 if (unformat (input, "%U", unformat_ip6_address, &a6))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500737 {
738 ping_ip6 = 1;
739 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000740 }
741
742 /* parse the rest of the parameters in a cycle */
743 while (!unformat_eof (input, NULL))
744 {
745 if (unformat (input, "source"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500746 {
747 if (!unformat_user
748 (input, unformat_vnet_sw_interface, vnm, &sw_if_index))
749 {
750 error =
751 clib_error_return (0,
752 "unknown interface `%U'",
753 format_unformat_error, input);
754 goto done;
755 }
756 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000757 else if (unformat (input, "size"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500758 {
759 if (!unformat (input, "%u", &data_len))
760 {
761 error =
762 clib_error_return (0,
763 "expecting size but got `%U'",
764 format_unformat_error, input);
765 goto done;
766 }
Andrew Yourtchenko61459c92017-01-28 15:31:19 +0000767 if (data_len > PING_MAXIMUM_DATA_SIZE)
768 {
769 error =
770 clib_error_return (0,
771 "%d is bigger than maximum allowed payload size %d",
772 data_len, PING_MAXIMUM_DATA_SIZE);
773 goto done;
774 }
Dave Barachd7cb1b52016-12-09 09:52:16 -0500775 }
Neale Rannsf06aea52016-11-29 06:51:37 -0800776 else if (unformat (input, "table-id"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500777 {
778 if (!unformat (input, "du", &table_id))
779 {
780 error =
781 clib_error_return (0,
782 "expecting table-id but got `%U'",
783 format_unformat_error, input);
784 goto done;
785 }
786 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000787 else if (unformat (input, "interval"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500788 {
789 if (!unformat (input, "%f", &ping_interval))
790 {
791 error =
792 clib_error_return (0,
793 "expecting interval (floating point number) got `%U'",
794 format_unformat_error, input);
795 goto done;
796 }
797 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000798 else if (unformat (input, "repeat"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500799 {
800 if (!unformat (input, "%u", &ping_repeat))
801 {
802 error =
803 clib_error_return (0,
804 "expecting repeat count but got `%U'",
805 format_unformat_error, input);
806 goto done;
807 }
808 }
Andrew Yourtchenko864b25d2017-03-22 10:51:14 +0100809 else if (unformat (input, "burst"))
810 {
811 if (!unformat (input, "%u", &ping_burst))
812 {
813 error =
814 clib_error_return (0,
815 "expecting burst count but got `%U'",
816 format_unformat_error, input);
817 goto done;
818 }
819 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000820 else if (unformat (input, "verbose"))
Dave Barachd7cb1b52016-12-09 09:52:16 -0500821 {
822 verbose = 1;
823 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000824 else
Dave Barachd7cb1b52016-12-09 09:52:16 -0500825 {
826 error = clib_error_return (0, "unknown input `%U'",
827 format_unformat_error, input);
828 goto done;
829 }
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000830 }
831
Andrew Yourtchenko864b25d2017-03-22 10:51:14 +0100832 if (ping_burst < 1 || ping_burst > VLIB_FRAME_SIZE)
833 return clib_error_return (0, "burst size must be between 1 and %u",
834 VLIB_FRAME_SIZE);
835
Dave Barachd7cb1b52016-12-09 09:52:16 -0500836 run_ping_ip46_address (vm, table_id, ping_ip4 ? &a4 : NULL,
837 ping_ip6 ? &a6 : NULL, sw_if_index, ping_interval,
Andrew Yourtchenkoe3d52802017-03-24 17:46:42 +0100838 ping_repeat, data_len, ping_burst, verbose);
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000839done:
840 return error;
841}
842
Billy McFall0683c9c2016-10-13 08:27:31 -0400843/*?
844 * This command sends an ICMP ECHO_REQUEST to network hosts. The address
845 * can be an IPv4 or IPv6 address (or both at the same time).
846 *
847 * @cliexpar
848 * @parblock
849 * Example of how ping an IPv4 address:
850 * @cliexstart{ping 172.16.1.2 source GigabitEthernet2/0/0 repeat 2}
851 * 64 bytes from 172.16.1.2: icmp_seq=1 ttl=64 time=.1090 ms
852 * 64 bytes from 172.16.1.2: icmp_seq=2 ttl=64 time=.0914 ms
853 *
854 * Statistics: 2 sent, 2 received, 0% packet loss
855 * @cliexend
856 *
857 * Example of how ping both an IPv4 address and IPv6 address at the same time:
858 * @cliexstart{ping 172.16.1.2 ipv6 fe80::24a5:f6ff:fe9c:3a36 source GigabitEthernet2/0/0 repeat 2 verbose}
859 * Adjacency index: 10, sw_if_index: 1
860 * Adj: ip6-discover-neighbor
861 * Adj Interface: 0
862 * Forced set interface: 1
863 * Adjacency index: 0, sw_if_index: 4294967295
864 * Adj: ip4-miss
865 * Adj Interface: 0
866 * Forced set interface: 1
867 * Source address: 172.16.1.1
868 * 64 bytes from 172.16.1.2: icmp_seq=1 ttl=64 time=.1899 ms
869 * Adjacency index: 10, sw_if_index: 1
870 * Adj: ip6-discover-neighbor
871 * Adj Interface: 0
872 * Forced set interface: 1
873 * Adjacency index: 0, sw_if_index: 4294967295
874 * Adj: ip4-miss
875 * Adj Interface: 0
876 * Forced set interface: 1
877 * Source address: 172.16.1.1
878 * 64 bytes from 172.16.1.2: icmp_seq=2 ttl=64 time=.0910 ms
879 *
880 * Statistics: 4 sent, 2 received, 50% packet loss
881 * @cliexend
882 * @endparblock
883?*/
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000884/* *INDENT-OFF* */
885VLIB_CLI_COMMAND (ping_command, static) =
886{
887 .path = "ping",
888 .function = ping_ip_address,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500889 .short_help = "ping {<ip-addr> | ipv4 <ip4-addr> | ipv6 <ip6-addr>}"
890 " [ipv4 <ip4-addr> | ipv6 <ip6-addr>] [source <interface>]"
891 " [size <pktsize>] [interval <sec>] [repeat <cnt>] [table-id <id>]"
892 " [verbose]",
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000893};
894/* *INDENT-ON* */
895
896static clib_error_t *
897ping_cli_init (vlib_main_t * vm)
898{
899 ping_main_t *pm = &ping_main;
900 pm->ip6_main = &ip6_main;
901 pm->ip4_main = &ip4_main;
902 icmp6_register_type (vm, ICMP6_echo_reply, ip6_icmp_echo_reply_node.index);
903 ip4_icmp_register_type (vm, ICMP4_echo_reply,
Dave Barachd7cb1b52016-12-09 09:52:16 -0500904 ip4_icmp_echo_reply_node.index);
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000905 return 0;
906}
907
908VLIB_INIT_FUNCTION (ping_cli_init);
Dave Barachd7cb1b52016-12-09 09:52:16 -0500909
910/*
911 * fd.io coding-style-patch-verification: ON
912 *
913 * Local Variables:
914 * eval: (c-set-style "gnu")
915 * End:
916 */