blob: 97cb0b5219274b6c10797e258c96951c3572cacb [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
Ole Troan2c4acdd2021-05-06 14:09:50 +0200117vlib_register_errors (vlib_main_t *vm, u32 node_index, u32 n_errors,
118 char *error_strings[], vlib_error_desc_t counters[])
Ed Warnickecb9cada2015-12-08 15:45:58 -0700119{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400120 vlib_error_main_t *em = &vm->error_main;
Dave Barach687c9022019-07-23 10:22:31 -0400121 vlib_node_main_t *nm = &vm->node_main;
122
Dave Barach9b8ffd92016-07-08 08:13:45 -0400123 vlib_node_t *n = vlib_get_node (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700124 uword l;
Dave Barach048a4e52018-06-01 18:52:25 -0400125 void *oldheap;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700126
Damjan Marion586afd72017-04-05 19:18:20 +0200127 ASSERT (vlib_get_thread_index () == 0);
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100128
Ed Warnickecb9cada2015-12-08 15:45:58 -0700129 /* Free up any previous error strings. */
130 if (n->n_errors > 0)
Ole Troan148c7b72020-10-07 18:05:37 +0200131 heap_dealloc (em->counters_heap, n->error_heap_handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700132
Ole Troan2f535e62020-10-20 14:36:13 +0200133 n->n_errors = n_errors;
134 n->error_counters = counters;
135
Ed Warnickecb9cada2015-12-08 15:45:58 -0700136 if (n_errors == 0)
137 return;
138
Ole Troan148c7b72020-10-07 18:05:37 +0200139 /* Legacy node */
140 if (!counters)
141 {
142 counters = clib_mem_alloc (sizeof (counters[0]) * n_errors);
143 int i;
144 for (i = 0; i < n_errors; i++)
145 {
Ole Troanf09d6552021-03-10 12:52:53 +0100146 counters[i].name = error_strings[i];
Ole Troan148c7b72020-10-07 18:05:37 +0200147 counters[i].desc = error_strings[i];
148 counters[i].severity = VL_COUNTER_SEVERITY_ERROR;
149 }
150 }
151
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152 n->error_heap_index =
Ole Troan148c7b72020-10-07 18:05:37 +0200153 heap_alloc (em->counters_heap, n_errors, n->error_heap_handle);
154 l = vec_len (em->counters_heap);
155 clib_memcpy (vec_elt_at_index (em->counters_heap, n->error_heap_index),
156 counters, n_errors * sizeof (counters[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157
Dave Barach048a4e52018-06-01 18:52:25 -0400158 vec_validate (vm->error_elog_event_types, l - 1);
159
160 /* Switch to the stats segment ... */
Ole Troan233e4682019-05-16 15:01:34 +0200161 oldheap = vlib_stats_push_heap (0);
Dave Barach048a4e52018-06-01 18:52:25 -0400162
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 /* Allocate a counter/elog type for each error. */
164 vec_validate (em->counters, l - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700165
166 /* Zero counters for re-registrations of errors. */
167 if (n->error_heap_index + n_errors <= vec_len (em->counters_last_clear))
Damjan Marionf1213b82016-03-13 02:22:06 +0100168 clib_memcpy (em->counters + n->error_heap_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400169 em->counters_last_clear + n->error_heap_index,
170 n_errors * sizeof (em->counters[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171 else
Dave Barachb7b92992018-10-17 10:38:51 -0400172 clib_memset (em->counters + n->error_heap_index,
173 0, n_errors * sizeof (em->counters[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700174
Dave Barach048a4e52018-06-01 18:52:25 -0400175 /* Register counter indices in the stat segment directory */
176 {
177 int i;
Benoît Gannef7c30df2019-07-08 14:39:02 +0200178 u8 *error_name = 0;
Dave Barach048a4e52018-06-01 18:52:25 -0400179
180 for (i = 0; i < n_errors; i++)
181 {
Benoît Gannef7c30df2019-07-08 14:39:02 +0200182 vec_reset_length (error_name);
183 error_name =
Ole Troan148c7b72020-10-07 18:05:37 +0200184 format (error_name, "/err/%v/%s%c", n->name, counters[i].name, 0);
Ole Troan92e30822019-06-16 12:33:51 +0200185 vlib_stats_register_error_index (oldheap, error_name, em->counters,
Ole Troan58492a82018-09-04 13:19:12 +0200186 n->error_heap_index + i);
Dave Barach048a4e52018-06-01 18:52:25 -0400187 }
Benoît Gannef7c30df2019-07-08 14:39:02 +0200188
189 vec_free (error_name);
Dave Barach048a4e52018-06-01 18:52:25 -0400190 }
191
192 /* (re)register the em->counters base address, switch back to main heap */
Ole Troan233e4682019-05-16 15:01:34 +0200193 vlib_stats_pop_heap2 (em->counters, vm->thread_index, oldheap, 1);
Dave Barach048a4e52018-06-01 18:52:25 -0400194
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195 {
196 elog_event_type_t t;
197 uword i;
198
Dave Barachb7b92992018-10-17 10:38:51 -0400199 clib_memset (&t, 0, sizeof (t));
Dave Barach687c9022019-07-23 10:22:31 -0400200 if (n_errors > 0)
201 vec_validate (nm->node_by_error, n->error_heap_index + n_errors - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202 for (i = 0; i < n_errors; i++)
203 {
204 t.format = (char *) format (0, "%v %s: %%d",
Ole Troan148c7b72020-10-07 18:05:37 +0200205 n->name, counters[i].name);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700206 vm->error_elog_event_types[n->error_heap_index + i] = t;
Dave Barach687c9022019-07-23 10:22:31 -0400207 nm->node_by_error[n->error_heap_index + i] = n->index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700208 }
209 }
210}
211
Benoît Ganne5cfe4522021-03-03 17:37:25 +0100212uword
213unformat_vlib_error (unformat_input_t *input, va_list *args)
214{
215 vlib_main_t *vm = va_arg (*args, vlib_main_t *);
216 const vlib_error_main_t *em = &vm->error_main;
217 vlib_error_t *error_index = va_arg (*args, vlib_error_t *);
218 const vlib_node_t *node;
219 char *error_name;
220 u32 node_index;
221 vlib_error_t i;
222
223 if (!unformat (input, "%U.%s", unformat_vlib_node, vm, &node_index,
224 &error_name))
225 return 0;
226
227 node = vlib_get_node (vm, node_index);
228 for (i = 0; i < node->n_errors; i++)
229 {
230 vlib_error_t ei = node->error_heap_index + i;
231 if (strcmp (em->counters_heap[ei].name, error_name) == 0)
232 {
233 *error_index = ei;
234 vec_free (error_name);
235 return 1;
236 }
237 }
238
239 vec_free (error_name);
240 return 0;
241}
242
Ole Troan148c7b72020-10-07 18:05:37 +0200243static char *
244sev2str (enum vl_counter_severity_e s)
245{
246 switch (s)
247 {
248 case VL_COUNTER_SEVERITY_ERROR:
249 return "error";
250 case VL_COUNTER_SEVERITY_WARN:
251 return "warn";
252 case VL_COUNTER_SEVERITY_INFO:
253 return "info";
254 default:
255 return "unknown";
256 }
257}
258
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259static clib_error_t *
260show_errors (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400261 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700262{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400263 vlib_error_main_t *em = &vm->error_main;
264 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700265 u32 code, i, ni;
266 u64 c;
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100267 int index = 0;
268 int verbose = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400269 u64 *sums = 0;
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100270
Dave Barachcbed90c2016-03-31 15:32:54 -0400271 if (unformat (input, "verbose %d", &verbose))
272 ;
273 else if (unformat (input, "verbose"))
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100274 verbose = 1;
275
Dave Barach9b8ffd92016-07-08 08:13:45 -0400276 vec_validate (sums, vec_len (em->counters));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700277
Dave Barachcbed90c2016-03-31 15:32:54 -0400278 if (verbose)
Florin Coras8cf1f932020-10-13 15:10:29 -0700279 vlib_cli_output (vm, "%=10s%=35s%=35s%=10s%=6s", "Count", "Node",
Ole Troan148c7b72020-10-07 18:05:37 +0200280 "Reason", "Severity", "Index");
Dave Barachcbed90c2016-03-31 15:32:54 -0400281 else
Florin Coras8cf1f932020-10-13 15:10:29 -0700282 vlib_cli_output (vm, "%=10s%=35s%=35s%=10s", "Count", "Node", "Reason",
Ole Troan148c7b72020-10-07 18:05:37 +0200283 "Severity");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700284
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100285 foreach_vlib_main ()
286 {
287 em = &this_vlib_main->error_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400288
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100289 if (verbose)
290 vlib_cli_output (vm, "Thread %u (%v):", index,
291 vlib_worker_threads[index].name);
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100292
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100293 for (ni = 0; ni < vec_len (this_vlib_main->node_main.nodes); ni++)
294 {
295 n = vlib_get_node (this_vlib_main, ni);
296 for (code = 0; code < n->n_errors; code++)
297 {
298 i = n->error_heap_index + code;
299 c = em->counters[i];
300 if (i < vec_len (em->counters_last_clear))
301 c -= em->counters_last_clear[i];
302 sums[i] += c;
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100303
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100304 if (c == 0 && verbose < 2)
305 continue;
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100306
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100307 if (verbose)
308 vlib_cli_output (vm, "%10lu%=35v%=35s%=10s%=6d", c, n->name,
309 em->counters_heap[i].name,
310 sev2str (em->counters_heap[i].severity), i);
311 else
312 vlib_cli_output (vm, "%10lu%=35v%=35s%=10s", c, n->name,
313 em->counters_heap[i].name,
314 sev2str (em->counters_heap[i].severity));
315 }
316 }
317 index++;
318 }
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100319
320 if (verbose)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400321 vlib_cli_output (vm, "Total:");
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100322
Ed Warnickecb9cada2015-12-08 15:45:58 -0700323 for (ni = 0; ni < vec_len (vm->node_main.nodes); ni++)
324 {
325 n = vlib_get_node (vm, ni);
326 for (code = 0; code < n->n_errors; code++)
327 {
328 i = n->error_heap_index + code;
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100329 if (sums[i])
Dave Barach9b8ffd92016-07-08 08:13:45 -0400330 {
331 if (verbose)
Florin Coras1ae16c82020-05-11 15:31:20 +0000332 vlib_cli_output (vm, "%10lu%=40v%=20s%=10d", sums[i], n->name,
Ole Troan148c7b72020-10-07 18:05:37 +0200333 em->counters_heap[i].name, i);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400334 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700335 }
336 }
337
Dave Barach9b8ffd92016-07-08 08:13:45 -0400338 vec_free (sums);
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100339
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340 return 0;
341}
342
Dave Barach9b8ffd92016-07-08 08:13:45 -0400343/* *INDENT-OFF* */
Florin Coras66b11312017-07-31 17:18:03 -0700344VLIB_CLI_COMMAND (vlib_cli_show_errors) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700345 .path = "show errors",
346 .short_help = "Show error counts",
347 .function = show_errors,
348};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400349/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350
Dave Barach9b8ffd92016-07-08 08:13:45 -0400351/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700352VLIB_CLI_COMMAND (cli_show_node_counters, static) = {
353 .path = "show node counters",
354 .short_help = "Show node counters",
355 .function = show_errors,
356};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400357/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700358
359static clib_error_t *
360clear_error_counters (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400361 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400363 vlib_error_main_t *em;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700364 u32 i;
365
Damjan Marion92ccf9b2021-03-26 11:38:01 +0100366 foreach_vlib_main ()
367 {
368 em = &this_vlib_main->error_main;
369 vec_validate (em->counters_last_clear, vec_len (em->counters) - 1);
370 for (i = 0; i < vec_len (em->counters); i++)
371 em->counters_last_clear[i] = em->counters[i];
372 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700373 return 0;
374}
375
Dave Barach9b8ffd92016-07-08 08:13:45 -0400376/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700377VLIB_CLI_COMMAND (cli_clear_error_counters, static) = {
378 .path = "clear errors",
379 .short_help = "Clear error counters",
380 .function = clear_error_counters,
381};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400382/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700383
Dave Barach9b8ffd92016-07-08 08:13:45 -0400384/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700385VLIB_CLI_COMMAND (cli_clear_node_counters, static) = {
386 .path = "clear node counters",
387 .short_help = "Clear node counters",
388 .function = clear_error_counters,
389};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400390/* *INDENT-ON* */
391
392/*
393 * fd.io coding-style-patch-verification: ON
394 *
395 * Local Variables:
396 * eval: (c-set-style "gnu")
397 * End:
398 */