blob: a09e34df3ba7eca7552fa789e82bda734b55ee32 [file] [log] [blame]
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001/*
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
16#include <vnet/fib/fib_walk.h>
17#include <vnet/fib/fib_node_list.h>
18
Neale Ranns710071b2018-09-24 12:36:26 +000019vlib_log_class_t fib_walk_logger;
20
Neale Ranns0bfe5d82016-08-25 15:29:12 +010021/**
22 * The flags on a walk
23 */
24typedef enum fib_walk_flags_t_
25{
26 /**
27 * A synchronous walk.
28 * This walk will run to completion, i.e. visit ALL the children.
29 * It is a depth first traversal of the graph.
30 */
31 FIB_WALK_FLAG_SYNC = (1 << 0),
32 /**
33 * An asynchronous walk.
34 * This walk will be scheduled to run in the background. It will thus visits
35 * the children at a later point in time.
36 * It is a depth first traversal of the graph.
37 */
38 FIB_WALK_FLAG_ASYNC = (1 << 1),
39 /**
40 * An indication that the walk is currently executing.
41 */
42 FIB_WALK_FLAG_EXECUTING = (1 << 2),
43} fib_walk_flags_t;
44
45/**
46 * A representation of a graph walk from a parent object to its children
47 */
48typedef struct fib_walk_t_
49{
50 /**
51 * FIB node linkage. This object is not in the FIB object graph,
52 * but it is present in other node's dependency lists, so it needs to
53 * be pointerable to.
54 */
55 fib_node_t fw_node;
56
57 /**
58 * the walk's flags
59 */
60 fib_walk_flags_t fw_flags;
61
62 /**
63 * Sibling index in the dependency list
64 */
65 u32 fw_dep_sibling;
66
67 /**
68 * Sibling index in the list of all walks
69 */
70 u32 fw_prio_sibling;
71
72 /**
73 * Pointer to the node whose dependants this walk is walking
74 */
75 fib_node_ptr_t fw_parent;
76
77 /**
78 * Number of nodes visited by this walk. saved for debugging purposes.
79 */
80 u32 fw_n_visits;
81
82 /**
Neale Ranns33a7dd52016-10-07 15:14:33 +010083 * Time the walk started
84 */
85 f64 fw_start_time;
86
87 /**
Neale Ranns0bfe5d82016-08-25 15:29:12 +010088 * The reasons this walk is occuring.
89 * This is a vector ordered in time. The reasons and the front were started
Jim Thompsonf324dec2019-04-08 03:22:21 -050090 * first, and so should be acted first when a node is visited.
Neale Ranns0bfe5d82016-08-25 15:29:12 +010091 */
92 fib_node_back_walk_ctx_t *fw_ctx;
93} fib_walk_t;
94
95/**
96 * @brief The pool of all walk objects
97 */
98static fib_walk_t *fib_walk_pool;
99
100/**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100101 * Statistics maintained per-walk queue
102 */
103typedef enum fib_walk_queue_stats_t_
104{
105 FIB_WALK_SCHEDULED,
106 FIB_WALK_COMPLETED,
107} fib_walk_queue_stats_t;
Neale Ranns450cd302016-11-09 17:49:42 +0000108#define FIB_WALK_QUEUE_STATS_NUM ((fib_walk_queue_stats_t)(FIB_WALK_COMPLETED+1))
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100109
110#define FIB_WALK_QUEUE_STATS { \
111 [FIB_WALK_SCHEDULED] = "scheduled", \
112 [FIB_WALK_COMPLETED] = "completed", \
113}
114
115#define FOR_EACH_FIB_WALK_QUEUE_STATS(_wqs) \
116 for ((_wqs) = FIB_WALK_SCHEDULED; \
Neale Ranns33a7dd52016-10-07 15:14:33 +0100117 (_wqs) < FIB_WALK_QUEUE_STATS_NUM; \
118 (_wqs)++)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100119
120/**
121 * The names of the walk stats
122 */
123static const char * const fib_walk_queue_stats_names[] = FIB_WALK_QUEUE_STATS;
Neale Rannsad95b5d2016-11-10 20:35:14 +0000124/**
125 * The names of the walk reasons
126 */
127static const char * const fib_node_bw_reason_names[] = FIB_NODE_BW_REASONS;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100128
129/**
Lijian.Zhang33af8c12019-09-16 16:22:36 +0800130 * A representation of one queue of walk
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100131 */
132typedef struct fib_walk_queue_t_
133{
134 /**
135 * Qeuee stats
136 */
137 u64 fwq_stats[FIB_WALK_QUEUE_STATS_NUM];
138
139 /**
140 * The node list which acts as the queue
141 */
142 fib_node_list_t fwq_queue;
143} fib_walk_queue_t;
144
145/**
146 * A set of priority queues for outstanding walks
147 */
148typedef struct fib_walk_queues_t_
149{
150 fib_walk_queue_t fwqs_queues[FIB_WALK_PRIORITY_NUM];
151} fib_walk_queues_t;
152
153/**
154 * The global queues of outstanding walks
155 */
156static fib_walk_queues_t fib_walk_queues;
157
158/**
159 * The names of the walk priorities
160 */
161static const char * const fib_walk_priority_names[] = FIB_WALK_PRIORITIES;
162
Neale Ranns33a7dd52016-10-07 15:14:33 +0100163/**
Jim Thompsonf324dec2019-04-08 03:22:21 -0500164 * @brief Histogram stats on the lenths of each walk in elemenets visited.
Neale Ranns33a7dd52016-10-07 15:14:33 +0100165 * Store upto 1<<23 elements in increments of 1<<10
166 */
167#define HISTOGRAM_VISITS_PER_WALK_MAX (1<<23)
168#define HISTOGRAM_VISITS_PER_WALK_INCR (1<<10)
169#define HISTOGRAM_VISITS_PER_WALK_N_BUCKETS \
170 (HISTOGRAM_VISITS_PER_WALK_MAX/HISTOGRAM_VISITS_PER_WALK_INCR)
171static u64 fib_walk_hist_vists_per_walk[HISTOGRAM_VISITS_PER_WALK_N_BUCKETS];
172
173/**
174 * @brief History of state for the last 128 walks
175 */
176#define HISTORY_N_WALKS 128
Neale Ranns19c68d22016-12-07 15:38:14 +0000177#define MAX_HISTORY_REASONS 16
Neale Ranns33a7dd52016-10-07 15:14:33 +0100178static u32 history_last_walk_pos;
179typedef struct fib_walk_history_t_ {
180 u32 fwh_n_visits;
181 f64 fwh_duration;
Neale Ranns8b37b872016-11-21 12:25:22 +0000182 f64 fwh_completed;
Neale Ranns33a7dd52016-10-07 15:14:33 +0100183 fib_node_ptr_t fwh_parent;
Neale Rannsad95b5d2016-11-10 20:35:14 +0000184 fib_walk_flags_t fwh_flags;
Neale Ranns19c68d22016-12-07 15:38:14 +0000185 fib_node_bw_reason_flag_t fwh_reason[MAX_HISTORY_REASONS];
Neale Ranns33a7dd52016-10-07 15:14:33 +0100186} fib_walk_history_t;
187static fib_walk_history_t fib_walk_history[HISTORY_N_WALKS];
188
Neale Ranns710071b2018-09-24 12:36:26 +0000189static u8* format_fib_walk (u8* s, va_list *ap);
190
191#define FIB_WALK_DBG(_walk, _fmt, _args...) \
192{ \
193 vlib_log_debug(fib_walk_logger, \
194 "[%U]:" _fmt, \
195 format_fib_walk, \
196 fib_walk_get_index(_walk), \
197 ##_args); \
198}
199
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100200u8*
Christophe Fontained3c008d2017-10-02 18:10:54 +0200201format_fib_walk_priority (u8 *s, va_list *ap)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100202{
Christophe Fontained3c008d2017-10-02 18:10:54 +0200203 fib_walk_priority_t prio = va_arg(*ap, fib_walk_priority_t);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100204
205 ASSERT(prio < FIB_WALK_PRIORITY_NUM);
206
207 return (format(s, "%s", fib_walk_priority_names[prio]));
208}
209static u8*
Christophe Fontained3c008d2017-10-02 18:10:54 +0200210format_fib_walk_queue_stats (u8 *s, va_list *ap)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100211{
Christophe Fontained3c008d2017-10-02 18:10:54 +0200212 fib_walk_queue_stats_t wqs = va_arg(*ap, fib_walk_queue_stats_t);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100213
214 ASSERT(wqs < FIB_WALK_QUEUE_STATS_NUM);
215
216 return (format(s, "%s", fib_walk_queue_stats_names[wqs]));
217}
218
219static index_t
220fib_walk_get_index (fib_walk_t *fwalk)
221{
222 return (fwalk - fib_walk_pool);
223}
224
225static fib_walk_t *
226fib_walk_get (index_t fwi)
227{
228 return (pool_elt_at_index(fib_walk_pool, fwi));
229}
230
231/*
232 * not static so it can be used in the unit tests
233 */
234u32
235fib_walk_queue_get_size (fib_walk_priority_t prio)
236{
237 return (fib_node_list_get_size(fib_walk_queues.fwqs_queues[prio].fwq_queue));
238}
239
240static fib_node_index_t
241fib_walk_queue_get_front (fib_walk_priority_t prio)
242{
243 fib_node_ptr_t wp;
244
245 fib_node_list_get_front(fib_walk_queues.fwqs_queues[prio].fwq_queue, &wp);
246
247 return (wp.fnp_index);
248}
249
250static void
Neale Rannsf12a83f2017-04-18 09:09:40 -0700251fib_walk_destroy (index_t fwi)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100252{
Neale Rannsf12a83f2017-04-18 09:09:40 -0700253 fib_walk_t *fwalk;
Neale Ranns19c68d22016-12-07 15:38:14 +0000254 u32 bucket, ii;
Neale Ranns33a7dd52016-10-07 15:14:33 +0100255
Neale Rannsf12a83f2017-04-18 09:09:40 -0700256 fwalk = fib_walk_get(fwi);
257
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100258 if (FIB_NODE_INDEX_INVALID != fwalk->fw_prio_sibling)
259 {
Neale Ranns33a7dd52016-10-07 15:14:33 +0100260 fib_node_list_elt_remove(fwalk->fw_prio_sibling);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100261 }
262 fib_node_child_remove(fwalk->fw_parent.fnp_type,
Neale Ranns33a7dd52016-10-07 15:14:33 +0100263 fwalk->fw_parent.fnp_index,
264 fwalk->fw_dep_sibling);
265
266 /*
Neale Rannsf12a83f2017-04-18 09:09:40 -0700267 * refetch the walk object. More walks could have been spawned as a result
268 * of releasing the lock on the parent.
269 */
270 fwalk = fib_walk_get(fwi);
271
272 /*
Neale Ranns33a7dd52016-10-07 15:14:33 +0100273 * add the stats to the continuous histogram collection.
274 */
275 bucket = (fwalk->fw_n_visits / HISTOGRAM_VISITS_PER_WALK_INCR);
Neale Ranns924d03a2016-10-19 08:25:46 +0100276 bucket = (bucket >= HISTOGRAM_VISITS_PER_WALK_N_BUCKETS ?
Neale Ranns5899fde2016-10-12 13:51:05 +0100277 HISTOGRAM_VISITS_PER_WALK_N_BUCKETS - 1 :
Neale Ranns33a7dd52016-10-07 15:14:33 +0100278 bucket);
279 fib_walk_hist_vists_per_walk[bucket]++;
280
281 /*
282 * save stats to the recent history
283 */
284
285 fib_walk_history[history_last_walk_pos].fwh_n_visits =
286 fwalk->fw_n_visits;
Neale Ranns8b37b872016-11-21 12:25:22 +0000287 fib_walk_history[history_last_walk_pos].fwh_completed =
288 vlib_time_now(vlib_get_main());
Neale Ranns33a7dd52016-10-07 15:14:33 +0100289 fib_walk_history[history_last_walk_pos].fwh_duration =
Neale Ranns8b37b872016-11-21 12:25:22 +0000290 fib_walk_history[history_last_walk_pos].fwh_completed -
291 fwalk->fw_start_time;
Neale Ranns33a7dd52016-10-07 15:14:33 +0100292 fib_walk_history[history_last_walk_pos].fwh_parent =
293 fwalk->fw_parent;
Neale Rannsad95b5d2016-11-10 20:35:14 +0000294 fib_walk_history[history_last_walk_pos].fwh_flags =
295 fwalk->fw_flags;
296
Neale Ranns19c68d22016-12-07 15:38:14 +0000297 vec_foreach_index(ii, fwalk->fw_ctx)
Neale Rannsad95b5d2016-11-10 20:35:14 +0000298 {
Neale Ranns19c68d22016-12-07 15:38:14 +0000299 if (ii < MAX_HISTORY_REASONS)
300 {
301 fib_walk_history[history_last_walk_pos].fwh_reason[ii] =
302 fwalk->fw_ctx[ii].fnbw_reason;
303 }
Neale Rannsad95b5d2016-11-10 20:35:14 +0000304 }
Neale Ranns33a7dd52016-10-07 15:14:33 +0100305
306 history_last_walk_pos = (history_last_walk_pos + 1) % HISTORY_N_WALKS;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100307
308 fib_node_deinit(&fwalk->fw_node);
Neale Ranns19c68d22016-12-07 15:38:14 +0000309 vec_free(fwalk->fw_ctx);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100310 pool_put(fib_walk_pool, fwalk);
311}
312
313/**
314 * return code when advancing a walk
315 */
316typedef enum fib_walk_advance_rc_t_
317{
318 /**
319 * The walk is complete
320 */
321 FIB_WALK_ADVANCE_DONE,
322 /**
323 * the walk has more work
324 */
325 FIB_WALK_ADVANCE_MORE,
326 /**
327 * The walk merged with the one in front
328 */
329 FIB_WALK_ADVANCE_MERGE,
330} fib_walk_advance_rc_t;
331
332/**
333 * @brief Advance the walk one element in its work list
334 */
335static fib_walk_advance_rc_t
336fib_walk_advance (fib_node_index_t fwi)
337{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100338 fib_node_back_walk_rc_t wrc;
339 fib_node_ptr_t sibling;
340 fib_walk_t *fwalk;
Neale Ranns8c4611b2017-05-23 03:43:47 -0700341 uint n_ctxs, ii;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100342 int more_elts;
343
344 /*
345 * this walk function is re-entrant - walks acan spawn walks.
Neale Ranns33a7dd52016-10-07 15:14:33 +0100346 * fib_walk_t objects come from a pool, so they can realloc. we need
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100347 * to retch from said pool at the appropriate times.
348 */
349 fwalk = fib_walk_get(fwi);
350
351 more_elts = fib_node_list_elt_get_next(fwalk->fw_dep_sibling, &sibling);
352
353 if (more_elts)
354 {
Neale Ranns19c68d22016-12-07 15:38:14 +0000355
Neale Ranns8c4611b2017-05-23 03:43:47 -0700356 /*
357 * loop through the backwalk contexts. This can grow in length
358 * as walks on the same object meet each other. Order is preserved so the
359 * most recently started walk as at the back of the vector.
360 */
361 ii = 0;
362 n_ctxs = vec_len(fwalk->fw_ctx);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100363
Neale Ranns8c4611b2017-05-23 03:43:47 -0700364 while (ii < n_ctxs)
365 {
Neale Ranns58085f22019-02-14 14:58:40 +0000366 fib_node_back_walk_ctx_t ctx = fwalk->fw_ctx[ii];
367
368 wrc = fib_node_back_walk_one(&sibling, &ctx);
Neale Ranns8c4611b2017-05-23 03:43:47 -0700369
370 ii++;
Neale Ranns33a7dd52016-10-07 15:14:33 +0100371 fwalk = fib_walk_get(fwi);
372 fwalk->fw_n_visits++;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100373
Neale Ranns33a7dd52016-10-07 15:14:33 +0100374 if (FIB_NODE_BACK_WALK_MERGE == wrc)
375 {
376 /*
377 * this walk has merged with the one further along the node's
378 * dependecy list.
379 */
380 return (FIB_WALK_ADVANCE_MERGE);
381 }
Neale Ranns8c4611b2017-05-23 03:43:47 -0700382
383 /*
384 * re-evaluate the number of backwalk contexts we need to process.
385 */
386 n_ctxs = vec_len(fwalk->fw_ctx);
Neale Ranns33a7dd52016-10-07 15:14:33 +0100387 }
388 /*
389 * move foward to the next node to visit
390 */
391 more_elts = fib_node_list_advance(fwalk->fw_dep_sibling);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100392 }
393
394 if (more_elts)
395 {
Neale Ranns33a7dd52016-10-07 15:14:33 +0100396 return (FIB_WALK_ADVANCE_MORE);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100397 }
398
399 return (FIB_WALK_ADVANCE_DONE);
400}
401
402/**
Neale Ranns33a7dd52016-10-07 15:14:33 +0100403 * @breif Enurmerate the times of sleep between walks
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100404 */
Neale Ranns33a7dd52016-10-07 15:14:33 +0100405typedef enum fib_walk_sleep_type_t_
406{
407 FIB_WALK_SHORT_SLEEP,
408 FIB_WALK_LONG_SLEEP,
409} fib_walk_sleep_type_t;
410
411#define FIB_WALK_N_SLEEP (FIB_WALK_LONG_SLEEP+1)
412
413/**
414 * @brief Durations for the sleep types
415 */
416static f64 fib_walk_sleep_duration[] = {
Neale Rannsaba8be62017-06-10 01:43:44 -0700417 /**
418 * Long sleep when there is no more work, i.e. the queues are empty.
419 * This is a sleep (as opposed to a wait for event) just to be sure we
420 * are not missing events by sleeping forever.
421 */
422 [FIB_WALK_LONG_SLEEP] = 2,
423
424 /**
425 * Short sleep. There is work left in the queues. We are yielding the CPU
426 * momentarily.
427 */
Neale Ranns33a7dd52016-10-07 15:14:33 +0100428 [FIB_WALK_SHORT_SLEEP] = 1e-8,
429};
430
431/**
432 * @brief The time quota for a walk. When more than this amount of time is
433 * spent, the walk process will yield.
434 */
435static f64 quota = 1e-4;
436
437/**
438 * Histogram on the amount of work done (in msecs) in each walk
439 */
440#define N_TIME_BUCKETS 128
441#define TIME_INCREMENTS (N_TIME_BUCKETS/2)
442static u64 fib_walk_work_time_taken[N_TIME_BUCKETS];
443
444/**
445 * Histogram on the number of nodes visted in each quota
446 */
447#define N_ELTS_BUCKETS 128
Jim Thompsonf324dec2019-04-08 03:22:21 -0500448static u32 fib_walk_work_nodes_visited_incr = 2;
Neale Ranns33a7dd52016-10-07 15:14:33 +0100449static u64 fib_walk_work_nodes_visited[N_ELTS_BUCKETS];
450
451/**
452 * Histogram of the sleep lengths
453 */
454static u64 fib_walk_sleep_lengths[2];
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100455
456/**
457 * @brief Service the queues
458 * This is not declared static so that it can be unit tested - i know i know...
459 */
460f64
461fib_walk_process_queues (vlib_main_t * vm,
Neale Ranns33a7dd52016-10-07 15:14:33 +0100462 const f64 quota)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100463{
Neale Ranns33a7dd52016-10-07 15:14:33 +0100464 f64 start_time, consumed_time;
465 fib_walk_sleep_type_t sleep;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100466 fib_walk_priority_t prio;
467 fib_walk_advance_rc_t rc;
468 fib_node_index_t fwi;
469 fib_walk_t *fwalk;
Neale Ranns33a7dd52016-10-07 15:14:33 +0100470 u32 n_elts;
471 i32 bucket;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100472
Neale Ranns33a7dd52016-10-07 15:14:33 +0100473 consumed_time = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100474 start_time = vlib_time_now(vm);
Neale Ranns33a7dd52016-10-07 15:14:33 +0100475 n_elts = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100476
477 FOR_EACH_FIB_WALK_PRIORITY(prio)
478 {
Neale Ranns33a7dd52016-10-07 15:14:33 +0100479 while (0 != fib_walk_queue_get_size(prio))
480 {
481 fwi = fib_walk_queue_get_front(prio);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100482
Neale Ranns33a7dd52016-10-07 15:14:33 +0100483 /*
484 * set this walk as executing
485 */
486 fwalk = fib_walk_get(fwi);
487 fwalk->fw_flags |= FIB_WALK_FLAG_EXECUTING;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100488
Neale Ranns33a7dd52016-10-07 15:14:33 +0100489 do
490 {
491 rc = fib_walk_advance(fwi);
492 n_elts++;
493 consumed_time = (vlib_time_now(vm) - start_time);
494 } while ((consumed_time < quota) &&
495 (FIB_WALK_ADVANCE_MORE == rc));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100496
Neale Ranns33a7dd52016-10-07 15:14:33 +0100497 /*
498 * if this walk has no more work then pop it from the queue
499 * and move on to the next.
500 */
501 if (FIB_WALK_ADVANCE_MORE != rc)
502 {
Neale Rannsf12a83f2017-04-18 09:09:40 -0700503 fib_walk_destroy(fwi);
Neale Ranns33a7dd52016-10-07 15:14:33 +0100504 fib_walk_queues.fwqs_queues[prio].fwq_stats[FIB_WALK_COMPLETED]++;
505 }
506 else
507 {
508 /*
509 * passed our work quota. sleep time.
510 */
511 fwalk = fib_walk_get(fwi);
512 fwalk->fw_flags &= ~FIB_WALK_FLAG_EXECUTING;
513 sleep = FIB_WALK_SHORT_SLEEP;
514 goto that_will_do_for_now;
515 }
516 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100517 }
518 /*
519 * got to the end of all the work
520 */
Neale Ranns33a7dd52016-10-07 15:14:33 +0100521 sleep = FIB_WALK_LONG_SLEEP;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100522
523that_will_do_for_now:
Neale Ranns33a7dd52016-10-07 15:14:33 +0100524
525 /*
526 * collect the stats:
Jim Thompsonf324dec2019-04-08 03:22:21 -0500527 * - for the number of nodes visited we store 128 increments
Neale Ranns33a7dd52016-10-07 15:14:33 +0100528 * - for the time consumed we store quota/TIME_INCREMENTS increments.
529 */
Jim Thompsonf324dec2019-04-08 03:22:21 -0500530 bucket = ((n_elts/fib_walk_work_nodes_visited_incr) > N_ELTS_BUCKETS ?
Neale Ranns33a7dd52016-10-07 15:14:33 +0100531 N_ELTS_BUCKETS-1 :
Jim Thompsonf324dec2019-04-08 03:22:21 -0500532 n_elts/fib_walk_work_nodes_visited_incr);
Neale Ranns33a7dd52016-10-07 15:14:33 +0100533 ++fib_walk_work_nodes_visited[bucket];
534
535 bucket = (consumed_time - quota) / (quota / TIME_INCREMENTS);
536 bucket += N_TIME_BUCKETS/2;
537 bucket = (bucket < 0 ? 0 : bucket);
538 bucket = (bucket > N_TIME_BUCKETS-1 ? N_TIME_BUCKETS-1 : bucket);
539 ++fib_walk_work_time_taken[bucket];
540
541 ++fib_walk_sleep_lengths[sleep];
542
543 return (fib_walk_sleep_duration[sleep]);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100544}
545
546/**
Neale Rannsf12a83f2017-04-18 09:09:40 -0700547 * Events sent to the FIB walk process
548 */
549typedef enum fib_walk_process_event_t_
550{
551 FIB_WALK_PROCESS_EVENT_DATA,
552 FIB_WALK_PROCESS_EVENT_ENABLE,
553 FIB_WALK_PROCESS_EVENT_DISABLE,
554} fib_walk_process_event;
555
556/**
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100557 * @brief The 'fib-walk' process's main loop.
558 */
559static uword
560fib_walk_process (vlib_main_t * vm,
Neale Ranns33a7dd52016-10-07 15:14:33 +0100561 vlib_node_runtime_t * node,
562 vlib_frame_t * f)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100563{
Neale Rannsf12a83f2017-04-18 09:09:40 -0700564 uword event_type, *event_data = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100565 f64 sleep_time;
Neale Rannsf12a83f2017-04-18 09:09:40 -0700566 int enabled;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100567
Neale Rannsf12a83f2017-04-18 09:09:40 -0700568 enabled = 1;
Neale Ranns33a7dd52016-10-07 15:14:33 +0100569 sleep_time = fib_walk_sleep_duration[FIB_WALK_SHORT_SLEEP];
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100570
571 while (1)
572 {
Neale Rannsf12a83f2017-04-18 09:09:40 -0700573 /*
574 * the feature to disable/enable this walk process is only
575 * for testing purposes
576 */
577 if (enabled)
578 {
579 vlib_process_wait_for_event_or_clock(vm, sleep_time);
580 }
581 else
582 {
583 vlib_process_wait_for_event(vm);
584 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100585
Neale Rannsf12a83f2017-04-18 09:09:40 -0700586 event_type = vlib_process_get_events(vm, &event_data);
587 vec_reset_length(event_data);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100588
Neale Rannsf12a83f2017-04-18 09:09:40 -0700589 switch (event_type)
590 {
591 case FIB_WALK_PROCESS_EVENT_ENABLE:
592 enabled = 1;
593 break;
594 case FIB_WALK_PROCESS_EVENT_DISABLE:
595 enabled = 0;
596 break;
597 default:
598 break;
599 }
600
601 if (enabled)
602 {
603 sleep_time = fib_walk_process_queues(vm, quota);
604 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100605 }
606
607 /*
608 * Unreached
609 */
610 ASSERT(!"WTF");
611 return 0;
612}
613
614/* *INDENT-OFF* */
615VLIB_REGISTER_NODE (fib_walk_process_node,static) = {
616 .function = fib_walk_process,
617 .type = VLIB_NODE_TYPE_PROCESS,
618 .name = "fib-walk",
619};
620/* *INDENT-ON* */
621
622/**
623 * @brief Allocate a new walk object
Neale Ranns33a7dd52016-10-07 15:14:33 +0100624 */
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100625static fib_walk_t *
626fib_walk_alloc (fib_node_type_t parent_type,
Neale Ranns33a7dd52016-10-07 15:14:33 +0100627 fib_node_index_t parent_index,
628 fib_walk_flags_t flags,
629 fib_node_back_walk_ctx_t *ctx)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100630{
631 fib_walk_t *fwalk;
632
633 pool_get(fib_walk_pool, fwalk);
634
635 fib_node_init(&fwalk->fw_node, FIB_NODE_TYPE_WALK);
636
637 fwalk->fw_flags = flags;
638 fwalk->fw_dep_sibling = FIB_NODE_INDEX_INVALID;
639 fwalk->fw_prio_sibling = FIB_NODE_INDEX_INVALID;
640 fwalk->fw_parent.fnp_index = parent_index;
641 fwalk->fw_parent.fnp_type = parent_type;
642 fwalk->fw_ctx = NULL;
Neale Ranns33a7dd52016-10-07 15:14:33 +0100643 fwalk->fw_start_time = vlib_time_now(vlib_get_main());
644 fwalk->fw_n_visits = 0;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100645
646 /*
647 * make a copy of the backwalk context so the depth count remains
648 * the same for each sibling visitsed. This is important in the case
Neale Ranns19c68d22016-12-07 15:38:14 +0000649 * where a parent has a loop via one child, but all the others are not.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100650 * if the looped child were visited first, the depth count would exceed, the
651 * max and the walk would terminate before it reached the other siblings.
652 */
653 vec_add1(fwalk->fw_ctx, *ctx);
654
655 return (fwalk);
656}
657
658/**
659 * @brief Enqueue a walk onto the appropriate priority queue. Then signal
660 * the background process there is work to do.
661 */
662static index_t
663fib_walk_prio_queue_enquue (fib_walk_priority_t prio,
Neale Ranns33a7dd52016-10-07 15:14:33 +0100664 fib_walk_t *fwalk)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100665{
666 index_t sibling;
667
668 sibling = fib_node_list_push_front(fib_walk_queues.fwqs_queues[prio].fwq_queue,
Neale Ranns33a7dd52016-10-07 15:14:33 +0100669 0,
670 FIB_NODE_TYPE_WALK,
671 fib_walk_get_index(fwalk));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100672 fib_walk_queues.fwqs_queues[prio].fwq_stats[FIB_WALK_SCHEDULED]++;
673
674 /*
675 * poke the fib-walk process to perform the async walk.
676 * we are not passing it specific data, hence the last two args,
677 * the process will drain the queues
678 */
679 vlib_process_signal_event(vlib_get_main(),
Neale Ranns33a7dd52016-10-07 15:14:33 +0100680 fib_walk_process_node.index,
Neale Rannsf12a83f2017-04-18 09:09:40 -0700681 FIB_WALK_PROCESS_EVENT_DATA,
682 0);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100683
684 return (sibling);
685}
686
687void
688fib_walk_async (fib_node_type_t parent_type,
Neale Ranns33a7dd52016-10-07 15:14:33 +0100689 fib_node_index_t parent_index,
690 fib_walk_priority_t prio,
691 fib_node_back_walk_ctx_t *ctx)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100692{
693 fib_walk_t *fwalk;
694
695 if (FIB_NODE_GRAPH_MAX_DEPTH < ++ctx->fnbw_depth)
696 {
Neale Ranns33a7dd52016-10-07 15:14:33 +0100697 /*
698 * The walk has reached the maximum depth. there is a loop in the graph.
699 * bail.
700 */
701 return;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100702 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000703 if (0 == fib_node_get_n_children(parent_type,
704 parent_index))
Neale Ranns8b37b872016-11-21 12:25:22 +0000705 {
706 /*
707 * no children to walk - quit now
708 */
709 return;
710 }
Neale Rannsad95b5d2016-11-10 20:35:14 +0000711 if (ctx->fnbw_flags & FIB_NODE_BW_FLAG_FORCE_SYNC)
712 {
713 /*
714 * the originator of the walk wanted it to be synchronous, but the
715 * parent object chose async - denied.
716 */
717 return (fib_walk_sync(parent_type, parent_index, ctx));
718 }
719
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100720
721 fwalk = fib_walk_alloc(parent_type,
Neale Ranns33a7dd52016-10-07 15:14:33 +0100722 parent_index,
723 FIB_WALK_FLAG_ASYNC,
724 ctx);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100725
726 fwalk->fw_dep_sibling = fib_node_child_add(parent_type,
Neale Ranns33a7dd52016-10-07 15:14:33 +0100727 parent_index,
728 FIB_NODE_TYPE_WALK,
729 fib_walk_get_index(fwalk));
730
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100731 fwalk->fw_prio_sibling = fib_walk_prio_queue_enquue(prio, fwalk);
Neale Ranns710071b2018-09-24 12:36:26 +0000732
733 FIB_WALK_DBG(fwalk, "async-start: %U",
734 format_fib_node_bw_reason, ctx->fnbw_reason);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100735}
736
737/**
738 * @brief Back walk all the children of a FIB node.
739 *
740 * note this is a synchronous depth first walk. Children visited may propagate
Lijian.Zhang33af8c12019-09-16 16:22:36 +0800741 * the walk to their children. Other children node types may not propagate,
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100742 * synchronously but instead queue the walk for later async completion.
743 */
744void
745fib_walk_sync (fib_node_type_t parent_type,
Neale Ranns33a7dd52016-10-07 15:14:33 +0100746 fib_node_index_t parent_index,
747 fib_node_back_walk_ctx_t *ctx)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100748{
749 fib_walk_advance_rc_t rc;
750 fib_node_index_t fwi;
751 fib_walk_t *fwalk;
752
753 if (FIB_NODE_GRAPH_MAX_DEPTH < ++ctx->fnbw_depth)
754 {
Neale Ranns33a7dd52016-10-07 15:14:33 +0100755 /*
756 * The walk has reached the maximum depth. there is a loop in the graph.
757 * bail.
758 */
759 return;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100760 }
Neale Rannsad422ed2016-11-02 14:20:04 +0000761 if (0 == fib_node_get_n_children(parent_type,
762 parent_index))
Neale Ranns8b37b872016-11-21 12:25:22 +0000763 {
764 /*
765 * no children to walk - quit now
766 */
767 return;
768 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100769
770 fwalk = fib_walk_alloc(parent_type,
Neale Ranns33a7dd52016-10-07 15:14:33 +0100771 parent_index,
772 FIB_WALK_FLAG_SYNC,
773 ctx);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100774
775 fwalk->fw_dep_sibling = fib_node_child_add(parent_type,
Neale Ranns33a7dd52016-10-07 15:14:33 +0100776 parent_index,
777 FIB_NODE_TYPE_WALK,
778 fib_walk_get_index(fwalk));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100779 fwi = fib_walk_get_index(fwalk);
Neale Ranns710071b2018-09-24 12:36:26 +0000780 FIB_WALK_DBG(fwalk, "sync-start: %U",
781 format_fib_node_bw_reason, ctx->fnbw_reason);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100782
783 while (1)
784 {
Neale Ranns33a7dd52016-10-07 15:14:33 +0100785 /*
786 * set this walk as executing
787 */
788 fwalk->fw_flags |= FIB_WALK_FLAG_EXECUTING;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100789
Neale Ranns33a7dd52016-10-07 15:14:33 +0100790 do
791 {
792 rc = fib_walk_advance(fwi);
793 } while (FIB_WALK_ADVANCE_MORE == rc);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100794
795
Neale Ranns33a7dd52016-10-07 15:14:33 +0100796 /*
797 * this walk function is re-entrant - walks can spawn walks.
798 * fib_walk_t objects come from a pool, so they can realloc. we need
799 * to re-fetch from said pool at the appropriate times.
800 */
801 fwalk = fib_walk_get(fwi);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100802
Neale Ranns33a7dd52016-10-07 15:14:33 +0100803 if (FIB_WALK_ADVANCE_MERGE == rc)
804 {
805 /*
806 * this sync walk merged with an walk in front.
807 * by reqeusting a sync walk the client wanted all children walked,
808 * so we ditch the walk object in hand and continue with the one
809 * we merged into
810 */
811 fib_node_ptr_t merged_walk;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100812
Neale Ranns33a7dd52016-10-07 15:14:33 +0100813 fib_node_list_elt_get_next(fwalk->fw_dep_sibling, &merged_walk);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100814
Neale Ranns33a7dd52016-10-07 15:14:33 +0100815 ASSERT(FIB_NODE_INDEX_INVALID != merged_walk.fnp_index);
816 ASSERT(FIB_NODE_TYPE_WALK == merged_walk.fnp_type);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100817
Neale Rannsf12a83f2017-04-18 09:09:40 -0700818 fib_walk_destroy(fwi);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100819
Neale Ranns33a7dd52016-10-07 15:14:33 +0100820 fwi = merged_walk.fnp_index;
821 fwalk = fib_walk_get(fwi);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100822
Neale Ranns33a7dd52016-10-07 15:14:33 +0100823 if (FIB_WALK_FLAG_EXECUTING & fwalk->fw_flags)
824 {
825 /*
826 * we are executing a sync walk, and we have met with another
827 * walk that is also executing. since only one walk executs at once
828 * (there is no multi-threading) this implies we have met ourselves
829 * and hence the is a loop in the graph.
830 * This function is re-entrant, so the walk object we met is being
831 * acted on in a stack frame below this one. We must therefore not
832 * continue with it now, but let the stack unwind and along the
833 * appropriate frame to read the depth count and bail.
834 */
Neale Ranns710071b2018-09-24 12:36:26 +0000835 FIB_WALK_DBG(fwalk, "sync-stop: %U",
836 format_fib_node_bw_reason,
837 ctx->fnbw_reason);
838
Neale Ranns33a7dd52016-10-07 15:14:33 +0100839 fwalk = NULL;
840 break;
841 }
842 }
843 else
844 {
845 /*
846 * the walk reached the end of the depdency list.
847 */
848 break;
849 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100850 }
851
852 if (NULL != fwalk)
853 {
Neale Ranns710071b2018-09-24 12:36:26 +0000854 FIB_WALK_DBG(fwalk, "sync-stop: %U",
855 format_fib_node_bw_reason,
856 ctx->fnbw_reason);
Neale Rannsf12a83f2017-04-18 09:09:40 -0700857 fib_walk_destroy(fwi);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100858 }
859}
860
861static fib_node_t *
862fib_walk_get_node (fib_node_index_t index)
863{
864 fib_walk_t *fwalk;
865
866 fwalk = fib_walk_get(index);
867
868 return (&(fwalk->fw_node));
869}
870
871/**
872 * Walk objects are not parents, nor are they locked.
873 * are no-ops
874 */
875static void
876fib_walk_last_lock_gone (fib_node_t *node)
877{
878 ASSERT(0);
879}
880
881static fib_walk_t*
882fib_walk_get_from_node (fib_node_t *node)
883{
884 return ((fib_walk_t*)(((char*)node) -
Neale Ranns33a7dd52016-10-07 15:14:33 +0100885 STRUCT_OFFSET_OF(fib_walk_t, fw_node)));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100886}
887
888/**
889 * @brief Another back walk has reach this walk.
890 * Megre them so there is only one left. It is this node being
891 * visited that will remain, so copy or merge the context onto it.
892 */
893static fib_node_back_walk_rc_t
894fib_walk_back_walk_notify (fib_node_t *node,
895 fib_node_back_walk_ctx_t *ctx)
896{
Neale Ranns19c68d22016-12-07 15:38:14 +0000897 fib_node_back_walk_ctx_t *last;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100898 fib_walk_t *fwalk;
899
900 fwalk = fib_walk_get_from_node(node);
901
902 /*
Neale Ranns19c68d22016-12-07 15:38:14 +0000903 * check whether the walk context can be merged with the most recent.
904 * the most recent was the one last added and is thus at the back of the vector.
905 * we can merge walks if the reason for the walk is the same.
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100906 */
Neale Ranns19c68d22016-12-07 15:38:14 +0000907 last = vec_end(fwalk->fw_ctx) - 1;
908
909 if (last->fnbw_reason == ctx->fnbw_reason)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100910 {
Neale Ranns19c68d22016-12-07 15:38:14 +0000911 /*
912 * copy the largest of the depth values. in the presence of a loop,
913 * the same walk will merge with itself. if we take the smaller depth
914 * then it will never end.
915 */
916 last->fnbw_depth = ((last->fnbw_depth >= ctx->fnbw_depth) ?
917 last->fnbw_depth :
918 ctx->fnbw_depth);
919 }
920 else
921 {
922 /*
923 * walks could not be merged, this means that the walk infront needs to
924 * perform different action to this one that has caught up. the one in
925 * front was scheduled first so append the new walk context to the back
926 * of the list.
927 */
928 vec_add1(fwalk->fw_ctx, *ctx);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100929 }
930
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100931 return (FIB_NODE_BACK_WALK_MERGE);
932}
933
934/**
935 * The FIB walk's graph node virtual function table
936 */
937static const fib_node_vft_t fib_walk_vft = {
938 .fnv_get = fib_walk_get_node,
939 .fnv_last_lock = fib_walk_last_lock_gone,
940 .fnv_back_walk = fib_walk_back_walk_notify,
941};
942
943void
944fib_walk_module_init (void)
945{
946 fib_walk_priority_t prio;
947
948 FOR_EACH_FIB_WALK_PRIORITY(prio)
949 {
Neale Ranns33a7dd52016-10-07 15:14:33 +0100950 fib_walk_queues.fwqs_queues[prio].fwq_queue = fib_node_list_create();
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100951 }
952
953 fib_node_register_type(FIB_NODE_TYPE_WALK, &fib_walk_vft);
Neale Ranns710071b2018-09-24 12:36:26 +0000954 fib_walk_logger = vlib_log_register_class("fib", "walk");
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100955}
956
957static u8*
Christophe Fontained3c008d2017-10-02 18:10:54 +0200958format_fib_walk (u8* s, va_list *ap)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100959{
Christophe Fontained3c008d2017-10-02 18:10:54 +0200960 fib_node_index_t fwi = va_arg(*ap, fib_node_index_t);
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100961 fib_walk_t *fwalk;
962
963 fwalk = fib_walk_get(fwi);
964
Neale Ranns710071b2018-09-24 12:36:26 +0000965 return (format(s, "[@%d] parent:{%s:%d} visits:%d flags:%d", fwi,
Neale Ranns33a7dd52016-10-07 15:14:33 +0100966 fib_node_type_get_name(fwalk->fw_parent.fnp_type),
967 fwalk->fw_parent.fnp_index,
968 fwalk->fw_n_visits,
969 fwalk->fw_flags));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100970}
971
Neale Ranns710071b2018-09-24 12:36:26 +0000972u8 *
973format_fib_node_bw_reason (u8 *s, va_list *args)
974{
975 fib_node_bw_reason_flag_t flag = va_arg (*args, int);
976 fib_node_back_walk_reason_t reason;
977
978 FOR_EACH_FIB_NODE_BW_REASON(reason) {
979 if ((1<<reason) & flag)
980 s = format(s, "%s", fib_node_bw_reason_names[reason]);
981 }
982
983 return (s);
984}
985
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100986static clib_error_t *
987fib_walk_show (vlib_main_t * vm,
Neale Ranns33a7dd52016-10-07 15:14:33 +0100988 unformat_input_t * input,
989 vlib_cli_command_t * cmd)
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100990{
991 fib_walk_queue_stats_t wqs;
992 fib_walk_priority_t prio;
993 fib_node_ptr_t sibling;
994 fib_node_index_t fwi;
995 fib_walk_t *fwalk;
Neale Ranns33a7dd52016-10-07 15:14:33 +0100996 int more_elts, ii;
997 u8 *s = NULL;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100998
Neale Ranns33a7dd52016-10-07 15:14:33 +0100999#define USEC 1000000
1000 vlib_cli_output(vm, "FIB Walk Quota = %.2fusec:", quota * USEC);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001001 vlib_cli_output(vm, "FIB Walk queues:");
1002
1003 FOR_EACH_FIB_WALK_PRIORITY(prio)
1004 {
Neale Ranns33a7dd52016-10-07 15:14:33 +01001005 vlib_cli_output(vm, " %U priority queue:",
1006 format_fib_walk_priority, prio);
1007 vlib_cli_output(vm, " Stats: ");
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001008
Neale Ranns33a7dd52016-10-07 15:14:33 +01001009 FOR_EACH_FIB_WALK_QUEUE_STATS(wqs)
1010 {
1011 vlib_cli_output(vm, " %U:%d",
1012 format_fib_walk_queue_stats, wqs,
1013 fib_walk_queues.fwqs_queues[prio].fwq_stats[wqs]);
1014 }
1015 vlib_cli_output(vm, " Occupancy:%d",
1016 fib_node_list_get_size(
1017 fib_walk_queues.fwqs_queues[prio].fwq_queue));
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001018
Neale Ranns33a7dd52016-10-07 15:14:33 +01001019 more_elts = fib_node_list_get_front(
1020 fib_walk_queues.fwqs_queues[prio].fwq_queue,
1021 &sibling);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001022
Neale Ranns33a7dd52016-10-07 15:14:33 +01001023 while (more_elts)
1024 {
1025 ASSERT(FIB_NODE_INDEX_INVALID != sibling.fnp_index);
1026 ASSERT(FIB_NODE_TYPE_WALK == sibling.fnp_type);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001027
Neale Ranns33a7dd52016-10-07 15:14:33 +01001028 fwi = sibling.fnp_index;
1029 fwalk = fib_walk_get(fwi);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001030
Neale Ranns33a7dd52016-10-07 15:14:33 +01001031 vlib_cli_output(vm, " %U", format_fib_walk, fwi);
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001032
Neale Ranns33a7dd52016-10-07 15:14:33 +01001033 more_elts = fib_node_list_elt_get_next(fwalk->fw_prio_sibling,
1034 &sibling);
1035 }
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001036 }
Neale Ranns33a7dd52016-10-07 15:14:33 +01001037
1038 vlib_cli_output(vm, "Histogram Statistics:");
1039 vlib_cli_output(vm, " Number of Elements visit per-quota:");
1040 for (ii = 0; ii < N_ELTS_BUCKETS; ii++)
1041 {
1042 if (0 != fib_walk_work_nodes_visited[ii])
1043 s = format(s, "%d:%d ",
Jim Thompsonf324dec2019-04-08 03:22:21 -05001044 (ii * fib_walk_work_nodes_visited_incr),
Neale Ranns33a7dd52016-10-07 15:14:33 +01001045 fib_walk_work_nodes_visited[ii]);
1046 }
1047 vlib_cli_output(vm, " %v", s);
1048 vec_free(s);
1049
1050 vlib_cli_output(vm, " Time consumed per-quota (Quota=%f usec):", quota*USEC);
1051 s = format(s, "0:%d ", fib_walk_work_time_taken[0]);
1052 for (ii = 1; ii < N_TIME_BUCKETS; ii++)
1053 {
1054 if (0 != fib_walk_work_time_taken[ii])
1055 s = format(s, "%d:%d ", (u32)((((ii - N_TIME_BUCKETS/2) *
1056 (quota / TIME_INCREMENTS)) + quota) *
1057 USEC),
1058 fib_walk_work_time_taken[ii]);
1059 }
1060 vlib_cli_output(vm, " %v", s);
1061 vec_free(s);
1062
1063 vlib_cli_output(vm, " Sleep Types:");
1064 vlib_cli_output(vm, " Short Long:");
1065 vlib_cli_output(vm, " %d %d:",
1066 fib_walk_sleep_lengths[FIB_WALK_SHORT_SLEEP],
1067 fib_walk_sleep_lengths[FIB_WALK_LONG_SLEEP]);
1068
1069 vlib_cli_output(vm, " Number of Elements visited per-walk:");
1070 for (ii = 0; ii < HISTOGRAM_VISITS_PER_WALK_N_BUCKETS; ii++)
1071 {
1072 if (0 != fib_walk_hist_vists_per_walk[ii])
1073 s = format(s, "%d:%d ",
1074 ii*HISTOGRAM_VISITS_PER_WALK_INCR,
1075 fib_walk_hist_vists_per_walk[ii]);
1076 }
1077 vlib_cli_output(vm, " %v", s);
1078 vec_free(s);
1079
1080
1081 vlib_cli_output(vm, "Brief History (last %d walks):", HISTORY_N_WALKS);
Neale Rannsad95b5d2016-11-10 20:35:14 +00001082 ii = history_last_walk_pos - 1;
1083 if (ii < 0)
1084 ii = HISTORY_N_WALKS - 1;
1085
1086 while (ii != history_last_walk_pos)
Neale Ranns33a7dd52016-10-07 15:14:33 +01001087 {
Neale Ranns19c68d22016-12-07 15:38:14 +00001088 if (0 != fib_walk_history[ii].fwh_reason[0])
Neale Ranns33a7dd52016-10-07 15:14:33 +01001089 {
Neale Rannsad95b5d2016-11-10 20:35:14 +00001090 u8 *s = NULL;
Neale Ranns19c68d22016-12-07 15:38:14 +00001091 u32 jj;
Neale Rannsad95b5d2016-11-10 20:35:14 +00001092
Neale Ranns8b37b872016-11-21 12:25:22 +00001093 s = format(s, "[@%d]: %s:%d visits:%d duration:%.2f completed:%.2f ",
1094 ii, fib_node_type_get_name(fib_walk_history[ii].fwh_parent.fnp_type),
Neale Rannsad95b5d2016-11-10 20:35:14 +00001095 fib_walk_history[ii].fwh_parent.fnp_index,
1096 fib_walk_history[ii].fwh_n_visits,
Neale Ranns8b37b872016-11-21 12:25:22 +00001097 fib_walk_history[ii].fwh_duration,
1098 fib_walk_history[ii].fwh_completed);
Neale Rannsad95b5d2016-11-10 20:35:14 +00001099 if (FIB_WALK_FLAG_SYNC & fib_walk_history[ii].fwh_flags)
1100 s = format(s, "sync, ");
1101 if (FIB_WALK_FLAG_ASYNC & fib_walk_history[ii].fwh_flags)
1102 s = format(s, "async, ");
1103
1104 s = format(s, "reason:");
Neale Ranns19c68d22016-12-07 15:38:14 +00001105 jj = 0;
1106 while (0 != fib_walk_history[ii].fwh_reason[jj])
1107 {
Neale Ranns710071b2018-09-24 12:36:26 +00001108 s = format (s, "%U,", format_fib_node_bw_reason,
1109 fib_walk_history[ii].fwh_reason[jj]);
Neale Ranns19c68d22016-12-07 15:38:14 +00001110 jj++;
Neale Rannsad95b5d2016-11-10 20:35:14 +00001111 }
1112 vlib_cli_output(vm, "%v", s);
Neale Ranns33a7dd52016-10-07 15:14:33 +01001113 }
1114
Neale Rannsad95b5d2016-11-10 20:35:14 +00001115 ii--;
1116 if (ii < 0)
1117 ii = HISTORY_N_WALKS - 1;
1118 }
Neale Ranns33a7dd52016-10-07 15:14:33 +01001119
Neale Ranns0bfe5d82016-08-25 15:29:12 +01001120 return (NULL);
1121}
1122
1123VLIB_CLI_COMMAND (fib_walk_show_command, static) = {
1124 .path = "show fib walk",
1125 .short_help = "show fib walk",
1126 .function = fib_walk_show,
1127};
Neale Ranns33a7dd52016-10-07 15:14:33 +01001128
1129static clib_error_t *
1130fib_walk_set_quota (vlib_main_t * vm,
1131 unformat_input_t * input,
1132 vlib_cli_command_t * cmd)
1133{
1134 clib_error_t * error = NULL;
1135 f64 new_quota;
1136
1137 if (unformat (input, "%f", &new_quota))
1138 {
1139 quota = new_quota;
1140 }
1141 else
1142 {
1143 error = clib_error_return(0 , "Pass a float value");
1144 }
1145
1146 return (error);
1147}
1148
1149VLIB_CLI_COMMAND (fib_walk_set_quota_command, static) = {
1150 .path = "set fib walk quota",
1151 .short_help = "set fib walk quota",
1152 .function = fib_walk_set_quota,
1153};
1154
1155static clib_error_t *
1156fib_walk_set_histogram_elements_size (vlib_main_t * vm,
1157 unformat_input_t * input,
1158 vlib_cli_command_t * cmd)
1159{
1160 clib_error_t * error = NULL;
1161 u32 new;
1162
1163 if (unformat (input, "%d", &new))
1164 {
Jim Thompsonf324dec2019-04-08 03:22:21 -05001165 fib_walk_work_nodes_visited_incr = new;
Neale Ranns33a7dd52016-10-07 15:14:33 +01001166 }
1167 else
1168 {
1169 error = clib_error_return(0 , "Pass an int value");
1170 }
1171
1172 return (error);
1173}
1174
1175VLIB_CLI_COMMAND (fib_walk_set_histogram_elements_size_command, static) = {
1176 .path = "set fib walk histogram elements size",
1177 .short_help = "set fib walk histogram elements size",
1178 .function = fib_walk_set_histogram_elements_size,
1179};
1180
1181static clib_error_t *
1182fib_walk_clear (vlib_main_t * vm,
1183 unformat_input_t * input,
1184 vlib_cli_command_t * cmd)
1185{
Dave Barachb7b92992018-10-17 10:38:51 -04001186 clib_memset(fib_walk_hist_vists_per_walk, 0, sizeof(fib_walk_hist_vists_per_walk));
1187 clib_memset(fib_walk_history, 0, sizeof(fib_walk_history));
1188 clib_memset(fib_walk_work_time_taken, 0, sizeof(fib_walk_work_time_taken));
1189 clib_memset(fib_walk_work_nodes_visited, 0, sizeof(fib_walk_work_nodes_visited));
1190 clib_memset(fib_walk_sleep_lengths, 0, sizeof(fib_walk_sleep_lengths));
Neale Ranns33a7dd52016-10-07 15:14:33 +01001191
1192 return (NULL);
1193}
1194
1195VLIB_CLI_COMMAND (fib_walk_clear_command, static) = {
1196 .path = "clear fib walk",
1197 .short_help = "clear fib walk",
1198 .function = fib_walk_clear,
1199};
Neale Rannsf12a83f2017-04-18 09:09:40 -07001200
1201void
1202fib_walk_process_enable (void)
1203{
1204 vlib_process_signal_event(vlib_get_main(),
1205 fib_walk_process_node.index,
1206 FIB_WALK_PROCESS_EVENT_ENABLE,
1207 0);
1208}
1209
1210void
1211fib_walk_process_disable (void)
1212{
1213 vlib_process_signal_event(vlib_get_main(),
1214 fib_walk_process_node.index,
1215 FIB_WALK_PROCESS_EVENT_DISABLE,
1216 0);
1217}
1218
1219static clib_error_t *
1220fib_walk_process_enable_disable (vlib_main_t * vm,
1221 unformat_input_t * input,
1222 vlib_cli_command_t * cmd)
1223{
1224 if (unformat (input, "enable"))
1225 {
1226 fib_walk_process_enable();
1227 }
1228 else if (unformat (input, "disable"))
1229 {
1230 fib_walk_process_disable();
1231 }
1232 else
1233 {
1234 return clib_error_return(0, "choose enable or disable");
1235 }
1236 return (NULL);
1237}
1238
1239VLIB_CLI_COMMAND (fib_walk_process_command, static) = {
1240 .path = "test fib-walk-process",
1241 .short_help = "test fib-walk-process [enable|disable]",
1242 .function = fib_walk_process_enable_disable,
1243};