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