FD.io VPP  v17.10-9-gd594711
Vector Packet Processing
tapcli.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * tapcli.c - dynamic tap interface hookup
4  *
5  * Copyright (c) 2009 Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *------------------------------------------------------------------
18  */
19 /**
20  * @file
21  * @brief dynamic tap interface hookup
22  */
23 
24 #include <fcntl.h> /* for open */
25 #include <sys/ioctl.h>
26 #include <sys/socket.h>
27 #include <sys/stat.h>
28 #include <sys/types.h>
29 #include <sys/uio.h> /* for iovec */
30 #include <netinet/in.h>
31 
32 #include <linux/if_arp.h>
33 #include <linux/if_tun.h>
34 
35 #include <vlib/vlib.h>
36 #include <vlib/unix/unix.h>
37 
38 #include <vnet/ip/ip.h>
39 
40 #include <vnet/ethernet/ethernet.h>
41 
42 #include <vnet/feature/feature.h>
43 #include <vnet/devices/devices.h>
44 #include <vnet/unix/tuntap.h>
45 #include <vnet/unix/tapcli.h>
46 
50 
51 static void tapcli_nopunt_frame (vlib_main_t * vm,
52  vlib_node_runtime_t * node,
53  vlib_frame_t * frame);
54 /**
55  * @brief Struct for the tapcli interface
56  */
57 typedef struct {
61  /** For counters */
65  struct ifreq ifr;
67  /** for delete */
70 
71 /**
72  * @brief Struct for RX trace
73  */
74 typedef struct {
77 
78 /**
79  * @brief Function to format TAP CLI trace
80  *
81  * @param *s - u8 - formatting string
82  * @param *va - va_list
83  *
84  * @return *s - u8 - formatted string
85  *
86  */
87 u8 * format_tapcli_rx_trace (u8 * s, va_list * va)
88 {
89  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*va, vlib_main_t *);
90  CLIB_UNUSED (vlib_node_t * node) = va_arg (*va, vlib_node_t *);
91  vnet_main_t * vnm = vnet_get_main();
92  tapcli_rx_trace_t * t = va_arg (*va, tapcli_rx_trace_t *);
94  vnm, t->sw_if_index);
95  return s;
96 }
97 
98 /**
99  * @brief TAPCLI per thread struct
100  */
101 typedef struct
102 {
103  /** Vector of VLIB rx buffers to use. We allocate them in blocks
104  of VLIB_FRAME_SIZE (256). */
106 
107  /** Vector of iovecs for readv/writev calls. */
108  struct iovec * iovecs;
110 
111 /**
112  * @brief TAPCLI main state struct
113  */
114 typedef struct {
115  /** per thread variables */
117 
118  /** tap device destination MAC address. Required, or Linux drops pkts */
119  u8 ether_dst_mac[6];
120 
121  /** Interface MTU in bytes and # of default sized buffers. */
122  u32 mtu_bytes, mtu_buffers;
123 
124  /** Vector of tap interfaces */
126 
127  /** Vector of deleted tap interfaces */
129 
130  /** Bitmap of tap interfaces with pending reads */
132 
133  /** Hash table to find tapcli interface given hw_if_index */
135 
136  /** Hash table to find tapcli interface given unix fd */
138 
139  /** renumbering table */
141 
142  /** 1 => disable CLI */
144 
145  /** convenience - vlib_main_t */
147  /** convenience - vnet_main_t */
149 } tapcli_main_t;
150 
152 
153 /**
154  * @brief tapcli TX node function
155  * @node tap-cli-tx
156  *
157  * Output node, writes the buffers comprising the incoming frame
158  * to the tun/tap device, aka hands them to the Linux kernel stack.
159  *
160  * @param *vm - vlib_main_t
161  * @param *node - vlib_node_runtime_t
162  * @param *frame - vlib_frame_t
163  *
164  * @return n_packets - uword
165  *
166  */
167 static uword
169  vlib_node_runtime_t * node,
170  vlib_frame_t * frame)
171 {
172  u32 * buffers = vlib_frame_args (frame);
173  uword n_packets = frame->n_vectors;
174  tapcli_main_t * tm = &tapcli_main;
175  tapcli_interface_t * ti;
176  int i;
177  u16 thread_index = vlib_get_thread_index ();
178 
179  for (i = 0; i < n_packets; i++)
180  {
181  struct iovec * iov;
182  vlib_buffer_t * b;
183  uword l;
184  vnet_hw_interface_t * hw;
185  uword * p;
186  u32 tx_sw_if_index;
187 
188  b = vlib_get_buffer (vm, buffers[i]);
189 
190  tx_sw_if_index = vnet_buffer(b)->sw_if_index[VLIB_TX];
191  if (tx_sw_if_index == (u32)~0)
192  tx_sw_if_index = vnet_buffer(b)->sw_if_index[VLIB_RX];
193 
194  ASSERT(tx_sw_if_index != (u32)~0);
195 
196  /* Use the sup intfc to finesse vlan subifs */
197  hw = vnet_get_sup_hw_interface (tm->vnet_main, tx_sw_if_index);
198  tx_sw_if_index = hw->sw_if_index;
199 
201  tx_sw_if_index);
202  if (p == 0)
203  {
204  clib_warning ("sw_if_index %d unknown", tx_sw_if_index);
205  /* $$$ leak, but this should never happen... */
206  continue;
207  }
208  else
209  ti = vec_elt_at_index (tm->tapcli_interfaces, p[0]);
210 
211  /* Re-set iovecs if present. */
212  if (tm->threads[thread_index].iovecs)
213  _vec_len (tm->threads[thread_index].iovecs) = 0;
214 
215  /* VLIB buffer chain -> Unix iovec(s). */
216  vec_add2 (tm->threads[thread_index].iovecs, iov, 1);
217  iov->iov_base = b->data + b->current_data;
218  iov->iov_len = l = b->current_length;
219 
221  {
222  do {
223  b = vlib_get_buffer (vm, b->next_buffer);
224 
225  vec_add2 (tm->threads[thread_index].iovecs, iov, 1);
226 
227  iov->iov_base = b->data + b->current_data;
228  iov->iov_len = b->current_length;
229  l += b->current_length;
230  } while (b->flags & VLIB_BUFFER_NEXT_PRESENT);
231  }
232 
233  if (writev (ti->unix_fd, tm->threads[thread_index].iovecs,
234  vec_len (tm->threads[thread_index].iovecs)) < l)
235  clib_unix_warning ("writev");
236  }
237 
239 
240  return n_packets;
241 }
242 
244  .function = tapcli_tx,
245  .name = "tapcli-tx",
246  .type = VLIB_NODE_TYPE_INTERNAL,
247  .vector_size = 4,
248 };
249 
250 /**
251  * @brief Dispatch tapcli RX node function for node tap_cli_rx
252  *
253  *
254  * @param *vm - vlib_main_t
255  * @param *node - vlib_node_runtime_t
256  * @param *ti - tapcli_interface_t
257  *
258  * @return n_packets - uword
259  *
260  */
262  vlib_node_runtime_t * node,
263  tapcli_interface_t * ti)
264 {
265  tapcli_main_t * tm = &tapcli_main;
266  const uword buffer_size = VLIB_BUFFER_DATA_SIZE;
267  u32 n_trace = vlib_get_trace_count (vm, node);
268  u8 set_trace = 0;
269  u16 thread_index = vlib_get_thread_index ();
270  vnet_main_t *vnm;
271  vnet_sw_interface_t * si;
272  u8 admin_down;
273  u32 next = node->cached_next_index;
274  u32 n_left_to_next, next_index;
275  u32 *to_next;
276 
277  vnm = vnet_get_main();
278  si = vnet_get_sw_interface (vnm, ti->sw_if_index);
279  admin_down = !(si->flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP);
280 
281  vlib_get_next_frame(vm, node, next, to_next, n_left_to_next);
282 
283  while (n_left_to_next) { // Fill at most one vector
284  vlib_buffer_t *b_first, *b, *prev;
285  u32 bi_first, bi;
286  word n_bytes_in_packet;
287  int j, n_bytes_left;
288 
289  if (PREDICT_FALSE(vec_len(tm->threads[thread_index].rx_buffers) <
290  tm->mtu_buffers)) {
291  uword len = vec_len(tm->threads[thread_index].rx_buffers);
292  _vec_len(tm->threads[thread_index].rx_buffers) +=
293  vlib_buffer_alloc_from_free_list(vm, &tm->threads[thread_index].rx_buffers[len],
295  if (PREDICT_FALSE(vec_len(tm->threads[thread_index].rx_buffers) <
296  tm->mtu_buffers)) {
298  TAPCLI_ERROR_BUFFER_ALLOC,
299  tm->mtu_buffers -
300  vec_len(tm->threads[thread_index].rx_buffers));
301  break;
302  }
303  }
304 
305  uword i_rx = vec_len (tm->threads[thread_index].rx_buffers) - 1;
306 
307  /* Allocate RX buffers from end of rx_buffers.
308  Turn them into iovecs to pass to readv. */
309  vec_validate (tm->threads[thread_index].iovecs, tm->mtu_buffers - 1);
310  for (j = 0; j < tm->mtu_buffers; j++) {
311  b = vlib_get_buffer (vm, tm->threads[thread_index].rx_buffers[i_rx - j]);
312  tm->threads[thread_index].iovecs[j].iov_base = b->data;
313  tm->threads[thread_index].iovecs[j].iov_len = buffer_size;
314  }
315 
316  n_bytes_left = readv (ti->unix_fd, tm->threads[thread_index].iovecs,
317  tm->mtu_buffers);
318  n_bytes_in_packet = n_bytes_left;
319  if (n_bytes_left <= 0) {
320  if (errno != EAGAIN) {
322  TAPCLI_ERROR_READ, 1);
323  }
324  break;
325  }
326 
327  bi_first = tm->threads[thread_index].rx_buffers[i_rx];
328  b = b_first = vlib_get_buffer (vm,
329  tm->threads[thread_index].rx_buffers[i_rx]);
330  prev = NULL;
331 
332  while (1) {
333  b->current_length = n_bytes_left < buffer_size ? n_bytes_left : buffer_size;
334  n_bytes_left -= buffer_size;
335 
336  if (prev) {
337  prev->next_buffer = bi;
339  }
340  prev = b;
341 
342  /* last segment */
343  if (n_bytes_left <= 0)
344  break;
345 
346  i_rx--;
347  bi = tm->threads[thread_index].rx_buffers[i_rx];
348  b = vlib_get_buffer (vm, bi);
349  }
350 
351  _vec_len (tm->threads[thread_index].rx_buffers) = i_rx;
352 
354  (n_bytes_in_packet > buffer_size) ? n_bytes_in_packet - buffer_size : 0;
356 
358 
359  vnet_buffer (b_first)->sw_if_index[VLIB_RX] = ti->sw_if_index;
360  vnet_buffer (b_first)->sw_if_index[VLIB_TX] = (u32)~0;
361 
362  b_first->error = node->errors[TAPCLI_ERROR_NONE];
364  next_index = (ti->per_interface_next_index != ~0) ?
365  ti->per_interface_next_index : next_index;
366  next_index = admin_down ? VNET_DEVICE_INPUT_NEXT_DROP : next_index;
367 
368  to_next[0] = bi_first;
369  to_next++;
370  n_left_to_next--;
371 
372  vnet_feature_start_device_input_x1 (ti->sw_if_index, &next_index, b_first);
373 
374  vlib_validate_buffer_enqueue_x1 (vm, node, next,
375  to_next, n_left_to_next,
376  bi_first, next_index);
377 
378  /* Interface counters for tapcli interface. */
379  if (PREDICT_TRUE(!admin_down)) {
383  thread_index, ti->sw_if_index,
384  1, n_bytes_in_packet);
385 
386  if (PREDICT_FALSE(n_trace > 0)) {
387  vlib_trace_buffer (vm, node, next_index,
388  b_first, /* follow_chain */ 1);
389  n_trace--;
390  set_trace = 1;
391  tapcli_rx_trace_t *t0 = vlib_add_trace (vm, node, b_first, sizeof (*t0));
392  t0->sw_if_index = si->sw_if_index;
393  }
394  }
395  }
396  vlib_put_next_frame (vm, node, next, n_left_to_next);
397  if (set_trace)
398  vlib_set_trace_count (vm, node, n_trace);
399  return VLIB_FRAME_SIZE - n_left_to_next;
400 }
401 
402 /**
403  * @brief tapcli RX node function
404  * @node tap-cli-rx
405  *
406  * Input node from the Kernel tun/tap device
407  *
408  * @param *vm - vlib_main_t
409  * @param *node - vlib_node_runtime_t
410  * @param *frame - vlib_frame_t
411  *
412  * @return n_packets - uword
413  *
414  */
415 static uword
417  vlib_node_runtime_t * node,
418  vlib_frame_t * frame)
419 {
420  tapcli_main_t * tm = &tapcli_main;
421  static u32 * ready_interface_indices;
422  tapcli_interface_t * ti;
423  int i;
424  u32 total_count = 0;
425 
426  vec_reset_length (ready_interface_indices);
428  ({
429  vec_add1 (ready_interface_indices, i);
430  }));
431 
432  if (vec_len (ready_interface_indices) == 0)
433  return 0;
434 
435  for (i = 0; i < vec_len(ready_interface_indices); i++)
436  {
437  tm->pending_read_bitmap =
439  ready_interface_indices[i], 0);
440 
441  ti = vec_elt_at_index (tm->tapcli_interfaces, ready_interface_indices[i]);
442  total_count += tapcli_rx_iface(vm, node, ti);
443  }
444  return total_count; //This might return more than 256.
445 }
446 
447 /** TAPCLI error strings */
448 static char * tapcli_rx_error_strings[] = {
449 #define _(sym,string) string,
451 #undef _
452 };
453 
455  .function = tapcli_rx,
456  .name = "tapcli-rx",
457  .sibling_of = "device-input",
458  .type = VLIB_NODE_TYPE_INPUT,
459  .state = VLIB_NODE_STATE_INTERRUPT,
460  .vector_size = 4,
461  .n_errors = TAPCLI_N_ERROR,
462  .error_strings = tapcli_rx_error_strings,
463  .format_trace = format_tapcli_rx_trace,
464 };
465 
466 
467 /**
468  * @brief Gets called when file descriptor is ready from epoll.
469  *
470  * @param *uf - clib_file_t
471  *
472  * @return error - clib_error_t
473  *
474  */
476 {
478  tapcli_main_t * tm = &tapcli_main;
479  uword * p;
480 
481  /** Schedule the rx node */
483 
485 
486  /** Mark the specific tap interface ready-to-read */
487  if (p)
489  p[0], 1);
490  else
491  clib_warning ("fd %d not in hash table", uf->file_descriptor);
492 
493  return 0;
494 }
495 
496 /**
497  * @brief CLI function for TAPCLI configuration
498  *
499  * @param *vm - vlib_main_t
500  * @param *input - unformat_input_t
501  *
502  * @return error - clib_error_t
503  *
504  */
505 static clib_error_t *
507 {
508  tapcli_main_t *tm = &tapcli_main;
509  const uword buffer_size = VLIB_BUFFER_DATA_SIZE;
510 
512  {
513  if (unformat (input, "mtu %d", &tm->mtu_bytes))
514  ;
515  else if (unformat (input, "disable"))
516  tm->is_disabled = 1;
517  else
518  return clib_error_return (0, "unknown input `%U'",
519  format_unformat_error, input);
520  }
521 
522  if (tm->is_disabled)
523  return 0;
524 
525  if (geteuid())
526  {
527  clib_warning ("tapcli disabled: must be superuser");
528  tm->is_disabled = 1;
529  return 0;
530  }
531 
532  tm->mtu_buffers = (tm->mtu_bytes + (buffer_size - 1)) / buffer_size;
533 
534  return 0;
535 }
536 
537 /**
538  * @brief Renumber TAPCLI interface
539  *
540  * @param *hi - vnet_hw_interface_t
541  * @param new_dev_instance - u32
542  *
543  * @return rc - int
544  *
545  */
547  u32 new_dev_instance)
548 {
549  tapcli_main_t *tm = &tapcli_main;
550 
552  hi->dev_instance, ~0);
553 
555  new_dev_instance;
556 
557  return 0;
558 }
559 
561 
562 /**
563  * @brief Free "no punt" frame
564  *
565  * @param *vm - vlib_main_t
566  * @param *node - vlib_node_runtime_t
567  * @param *frame - vlib_frame_t
568  *
569  */
570 static void
572  vlib_node_runtime_t * node,
573  vlib_frame_t * frame)
574 {
575  u32 * buffers = vlib_frame_args (frame);
576  uword n_packets = frame->n_vectors;
577  vlib_buffer_free (vm, buffers, n_packets);
578  vlib_frame_free (vm, node, frame);
579 }
580 
582  .name = "tapcli",
584 };
585 
586 /**
587  * @brief Formatter for TAPCLI interface name
588  *
589  * @param *s - formatter string
590  * @param *args - va_list
591  *
592  * @return *s - formatted string
593  *
594  */
595 static u8 * format_tapcli_interface_name (u8 * s, va_list * args)
596 {
597  u32 i = va_arg (*args, u32);
598  u32 show_dev_instance = ~0;
599  tapcli_main_t * tm = &tapcli_main;
600 
602  show_dev_instance = tm->show_dev_instance_by_real_dev_instance[i];
603 
604  if (show_dev_instance != ~0)
605  i = show_dev_instance;
606 
607  s = format (s, "tap-%d", i);
608  return s;
609 }
610 
611 /**
612  * @brief Modify interface flags for TAPCLI interface
613  *
614  * @param *vnm - vnet_main_t
615  * @param *hw - vnet_hw_interface_t
616  * @param flags - u32
617  *
618  * @return rc - u32
619  *
620  */
622  vnet_hw_interface_t * hw,
623  u32 flags)
624 {
625  tapcli_main_t *tm = &tapcli_main;
626  tapcli_interface_t *ti;
627 
629 
630  if (flags & ETHERNET_INTERFACE_FLAG_MTU)
631  {
632  const uword buffer_size = VLIB_BUFFER_DATA_SIZE;
633  tm->mtu_bytes = hw->max_packet_bytes;
634  tm->mtu_buffers = (tm->mtu_bytes + (buffer_size - 1)) / buffer_size;
635  }
636  else
637  {
638  struct ifreq ifr;
639  u32 want_promisc;
640 
641  memcpy (&ifr, &ti->ifr, sizeof (ifr));
642 
643  /* get flags, modify to bring up interface... */
644  if (ioctl (ti->provision_fd, SIOCGIFFLAGS, &ifr) < 0)
645  {
646  clib_unix_warning ("Couldn't get interface flags for %s", hw->name);
647  return 0;
648  }
649 
650  want_promisc = (flags & ETHERNET_INTERFACE_FLAG_ACCEPT_ALL) != 0;
651 
652  if (want_promisc == ti->is_promisc)
653  return 0;
654 
656  ifr.ifr_flags |= IFF_PROMISC;
657  else
658  ifr.ifr_flags &= ~(IFF_PROMISC);
659 
660  /* get flags, modify to bring up interface... */
661  if (ioctl (ti->provision_fd, SIOCSIFFLAGS, &ifr) < 0)
662  {
663  clib_unix_warning ("Couldn't set interface flags for %s", hw->name);
664  return 0;
665  }
666 
667  ti->is_promisc = want_promisc;
668  }
669 
670  return 0;
671 }
672 
673 /**
674  * @brief Setting the TAP interface's next processing node
675  *
676  * @param *vnm - vnet_main_t
677  * @param hw_if_index - u32
678  * @param node_index - u32
679  *
680  */
682  u32 hw_if_index,
683  u32 node_index)
684 {
685  tapcli_main_t *tm = &tapcli_main;
686  tapcli_interface_t *ti;
687  vnet_hw_interface_t *hw = vnet_get_hw_interface (vnm, hw_if_index);
688 
690 
691  /** Shut off redirection */
692  if (node_index == ~0)
693  {
694  ti->per_interface_next_index = node_index;
695  return;
696  }
697 
699  vlib_node_add_next (tm->vlib_main, tapcli_rx_node.index, node_index);
700 }
701 
702 /**
703  * @brief Set link_state == admin_state otherwise things like ip6 neighbor discovery breaks
704  *
705  * @param *vnm - vnet_main_t
706  * @param hw_if_index - u32
707  * @param flags - u32
708  *
709  * @return error - clib_error_t
710  */
711 static clib_error_t *
713 {
714  uword is_admin_up = (flags & VNET_SW_INTERFACE_FLAG_ADMIN_UP) != 0;
715  u32 hw_flags;
718 
719  if (is_admin_up)
720  hw_flags = VNET_HW_INTERFACE_FLAG_LINK_UP | speed_duplex;
721  else
722  hw_flags = speed_duplex;
723 
724  vnet_hw_interface_set_flags (vnm, hw_if_index, hw_flags);
725  return 0;
726 }
727 
729  .name = "tapcli",
730  .tx_function = tapcli_tx,
731  .format_device_name = format_tapcli_interface_name,
732  .rx_redirect_to_node = tapcli_set_interface_next_node,
733  .name_renumber = tap_name_renumber,
734  .admin_up_down_function = tapcli_interface_admin_up_down,
735 };
736 
737 /**
738  * @brief Dump TAP interfaces
739  *
740  * @param **out_tapids - tapcli_interface_details_t
741  *
742  * @return rc - int
743  *
744  */
746 {
747  tapcli_main_t * tm = &tapcli_main;
748  tapcli_interface_t * ti;
749 
750  tapcli_interface_details_t * r_tapids = NULL;
752 
753  vec_foreach (ti, tm->tapcli_interfaces) {
754  if (!ti->active)
755  continue;
756  vec_add2(r_tapids, tapid, 1);
757  tapid->sw_if_index = ti->sw_if_index;
758  strncpy((char *)tapid->dev_name, ti->ifr.ifr_name, sizeof (ti->ifr.ifr_name)-1);
759  }
760 
761  *out_tapids = r_tapids;
762 
763  return 0;
764 }
765 
766 /**
767  * @brief Get tap interface from inactive interfaces or create new
768  *
769  * @return interface - tapcli_interface_t
770  *
771  */
773 {
774  tapcli_main_t * tm = &tapcli_main;
775  tapcli_interface_t *ti = NULL;
776 
777  int inactive_cnt = vec_len(tm->tapcli_inactive_interfaces);
778  // if there are any inactive ifaces
779  if (inactive_cnt > 0) {
780  // take last
781  u32 ti_idx = tm->tapcli_inactive_interfaces[inactive_cnt - 1];
782  if (vec_len(tm->tapcli_interfaces) > ti_idx) {
783  ti = vec_elt_at_index (tm->tapcli_interfaces, ti_idx);
784  clib_warning("reusing tap interface");
785  }
786  // "remove" from inactive list
787  _vec_len(tm->tapcli_inactive_interfaces) -= 1;
788  }
789 
790  // ti was not retrieved from inactive ifaces - create new
791  if (!ti)
792  vec_add2 (tm->tapcli_interfaces, ti, 1);
793 
794  return ti;
795 }
796 
797 typedef struct
798 {
801  unsigned int ifindex;
802 } ip6_ifreq_t;
803 
804 /**
805  * @brief Connect a TAP interface
806  *
807  * @param vm - vlib_main_t
808  * @param ap - vnet_tap_connect_args_t
809  *
810  * @return rc - int
811  *
812  */
814 {
815  tapcli_main_t * tm = &tapcli_main;
816  tapcli_interface_t * ti = NULL;
817  struct ifreq ifr;
818  int flags;
819  int dev_net_tun_fd;
820  int dev_tap_fd = -1;
821  clib_error_t * error;
822  u8 hwaddr [6];
823  int rv = 0;
824 
825  if (tm->is_disabled)
826  {
827  return VNET_API_ERROR_FEATURE_DISABLED;
828  }
829 
830  flags = IFF_TAP | IFF_NO_PI;
831 
832  if ((dev_net_tun_fd = open ("/dev/net/tun", O_RDWR)) < 0)
833  return VNET_API_ERROR_SYSCALL_ERROR_1;
834 
835  memset (&ifr, 0, sizeof (ifr));
836  strncpy(ifr.ifr_name, (char *) ap->intfc_name, sizeof (ifr.ifr_name)-1);
837  ifr.ifr_flags = flags;
838  if (ioctl (dev_net_tun_fd, TUNSETIFF, (void *)&ifr) < 0)
839  {
840  rv = VNET_API_ERROR_SYSCALL_ERROR_2;
841  goto error;
842  }
843 
844  /* Open a provisioning socket */
845  if ((dev_tap_fd = socket(PF_PACKET, SOCK_RAW,
846  htons(ETH_P_ALL))) < 0 )
847  {
848  rv = VNET_API_ERROR_SYSCALL_ERROR_3;
849  goto error;
850  }
851 
852  /* Find the interface index. */
853  {
854  struct ifreq ifr;
855  struct sockaddr_ll sll;
856 
857  memset (&ifr, 0, sizeof(ifr));
858  strncpy (ifr.ifr_name, (char *) ap->intfc_name, sizeof (ifr.ifr_name)-1);
859  if (ioctl (dev_tap_fd, SIOCGIFINDEX, &ifr) < 0 )
860  {
861  rv = VNET_API_ERROR_SYSCALL_ERROR_4;
862  goto error;
863  }
864 
865  /* Bind the provisioning socket to the interface. */
866  memset(&sll, 0, sizeof(sll));
867  sll.sll_family = AF_PACKET;
868  sll.sll_ifindex = ifr.ifr_ifindex;
869  sll.sll_protocol = htons(ETH_P_ALL);
870 
871  if (bind(dev_tap_fd, (struct sockaddr*) &sll, sizeof(sll)) < 0)
872  {
873  rv = VNET_API_ERROR_SYSCALL_ERROR_5;
874  goto error;
875  }
876  }
877 
878  /* non-blocking I/O on /dev/tapX */
879  {
880  int one = 1;
881  if (ioctl (dev_net_tun_fd, FIONBIO, &one) < 0)
882  {
883  rv = VNET_API_ERROR_SYSCALL_ERROR_6;
884  goto error;
885  }
886  }
887  ifr.ifr_mtu = tm->mtu_bytes;
888  if (ioctl (dev_tap_fd, SIOCSIFMTU, &ifr) < 0)
889  {
890  rv = VNET_API_ERROR_SYSCALL_ERROR_7;
891  goto error;
892  }
893 
894  /* get flags, modify to bring up interface... */
895  if (ioctl (dev_tap_fd, SIOCGIFFLAGS, &ifr) < 0)
896  {
897  rv = VNET_API_ERROR_SYSCALL_ERROR_8;
898  goto error;
899  }
900 
901  ifr.ifr_flags |= (IFF_UP | IFF_RUNNING);
902 
903  if (ioctl (dev_tap_fd, SIOCSIFFLAGS, &ifr) < 0)
904  {
905  rv = VNET_API_ERROR_SYSCALL_ERROR_9;
906  goto error;
907  }
908 
909  if (ap->ip4_address_set)
910  {
911  struct sockaddr_in sin;
912  /* ip4: mask defaults to /24 */
913  u32 mask = clib_host_to_net_u32 (0xFFFFFF00);
914 
915  memset(&sin, 0, sizeof(sin));
916  sin.sin_family = AF_INET;
917  /* sin.sin_port = 0; */
918  sin.sin_addr.s_addr = ap->ip4_address->as_u32;
919  memcpy (&ifr.ifr_ifru.ifru_addr, &sin, sizeof (sin));
920 
921  if (ioctl (dev_tap_fd, SIOCSIFADDR, &ifr) < 0)
922  {
923  rv = VNET_API_ERROR_SYSCALL_ERROR_10;
924  goto error;
925  }
926 
927  if (ap->ip4_mask_width > 0 && ap->ip4_mask_width < 33)
928  {
929  mask = ~0;
930  mask <<= (32 - ap->ip4_mask_width);
931  }
932 
933  mask = clib_host_to_net_u32(mask);
934  sin.sin_family = AF_INET;
935  sin.sin_port = 0;
936  sin.sin_addr.s_addr = mask;
937  memcpy (&ifr.ifr_ifru.ifru_addr, &sin, sizeof (sin));
938 
939  if (ioctl (dev_tap_fd, SIOCSIFNETMASK, &ifr) < 0)
940  {
941  rv = VNET_API_ERROR_SYSCALL_ERROR_10;
942  goto error;
943  }
944  }
945 
946  if (ap->ip6_address_set)
947  {
948  struct ifreq ifr2;
949  ip6_ifreq_t ifr6;
950  int sockfd6;
951 
952  sockfd6 = socket(AF_INET6, SOCK_DGRAM, IPPROTO_IP);
953  if (sockfd6 < 0)
954  {
955  rv = VNET_API_ERROR_SYSCALL_ERROR_10;
956  goto error;
957  }
958 
959  memset (&ifr2, 0, sizeof(ifr));
960  strncpy (ifr2.ifr_name, (char *) ap->intfc_name,
961  sizeof (ifr2.ifr_name)-1);
962  if (ioctl (sockfd6, SIOCGIFINDEX, &ifr2) < 0 )
963  {
964  close (sockfd6);
965  rv = VNET_API_ERROR_SYSCALL_ERROR_4;
966  goto error;
967  }
968 
969  memcpy (&ifr6.addr, ap->ip6_address, sizeof (ip6_address_t));
970  ifr6.mask_width = ap->ip6_mask_width;
971  ifr6.ifindex = ifr2.ifr_ifindex;
972 
973  if (ioctl (sockfd6, SIOCSIFADDR, &ifr6) < 0)
974  {
975  close (sockfd6);
976  clib_unix_warning ("ifr6");
977  rv = VNET_API_ERROR_SYSCALL_ERROR_10;
978  goto error;
979  }
980  close (sockfd6);
981  }
982 
983  ti = tapcli_get_new_tapif();
984  ti->per_interface_next_index = ~0;
985 
986  if (ap->hwaddr_arg != 0)
987  clib_memcpy(hwaddr, ap->hwaddr_arg, 6);
988  else
989  {
990  f64 now = vlib_time_now(vm);
991  u32 rnd;
992  rnd = (u32) (now * 1e6);
993  rnd = random_u32 (&rnd);
994 
995  memcpy (hwaddr+2, &rnd, sizeof(rnd));
996  hwaddr[0] = 2;
997  hwaddr[1] = 0xfe;
998  }
999 
1001  (tm->vnet_main,
1002  tapcli_dev_class.index,
1003  ti - tm->tapcli_interfaces /* device instance */,
1004  hwaddr /* ethernet address */,
1005  &ti->hw_if_index,
1007 
1008  if (error)
1009  {
1010  clib_error_report (error);
1011  rv = VNET_API_ERROR_INVALID_REGISTRATION;
1012  goto error;
1013  }
1014 
1015  {
1016  clib_file_t template = {0};
1017  template.read_function = tapcli_read_ready;
1018  template.file_descriptor = dev_net_tun_fd;
1019  ti->clib_file_index = clib_file_add (&file_main, &template);
1020  ti->unix_fd = dev_net_tun_fd;
1021  ti->provision_fd = dev_tap_fd;
1022  clib_memcpy (&ti->ifr, &ifr, sizeof (ifr));
1023  }
1024 
1025  {
1026  vnet_hw_interface_t * hw;
1031  ti->sw_if_index = hw->sw_if_index;
1032  if (ap->sw_if_indexp)
1033  *(ap->sw_if_indexp) = hw->sw_if_index;
1034  }
1035 
1036  ti->active = 1;
1037 
1039  ti - tm->tapcli_interfaces);
1040 
1042  ti - tm->tapcli_interfaces);
1043 
1044  return rv;
1045 
1046  error:
1047  close (dev_net_tun_fd);
1048  if (dev_tap_fd >= 0)
1049  close (dev_tap_fd);
1050 
1051  return rv;
1052 }
1053 
1054 /**
1055  * @brief Renumber a TAP interface
1056  *
1057  * @param *vm - vlib_main_t
1058  * @param *intfc_name - u8
1059  * @param *hwaddr_arg - u8
1060  * @param *sw_if_indexp - u32
1061  * @param renumber - u8
1062  * @param custom_dev_instance - u32
1063  *
1064  * @return rc - int
1065  *
1066  */
1069 {
1070  int rv = vnet_tap_connect(vm, ap);
1071 
1072  if (!rv && ap->renumber)
1074 
1075  return rv;
1076 }
1077 
1078 /**
1079  * @brief Disconnect TAP CLI interface
1080  *
1081  * @param *ti - tapcli_interface_t
1082  *
1083  * @return rc - int
1084  *
1085  */
1087 {
1088  int rv = 0;
1089  vnet_main_t * vnm = vnet_get_main();
1090  tapcli_main_t * tm = &tapcli_main;
1091  u32 sw_if_index = ti->sw_if_index;
1092 
1093  // bring interface down
1094  vnet_sw_interface_set_flags (vnm, sw_if_index, 0);
1095 
1096  if (ti->clib_file_index != ~0) {
1098  ti->clib_file_index = ~0;
1099  }
1100  else
1101  close(ti->unix_fd);
1102 
1105  close(ti->provision_fd);
1106  ti->unix_fd = -1;
1107  ti->provision_fd = -1;
1108 
1109  return rv;
1110 }
1111 
1112 /**
1113  * @brief Delete TAP interface
1114  *
1115  * @param *vm - vlib_main_t
1116  * @param sw_if_index - u32
1117  *
1118  * @return rc - int
1119  *
1120  */
1121 int vnet_tap_delete(vlib_main_t *vm, u32 sw_if_index)
1122 {
1123  int rv = 0;
1124  tapcli_main_t * tm = &tapcli_main;
1125  tapcli_interface_t *ti;
1126  uword *p = NULL;
1127 
1129  sw_if_index);
1130  if (p == 0) {
1131  clib_warning ("sw_if_index %d unknown", sw_if_index);
1132  return VNET_API_ERROR_INVALID_SW_IF_INDEX;
1133  }
1134  ti = vec_elt_at_index (tm->tapcli_interfaces, p[0]);
1135 
1136  // inactive
1137  ti->active = 0;
1139  // add to inactive list
1141 
1142  // reset renumbered iface
1145 
1147  return rv;
1148 }
1149 
1150 /**
1151  * @brief CLI function to delete TAP interface
1152  *
1153  * @param *vm - vlib_main_t
1154  * @param *input - unformat_input_t
1155  * @param *cmd - vlib_cli_command_t
1156  *
1157  * @return error - clib_error_t
1158  *
1159  */
1160 static clib_error_t *
1162  unformat_input_t * input,
1163  vlib_cli_command_t * cmd)
1164 {
1165  tapcli_main_t * tm = &tapcli_main;
1166  u32 sw_if_index = ~0;
1167 
1168  if (tm->is_disabled)
1169  {
1170  return clib_error_return (0, "device disabled...");
1171  }
1172 
1173  if (unformat (input, "%U", unformat_vnet_sw_interface, tm->vnet_main,
1174  &sw_if_index))
1175  ;
1176  else
1177  return clib_error_return (0, "unknown input `%U'",
1178  format_unformat_error, input);
1179 
1180 
1181  int rc = vnet_tap_delete (vm, sw_if_index);
1182 
1183  if (!rc) {
1184  vlib_cli_output (vm, "Deleted.");
1185  } else {
1186  vlib_cli_output (vm, "Error during deletion of tap interface. (rc: %d)", rc);
1187  }
1188 
1189  return 0;
1190 }
1191 
1192 VLIB_CLI_COMMAND (tap_delete_command, static) = {
1193  .path = "tap delete",
1194  .short_help = "tap delete <vpp-tap-intfc-name>",
1195  .function = tap_delete_command_fn,
1196 };
1197 
1198 /**
1199  * @brief Modifies tap interface - can result in new interface being created
1200  *
1201  * @param *vm - vlib_main_t
1202  * @param orig_sw_if_index - u32
1203  * @param *intfc_name - u8
1204  * @param *hwaddr_arg - u8
1205  * @param *sw_if_indexp - u32
1206  * @param renumber - u8
1207  * @param custom_dev_instance - u32
1208  *
1209  * @return rc - int
1210  *
1211  */
1213 {
1214  int rv = vnet_tap_delete (vm, ap->orig_sw_if_index);
1215 
1216  if (rv)
1217  return rv;
1218 
1219  rv = vnet_tap_connect_renumber(vm, ap);
1220 
1221  return rv;
1222 }
1223 
1224 /**
1225  * @brief CLI function to modify TAP interface
1226  *
1227  * @param *vm - vlib_main_t
1228  * @param *input - unformat_input_t
1229  * @param *cmd - vlib_cli_command_t
1230  *
1231  * @return error - clib_error_t
1232  *
1233  */
1234 static clib_error_t *
1236  unformat_input_t * input,
1237  vlib_cli_command_t * cmd)
1238 {
1239  u8 * intfc_name;
1240  tapcli_main_t * tm = &tapcli_main;
1241  u32 sw_if_index = ~0;
1242  u32 new_sw_if_index = ~0;
1243  int user_hwaddr = 0;
1244  u8 hwaddr[6];
1245  vnet_tap_connect_args_t _a, *ap= &_a;
1246 
1247  if (tm->is_disabled)
1248  {
1249  return clib_error_return (0, "device disabled...");
1250  }
1251 
1252  if (unformat (input, "%U", unformat_vnet_sw_interface, tm->vnet_main,
1253  &sw_if_index))
1254  ;
1255  else
1256  return clib_error_return (0, "unknown input `%U'",
1257  format_unformat_error, input);
1258 
1259  if (unformat (input, "%s", &intfc_name))
1260  ;
1261  else
1262  return clib_error_return (0, "unknown input `%U'",
1263  format_unformat_error, input);
1264 
1265  if (unformat(input, "hwaddr %U", unformat_ethernet_address,
1266  &hwaddr))
1267  user_hwaddr = 1;
1268 
1269 
1270  memset (ap, 0, sizeof(*ap));
1271  ap->orig_sw_if_index = sw_if_index;
1272  ap->intfc_name = intfc_name;
1273  ap->sw_if_indexp = &new_sw_if_index;
1274  if (user_hwaddr)
1275  ap->hwaddr_arg = hwaddr;
1276 
1277  int rc = vnet_tap_modify (vm, ap);
1278 
1279  if (!rc) {
1280  vlib_cli_output (vm, "Modified %U for Linux tap '%s'",
1282  *(ap->sw_if_indexp), ap->intfc_name);
1283  } else {
1284  vlib_cli_output (vm, "Error during modification of tap interface. (rc: %d)", rc);
1285  }
1286 
1287  return 0;
1288 }
1289 
1290 VLIB_CLI_COMMAND (tap_modify_command, static) = {
1291  .path = "tap modify",
1292  .short_help = "tap modify <vpp-tap-intfc-name> <linux-intfc-name> [hwaddr <addr>]",
1293  .function = tap_modify_command_fn,
1294 };
1295 
1296 /**
1297  * @brief CLI function to connect TAP interface
1298  *
1299  * @param *vm - vlib_main_t
1300  * @param *input - unformat_input_t
1301  * @param *cmd - vlib_cli_command_t
1302  *
1303  * @return error - clib_error_t
1304  *
1305  */
1306 static clib_error_t *
1308  unformat_input_t * input,
1309  vlib_cli_command_t * cmd)
1310 {
1311  u8 * intfc_name = 0;
1312  unformat_input_t _line_input, *line_input = &_line_input;
1313  vnet_tap_connect_args_t _a, *ap= &_a;
1314  tapcli_main_t * tm = &tapcli_main;
1315  u8 hwaddr[6];
1316  u8 *hwaddr_arg = 0;
1317  u32 sw_if_index;
1318  ip4_address_t ip4_address;
1319  int ip4_address_set = 0;
1320  ip6_address_t ip6_address;
1321  int ip6_address_set = 0;
1322  u32 ip4_mask_width = 0;
1323  u32 ip6_mask_width = 0;
1324  clib_error_t *error = NULL;
1325 
1326  if (tm->is_disabled)
1327  return clib_error_return (0, "device disabled...");
1328 
1329  if (!unformat_user (input, unformat_line_input, line_input))
1330  return 0;
1331 
1332  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1333  {
1334  if (unformat(line_input, "hwaddr %U", unformat_ethernet_address,
1335  &hwaddr))
1336  hwaddr_arg = hwaddr;
1337 
1338  /* It is here for backward compatibility */
1339  else if (unformat(line_input, "hwaddr random"))
1340  ;
1341 
1342  else if (unformat (line_input, "address %U/%d",
1343  unformat_ip4_address, &ip4_address, &ip4_mask_width))
1344  ip4_address_set = 1;
1345 
1346  else if (unformat (line_input, "address %U/%d",
1347  unformat_ip6_address, &ip6_address, &ip6_mask_width))
1348  ip6_address_set = 1;
1349 
1350  else if (unformat (line_input, "%s", &intfc_name))
1351  ;
1352  else
1353  {
1354  error = clib_error_return (0, "unknown input `%U'",
1355  format_unformat_error, line_input);
1356  goto done;
1357  }
1358  }
1359 
1360  if (intfc_name == 0)
1361  {
1362  error = clib_error_return (0, "interface name must be specified");
1363  goto done;
1364  }
1365 
1366  memset (ap, 0, sizeof (*ap));
1367 
1368  ap->intfc_name = intfc_name;
1369  ap->hwaddr_arg = hwaddr_arg;
1370  if (ip4_address_set)
1371  {
1372  ap->ip4_address = &ip4_address;
1373  ap->ip4_mask_width = ip4_mask_width;
1374  ap->ip4_address_set = 1;
1375  }
1376  if (ip6_address_set)
1377  {
1378  ap->ip6_address = &ip6_address;
1379  ap->ip6_mask_width = ip6_mask_width;
1380  ap->ip6_address_set = 1;
1381  }
1382 
1383  ap->sw_if_indexp = &sw_if_index;
1384 
1385  int rv = vnet_tap_connect(vm, ap);
1386 
1387  switch (rv)
1388  {
1389  case VNET_API_ERROR_SYSCALL_ERROR_1:
1390  error = clib_error_return (0, "Couldn't open /dev/net/tun");
1391  goto done;
1392 
1393  case VNET_API_ERROR_SYSCALL_ERROR_2:
1394  error = clib_error_return (0, "Error setting flags on '%s'", intfc_name);
1395  goto done;
1396 
1397  case VNET_API_ERROR_SYSCALL_ERROR_3:
1398  error = clib_error_return (0, "Couldn't open provisioning socket");
1399  goto done;
1400 
1401  case VNET_API_ERROR_SYSCALL_ERROR_4:
1402  error = clib_error_return (0, "Couldn't get if_index");
1403  goto done;
1404 
1405  case VNET_API_ERROR_SYSCALL_ERROR_5:
1406  error = clib_error_return (0, "Couldn't bind provisioning socket");
1407  goto done;
1408 
1409  case VNET_API_ERROR_SYSCALL_ERROR_6:
1410  error = clib_error_return (0, "Couldn't set device non-blocking flag");
1411  goto done;
1412 
1413  case VNET_API_ERROR_SYSCALL_ERROR_7:
1414  error = clib_error_return (0, "Couldn't set device MTU");
1415  goto done;
1416 
1417  case VNET_API_ERROR_SYSCALL_ERROR_8:
1418  error = clib_error_return (0, "Couldn't get interface flags");
1419  goto done;
1420 
1421  case VNET_API_ERROR_SYSCALL_ERROR_9:
1422  error = clib_error_return (0, "Couldn't set intfc admin state up");
1423  goto done;
1424 
1425  case VNET_API_ERROR_SYSCALL_ERROR_10:
1426  error = clib_error_return (0, "Couldn't set intfc address/mask");
1427  goto done;
1428 
1429  case VNET_API_ERROR_INVALID_REGISTRATION:
1430  error = clib_error_return (0, "Invalid registration");
1431  goto done;
1432 
1433  case 0:
1434  break;
1435 
1436  default:
1437  error = clib_error_return (0, "Unknown error: %d", rv);
1438  goto done;
1439  }
1440 
1442  vnet_get_main(), sw_if_index);
1443 
1444 done:
1445  unformat_free (line_input);
1446 
1447  return error;
1448 }
1449 
1450 VLIB_CLI_COMMAND (tap_connect_command, static) = {
1451  .path = "tap connect",
1452  .short_help =
1453  "tap connect <intfc-name> [address <ip-addr>/mw] [hwaddr <addr>]",
1454  .function = tap_connect_command_fn,
1455 };
1456 
1457 /**
1458  * @brief TAPCLI main init
1459  *
1460  * @param *vm - vlib_main_t
1461  *
1462  * @return error - clib_error_t
1463  *
1464  */
1465 clib_error_t *
1467 {
1468  tapcli_main_t * tm = &tapcli_main;
1471 
1472  tm->vlib_main = vm;
1473  tm->vnet_main = vnet_get_main();
1474  tm->mtu_bytes = TAP_MTU_DEFAULT;
1480  vec_foreach (thread, tm->threads)
1481  {
1482  thread->iovecs = 0;
1483  thread->rx_buffers = 0;
1485  vec_reset_length(thread->rx_buffers);
1486  }
1487 
1488  return 0;
1489 }
1490 
u32 per_interface_next_index
Definition: tapcli.c:66
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:432
vlib_main_t * vlib_main
convenience - vlib_main_t
Definition: tapcli.c:146
static int tap_name_renumber(vnet_hw_interface_t *hi, u32 new_dev_instance)
Renumber TAPCLI interface.
Definition: tapcli.c:546
vmrglw vmrglh hi
u32 mask_width
Definition: tapcli.c:800
static void clib_file_del(clib_file_main_t *um, clib_file_t *f)
Definition: file.h:94
u32 * show_dev_instance_by_real_dev_instance
renumbering table
Definition: tapcli.c:140
#define hash_set(h, key, value)
Definition: hash.h:254
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:337
#define CLIB_UNUSED(x)
Definition: clib.h:79
uword * tapcli_interface_index_by_unix_fd
Hash table to find tapcli interface given unix fd.
Definition: tapcli.c:137
#define VNET_HW_INTERFACE_FLAG_SPEED_1G
Definition: interface.h:407
clib_error_t * vnet_hw_interface_set_flags(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: interface.c:538
static vlib_node_registration_t tapcli_tx_node
(constructor) VLIB_REGISTER_NODE (tapcli_tx_node)
Definition: tapcli.c:243
static u32 vlib_get_trace_count(vlib_main_t *vm, vlib_node_runtime_t *rt)
Definition: trace_funcs.h:143
#define hash_unset(h, key)
Definition: hash.h:260
static void vlib_increment_combined_counter(vlib_combined_counter_main_t *cm, u32 thread_index, u32 index, u64 n_packets, u64 n_bytes)
Increment a combined counter.
Definition: counter.h:211
static void vlib_buffer_free(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Free buffers Frees the entire buffer chain for each buffer.
Definition: buffer_funcs.h:317
void ethernet_delete_interface(vnet_main_t *vnm, u32 hw_if_index)
Definition: interface.c:322
u8 * intfc_name
Interface name.
Definition: tuntap.h:31
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
int vnet_tap_connect_renumber(vlib_main_t *vm, vnet_tap_connect_args_t *ap)
Renumber a TAP interface.
Definition: tapcli.c:1067
vnet_interface_main_t interface_main
Definition: vnet.h:56
static clib_error_t * tap_delete_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
CLI function to delete TAP interface.
Definition: tapcli.c:1161
#define PREDICT_TRUE(x)
Definition: clib.h:98
static void vlib_node_set_interrupt_pending(vlib_main_t *vm, u32 node_index)
Definition: node_funcs.h:196
#define NULL
Definition: clib.h:55
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:221
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
u32 file_descriptor
Definition: file.h:53
u32 * sw_if_indexp
Output parameter: result sw_if_index.
Definition: tuntap.h:49
static clib_error_t * tapcli_read_ready(clib_file_t *uf)
Gets called when file descriptor is ready from epoll.
Definition: tapcli.c:475
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:518
int vnet_interface_name_renumber(u32 sw_if_index, u32 new_show_dev_instance)
Definition: interface.c:1268
struct _vlib_node_registration vlib_node_registration_t
u32 custom_dev_instance
Custom device instance.
Definition: tuntap.h:51
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:557
static uword * clib_bitmap_set(uword *ai, uword i, uword value)
Sets the ith bit of a bitmap to new_value Removes trailing zeros from the bitmap. ...
Definition: bitmap.h:167
uword unformat_user(unformat_input_t *input, unformat_function_t *func,...)
Definition: unformat.c:983
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
unformat_function_t unformat_vnet_sw_interface
VNET_DEVICE_CLASS(tapcli_dev_class, static)
#define VNET_HW_INTERFACE_FLAG_LINK_UP
Definition: interface.h:394
pthread_t thread[MAX_THREADS]
Definition: main.c:110
#define vec_validate_aligned(V, I, A)
Make sure vector is long enough for given index (no header, specified alignment)
Definition: vec.h:443
struct _vnet_device_class vnet_device_class_t
vlib_error_t * errors
Vector of errors for this node.
Definition: node.h:415
arguments structure for vnet_tap_connect, vnet_tap_connect_renumber, etc.
Definition: tuntap.h:28
TAP CLI interface details struct.
Definition: tapcli.h:41
int vnet_tap_modify(vlib_main_t *vm, vnet_tap_connect_args_t *ap)
Modifies tap interface - can result in new interface being created.
Definition: tapcli.c:1212
#define vec_alloc(V, N)
Allocate space for N more elements (no header, unspecified alignment)
Definition: vec.h:275
format_function_t format_vnet_sw_if_index_name
static uword vlib_node_add_next(vlib_main_t *vm, uword node, uword next_node)
Definition: node_funcs.h:1108
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
clib_file_function_t * read_function
Definition: file.h:63
Struct for RX trace.
Definition: tapcli.c:74
static void vlib_trace_buffer(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, vlib_buffer_t *b, int follow_chain)
Definition: trace_funcs.h:104
clib_file_t * file_pool
Definition: file.h:76
int vnet_tap_connect(vlib_main_t *vm, vnet_tap_connect_args_t *ap)
Connect a TAP interface.
Definition: tapcli.c:813
#define VLIB_BUFFER_NEXT_PRESENT
Definition: buffer.h:95
#define foreach_tapcli_error
TAP CLI errors.
Definition: tapcli.h:26
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
Definition: buffer.h:68
static clib_error_t * tap_modify_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
CLI function to modify TAP interface.
Definition: tapcli.c:1235
TAPCLI definitions.
unformat_function_t unformat_ip4_address
Definition: format.h:76
static vnet_device_class_t tapcli_dev_class
Definition: tapcli.c:47
u8 ip6_address_set
Please set the indicated ip4 address/mask on the interface.
Definition: tuntap.h:37
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:111
vlib_combined_counter_main_t * combined_sw_if_counters
Definition: interface.h:668
u32 ip4_mask_width
(optional) ip4 mask width to set
Definition: tuntap.h:43
u8 active
for delete
Definition: tapcli.c:68
#define VLIB_BUFFER_TOTAL_LENGTH_VALID
Definition: buffer.h:97
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
tapcli_per_thread_t * threads
per thread variables
Definition: tapcli.c:116
static tapcli_main_t tapcli_main
Definition: tapcli.c:151
#define clib_error_return(e, args...)
Definition: error.h:99
clib_file_main_t file_main
Definition: main.c:63
static clib_error_t * tapcli_config(vlib_main_t *vm, unformat_input_t *input)
CLI function for TAPCLI configuration.
Definition: tapcli.c:506
static tapcli_interface_t * tapcli_get_new_tapif()
Get tap interface from inactive interfaces or create new.
Definition: tapcli.c:772
struct iovec * iovecs
Vector of iovecs for readv/writev calls.
Definition: tapcli.c:108
unformat_function_t unformat_line_input
Definition: format.h:281
u32 max_supported_packet_bytes
Definition: interface.h:454
#define hash_get(h, key)
Definition: hash.h:248
#define clib_bitmap_foreach(i, ai, body)
Macro to iterate across set bits in a bitmap.
Definition: bitmap.h:361
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:72
static vnet_hw_interface_class_t tapcli_interface_class
Definition: tapcli.c:48
u32 * rx_buffers
Vector of VLIB rx buffers to use.
Definition: tapcli.c:105
uword * tapcli_interface_index_by_sw_if_index
Hash table to find tapcli interface given hw_if_index.
Definition: tapcli.c:134
struct _unformat_input_t unformat_input_t
static uword tapcli_tx(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
tapcli TX node function
Definition: tapcli.c:168
#define VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX
Definition: buffer.h:422
void vlib_frame_free(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_frame_t *f)
Definition: main.c:211
static char * tapcli_rx_error_strings[]
TAPCLI error strings.
Definition: tapcli.c:448
ip6_address_t addr
Definition: tapcli.c:799
#define PREDICT_FALSE(x)
Definition: clib.h:97
#define VLIB_CONFIG_FUNCTION(x, n,...)
Definition: init.h:119
vnet_main_t vnet_main
Definition: misc.c:43
#define VLIB_FRAME_SIZE
Definition: node.h:328
struct ifreq ifr
Definition: tapcli.c:65
static u32 tapcli_flag_change(vnet_main_t *vnm, vnet_hw_interface_t *hw, u32 flags)
Modify interface flags for TAPCLI interface.
Definition: tapcli.c:621
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
Definition: buffer_node.h:216
#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:364
u32 mtu_bytes
Interface MTU in bytes and # of default sized buffers.
Definition: tapcli.c:122
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:113
Call from VLIB_INIT_FUNCTION to set the Linux kernel inject node name.
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
Definition: node_funcs.h:1158
#define TAP_MTU_DEFAULT
Definition: tapcli.h:50
u32 mtu_buffers
Definition: tapcli.c:122
unformat_function_t unformat_ip6_address
Definition: format.h:94
#define UNFORMAT_END_OF_INPUT
Definition: format.h:143
u16 n_vectors
Definition: node.h:344
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:221
u8 renumber
Renumber the (existing) interface.
Definition: tuntap.h:39
vlib_main_t * vm
Definition: buffer.c:283
static uword tapcli_rx(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
tapcli RX node function
Definition: tapcli.c:416
static int tapcli_tap_disconnect(tapcli_interface_t *ti)
Disconnect TAP CLI interface.
Definition: tapcli.c:1086
static void tapcli_nopunt_frame(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Free "no punt" frame.
Definition: tapcli.c:571
unsigned int ifindex
Definition: tapcli.c:801
#define clib_warning(format, args...)
Definition: error.h:59
#define clib_memcpy(a, b, c)
Definition: string.h:69
tapcli_interface_t * tapcli_interfaces
Vector of tap interfaces.
Definition: tapcli.c:125
static u32 vlib_buffer_alloc_from_free_list(vlib_main_t *vm, u32 *buffers, u32 n_buffers, u32 free_list_index)
Allocate buffers from specific freelist into supplied array.
Definition: buffer_funcs.h:296
#define ETHERNET_INTERFACE_FLAG_MTU
Definition: ethernet.h:118
#define ETHERNET_INTERFACE_FLAG_ACCEPT_ALL
Definition: ethernet.h:113
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:454
#define VLIB_BUFFER_DATA_SIZE
Definition: buffer.h:51
static u8 * format_tapcli_interface_name(u8 *s, va_list *args)
Formatter for TAPCLI interface name.
Definition: tapcli.c:595
#define VLIB_CLI_COMMAND(x,...)
Definition: cli.h:154
#define hash_create(elts, value_bytes)
Definition: hash.h:658
#define VNET_HW_INTERFACE_FLAG_FULL_DUPLEX
Definition: interface.h:398
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
Definition: node.h:456
#define VNET_SW_INTERFACE_FLAG_ADMIN_UP
Definition: interface.h:572
u32 max_l3_packet_bytes[VLIB_N_RX_TX]
Definition: interface.h:468
uword unformat_ethernet_address(unformat_input_t *input, va_list *args)
Definition: format.c:227
#define ASSERT(truth)
unsigned int u32
Definition: types.h:88
static uword clib_file_add(clib_file_main_t *um, clib_file_t *template)
Definition: file.h:84
#define TAP_MTU_MAX
Definition: tapcli.h:49
static uword tapcli_rx_iface(vlib_main_t *vm, vlib_node_runtime_t *node, tapcli_interface_t *ti)
Dispatch tapcli RX node function for node tap_cli_rx.
Definition: tapcli.c:261
u32 clib_file_index
Definition: tapcli.c:59
u8 ip4_address_set
Please set the indicated ip4 address/mask on the interface.
Definition: tuntap.h:35
u32 next_buffer
Next buffer for this linked-list of buffers.
Definition: buffer.h:109
clib_error_t * ethernet_register_interface(vnet_main_t *vnm, u32 dev_class_index, u32 dev_instance, u8 *address, u32 *hw_if_index_return, ethernet_flag_change_function_t flag_change)
Definition: interface.c:273
u8 * format_tapcli_rx_trace(u8 *s, va_list *va)
Function to format TAP CLI trace.
Definition: tapcli.c:87
#define clib_error_report(e)
Definition: error.h:113
static void * vlib_frame_args(vlib_frame_t *f)
Get pointer to frame scalar data.
Definition: node_funcs.h:284
int vnet_tap_delete(vlib_main_t *vm, u32 sw_if_index)
Delete TAP interface.
Definition: tapcli.c:1121
ip4_address_t * ip4_address
(optional) ip4 address to set
Definition: tuntap.h:41
static clib_error_t * tapcli_interface_admin_up_down(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Set link_state == admin_state otherwise things like ip6 neighbor discovery breaks.
Definition: tapcli.c:712
VNET_HW_INTERFACE_CLASS(tapcli_interface_class, static)
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
u64 uword
Definition: types.h:112
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace_funcs.h:55
u32 total_length_not_including_first_buffer
Only valid for first buffer in chain.
Definition: buffer.h:141
Definition: defs.h:47
unsigned short u16
Definition: types.h:57
i64 word
Definition: types.h:111
struct _vnet_hw_interface_class vnet_hw_interface_class_t
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
double f64
Definition: types.h:142
unsigned char u8
Definition: types.h:56
#define VLIB_BUFFER_TRACE_TRAJECTORY_INIT(b)
Definition: buffer.h:517
u32 * tapcli_inactive_interfaces
Vector of deleted tap interfaces.
Definition: tapcli.c:128
static void unformat_free(unformat_input_t *i)
Definition: format.h:161
int is_disabled
1 => disable CLI
Definition: tapcli.c:143
vnet_main_t * vnet_main
convenience - vnet_main_t
Definition: tapcli.c:148
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:267
#define clib_unix_warning(format, args...)
Definition: error.h:68
a point 2 point interface
Definition: interface.h:289
#define vnet_buffer(b)
Definition: buffer.h:306
u8 * hwaddr_arg
Mac address.
Definition: tuntap.h:33
static u32 random_u32(u32 *seed)
32-bit random number generator
Definition: random.h:69
u8 * format_unformat_error(u8 *s, va_list *va)
Definition: unformat.c:91
u32 min_supported_packet_bytes
Definition: interface.h:451
static_always_inline void vnet_feature_start_device_input_x1(u32 sw_if_index, u32 *next0, vlib_buffer_t *b0)
Definition: feature.h:227
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:143
static vlib_thread_main_t * vlib_get_thread_main()
Definition: global_funcs.h:32
clib_error_t * tapcli_init(vlib_main_t *vm)
TAPCLI main init.
Definition: tapcli.c:1466
u8 data[0]
Packet data.
Definition: buffer.h:157
void(* os_punt_frame)(struct vlib_main_t *vm, struct vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: main.h:142
#define vec_foreach(var, vec)
Vector iterator.
clib_error_t * vnet_sw_interface_set_flags(vnet_main_t *vnm, u32 sw_if_index, u32 flags)
Definition: interface.c:546
Definition: file.h:50
u32 sw_if_index
For counters.
Definition: tapcli.c:62
static void vlib_set_trace_count(vlib_main_t *vm, vlib_node_runtime_t *rt, u32 count)
Definition: trace_funcs.h:159
#define TAP_MTU_MIN
Definition: tapcli.h:48
u32 flags
Definition: vhost-user.h:77
#define vec_validate_init_empty(V, I, INIT)
Make sure vector is long enough for given index and initialize empty space (no header, unspecified alignment)
Definition: vec.h:481
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:67
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:75
Struct for the tapcli interface.
Definition: tapcli.c:57
int vnet_tap_dump_ifs(tapcli_interface_details_t **out_tapids)
Dump TAP interfaces.
Definition: tapcli.c:745
void vlib_cli_output(vlib_main_t *vm, char *fmt,...)
Definition: cli.c:680
uword * pending_read_bitmap
Bitmap of tap interfaces with pending reads.
Definition: tapcli.c:131
u32 ip6_mask_width
(optional) ip6 mask width to set
Definition: tuntap.h:47
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:57
u32 orig_sw_if_index
original sw_if_index (renumber)
Definition: tuntap.h:53
ip6_address_t * ip6_address
(optional) ip6 address to set
Definition: tuntap.h:45
uword unformat(unformat_input_t *i, const char *fmt,...)
Definition: unformat.c:972
TAPCLI per thread struct.
Definition: tapcli.c:101
static void tapcli_set_interface_next_node(vnet_main_t *vnm, u32 hw_if_index, u32 node_index)
Setting the TAP interface&#39;s next processing node.
Definition: tapcli.c:681
Definition: defs.h:46
TAPCLI main state struct.
Definition: tapcli.c:114
static vlib_node_registration_t tapcli_rx_node
(constructor) VLIB_REGISTER_NODE (tapcli_rx_node)
Definition: tapcli.c:49
static uword unformat_check_input(unformat_input_t *i)
Definition: format.h:169
static clib_error_t * tap_connect_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
CLI function to connect TAP interface.
Definition: tapcli.c:1307