ikev2: add support for custom ipsec-over-udp port
[vpp.git] / src / vlib / handoff_trace.c
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 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",
37               t->prev_thread, t->prev_trace_index);
38   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 handoff_trace_node_fn (vlib_main_t * vm,
62                        vlib_node_runtime_t * node, vlib_frame_t * frame)
63 {
64   vlib_buffer_free (vm, vlib_frame_vector_args (frame), frame->n_vectors);
65
66   vlib_node_increment_counter (vm, node->node_index,
67                                HANDOFF_TRACE_ERROR_BUGS, frame->n_vectors);
68
69   return frame->n_vectors;
70 }
71
72 typedef enum
73 {
74   HANDOFF_TRACE_NEXT_DROP,
75   HANDOFF_TRACE_N_NEXT,
76 } tdummy_next_t;
77
78 /* *INDENT-OFF* */
79 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 void
100 vlib_add_handoff_trace (vlib_main_t * vm, vlib_buffer_t * b)
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;
105   vlib_node_runtime_t *node
106     = vlib_node_get_runtime (vm, handoff_trace_node.index);
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  */