FD.io VPP  v19.04-6-g6f05f72
Vector Packet Processing
tap.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2017 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17 
18 #define _GNU_SOURCE
19 #include <sys/types.h>
20 #include <sys/stat.h>
21 #include <fcntl.h>
22 #include <net/if.h>
23 #include <linux/if_tun.h>
24 #include <sys/ioctl.h>
25 #include <linux/virtio_net.h>
26 #include <linux/vhost.h>
27 #include <sys/eventfd.h>
28 #include <sched.h>
29 
30 #include <linux/netlink.h>
31 #include <linux/rtnetlink.h>
32 
33 #include <vlib/vlib.h>
34 #include <vlib/unix/unix.h>
35 #include <vnet/ethernet/ethernet.h>
36 #include <vnet/ip/ip4_packet.h>
37 #include <vnet/ip/ip6_packet.h>
38 #include <vnet/devices/netlink.h>
40 #include <vnet/devices/tap/tap.h>
41 
43 
44 #define _IOCTL(fd,a,...) \
45  if (ioctl (fd, a, __VA_ARGS__) < 0) \
46  { \
47  err = clib_error_return_unix (0, "ioctl(" #a ")"); \
48  goto error; \
49  }
50 
51 static u32
53  u32 flags)
54 {
55  /* nothing for now */
56  //TODO On MTU change call vnet_netlink_set_if_mtu
57  return 0;
58 }
59 
60 static int
61 open_netns_fd (char *netns)
62 {
63  u8 *s = 0;
64  int fd;
65 
66  if (strncmp (netns, "pid:", 4) == 0)
67  s = format (0, "/proc/%u/ns/net%c", atoi (netns + 4), 0);
68  else if (netns[0] == '/')
69  s = format (0, "%s%c", netns, 0);
70  else
71  s = format (0, "/var/run/netns/%s%c", netns, 0);
72 
73  fd = open ((char *) s, O_RDONLY);
74  vec_free (s);
75  return fd;
76 }
77 
78 #define TAP_MAX_INSTANCE 1024
79 
80 void
82 {
83  vnet_main_t *vnm = vnet_get_main ();
85  virtio_main_t *vim = &virtio_main;
86  tap_main_t *tm = &tap_main;
89  int i;
90  int old_netns_fd = -1;
91  struct ifreq ifr;
92  size_t hdrsz;
93  struct vhost_memory *vhost_mem = 0;
94  virtio_if_t *vif = 0;
95  clib_error_t *err = 0;
96  int fd = -1;
97 
98  if (args->id != ~0)
99  {
100  if (clib_bitmap_get (tm->tap_ids, args->id))
101  {
102  args->rv = VNET_API_ERROR_INVALID_INTERFACE;
103  args->error = clib_error_return (0, "interface already exists");
104  return;
105  }
106  }
107  else
108  {
109  args->id = clib_bitmap_first_clear (tm->tap_ids);
110  }
111 
112  if (args->id > TAP_MAX_INSTANCE)
113  {
114  args->rv = VNET_API_ERROR_UNSPECIFIED;
115  args->error = clib_error_return (0, "cannot find free interface id");
116  return;
117  }
118 
119  clib_memset (&ifr, 0, sizeof (ifr));
120  pool_get (vim->interfaces, vif);
121  vif->dev_instance = vif - vim->interfaces;
122  vif->tap_fd = -1;
123  vif->id = args->id;
124 
125  if ((vif->fd = open ("/dev/vhost-net", O_RDWR | O_NONBLOCK)) < 0)
126  {
127  args->rv = VNET_API_ERROR_SYSCALL_ERROR_1;
128  args->error = clib_error_return_unix (0, "open '/dev/vhost-net'");
129  goto error;
130  }
131 
132  _IOCTL (vif->fd, VHOST_GET_FEATURES, &vif->remote_features);
133 
134  if ((vif->remote_features & VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF)) == 0)
135  {
136  args->rv = VNET_API_ERROR_UNSUPPORTED;
137  args->error = clib_error_return (0, "vhost-net backend doesn't support "
138  "VIRTIO_NET_F_MRG_RXBUF feature");
139  goto error;
140  }
141 
142  if ((vif->remote_features & VIRTIO_FEATURE (VIRTIO_RING_F_INDIRECT_DESC)) ==
143  0)
144  {
145  args->rv = VNET_API_ERROR_UNSUPPORTED;
146  args->error = clib_error_return (0, "vhost-net backend doesn't support "
147  "VIRTIO_RING_F_INDIRECT_DESC feature");
148  goto error;
149  }
150 
151  if ((vif->remote_features & VIRTIO_FEATURE (VIRTIO_F_VERSION_1)) == 0)
152  {
153  args->rv = VNET_API_ERROR_UNSUPPORTED;
154  args->error = clib_error_return (0, "vhost-net backend doesn't support "
155  "VIRTIO_F_VERSION_1 features");
156  goto error;
157  }
158 
159  vif->features |= VIRTIO_FEATURE (VIRTIO_NET_F_MRG_RXBUF);
160  vif->features |= VIRTIO_FEATURE (VIRTIO_F_VERSION_1);
161  vif->features |= VIRTIO_FEATURE (VIRTIO_RING_F_INDIRECT_DESC);
162 
164 
165  _IOCTL (vif->fd, VHOST_SET_FEATURES, &vif->features);
166 
167  if ((vif->tap_fd = open ("/dev/net/tun", O_RDWR | O_NONBLOCK)) < 0)
168  {
169  args->rv = VNET_API_ERROR_SYSCALL_ERROR_2;
170  args->error = clib_error_return_unix (0, "open '/dev/net/tun'");
171  goto error;
172  }
173 
174  ifr.ifr_flags = IFF_TAP | IFF_NO_PI | IFF_ONE_QUEUE | IFF_VNET_HDR;
175  _IOCTL (vif->tap_fd, TUNSETIFF, (void *) &ifr);
176  vif->ifindex = if_nametoindex (ifr.ifr_ifrn.ifrn_name);
177 
178  if (!args->host_if_name)
179  args->host_if_name = (u8 *) ifr.ifr_ifrn.ifrn_name;
180 
181  unsigned int offload = 0;
182  hdrsz = sizeof (struct virtio_net_hdr_v1);
183  if (args->tap_flags & TAP_FLAG_GSO)
184  {
185  offload = TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6;
186  vif->gso_enabled = 1;
187  }
188  else
189  {
190  vif->gso_enabled = 0;
191  }
192 
193  _IOCTL (vif->tap_fd, TUNSETOFFLOAD, offload);
194  _IOCTL (vif->tap_fd, TUNSETVNETHDRSZ, &hdrsz);
195  _IOCTL (vif->fd, VHOST_SET_OWNER, 0);
196 
197  /* if namespace is specified, all further netlink messages should be excuted
198  after we change our net namespace */
199  if (args->host_namespace)
200  {
201  old_netns_fd = open ("/proc/self/ns/net", O_RDONLY);
202  if ((fd = open_netns_fd ((char *) args->host_namespace)) == -1)
203  {
204  args->rv = VNET_API_ERROR_SYSCALL_ERROR_2;
205  args->error = clib_error_return_unix (0, "open_netns_fd '%s'",
206  args->host_namespace);
207  goto error;
208  }
209  args->error = vnet_netlink_set_link_netns (vif->ifindex, fd,
210  (char *) args->host_if_name);
211  if (args->error)
212  {
213  args->rv = VNET_API_ERROR_NETLINK_ERROR;
214  goto error;
215  }
216  if (setns (fd, CLONE_NEWNET) == -1)
217  {
218  args->rv = VNET_API_ERROR_SYSCALL_ERROR_3;
219  args->error = clib_error_return_unix (0, "setns '%s'",
220  args->host_namespace);
221  goto error;
222  }
223  if ((vif->ifindex = if_nametoindex ((char *) args->host_if_name)) == 0)
224  {
225  args->rv = VNET_API_ERROR_SYSCALL_ERROR_3;
226  args->error = clib_error_return_unix (0, "if_nametoindex '%s'",
227  args->host_if_name);
228  goto error;
229  }
230  }
231  else
232  {
233  if (args->host_if_name)
234  {
236  (char *)
237  args->host_if_name);
238  if (args->error)
239  {
240  args->rv = VNET_API_ERROR_NETLINK_ERROR;
241  goto error;
242  }
243  }
244  }
245 
247  {
249  args->host_mac_addr);
250  if (args->error)
251  {
252  args->rv = VNET_API_ERROR_NETLINK_ERROR;
253  goto error;
254  }
255  }
256 
257  if (args->host_bridge)
258  {
260  (char *) args->host_bridge);
261  if (args->error)
262  {
263  args->rv = VNET_API_ERROR_NETLINK_ERROR;
264  goto error;
265  }
266  }
267 
268 
269  if (args->host_ip4_prefix_len)
270  {
272  &args->host_ip4_addr,
273  args->host_ip4_prefix_len);
274  if (args->error)
275  {
276  args->rv = VNET_API_ERROR_NETLINK_ERROR;
277  goto error;
278  }
279  }
280 
281  if (args->host_ip6_prefix_len)
282  {
284  &args->host_ip6_addr,
285  args->host_ip6_prefix_len);
286  if (args->error)
287  {
288  args->rv = VNET_API_ERROR_NETLINK_ERROR;
289  goto error;
290  }
291  }
292 
293  args->error = vnet_netlink_set_link_state (vif->ifindex, 1 /* UP */ );
294  if (args->error)
295  {
296  args->rv = VNET_API_ERROR_NETLINK_ERROR;
297  goto error;
298  }
299 
300  if (args->host_ip4_gw_set)
301  {
302  args->error = vnet_netlink_add_ip4_route (0, 0, &args->host_ip4_gw);
303  if (args->error)
304  {
305  args->rv = VNET_API_ERROR_NETLINK_ERROR;
306  goto error;
307  }
308  }
309 
310  if (args->host_ip6_gw_set)
311  {
312  args->error = vnet_netlink_add_ip6_route (0, 0, &args->host_ip6_gw);
313  if (args->error)
314  {
315  args->rv = VNET_API_ERROR_NETLINK_ERROR;
316  goto error;
317  }
318  }
319 
320  /* switch back to old net namespace */
321  if (args->host_namespace)
322  {
323  if (setns (old_netns_fd, CLONE_NEWNET) == -1)
324  {
325  args->rv = VNET_API_ERROR_SYSCALL_ERROR_2;
326  args->error = clib_error_return_unix (0, "setns '%s'",
327  args->host_namespace);
328  goto error;
329  }
330  }
331 
332  /* Set vhost memory table */
333  i = sizeof (struct vhost_memory) + sizeof (struct vhost_memory_region);
334  vhost_mem = clib_mem_alloc (i);
335  clib_memset (vhost_mem, 0, i);
336  vhost_mem->nregions = 1;
337  vhost_mem->regions[0].memory_size = (1ULL << 47) - 4096;
338  _IOCTL (vif->fd, VHOST_SET_MEM_TABLE, vhost_mem);
339 
340  if ((args->error =
341  virtio_vring_init (vm, vif, RX_QUEUE (0), args->rx_ring_sz)))
342  {
343  args->rv = VNET_API_ERROR_INIT_FAILED;
344  goto error;
345  }
346  vif->num_rxqs = 1;
347 
348  if ((args->error =
349  virtio_vring_init (vm, vif, TX_QUEUE (0), args->tx_ring_sz)))
350  {
351  args->rv = VNET_API_ERROR_INIT_FAILED;
352  goto error;
353  }
354  vif->num_txqs = 1;
355 
356  if (!args->mac_addr_set)
358 
359  clib_memcpy (vif->mac_addr, args->mac_addr, 6);
360 
361  vif->host_if_name = args->host_if_name;
362  args->host_if_name = 0;
363  vif->net_ns = args->host_namespace;
364  args->host_namespace = 0;
365  vif->host_bridge = args->host_bridge;
366  args->host_bridge = 0;
367  clib_memcpy (vif->host_mac_addr, args->host_mac_addr, 6);
370  if (args->host_ip4_prefix_len)
371  clib_memcpy (&vif->host_ip4_addr, &args->host_ip4_addr, 4);
372  if (args->host_ip6_prefix_len)
373  clib_memcpy (&vif->host_ip6_addr, &args->host_ip6_addr, 16);
374 
375  vif->type = VIRTIO_IF_TYPE_TAP;
377  vif->dev_instance,
378  vif->mac_addr,
379  &vif->hw_if_index,
381  if (args->error)
382  {
383  args->rv = VNET_API_ERROR_INVALID_REGISTRATION;
384  goto error;
385  }
386 
387  tm->tap_ids = clib_bitmap_set (tm->tap_ids, vif->id, 1);
388  sw = vnet_get_hw_sw_interface (vnm, vif->hw_if_index);
389  vif->sw_if_index = sw->sw_if_index;
390  args->sw_if_index = vif->sw_if_index;
391  hw = vnet_get_hw_interface (vnm, vif->hw_if_index);
393  if (args->tap_flags & TAP_FLAG_GSO)
394  {
397  }
399  virtio_input_node.index);
403  vif->per_interface_next_index = ~0;
404  virtio_vring_set_numa_node (vm, vif, RX_QUEUE (0));
405  vif->flags |= VIRTIO_IF_FLAG_ADMIN_UP;
408  vif->cxq_vring = NULL;
409 
410  if (thm->n_vlib_mains > 1)
411  clib_spinlock_init (&vif->lockp);
412  goto done;
413 
414 error:
415  if (err)
416  {
417  ASSERT (args->error == 0);
418  args->error = err;
419  args->rv = VNET_API_ERROR_SYSCALL_ERROR_3;
420  }
421  if (vif->tap_fd != -1)
422  close (vif->tap_fd);
423  if (vif->fd != -1)
424  close (vif->fd);
426  RX_QUEUE (i));
428  TX_QUEUE (i));
429  vec_free (vif->rxq_vrings);
430  vec_free (vif->txq_vrings);
431  clib_memset (vif, 0, sizeof (virtio_if_t));
432  pool_put (vim->interfaces, vif);
433 
434 done:
435  if (vhost_mem)
436  clib_mem_free (vhost_mem);
437  if (old_netns_fd != -1)
438  close (old_netns_fd);
439  if (fd != -1)
440  close (fd);
441 }
442 
443 int
445 {
446  vnet_main_t *vnm = vnet_get_main ();
447  virtio_main_t *mm = &virtio_main;
448  tap_main_t *tm = &tap_main;
449  int i;
450  virtio_if_t *vif;
452 
453  hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
454  if (hw == NULL || virtio_device_class.index != hw->dev_class_index)
455  return VNET_API_ERROR_INVALID_SW_IF_INDEX;
456 
457  vif = pool_elt_at_index (mm->interfaces, hw->dev_instance);
458 
459  if (vif->type != VIRTIO_IF_TYPE_TAP)
460  return VNET_API_ERROR_INVALID_INTERFACE;
461 
462  /* decrement if this was a GSO interface */
465 
466  /* bring down the interface */
470 
472  vif->hw_if_index = ~0;
473 
474  if (vif->tap_fd != -1)
475  close (vif->tap_fd);
476  if (vif->fd != -1)
477  close (vif->fd);
478 
480  RX_QUEUE (i));
482  TX_QUEUE (i));
483  vec_free (vif->rxq_vrings);
484  vec_free (vif->txq_vrings);
485 
486  tm->tap_ids = clib_bitmap_set (tm->tap_ids, vif->id, 0);
487  clib_spinlock_free (&vif->lockp);
488  clib_memset (vif, 0, sizeof (*vif));
489  pool_put (mm->interfaces, vif);
490 
491  return 0;
492 }
493 
494 int
496 {
497  vnet_main_t *vnm = vnet_get_main ();
498  virtio_main_t *mm = &virtio_main;
499  virtio_if_t *vif;
500  vnet_hw_interface_t *hw = vnet_get_sup_hw_interface (vnm, sw_if_index);
501  clib_error_t *err = 0;
502 
503  if (hw == NULL || virtio_device_class.index != hw->dev_class_index)
504  return VNET_API_ERROR_INVALID_SW_IF_INDEX;
505 
506  vif = pool_elt_at_index (mm->interfaces, hw->dev_instance);
507 
508  const unsigned int gso_on = TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6;
509  const unsigned int gso_off = 0;
510  unsigned int offload = enable_disable ? gso_on : gso_off;
511  _IOCTL (vif->tap_fd, TUNSETOFFLOAD, offload);
512  vif->gso_enabled = enable_disable ? 1 : 0;
513  if (enable_disable)
514  {
516  {
519  }
520  }
521  else
522  {
524  {
527  }
528  }
529 
530 error:
531  if (err)
532  {
533  clib_warning ("Error %s gso on sw_if_index %d",
534  enable_disable ? "enabling" : "disabling", sw_if_index);
535  return VNET_API_ERROR_SYSCALL_ERROR_3;
536  }
537  return 0;
538 }
539 
540 int
542 {
543  vnet_main_t *vnm = vnet_get_main ();
544  virtio_main_t *mm = &virtio_main;
545  virtio_if_t *vif;
546  virtio_vring_t *vring;
548  tap_interface_details_t *r_tapids = NULL;
549  tap_interface_details_t *tapid = NULL;
550 
551  /* *INDENT-OFF* */
552  pool_foreach (vif, mm->interfaces,
553  if (vif->type != VIRTIO_IF_TYPE_TAP)
554  continue;
555  vec_add2(r_tapids, tapid, 1);
556  clib_memset (tapid, 0, sizeof (*tapid));
557  tapid->id = vif->id;
558  tapid->sw_if_index = vif->sw_if_index;
559  hi = vnet_get_hw_interface (vnm, vif->hw_if_index);
560  clib_memcpy(tapid->dev_name, hi->name,
561  MIN (ARRAY_LEN (tapid->dev_name) - 1,
562  strlen ((const char *) hi->name)));
563  vring = vec_elt_at_index (vif->rxq_vrings, RX_QUEUE_ACCESS(0));
564  tapid->rx_ring_sz = vring->size;
565  vring = vec_elt_at_index (vif->txq_vrings, TX_QUEUE_ACCESS(0));
566  tapid->tx_ring_sz = vring->size;
567  clib_memcpy(tapid->host_mac_addr, vif->host_mac_addr, 6);
568  if (vif->host_if_name)
569  {
571  MIN (ARRAY_LEN (tapid->host_if_name) - 1,
572  strlen ((const char *) vif->host_if_name)));
573  }
574  if (vif->net_ns)
575  {
576  clib_memcpy(tapid->host_namespace, vif->net_ns,
577  MIN (ARRAY_LEN (tapid->host_namespace) - 1,
578  strlen ((const char *) vif->net_ns)));
579  }
580  if (vif->host_bridge)
581  {
582  clib_memcpy(tapid->host_bridge, vif->host_bridge,
583  MIN (ARRAY_LEN (tapid->host_bridge) - 1,
584  strlen ((const char *) vif->host_bridge)));
585  }
586  if (vif->host_ip4_prefix_len)
587  clib_memcpy(tapid->host_ip4_addr, &vif->host_ip4_addr, 4);
589  if (vif->host_ip6_prefix_len)
590  clib_memcpy(tapid->host_ip6_addr, &vif->host_ip6_addr, 16);
592  );
593  /* *INDENT-ON* */
594 
595  *out_tapids = r_tapids;
596 
597  return 0;
598 }
599 
600 static clib_error_t *
602 {
603  tap_main_t *tm = &tap_main;
604  clib_error_t *error = 0;
605 
606  tm->log_default = vlib_log_register_class ("tap", 0);
607  vlib_log_debug (tm->log_default, "initialized");
608 
609  return error;
610 }
611 
613 
614 /*
615  * fd.io coding-style-patch-verification: ON
616  *
617  * Local Variables:
618  * eval: (c-set-style "gnu")
619  * End:
620  */
u32 per_interface_next_index
Definition: virtio.h:152
vlib_log_class_t vlib_log_register_class(char *class, char *subclass)
Definition: log.c:227
u32 sw_if_index
Definition: ipsec_gre.api:37
vmrglw vmrglh hi
#define vec_foreach_index(var, v)
Iterate over vector indices.
uword * tap_ids
Definition: tap.h:77
#define TAP_FLAG_GSO
Definition: tap.h:33
vlib_node_registration_t virtio_input_node
(constructor) VLIB_REGISTER_NODE (virtio_input_node)
Definition: node.c:384
void virtio_set_net_hdr_size(virtio_if_t *vif)
Definition: virtio.c:244
virtio_if_t * interfaces
Definition: virtio.h:193
u32 flags
Definition: vhost_user.h:115
static u32 virtio_eth_flag_change(vnet_main_t *vnm, vnet_hw_interface_t *hi, u32 flags)
Definition: tap.c:52
vlib_log_class_t log_default
Definition: tap.h:74
ip4_address_t host_ip4_addr
Definition: virtio.h:179
u8 host_if_name[64]
Definition: tap.h:62
u8 host_namespace[64]
Definition: tap.h:63
ip4_address_t host_ip4_addr
Definition: tap.h:38
void ethernet_delete_interface(vnet_main_t *vnm, u32 hw_if_index)
Definition: interface.c:324
vnet_main_t * vnet_get_main(void)
Definition: misc.c:47
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
int tap_gso_enable_disable(vlib_main_t *vm, u32 sw_if_index, int enable_disable)
Definition: tap.c:495
vnet_interface_main_t interface_main
Definition: vnet.h:56
int gso_enabled
Definition: virtio.h:183
u32 dev_instance
Definition: virtio.h:141
#define NULL
Definition: clib.h:58
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
u8 host_ip6_prefix_len
Definition: tap.h:43
vnet_device_class_t virtio_device_class
#define vec_add2(V, P, N)
Add N elements to end of vector V, return pointer to new elements in P.
Definition: vec.h:560
int i
void virtio_vring_set_numa_node(vlib_main_t *vm, virtio_if_t *vif, u32 idx)
Definition: virtio.c:228
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
clib_memset(h->entries, 0, sizeof(h->entries[0])*entries)
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:424
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:236
int tap_dump_ifs(tap_interface_details_t **out_tapids)
Definition: tap.c:541
u8 host_ip4_gw_set
Definition: tap.h:41
unsigned char u8
Definition: types.h:56
clib_error_t * virtio_vring_free_tx(vlib_main_t *vm, virtio_if_t *vif, u32 idx)
Definition: virtio.c:204
static void clib_spinlock_free(clib_spinlock_t *p)
Definition: lock.h:64
static vnet_sw_interface_t * vnet_get_hw_sw_interface(vnet_main_t *vnm, u32 hw_if_index)
#define clib_memcpy(d, s, n)
Definition: string.h:180
u8 host_bridge[64]
Definition: tap.h:64
u8 host_ip6_addr[16]
Definition: tap.h:67
u64 features
Definition: virtio.h:165
u32 hw_if_index
Definition: virtio.h:142
u8 host_mac_addr[6]
Definition: tap.h:61
u8 host_ip6_prefix_len
Definition: virtio.h:182
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:493
#define TX_QUEUE_ACCESS(X)
Definition: virtio.h:80
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:163
u8 * host_bridge
Definition: virtio.h:177
int ifindex
Definition: virtio.h:184
vnet_hw_interface_flags_t flags
Definition: interface.h:494
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
int tap_delete_if(vlib_main_t *vm, u32 sw_if_index)
Definition: tap.c:444
#define clib_error_return(e, args...)
Definition: error.h:99
u8 host_mac_addr[6]
Definition: tap.h:36
unsigned int u32
Definition: types.h:88
#define vlib_log_debug(...)
Definition: log.h:52
#define MIN(x, y)
Definition: node.h:31
u32 id
Definition: virtio.h:149
static void clib_spinlock_init(clib_spinlock_t *p)
Definition: lock.h:57
u16 num_txqs
Definition: virtio.h:172
u8 host_ip4_addr[4]
Definition: tap.h:65
#define TX_QUEUE(X)
Definition: virtio.h:78
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:514
int tap_fd
Definition: virtio.h:160
#define clib_error_return_unix(e, args...)
Definition: error.h:102
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:286
ip4_address_t host_ip4_gw
Definition: tap.h:40
clib_spinlock_t lockp
Definition: virtio.h:139
ip6_address_t host_ip6_addr
Definition: tap.h:42
u8 host_ip4_prefix_len
Definition: tap.h:39
u16 num_rxqs
Definition: virtio.h:171
virtio_vring_t * rxq_vrings
Definition: virtio.h:163
vlib_main_t * vm
Definition: buffer.c:312
#define TAP_MAX_INSTANCE
Definition: tap.c:78
static int open_netns_fd(char *netns)
Definition: tap.c:61
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:341
ip6_address_t host_ip6_addr
Definition: virtio.h:181
#define clib_warning(format, args...)
Definition: error.h:59
u8 * net_ns
Definition: virtio.h:176
u8 mac_addr[6]
Definition: virtio.h:174
u32 flags
Definition: virtio.h:138
#define ARRAY_LEN(x)
Definition: clib.h:62
static uword clib_bitmap_get(uword *ai, uword i)
Gets the ith bit value from a bitmap.
Definition: bitmap.h:197
u8 * host_bridge
Definition: tap.h:37
virtio_if_type_t type
Definition: virtio.h:146
#define ASSERT(truth)
void vnet_hw_interface_assign_rx_thread(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id, uword thread_index)
Definition: devices.c:139
u64 remote_features
Definition: virtio.h:165
ip6_address_t host_ip6_gw
Definition: tap.h:44
#define VIRTIO_FEATURE(X)
Definition: virtio.h:76
clib_error_t * virtio_vring_init(vlib_main_t *vm, virtio_if_t *vif, u16 idx, u16 sz)
Definition: virtio.c:65
u8 * host_if_name
Definition: tap.h:35
u8 host_mac_addr[6]
Definition: virtio.h:178
static void clib_mem_free(void *p)
Definition: mem.h:205
unsigned int if_nametoindex(const char *ifname)
static void * clib_mem_alloc(uword size)
Definition: mem.h:132
virtio_main_t virtio_main
Definition: virtio.c:37
u8 host_ip6_gw_set
Definition: tap.h:45
void tap_create_if(vlib_main_t *vm, tap_create_if_args_t *args)
Definition: tap.c:81
#define RX_QUEUE_ACCESS(X)
Definition: virtio.h:81
tap_main_t tap_main
Definition: tap.c:42
static void ethernet_mac_address_generate(u8 *mac)
Definition: mac_address.h:74
clib_error_t * ethernet_register_interface(vnet_main_t *vnm, u32 dev_class_index, u32 dev_instance, const u8 *address, u32 *hw_if_index_return, ethernet_flag_change_function_t flag_change)
Definition: interface.c:278
clib_error_t * vnet_hw_interface_set_flags(vnet_main_t *vnm, u32 hw_if_index, vnet_hw_interface_flags_t flags)
Definition: interface.c:504
int fd
Definition: virtio.h:155
u8 mac_addr[6]
Definition: tap.h:29
Definition: tap.h:71
clib_error_t * error
Definition: tap.h:49
u8 host_ip4_prefix_len
Definition: virtio.h:180
int vnet_hw_interface_unassign_rx_thread(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id)
Definition: devices.c:188
u32 sw_if_index
Definition: virtio.h:143
virtio_vring_t * cxq_vring
Definition: virtio.h:185
static int ethernet_mac_address_is_zero(const u8 *mac)
Definition: mac_address.h:68
clib_error_t * virtio_vring_free_rx(vlib_main_t *vm, virtio_if_t *vif, u32 idx)
Definition: virtio.c:181
TAP interface details struct.
Definition: tap.h:53
clib_error_t * vnet_sw_interface_set_flags(vnet_main_t *vnm, u32 sw_if_index, vnet_sw_interface_flags_t flags)
Definition: interface.c:513
static vlib_thread_main_t * vlib_get_thread_main()
Definition: global_funcs.h:32
int vnet_hw_interface_set_rx_mode(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id, vnet_hw_interface_rx_mode mode)
Definition: devices.c:253
u8 * host_namespace
Definition: tap.h:34
static uword clib_bitmap_first_clear(uword *ai)
Return the lowest numbered clear bit in a bitmap.
Definition: bitmap.h:445
#define RX_QUEUE(X)
Definition: virtio.h:79
static void vnet_hw_interface_set_input_node(vnet_main_t *vnm, u32 hw_if_index, u32 node_index)
Definition: devices.h:79
virtio_vring_t * txq_vrings
Definition: virtio.h:164
static clib_error_t * tap_init(vlib_main_t *vm)
Definition: tap.c:601
u8 * host_if_name
Definition: virtio.h:175