blob: 0918f624a6628d573ba46d3b44bd07b6a68e379c [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,
118 u32 node_index, u32 n_errors, char *error_strings[])
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)
131 heap_dealloc (em->error_strings_heap, n->error_heap_handle);
132
133 n->n_errors = n_errors;
134 n->error_strings = error_strings;
135
136 if (n_errors == 0)
137 return;
138
139 n->error_heap_index =
Dave Barach9b8ffd92016-07-08 08:13:45 -0400140 heap_alloc (em->error_strings_heap, n_errors, n->error_heap_handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700141
142 l = vec_len (em->error_strings_heap);
143
Damjan Marionf1213b82016-03-13 02:22:06 +0100144 clib_memcpy (vec_elt_at_index (em->error_strings_heap, n->error_heap_index),
Dave Barach9b8ffd92016-07-08 08:13:45 -0400145 error_strings, n_errors * sizeof (error_strings[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700146
Dave Barach048a4e52018-06-01 18:52:25 -0400147 vec_validate (vm->error_elog_event_types, l - 1);
148
149 /* Switch to the stats segment ... */
Ole Troan233e4682019-05-16 15:01:34 +0200150 oldheap = vlib_stats_push_heap (0);
Dave Barach048a4e52018-06-01 18:52:25 -0400151
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152 /* Allocate a counter/elog type for each error. */
153 vec_validate (em->counters, l - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154
155 /* Zero counters for re-registrations of errors. */
156 if (n->error_heap_index + n_errors <= vec_len (em->counters_last_clear))
Damjan Marionf1213b82016-03-13 02:22:06 +0100157 clib_memcpy (em->counters + n->error_heap_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400158 em->counters_last_clear + n->error_heap_index,
159 n_errors * sizeof (em->counters[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160 else
Dave Barachb7b92992018-10-17 10:38:51 -0400161 clib_memset (em->counters + n->error_heap_index,
162 0, n_errors * sizeof (em->counters[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163
Dave Barach048a4e52018-06-01 18:52:25 -0400164 /* Register counter indices in the stat segment directory */
165 {
166 int i;
Benoît Gannef7c30df2019-07-08 14:39:02 +0200167 u8 *error_name = 0;
Dave Barach048a4e52018-06-01 18:52:25 -0400168
169 for (i = 0; i < n_errors; i++)
170 {
Benoît Gannef7c30df2019-07-08 14:39:02 +0200171 vec_reset_length (error_name);
172 error_name =
173 format (error_name, "/err/%v/%s%c", n->name, error_strings[i], 0);
Ole Troan92e30822019-06-16 12:33:51 +0200174 vlib_stats_register_error_index (oldheap, error_name, em->counters,
Ole Troan58492a82018-09-04 13:19:12 +0200175 n->error_heap_index + i);
Dave Barach048a4e52018-06-01 18:52:25 -0400176 }
Benoît Gannef7c30df2019-07-08 14:39:02 +0200177
178 vec_free (error_name);
Dave Barach048a4e52018-06-01 18:52:25 -0400179 }
180
181 /* (re)register the em->counters base address, switch back to main heap */
Ole Troan233e4682019-05-16 15:01:34 +0200182 vlib_stats_pop_heap2 (em->counters, vm->thread_index, oldheap, 1);
Dave Barach048a4e52018-06-01 18:52:25 -0400183
Ed Warnickecb9cada2015-12-08 15:45:58 -0700184 {
185 elog_event_type_t t;
186 uword i;
187
Dave Barachb7b92992018-10-17 10:38:51 -0400188 clib_memset (&t, 0, sizeof (t));
Dave Barach687c9022019-07-23 10:22:31 -0400189 if (n_errors > 0)
190 vec_validate (nm->node_by_error, n->error_heap_index + n_errors - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700191 for (i = 0; i < n_errors; i++)
192 {
193 t.format = (char *) format (0, "%v %s: %%d",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400194 n->name, error_strings[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195 vm->error_elog_event_types[n->error_heap_index + i] = t;
Dave Barach687c9022019-07-23 10:22:31 -0400196 nm->node_by_error[n->error_heap_index + i] = n->index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700197 }
198 }
199}
200
201static clib_error_t *
202show_errors (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400203 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400205 vlib_error_main_t *em = &vm->error_main;
206 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700207 u32 code, i, ni;
208 u64 c;
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100209 int index = 0;
210 int verbose = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400211 u64 *sums = 0;
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100212
Dave Barachcbed90c2016-03-31 15:32:54 -0400213 if (unformat (input, "verbose %d", &verbose))
214 ;
215 else if (unformat (input, "verbose"))
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100216 verbose = 1;
217
Dave Barach9b8ffd92016-07-08 08:13:45 -0400218 vec_validate (sums, vec_len (em->counters));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219
Dave Barachcbed90c2016-03-31 15:32:54 -0400220 if (verbose)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400221 vlib_cli_output (vm, "%=10s%=40s%=20s%=6s", "Count", "Node", "Reason",
222 "Index");
Dave Barachcbed90c2016-03-31 15:32:54 -0400223 else
224 vlib_cli_output (vm, "%=10s%=40s%=6s", "Count", "Node", "Reason");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225
Dave Barach9b8ffd92016-07-08 08:13:45 -0400226
227 /* *INDENT-OFF* */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100228 foreach_vlib_main(({
229 em = &this_vlib_main->error_main;
230
231 if (verbose)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400232 vlib_cli_output(vm, "Thread %u (%v):", index,
233 vlib_worker_threads[index].name);
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100234
235 for (ni = 0; ni < vec_len (this_vlib_main->node_main.nodes); ni++)
236 {
237 n = vlib_get_node (this_vlib_main, ni);
238 for (code = 0; code < n->n_errors; code++)
239 {
240 i = n->error_heap_index + code;
241 c = em->counters[i];
242 if (i < vec_len (em->counters_last_clear))
243 c -= em->counters_last_clear[i];
244 sums[i] += c;
245
Dave Barachcbed90c2016-03-31 15:32:54 -0400246 if (c == 0 && verbose < 2)
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100247 continue;
248
Dave Barachcbed90c2016-03-31 15:32:54 -0400249 if (verbose)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400250 vlib_cli_output (vm, "%10Ld%=40v%=20s%=6d", c, n->name,
Dave Barachcbed90c2016-03-31 15:32:54 -0400251 em->error_strings_heap[i], i);
252 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400253 vlib_cli_output (vm, "%10d%=40v%s", c, n->name,
Dave Barachcbed90c2016-03-31 15:32:54 -0400254 em->error_strings_heap[i]);
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100255 }
256 }
257 index++;
258 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400259 /* *INDENT-ON* */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100260
261 if (verbose)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400262 vlib_cli_output (vm, "Total:");
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100263
Ed Warnickecb9cada2015-12-08 15:45:58 -0700264 for (ni = 0; ni < vec_len (vm->node_main.nodes); ni++)
265 {
266 n = vlib_get_node (vm, ni);
267 for (code = 0; code < n->n_errors; code++)
268 {
269 i = n->error_heap_index + code;
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100270 if (sums[i])
Dave Barach9b8ffd92016-07-08 08:13:45 -0400271 {
272 if (verbose)
273 vlib_cli_output (vm, "%10Ld%=40v%=20s%=10d", sums[i], n->name,
274 em->error_strings_heap[i], i);
275 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276 }
277 }
278
Dave Barach9b8ffd92016-07-08 08:13:45 -0400279 vec_free (sums);
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100280
Ed Warnickecb9cada2015-12-08 15:45:58 -0700281 return 0;
282}
283
Dave Barach9b8ffd92016-07-08 08:13:45 -0400284/* *INDENT-OFF* */
Florin Coras66b11312017-07-31 17:18:03 -0700285VLIB_CLI_COMMAND (vlib_cli_show_errors) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700286 .path = "show errors",
287 .short_help = "Show error counts",
288 .function = show_errors,
289};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400290/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700291
Dave Barach9b8ffd92016-07-08 08:13:45 -0400292/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700293VLIB_CLI_COMMAND (cli_show_node_counters, static) = {
294 .path = "show node counters",
295 .short_help = "Show node counters",
296 .function = show_errors,
297};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400298/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299
300static clib_error_t *
301clear_error_counters (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400302 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700303{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400304 vlib_error_main_t *em;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700305 u32 i;
306
Dave Barach9b8ffd92016-07-08 08:13:45 -0400307 /* *INDENT-OFF* */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100308 foreach_vlib_main(({
309 em = &this_vlib_main->error_main;
310 vec_validate (em->counters_last_clear, vec_len (em->counters) - 1);
311 for (i = 0; i < vec_len (em->counters); i++)
312 em->counters_last_clear[i] = em->counters[i];
313 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400314 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315 return 0;
316}
317
Dave Barach9b8ffd92016-07-08 08:13:45 -0400318/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319VLIB_CLI_COMMAND (cli_clear_error_counters, static) = {
320 .path = "clear errors",
321 .short_help = "Clear error counters",
322 .function = clear_error_counters,
323};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400324/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700325
Dave Barach9b8ffd92016-07-08 08:13:45 -0400326/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700327VLIB_CLI_COMMAND (cli_clear_node_counters, static) = {
328 .path = "clear node counters",
329 .short_help = "Clear node counters",
330 .function = clear_error_counters,
331};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400332/* *INDENT-ON* */
333
334/*
335 * fd.io coding-style-patch-verification: ON
336 *
337 * Local Variables:
338 * eval: (c-set-style "gnu")
339 * End:
340 */