FD.io VPP  v20.05.1-5-g09f167997
Vector Packet Processing
handoff_trace.c
Go to the documentation of this file.
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 {
27 
28 /* packet trace format function */
29 static u8 *
30 format_handoff_trace (u8 * s, va_list * args)
31 {
32  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
33  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
34  handoff_trace_t *t = va_arg (*args, handoff_trace_t *);
35 
36  s = format (s, "HANDED-OFF: from thread %d trace index %d",
38  return s;
39 }
40 
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,
50 #undef _
53 
54 static char *handoff_trace_error_strings[] = {
55 #define _(sym,string) string,
57 #undef _
58 };
59 
60 static uword
63 {
65 
67  HANDOFF_TRACE_ERROR_BUGS, frame->n_vectors);
68 
69  return frame->n_vectors;
70 }
71 
72 typedef enum
73 {
77 
78 /* *INDENT-OFF* */
80 {
81  .name = "handoff_trace",
83  .function = handoff_trace_node_fn,
84  .vector_size = sizeof (u32),
85  .format_trace = format_handoff_trace,
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 
95  .error_strings = handoff_trace_error_strings,
96 };
97 /* *INDENT-ON* */
98 
99 void
101 {
102  u32 prev_thread = vlib_buffer_get_trace_thread (b);
103  u32 prev_trace_index = vlib_buffer_get_trace_index (b);
104  handoff_trace_t *t;
107 
108  vlib_trace_buffer (vm, node, 0 /* fake next frame index */ ,
109  b, 1 /* folllow chain */ );
110 
111  t = vlib_add_trace (vm, node, b, sizeof (*t));
112 
113  t->prev_thread = prev_thread;
114  t->prev_trace_index = prev_trace_index;
115 }
116 
117 
118 /* *INDENT-ON* */
119 
120 /*
121  * fd.io coding-style-patch-verification: ON
122  *
123  * Local Variables:
124  * eval: (c-set-style "gnu")
125  * End:
126  */
#define CLIB_UNUSED(x)
Definition: clib.h:86
static void vlib_buffer_free(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Free buffers Frees the entire buffer chain for each buffer.
Definition: buffer_funcs.h:937
static u32 vlib_buffer_get_trace_index(vlib_buffer_t *b)
Extract the trace (pool) index from a trace handle.
Definition: buffer.h:388
static u8 * format_handoff_trace(u8 *s, va_list *args)
Definition: handoff_trace.c:30
#define VLIB_NODE_FLAG_TRACE_SUPPORTED
Definition: node.h:308
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
handoff_trace_error_t
Definition: handoff_trace.c:46
#define foreach_handoff_trace_error
Definition: handoff_trace.c:43
unsigned char u8
Definition: types.h:56
static void vlib_trace_buffer(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, vlib_buffer_t *b, int follow_chain)
Definition: trace_funcs.h:130
unsigned int u32
Definition: types.h:88
vl_api_fib_path_type_t type
Definition: fib_types.api:123
static vlib_node_registration_t handoff_trace_node
(constructor) VLIB_REGISTER_NODE (handoff_trace_node)
Definition: handoff_trace.c:41
static char * handoff_trace_error_strings[]
Definition: handoff_trace.c:54
u32 node_index
Node index.
Definition: node.h:498
vlib_main_t * vm
Definition: in2out_ed.c:1599
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
Definition: node_funcs.h:1150
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
u16 n_vectors
Definition: node.h:399
tdummy_next_t
Definition: handoff_trace.c:72
static vlib_node_runtime_t * vlib_node_get_runtime(vlib_main_t *vm, u32 node_index)
Get node runtime by node index.
Definition: node_funcs.h:89
static u32 vlib_buffer_get_trace_thread(vlib_buffer_t *b)
Extract the thread id from a trace handle.
Definition: buffer.h:376
#define ARRAY_LEN(x)
Definition: clib.h:66
vlib_main_t vlib_node_runtime_t * node
Definition: in2out_ed.c:1599
static uword handoff_trace_node_fn(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: handoff_trace.c:61
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace_funcs.h:55
struct _vlib_node_registration vlib_node_registration_t
VLIB buffer representation.
Definition: buffer.h:102
u64 uword
Definition: types.h:112
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:244
void vlib_add_handoff_trace(vlib_main_t *vm, vlib_buffer_t *b)
vlib_main_t vlib_node_runtime_t vlib_frame_t * frame
Definition: in2out_ed.c:1600