Line data Source code
1 : /*
2 : * handoff_trace.c - used to generate handoff trace records
3 : *
4 : * Copyright (c) 2019 Cisco Systems and/or its affiliates.
5 : * Licensed under the Apache License, Version 2.0 (the "License");
6 : * you may not use this file except in compliance with the License.
7 : * You may obtain a copy of the License at:
8 : *
9 : * http://www.apache.org/licenses/LICENSE-2.0
10 : *
11 : * Unless required by applicable law or agreed to in writing, software
12 : * distributed under the License is distributed on an "AS IS" BASIS,
13 : * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 : * See the License for the specific language governing permissions and
15 : * limitations under the License.
16 : */
17 : #include <vlib/vlib.h>
18 : #include <vnet/vnet.h>
19 : #include <vnet/pg/pg.h>
20 : #include <vppinfra/error.h>
21 :
22 : typedef struct
23 : {
24 : u32 prev_thread;
25 : u32 prev_trace_index;
26 : } handoff_trace_t;
27 :
28 : /* packet trace format function */
29 : static u8 *
30 5728 : format_handoff_trace (u8 * s, va_list * args)
31 : {
32 5728 : CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
33 5728 : CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
34 5728 : handoff_trace_t *t = va_arg (*args, handoff_trace_t *);
35 :
36 5728 : s = format (s, "HANDED-OFF: from thread %d trace index %d",
37 : t->prev_thread, t->prev_trace_index);
38 5728 : return s;
39 : }
40 :
41 : static vlib_node_registration_t handoff_trace_node;
42 :
43 : #define foreach_handoff_trace_error \
44 : _(BUGS, "Warning: packets sent to the handoff trace node!")
45 :
46 : typedef enum
47 : {
48 : #define _(sym,str) HANDOFF_TRACE_ERROR_##sym,
49 : foreach_handoff_trace_error
50 : #undef _
51 : HANDOFF_TRACE_N_ERROR,
52 : } handoff_trace_error_t;
53 :
54 : static char *handoff_trace_error_strings[] = {
55 : #define _(sym,string) string,
56 : foreach_handoff_trace_error
57 : #undef _
58 : };
59 :
60 : static uword
61 0 : handoff_trace_node_fn (vlib_main_t * vm,
62 : vlib_node_runtime_t * node, vlib_frame_t * frame)
63 : {
64 0 : vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors);
65 :
66 0 : vlib_node_increment_counter (vm, node->node_index,
67 0 : HANDOFF_TRACE_ERROR_BUGS, frame->n_vectors);
68 :
69 0 : return frame->n_vectors;
70 : }
71 :
72 : typedef enum
73 : {
74 : HANDOFF_TRACE_NEXT_DROP,
75 : HANDOFF_TRACE_N_NEXT,
76 : } tplaceholder_next_t;
77 :
78 : /* *INDENT-OFF* */
79 183788 : VLIB_REGISTER_NODE (handoff_trace_node, static) =
80 : {
81 : .name = "handoff_trace",
82 : .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED,
83 : .function = handoff_trace_node_fn,
84 : .vector_size = sizeof (u32),
85 : .format_trace = format_handoff_trace,
86 : .type = VLIB_NODE_TYPE_INTERNAL,
87 : .n_next_nodes = HANDOFF_TRACE_N_NEXT,
88 :
89 : /* edit / add dispositions here */
90 : .next_nodes = {
91 : [HANDOFF_TRACE_NEXT_DROP] = "error-drop",
92 : },
93 :
94 : .n_errors = ARRAY_LEN(handoff_trace_error_strings),
95 : .error_strings = handoff_trace_error_strings,
96 : };
97 : /* *INDENT-ON* */
98 :
99 : int
100 25311 : vlib_add_handoff_trace (vlib_main_t * vm, vlib_buffer_t * b)
101 : {
102 25311 : u32 prev_thread = vlib_buffer_get_trace_thread (b);
103 25306 : u32 prev_trace_index = vlib_buffer_get_trace_index (b);
104 : handoff_trace_t *t;
105 : vlib_node_runtime_t *node
106 25306 : = vlib_node_get_runtime (vm, handoff_trace_node.index);
107 :
108 25305 : if (PREDICT_FALSE
109 : (!vlib_trace_buffer
110 : (vm, node, 0 /* fake next frame index */ , b, 1 /* follow chain */ )))
111 0 : return 0;
112 :
113 25298 : t = vlib_add_trace (vm, node, b, sizeof (*t));
114 25334 : t->prev_thread = prev_thread;
115 25334 : t->prev_trace_index = prev_trace_index;
116 25334 : return 1;
117 : }
118 :
119 :
120 : /* *INDENT-ON* */
121 :
122 : /*
123 : * fd.io coding-style-patch-verification: ON
124 : *
125 : * Local Variables:
126 : * eval: (c-set-style "gnu")
127 : * End:
128 : */
|