blob: 7d502d777a3b47957f35a32564046b0cbdd66320 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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 * error.c: VLIB error handler
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 <vlib/vlib.h>
41#include <vppinfra/heap.h>
Ole Troan233e4682019-05-16 15:01:34 +020042#include <vlib/stat_weak_inlines.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070043
44uword
45vlib_error_drop_buffers (vlib_main_t * vm,
46 vlib_node_runtime_t * node,
47 u32 * buffers,
48 u32 next_buffer_stride,
49 u32 n_buffers,
50 u32 next_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -040051 u32 drop_error_node, u32 drop_error_code)
Ed Warnickecb9cada2015-12-08 15:45:58 -070052{
Dave Barach9b8ffd92016-07-08 08:13:45 -040053 u32 n_left_this_frame, n_buffers_left, *args, n_args_left;
Ed Warnickecb9cada2015-12-08 15:45:58 -070054 vlib_error_t drop_error;
Dave Barach687c9022019-07-23 10:22:31 -040055 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
Dave Barach687c9022019-07-23 10:22:31 -040057 n = vlib_get_node (vm, drop_error_node);
58 drop_error = n->error_heap_index + drop_error_code;
Ed Warnickecb9cada2015-12-08 15:45:58 -070059
60 n_buffers_left = n_buffers;
61 while (n_buffers_left > 0)
62 {
63 vlib_get_next_frame (vm, node, next_index, args, n_args_left);
64
65 n_left_this_frame = clib_min (n_buffers_left, n_args_left);
66 n_buffers_left -= n_left_this_frame;
67 n_args_left -= n_left_this_frame;
68
69 while (n_left_this_frame >= 4)
70 {
71 u32 bi0, bi1, bi2, bi3;
Dave Barach9b8ffd92016-07-08 08:13:45 -040072 vlib_buffer_t *b0, *b1, *b2, *b3;
Ed Warnickecb9cada2015-12-08 15:45:58 -070073
74 args[0] = bi0 = buffers[0];
75 args[1] = bi1 = buffers[1];
76 args[2] = bi2 = buffers[2];
77 args[3] = bi3 = buffers[3];
78
79 b0 = vlib_get_buffer (vm, bi0);
80 b1 = vlib_get_buffer (vm, bi1);
81 b2 = vlib_get_buffer (vm, bi2);
82 b3 = vlib_get_buffer (vm, bi3);
83
84 b0->error = drop_error;
85 b1->error = drop_error;
86 b2->error = drop_error;
87 b3->error = drop_error;
88
89 buffers += 4;
90 args += 4;
91 n_left_this_frame -= 4;
92 }
93
94 while (n_left_this_frame >= 1)
95 {
96 u32 bi0;
Dave Barach9b8ffd92016-07-08 08:13:45 -040097 vlib_buffer_t *b0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070098
99 args[0] = bi0 = buffers[0];
100
101 b0 = vlib_get_buffer (vm, bi0);
102 b0->error = drop_error;
103
104 buffers += 1;
105 args += 1;
106 n_left_this_frame -= 1;
107 }
108
109 vlib_put_next_frame (vm, node, next_index, n_args_left);
110 }
111
112 return n_buffers;
113}
114
Ed Warnickecb9cada2015-12-08 15:45:58 -0700115/* Reserves given number of error codes for given node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400116void
117vlib_register_errors (vlib_main_t * vm,
Ole Troan148c7b72020-10-07 18:05:37 +0200118 u32 node_index, u32 n_errors, char *error_strings[],
119 vl_counter_t counters[])
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400121 vlib_error_main_t *em = &vm->error_main;
Dave Barach687c9022019-07-23 10:22:31 -0400122 vlib_node_main_t *nm = &vm->node_main;
123
Dave Barach9b8ffd92016-07-08 08:13:45 -0400124 vlib_node_t *n = vlib_get_node (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700125 uword l;
Dave Barach048a4e52018-06-01 18:52:25 -0400126 void *oldheap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127
Damjan Marion586afd72017-04-05 19:18:20 +0200128 ASSERT (vlib_get_thread_index () == 0);
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100129
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130 /* Free up any previous error strings. */
131 if (n->n_errors > 0)
Ole Troan148c7b72020-10-07 18:05:37 +0200132 heap_dealloc (em->counters_heap, n->error_heap_handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700133
Ole Troan2f535e62020-10-20 14:36:13 +0200134 n->n_errors = n_errors;
135 n->error_counters = counters;
136
Ed Warnickecb9cada2015-12-08 15:45:58 -0700137 if (n_errors == 0)
138 return;
139
Ole Troan148c7b72020-10-07 18:05:37 +0200140 /* Legacy node */
141 if (!counters)
142 {
143 counters = clib_mem_alloc (sizeof (counters[0]) * n_errors);
144 int i;
145 for (i = 0; i < n_errors; i++)
146 {
147 counters[i].name = error_strings[i]; // XXX Make name saner
148 counters[i].desc = error_strings[i];
149 counters[i].severity = VL_COUNTER_SEVERITY_ERROR;
150 }
151 }
152
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153 n->error_heap_index =
Ole Troan148c7b72020-10-07 18:05:37 +0200154 heap_alloc (em->counters_heap, n_errors, n->error_heap_handle);
155 l = vec_len (em->counters_heap);
156 clib_memcpy (vec_elt_at_index (em->counters_heap, n->error_heap_index),
157 counters, n_errors * sizeof (counters[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158
Dave Barach048a4e52018-06-01 18:52:25 -0400159 vec_validate (vm->error_elog_event_types, l - 1);
160
161 /* Switch to the stats segment ... */
Ole Troan233e4682019-05-16 15:01:34 +0200162 oldheap = vlib_stats_push_heap (0);
Dave Barach048a4e52018-06-01 18:52:25 -0400163
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164 /* Allocate a counter/elog type for each error. */
165 vec_validate (em->counters, l - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700166
167 /* Zero counters for re-registrations of errors. */
168 if (n->error_heap_index + n_errors <= vec_len (em->counters_last_clear))
Damjan Marionf1213b82016-03-13 02:22:06 +0100169 clib_memcpy (em->counters + n->error_heap_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400170 em->counters_last_clear + n->error_heap_index,
171 n_errors * sizeof (em->counters[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172 else
Dave Barachb7b92992018-10-17 10:38:51 -0400173 clib_memset (em->counters + n->error_heap_index,
174 0, n_errors * sizeof (em->counters[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700175
Dave Barach048a4e52018-06-01 18:52:25 -0400176 /* Register counter indices in the stat segment directory */
177 {
178 int i;
Benoît Gannef7c30df2019-07-08 14:39:02 +0200179 u8 *error_name = 0;
Dave Barach048a4e52018-06-01 18:52:25 -0400180
181 for (i = 0; i < n_errors; i++)
182 {
Benoît Gannef7c30df2019-07-08 14:39:02 +0200183 vec_reset_length (error_name);
184 error_name =
Ole Troan148c7b72020-10-07 18:05:37 +0200185 format (error_name, "/err/%v/%s%c", n->name, counters[i].name, 0);
Ole Troan92e30822019-06-16 12:33:51 +0200186 vlib_stats_register_error_index (oldheap, error_name, em->counters,
Ole Troan58492a82018-09-04 13:19:12 +0200187 n->error_heap_index + i);
Dave Barach048a4e52018-06-01 18:52:25 -0400188 }
Benoît Gannef7c30df2019-07-08 14:39:02 +0200189
190 vec_free (error_name);
Dave Barach048a4e52018-06-01 18:52:25 -0400191 }
192
193 /* (re)register the em->counters base address, switch back to main heap */
Ole Troan233e4682019-05-16 15:01:34 +0200194 vlib_stats_pop_heap2 (em->counters, vm->thread_index, oldheap, 1);
Dave Barach048a4e52018-06-01 18:52:25 -0400195
Ed Warnickecb9cada2015-12-08 15:45:58 -0700196 {
197 elog_event_type_t t;
198 uword i;
199
Dave Barachb7b92992018-10-17 10:38:51 -0400200 clib_memset (&t, 0, sizeof (t));
Dave Barach687c9022019-07-23 10:22:31 -0400201 if (n_errors > 0)
202 vec_validate (nm->node_by_error, n->error_heap_index + n_errors - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203 for (i = 0; i < n_errors; i++)
204 {
205 t.format = (char *) format (0, "%v %s: %%d",
Ole Troan148c7b72020-10-07 18:05:37 +0200206 n->name, counters[i].name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 vm->error_elog_event_types[n->error_heap_index + i] = t;
Dave Barach687c9022019-07-23 10:22:31 -0400208 nm->node_by_error[n->error_heap_index + i] = n->index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700209 }
210 }
211}
212
Ole Troan148c7b72020-10-07 18:05:37 +0200213static char *
214sev2str (enum vl_counter_severity_e s)
215{
216 switch (s)
217 {
218 case VL_COUNTER_SEVERITY_ERROR:
219 return "error";
220 case VL_COUNTER_SEVERITY_WARN:
221 return "warn";
222 case VL_COUNTER_SEVERITY_INFO:
223 return "info";
224 default:
225 return "unknown";
226 }
227}
228
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229static clib_error_t *
230show_errors (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400231 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700232{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400233 vlib_error_main_t *em = &vm->error_main;
234 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235 u32 code, i, ni;
236 u64 c;
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100237 int index = 0;
238 int verbose = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400239 u64 *sums = 0;
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100240
Dave Barachcbed90c2016-03-31 15:32:54 -0400241 if (unformat (input, "verbose %d", &verbose))
242 ;
243 else if (unformat (input, "verbose"))
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100244 verbose = 1;
245
Dave Barach9b8ffd92016-07-08 08:13:45 -0400246 vec_validate (sums, vec_len (em->counters));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247
Dave Barachcbed90c2016-03-31 15:32:54 -0400248 if (verbose)
Florin Coras8cf1f932020-10-13 15:10:29 -0700249 vlib_cli_output (vm, "%=10s%=35s%=35s%=10s%=6s", "Count", "Node",
Ole Troan148c7b72020-10-07 18:05:37 +0200250 "Reason", "Severity", "Index");
Dave Barachcbed90c2016-03-31 15:32:54 -0400251 else
Florin Coras8cf1f932020-10-13 15:10:29 -0700252 vlib_cli_output (vm, "%=10s%=35s%=35s%=10s", "Count", "Node", "Reason",
Ole Troan148c7b72020-10-07 18:05:37 +0200253 "Severity");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254
Dave Barach9b8ffd92016-07-08 08:13:45 -0400255
256 /* *INDENT-OFF* */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100257 foreach_vlib_main(({
258 em = &this_vlib_main->error_main;
259
260 if (verbose)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400261 vlib_cli_output(vm, "Thread %u (%v):", index,
262 vlib_worker_threads[index].name);
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100263
264 for (ni = 0; ni < vec_len (this_vlib_main->node_main.nodes); ni++)
265 {
266 n = vlib_get_node (this_vlib_main, ni);
267 for (code = 0; code < n->n_errors; code++)
268 {
269 i = n->error_heap_index + code;
270 c = em->counters[i];
271 if (i < vec_len (em->counters_last_clear))
272 c -= em->counters_last_clear[i];
273 sums[i] += c;
274
Dave Barachcbed90c2016-03-31 15:32:54 -0400275 if (c == 0 && verbose < 2)
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100276 continue;
277
Dave Barachcbed90c2016-03-31 15:32:54 -0400278 if (verbose)
Florin Coras8cf1f932020-10-13 15:10:29 -0700279 vlib_cli_output (vm, "%10lu%=35v%=35s%=10s%=6d", c, n->name,
Ole Troan148c7b72020-10-07 18:05:37 +0200280 em->counters_heap[i].name,
281 sev2str(em->counters_heap[i].severity), i);
Dave Barachcbed90c2016-03-31 15:32:54 -0400282 else
Florin Coras8cf1f932020-10-13 15:10:29 -0700283 vlib_cli_output (vm, "%10lu%=35v%=35s%=10s", c, n->name,
Ole Troan148c7b72020-10-07 18:05:37 +0200284 em->counters_heap[i].name,
285 sev2str(em->counters_heap[i].severity));
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100286 }
287 }
288 index++;
289 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400290 /* *INDENT-ON* */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100291
292 if (verbose)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400293 vlib_cli_output (vm, "Total:");
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100294
Ed Warnickecb9cada2015-12-08 15:45:58 -0700295 for (ni = 0; ni < vec_len (vm->node_main.nodes); ni++)
296 {
297 n = vlib_get_node (vm, ni);
298 for (code = 0; code < n->n_errors; code++)
299 {
300 i = n->error_heap_index + code;
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100301 if (sums[i])
Dave Barach9b8ffd92016-07-08 08:13:45 -0400302 {
303 if (verbose)
Florin Coras1ae16c82020-05-11 15:31:20 +0000304 vlib_cli_output (vm, "%10lu%=40v%=20s%=10d", sums[i], n->name,
Ole Troan148c7b72020-10-07 18:05:37 +0200305 em->counters_heap[i].name, i);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400306 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700307 }
308 }
309
Dave Barach9b8ffd92016-07-08 08:13:45 -0400310 vec_free (sums);
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100311
Ed Warnickecb9cada2015-12-08 15:45:58 -0700312 return 0;
313}
314
Dave Barach9b8ffd92016-07-08 08:13:45 -0400315/* *INDENT-OFF* */
Florin Coras66b11312017-07-31 17:18:03 -0700316VLIB_CLI_COMMAND (vlib_cli_show_errors) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700317 .path = "show errors",
318 .short_help = "Show error counts",
319 .function = show_errors,
320};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400321/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700322
Dave Barach9b8ffd92016-07-08 08:13:45 -0400323/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700324VLIB_CLI_COMMAND (cli_show_node_counters, static) = {
325 .path = "show node counters",
326 .short_help = "Show node counters",
327 .function = show_errors,
328};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400329/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700330
331static clib_error_t *
332clear_error_counters (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400333 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400335 vlib_error_main_t *em;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700336 u32 i;
337
Dave Barach9b8ffd92016-07-08 08:13:45 -0400338 /* *INDENT-OFF* */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100339 foreach_vlib_main(({
340 em = &this_vlib_main->error_main;
341 vec_validate (em->counters_last_clear, vec_len (em->counters) - 1);
342 for (i = 0; i < vec_len (em->counters); i++)
343 em->counters_last_clear[i] = em->counters[i];
344 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400345 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700346 return 0;
347}
348
Dave Barach9b8ffd92016-07-08 08:13:45 -0400349/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350VLIB_CLI_COMMAND (cli_clear_error_counters, static) = {
351 .path = "clear errors",
352 .short_help = "Clear error counters",
353 .function = clear_error_counters,
354};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400355/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700356
Dave Barach9b8ffd92016-07-08 08:13:45 -0400357/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358VLIB_CLI_COMMAND (cli_clear_node_counters, static) = {
359 .path = "clear node counters",
360 .short_help = "Clear node counters",
361 .function = clear_error_counters,
362};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400363/* *INDENT-ON* */
364
365/*
366 * fd.io coding-style-patch-verification: ON
367 *
368 * Local Variables:
369 * eval: (c-set-style "gnu")
370 * End:
371 */