summaryrefslogtreecommitdiffstats
path: root/src/vlib/trace.c
blob: abd116622c719567f328aff2f2b1b4a743d21f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
/*
 * Copyright (c) 2015 Cisco and/or its affiliates.
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
 * trace.c: VLIB trace buffer.
 *
 * Copyright (c) 2008 Eliot Dresselhaus
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */

#include <vlib/vlib.h>
#include <vlib/threads.h>

u8 *vnet_trace_placeholder;

/* Helper function for nodes which only trace buffer data. */
void
vlib_trace_frame_buffers_only (vlib_main_t * vm,
			       vlib_node_runtime_t * node,
			       u32 * buffers,
			       uword n_buffers,
			       uword next_buffer_stride,
			       uword n_buffer_data_bytes_in_trace)
{
  u32 n_left, *from;

  n_left = n_buffers;
  from = buffers;

  while (n_left >= 4)
    {
      u32 bi0, bi1;
      vlib_buffer_t *b0, *b1;
      u8 *t0, *t1;

      /* Prefetch next iteration. */
      vlib_prefetch_buffer_with_index (vm, from[2], LOAD);
      vlib_prefetch_buffer_with_index (vm, from[3], LOAD);

      bi0 = from[0];
      bi1 = from[1];

      b0 = vlib_get_buffer (vm, bi0);
      b1 = vlib_get_buffer (vm, bi1);

      if (b0->flags & VLIB_BUFFER_IS_TRACED)
	{
	  t0 = vlib_add_trace (vm, node, b0, n_buffer_data_bytes_in_trace);
	  clib_memcpy_fast (t0, b0->data + b0->current_data,
			    n_buffer_data_bytes_in_trace);
	}
      if (b1->flags & VLIB_BUFFER_IS_TRACED)
	{
	  t1 = vlib_add_trace (vm, node, b1, n_buffer_data_bytes_in_trace);
	  clib_memcpy_fast (t1, b1->data + b1->current_data,
			    n_buffer_data_bytes_in_trace);
	}
      from += 2;
      n_left -= 2;
    }

  while (n_left >= 1)
    {
      u32 bi0;
      vlib_buffer_t *b0;
      u8 *t0;

      bi0 = from[0];

      b0 = vlib_get_buffer (vm, bi0);

      if (b0->flags & VLIB_BUFFER_IS_TRACED)
	{
	  t0 = vlib_add_trace (vm, node, b0, n_buffer_data_bytes_in_trace);
	  clib_memcpy_fast (t0, b0->data + b0->current_data,
			    n_buffer_data_bytes_in_trace);
	}
      from += 1;
      n_left -= 1;
    }
}

/* Free up all trace buffer memory. */
always_inline void
clear_trace_buffer (void)
{
  int i;
  vlib_trace_main_t *tm;

  /* *INDENT-OFF* */
  foreach_vlib_main (
  ({
    tm = &this_vlib_main->trace_main;

    tm->trace_enable = 0;
    vec_free (tm->nodes);
  }));

  foreach_vlib_main (
  ({
    tm = &this_vlib_main->trace_main;

    for (i = 0; i < vec_len (tm->trace_buffer_pool); i++)
      if (! pool_is_free_index (tm->trace_buffer_pool, i))
        vec_free (tm->trace_buffer_pool[i]);
    pool_free (tm->trace_buffer_pool);
  }));
  /* *INDENT-ON* */
}

u8 *
format_vlib_trace (u8 * s, va_list * va)
{
  vlib_main_t *vm = va_arg (*va, vlib_main_t *);
  vlib_trace_header_t *h = va_arg (*va, vlib_trace_header_t *);
  vlib_trace_header_t *e = vec_end (h);
  vlib_node_t *node, *prev_node;
  clib_time_t *ct = &vm->clib_time;
  f64 t;

  prev_node = 0;
  while (h < e)
    {
      node = vlib_get_node (vm, h->node_index);

      if (node != prev_node)
	{
	  t =
	    (h->time - vm->cpu_time_main_loop_start) * ct->seconds_per_clock;
	  s =
	    format (s, "\n%U: %v", format_time_interval, "h:m:s:u", t,
		    node->name);
	}
      prev_node = node;

      if (node->format_trace)
	s = format (s, "\n  %U", node->format_trace, vm, node, h->data);
      else
	s = format (s, "\n  %U", node->format_buffer, h->data);

      h = vlib_trace_header_next (h);
    }

  return s;
}

/* Root of all trace cli commands. */
/* *INDENT-OFF* */
VLIB_CLI_COMMAND (trace_cli_command,static) = {
  .path = "trace",
  .short_help = "Packet tracer commands",
};
/* *INDENT-ON* */

int
trace_time_cmp (void *a1, void *a2)
{
  vlib_trace_header_t **t1 = a1;
  vlib_trace_header_t **t2 = a2;
  i64 dt = t1[0]->time - t2[0]->time;
  return dt < 0 ? -1 : (dt > 0 ? +1 : 0);
}

/*
 * Return 1 if this packet passes the trace filter, or 0 otherwise
 */
u32
filter_accept (vlib_trace_main_t * tm, vlib_trace_header_t * h)
{
  vlib_trace_header_t *e = vec_end (h);

  if (tm->filter_flag == 0)
    return 1;

  if (tm->filter_flag == FILTER_FLAG_INCLUDE)
    {
      while (h < e)
	{
	  if (h->node_index == tm->filter_node_index)
	    return 1;
	  h = vlib_trace_header_next (h);
	}
      return 0;
    }
  else				/* FILTER_FLAG_EXCLUDE */
    {
      while (h < e)
	{
	  if (h->node_index == tm->filter_node_index)
	    return 0;
	  h = vlib_trace_header_next (h);
	}
      return 1;
    }

  return 0;
}

/*
 * Remove traces from the trace buffer pool that don't pass the filter
 */
void
trace_apply_filter (vlib_main_t * vm)
{
  vlib_trace_main_t *tm = &vm->trace_main;
  vlib_trace_header_t **h;
  vlib_trace_header_t ***traces_to_remove = 0;
  u32 index;
  u32 trace_index;
  u32 n_accepted;

  u32 accept;

  if (tm->filter_flag == FILTER_FLAG_NONE)
    return;

  /*
   * Ideally we would retain the first N traces that pass the filter instead
   * of any N traces.
   */
  n_accepted = 0;
  /* *INDENT-OFF* */
  pool_foreach (h, tm->trace_buffer_pool,
   ({
      accept = filter_accept(tm, h[0]);

      if ((n_accepted == tm->filter_count) || !accept)
          vec_add1 (traces_to_remove, h);
      else
          n_accepted++;
  }));
  /* *INDENT-ON* */

  /* remove all traces that we don't want to keep */
  for (index = 0; index < vec_len (traces_to_remove); index++)
    {
      trace_index = traces_to_remove[index] - tm->trace_buffer_pool;
      _vec_len (tm->trace_buffer_pool[trace_index]) = 0;
      pool_put_index (tm->trace_buffer_pool, trace_index);
    }

  vec_free (traces_to_remove);
}

static clib_error_t *
cli_show_trace_buffer (vlib_main_t * vm,
		       unformat_input_t * input, vlib_cli_command_t * cmd)
{
  vlib_trace_main_t *tm;
  vlib_trace_header_t **h, **traces;
  u32 i, index = 0;
  char *fmt;
  u8 *s = 0;
  u32 max;

  /*
   * By default display only this many traces. To display more, explicitly
   * specify a max. This prevents unexpectedly huge outputs.
   */
  max = 50;
  while (unformat_check_input (input) != (uword) UNFORMAT_END_OF_INPUT)
    {
      if (unformat (input, "max %d", &max))
	;
      else
	return clib_error_create ("expected 'max COUNT', got `%U'",
				  format_unformat_error, input);
    }


  /* Get active traces from pool. */

  /* *INDENT-OFF* */
  foreach_vlib_main (
  ({
    fmt = "------------------- Start of thread %d %s -------------------\n";
    s = format (s, fmt, index, vlib_worker_threads[index].name);

    tm = &this_vlib_main->trace_main;

    trace_apply_filter(this_vlib_main);

    traces = 0;
    pool_foreach (h, tm->trace_buffer_pool,
    ({
      vec_add1 (traces, h[0]);
    }));

    if (vec_len (traces) == 0)
      {
        s = format (s, "No packets in trace buffer\n");
        goto done;
      }

    /* Sort them by increasing time. */
    vec_sort_with_function (traces, trace_time_cmp);

    for (i = 0; i < vec_len (traces); i++)
      {
        if (i == max)
          {
            vlib_cli_output (vm, "Limiting display to %d packets."
                                 " To display more specify max.", max);
            goto done;
          }

        s = format (s, "Packet %d\n%U\n\n", i + 1,
                         format_vlib_trace, vm, traces[i]);
      }

  done:
    vec_free (traces);

    index++;
  }));
  /* *INDENT-ON* */

  vlib_cli_output (vm, "%v", s);
  vec_free (s);
  return 0;
}

/* *INDENT-OFF* */
VLIB_CLI_COMMAND (show_trace_cli,static) = {
  .path = "show trace",
  .short_help = "Show trace buffer [max COUNT]",
  .function = cli_show_trace_buffer,
};
/* *INDENT-ON* */

int vlib_enable_disable_pkt_trace_filter (int enable) __attribute__ ((weak));

int
vlib_enable_disable_pkt_trace_filter (int enable)
{
  return 0;
}

void
vlib_trace_stop_and_clear (void)
{
  vlib_enable_disable_pkt_trace_filter (0);	/* disble tracing */
  clear_trace_buffer ();
}


void
trace_update_capture_options (u32 add, u32 node_index, u32 filter, u8 verbose)
{
  vlib_trace_main_t *tm;
  vlib_trace_node_t *tn;

  if (add == ~0)
    add = 50;

  /* *INDENT-OFF* */
  foreach_vlib_main ((
    {
      tm = &this_vlib_main->trace_main;
      tm->verbose = verbose;
      vec_validate (tm->nodes, node_index);
      tn = tm->nodes + node_index;

      /*
       * Adding 0 makes no real sense, and there wa no other way
       * to explicilty zero-out the limits and count, so make
       * an "add 0" request really be "set to 0".
       */
      if (add == 0)
	  tn->limit = tn->count = 0;
      else
	  tn->limit += add;
    }));

  foreach_vlib_main ((
    {
      tm = &this_vlib_main->trace_main;
      tm->trace_enable = 1;
    }));
  /* *INDENT-ON* */
}

static clib_error_t *
cli_add_trace_buffer (vlib_main_t * vm,
		      unformat_input_t * input, vlib_cli_command_t * cmd)
{
  unformat_input_t _line_input, *line_input = &_line_input;
  vlib_node_t *node;
  u32 node_index, add;
  u8 verbose = 0;
  int filter = 0;
  clib_error_t *error = 0;

  if (!unformat_user (input, unformat_line_input, line_input))
    return 0;

  if (vnet_trace_placeholder == 0)
    vec_validate_aligned (vnet_trace_placeholder, 2048,
			  CLIB_CACHE_LINE_BYTES);

  while (unformat_check_input (line_input) != (uword) UNFORMAT_END_OF_INPUT)
    {
      if (unformat (line_input, "%U %d",
		    unformat_vlib_node, vm, &node_index, &add))
	;
      else if (unformat (line_input, "verbose"))
	verbose = 1;
      else if (unformat (line_input, "filter"))
	filter = 1;
      else
	{
	  error = clib_error_create ("expected NODE COUNT, got `%U'",
				     format_unformat_error, line_input);
	  goto done;
	}
    }

  node = vlib_get_node (vm, node_index);

  if ((node->flags & VLIB_NODE_FLAG_TRACE_SUPPORTED) == 0)
    {
      error = clib_error_create ("node '%U' doesn't support per-node "
				 "tracing. There may be another way to "
				 "initiate trace on this node.",
				 format_vlib_node_name, vm, node_index);
      goto done;
    }

  if (filter)
    {
      if (vlib_enable_disable_pkt_trace_filter (1 /* enable */ ))
	{
	  error = clib_error_create ("No packet trace filter configured...");
	  goto done;
	}
    }

  trace_update_capture_options (add, node_index, filter, verbose);

done:
  unformat_free (line_input);

  return error;
}

/* *INDENT-OFF* */
VLIB_CLI_COMMAND (add_trace_cli,static) = {
  .path = "trace add",
  .short_help = "trace add <input-graph-node> <add'l-pkts-for-node-> [filter] [verbose]",
  .function = cli_add_trace_buffer,
};
/* *INDENT-ON* */

/*
 * Configure a filter for packet traces.
 *
 * This supplements the packet trace feature so that only packets matching
 * the filter are included in the trace. Currently the only filter is to
 * keep packets that include a certain node in the trace or exclude a certain
 * node in the trace.
 *
 * The count of traced packets in the "trace add" command is still used to
 * create a certain number of traces. The "trace filter" command specifies
 * how many of those packets should be retained in the trace.
 *
 * For example, 1Mpps of traffic is arriving and one of those packets is being
 * dropped. To capture the trace for only that dropped packet, you can do:
 *     trace filter include error-drop 1
 *     trace add dpdk-input 1000000
 *     <wait one second>
 *     show trace
 *
 * Note that the filter could be implemented by capturing all traces and just
 * reducing traces displayed by the "show trace" function. But that would
 * require a lot of memory for storing the traces, making that infeasible.
 *
 * To remove traces from the trace pool that do not include a certain node
 * requires that the trace be "complete" before applying the filter. To
 * accomplish this, the trace pool is filtered upon each iteraction of the
 * main vlib loop. Doing so keeps the number of allocated traces down to a
 * reasonably low number. This requires that tracing for a buffer is not
 * performed after the vlib main loop interation completes. i.e. you can't
 * save away a buffer temporarily then inject it back into the graph and
 * expect that the trace_index is still valid (such as a traffic manager might
 * do). A new trace buffer should be allocated for those types of packets.
 *
 * The filter can be extended to support multiple nodes and other match
 * criteria (e.g. input sw_if_index, mac address) but for now just checks if
 * a specified node is in the trace or not in the trace.
 */

void
trace_filter_set (u32 node_index, u32 flag, u32 count)
{
  /* *INDENT-OFF* */
  foreach_vlib_main (
  ({
    vlib_trace_main_t *tm;

    tm = &this_vlib_main->trace_main;
    tm->filter_node_index = node_index;
    tm->filter_flag = flag;
    tm->filter_count = count;

    /*
     * Clear the trace limits to stop any in-progress tracing
     * Prevents runaway trace allocations when the filter changes
     * (or is removed)
     */
    vec_free (tm->nodes);
  }));
  /* *INDENT-ON* */
}


static clib_error_t *
cli_filter_trace (vlib_main_t * vm,
		  unformat_input_t * input, vlib_cli_command_t * cmd)
{
  u32 filter_node_index;
  u32 filter_flag;
  u32 filter_count;

  if (unformat (input, "include %U %d",
		unformat_vlib_node, vm, &filter_node_index, &filter_count))
    {
      filter_flag = FILTER_FLAG_INCLUDE;
    }
  else if (unformat (input, "exclude %U %d",
		     unformat_vlib_node, vm, &filter_node_index,
		     &filter_count))
    {
      filter_flag = FILTER_FLAG_EXCLUDE;
    }
  else if (unformat (input, "none"))
    {
      filter_flag = FILTER_FLAG_NONE;
      filter_node_index = 0;
      filter_count = 0;
    }
  else
    return
      clib_error_create
      ("expected 'include NODE COUNT' or 'exclude NODE COUNT' or 'none', got `%U'",
       format_unformat_error, input);

  trace_filter_set (filter_node_index, filter_flag, filter_count);

  return 0;
}

/* *INDENT-OFF* */
VLIB_CLI_COMMAND (filter_trace_cli,static) = {
  .path = "trace filter",
  .short_help = "trace filter none | [include|exclude] NODE COUNT",
  .function = cli_filter_trace,
};
/* *INDENT-ON* */

static clib_error_t *
cli_clear_trace_buffer (vlib_main_t * vm,
			unformat_input_t * input, vlib_cli_command_t * cmd)
{
  vlib_trace_stop_and_clear ();
  return 0;
}

/* *INDENT-OFF* */
VLIB_CLI_COMMAND (clear_trace_cli,static) = {
  .path = "clear trace",
  .short_help = "Clear trace buffer and free memory",
  .function = cli_clear_trace_buffer,
};
/* *INDENT-ON* */

/* Placeholder function to get us linked in. */
void
vlib_trace_cli_reference (void)
{
}

int
vnet_is_packet_traced (vlib_buffer_t * b,
		       u32 classify_table_index, int func)
__attribute__ ((weak));

int
vnet_is_packet_traced (vlib_buffer_t * b, u32 classify_table_index, int func)
{
  clib_warning ("BUG: STUB called");
  return 1;
}

void *
vlib_add_trace (vlib_main_t * vm,
		vlib_node_runtime_t * r, vlib_buffer_t * b, u32 n_data_bytes)
{
  return vlib_add_trace_inline (vm, r, b, n_data_bytes);
}



/*
 * fd.io coding-style-patch-verification: ON
 *
 * Local Variables:
 * eval: (c-set-style "gnu")
 * End:
 */
n>sw_if_index); } static clib_error_t * show_sw_interfaces (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { clib_error_t *error = 0; vnet_main_t *vnm = vnet_get_main (); unformat_input_t _linput, *linput = &_linput; vnet_interface_main_t *im = &vnm->interface_main; vnet_sw_interface_t *si, *sorted_sis = 0; u32 sw_if_index = ~(u32) 0; u8 show_addresses = 0; u8 show_features = 0; u8 show_tag = 0; int verbose = 0; /* * Get a line of input. Won't work if the user typed * "show interface" and nothing more. */ if (unformat_user (input, unformat_line_input, linput)) { while (unformat_check_input (linput) != UNFORMAT_END_OF_INPUT) { /* See if user wants to show specific interface */ if (unformat (linput, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index)) { si = pool_elt_at_index (im->sw_interfaces, sw_if_index); vec_add1 (sorted_sis, si[0]); } else if (unformat (linput, "address") || unformat (linput, "addr")) show_addresses = 1; else if (unformat (linput, "features") || unformat (linput, "feat")) show_features = 1; else if (unformat (linput, "tag")) show_tag = 1; else if (unformat (linput, "verbose")) verbose = 1; else { error = clib_error_return (0, "unknown input `%U'", format_unformat_error, linput); goto done; } } unformat_free (linput); } if (show_features || show_tag) { if (sw_if_index == ~(u32) 0) return clib_error_return (0, "Interface not specified..."); } if (show_features) { vnet_interface_features_show (vm, sw_if_index, verbose); l2_input_config_t *l2_input = l2input_intf_config (sw_if_index); u32 fb = l2_input->feature_bitmap; /* intf input features are masked by bridge domain */ if (l2_input->bridge) fb &= l2input_bd_config (l2_input->bd_index)->feature_bitmap; vlib_cli_output (vm, "\nl2-input:\n%U", format_l2_input_features, fb); l2_output_config_t *l2_output = l2output_intf_config (sw_if_index); vlib_cli_output (vm, "\nl2-output:"); if (l2_output->out_vtr_flag) vlib_cli_output (vm, "%10s (%s)", "VTR", "--internal--"); vlib_cli_output (vm, "%U", format_l2_output_features, l2_output->feature_bitmap); return 0; } if (show_tag) { u8 *tag; tag = vnet_get_sw_interface_tag (vnm, sw_if_index); vlib_cli_output (vm, "%U: %s", format_vnet_sw_if_index_name, vnm, sw_if_index, tag ? (char *) tag : "(none)"); return 0; } if (!show_addresses) vlib_cli_output (vm, "%U\n", format_vnet_sw_interface, vnm, 0); if (vec_len (sorted_sis) == 0) /* Get all interfaces */ { /* Gather interfaces. */ sorted_sis = vec_new (vnet_sw_interface_t, pool_elts (im->sw_interfaces)); _vec_len (sorted_sis) = 0; /* *INDENT-OFF* */ pool_foreach (si, im->sw_interfaces, ({ int visible = vnet_swif_is_api_visible (si); if (visible) vec_add1 (sorted_sis, si[0]);} )); /* *INDENT-ON* */ /* Sort by name. */ vec_sort_with_function (sorted_sis, sw_interface_name_compare); } if (show_addresses) { vec_foreach (si, sorted_sis) { ip4_main_t *im4 = &ip4_main; ip6_main_t *im6 = &ip6_main; ip_lookup_main_t *lm4 = &im4->lookup_main; ip_lookup_main_t *lm6 = &im6->lookup_main; ip_interface_address_t *ia = 0; u32 fib_index4 = 0, fib_index6 = 0; if (vec_len (im4->fib_index_by_sw_if_index) > si->sw_if_index) fib_index4 = vec_elt (im4->fib_index_by_sw_if_index, si->sw_if_index); if (vec_len (im6->fib_index_by_sw_if_index) > si->sw_if_index) fib_index6 = vec_elt (im6->fib_index_by_sw_if_index, si->sw_if_index); ip4_fib_t *fib4 = ip4_fib_get (fib_index4); ip6_fib_t *fib6 = ip6_fib_get (fib_index6); if (si->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED) vlib_cli_output (vm, "%U (%s): \n unnumbered, use %U", format_vnet_sw_if_index_name, vnm, si->sw_if_index, (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "dn", format_vnet_sw_if_index_name, vnm, si->unnumbered_sw_if_index); else vlib_cli_output (vm, "%U (%s):", format_vnet_sw_if_index_name, vnm, si->sw_if_index, (si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) ? "up" : "dn"); /* Display any L2 info */ l2_input_config_t *l2_input = l2input_intf_config (si->sw_if_index); if (l2_input->bridge) { bd_main_t *bdm = &bd_main; u32 bd_id = l2input_main.bd_configs[l2_input->bd_index].bd_id; vlib_cli_output (vm, " L2 bridge bd-id %d idx %d shg %d %s", bd_id, bd_find_index (bdm, bd_id), l2_input->shg, l2_input->bvi ? "bvi" : " "); } else if (l2_input->xconnect) vlib_cli_output (vm, " L2 xconnect %U", format_vnet_sw_if_index_name, vnm, l2_input->output_sw_if_index); /* *INDENT-OFF* */ /* Display any IP4 addressing info */ foreach_ip_interface_address (lm4, ia, si->sw_if_index, 1 /* honor unnumbered */, ({ ip4_address_t *r4 = ip_interface_address_get_address (lm4, ia); if (fib4->table_id) vlib_cli_output (vm, " L3 %U/%d ip4 table-id %d fib-idx %d", format_ip4_address, r4, ia->address_length, fib4->table_id, ip4_fib_index_from_table_id (fib4->table_id)); else vlib_cli_output (vm, " L3 %U/%d", format_ip4_address, r4, ia->address_length); })); /* *INDENT-ON* */ /* *INDENT-OFF* */ /* Display any IP6 addressing info */ foreach_ip_interface_address (lm6, ia, si->sw_if_index, 1 /* honor unnumbered */, ({ ip6_address_t *r6 = ip_interface_address_get_address (lm6, ia); if (fib6->table_id) vlib_cli_output (vm, " L3 %U/%d ip6 table-id %d fib-idx %d", format_ip6_address, r6, ia->address_length, fib6->table_id, ip6_fib_index_from_table_id (fib6->table_id)); else vlib_cli_output (vm, " L3 %U/%d", format_ip6_address, r6, ia->address_length); })); /* *INDENT-ON* */ } } else { vec_foreach (si, sorted_sis) { vlib_cli_output (vm, "%U\n", format_vnet_sw_interface, vnm, si); } } done: vec_free (sorted_sis); return error; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (show_sw_interfaces_command, static) = { .path = "show interface", .short_help = "show interface [address|addr|features|feat] [<interface> [<interface> [..]]] [verbose]", .function = show_sw_interfaces, }; /* *INDENT-ON* */ /* Root of all interface commands. */ /* *INDENT-OFF* */ VLIB_CLI_COMMAND (vnet_cli_interface_command, static) = { .path = "interface", .short_help = "Interface commands", }; /* *INDENT-ON* */ /* *INDENT-OFF* */ VLIB_CLI_COMMAND (vnet_cli_set_interface_command, static) = { .path = "set interface", .short_help = "Interface commands", }; /* *INDENT-ON* */ static clib_error_t * clear_interface_counters (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { vnet_main_t *vnm = vnet_get_main (); vnet_interface_main_t *im = &vnm->interface_main; vlib_simple_counter_main_t *sm; vlib_combined_counter_main_t *cm; static vnet_main_t **my_vnet_mains; int i, j, n_counters; vec_reset_length (my_vnet_mains); for (i = 0; i < vec_len (vnet_mains); i++) { if (vnet_mains[i]) vec_add1 (my_vnet_mains, vnet_mains[i]); } if (vec_len (vnet_mains) == 0) vec_add1 (my_vnet_mains, vnm); n_counters = vec_len (im->combined_sw_if_counters); for (j = 0; j < n_counters; j++) { for (i = 0; i < vec_len (my_vnet_mains); i++) { im = &my_vnet_mains[i]->interface_main; cm = im->combined_sw_if_counters + j; vlib_clear_combined_counters (cm); } } n_counters = vec_len (im->sw_if_counters); for (j = 0; j < n_counters; j++) { for (i = 0; i < vec_len (my_vnet_mains); i++) { im = &my_vnet_mains[i]->interface_main; sm = im->sw_if_counters + j; vlib_clear_simple_counters (sm); } } return 0; } /*? * Clear the statistics for all interfaces (statistics associated with the * '<em>show interface</em>' command). * * @cliexpar * Example of how to clear the statistics for all interfaces: * @cliexcmd{clear interfaces} ?*/ /* *INDENT-OFF* */ VLIB_CLI_COMMAND (clear_interface_counters_command, static) = { .path = "clear interfaces", .short_help = "clear interfaces", .function = clear_interface_counters, }; /* *INDENT-ON* */ /** * Parse subinterface names. * * The following subinterface syntax is supported. The first two are for * backwards compatability: * * <intf-name> <id> * - a subinterface with the name <intf-name>.<id>. The subinterface * is a single dot1q vlan with vlan id <id> and exact-match semantics. * * <intf-name> <min_id>-<max_id> * - a set of the above subinterfaces, repeating for each id * in the range <min_id> to <max_id> * * In the following, exact-match semantics (i.e. the number of vlan tags on the * packet must match the number of tags in the configuration) are used only if * the keyword exact-match is present. Non-exact match is the default. * * <intf-name> <id> dot1q <outer_id> [exact-match] * - a subinterface with the name <intf-name>.<id>. The subinterface * is a single dot1q vlan with vlan id <outer_id>. * * <intf-name> <id> dot1q any [exact-match] * - a subinterface with the name <intf-name>.<id>. The subinterface * is a single dot1q vlan with any vlan id. * * <intf-name> <id> dot1q <outer_id> inner-dot1q <inner_id> [exact-match] * - a subinterface with the name <intf-name>.<id>. The subinterface * is a double dot1q vlan with outer vlan id <outer_id> and inner vlan id * <inner_id>. * * <intf-name> <id> dot1q <outer_id> inner-dot1q any [exact-match] * - a subinterface with the name <intf-name>.<id>. The subinterface * is a double dot1q vlan with outer vlan id <id> and any inner vlan id. * * <intf-name> <id> dot1q any inner-dot1q any [exact-match] * * - a subinterface with the name <intf-name>.<id>. The subinterface * is a double dot1q vlan with any outer vlan id and any inner vlan id. * * For each of the above CLI, there is a duplicate that uses the keyword * "dot1ad" in place of the first "dot1q". These interfaces use ethertype * 0x88ad in place of 0x8100 for the outer ethertype. Note that for double- * tagged packets the inner ethertype is always 0x8100. Also note that * the dot1q and dot1ad naming spaces are independent, so it is legal to * have both "Gig3/0/0.1 dot1q 100" and "Gig3/0/0.2 dot1ad 100". For example: * * <intf-name> <id> dot1ad <outer_id> inner-dot1q <inner_id> [exact-match] * - a subinterface with the name <intf-name>.<id>. The subinterface * is a double dot1ad vlan with outer vlan id <outer_id> and inner vlan * id <inner_id>. * * <intf-name> <id> untagged * - a subinterface with the name <intf-name>.<id>. The subinterface * has no vlan tags. Only one can be specified per interface. * * <intf-name> <id> default * - a subinterface with the name <intf-name>.<id>. This is associated * with a packet that did not match any other configured subinterface * on this interface. Only one can be specified per interface. */ static clib_error_t * parse_vlan_sub_interfaces (unformat_input_t * input, vnet_sw_interface_t * template) { clib_error_t *error = 0; u32 inner_vlan, outer_vlan; if (unformat (input, "any inner-dot1q any")) { template->sub.eth.flags.two_tags = 1; template->sub.eth.flags.outer_vlan_id_any = 1; template->sub.eth.flags.inner_vlan_id_any = 1; } else if (unformat (input, "any")) { template->sub.eth.flags.one_tag = 1; template->sub.eth.flags.outer_vlan_id_any = 1; } else if (unformat (input, "%d inner-dot1q any", &outer_vlan)) { template->sub.eth.flags.two_tags = 1; template->sub.eth.flags.inner_vlan_id_any = 1; template->sub.eth.outer_vlan_id = outer_vlan; } else if (unformat (input, "%d inner-dot1q %d", &outer_vlan, &inner_vlan)) { template->sub.eth.flags.two_tags = 1; template->sub.eth.outer_vlan_id = outer_vlan; template->sub.eth.inner_vlan_id = inner_vlan; } else if (unformat (input, "%d", &outer_vlan)) { template->sub.eth.flags.one_tag = 1; template->sub.eth.outer_vlan_id = outer_vlan; } else { error = clib_error_return (0, "expected dot1q config, got `%U'", format_unformat_error, input); goto done; } if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT) { if (unformat (input, "exact-match")) { template->sub.eth.flags.exact_match = 1; } } done: return error; } static clib_error_t * create_sub_interfaces (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { vnet_main_t *vnm = vnet_get_main (); clib_error_t *error = 0; u32 hw_if_index, sw_if_index; vnet_hw_interface_t *hi; u32 id, id_min, id_max; vnet_sw_interface_t template; hw_if_index = ~0; if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index)) { error = clib_error_return (0, "unknown interface `%U'", format_unformat_error, input); goto done; } memset (&template, 0, sizeof (template)); template.sub.eth.raw_flags = 0; if (unformat (input, "%d default", &id_min)) { id_max = id_min; template.sub.eth.flags.default_sub = 1; } else if (unformat (input, "%d untagged", &id_min)) { id_max = id_min; template.sub.eth.flags.no_tags = 1; template.sub.eth.flags.exact_match = 1; } else if (unformat (input, "%d dot1q", &id_min)) { /* parse dot1q config */ id_max = id_min; error = parse_vlan_sub_interfaces (input, &template); if (error) goto done; } else if (unformat (input, "%d dot1ad", &id_min)) { /* parse dot1ad config */ id_max = id_min; template.sub.eth.flags.dot1ad = 1; error = parse_vlan_sub_interfaces (input, &template); if (error) goto done; } else if (unformat (input, "%d-%d", &id_min, &id_max)) { template.sub.eth.flags.one_tag = 1; template.sub.eth.flags.exact_match = 1; if (id_min > id_max) goto id_error; } else if (unformat (input, "%d", &id_min)) { id_max = id_min; template.sub.eth.flags.one_tag = 1; template.sub.eth.outer_vlan_id = id_min; template.sub.eth.flags.exact_match = 1; } else { id_error: error = clib_error_return (0, "expected ID or ID MIN-MAX, got `%U'", format_unformat_error, input); goto done; } hi = vnet_get_hw_interface (vnm, hw_if_index); if (hi->bond_info == VNET_HW_INTERFACE_BOND_INFO_SLAVE) { error = clib_error_return (0, "not allowed as %v belong to a BondEthernet interface", hi->name); goto done; } for (id = id_min; id <= id_max; id++) { uword *p; vnet_interface_main_t *im = &vnm->interface_main; u64 sup_and_sub_key = ((u64) (hi->sw_if_index) << 32) | (u64) id; u64 *kp; p = hash_get_mem (im->sw_if_index_by_sup_and_sub, &sup_and_sub_key); if (p) { if (CLIB_DEBUG > 0) clib_warning ("sup sw_if_index %d, sub id %d already exists\n", hi->sw_if_index, id); continue; } kp = clib_mem_alloc (sizeof (*kp)); *kp = sup_and_sub_key; template.type = VNET_SW_INTERFACE_TYPE_SUB; template.flood_class = VNET_FLOOD_CLASS_NORMAL; template.sup_sw_if_index = hi->sw_if_index; template.sub.id = id; if (id_min < id_max) template.sub.eth.outer_vlan_id = id; error = vnet_create_sw_interface (vnm, &template, &sw_if_index); if (error) goto done; hash_set (hi->sub_interface_sw_if_index_by_id, id, sw_if_index); hash_set_mem (im->sw_if_index_by_sup_and_sub, kp, sw_if_index); vlib_cli_output (vm, "%U\n", format_vnet_sw_if_index_name, vnet_get_main (), sw_if_index); } done: return error; } /*? * This command is used to add VLAN IDs to interfaces, also known as subinterfaces. * The primary input to this command is the '<em>interface</em>' and '<em>subId</em>' * (subinterface Id) parameters. If no additional VLAN ID is provide, the VLAN ID is * assumed to be the '<em>subId</em>'. The VLAN ID and '<em>subId</em>' can be different, * but this is not recommended. * * This command has several variations: * - <b>create sub-interfaces <interface> <subId></b> - Create a subinterface to * process packets with a given 802.1q VLAN ID (same value as the '<em>subId</em>'). * * - <b>create sub-interfaces <interface> <subId> default</b> - Adding the * '<em>default</em>' parameter indicates that packets with VLAN IDs that do not * match any other subinterfaces should be sent to this subinterface. * * - <b>create sub-interfaces <interface> <subId> untagged</b> - Adding the * '<em>untagged</em>' parameter indicates that packets no VLAN IDs should be sent * to this subinterface. * * - <b>create sub-interfaces <interface> <subId>-<subId></b> - Create a range of * subinterfaces to handle a range of VLAN IDs. * * - <b>create sub-interfaces <interface> <subId> dot1q|dot1ad <vlanId>|any [exact-match]</b> - * Use this command to specify the outer VLAN ID, to either be explicit or to make the * VLAN ID different from the '<em>subId</em>'. * * - <b>create sub-interfaces <interface> <subId> dot1q|dot1ad <vlanId>|any inner-dot1q * <vlanId>|any [exact-match]</b> - Use this command to specify the outer VLAN ID and * the inner VLAN ID. * * When '<em>dot1q</em>' or '<em>dot1ad</em>' is explicitly entered, subinterfaces * can be configured as either exact-match or non-exact match. Non-exact match is the CLI * default. If '<em>exact-match</em>' is specified, packets must have the same number of * VLAN tags as the configuration. For non-exact-match, packets must at least that number * of tags. L3 (routed) interfaces must be configured as exact-match. L2 interfaces are * typically configured as non-exact-match. If '<em>dot1q</em>' or '<em>dot1ad</em>' is NOT * entered, then the default behavior is exact-match. * * Use the '<em>show interface</em>' command to display all subinterfaces. * * @cliexpar * @parblock * Example of how to create a VLAN subinterface 11 to process packets on 802.1q VLAN ID 11: * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11} * * The previous example is shorthand and is equivalent to: * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 11 exact-match} * * * Example of how to create a subinterface number that is different from the VLAN ID: * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 100} * * * Examples of how to create q-in-q and q-in-any subinterfaces: * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1q 100 inner-dot1q 200} * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 12 dot1q 100 inner-dot1q any} * * Examples of how to create dot1ad interfaces: * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 11 dot1ad 11} * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 12 dot1ad 100 inner-dot1q 200} * * * Examples of '<em>exact-match</em>' versus non-exact match. A packet with * outer VLAN 100 and inner VLAN 200 would match this interface, because the default * is non-exact match: * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 dot1q 100} * * However, the same packet would NOT match this interface because '<em>exact-match</em>' * is specified and only one VLAN is configured, but packet contains two VLANs: * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 dot1q 100 exact-match} * * * Example of how to created a subinterface to process untagged packets: * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 5 untagged} * * Example of how to created a subinterface to process any packet with a VLAN ID that * does not match any other subinterface: * @cliexcmd{create sub-interfaces GigabitEthernet2/0/0 7 default} * * When subinterfaces are created, they are in the down state. Example of how to * enable a newly created subinterface: * @cliexcmd{set interface GigabitEthernet2/0/0.7 up} * @endparblock ?*/ /* *INDENT-OFF* */ VLIB_CLI_COMMAND (create_sub_interfaces_command, static) = { .path = "create sub-interfaces", .short_help = "create sub-interfaces <interface> " "{<subId> [default|untagged]} | " "{<subId>-<subId>} | " "{<subId> dot1q|dot1ad <vlanId>|any [inner-dot1q <vlanId>|any] [exact-match]}", .function = create_sub_interfaces, }; /* *INDENT-ON* */ static clib_error_t * set_state (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { vnet_main_t *vnm = vnet_get_main (); clib_error_t *error; u32 sw_if_index, flags; sw_if_index = ~0; if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index)) { error = clib_error_return (0, "unknown interface `%U'", format_unformat_error, input); goto done; } if (!unformat (input, "%U", unformat_vnet_sw_interface_flags, &flags)) { error = clib_error_return (0, "unknown flags `%U'", format_unformat_error, input); goto done; } error = vnet_sw_interface_set_flags (vnm, sw_if_index, flags); if (error) goto done; done: return error; } /*? * This command is used to change the admin state (up/down) of an interface. * * If an interface is down, the optional '<em>punt</em>' flag can also be set. * The '<em>punt</em>' flag implies the interface is disabled for forwarding * but punt all traffic to slow-path. Use the '<em>enable</em>' flag to clear * '<em>punt</em>' flag (interface is still down). * * @cliexpar * Example of how to configure the admin state of an interface to '<em>up</em?': * @cliexcmd{set interface state GigabitEthernet2/0/0 up} * Example of how to configure the admin state of an interface to '<em>down</em?': * @cliexcmd{set interface state GigabitEthernet2/0/0 down} ?*/ /* *INDENT-OFF* */ VLIB_CLI_COMMAND (set_state_command, static) = { .path = "set interface state", .short_help = "set interface state <interface> [up|down|punt|enable]", .function = set_state, }; /* *INDENT-ON* */ static clib_error_t * set_unnumbered (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { vnet_main_t *vnm = vnet_get_main (); u32 unnumbered_sw_if_index = ~0; u32 inherit_from_sw_if_index = ~0; int enable = 1; if (unformat (input, "%U use %U", unformat_vnet_sw_interface, vnm, &unnumbered_sw_if_index, unformat_vnet_sw_interface, vnm, &inherit_from_sw_if_index)) enable = 1; else if (unformat (input, "del %U", unformat_vnet_sw_interface, vnm, &unnumbered_sw_if_index)) enable = 0; else return clib_error_return (0, "parse error '%U'", format_unformat_error, input); if (~0 == unnumbered_sw_if_index) return clib_error_return (0, "Specify the unnumbered interface"); if (enable && ~0 == inherit_from_sw_if_index) return clib_error_return (0, "When enabling unnumbered specify the" " IP enabled interface that it uses"); vnet_sw_interface_update_unnumbered (unnumbered_sw_if_index, inherit_from_sw_if_index, enable); return (NULL); } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (set_unnumbered_command, static) = { .path = "set interface unnumbered", .short_help = "set interface unnumbered [<interface> use <interface> | del <interface>]", .function = set_unnumbered, }; /* *INDENT-ON* */ static clib_error_t * set_hw_class (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { vnet_main_t *vnm = vnet_get_main (); vnet_interface_main_t *im = &vnm->interface_main; clib_error_t *error; u32 hw_if_index, hw_class_index; hw_if_index = ~0; if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index)) { error = clib_error_return (0, "unknown hardware interface `%U'", format_unformat_error, input); goto done; } if (!unformat_user (input, unformat_hash_string, im->hw_interface_class_by_name, &hw_class_index)) { error = clib_error_return (0, "unknown hardware class `%U'", format_unformat_error, input); goto done; } error = vnet_hw_interface_set_class (vnm, hw_if_index, hw_class_index); if (error) goto done; done: return error; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (set_hw_class_command, static) = { .path = "set interface hw-class", .short_help = "Set interface hardware class", .function = set_hw_class, }; /* *INDENT-ON* */ static clib_error_t * vnet_interface_cli_init (vlib_main_t * vm) { return 0; } VLIB_INIT_FUNCTION (vnet_interface_cli_init); static clib_error_t * renumber_interface_command_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { u32 hw_if_index; u32 new_dev_instance; vnet_main_t *vnm = vnet_get_main (); int rv; if (!unformat_user (input, unformat_vnet_hw_interface, vnm, &hw_if_index)) return clib_error_return (0, "unknown hardware interface `%U'", format_unformat_error, input); if (!unformat (input, "%d", &new_dev_instance)) return clib_error_return (0, "new dev instance missing"); rv = vnet_interface_name_renumber (hw_if_index, new_dev_instance); switch (rv) { case 0: break; default: return clib_error_return (0, "vnet_interface_name_renumber returned %d", rv); } return 0; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (renumber_interface_command, static) = { .path = "renumber interface", .short_help = "renumber interface <interface> <new-dev-instance>", .function = renumber_interface_command_fn, }; /* *INDENT-ON* */ static clib_error_t * promiscuous_cmd (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { vnet_main_t *vnm = vnet_get_main (); u32 hw_if_index; u32 flags = ETHERNET_INTERFACE_FLAG_ACCEPT_ALL; ethernet_main_t *em = &ethernet_main; ethernet_interface_t *eif; if (unformat (input, "on %U", unformat_vnet_hw_interface, vnm, &hw_if_index)) ; else if (unformat (input, "off %U", unformat_ethernet_interface, vnm, &hw_if_index)) flags = 0; else return clib_error_return (0, "unknown input `%U'", format_unformat_error, input); eif = ethernet_get_interface (em, hw_if_index); if (!eif) return clib_error_return (0, "not supported"); ethernet_set_flags (vnm, hw_if_index, flags); return 0; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (set_interface_promiscuous_cmd, static) = { .path = "set interface promiscuous", .short_help = "set interface promiscuous [on|off] <interface>", .function = promiscuous_cmd, }; /* *INDENT-ON* */ static clib_error_t * mtu_cmd (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { vnet_main_t *vnm = vnet_get_main (); u32 hw_if_index, sw_if_index, mtu; ethernet_main_t *em = &ethernet_main; u32 mtus[VNET_N_MTU] = { 0, 0, 0, 0 }; if (unformat (input, "%d %U", &mtu, unformat_vnet_hw_interface, vnm, &hw_if_index)) { /* * Change physical MTU on interface. Only supported for Ethernet * interfaces */ vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index); ethernet_interface_t *eif = ethernet_get_interface (em, hw_if_index); if (!eif) return clib_error_return (0, "not supported"); if (mtu < hi->min_supported_packet_bytes) return clib_error_return (0, "Invalid mtu (%d): " "must be >= min pkt bytes (%d)", mtu, hi->min_supported_packet_bytes); if (mtu > hi->max_supported_packet_bytes) return clib_error_return (0, "Invalid mtu (%d): must be <= (%d)", mtu, hi->max_supported_packet_bytes); vnet_hw_interface_set_mtu (vnm, hw_if_index, mtu); goto done; } else if (unformat (input, "packet %d %U", &mtu, unformat_vnet_sw_interface, vnm, &sw_if_index)) /* Set default packet MTU (including L3 header */ mtus[VNET_MTU_L3] = mtu; else if (unformat (input, "ip4 %d %U", &mtu, unformat_vnet_sw_interface, vnm, &sw_if_index)) mtus[VNET_MTU_IP4] = mtu; else if (unformat (input, "ip6 %d %U", &mtu, unformat_vnet_sw_interface, vnm, &sw_if_index)) mtus[VNET_MTU_IP6] = mtu; else if (unformat (input, "mpls %d %U", &mtu, unformat_vnet_sw_interface, vnm, &sw_if_index)) mtus[VNET_MTU_MPLS] = mtu; else return clib_error_return (0, "unknown input `%U'", format_unformat_error, input); vnet_sw_interface_set_protocol_mtu (vnm, sw_if_index, mtus); done: return 0; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (set_interface_mtu_cmd, static) = { .path = "set interface mtu", .short_help = "set interface mtu [packet|ip4|ip6|mpls] <value> <interface>", .function = mtu_cmd, }; /* *INDENT-ON* */ static clib_error_t * set_interface_mac_address (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { vnet_main_t *vnm = vnet_get_main (); vnet_sw_interface_t *si = NULL; clib_error_t *error = 0; u32 sw_if_index = ~0; u8 mac[6] = { 0 }; if (!unformat_user (input, unformat_vnet_sw_interface, vnm, &sw_if_index)) { error = clib_error_return (0, "unknown interface `%U'", format_unformat_error, input); goto done; } if (!unformat_user (input, unformat_ethernet_address, mac)) { error = clib_error_return (0, "expected mac address `%U'", format_unformat_error, input); goto done; } si = vnet_get_sw_interface (vnm, sw_if_index); error = vnet_hw_interface_change_mac_address (vnm, si->hw_if_index, mac); done: return error; } /*? * The '<em>set interface mac address </em>' command allows to set MAC address of given interface. * In case of NIC interfaces the one has to support MAC address change. A side effect of MAC address * change are changes of MAC addresses in FIB tables (ipv4 and ipv6). * * @cliexpar * @parblock * Example of how to change MAC Address of interface: * @cliexcmd{set interface mac address GigabitEthernet0/8/0 aa:bb:cc:dd:ee:01} * @cliexcmd{set interface mac address host-vpp0 aa:bb:cc:dd:ee:02} * @cliexcmd{set interface mac address tap-0 aa:bb:cc:dd:ee:03} * @cliexcmd{set interface mac address pg0 aa:bb:cc:dd:ee:04} * @endparblock ?*/ /* *INDENT-OFF* */ VLIB_CLI_COMMAND (set_interface_mac_address_cmd, static) = { .path = "set interface mac address", .short_help = "set interface mac address <interface> <mac-address>", .function = set_interface_mac_address, }; /* *INDENT-ON* */ static clib_error_t * set_tag (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { vnet_main_t *vnm = vnet_get_main (); u32 sw_if_index = ~0; u8 *tag = 0; if (!unformat (input, "%U %s", unformat_vnet_sw_interface, vnm, &sw_if_index, &tag)) return clib_error_return (0, "unknown input `%U'", format_unformat_error, input); vnet_set_sw_interface_tag (vnm, tag, sw_if_index); return 0; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (set_tag_command, static) = { .path = "set interface tag", .short_help = "set interface tag <interface> <tag>", .function = set_tag, }; /* *INDENT-ON* */ static clib_error_t * clear_tag (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { vnet_main_t *vnm = vnet_get_main (); u32 sw_if_index = ~0; if (!unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index)) return clib_error_return (0, "unknown input `%U'", format_unformat_error, input); vnet_clear_sw_interface_tag (vnm, sw_if_index); return 0; } /* *INDENT-OFF* */ VLIB_CLI_COMMAND (clear_tag_command, static) = { .path = "clear interface tag", .short_help = "clear interface tag <interface>", .function = clear_tag, }; /* *INDENT-ON* */ static clib_error_t * set_ip_directed_broadcast (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { vnet_main_t *vnm = vnet_get_main (); u32 sw_if_index = ~0; u8 enable = 0; if (!unformat (input, "%U", unformat_vnet_sw_interface, vnm, &sw_if_index)); else if (unformat (input, "enable")) enable = 1; else if (unformat (input, "disable")) enable = 0; else return clib_error_return (0, "unknown input: `%U'", format_unformat_error, input); if (~0 == sw_if_index) return clib_error_return (0, "specify an interface: `%U'", format_unformat_error, input); vnet_sw_interface_ip_directed_broadcast (vnm, sw_if_index, enable); return 0; } /*? * This command is used to enable/disable IP directed broadcast * If directed broadcast is enabled a packet sent to the interface's * subnet broadcast address will be sent L2 broadcast on the interface, * otherwise it is dropped. ?*/ /* *INDENT-OFF* */ VLIB_CLI_COMMAND (set_ip_directed_broadcast_command, static) = { .path = "set interface ip directed-broadcast", .short_help = "set interface enable <interface> <enable|disable>", .function = set_ip_directed_broadcast, }; /* *INDENT-ON* */ static clib_error_t * set_hw_interface_rx_mode (vnet_main_t * vnm, u32 hw_if_index, u32 queue_id, vnet_hw_interface_rx_mode mode) { vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index); vnet_device_class_t *dev_class = vnet_get_device_class (vnm, hw->dev_class_index); clib_error_t *error; vnet_hw_interface_rx_mode old_mode; int rv; if (mode == VNET_HW_INTERFACE_RX_MODE_DEFAULT) mode = hw->default_rx_mode; rv = vnet_hw_interface_get_rx_mode (vnm, hw_if_index, queue_id, &old_mode); switch (rv) { case 0: if (old_mode == mode) return 0; /* same rx-mode, no change */ break; case VNET_API_ERROR_INVALID_INTERFACE: return clib_error_return (0, "invalid interface"); case VNET_API_ERROR_INVALID_QUEUE: return clib_error_return (0, "invalid queue"); default: return clib_error_return (0, "unknown error"); } if (dev_class->rx_mode_change_function) { error = dev_class->rx_mode_change_function (vnm, hw_if_index, queue_id, mode); if (error) return (error); } rv = vnet_hw_interface_set_rx_mode (vnm, hw_if_index, queue_id, mode); switch (rv) { case 0: break; case VNET_API_ERROR_UNSUPPORTED: return clib_error_return (0, "unsupported"); case VNET_API_ERROR_INVALID_INTERFACE: return clib_error_return (0, "invalid interface"); case VNET_API_ERROR_INVALID_QUEUE: return clib_error_return (0, "invalid queue"); default: return clib_error_return (0, "unknown error"); } return 0; } clib_error_t * set_hw_interface_change_rx_mode (vnet_main_t * vnm, u32 hw_if_index, u8 queue_id_valid, u32 queue_id, vnet_hw_interface_rx_mode mode) { clib_error_t *error = 0; vnet_hw_interface_t *hw; int i; hw = vnet_get_hw_interface (vnm, hw_if_index); if (queue_id_valid == 0) { for (i = 0; i < vec_len (hw->dq_runtime_index_by_queue); i++) { error = set_hw_interface_rx_mode (vnm, hw_if_index, i, mode); if (error) break; } hw->default_rx_mode = mode; } else error = set_hw_interface_rx_mode (vnm, hw_if_index, queue_id, mode); return (error); } static clib_error_t * set_interface_rx_mode (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { clib_error_t *error = 0; unformat_input_t _line_input, *line_input = &_line_input; vnet_main_t *vnm = vnet_get_main (); u32 hw_if_index = (u32) ~ 0; u32 queue_id = (u32) ~ 0; vnet_hw_interface_rx_mode mode = VNET_HW_INTERFACE_RX_MODE_UNKNOWN; u8 queue_id_valid = 0; if (!unformat_user (input, unformat_line_input, line_input)) return 0; while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) { if (unformat (line_input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index)) ; else if (unformat (line_input, "queue %d", &queue_id)) queue_id_valid = 1; else if (unformat (line_input, "polling")) mode = VNET_HW_INTERFACE_RX_MODE_POLLING; else if (unformat (line_input, "interrupt")) mode = VNET_HW_INTERFACE_RX_MODE_INTERRUPT; else if (unformat (line_input, "adaptive")) mode = VNET_HW_INTERFACE_RX_MODE_ADAPTIVE; else { error = clib_error_return (0, "parse error: '%U'", format_unformat_error, line_input); unformat_free (line_input); return error; } } unformat_free (line_input); if (hw_if_index == (u32) ~ 0) return clib_error_return (0, "please specify valid interface name"); if (mode == VNET_HW_INTERFACE_RX_MODE_UNKNOWN) return clib_error_return (0, "please specify valid rx-mode"); error = set_hw_interface_change_rx_mode (vnm, hw_if_index, queue_id_valid, queue_id, mode); return (error); } /*? * This command is used to assign the RX packet processing mode (polling, * interrupt, adaptive) of the a given interface, and optionally a * given queue. If the '<em>queue</em>' is not provided, the '<em>mode</em>' * is applied to all queues of the interface. Not all interfaces support * all modes. To display the current rx-mode use the command * '<em>show interface rx-placement</em>'. * * @cliexpar * Example of how to assign rx-mode to all queues on an interface: * @cliexcmd{set interface rx-mode VirtualEthernet0/0/12 polling} * Example of how to assign rx-mode to one queue of an interface: * @cliexcmd{set interface rx-mode VirtualEthernet0/0/12 queue 0 interrupt} * Example of how to display the rx-mode of all interfaces: * @cliexstart{show interface rx-placement} * Thread 1 (vpp_wk_0): * node dpdk-input: * GigabitEthernet7/0/0 queue 0 (polling) * node vhost-user-input: * VirtualEthernet0/0/12 queue 0 (interrupt) * VirtualEthernet0/0/12 queue 2 (polling) * VirtualEthernet0/0/13 queue 0 (polling) * VirtualEthernet0/0/13 queue 2 (polling) * Thread 2 (vpp_wk_1): * node dpdk-input: * GigabitEthernet7/0/1 queue 0 (polling) * node vhost-user-input: * VirtualEthernet0/0/12 queue 1 (polling) * VirtualEthernet0/0/12 queue 3 (polling) * VirtualEthernet0/0/13 queue 1 (polling) * VirtualEthernet0/0/13 queue 3 (polling) * @cliexend ?*/ /* *INDENT-OFF* */ VLIB_CLI_COMMAND (cmd_set_if_rx_mode,static) = { .path = "set interface rx-mode", .short_help = "set interface rx-mode <interface> [queue <n>] [polling | interrupt | adaptive]", .function = set_interface_rx_mode, }; /* *INDENT-ON* */ static clib_error_t * show_interface_rx_placement_fn (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { u8 *s = 0; vnet_main_t *vnm = vnet_get_main (); vnet_device_input_runtime_t *rt; vnet_device_and_queue_t *dq; vlib_node_t *pn = vlib_get_node_by_name (vm, (u8 *) "device-input"); uword si; int index = 0; /* *INDENT-OFF* */ foreach_vlib_main (({ clib_bitmap_foreach (si, pn->sibling_bitmap, ({ rt = vlib_node_get_runtime_data (this_vlib_main, si); if (vec_len (rt->devices_and_queues)) s = format (s, " node %U:\n", format_vlib_node_name, vm, si); vec_foreach (dq, rt->devices_and_queues) { vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, dq->hw_if_index); s = format (s, " %U queue %u (%U)\n", format_vnet_sw_if_index_name, vnm, hi->sw_if_index, dq->queue_id, format_vnet_hw_interface_rx_mode, dq->mode); } })); if (vec_len (s) > 0) { vlib_cli_output(vm, "Thread %u (%v):\n%v", index, vlib_worker_threads[index].name, s); vec_reset_length (s); } index++; })); /* *INDENT-ON* */ vec_free (s); return 0; } /*? * This command is used to display the interface and queue worker * thread placement. * * @cliexpar * Example of how to display the interface placement: * @cliexstart{show interface rx-placement} * Thread 1 (vpp_wk_0): * node dpdk-input: * GigabitEthernet7/0/0 queue 0 (polling) * node vhost-user-input: * VirtualEthernet0/0/12 queue 0 (polling) * VirtualEthernet0/0/12 queue 2 (polling) * VirtualEthernet0/0/13 queue 0 (polling) * VirtualEthernet0/0/13 queue 2 (polling) * Thread 2 (vpp_wk_1): * node dpdk-input: * GigabitEthernet7/0/1 queue 0 (polling) * node vhost-user-input: * VirtualEthernet0/0/12 queue 1 (polling) * VirtualEthernet0/0/12 queue 3 (polling) * VirtualEthernet0/0/13 queue 1 (polling) * VirtualEthernet0/0/13 queue 3 (polling) * @cliexend ?*/ /* *INDENT-OFF* */ VLIB_CLI_COMMAND (show_interface_rx_placement, static) = { .path = "show interface rx-placement", .short_help = "show interface rx-placement", .function = show_interface_rx_placement_fn, }; /* *INDENT-ON* */ clib_error_t * set_hw_interface_rx_placement (u32 hw_if_index, u32 queue_id, u32 thread_index, u8 is_main) { vnet_main_t *vnm = vnet_get_main (); vnet_device_main_t *vdm = &vnet_device_main; clib_error_t *error = 0; vnet_hw_interface_rx_mode mode = VNET_HW_INTERFACE_RX_MODE_UNKNOWN; int rv; if (is_main) thread_index = 0; else thread_index += vdm->first_worker_thread_index; if (thread_index > vdm->last_worker_thread_index) return clib_error_return (0, "please specify valid worker thread or main"); rv = vnet_hw_interface_get_rx_mode (vnm, hw_if_index, queue_id, &mode); if (rv) return clib_error_return (0, "not found"); rv = vnet_hw_interface_unassign_rx_thread (vnm, hw_if_index, queue_id); if (rv) return clib_error_return (0, "not found"); vnet_hw_interface_assign_rx_thread (vnm, hw_if_index, queue_id, thread_index); vnet_hw_interface_set_rx_mode (vnm, hw_if_index, queue_id, mode); return (error); } static clib_error_t * set_interface_rx_placement (vlib_main_t * vm, unformat_input_t * input, vlib_cli_command_t * cmd) { clib_error_t *error = 0; unformat_input_t _line_input, *line_input = &_line_input; vnet_main_t *vnm = vnet_get_main (); u32 hw_if_index = (u32) ~ 0; u32 queue_id = (u32) 0; u32 thread_index = (u32) ~ 0; u8 is_main = 0; if (!unformat_user (input, unformat_line_input, line_input)) return 0; while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT) { if (unformat (line_input, "%U", unformat_vnet_hw_interface, vnm, &hw_if_index)) ; else if (unformat (line_input, "queue %d", &queue_id)) ; else if (unformat (line_input, "main", &thread_index)) is_main = 1; else if (unformat (line_input, "worker %d", &thread_index)) ; else { error = clib_error_return (0, "parse error: '%U'", format_unformat_error, line_input); unformat_free (line_input); return error; } } unformat_free (line_input); if (hw_if_index == (u32) ~ 0) return clib_error_return (0, "please specify valid interface name"); error = set_hw_interface_rx_placement (hw_if_index, queue_id, thread_index, is_main); return (error); } /*? * This command is used to assign a given interface, and optionally a * given queue, to a different thread. If the '<em>queue</em>' is not provided, * it defaults to 0. The '<em>worker</em>' parameter is zero based and the index * in the thread name, for example, 0 in the thread name '<em>vpp_wk_0</em>'. * * @cliexpar * Example of how to display the interface placement: * @cliexstart{show interface rx-placement} * Thread 1 (vpp_wk_0): * node dpdk-input: * GigabitEthernet7/0/0 queue 0 (polling) * node vhost-user-input: * VirtualEthernet0/0/12 queue 0 (polling) * VirtualEthernet0/0/12 queue 2 (polling) * VirtualEthernet0/0/13 queue 0 (polling) * VirtualEthernet0/0/13 queue 2 (polling) * Thread 2 (vpp_wk_1): * node dpdk-input: * GigabitEthernet7/0/1 queue 0 (polling) * node vhost-user-input: * VirtualEthernet0/0/12 queue 1 (polling) * VirtualEthernet0/0/12 queue 3 (polling) * VirtualEthernet0/0/13 queue 1 (polling) * VirtualEthernet0/0/13 queue 3 (polling) * @cliexend * Example of how to assign a interface and queue to a worker thread: * @cliexcmd{set interface rx-placement VirtualEthernet0/0/12 queue 1 worker 0} * Example of how to display the interface placement: * @cliexstart{show interface rx-placement} * Thread 1 (vpp_wk_0): * node dpdk-input: * GigabitEthernet7/0/0 queue 0 (polling) * node vhost-user-input: * VirtualEthernet0/0/12 queue 0 (polling) * VirtualEthernet0/0/12 queue 1 (polling) * VirtualEthernet0/0/12 queue 2 (polling) * VirtualEthernet0/0/13 queue 0 (polling) * VirtualEthernet0/0/13 queue 2 (polling) * Thread 2 (vpp_wk_1): * node dpdk-input: * GigabitEthernet7/0/1 queue 0 (polling) * node vhost-user-input: * VirtualEthernet0/0/12 queue 3 (polling) * VirtualEthernet0/0/13 queue 1 (polling) * VirtualEthernet0/0/13 queue 3 (polling) * @cliexend ?*/ /* *INDENT-OFF* */ VLIB_CLI_COMMAND (cmd_set_if_rx_placement,static) = { .path = "set interface rx-placement", .short_help = "set interface rx-placement <interface> [queue <n>] " "[worker <n> | main]", .function = set_interface_rx_placement, .is_mp_safe = 1, }; /* *INDENT-ON* */ /* * fd.io coding-style-patch-verification: ON * * Local Variables: * eval: (c-set-style "gnu") * End: */