blob: e6e4f2d56514d282ee14f42a038ae48b07ef82df [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>
42
43uword
44vlib_error_drop_buffers (vlib_main_t * vm,
45 vlib_node_runtime_t * node,
46 u32 * buffers,
47 u32 next_buffer_stride,
48 u32 n_buffers,
49 u32 next_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -040050 u32 drop_error_node, u32 drop_error_code)
Ed Warnickecb9cada2015-12-08 15:45:58 -070051{
Dave Barach9b8ffd92016-07-08 08:13:45 -040052 u32 n_left_this_frame, n_buffers_left, *args, n_args_left;
Ed Warnickecb9cada2015-12-08 15:45:58 -070053 vlib_error_t drop_error;
54
55 drop_error = vlib_error_set (drop_error_node, drop_error_code);
56
57 n_buffers_left = n_buffers;
58 while (n_buffers_left > 0)
59 {
60 vlib_get_next_frame (vm, node, next_index, args, n_args_left);
61
62 n_left_this_frame = clib_min (n_buffers_left, n_args_left);
63 n_buffers_left -= n_left_this_frame;
64 n_args_left -= n_left_this_frame;
65
66 while (n_left_this_frame >= 4)
67 {
68 u32 bi0, bi1, bi2, bi3;
Dave Barach9b8ffd92016-07-08 08:13:45 -040069 vlib_buffer_t *b0, *b1, *b2, *b3;
Ed Warnickecb9cada2015-12-08 15:45:58 -070070
71 args[0] = bi0 = buffers[0];
72 args[1] = bi1 = buffers[1];
73 args[2] = bi2 = buffers[2];
74 args[3] = bi3 = buffers[3];
75
76 b0 = vlib_get_buffer (vm, bi0);
77 b1 = vlib_get_buffer (vm, bi1);
78 b2 = vlib_get_buffer (vm, bi2);
79 b3 = vlib_get_buffer (vm, bi3);
80
81 b0->error = drop_error;
82 b1->error = drop_error;
83 b2->error = drop_error;
84 b3->error = drop_error;
85
86 buffers += 4;
87 args += 4;
88 n_left_this_frame -= 4;
89 }
90
91 while (n_left_this_frame >= 1)
92 {
93 u32 bi0;
Dave Barach9b8ffd92016-07-08 08:13:45 -040094 vlib_buffer_t *b0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070095
96 args[0] = bi0 = buffers[0];
97
98 b0 = vlib_get_buffer (vm, bi0);
99 b0->error = drop_error;
100
101 buffers += 1;
102 args += 1;
103 n_left_this_frame -= 1;
104 }
105
106 vlib_put_next_frame (vm, node, next_index, n_args_left);
107 }
108
109 return n_buffers;
110}
111
112/* Convenience node to drop a vector of buffers with a "misc error". */
113static uword
114misc_drop_buffers (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400115 vlib_node_runtime_t * node, vlib_frame_t * frame)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700116{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400117 return vlib_error_drop_buffers (vm, node, vlib_frame_args (frame),
118 /* buffer stride */ 1,
119 frame->n_vectors,
120 /* next */ 0,
121 node->node_index,
122 /* error */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700123}
124
Dave Barach9b8ffd92016-07-08 08:13:45 -0400125static char *misc_drop_buffers_error_strings[] = {
126 [0] = "misc. errors",
Ed Warnickecb9cada2015-12-08 15:45:58 -0700127};
128
Dave Barach9b8ffd92016-07-08 08:13:45 -0400129/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700130VLIB_REGISTER_NODE (misc_drop_buffers_node,static) = {
131 .function = misc_drop_buffers,
132 .name = "misc-drop-buffers",
133 .vector_size = sizeof (u32),
134 .n_errors = 1,
135 .n_next_nodes = 1,
136 .next_nodes = {
137 "error-drop",
138 },
139 .error_strings = misc_drop_buffers_error_strings,
140};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400141/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700142
Ole Troan58492a82018-09-04 13:19:12 +0200143void vlib_stats_register_error_index (u8 *, u64 *, u64)
144 __attribute__ ((weak));
Dave Barach048a4e52018-06-01 18:52:25 -0400145void
Ole Troan58492a82018-09-04 13:19:12 +0200146vlib_stats_register_error_index (u8 * notused, u64 * notused2, u64 notused3)
Dave Barach048a4e52018-06-01 18:52:25 -0400147{
148};
149
150void vlib_stats_pop_heap2 (void *, u32, void *) __attribute__ ((weak));
151void
152vlib_stats_pop_heap2 (void *notused, u32 notused2, void *notused3)
153{
154};
155
156
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157/* Reserves given number of error codes for given node. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400158void
159vlib_register_errors (vlib_main_t * vm,
160 u32 node_index, u32 n_errors, char *error_strings[])
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400162 vlib_error_main_t *em = &vm->error_main;
163 vlib_node_t *n = vlib_get_node (vm, node_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700164 uword l;
Dave Barach048a4e52018-06-01 18:52:25 -0400165 void *oldheap;
166 void *vlib_stats_push_heap (void) __attribute__ ((weak));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167
Damjan Marion586afd72017-04-05 19:18:20 +0200168 ASSERT (vlib_get_thread_index () == 0);
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100169
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170 /* Free up any previous error strings. */
171 if (n->n_errors > 0)
172 heap_dealloc (em->error_strings_heap, n->error_heap_handle);
173
174 n->n_errors = n_errors;
175 n->error_strings = error_strings;
176
177 if (n_errors == 0)
178 return;
179
180 n->error_heap_index =
Dave Barach9b8ffd92016-07-08 08:13:45 -0400181 heap_alloc (em->error_strings_heap, n_errors, n->error_heap_handle);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182
183 l = vec_len (em->error_strings_heap);
184
Damjan Marionf1213b82016-03-13 02:22:06 +0100185 clib_memcpy (vec_elt_at_index (em->error_strings_heap, n->error_heap_index),
Dave Barach9b8ffd92016-07-08 08:13:45 -0400186 error_strings, n_errors * sizeof (error_strings[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700187
Dave Barach048a4e52018-06-01 18:52:25 -0400188 vec_validate (vm->error_elog_event_types, l - 1);
189
190 /* Switch to the stats segment ... */
191 oldheap = vlib_stats_push_heap ();
192
Ed Warnickecb9cada2015-12-08 15:45:58 -0700193 /* Allocate a counter/elog type for each error. */
194 vec_validate (em->counters, l - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195
196 /* Zero counters for re-registrations of errors. */
197 if (n->error_heap_index + n_errors <= vec_len (em->counters_last_clear))
Damjan Marionf1213b82016-03-13 02:22:06 +0100198 clib_memcpy (em->counters + n->error_heap_index,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400199 em->counters_last_clear + n->error_heap_index,
200 n_errors * sizeof (em->counters[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700201 else
Dave Barachb7b92992018-10-17 10:38:51 -0400202 clib_memset (em->counters + n->error_heap_index,
203 0, n_errors * sizeof (em->counters[0]));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700204
Dave Barach048a4e52018-06-01 18:52:25 -0400205 /* Register counter indices in the stat segment directory */
206 {
207 int i;
208 u8 *error_name;
209
210 for (i = 0; i < n_errors; i++)
211 {
Ole Troan2fee1672018-08-23 13:00:53 +0200212 error_name = format (0, "/err/%v/%s%c", n->name, error_strings[i], 0);
Dave Barach048a4e52018-06-01 18:52:25 -0400213 /* Note: error_name consumed by the following call */
Ole Troan58492a82018-09-04 13:19:12 +0200214 vlib_stats_register_error_index (error_name, em->counters,
215 n->error_heap_index + i);
Dave Barach048a4e52018-06-01 18:52:25 -0400216 }
217 }
218
219 /* (re)register the em->counters base address, switch back to main heap */
220 vlib_stats_pop_heap2 (em->counters, vm->thread_index, oldheap);
221
Ed Warnickecb9cada2015-12-08 15:45:58 -0700222 {
223 elog_event_type_t t;
224 uword i;
225
Dave Barachb7b92992018-10-17 10:38:51 -0400226 clib_memset (&t, 0, sizeof (t));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700227 for (i = 0; i < n_errors; i++)
228 {
229 t.format = (char *) format (0, "%v %s: %%d",
Dave Barach9b8ffd92016-07-08 08:13:45 -0400230 n->name, error_strings[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231 vm->error_elog_event_types[n->error_heap_index + i] = t;
232 }
233 }
234}
235
236static clib_error_t *
237show_errors (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400238 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700239{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400240 vlib_error_main_t *em = &vm->error_main;
241 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700242 u32 code, i, ni;
243 u64 c;
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100244 int index = 0;
245 int verbose = 0;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400246 u64 *sums = 0;
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100247
Dave Barachcbed90c2016-03-31 15:32:54 -0400248 if (unformat (input, "verbose %d", &verbose))
249 ;
250 else if (unformat (input, "verbose"))
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100251 verbose = 1;
252
Dave Barach9b8ffd92016-07-08 08:13:45 -0400253 vec_validate (sums, vec_len (em->counters));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700254
Dave Barachcbed90c2016-03-31 15:32:54 -0400255 if (verbose)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400256 vlib_cli_output (vm, "%=10s%=40s%=20s%=6s", "Count", "Node", "Reason",
257 "Index");
Dave Barachcbed90c2016-03-31 15:32:54 -0400258 else
259 vlib_cli_output (vm, "%=10s%=40s%=6s", "Count", "Node", "Reason");
Ed Warnickecb9cada2015-12-08 15:45:58 -0700260
Dave Barach9b8ffd92016-07-08 08:13:45 -0400261
262 /* *INDENT-OFF* */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100263 foreach_vlib_main(({
264 em = &this_vlib_main->error_main;
265
266 if (verbose)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400267 vlib_cli_output(vm, "Thread %u (%v):", index,
268 vlib_worker_threads[index].name);
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100269
270 for (ni = 0; ni < vec_len (this_vlib_main->node_main.nodes); ni++)
271 {
272 n = vlib_get_node (this_vlib_main, ni);
273 for (code = 0; code < n->n_errors; code++)
274 {
275 i = n->error_heap_index + code;
276 c = em->counters[i];
277 if (i < vec_len (em->counters_last_clear))
278 c -= em->counters_last_clear[i];
279 sums[i] += c;
280
Dave Barachcbed90c2016-03-31 15:32:54 -0400281 if (c == 0 && verbose < 2)
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100282 continue;
283
Dave Barachcbed90c2016-03-31 15:32:54 -0400284 if (verbose)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400285 vlib_cli_output (vm, "%10Ld%=40v%=20s%=6d", c, n->name,
Dave Barachcbed90c2016-03-31 15:32:54 -0400286 em->error_strings_heap[i], i);
287 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400288 vlib_cli_output (vm, "%10d%=40v%s", c, n->name,
Dave Barachcbed90c2016-03-31 15:32:54 -0400289 em->error_strings_heap[i]);
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100290 }
291 }
292 index++;
293 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400294 /* *INDENT-ON* */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100295
296 if (verbose)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400297 vlib_cli_output (vm, "Total:");
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100298
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 for (ni = 0; ni < vec_len (vm->node_main.nodes); ni++)
300 {
301 n = vlib_get_node (vm, ni);
302 for (code = 0; code < n->n_errors; code++)
303 {
304 i = n->error_heap_index + code;
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100305 if (sums[i])
Dave Barach9b8ffd92016-07-08 08:13:45 -0400306 {
307 if (verbose)
308 vlib_cli_output (vm, "%10Ld%=40v%=20s%=10d", sums[i], n->name,
309 em->error_strings_heap[i], i);
310 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700311 }
312 }
313
Dave Barach9b8ffd92016-07-08 08:13:45 -0400314 vec_free (sums);
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100315
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316 return 0;
317}
318
Dave Barach9b8ffd92016-07-08 08:13:45 -0400319/* *INDENT-OFF* */
Florin Coras66b11312017-07-31 17:18:03 -0700320VLIB_CLI_COMMAND (vlib_cli_show_errors) = {
Ed Warnickecb9cada2015-12-08 15:45:58 -0700321 .path = "show errors",
322 .short_help = "Show error counts",
323 .function = show_errors,
324};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400325/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700326
Dave Barach9b8ffd92016-07-08 08:13:45 -0400327/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700328VLIB_CLI_COMMAND (cli_show_node_counters, static) = {
329 .path = "show node counters",
330 .short_help = "Show node counters",
331 .function = show_errors,
332};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400333/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334
335static clib_error_t *
336clear_error_counters (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400337 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700338{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400339 vlib_error_main_t *em;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700340 u32 i;
341
Dave Barach9b8ffd92016-07-08 08:13:45 -0400342 /* *INDENT-OFF* */
Damjan Marionbc20bdf2015-12-17 14:28:18 +0100343 foreach_vlib_main(({
344 em = &this_vlib_main->error_main;
345 vec_validate (em->counters_last_clear, vec_len (em->counters) - 1);
346 for (i = 0; i < vec_len (em->counters); i++)
347 em->counters_last_clear[i] = em->counters[i];
348 }));
Dave Barach9b8ffd92016-07-08 08:13:45 -0400349 /* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700350 return 0;
351}
352
Dave Barach9b8ffd92016-07-08 08:13:45 -0400353/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700354VLIB_CLI_COMMAND (cli_clear_error_counters, static) = {
355 .path = "clear errors",
356 .short_help = "Clear error counters",
357 .function = clear_error_counters,
358};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400359/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700360
Dave Barach9b8ffd92016-07-08 08:13:45 -0400361/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700362VLIB_CLI_COMMAND (cli_clear_node_counters, static) = {
363 .path = "clear node counters",
364 .short_help = "Clear node counters",
365 .function = clear_error_counters,
366};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400367/* *INDENT-ON* */
368
369/*
370 * fd.io coding-style-patch-verification: ON
371 *
372 * Local Variables:
373 * eval: (c-set-style "gnu")
374 * End:
375 */