FD.io VPP  v19.01.3-6-g70449b9b9
Vector Packet Processing
error.c
Go to the documentation of this file.
1 /*
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 
43 uword
45  vlib_node_runtime_t * node,
46  u32 * buffers,
47  u32 next_buffer_stride,
48  u32 n_buffers,
49  u32 next_index,
50  u32 drop_error_node, u32 drop_error_code)
51 {
52  u32 n_left_this_frame, n_buffers_left, *args, n_args_left;
53  vlib_error_t drop_error;
54  vlib_node_t *n;
55 
56  n = vlib_get_node (vm, drop_error_node);
57  drop_error = n->error_heap_index + drop_error_code;
58 
59  n_buffers_left = n_buffers;
60  while (n_buffers_left > 0)
61  {
62  vlib_get_next_frame (vm, node, next_index, args, n_args_left);
63 
64  n_left_this_frame = clib_min (n_buffers_left, n_args_left);
65  n_buffers_left -= n_left_this_frame;
66  n_args_left -= n_left_this_frame;
67 
68  while (n_left_this_frame >= 4)
69  {
70  u32 bi0, bi1, bi2, bi3;
71  vlib_buffer_t *b0, *b1, *b2, *b3;
72 
73  args[0] = bi0 = buffers[0];
74  args[1] = bi1 = buffers[1];
75  args[2] = bi2 = buffers[2];
76  args[3] = bi3 = buffers[3];
77 
78  b0 = vlib_get_buffer (vm, bi0);
79  b1 = vlib_get_buffer (vm, bi1);
80  b2 = vlib_get_buffer (vm, bi2);
81  b3 = vlib_get_buffer (vm, bi3);
82 
83  b0->error = drop_error;
84  b1->error = drop_error;
85  b2->error = drop_error;
86  b3->error = drop_error;
87 
88  buffers += 4;
89  args += 4;
90  n_left_this_frame -= 4;
91  }
92 
93  while (n_left_this_frame >= 1)
94  {
95  u32 bi0;
96  vlib_buffer_t *b0;
97 
98  args[0] = bi0 = buffers[0];
99 
100  b0 = vlib_get_buffer (vm, bi0);
101  b0->error = drop_error;
102 
103  buffers += 1;
104  args += 1;
105  n_left_this_frame -= 1;
106  }
107 
108  vlib_put_next_frame (vm, node, next_index, n_args_left);
109  }
110 
111  return n_buffers;
112 }
113 
114 /* Convenience node to drop a vector of buffers with a "misc error". */
115 static uword
117  vlib_node_runtime_t * node, vlib_frame_t * frame)
118 {
119  return vlib_error_drop_buffers (vm, node, vlib_frame_vector_args (frame),
120  /* buffer stride */ 1,
121  frame->n_vectors,
122  /* next */ 0,
123  node->node_index,
124  /* error */ 0);
125 }
126 
128  [0] = "misc. errors",
129 };
130 
131 /* *INDENT-OFF* */
133  .function = misc_drop_buffers,
134  .name = "misc-drop-buffers",
135  .vector_size = sizeof (u32),
136  .n_errors = 1,
137  .n_next_nodes = 1,
138  .next_nodes = {
139  "error-drop",
140  },
141  .error_strings = misc_drop_buffers_error_strings,
142 };
143 /* *INDENT-ON* */
144 
145 void vlib_stats_register_error_index (void *, u8 *, u64 *, u64)
146  __attribute__ ((weak));
147 void
148 vlib_stats_register_error_index (void *noutused, u8 * notused2,
149  u64 * notused3, u64 notused4)
150 {
151 };
152 
153 void vlib_stats_pop_heap2 (void *, u32, void *) __attribute__ ((weak));
154 void
155 vlib_stats_pop_heap2 (void *notused, u32 notused2, void *notused3)
156 {
157 };
158 
159 
160 /* Reserves given number of error codes for given node. */
161 void
163  u32 node_index, u32 n_errors, char *error_strings[])
164 {
165  vlib_error_main_t *em = &vm->error_main;
166  vlib_node_main_t *nm = &vm->node_main;
167 
168  vlib_node_t *n = vlib_get_node (vm, node_index);
169  uword l;
170  void *oldheap;
171  void *vlib_stats_push_heap (void) __attribute__ ((weak));
172 
173  ASSERT (vlib_get_thread_index () == 0);
174 
175  /* Free up any previous error strings. */
176  if (n->n_errors > 0)
178 
179  n->n_errors = n_errors;
180  n->error_strings = error_strings;
181 
182  if (n_errors == 0)
183  return;
184 
185  n->error_heap_index =
186  heap_alloc (em->error_strings_heap, n_errors, n->error_heap_handle);
187 
188  l = vec_len (em->error_strings_heap);
189 
191  error_strings, n_errors * sizeof (error_strings[0]));
192 
194 
195  /* Switch to the stats segment ... */
196  oldheap = vlib_stats_push_heap ();
197 
198  /* Allocate a counter/elog type for each error. */
199  vec_validate (em->counters, l - 1);
200 
201  /* Zero counters for re-registrations of errors. */
202  if (n->error_heap_index + n_errors <= vec_len (em->counters_last_clear))
205  n_errors * sizeof (em->counters[0]));
206  else
208  0, n_errors * sizeof (em->counters[0]));
209 
210  /* Register counter indices in the stat segment directory */
211  {
212  int i;
213  u8 *error_name;
214 
215  for (i = 0; i < n_errors; i++)
216  {
217  error_name = format (0, "/err/%v/%s%c", n->name, error_strings[i], 0);
218  /* Note: error_name consumed by the following call */
219  vlib_stats_register_error_index (oldheap, error_name, em->counters,
220  n->error_heap_index + i);
221  }
222  }
223 
224  /* (re)register the em->counters base address, switch back to main heap */
225  vlib_stats_pop_heap2 (em->counters, vm->thread_index, oldheap);
226 
227  {
229  uword i;
230 
231  clib_memset (&t, 0, sizeof (t));
232  if (n_errors > 0)
233  vec_validate (nm->node_by_error, n->error_heap_index + n_errors - 1);
234  for (i = 0; i < n_errors; i++)
235  {
236  t.format = (char *) format (0, "%v %s: %%d",
237  n->name, error_strings[i]);
239  nm->node_by_error[n->error_heap_index + i] = n->index;
240  }
241  }
242 }
243 
244 static clib_error_t *
246  unformat_input_t * input, vlib_cli_command_t * cmd)
247 {
248  vlib_error_main_t *em = &vm->error_main;
249  vlib_node_t *n;
250  u32 code, i, ni;
251  u64 c;
252  int index = 0;
253  int verbose = 0;
254  u64 *sums = 0;
255 
256  if (unformat (input, "verbose %d", &verbose))
257  ;
258  else if (unformat (input, "verbose"))
259  verbose = 1;
260 
261  vec_validate (sums, vec_len (em->counters));
262 
263  if (verbose)
264  vlib_cli_output (vm, "%=10s%=40s%=20s%=6s", "Count", "Node", "Reason",
265  "Index");
266  else
267  vlib_cli_output (vm, "%=10s%=40s%=6s", "Count", "Node", "Reason");
268 
269 
270  /* *INDENT-OFF* */
272  em = &this_vlib_main->error_main;
273 
274  if (verbose)
275  vlib_cli_output(vm, "Thread %u (%v):", index,
276  vlib_worker_threads[index].name);
277 
278  for (ni = 0; ni < vec_len (this_vlib_main->node_main.nodes); ni++)
279  {
280  n = vlib_get_node (this_vlib_main, ni);
281  for (code = 0; code < n->n_errors; code++)
282  {
283  i = n->error_heap_index + code;
284  c = em->counters[i];
285  if (i < vec_len (em->counters_last_clear))
286  c -= em->counters_last_clear[i];
287  sums[i] += c;
288 
289  if (c == 0 && verbose < 2)
290  continue;
291 
292  if (verbose)
293  vlib_cli_output (vm, "%10Ld%=40v%=20s%=6d", c, n->name,
294  em->error_strings_heap[i], i);
295  else
296  vlib_cli_output (vm, "%10d%=40v%s", c, n->name,
297  em->error_strings_heap[i]);
298  }
299  }
300  index++;
301  }));
302  /* *INDENT-ON* */
303 
304  if (verbose)
305  vlib_cli_output (vm, "Total:");
306 
307  for (ni = 0; ni < vec_len (vm->node_main.nodes); ni++)
308  {
309  n = vlib_get_node (vm, ni);
310  for (code = 0; code < n->n_errors; code++)
311  {
312  i = n->error_heap_index + code;
313  if (sums[i])
314  {
315  if (verbose)
316  vlib_cli_output (vm, "%10Ld%=40v%=20s%=10d", sums[i], n->name,
317  em->error_strings_heap[i], i);
318  }
319  }
320  }
321 
322  vec_free (sums);
323 
324  return 0;
325 }
326 
327 /* *INDENT-OFF* */
328 VLIB_CLI_COMMAND (vlib_cli_show_errors) = {
329  .path = "show errors",
330  .short_help = "Show error counts",
331  .function = show_errors,
332 };
333 /* *INDENT-ON* */
334 
335 /* *INDENT-OFF* */
336 VLIB_CLI_COMMAND (cli_show_node_counters, static) = {
337  .path = "show node counters",
338  .short_help = "Show node counters",
339  .function = show_errors,
340 };
341 /* *INDENT-ON* */
342 
343 static clib_error_t *
345  unformat_input_t * input, vlib_cli_command_t * cmd)
346 {
347  vlib_error_main_t *em;
348  u32 i;
349 
350  /* *INDENT-OFF* */
352  em = &this_vlib_main->error_main;
354  for (i = 0; i < vec_len (em->counters); i++)
355  em->counters_last_clear[i] = em->counters[i];
356  }));
357  /* *INDENT-ON* */
358  return 0;
359 }
360 
361 /* *INDENT-OFF* */
362 VLIB_CLI_COMMAND (cli_clear_error_counters, static) = {
363  .path = "clear errors",
364  .short_help = "Clear error counters",
365  .function = clear_error_counters,
366 };
367 /* *INDENT-ON* */
368 
369 /* *INDENT-OFF* */
370 VLIB_CLI_COMMAND (cli_clear_node_counters, static) = {
371  .path = "clear node counters",
372  .short_help = "Clear node counters",
373  .function = clear_error_counters,
374 };
375 /* *INDENT-ON* */
376 
377 /*
378  * fd.io coding-style-patch-verification: ON
379  *
380  * Local Variables:
381  * eval: (c-set-style "gnu")
382  * End:
383  */
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:439
void vlib_stats_register_error_index(void *, u8 *, u64 *, u64)
Definition: error.c:148
void * vlib_stats_push_heap(void *)
Definition: cli.c:799
u32 error_heap_index
Definition: node.h:348
#define clib_min(x, y)
Definition: clib.h:295
unsigned long u64
Definition: types.h:89
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
u32 index
Definition: node.h:304
static clib_error_t * show_errors(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: error.c:245
u32 thread_index
Definition: main.h:179
char ** error_strings
Definition: node.h:351
u16 vlib_error_t
Definition: error.h:43
int i
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
char * format
Format string.
Definition: elog.h:92
unsigned char u8
Definition: types.h:56
#define clib_memcpy(d, s, n)
Definition: string.h:180
void vlib_register_errors(vlib_main_t *vm, u32 node_index, u32 n_errors, char *error_strings[])
Definition: error.c:162
u64 * counters_last_clear
Definition: error.h:51
void vlib_stats_pop_heap2(void *, u32, void *)
Definition: error.c:155
static vlib_node_registration_t misc_drop_buffers_node
(constructor) VLIB_REGISTER_NODE (misc_drop_buffers_node)
Definition: error.c:132
vlib_node_t ** nodes
Definition: node.h:721
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
elog_event_type_t * error_elog_event_types
Definition: main.h:167
unsigned int u32
Definition: types.h:88
vlib_worker_thread_t * vlib_worker_threads
Definition: threads.c:36
u32 error_heap_handle
Definition: node.h:347
vlib_error_main_t error_main
Definition: main.h:143
uword vlib_error_drop_buffers(vlib_main_t *vm, vlib_node_runtime_t *node, u32 *buffers, u32 next_buffer_stride, u32 n_buffers, u32 next_index, u32 drop_error_node, u32 drop_error_code)
Definition: error.c:44
struct _unformat_input_t unformat_input_t
u32 * node_by_error
Definition: node.h:789
u32 node_index
Node index.
Definition: node.h:518
#define foreach_vlib_main(body)
Definition: threads.h:235
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
Definition: node_funcs.h:338
u8 name[64]
Definition: memclnt.api:152
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:139
u8 * name
Definition: node.h:288
u64 * counters
Definition: error.h:48
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:169
char ** error_strings_heap
Definition: error.h:55
svmdb_client_t * c
u16 n_vectors
Definition: node.h:420
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:212
vlib_main_t * vm
Definition: buffer.c:301
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:341
static uword misc_drop_buffers(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: error.c:116
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
Definition: main.c:452
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:155
#define ASSERT(truth)
void heap_dealloc(void *v, uword handle)
Definition: heap.c:496
#define heap_alloc(v, size, handle)
Definition: heap.h:337
static clib_error_t * clear_error_counters(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: error.c:344
static char * misc_drop_buffers_error_strings[]
Definition: error.c:127
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
vlib_node_main_t node_main
Definition: main.h:129
u64 uword
Definition: types.h:112
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:244
u16 n_errors
Definition: node.h:341
static vlib_node_t * vlib_get_node(vlib_main_t *vm, u32 i)
Get vlib node by index.
Definition: node_funcs.h:59
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:762
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:62
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:972