Add 'show vlib graphviz' command
[vpp.git] / src / vlib / main.c
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16  * main.c: main vector processing loop
17  *
18  * Copyright (c) 2008 Eliot Dresselhaus
19  *
20  * Permission is hereby granted, free of charge, to any person obtaining
21  * a copy of this software and associated documentation files (the
22  * "Software"), to deal in the Software without restriction, including
23  * without limitation the rights to use, copy, modify, merge, publish,
24  * distribute, sublicense, and/or sell copies of the Software, and to
25  * permit persons to whom the Software is furnished to do so, subject to
26  * the following conditions:
27  *
28  * The above copyright notice and this permission notice shall be
29  * included in all copies or substantial portions of the Software.
30  *
31  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32  *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34  *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35  *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36  *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37  *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  */
39
40 #include <math.h>
41 #include <vppinfra/format.h>
42 #include <vlib/vlib.h>
43 #include <vlib/threads.h>
44 #include <vppinfra/tw_timer_1t_3w_1024sl_ov.h>
45
46 #include <vlib/unix/unix.h>
47 #include <vlib/unix/cj.h>
48
49 CJ_GLOBAL_LOG_PROTOTYPE;
50
51 /* Actually allocate a few extra slots of vector data to support
52    speculative vector enqueues which overflow vector data in next frame. */
53 #define VLIB_FRAME_SIZE_ALLOC (VLIB_FRAME_SIZE + 4)
54
55 u32 wraps;
56
57 always_inline u32
58 vlib_frame_bytes (u32 n_scalar_bytes, u32 n_vector_bytes)
59 {
60   u32 n_bytes;
61
62   /* Make room for vlib_frame_t plus scalar arguments. */
63   n_bytes = vlib_frame_vector_byte_offset (n_scalar_bytes);
64
65   /* Make room for vector arguments.
66      Allocate a few extra slots of vector data to support
67      speculative vector enqueues which overflow vector data in next frame. */
68 #define VLIB_FRAME_SIZE_EXTRA 4
69   n_bytes += (VLIB_FRAME_SIZE + VLIB_FRAME_SIZE_EXTRA) * n_vector_bytes;
70
71   /* Magic number is first 32bit number after vector data.
72      Used to make sure that vector data is never overrun. */
73 #define VLIB_FRAME_MAGIC (0xabadc0ed)
74   n_bytes += sizeof (u32);
75
76   /* Pad to cache line. */
77   n_bytes = round_pow2 (n_bytes, CLIB_CACHE_LINE_BYTES);
78
79   return n_bytes;
80 }
81
82 always_inline u32 *
83 vlib_frame_find_magic (vlib_frame_t * f, vlib_node_t * node)
84 {
85   void *p = f;
86
87   p += vlib_frame_vector_byte_offset (node->scalar_size);
88
89   p += (VLIB_FRAME_SIZE + VLIB_FRAME_SIZE_EXTRA) * node->vector_size;
90
91   return p;
92 }
93
94 static vlib_frame_size_t *
95 get_frame_size_info (vlib_node_main_t * nm,
96                      u32 n_scalar_bytes, u32 n_vector_bytes)
97 {
98   uword key = (n_scalar_bytes << 16) | n_vector_bytes;
99   uword *p, i;
100
101   p = hash_get (nm->frame_size_hash, key);
102   if (p)
103     i = p[0];
104   else
105     {
106       i = vec_len (nm->frame_sizes);
107       vec_validate (nm->frame_sizes, i);
108       hash_set (nm->frame_size_hash, key, i);
109     }
110
111   return vec_elt_at_index (nm->frame_sizes, i);
112 }
113
114 static u32
115 vlib_frame_alloc_to_node (vlib_main_t * vm, u32 to_node_index,
116                           u32 frame_flags)
117 {
118   vlib_node_main_t *nm = &vm->node_main;
119   vlib_frame_size_t *fs;
120   vlib_node_t *to_node;
121   vlib_frame_t *f;
122   u32 fi, l, n, scalar_size, vector_size;
123
124   to_node = vlib_get_node (vm, to_node_index);
125
126   scalar_size = to_node->scalar_size;
127   vector_size = to_node->vector_size;
128
129   fs = get_frame_size_info (nm, scalar_size, vector_size);
130   n = vlib_frame_bytes (scalar_size, vector_size);
131   if ((l = vec_len (fs->free_frame_indices)) > 0)
132     {
133       /* Allocate from end of free list. */
134       fi = fs->free_frame_indices[l - 1];
135       f = vlib_get_frame_no_check (vm, fi);
136       _vec_len (fs->free_frame_indices) = l - 1;
137     }
138   else
139     {
140       f = clib_mem_alloc_aligned_no_fail (n, VLIB_FRAME_ALIGN);
141       fi = vlib_frame_index_no_check (vm, f);
142     }
143
144   /* Poison frame when debugging. */
145   if (CLIB_DEBUG > 0)
146     clib_memset (f, 0xfe, n);
147
148   /* Insert magic number. */
149   {
150     u32 *magic;
151
152     magic = vlib_frame_find_magic (f, to_node);
153     *magic = VLIB_FRAME_MAGIC;
154   }
155
156   f->frame_flags = VLIB_FRAME_IS_ALLOCATED | frame_flags;
157   f->n_vectors = 0;
158   f->scalar_size = scalar_size;
159   f->vector_size = vector_size;
160   f->flags = 0;
161
162   fs->n_alloc_frames += 1;
163
164   return fi;
165 }
166
167 /* Allocate a frame for from FROM_NODE to TO_NODE via TO_NEXT_INDEX.
168    Returns frame index. */
169 static u32
170 vlib_frame_alloc (vlib_main_t * vm, vlib_node_runtime_t * from_node_runtime,
171                   u32 to_next_index)
172 {
173   vlib_node_t *from_node;
174
175   from_node = vlib_get_node (vm, from_node_runtime->node_index);
176   ASSERT (to_next_index < vec_len (from_node->next_nodes));
177
178   return vlib_frame_alloc_to_node (vm, from_node->next_nodes[to_next_index],
179                                    /* frame_flags */ 0);
180 }
181
182 vlib_frame_t *
183 vlib_get_frame_to_node (vlib_main_t * vm, u32 to_node_index)
184 {
185   u32 fi = vlib_frame_alloc_to_node (vm, to_node_index,
186                                      /* frame_flags */
187                                      VLIB_FRAME_FREE_AFTER_DISPATCH);
188   return vlib_get_frame (vm, fi);
189 }
190
191 void
192 vlib_put_frame_to_node (vlib_main_t * vm, u32 to_node_index, vlib_frame_t * f)
193 {
194   vlib_pending_frame_t *p;
195   vlib_node_t *to_node;
196
197   if (f->n_vectors == 0)
198     return;
199
200   to_node = vlib_get_node (vm, to_node_index);
201
202   vec_add2 (vm->node_main.pending_frames, p, 1);
203
204   f->frame_flags |= VLIB_FRAME_PENDING;
205   p->frame_index = vlib_frame_index (vm, f);
206   p->node_runtime_index = to_node->runtime_index;
207   p->next_frame_index = VLIB_PENDING_FRAME_NO_NEXT_FRAME;
208 }
209
210 /* Free given frame. */
211 void
212 vlib_frame_free (vlib_main_t * vm, vlib_node_runtime_t * r, vlib_frame_t * f)
213 {
214   vlib_node_main_t *nm = &vm->node_main;
215   vlib_node_t *node;
216   vlib_frame_size_t *fs;
217   u32 frame_index;
218
219   ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
220
221   node = vlib_get_node (vm, r->node_index);
222   fs = get_frame_size_info (nm, node->scalar_size, node->vector_size);
223
224   frame_index = vlib_frame_index (vm, f);
225
226   ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
227
228   /* No next frames may point to freed frame. */
229   if (CLIB_DEBUG > 0)
230     {
231       vlib_next_frame_t *nf;
232       vec_foreach (nf, vm->node_main.next_frames)
233         ASSERT (nf->frame_index != frame_index);
234     }
235
236   f->frame_flags &= ~VLIB_FRAME_IS_ALLOCATED;
237
238   vec_add1 (fs->free_frame_indices, frame_index);
239   ASSERT (fs->n_alloc_frames > 0);
240   fs->n_alloc_frames -= 1;
241 }
242
243 static clib_error_t *
244 show_frame_stats (vlib_main_t * vm,
245                   unformat_input_t * input, vlib_cli_command_t * cmd)
246 {
247   vlib_node_main_t *nm = &vm->node_main;
248   vlib_frame_size_t *fs;
249
250   vlib_cli_output (vm, "%=6s%=12s%=12s", "Size", "# Alloc", "# Free");
251   vec_foreach (fs, nm->frame_sizes)
252   {
253     u32 n_alloc = fs->n_alloc_frames;
254     u32 n_free = vec_len (fs->free_frame_indices);
255
256     if (n_alloc + n_free > 0)
257       vlib_cli_output (vm, "%=6d%=12d%=12d",
258                        fs - nm->frame_sizes, n_alloc, n_free);
259   }
260
261   return 0;
262 }
263
264 /* *INDENT-OFF* */
265 VLIB_CLI_COMMAND (show_frame_stats_cli, static) = {
266   .path = "show vlib frame-allocation",
267   .short_help = "Show node dispatch frame statistics",
268   .function = show_frame_stats,
269 };
270 /* *INDENT-ON* */
271
272 /* Change ownership of enqueue rights to given next node. */
273 static void
274 vlib_next_frame_change_ownership (vlib_main_t * vm,
275                                   vlib_node_runtime_t * node_runtime,
276                                   u32 next_index)
277 {
278   vlib_node_main_t *nm = &vm->node_main;
279   vlib_next_frame_t *next_frame;
280   vlib_node_t *node, *next_node;
281
282   node = vec_elt (nm->nodes, node_runtime->node_index);
283
284   /* Only internal & input nodes are allowed to call other nodes. */
285   ASSERT (node->type == VLIB_NODE_TYPE_INTERNAL
286           || node->type == VLIB_NODE_TYPE_INPUT
287           || node->type == VLIB_NODE_TYPE_PROCESS);
288
289   ASSERT (vec_len (node->next_nodes) == node_runtime->n_next_nodes);
290
291   next_frame =
292     vlib_node_runtime_get_next_frame (vm, node_runtime, next_index);
293   next_node = vec_elt (nm->nodes, node->next_nodes[next_index]);
294
295   if (next_node->owner_node_index != VLIB_INVALID_NODE_INDEX)
296     {
297       /* Get frame from previous owner. */
298       vlib_next_frame_t *owner_next_frame;
299       vlib_next_frame_t tmp;
300
301       owner_next_frame =
302         vlib_node_get_next_frame (vm,
303                                   next_node->owner_node_index,
304                                   next_node->owner_next_index);
305
306       /* Swap target next frame with owner's. */
307       tmp = owner_next_frame[0];
308       owner_next_frame[0] = next_frame[0];
309       next_frame[0] = tmp;
310
311       /*
312        * If next_frame is already pending, we have to track down
313        * all pending frames and fix their next_frame_index fields.
314        */
315       if (next_frame->flags & VLIB_FRAME_PENDING)
316         {
317           vlib_pending_frame_t *p;
318           if (next_frame->frame_index != ~0)
319             {
320               vec_foreach (p, nm->pending_frames)
321               {
322                 if (p->frame_index == next_frame->frame_index)
323                   {
324                     p->next_frame_index =
325                       next_frame - vm->node_main.next_frames;
326                   }
327               }
328             }
329         }
330     }
331   else
332     {
333       /* No previous owner. Take ownership. */
334       next_frame->flags |= VLIB_FRAME_OWNER;
335     }
336
337   /* Record new owner. */
338   next_node->owner_node_index = node->index;
339   next_node->owner_next_index = next_index;
340
341   /* Now we should be owner. */
342   ASSERT (next_frame->flags & VLIB_FRAME_OWNER);
343 }
344
345 /* Make sure that magic number is still there.
346    Otherwise, it is likely that caller has overrun frame arguments. */
347 always_inline void
348 validate_frame_magic (vlib_main_t * vm,
349                       vlib_frame_t * f, vlib_node_t * n, uword next_index)
350 {
351   vlib_node_t *next_node = vlib_get_node (vm, n->next_nodes[next_index]);
352   u32 *magic = vlib_frame_find_magic (f, next_node);
353   ASSERT (VLIB_FRAME_MAGIC == magic[0]);
354 }
355
356 vlib_frame_t *
357 vlib_get_next_frame_internal (vlib_main_t * vm,
358                               vlib_node_runtime_t * node,
359                               u32 next_index, u32 allocate_new_next_frame)
360 {
361   vlib_frame_t *f;
362   vlib_next_frame_t *nf;
363   u32 n_used;
364
365   nf = vlib_node_runtime_get_next_frame (vm, node, next_index);
366
367   /* Make sure this next frame owns right to enqueue to destination frame. */
368   if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_OWNER)))
369     vlib_next_frame_change_ownership (vm, node, next_index);
370
371   /* ??? Don't need valid flag: can use frame_index == ~0 */
372   if (PREDICT_FALSE (!(nf->flags & VLIB_FRAME_IS_ALLOCATED)))
373     {
374       nf->frame_index = vlib_frame_alloc (vm, node, next_index);
375       nf->flags |= VLIB_FRAME_IS_ALLOCATED;
376     }
377
378   f = vlib_get_frame (vm, nf->frame_index);
379
380   /* Has frame been removed from pending vector (e.g. finished dispatching)?
381      If so we can reuse frame. */
382   if ((nf->flags & VLIB_FRAME_PENDING)
383       && !(f->frame_flags & VLIB_FRAME_PENDING))
384     {
385       nf->flags &= ~VLIB_FRAME_PENDING;
386       f->n_vectors = 0;
387       f->flags = 0;
388     }
389
390   /* Allocate new frame if current one is already full. */
391   n_used = f->n_vectors;
392   if (n_used >= VLIB_FRAME_SIZE || (allocate_new_next_frame && n_used > 0))
393     {
394       /* Old frame may need to be freed after dispatch, since we'll have
395          two redundant frames from node -> next node. */
396       if (!(nf->flags & VLIB_FRAME_NO_FREE_AFTER_DISPATCH))
397         {
398           vlib_frame_t *f_old = vlib_get_frame (vm, nf->frame_index);
399           f_old->frame_flags |= VLIB_FRAME_FREE_AFTER_DISPATCH;
400         }
401
402       /* Allocate new frame to replace full one. */
403       nf->frame_index = vlib_frame_alloc (vm, node, next_index);
404       f = vlib_get_frame (vm, nf->frame_index);
405       n_used = f->n_vectors;
406     }
407
408   /* Should have free vectors in frame now. */
409   ASSERT (n_used < VLIB_FRAME_SIZE);
410
411   if (CLIB_DEBUG > 0)
412     {
413       validate_frame_magic (vm, f,
414                             vlib_get_node (vm, node->node_index), next_index);
415     }
416
417   return f;
418 }
419
420 static void
421 vlib_put_next_frame_validate (vlib_main_t * vm,
422                               vlib_node_runtime_t * rt,
423                               u32 next_index, u32 n_vectors_left)
424 {
425   vlib_node_main_t *nm = &vm->node_main;
426   vlib_next_frame_t *nf;
427   vlib_frame_t *f;
428   vlib_node_runtime_t *next_rt;
429   vlib_node_t *next_node;
430   u32 n_before, n_after;
431
432   nf = vlib_node_runtime_get_next_frame (vm, rt, next_index);
433   f = vlib_get_frame (vm, nf->frame_index);
434
435   ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
436   n_after = VLIB_FRAME_SIZE - n_vectors_left;
437   n_before = f->n_vectors;
438
439   ASSERT (n_after >= n_before);
440
441   next_rt = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
442                               nf->node_runtime_index);
443   next_node = vlib_get_node (vm, next_rt->node_index);
444   if (n_after > 0 && next_node->validate_frame)
445     {
446       u8 *msg = next_node->validate_frame (vm, rt, f);
447       if (msg)
448         {
449           clib_warning ("%v", msg);
450           ASSERT (0);
451         }
452       vec_free (msg);
453     }
454 }
455
456 void
457 vlib_put_next_frame (vlib_main_t * vm,
458                      vlib_node_runtime_t * r,
459                      u32 next_index, u32 n_vectors_left)
460 {
461   vlib_node_main_t *nm = &vm->node_main;
462   vlib_next_frame_t *nf;
463   vlib_frame_t *f;
464   u32 n_vectors_in_frame;
465
466   if (CLIB_DEBUG > 0)
467     vlib_put_next_frame_validate (vm, r, next_index, n_vectors_left);
468
469   nf = vlib_node_runtime_get_next_frame (vm, r, next_index);
470   f = vlib_get_frame (vm, nf->frame_index);
471
472   /* Make sure that magic number is still there.  Otherwise, caller
473      has overrun frame meta data. */
474   if (CLIB_DEBUG > 0)
475     {
476       vlib_node_t *node = vlib_get_node (vm, r->node_index);
477       validate_frame_magic (vm, f, node, next_index);
478     }
479
480   /* Convert # of vectors left -> number of vectors there. */
481   ASSERT (n_vectors_left <= VLIB_FRAME_SIZE);
482   n_vectors_in_frame = VLIB_FRAME_SIZE - n_vectors_left;
483
484   f->n_vectors = n_vectors_in_frame;
485
486   /* If vectors were added to frame, add to pending vector. */
487   if (PREDICT_TRUE (n_vectors_in_frame > 0))
488     {
489       vlib_pending_frame_t *p;
490       u32 v0, v1;
491
492       r->cached_next_index = next_index;
493
494       if (!(f->frame_flags & VLIB_FRAME_PENDING))
495         {
496           __attribute__ ((unused)) vlib_node_t *node;
497           vlib_node_t *next_node;
498           vlib_node_runtime_t *next_runtime;
499
500           node = vlib_get_node (vm, r->node_index);
501           next_node = vlib_get_next_node (vm, r->node_index, next_index);
502           next_runtime = vlib_node_get_runtime (vm, next_node->index);
503
504           vec_add2 (nm->pending_frames, p, 1);
505
506           p->frame_index = nf->frame_index;
507           p->node_runtime_index = nf->node_runtime_index;
508           p->next_frame_index = nf - nm->next_frames;
509           nf->flags |= VLIB_FRAME_PENDING;
510           f->frame_flags |= VLIB_FRAME_PENDING;
511
512           /*
513            * If we're going to dispatch this frame on another thread,
514            * force allocation of a new frame. Otherwise, we create
515            * a dangling frame reference. Each thread has its own copy of
516            * the next_frames vector.
517            */
518           if (0 && r->thread_index != next_runtime->thread_index)
519             {
520               nf->frame_index = ~0;
521               nf->flags &= ~(VLIB_FRAME_PENDING | VLIB_FRAME_IS_ALLOCATED);
522             }
523         }
524
525       /* Copy trace flag from next_frame and from runtime. */
526       nf->flags |=
527         (nf->flags & VLIB_NODE_FLAG_TRACE) | (r->
528                                               flags & VLIB_NODE_FLAG_TRACE);
529
530       v0 = nf->vectors_since_last_overflow;
531       v1 = v0 + n_vectors_in_frame;
532       nf->vectors_since_last_overflow = v1;
533       if (PREDICT_FALSE (v1 < v0))
534         {
535           vlib_node_t *node = vlib_get_node (vm, r->node_index);
536           vec_elt (node->n_vectors_by_next_node, next_index) += v0;
537         }
538     }
539 }
540
541 /* Sync up runtime (32 bit counters) and main node stats (64 bit counters). */
542 never_inline void
543 vlib_node_runtime_sync_stats (vlib_main_t * vm,
544                               vlib_node_runtime_t * r,
545                               uword n_calls, uword n_vectors, uword n_clocks,
546                               uword n_ticks0, uword n_ticks1)
547 {
548   vlib_node_t *n = vlib_get_node (vm, r->node_index);
549
550   n->stats_total.calls += n_calls + r->calls_since_last_overflow;
551   n->stats_total.vectors += n_vectors + r->vectors_since_last_overflow;
552   n->stats_total.clocks += n_clocks + r->clocks_since_last_overflow;
553   n->stats_total.perf_counter0_ticks += n_ticks0 +
554     r->perf_counter0_ticks_since_last_overflow;
555   n->stats_total.perf_counter1_ticks += n_ticks1 +
556     r->perf_counter1_ticks_since_last_overflow;
557   n->stats_total.perf_counter_vectors += n_vectors +
558     r->perf_counter_vectors_since_last_overflow;
559   n->stats_total.max_clock = r->max_clock;
560   n->stats_total.max_clock_n = r->max_clock_n;
561
562   r->calls_since_last_overflow = 0;
563   r->vectors_since_last_overflow = 0;
564   r->clocks_since_last_overflow = 0;
565   r->perf_counter0_ticks_since_last_overflow = 0ULL;
566   r->perf_counter1_ticks_since_last_overflow = 0ULL;
567   r->perf_counter_vectors_since_last_overflow = 0ULL;
568 }
569
570 always_inline void __attribute__ ((unused))
571 vlib_process_sync_stats (vlib_main_t * vm,
572                          vlib_process_t * p,
573                          uword n_calls, uword n_vectors, uword n_clocks,
574                          uword n_ticks0, uword n_ticks1)
575 {
576   vlib_node_runtime_t *rt = &p->node_runtime;
577   vlib_node_t *n = vlib_get_node (vm, rt->node_index);
578   vlib_node_runtime_sync_stats (vm, rt, n_calls, n_vectors, n_clocks,
579                                 n_ticks0, n_ticks1);
580   n->stats_total.suspends += p->n_suspends;
581   p->n_suspends = 0;
582 }
583
584 void
585 vlib_node_sync_stats (vlib_main_t * vm, vlib_node_t * n)
586 {
587   vlib_node_runtime_t *rt;
588
589   if (n->type == VLIB_NODE_TYPE_PROCESS)
590     {
591       /* Nothing to do for PROCESS nodes except in main thread */
592       if (vm != &vlib_global_main)
593         return;
594
595       vlib_process_t *p = vlib_get_process_from_node (vm, n);
596       n->stats_total.suspends += p->n_suspends;
597       p->n_suspends = 0;
598       rt = &p->node_runtime;
599     }
600   else
601     rt =
602       vec_elt_at_index (vm->node_main.nodes_by_type[n->type],
603                         n->runtime_index);
604
605   vlib_node_runtime_sync_stats (vm, rt, 0, 0, 0, 0, 0);
606
607   /* Sync up runtime next frame vector counters with main node structure. */
608   {
609     vlib_next_frame_t *nf;
610     uword i;
611     for (i = 0; i < rt->n_next_nodes; i++)
612       {
613         nf = vlib_node_runtime_get_next_frame (vm, rt, i);
614         vec_elt (n->n_vectors_by_next_node, i) +=
615           nf->vectors_since_last_overflow;
616         nf->vectors_since_last_overflow = 0;
617       }
618   }
619 }
620
621 always_inline u32
622 vlib_node_runtime_update_stats (vlib_main_t * vm,
623                                 vlib_node_runtime_t * node,
624                                 uword n_calls,
625                                 uword n_vectors, uword n_clocks,
626                                 uword n_ticks0, uword n_ticks1)
627 {
628   u32 ca0, ca1, v0, v1, cl0, cl1, r;
629   u32 ptick00, ptick01, ptick10, ptick11, pvec0, pvec1;
630
631   cl0 = cl1 = node->clocks_since_last_overflow;
632   ca0 = ca1 = node->calls_since_last_overflow;
633   v0 = v1 = node->vectors_since_last_overflow;
634   ptick00 = ptick01 = node->perf_counter0_ticks_since_last_overflow;
635   ptick10 = ptick11 = node->perf_counter1_ticks_since_last_overflow;
636   pvec0 = pvec1 = node->perf_counter_vectors_since_last_overflow;
637
638   ca1 = ca0 + n_calls;
639   v1 = v0 + n_vectors;
640   cl1 = cl0 + n_clocks;
641   ptick01 = ptick00 + n_ticks0;
642   ptick11 = ptick10 + n_ticks1;
643   pvec1 = pvec0 + n_vectors;
644
645   node->calls_since_last_overflow = ca1;
646   node->clocks_since_last_overflow = cl1;
647   node->vectors_since_last_overflow = v1;
648   node->perf_counter0_ticks_since_last_overflow = ptick01;
649   node->perf_counter1_ticks_since_last_overflow = ptick11;
650   node->perf_counter_vectors_since_last_overflow = pvec1;
651
652   node->max_clock_n = node->max_clock > n_clocks ?
653     node->max_clock_n : n_vectors;
654   node->max_clock = node->max_clock > n_clocks ? node->max_clock : n_clocks;
655
656   r = vlib_node_runtime_update_main_loop_vector_stats (vm, node, n_vectors);
657
658   if (PREDICT_FALSE (ca1 < ca0 || v1 < v0 || cl1 < cl0) || (ptick01 < ptick00)
659       || (ptick11 < ptick10) || (pvec1 < pvec0))
660     {
661       node->calls_since_last_overflow = ca0;
662       node->clocks_since_last_overflow = cl0;
663       node->vectors_since_last_overflow = v0;
664       node->perf_counter0_ticks_since_last_overflow = ptick00;
665       node->perf_counter1_ticks_since_last_overflow = ptick10;
666       node->perf_counter_vectors_since_last_overflow = pvec0;
667
668       vlib_node_runtime_sync_stats (vm, node, n_calls, n_vectors, n_clocks,
669                                     n_ticks0, n_ticks1);
670     }
671
672   return r;
673 }
674
675 static inline void
676 vlib_node_runtime_perf_counter (vlib_main_t * vm, u64 * pmc0, u64 * pmc1)
677 {
678   *pmc0 = 0;
679   *pmc1 = 0;
680   if (PREDICT_FALSE (vm->vlib_node_runtime_perf_counter_cb != 0))
681     (*vm->vlib_node_runtime_perf_counter_cb) (vm, pmc0, pmc1);
682 }
683
684 always_inline void
685 vlib_process_update_stats (vlib_main_t * vm,
686                            vlib_process_t * p,
687                            uword n_calls, uword n_vectors, uword n_clocks)
688 {
689   vlib_node_runtime_update_stats (vm, &p->node_runtime,
690                                   n_calls, n_vectors, n_clocks, 0ULL, 0ULL);
691 }
692
693 static clib_error_t *
694 vlib_cli_elog_clear (vlib_main_t * vm,
695                      unformat_input_t * input, vlib_cli_command_t * cmd)
696 {
697   elog_reset_buffer (&vm->elog_main);
698   return 0;
699 }
700
701 /* *INDENT-OFF* */
702 VLIB_CLI_COMMAND (elog_clear_cli, static) = {
703   .path = "event-logger clear",
704   .short_help = "Clear the event log",
705   .function = vlib_cli_elog_clear,
706 };
707 /* *INDENT-ON* */
708
709 #ifdef CLIB_UNIX
710 static clib_error_t *
711 elog_save_buffer (vlib_main_t * vm,
712                   unformat_input_t * input, vlib_cli_command_t * cmd)
713 {
714   elog_main_t *em = &vm->elog_main;
715   char *file, *chroot_file;
716   clib_error_t *error = 0;
717
718   if (!unformat (input, "%s", &file))
719     {
720       vlib_cli_output (vm, "expected file name, got `%U'",
721                        format_unformat_error, input);
722       return 0;
723     }
724
725   /* It's fairly hard to get "../oopsie" through unformat; just in case */
726   if (strstr (file, "..") || index (file, '/'))
727     {
728       vlib_cli_output (vm, "illegal characters in filename '%s'", file);
729       return 0;
730     }
731
732   chroot_file = (char *) format (0, "/tmp/%s%c", file, 0);
733
734   vec_free (file);
735
736   vlib_cli_output (vm, "Saving %wd of %wd events to %s",
737                    elog_n_events_in_buffer (em),
738                    elog_buffer_capacity (em), chroot_file);
739
740   vlib_worker_thread_barrier_sync (vm);
741   error = elog_write_file (em, chroot_file, 1 /* flush ring */ );
742   vlib_worker_thread_barrier_release (vm);
743   vec_free (chroot_file);
744   return error;
745 }
746
747 void
748 elog_post_mortem_dump (void)
749 {
750   vlib_main_t *vm = &vlib_global_main;
751   elog_main_t *em = &vm->elog_main;
752   u8 *filename;
753   clib_error_t *error;
754
755   if (!vm->elog_post_mortem_dump)
756     return;
757
758   filename = format (0, "/tmp/elog_post_mortem.%d%c", getpid (), 0);
759   error = elog_write_file (em, (char *) filename, 1 /* flush ring */ );
760   if (error)
761     clib_error_report (error);
762   vec_free (filename);
763 }
764
765 /* *INDENT-OFF* */
766 VLIB_CLI_COMMAND (elog_save_cli, static) = {
767   .path = "event-logger save",
768   .short_help = "event-logger save <filename> (saves log in /tmp/<filename>)",
769   .function = elog_save_buffer,
770 };
771 /* *INDENT-ON* */
772
773 static clib_error_t *
774 elog_stop (vlib_main_t * vm,
775            unformat_input_t * input, vlib_cli_command_t * cmd)
776 {
777   elog_main_t *em = &vm->elog_main;
778
779   em->n_total_events_disable_limit = em->n_total_events;
780
781   vlib_cli_output (vm, "Stopped the event logger...");
782   return 0;
783 }
784
785 /* *INDENT-OFF* */
786 VLIB_CLI_COMMAND (elog_stop_cli, static) = {
787   .path = "event-logger stop",
788   .short_help = "Stop the event-logger",
789   .function = elog_stop,
790 };
791 /* *INDENT-ON* */
792
793 static clib_error_t *
794 elog_restart (vlib_main_t * vm,
795               unformat_input_t * input, vlib_cli_command_t * cmd)
796 {
797   elog_main_t *em = &vm->elog_main;
798
799   em->n_total_events_disable_limit = ~0;
800
801   vlib_cli_output (vm, "Restarted the event logger...");
802   return 0;
803 }
804
805 /* *INDENT-OFF* */
806 VLIB_CLI_COMMAND (elog_restart_cli, static) = {
807   .path = "event-logger restart",
808   .short_help = "Restart the event-logger",
809   .function = elog_restart,
810 };
811 /* *INDENT-ON* */
812
813 static clib_error_t *
814 elog_resize (vlib_main_t * vm,
815              unformat_input_t * input, vlib_cli_command_t * cmd)
816 {
817   elog_main_t *em = &vm->elog_main;
818   u32 tmp;
819
820   /* Stop the parade */
821   elog_reset_buffer (&vm->elog_main);
822
823   if (unformat (input, "%d", &tmp))
824     {
825       elog_alloc (em, tmp);
826       em->n_total_events_disable_limit = ~0;
827     }
828   else
829     return clib_error_return (0, "Must specify how many events in the ring");
830
831   vlib_cli_output (vm, "Resized ring and restarted the event logger...");
832   return 0;
833 }
834
835 /* *INDENT-OFF* */
836 VLIB_CLI_COMMAND (elog_resize_cli, static) = {
837   .path = "event-logger resize",
838   .short_help = "event-logger resize <nnn>",
839   .function = elog_resize,
840 };
841 /* *INDENT-ON* */
842
843 #endif /* CLIB_UNIX */
844
845 static void
846 elog_show_buffer_internal (vlib_main_t * vm, u32 n_events_to_show)
847 {
848   elog_main_t *em = &vm->elog_main;
849   elog_event_t *e, *es;
850   f64 dt;
851
852   /* Show events in VLIB time since log clock starts after VLIB clock. */
853   dt = (em->init_time.cpu - vm->clib_time.init_cpu_time)
854     * vm->clib_time.seconds_per_clock;
855
856   es = elog_peek_events (em);
857   vlib_cli_output (vm, "%d of %d events in buffer, logger %s", vec_len (es),
858                    em->event_ring_size,
859                    em->n_total_events < em->n_total_events_disable_limit ?
860                    "running" : "stopped");
861   vec_foreach (e, es)
862   {
863     vlib_cli_output (vm, "%18.9f: %U",
864                      e->time + dt, format_elog_event, em, e);
865     n_events_to_show--;
866     if (n_events_to_show == 0)
867       break;
868   }
869   vec_free (es);
870
871 }
872
873 static clib_error_t *
874 elog_show_buffer (vlib_main_t * vm,
875                   unformat_input_t * input, vlib_cli_command_t * cmd)
876 {
877   u32 n_events_to_show;
878   clib_error_t *error = 0;
879
880   n_events_to_show = 250;
881   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
882     {
883       if (unformat (input, "%d", &n_events_to_show))
884         ;
885       else if (unformat (input, "all"))
886         n_events_to_show = ~0;
887       else
888         return unformat_parse_error (input);
889     }
890   elog_show_buffer_internal (vm, n_events_to_show);
891   return error;
892 }
893
894 /* *INDENT-OFF* */
895 VLIB_CLI_COMMAND (elog_show_cli, static) = {
896   .path = "show event-logger",
897   .short_help = "Show event logger info",
898   .function = elog_show_buffer,
899 };
900 /* *INDENT-ON* */
901
902 void
903 vlib_gdb_show_event_log (void)
904 {
905   elog_show_buffer_internal (vlib_get_main (), (u32) ~ 0);
906 }
907
908 static inline void
909 vlib_elog_main_loop_event (vlib_main_t * vm,
910                            u32 node_index,
911                            u64 time, u32 n_vectors, u32 is_return)
912 {
913   vlib_main_t *evm = &vlib_global_main;
914   elog_main_t *em = &evm->elog_main;
915
916   if (VLIB_ELOG_MAIN_LOOP && n_vectors)
917     elog_track (em,
918                 /* event type */
919                 vec_elt_at_index (is_return
920                                   ? evm->node_return_elog_event_types
921                                   : evm->node_call_elog_event_types,
922                                   node_index),
923                 /* track */
924                 (vm->thread_index ? &vlib_worker_threads[vm->thread_index].
925                  elog_track : &em->default_track),
926                 /* data to log */ n_vectors);
927 }
928
929 #if VLIB_BUFFER_TRACE_TRAJECTORY > 0
930 void (*vlib_buffer_trace_trajectory_cb) (vlib_buffer_t * b, u32 node_index);
931 void (*vlib_buffer_trace_trajectory_init_cb) (vlib_buffer_t * b);
932
933 void
934 vlib_buffer_trace_trajectory_init (vlib_buffer_t * b)
935 {
936   if (PREDICT_TRUE (vlib_buffer_trace_trajectory_init_cb != 0))
937     {
938       (*vlib_buffer_trace_trajectory_init_cb) (b);
939     }
940 }
941
942 #endif
943
944 static inline void
945 add_trajectory_trace (vlib_buffer_t * b, u32 node_index)
946 {
947 #if VLIB_BUFFER_TRACE_TRAJECTORY > 0
948   if (PREDICT_TRUE (vlib_buffer_trace_trajectory_cb != 0))
949     {
950       (*vlib_buffer_trace_trajectory_cb) (b, node_index);
951     }
952 #endif
953 }
954
955 u8 *format_vnet_buffer_flags (u8 * s, va_list * args) __attribute__ ((weak));
956 u8 *
957 format_vnet_buffer_flags (u8 * s, va_list * args)
958 {
959   s = format (s, "BUG STUB %s", __FUNCTION__);
960   return s;
961 }
962
963 u8 *format_vnet_buffer_opaque (u8 * s, va_list * args) __attribute__ ((weak));
964 u8 *
965 format_vnet_buffer_opaque (u8 * s, va_list * args)
966 {
967   s = format (s, "BUG STUB %s", __FUNCTION__);
968   return s;
969 }
970
971 u8 *format_vnet_buffer_opaque2 (u8 * s, va_list * args)
972   __attribute__ ((weak));
973 u8 *
974 format_vnet_buffer_opaque2 (u8 * s, va_list * args)
975 {
976   s = format (s, "BUG STUB %s", __FUNCTION__);
977   return s;
978 }
979
980 static u8 *
981 format_buffer_metadata (u8 * s, va_list * args)
982 {
983   vlib_buffer_t *b = va_arg (*args, vlib_buffer_t *);
984
985   s = format (s, "flags: %U\n", format_vnet_buffer_flags, b);
986   s = format (s, "current_data: %d, current_length: %d\n",
987               (i32) (b->current_data), (i32) (b->current_length));
988   s = format (s, "current_config_index: %d, flow_id: %x, next_buffer: %x\n",
989               b->current_config_index, b->flow_id, b->next_buffer);
990   s = format (s, "error: %d, ref_count: %d, buffer_pool_index: %d\n",
991               (u32) (b->error), (u32) (b->ref_count),
992               (u32) (b->buffer_pool_index));
993   s = format (s,
994               "trace_index: %d, len_not_first_buf: %d\n",
995               b->trace_index, b->total_length_not_including_first_buffer);
996   return s;
997 }
998
999 #define A(x) vec_add1(vm->pcap_buffer, (x))
1000
1001 static void
1002 dispatch_pcap_trace (vlib_main_t * vm,
1003                      vlib_node_runtime_t * node, vlib_frame_t * frame)
1004 {
1005   int i;
1006   vlib_buffer_t *bufs[VLIB_FRAME_SIZE], **bufp, *b;
1007   pcap_main_t *pm = &vm->dispatch_pcap_main;
1008   vlib_trace_main_t *tm = &vm->trace_main;
1009   u32 capture_size;
1010   vlib_node_t *n;
1011   i32 n_left;
1012   f64 time_now = vlib_time_now (vm);
1013   u32 *from;
1014   u8 *d;
1015   u8 string_count;
1016
1017   /* Input nodes don't have frames yet */
1018   if (frame == 0 || frame->n_vectors == 0)
1019     return;
1020
1021   from = vlib_frame_vector_args (frame);
1022   vlib_get_buffers (vm, from, bufs, frame->n_vectors);
1023   bufp = bufs;
1024
1025   n = vlib_get_node (vm, node->node_index);
1026
1027   for (i = 0; i < frame->n_vectors; i++)
1028     {
1029       if (PREDICT_TRUE (pm->n_packets_captured < pm->n_packets_to_capture))
1030         {
1031           b = bufp[i];
1032
1033           vec_reset_length (vm->pcap_buffer);
1034           string_count = 0;
1035
1036           /* Version, flags */
1037           A ((u8) VLIB_PCAP_MAJOR_VERSION);
1038           A ((u8) VLIB_PCAP_MINOR_VERSION);
1039           A (0 /* string_count */ );
1040           A (n->protocol_hint);
1041
1042           /* Buffer index (big endian) */
1043           A ((from[i] >> 24) & 0xff);
1044           A ((from[i] >> 16) & 0xff);
1045           A ((from[i] >> 8) & 0xff);
1046           A ((from[i] >> 0) & 0xff);
1047
1048           /* Node name, NULL-terminated ASCII */
1049           vm->pcap_buffer = format (vm->pcap_buffer, "%v%c", n->name, 0);
1050           string_count++;
1051
1052           vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1053                                     format_buffer_metadata, b, 0);
1054           string_count++;
1055           vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1056                                     format_vnet_buffer_opaque, b, 0);
1057           string_count++;
1058           vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1059                                     format_vnet_buffer_opaque2, b, 0);
1060           string_count++;
1061
1062           /* Is this packet traced? */
1063           if (PREDICT_FALSE (b->flags & VLIB_BUFFER_IS_TRACED))
1064             {
1065               vlib_trace_header_t **h
1066                 = pool_elt_at_index (tm->trace_buffer_pool, b->trace_index);
1067
1068               vm->pcap_buffer = format (vm->pcap_buffer, "%U%c",
1069                                         format_vlib_trace, vm, h[0], 0);
1070               string_count++;
1071             }
1072
1073           /* Save the string count */
1074           vm->pcap_buffer[2] = string_count;
1075
1076           /* Figure out how many bytes in the pcap trace */
1077           capture_size = vec_len (vm->pcap_buffer) +
1078             +vlib_buffer_length_in_chain (vm, b);
1079
1080           clib_spinlock_lock_if_init (&pm->lock);
1081           n_left = clib_min (capture_size, 16384);
1082           d = pcap_add_packet (pm, time_now, n_left, capture_size);
1083
1084           /* Copy the header */
1085           clib_memcpy_fast (d, vm->pcap_buffer, vec_len (vm->pcap_buffer));
1086           d += vec_len (vm->pcap_buffer);
1087
1088           n_left = clib_min
1089             (vlib_buffer_length_in_chain (vm, b),
1090              (16384 - vec_len (vm->pcap_buffer)));
1091           /* Copy the packet data */
1092           while (1)
1093             {
1094               u32 copy_length = clib_min ((u32) n_left, b->current_length);
1095               clib_memcpy_fast (d, b->data + b->current_data, copy_length);
1096               n_left -= b->current_length;
1097               if (n_left <= 0)
1098                 break;
1099               d += b->current_length;
1100               ASSERT (b->flags & VLIB_BUFFER_NEXT_PRESENT);
1101               b = vlib_get_buffer (vm, b->next_buffer);
1102             }
1103           clib_spinlock_unlock_if_init (&pm->lock);
1104         }
1105     }
1106 }
1107
1108 static_always_inline u64
1109 dispatch_node (vlib_main_t * vm,
1110                vlib_node_runtime_t * node,
1111                vlib_node_type_t type,
1112                vlib_node_state_t dispatch_state,
1113                vlib_frame_t * frame, u64 last_time_stamp)
1114 {
1115   uword n, v;
1116   u64 t;
1117   vlib_node_main_t *nm = &vm->node_main;
1118   vlib_next_frame_t *nf;
1119
1120   if (CLIB_DEBUG > 0)
1121     {
1122       vlib_node_t *n = vlib_get_node (vm, node->node_index);
1123       ASSERT (n->type == type);
1124     }
1125
1126   /* Only non-internal nodes may be disabled. */
1127   if (type != VLIB_NODE_TYPE_INTERNAL && node->state != dispatch_state)
1128     {
1129       ASSERT (type != VLIB_NODE_TYPE_INTERNAL);
1130       return last_time_stamp;
1131     }
1132
1133   if ((type == VLIB_NODE_TYPE_PRE_INPUT || type == VLIB_NODE_TYPE_INPUT)
1134       && dispatch_state != VLIB_NODE_STATE_INTERRUPT)
1135     {
1136       u32 c = node->input_main_loops_per_call;
1137       /* Only call node when count reaches zero. */
1138       if (c)
1139         {
1140           node->input_main_loops_per_call = c - 1;
1141           return last_time_stamp;
1142         }
1143     }
1144
1145   /* Speculatively prefetch next frames. */
1146   if (node->n_next_nodes > 0)
1147     {
1148       nf = vec_elt_at_index (nm->next_frames, node->next_frame_index);
1149       CLIB_PREFETCH (nf, 4 * sizeof (nf[0]), WRITE);
1150     }
1151
1152   vm->cpu_time_last_node_dispatch = last_time_stamp;
1153
1154   if (1 /* || vm->thread_index == node->thread_index */ )
1155     {
1156       u64 pmc_before[2], pmc_after[2], pmc_delta[2];
1157
1158       vlib_elog_main_loop_event (vm, node->node_index,
1159                                  last_time_stamp,
1160                                  frame ? frame->n_vectors : 0,
1161                                  /* is_after */ 0);
1162
1163       vlib_node_runtime_perf_counter (vm, &pmc_before[0], &pmc_before[1]);
1164
1165       /*
1166        * Turn this on if you run into
1167        * "bad monkey" contexts, and you want to know exactly
1168        * which nodes they've visited... See ixge.c...
1169        */
1170       if (VLIB_BUFFER_TRACE_TRAJECTORY && frame)
1171         {
1172           int i;
1173           u32 *from;
1174           from = vlib_frame_vector_args (frame);
1175           for (i = 0; i < frame->n_vectors; i++)
1176             {
1177               vlib_buffer_t *b = vlib_get_buffer (vm, from[i]);
1178               add_trajectory_trace (b, node->node_index);
1179             }
1180           if (PREDICT_FALSE (vm->dispatch_pcap_enable))
1181             dispatch_pcap_trace (vm, node, frame);
1182           n = node->function (vm, node, frame);
1183         }
1184       else
1185         {
1186           if (PREDICT_FALSE (vm->dispatch_pcap_enable))
1187             dispatch_pcap_trace (vm, node, frame);
1188           n = node->function (vm, node, frame);
1189         }
1190
1191       t = clib_cpu_time_now ();
1192
1193       /*
1194        * To validate accounting: pmc_delta = t - pmc_before;
1195        * perf ticks should equal clocks/pkt...
1196        */
1197       vlib_node_runtime_perf_counter (vm, &pmc_after[0], &pmc_after[1]);
1198
1199       pmc_delta[0] = pmc_after[0] - pmc_before[0];
1200       pmc_delta[1] = pmc_after[1] - pmc_before[1];
1201
1202       vlib_elog_main_loop_event (vm, node->node_index, t, n,    /* is_after */
1203                                  1);
1204
1205       vm->main_loop_vectors_processed += n;
1206       vm->main_loop_nodes_processed += n > 0;
1207
1208       v = vlib_node_runtime_update_stats (vm, node,
1209                                           /* n_calls */ 1,
1210                                           /* n_vectors */ n,
1211                                           /* n_clocks */ t - last_time_stamp,
1212                                           pmc_delta[0] /* PMC0 */ ,
1213                                           pmc_delta[1] /* PMC1 */ );
1214
1215       /* When in interrupt mode and vector rate crosses threshold switch to
1216          polling mode. */
1217       if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT)
1218           || (dispatch_state == VLIB_NODE_STATE_POLLING
1219               && (node->flags
1220                   & VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE)))
1221         {
1222 #ifdef DISPATCH_NODE_ELOG_REQUIRED
1223           ELOG_TYPE_DECLARE (e) =
1224           {
1225             .function = (char *) __FUNCTION__,.format =
1226               "%s vector length %d, switching to %s",.format_args =
1227               "T4i4t4",.n_enum_strings = 2,.enum_strings =
1228             {
1229           "interrupt", "polling",},};
1230           struct
1231           {
1232             u32 node_name, vector_length, is_polling;
1233           } *ed;
1234           vlib_worker_thread_t *w = vlib_worker_threads + vm->thread_index;
1235 #endif
1236
1237           if ((dispatch_state == VLIB_NODE_STATE_INTERRUPT
1238                && v >= nm->polling_threshold_vector_length) &&
1239               !(node->flags &
1240                 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE))
1241             {
1242               vlib_node_t *n = vlib_get_node (vm, node->node_index);
1243               n->state = VLIB_NODE_STATE_POLLING;
1244               node->state = VLIB_NODE_STATE_POLLING;
1245               node->flags &=
1246                 ~VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
1247               node->flags |=
1248                 VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1249               nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] -= 1;
1250               nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] += 1;
1251
1252 #ifdef DISPATCH_NODE_ELOG_REQUIRED
1253               ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1254                                     w->elog_track);
1255               ed->node_name = n->name_elog_string;
1256               ed->vector_length = v;
1257               ed->is_polling = 1;
1258 #endif
1259             }
1260           else if (dispatch_state == VLIB_NODE_STATE_POLLING
1261                    && v <= nm->interrupt_threshold_vector_length)
1262             {
1263               vlib_node_t *n = vlib_get_node (vm, node->node_index);
1264               if (node->flags &
1265                   VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE)
1266                 {
1267                   /* Switch to interrupt mode after dispatch in polling one more time.
1268                      This allows driver to re-enable interrupts. */
1269                   n->state = VLIB_NODE_STATE_INTERRUPT;
1270                   node->state = VLIB_NODE_STATE_INTERRUPT;
1271                   node->flags &=
1272                     ~VLIB_NODE_FLAG_SWITCH_FROM_INTERRUPT_TO_POLLING_MODE;
1273                   nm->input_node_counts_by_state[VLIB_NODE_STATE_POLLING] -=
1274                     1;
1275                   nm->input_node_counts_by_state[VLIB_NODE_STATE_INTERRUPT] +=
1276                     1;
1277
1278                 }
1279               else
1280                 {
1281                   node->flags |=
1282                     VLIB_NODE_FLAG_SWITCH_FROM_POLLING_TO_INTERRUPT_MODE;
1283 #ifdef DISPATCH_NODE_ELOG_REQUIRED
1284                   ed = ELOG_TRACK_DATA (&vlib_global_main.elog_main, e,
1285                                         w->elog_track);
1286                   ed->node_name = n->name_elog_string;
1287                   ed->vector_length = v;
1288                   ed->is_polling = 0;
1289 #endif
1290                 }
1291             }
1292         }
1293     }
1294
1295   return t;
1296 }
1297
1298 static u64
1299 dispatch_pending_node (vlib_main_t * vm, uword pending_frame_index,
1300                        u64 last_time_stamp)
1301 {
1302   vlib_node_main_t *nm = &vm->node_main;
1303   vlib_frame_t *f;
1304   vlib_next_frame_t *nf, nf_dummy;
1305   vlib_node_runtime_t *n;
1306   u32 restore_frame_index;
1307   vlib_pending_frame_t *p;
1308
1309   /* See comment below about dangling references to nm->pending_frames */
1310   p = nm->pending_frames + pending_frame_index;
1311
1312   n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INTERNAL],
1313                         p->node_runtime_index);
1314
1315   f = vlib_get_frame (vm, p->frame_index);
1316   if (p->next_frame_index == VLIB_PENDING_FRAME_NO_NEXT_FRAME)
1317     {
1318       /* No next frame: so use dummy on stack. */
1319       nf = &nf_dummy;
1320       nf->flags = f->frame_flags & VLIB_NODE_FLAG_TRACE;
1321       nf->frame_index = ~p->frame_index;
1322     }
1323   else
1324     nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
1325
1326   ASSERT (f->frame_flags & VLIB_FRAME_IS_ALLOCATED);
1327
1328   /* Force allocation of new frame while current frame is being
1329      dispatched. */
1330   restore_frame_index = ~0;
1331   if (nf->frame_index == p->frame_index)
1332     {
1333       nf->frame_index = ~0;
1334       nf->flags &= ~VLIB_FRAME_IS_ALLOCATED;
1335       if (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH))
1336         restore_frame_index = p->frame_index;
1337     }
1338
1339   /* Frame must be pending. */
1340   ASSERT (f->frame_flags & VLIB_FRAME_PENDING);
1341   ASSERT (f->n_vectors > 0);
1342
1343   /* Copy trace flag from next frame to node.
1344      Trace flag indicates that at least one vector in the dispatched
1345      frame is traced. */
1346   n->flags &= ~VLIB_NODE_FLAG_TRACE;
1347   n->flags |= (nf->flags & VLIB_FRAME_TRACE) ? VLIB_NODE_FLAG_TRACE : 0;
1348   nf->flags &= ~VLIB_FRAME_TRACE;
1349
1350   last_time_stamp = dispatch_node (vm, n,
1351                                    VLIB_NODE_TYPE_INTERNAL,
1352                                    VLIB_NODE_STATE_POLLING,
1353                                    f, last_time_stamp);
1354
1355   f->frame_flags &= ~VLIB_FRAME_PENDING;
1356
1357   /* Frame is ready to be used again, so restore it. */
1358   if (restore_frame_index != ~0)
1359     {
1360       /*
1361        * We musn't restore a frame that is flagged to be freed. This
1362        * shouldn't happen since frames to be freed post dispatch are
1363        * those used when the to-node frame becomes full i.e. they form a
1364        * sort of queue of frames to a single node. If we get here then
1365        * the to-node frame and the pending frame *were* the same, and so
1366        * we removed the to-node frame.  Therefore this frame is no
1367        * longer part of the queue for that node and hence it cannot be
1368        * it's overspill.
1369        */
1370       ASSERT (!(f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH));
1371
1372       /*
1373        * NB: dispatching node n can result in the creation and scheduling
1374        * of new frames, and hence in the reallocation of nm->pending_frames.
1375        * Recompute p, or no supper. This was broken for more than 10 years.
1376        */
1377       p = nm->pending_frames + pending_frame_index;
1378
1379       /*
1380        * p->next_frame_index can change during node dispatch if node
1381        * function decides to change graph hook up.
1382        */
1383       nf = vec_elt_at_index (nm->next_frames, p->next_frame_index);
1384       nf->flags |= VLIB_FRAME_IS_ALLOCATED;
1385
1386       if (~0 == nf->frame_index)
1387         {
1388           /* no new frame has been assigned to this node, use the saved one */
1389           nf->frame_index = restore_frame_index;
1390           f->n_vectors = 0;
1391         }
1392       else
1393         {
1394           /* The node has gained a frame, implying packets from the current frame
1395              were re-queued to this same node. we don't need the saved one
1396              anymore */
1397           vlib_frame_free (vm, n, f);
1398         }
1399     }
1400   else
1401     {
1402       if (f->frame_flags & VLIB_FRAME_FREE_AFTER_DISPATCH)
1403         {
1404           ASSERT (!(n->flags & VLIB_NODE_FLAG_FRAME_NO_FREE_AFTER_DISPATCH));
1405           vlib_frame_free (vm, n, f);
1406         }
1407     }
1408
1409   return last_time_stamp;
1410 }
1411
1412 always_inline uword
1413 vlib_process_stack_is_valid (vlib_process_t * p)
1414 {
1415   return p->stack[0] == VLIB_PROCESS_STACK_MAGIC;
1416 }
1417
1418 typedef struct
1419 {
1420   vlib_main_t *vm;
1421   vlib_process_t *process;
1422   vlib_frame_t *frame;
1423 } vlib_process_bootstrap_args_t;
1424
1425 /* Called in process stack. */
1426 static uword
1427 vlib_process_bootstrap (uword _a)
1428 {
1429   vlib_process_bootstrap_args_t *a;
1430   vlib_main_t *vm;
1431   vlib_node_runtime_t *node;
1432   vlib_frame_t *f;
1433   vlib_process_t *p;
1434   uword n;
1435
1436   a = uword_to_pointer (_a, vlib_process_bootstrap_args_t *);
1437
1438   vm = a->vm;
1439   p = a->process;
1440   f = a->frame;
1441   node = &p->node_runtime;
1442
1443   n = node->function (vm, node, f);
1444
1445   ASSERT (vlib_process_stack_is_valid (p));
1446
1447   clib_longjmp (&p->return_longjmp, n);
1448
1449   return n;
1450 }
1451
1452 /* Called in main stack. */
1453 static_always_inline uword
1454 vlib_process_startup (vlib_main_t * vm, vlib_process_t * p, vlib_frame_t * f)
1455 {
1456   vlib_process_bootstrap_args_t a;
1457   uword r;
1458
1459   a.vm = vm;
1460   a.process = p;
1461   a.frame = f;
1462
1463   r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1464   if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
1465     r = clib_calljmp (vlib_process_bootstrap, pointer_to_uword (&a),
1466                       (void *) p->stack + (1 << p->log2_n_stack_bytes));
1467
1468   return r;
1469 }
1470
1471 static_always_inline uword
1472 vlib_process_resume (vlib_process_t * p)
1473 {
1474   uword r;
1475   p->flags &= ~(VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1476                 | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT
1477                 | VLIB_PROCESS_RESUME_PENDING);
1478   r = clib_setjmp (&p->return_longjmp, VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1479   if (r == VLIB_PROCESS_RETURN_LONGJMP_RETURN)
1480     clib_longjmp (&p->resume_longjmp, VLIB_PROCESS_RESUME_LONGJMP_RESUME);
1481   return r;
1482 }
1483
1484 static u64
1485 dispatch_process (vlib_main_t * vm,
1486                   vlib_process_t * p, vlib_frame_t * f, u64 last_time_stamp)
1487 {
1488   vlib_node_main_t *nm = &vm->node_main;
1489   vlib_node_runtime_t *node_runtime = &p->node_runtime;
1490   vlib_node_t *node = vlib_get_node (vm, node_runtime->node_index);
1491   u32 old_process_index;
1492   u64 t;
1493   uword n_vectors, is_suspend;
1494
1495   if (node->state != VLIB_NODE_STATE_POLLING
1496       || (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1497                       | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT)))
1498     return last_time_stamp;
1499
1500   p->flags |= VLIB_PROCESS_IS_RUNNING;
1501
1502   t = last_time_stamp;
1503   vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1504                              f ? f->n_vectors : 0, /* is_after */ 0);
1505
1506   /* Save away current process for suspend. */
1507   old_process_index = nm->current_process_index;
1508   nm->current_process_index = node->runtime_index;
1509
1510   n_vectors = vlib_process_startup (vm, p, f);
1511
1512   nm->current_process_index = old_process_index;
1513
1514   ASSERT (n_vectors != VLIB_PROCESS_RETURN_LONGJMP_RETURN);
1515   is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1516   if (is_suspend)
1517     {
1518       vlib_pending_frame_t *pf;
1519
1520       n_vectors = 0;
1521       pool_get (nm->suspended_process_frames, pf);
1522       pf->node_runtime_index = node->runtime_index;
1523       pf->frame_index = f ? vlib_frame_index (vm, f) : ~0;
1524       pf->next_frame_index = ~0;
1525
1526       p->n_suspends += 1;
1527       p->suspended_process_frame_index = pf - nm->suspended_process_frames;
1528
1529       if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
1530         {
1531           TWT (tw_timer_wheel) * tw =
1532             (TWT (tw_timer_wheel) *) nm->timing_wheel;
1533           p->stop_timer_handle =
1534             TW (tw_timer_start) (tw,
1535                                  vlib_timing_wheel_data_set_suspended_process
1536                                  (node->runtime_index) /* [sic] pool idex */ ,
1537                                  0 /* timer_id */ ,
1538                                  p->resume_clock_interval);
1539         }
1540     }
1541   else
1542     p->flags &= ~VLIB_PROCESS_IS_RUNNING;
1543
1544   t = clib_cpu_time_now ();
1545
1546   vlib_elog_main_loop_event (vm, node_runtime->node_index, t, is_suspend,
1547                              /* is_after */ 1);
1548
1549   vlib_process_update_stats (vm, p,
1550                              /* n_calls */ !is_suspend,
1551                              /* n_vectors */ n_vectors,
1552                              /* n_clocks */ t - last_time_stamp);
1553
1554   return t;
1555 }
1556
1557 void
1558 vlib_start_process (vlib_main_t * vm, uword process_index)
1559 {
1560   vlib_node_main_t *nm = &vm->node_main;
1561   vlib_process_t *p = vec_elt (nm->processes, process_index);
1562   dispatch_process (vm, p, /* frame */ 0, /* cpu_time_now */ 0);
1563 }
1564
1565 static u64
1566 dispatch_suspended_process (vlib_main_t * vm,
1567                             uword process_index, u64 last_time_stamp)
1568 {
1569   vlib_node_main_t *nm = &vm->node_main;
1570   vlib_node_runtime_t *node_runtime;
1571   vlib_node_t *node;
1572   vlib_frame_t *f;
1573   vlib_process_t *p;
1574   vlib_pending_frame_t *pf;
1575   u64 t, n_vectors, is_suspend;
1576
1577   t = last_time_stamp;
1578
1579   p = vec_elt (nm->processes, process_index);
1580   if (PREDICT_FALSE (!(p->flags & VLIB_PROCESS_IS_RUNNING)))
1581     return last_time_stamp;
1582
1583   ASSERT (p->flags & (VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK
1584                       | VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_EVENT));
1585
1586   pf = pool_elt_at_index (nm->suspended_process_frames,
1587                           p->suspended_process_frame_index);
1588
1589   node_runtime = &p->node_runtime;
1590   node = vlib_get_node (vm, node_runtime->node_index);
1591   f = pf->frame_index != ~0 ? vlib_get_frame (vm, pf->frame_index) : 0;
1592
1593   vlib_elog_main_loop_event (vm, node_runtime->node_index, t,
1594                              f ? f->n_vectors : 0, /* is_after */ 0);
1595
1596   /* Save away current process for suspend. */
1597   nm->current_process_index = node->runtime_index;
1598
1599   n_vectors = vlib_process_resume (p);
1600   t = clib_cpu_time_now ();
1601
1602   nm->current_process_index = ~0;
1603
1604   is_suspend = n_vectors == VLIB_PROCESS_RETURN_LONGJMP_SUSPEND;
1605   if (is_suspend)
1606     {
1607       /* Suspend it again. */
1608       n_vectors = 0;
1609       p->n_suspends += 1;
1610       if (p->flags & VLIB_PROCESS_IS_SUSPENDED_WAITING_FOR_CLOCK)
1611         {
1612           p->stop_timer_handle =
1613             TW (tw_timer_start) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
1614                                  vlib_timing_wheel_data_set_suspended_process
1615                                  (node->runtime_index) /* [sic] pool idex */ ,
1616                                  0 /* timer_id */ ,
1617                                  p->resume_clock_interval);
1618         }
1619     }
1620   else
1621     {
1622       p->flags &= ~VLIB_PROCESS_IS_RUNNING;
1623       pool_put_index (nm->suspended_process_frames,
1624                       p->suspended_process_frame_index);
1625       p->suspended_process_frame_index = ~0;
1626     }
1627
1628   t = clib_cpu_time_now ();
1629   vlib_elog_main_loop_event (vm, node_runtime->node_index, t, !is_suspend,
1630                              /* is_after */ 1);
1631
1632   vlib_process_update_stats (vm, p,
1633                              /* n_calls */ !is_suspend,
1634                              /* n_vectors */ n_vectors,
1635                              /* n_clocks */ t - last_time_stamp);
1636
1637   return t;
1638 }
1639
1640 void vl_api_send_pending_rpc_requests (vlib_main_t *) __attribute__ ((weak));
1641 void
1642 vl_api_send_pending_rpc_requests (vlib_main_t * vm)
1643 {
1644 }
1645
1646
1647 static_always_inline void
1648 vlib_main_or_worker_loop (vlib_main_t * vm, int is_main)
1649 {
1650   vlib_node_main_t *nm = &vm->node_main;
1651   vlib_thread_main_t *tm = vlib_get_thread_main ();
1652   uword i;
1653   u64 cpu_time_now;
1654   vlib_frame_queue_main_t *fqm;
1655   u32 *last_node_runtime_indices = 0;
1656
1657   /* Initialize pending node vector. */
1658   if (is_main)
1659     {
1660       vec_resize (nm->pending_frames, 32);
1661       _vec_len (nm->pending_frames) = 0;
1662     }
1663
1664   /* Mark time of main loop start. */
1665   if (is_main)
1666     {
1667       cpu_time_now = vm->clib_time.last_cpu_time;
1668       vm->cpu_time_main_loop_start = cpu_time_now;
1669     }
1670   else
1671     cpu_time_now = clib_cpu_time_now ();
1672
1673   /* Pre-allocate interupt runtime indices and lock. */
1674   vec_alloc (nm->pending_interrupt_node_runtime_indices, 32);
1675   vec_alloc (last_node_runtime_indices, 32);
1676   if (!is_main)
1677     clib_spinlock_init (&nm->pending_interrupt_lock);
1678
1679   /* Pre-allocate expired nodes. */
1680   if (!nm->polling_threshold_vector_length)
1681     nm->polling_threshold_vector_length = 10;
1682   if (!nm->interrupt_threshold_vector_length)
1683     nm->interrupt_threshold_vector_length = 5;
1684
1685   vm->cpu_id = clib_get_current_cpu_id ();
1686   vm->numa_node = clib_get_current_numa_node ();
1687
1688   /* Start all processes. */
1689   if (is_main)
1690     {
1691       uword i;
1692       nm->current_process_index = ~0;
1693       for (i = 0; i < vec_len (nm->processes); i++)
1694         cpu_time_now = dispatch_process (vm, nm->processes[i], /* frame */ 0,
1695                                          cpu_time_now);
1696     }
1697
1698   while (1)
1699     {
1700       vlib_node_runtime_t *n;
1701
1702       if (PREDICT_FALSE (_vec_len (vm->pending_rpc_requests) > 0))
1703         {
1704           if (!is_main)
1705             vl_api_send_pending_rpc_requests (vm);
1706         }
1707
1708       if (!is_main)
1709         {
1710           vlib_worker_thread_barrier_check ();
1711           vec_foreach (fqm, tm->frame_queue_mains)
1712             vlib_frame_queue_dequeue (vm, fqm);
1713           if (PREDICT_FALSE (vm->worker_thread_main_loop_callback != 0))
1714             ((void (*)(vlib_main_t *)) vm->worker_thread_main_loop_callback)
1715               (vm);
1716         }
1717
1718       /* Process pre-input nodes. */
1719       vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_PRE_INPUT])
1720         cpu_time_now = dispatch_node (vm, n,
1721                                       VLIB_NODE_TYPE_PRE_INPUT,
1722                                       VLIB_NODE_STATE_POLLING,
1723                                       /* frame */ 0,
1724                                       cpu_time_now);
1725
1726       /* Next process input nodes. */
1727       vec_foreach (n, nm->nodes_by_type[VLIB_NODE_TYPE_INPUT])
1728         cpu_time_now = dispatch_node (vm, n,
1729                                       VLIB_NODE_TYPE_INPUT,
1730                                       VLIB_NODE_STATE_POLLING,
1731                                       /* frame */ 0,
1732                                       cpu_time_now);
1733
1734       if (PREDICT_TRUE (is_main && vm->queue_signal_pending == 0))
1735         vm->queue_signal_callback (vm);
1736
1737       /* Next handle interrupts. */
1738       {
1739         /* unlocked read, for performance */
1740         uword l = _vec_len (nm->pending_interrupt_node_runtime_indices);
1741         uword i;
1742         if (PREDICT_FALSE (l > 0))
1743           {
1744             u32 *tmp;
1745             if (!is_main)
1746               {
1747                 clib_spinlock_lock (&nm->pending_interrupt_lock);
1748                 /* Re-read w/ lock held, in case another thread added an item */
1749                 l = _vec_len (nm->pending_interrupt_node_runtime_indices);
1750               }
1751
1752             tmp = nm->pending_interrupt_node_runtime_indices;
1753             nm->pending_interrupt_node_runtime_indices =
1754               last_node_runtime_indices;
1755             last_node_runtime_indices = tmp;
1756             _vec_len (last_node_runtime_indices) = 0;
1757             if (!is_main)
1758               clib_spinlock_unlock (&nm->pending_interrupt_lock);
1759             for (i = 0; i < l; i++)
1760               {
1761                 n = vec_elt_at_index (nm->nodes_by_type[VLIB_NODE_TYPE_INPUT],
1762                                       last_node_runtime_indices[i]);
1763                 cpu_time_now =
1764                   dispatch_node (vm, n, VLIB_NODE_TYPE_INPUT,
1765                                  VLIB_NODE_STATE_INTERRUPT,
1766                                  /* frame */ 0,
1767                                  cpu_time_now);
1768               }
1769           }
1770       }
1771       /* Input nodes may have added work to the pending vector.
1772          Process pending vector until there is nothing left.
1773          All pending vectors will be processed from input -> output. */
1774       for (i = 0; i < _vec_len (nm->pending_frames); i++)
1775         cpu_time_now = dispatch_pending_node (vm, i, cpu_time_now);
1776       /* Reset pending vector for next iteration. */
1777       _vec_len (nm->pending_frames) = 0;
1778
1779       if (is_main)
1780         {
1781           /* Check if process nodes have expired from timing wheel. */
1782           ASSERT (nm->data_from_advancing_timing_wheel != 0);
1783
1784           nm->data_from_advancing_timing_wheel =
1785             TW (tw_timer_expire_timers_vec)
1786             ((TWT (tw_timer_wheel) *) nm->timing_wheel, vlib_time_now (vm),
1787              nm->data_from_advancing_timing_wheel);
1788
1789           ASSERT (nm->data_from_advancing_timing_wheel != 0);
1790
1791           if (PREDICT_FALSE
1792               (_vec_len (nm->data_from_advancing_timing_wheel) > 0))
1793             {
1794               uword i;
1795
1796               for (i = 0; i < _vec_len (nm->data_from_advancing_timing_wheel);
1797                    i++)
1798                 {
1799                   u32 d = nm->data_from_advancing_timing_wheel[i];
1800                   u32 di = vlib_timing_wheel_data_get_index (d);
1801
1802                   if (vlib_timing_wheel_data_is_timed_event (d))
1803                     {
1804                       vlib_signal_timed_event_data_t *te =
1805                         pool_elt_at_index (nm->signal_timed_event_data_pool,
1806                                            di);
1807                       vlib_node_t *n =
1808                         vlib_get_node (vm, te->process_node_index);
1809                       vlib_process_t *p =
1810                         vec_elt (nm->processes, n->runtime_index);
1811                       void *data;
1812                       data =
1813                         vlib_process_signal_event_helper (nm, n, p,
1814                                                           te->event_type_index,
1815                                                           te->n_data_elts,
1816                                                           te->n_data_elt_bytes);
1817                       if (te->n_data_bytes < sizeof (te->inline_event_data))
1818                         clib_memcpy_fast (data, te->inline_event_data,
1819                                           te->n_data_bytes);
1820                       else
1821                         {
1822                           clib_memcpy_fast (data, te->event_data_as_vector,
1823                                             te->n_data_bytes);
1824                           vec_free (te->event_data_as_vector);
1825                         }
1826                       pool_put (nm->signal_timed_event_data_pool, te);
1827                     }
1828                   else
1829                     {
1830                       cpu_time_now = clib_cpu_time_now ();
1831                       cpu_time_now =
1832                         dispatch_suspended_process (vm, di, cpu_time_now);
1833                     }
1834                 }
1835               _vec_len (nm->data_from_advancing_timing_wheel) = 0;
1836             }
1837         }
1838       vlib_increment_main_loop_counter (vm);
1839
1840       /* Record time stamp in case there are no enabled nodes and above
1841          calls do not update time stamp. */
1842       cpu_time_now = clib_cpu_time_now ();
1843     }
1844 }
1845
1846 static void
1847 vlib_main_loop (vlib_main_t * vm)
1848 {
1849   vlib_main_or_worker_loop (vm, /* is_main */ 1);
1850 }
1851
1852 void
1853 vlib_worker_loop (vlib_main_t * vm)
1854 {
1855   vlib_main_or_worker_loop (vm, /* is_main */ 0);
1856 }
1857
1858 vlib_main_t vlib_global_main;
1859
1860 static clib_error_t *
1861 vlib_main_configure (vlib_main_t * vm, unformat_input_t * input)
1862 {
1863   int turn_on_mem_trace = 0;
1864
1865   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1866     {
1867       if (unformat (input, "memory-trace"))
1868         turn_on_mem_trace = 1;
1869
1870       else if (unformat (input, "elog-events %d",
1871                          &vm->elog_main.event_ring_size))
1872         ;
1873       else if (unformat (input, "elog-post-mortem-dump"))
1874         vm->elog_post_mortem_dump = 1;
1875       else
1876         return unformat_parse_error (input);
1877     }
1878
1879   unformat_free (input);
1880
1881   /* Enable memory trace as early as possible. */
1882   if (turn_on_mem_trace)
1883     clib_mem_trace (1);
1884
1885   return 0;
1886 }
1887
1888 VLIB_EARLY_CONFIG_FUNCTION (vlib_main_configure, "vlib");
1889
1890 static void
1891 dummy_queue_signal_callback (vlib_main_t * vm)
1892 {
1893 }
1894
1895 #define foreach_weak_reference_stub             \
1896 _(vlib_map_stat_segment_init)                   \
1897 _(vpe_api_init)                                 \
1898 _(vlibmemory_init)                              \
1899 _(map_api_segment_init)
1900
1901 #define _(name)                                                 \
1902 clib_error_t *name (vlib_main_t *vm) __attribute__((weak));     \
1903 clib_error_t *name (vlib_main_t *vm) { return 0; }
1904 foreach_weak_reference_stub;
1905 #undef _
1906
1907 /* Main function. */
1908 int
1909 vlib_main (vlib_main_t * volatile vm, unformat_input_t * input)
1910 {
1911   clib_error_t *volatile error;
1912   vlib_node_main_t *nm = &vm->node_main;
1913
1914   vm->queue_signal_callback = dummy_queue_signal_callback;
1915
1916   clib_time_init (&vm->clib_time);
1917
1918   /* Turn on event log. */
1919   if (!vm->elog_main.event_ring_size)
1920     vm->elog_main.event_ring_size = 128 << 10;
1921   elog_init (&vm->elog_main, vm->elog_main.event_ring_size);
1922   elog_enable_disable (&vm->elog_main, 1);
1923
1924   /* Default name. */
1925   if (!vm->name)
1926     vm->name = "VLIB";
1927
1928   if ((error = vlib_physmem_init (vm)))
1929     {
1930       clib_error_report (error);
1931       goto done;
1932     }
1933
1934   if ((error = vlib_buffer_main_init (vm)))
1935     {
1936       clib_error_report (error);
1937       goto done;
1938     }
1939
1940   if ((error = vlib_thread_init (vm)))
1941     {
1942       clib_error_report (error);
1943       goto done;
1944     }
1945
1946   if ((error = vlib_map_stat_segment_init (vm)))
1947     {
1948       clib_error_report (error);
1949       goto done;
1950     }
1951
1952   /* Register static nodes so that init functions may use them. */
1953   vlib_register_all_static_nodes (vm);
1954
1955   /* Set seed for random number generator.
1956      Allow user to specify seed to make random sequence deterministic. */
1957   if (!unformat (input, "seed %wd", &vm->random_seed))
1958     vm->random_seed = clib_cpu_time_now ();
1959   clib_random_buffer_init (&vm->random_buffer, vm->random_seed);
1960
1961   /* Initialize node graph. */
1962   if ((error = vlib_node_main_init (vm)))
1963     {
1964       /* Arrange for graph hook up error to not be fatal when debugging. */
1965       if (CLIB_DEBUG > 0)
1966         clib_error_report (error);
1967       else
1968         goto done;
1969     }
1970
1971   /* Direct call / weak reference, for vlib standalone use-cases */
1972   if ((error = vpe_api_init (vm)))
1973     {
1974       clib_error_report (error);
1975       goto done;
1976     }
1977
1978   if ((error = vlibmemory_init (vm)))
1979     {
1980       clib_error_report (error);
1981       goto done;
1982     }
1983
1984   if ((error = map_api_segment_init (vm)))
1985     {
1986       clib_error_report (error);
1987       goto done;
1988     }
1989
1990   /* See unix/main.c; most likely already set up */
1991   if (vm->init_functions_called == 0)
1992     vm->init_functions_called = hash_create (0, /* value bytes */ 0);
1993   if ((error = vlib_call_all_init_functions (vm)))
1994     goto done;
1995
1996   nm->timing_wheel = clib_mem_alloc_aligned (sizeof (TWT (tw_timer_wheel)),
1997                                              CLIB_CACHE_LINE_BYTES);
1998
1999   vec_validate (nm->data_from_advancing_timing_wheel, 10);
2000   _vec_len (nm->data_from_advancing_timing_wheel) = 0;
2001
2002   /* Create the process timing wheel */
2003   TW (tw_timer_wheel_init) ((TWT (tw_timer_wheel) *) nm->timing_wheel,
2004                             0 /* no callback */ ,
2005                             10e-6 /* timer period 10us */ ,
2006                             ~0 /* max expirations per call */ );
2007
2008   vec_validate (vm->pending_rpc_requests, 0);
2009   _vec_len (vm->pending_rpc_requests) = 0;
2010   vec_validate (vm->processing_rpc_requests, 0);
2011   _vec_len (vm->processing_rpc_requests) = 0;
2012
2013   switch (clib_setjmp (&vm->main_loop_exit, VLIB_MAIN_LOOP_EXIT_NONE))
2014     {
2015     case VLIB_MAIN_LOOP_EXIT_NONE:
2016       vm->main_loop_exit_set = 1;
2017       break;
2018
2019     case VLIB_MAIN_LOOP_EXIT_CLI:
2020       goto done;
2021
2022     default:
2023       error = vm->main_loop_error;
2024       goto done;
2025     }
2026
2027   if ((error = vlib_call_all_config_functions (vm, input, 0 /* is_early */ )))
2028     goto done;
2029
2030   /* Call all main loop enter functions. */
2031   {
2032     clib_error_t *sub_error;
2033     sub_error = vlib_call_all_main_loop_enter_functions (vm);
2034     if (sub_error)
2035       clib_error_report (sub_error);
2036   }
2037
2038   vlib_main_loop (vm);
2039
2040 done:
2041   /* Call all exit functions. */
2042   {
2043     clib_error_t *sub_error;
2044     sub_error = vlib_call_all_main_loop_exit_functions (vm);
2045     if (sub_error)
2046       clib_error_report (sub_error);
2047   }
2048
2049   if (error)
2050     clib_error_report (error);
2051
2052   return 0;
2053 }
2054
2055 static inline clib_error_t *
2056 pcap_dispatch_trace_command_internal (vlib_main_t * vm,
2057                                       unformat_input_t * input,
2058                                       vlib_cli_command_t * cmd, int rx_tx)
2059 {
2060 #define PCAP_DEF_PKT_TO_CAPTURE (100)
2061
2062   unformat_input_t _line_input, *line_input = &_line_input;
2063   pcap_main_t *pm = &vm->dispatch_pcap_main;
2064   u8 *filename;
2065   u8 *chroot_filename = 0;
2066   u32 max = 0;
2067   int enabled = 0;
2068   int errorFlag = 0;
2069   clib_error_t *error = 0;
2070   u32 node_index, add;
2071   vlib_trace_main_t *tm;
2072   vlib_trace_node_t *tn;
2073
2074   /* Get a line of input. */
2075   if (!unformat_user (input, unformat_line_input, line_input))
2076     return 0;
2077
2078   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
2079     {
2080       if (unformat (line_input, "on"))
2081         {
2082           if (vm->dispatch_pcap_enable == 0)
2083             {
2084               enabled = 1;
2085             }
2086           else
2087             {
2088               vlib_cli_output (vm, "pcap dispatch capture already on...");
2089               errorFlag = 1;
2090               break;
2091             }
2092         }
2093       else if (unformat (line_input, "off"))
2094         {
2095           if (vm->dispatch_pcap_enable)
2096             {
2097               vlib_cli_output
2098                 (vm, "captured %d pkts...", pm->n_packets_captured);
2099               if (pm->n_packets_captured)
2100                 {
2101                   pm->n_packets_to_capture = pm->n_packets_captured;
2102                   error = pcap_write (pm);
2103                   if (error)
2104                     clib_error_report (error);
2105                   else
2106                     vlib_cli_output (vm, "saved to %s...", pm->file_name);
2107                 }
2108               vm->dispatch_pcap_enable = 0;
2109             }
2110           else
2111             {
2112               vlib_cli_output (vm, "pcap tx capture already off...");
2113               errorFlag = 1;
2114               break;
2115             }
2116         }
2117       else if (unformat (line_input, "max %d", &max))
2118         {
2119           if (vm->dispatch_pcap_enable)
2120             {
2121               vlib_cli_output
2122                 (vm,
2123                  "can't change max value while pcap tx capture active...");
2124               errorFlag = 1;
2125               break;
2126             }
2127           pm->n_packets_to_capture = max;
2128         }
2129       else
2130         if (unformat
2131             (line_input, "file %U", unformat_vlib_tmpfile, &filename))
2132         {
2133           if (vm->dispatch_pcap_enable)
2134             {
2135               vlib_cli_output
2136                 (vm, "can't change file while pcap tx capture active...");
2137               errorFlag = 1;
2138               break;
2139             }
2140         }
2141       else if (unformat (line_input, "status"))
2142         {
2143           if (vm->dispatch_pcap_enable)
2144             {
2145               vlib_cli_output
2146                 (vm, "pcap dispatch capture is on: %d of %d pkts...",
2147                  pm->n_packets_captured, pm->n_packets_to_capture);
2148               vlib_cli_output (vm, "Capture to file %s", pm->file_name);
2149             }
2150           else
2151             {
2152               vlib_cli_output (vm, "pcap dispatch capture is off...");
2153             }
2154           break;
2155         }
2156       else if (unformat (line_input, "buffer-trace %U %d",
2157                          unformat_vlib_node, vm, &node_index, &add))
2158         {
2159           if (vnet_trace_dummy == 0)
2160             vec_validate_aligned (vnet_trace_dummy, 2048,
2161                                   CLIB_CACHE_LINE_BYTES);
2162           vlib_cli_output (vm, "Buffer tracing of %d pkts from %U enabled...",
2163                            add, format_vlib_node_name, vm, node_index);
2164
2165           /* *INDENT-OFF* */
2166           foreach_vlib_main ((
2167             {
2168               tm = &this_vlib_main->trace_main;
2169               tm->verbose = 0;  /* not sure this ever did anything... */
2170               vec_validate (tm->nodes, node_index);
2171               tn = tm->nodes + node_index;
2172               tn->limit += add;
2173               tm->trace_enable = 1;
2174             }));
2175           /* *INDENT-ON* */
2176         }
2177
2178       else
2179         {
2180           error = clib_error_return (0, "unknown input `%U'",
2181                                      format_unformat_error, line_input);
2182           errorFlag = 1;
2183           break;
2184         }
2185     }
2186   unformat_free (line_input);
2187
2188
2189   if (errorFlag == 0)
2190     {
2191       /* Since no error, save configured values. */
2192       if (chroot_filename)
2193         {
2194           if (pm->file_name)
2195             vec_free (pm->file_name);
2196           vec_add1 (chroot_filename, 0);
2197           pm->file_name = (char *) chroot_filename;
2198         }
2199
2200       if (max)
2201         pm->n_packets_to_capture = max;
2202
2203       if (enabled)
2204         {
2205           if (pm->file_name == 0)
2206             pm->file_name = (char *) format (0, "/tmp/dispatch.pcap%c", 0);
2207
2208           pm->n_packets_captured = 0;
2209           pm->packet_type = PCAP_PACKET_TYPE_vpp;
2210           if (pm->lock == 0)
2211             clib_spinlock_init (&(pm->lock));
2212           vm->dispatch_pcap_enable = 1;
2213           vlib_cli_output (vm, "pcap dispatch capture on...");
2214         }
2215     }
2216   else if (chroot_filename)
2217     vec_free (chroot_filename);
2218
2219   return error;
2220 }
2221
2222 static clib_error_t *
2223 pcap_dispatch_trace_command_fn (vlib_main_t * vm,
2224                                 unformat_input_t * input,
2225                                 vlib_cli_command_t * cmd)
2226 {
2227   return pcap_dispatch_trace_command_internal (vm, input, cmd, VLIB_RX);
2228 }
2229
2230 /*?
2231  * This command is used to start or stop pcap dispatch trace capture, or show
2232  * the capture status.
2233  *
2234  * This command has the following optional parameters:
2235  *
2236  * - <b>on|off</b> - Used to start or stop capture.
2237  *
2238  * - <b>max <nn></b> - Depth of local buffer. Once '<em>nn</em>' number
2239  *   of packets have been received, buffer is flushed to file. Once another
2240  *   '<em>nn</em>' number of packets have been received, buffer is flushed
2241  *   to file, overwriting previous write. If not entered, value defaults
2242  *   to 100. Can only be updated if packet capture is off.
2243  *
2244  * - <b>file <name></b> - Used to specify the output filename. The file will
2245  *   be placed in the '<em>/tmp</em>' directory, so only the filename is
2246  *   supported. Directory should not be entered. If file already exists, file
2247  *   will be overwritten. If no filename is provided, '<em>/tmp/vpe.pcap</em>'
2248  *   will be used. Can only be updated if packet capture is off.
2249  *
2250  * - <b>status</b> - Displays the current status and configured attributes
2251  *   associated with a packet capture. If packet capture is in progress,
2252  *   '<em>status</em>' also will return the number of packets currently in
2253  *   the local buffer. All additional attributes entered on command line
2254  *   with '<em>status</em>' will be ignored and not applied.
2255  *
2256  * @cliexpar
2257  * Example of how to display the status of capture when off:
2258  * @cliexstart{pcap dispatch trace status}
2259  * max is 100, for any interface to file /tmp/vpe.pcap
2260  * pcap dispatch capture is off...
2261  * @cliexend
2262  * Example of how to start a dispatch trace capture:
2263  * @cliexstart{pcap dispatch trace on max 35 file dispatchTrace.pcap}
2264  * pcap dispatch capture on...
2265  * @cliexend
2266  * Example of how to start a dispatch trace capture with buffer tracing
2267  * @cliexstart{pcap dispatch trace on max 10000 file dispatchTrace.pcap buffer-trace dpdk-input 1000}
2268  * pcap dispatch capture on...
2269  * @cliexend
2270  * Example of how to display the status of a tx packet capture in progress:
2271  * @cliexstart{pcap tx trace status}
2272  * max is 35, dispatch trace to file /tmp/vppTest.pcap
2273  * pcap tx capture is on: 20 of 35 pkts...
2274  * @cliexend
2275  * Example of how to stop a tx packet capture:
2276  * @cliexstart{vppctl pcap dispatch trace off}
2277  * captured 21 pkts...
2278  * saved to /tmp/dispatchTrace.pcap...
2279  * @cliexend
2280 ?*/
2281 /* *INDENT-OFF* */
2282 VLIB_CLI_COMMAND (pcap_dispatch_trace_command, static) = {
2283     .path = "pcap dispatch trace",
2284     .short_help =
2285     "pcap dispatch trace [on|off] [max <nn>] [file <name>] [status]\n"
2286     "              [buffer-trace <input-node-name> <nn>]",
2287     .function = pcap_dispatch_trace_command_fn,
2288 };
2289 /* *INDENT-ON* */
2290
2291 /*
2292  * fd.io coding-style-patch-verification: ON
2293  *
2294  * Local Variables:
2295  * eval: (c-set-style "gnu")
2296  * End:
2297  */