blob: 62bb228f04f3b0c91d9aa98b05f8b76147ecbb3f [file] [log] [blame]
Damjan Marion83243a02016-02-29 13:09:30 +01001/*
2 *------------------------------------------------------------------
3 * af_packet.c - linux kernel packet interface
4 *
5 * Copyright (c) 2016 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#include <linux/if_ether.h>
21#include <linux/if_packet.h>
Ray Kinsellac855b732017-04-21 12:24:43 +010022#include <dirent.h>
Ray Kinsella7bfa1192017-05-15 11:52:43 +010023#include <sys/stat.h>
24#include <sys/types.h>
25#include <fcntl.h>
Damjan Marion83243a02016-02-29 13:09:30 +010026
27#include <vlib/vlib.h>
28#include <vlib/unix/unix.h>
Damjan Marion3b64d632017-09-08 12:26:12 +020029#include <vlib/linux/sysfs.h>
Damjan Marion83243a02016-02-29 13:09:30 +010030#include <vnet/ip/ip.h>
31#include <vnet/ethernet/ethernet.h>
32
33#include <vnet/devices/af_packet/af_packet.h>
34
35#define AF_PACKET_DEBUG_SOCKET 0
36
37#define AF_PACKET_TX_FRAMES_PER_BLOCK 1024
38#define AF_PACKET_TX_FRAME_SIZE (2048 * 5)
39#define AF_PACKET_TX_BLOCK_NR 1
40#define AF_PACKET_TX_FRAME_NR (AF_PACKET_TX_BLOCK_NR * \
41 AF_PACKET_TX_FRAMES_PER_BLOCK)
42#define AF_PACKET_TX_BLOCK_SIZE (AF_PACKET_TX_FRAME_SIZE * \
43 AF_PACKET_TX_FRAMES_PER_BLOCK)
44
45#define AF_PACKET_RX_FRAMES_PER_BLOCK 1024
46#define AF_PACKET_RX_FRAME_SIZE (2048 * 5)
47#define AF_PACKET_RX_BLOCK_NR 1
48#define AF_PACKET_RX_FRAME_NR (AF_PACKET_RX_BLOCK_NR * \
49 AF_PACKET_RX_FRAMES_PER_BLOCK)
50#define AF_PACKET_RX_BLOCK_SIZE (AF_PACKET_RX_FRAME_SIZE * \
51 AF_PACKET_RX_FRAMES_PER_BLOCK)
52
53#if AF_PACKET_DEBUG_SOCKET == 1
54#define DBG_SOCK(args...) clib_warning(args);
55#else
56#define DBG_SOCK(args...)
57#endif
58
59/*defined in net/if.h but clashes with dpdk headers */
Damjan Marion00a9dca2016-08-17 17:05:46 +020060unsigned int if_nametoindex (const char *ifname);
Damjan Marion83243a02016-02-29 13:09:30 +010061
62typedef struct tpacket_req tpacket_req_t;
63
64static u32
Damjan Marion00a9dca2016-08-17 17:05:46 +020065af_packet_eth_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hi,
66 u32 flags)
Damjan Marion83243a02016-02-29 13:09:30 +010067{
Ray Kinsella7bfa1192017-05-15 11:52:43 +010068 clib_error_t *error;
69 u8 *s;
70 af_packet_main_t *apm = &af_packet_main;
71 af_packet_if_t *apif =
72 pool_elt_at_index (apm->interfaces, hi->dev_instance);
73
74 if (ETHERNET_INTERFACE_FLAG_MTU == (flags & ETHERNET_INTERFACE_FLAG_MTU))
75 {
76 s = format (0, "/sys/class/net/%s/mtu%c", apif->host_if_name, 0);
77
78 error = vlib_sysfs_write ((char *) s, "%d", hi->max_packet_bytes);
79 vec_free (s);
80
81 if (error)
82 {
83 clib_error_report (error);
84 return VNET_API_ERROR_SYSCALL_ERROR_1;
85 }
86 }
87
Damjan Marion83243a02016-02-29 13:09:30 +010088 return 0;
89}
90
Damjan Marion00a9dca2016-08-17 17:05:46 +020091static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +020092af_packet_fd_read_ready (clib_file_t * uf)
Damjan Marion83243a02016-02-29 13:09:30 +010093{
Damjan Marion00a9dca2016-08-17 17:05:46 +020094 af_packet_main_t *apm = &af_packet_main;
Damjan Marioneb743fa2017-03-20 16:34:15 +010095 vnet_main_t *vnm = vnet_get_main ();
Damjan Marion83243a02016-02-29 13:09:30 +010096 u32 idx = uf->private_data;
Damjan Marioneb743fa2017-03-20 16:34:15 +010097 af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, idx);
Damjan Marion83243a02016-02-29 13:09:30 +010098
Damjan Marion00a9dca2016-08-17 17:05:46 +020099 apm->pending_input_bitmap =
100 clib_bitmap_set (apm->pending_input_bitmap, idx, 1);
Damjan Marion83243a02016-02-29 13:09:30 +0100101
102 /* Schedule the rx node */
Damjan Marioneb743fa2017-03-20 16:34:15 +0100103 vnet_device_input_set_interrupt_pending (vnm, apif->hw_if_index, 0);
Damjan Marion83243a02016-02-29 13:09:30 +0100104
105 return 0;
106}
107
108static int
Ray Kinsellac855b732017-04-21 12:24:43 +0100109is_bridge (const u8 * host_if_name)
110{
111 u8 *s;
112 DIR *dir = NULL;
113
114 s = format (0, "/sys/class/net/%s/bridge%c", host_if_name, 0);
115 dir = opendir ((char *) s);
116 vec_free (s);
117
118 if (dir)
119 {
120 closedir (dir);
121 return 0;
122 }
123
124 return -1;
125}
126
127static int
128create_packet_v2_sock (int host_if_index, tpacket_req_t * rx_req,
Damjan Marion00a9dca2016-08-17 17:05:46 +0200129 tpacket_req_t * tx_req, int *fd, u8 ** ring)
Damjan Marion83243a02016-02-29 13:09:30 +0100130{
131 int ret, err;
132 struct sockaddr_ll sll;
Damjan Marion83243a02016-02-29 13:09:30 +0100133 int ver = TPACKET_V2;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200134 socklen_t req_sz = sizeof (struct tpacket_req);
Damjan Marion83243a02016-02-29 13:09:30 +0100135 u32 ring_sz = rx_req->tp_block_size * rx_req->tp_block_nr +
Damjan Marion00a9dca2016-08-17 17:05:46 +0200136 tx_req->tp_block_size * tx_req->tp_block_nr;
Damjan Marion83243a02016-02-29 13:09:30 +0100137
Damjan Marion00a9dca2016-08-17 17:05:46 +0200138 if ((*fd = socket (AF_PACKET, SOCK_RAW, htons (ETH_P_ALL))) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100139 {
Damjan Marion00a9dca2016-08-17 17:05:46 +0200140 DBG_SOCK ("Failed to create socket");
Damjan Marion83243a02016-02-29 13:09:30 +0100141 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
142 goto error;
143 }
144
Damjan Marion00a9dca2016-08-17 17:05:46 +0200145 if ((err =
146 setsockopt (*fd, SOL_PACKET, PACKET_VERSION, &ver, sizeof (ver))) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100147 {
Damjan Marion00a9dca2016-08-17 17:05:46 +0200148 DBG_SOCK ("Failed to set rx packet interface version");
Damjan Marion83243a02016-02-29 13:09:30 +0100149 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
150 goto error;
151 }
152
153 int opt = 1;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200154 if ((err =
155 setsockopt (*fd, SOL_PACKET, PACKET_LOSS, &opt, sizeof (opt))) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100156 {
Damjan Marion00a9dca2016-08-17 17:05:46 +0200157 DBG_SOCK ("Failed to set packet tx ring error handling option");
Damjan Marion83243a02016-02-29 13:09:30 +0100158 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
159 goto error;
160 }
161
Damjan Marion00a9dca2016-08-17 17:05:46 +0200162 if ((err =
163 setsockopt (*fd, SOL_PACKET, PACKET_RX_RING, rx_req, req_sz)) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100164 {
Damjan Marion00a9dca2016-08-17 17:05:46 +0200165 DBG_SOCK ("Failed to set packet rx ring options");
Damjan Marion83243a02016-02-29 13:09:30 +0100166 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
167 goto error;
168 }
169
Damjan Marion00a9dca2016-08-17 17:05:46 +0200170 if ((err =
171 setsockopt (*fd, SOL_PACKET, PACKET_TX_RING, tx_req, req_sz)) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100172 {
Damjan Marion00a9dca2016-08-17 17:05:46 +0200173 DBG_SOCK ("Failed to set packet rx ring options");
Damjan Marion83243a02016-02-29 13:09:30 +0100174 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
175 goto error;
176 }
177
Damjan Marion00a9dca2016-08-17 17:05:46 +0200178 *ring =
179 mmap (NULL, ring_sz, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_LOCKED, *fd,
180 0);
Damjan Marion83243a02016-02-29 13:09:30 +0100181 if (*ring == MAP_FAILED)
182 {
Damjan Marion00a9dca2016-08-17 17:05:46 +0200183 DBG_SOCK ("mmap failure");
Damjan Marion83243a02016-02-29 13:09:30 +0100184 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
185 goto error;
186 }
187
Damjan Marion00a9dca2016-08-17 17:05:46 +0200188 memset (&sll, 0, sizeof (sll));
Damjan Marion83243a02016-02-29 13:09:30 +0100189 sll.sll_family = PF_PACKET;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200190 sll.sll_protocol = htons (ETH_P_ALL);
Damjan Marion83243a02016-02-29 13:09:30 +0100191 sll.sll_ifindex = host_if_index;
192
Damjan Marion00a9dca2016-08-17 17:05:46 +0200193 if ((err = bind (*fd, (struct sockaddr *) &sll, sizeof (sll))) < 0)
Damjan Marion83243a02016-02-29 13:09:30 +0100194 {
Damjan Marion00a9dca2016-08-17 17:05:46 +0200195 DBG_SOCK ("Failed to bind rx packet socket (error %d)", err);
Damjan Marion83243a02016-02-29 13:09:30 +0100196 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
197 goto error;
198 }
199
200 return 0;
201error:
Dave Barach16ad6ae2016-07-28 17:55:30 -0400202 if (*fd >= 0)
Damjan Marion00a9dca2016-08-17 17:05:46 +0200203 close (*fd);
Peter Leidba76f22016-04-08 08:16:31 -0700204 *fd = -1;
Damjan Marion83243a02016-02-29 13:09:30 +0100205 return ret;
206}
207
208int
Damjan Marion00a9dca2016-08-17 17:05:46 +0200209af_packet_create_if (vlib_main_t * vm, u8 * host_if_name, u8 * hw_addr_set,
210 u32 * sw_if_index)
Damjan Marion83243a02016-02-29 13:09:30 +0100211{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200212 af_packet_main_t *apm = &af_packet_main;
Damjan Marion83243a02016-02-29 13:09:30 +0100213 int ret, fd = -1;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200214 struct tpacket_req *rx_req = 0;
215 struct tpacket_req *tx_req = 0;
216 u8 *ring = 0;
217 af_packet_if_t *apif = 0;
Damjan Marion83243a02016-02-29 13:09:30 +0100218 u8 hw_addr[6];
Damjan Marion00a9dca2016-08-17 17:05:46 +0200219 clib_error_t *error;
220 vnet_sw_interface_t *sw;
Damjan Marion44036902017-04-28 12:29:15 +0200221 vnet_hw_interface_t *hw;
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100222 vlib_thread_main_t *tm = vlib_get_thread_main ();
Damjan Marion00a9dca2016-08-17 17:05:46 +0200223 vnet_main_t *vnm = vnet_get_main ();
224 uword *p;
Damjan Marion83243a02016-02-29 13:09:30 +0100225 uword if_index;
Ivan Kellybfe737a2016-10-07 18:02:43 +0200226 u8 *host_if_name_dup = vec_dup (host_if_name);
Ray Kinsellac855b732017-04-21 12:24:43 +0100227 int host_if_index = -1;
Damjan Marion83243a02016-02-29 13:09:30 +0100228
229 p = mhash_get (&apm->if_index_by_host_if_name, host_if_name);
230 if (p)
231 {
232 return VNET_API_ERROR_SUBIF_ALREADY_EXISTS;
233 }
234
Damjan Marion00a9dca2016-08-17 17:05:46 +0200235 vec_validate (rx_req, 0);
Damjan Marion83243a02016-02-29 13:09:30 +0100236 rx_req->tp_block_size = AF_PACKET_RX_BLOCK_SIZE;
237 rx_req->tp_frame_size = AF_PACKET_RX_FRAME_SIZE;
238 rx_req->tp_block_nr = AF_PACKET_RX_BLOCK_NR;
239 rx_req->tp_frame_nr = AF_PACKET_RX_FRAME_NR;
240
Damjan Marion00a9dca2016-08-17 17:05:46 +0200241 vec_validate (tx_req, 0);
Damjan Marion83243a02016-02-29 13:09:30 +0100242 tx_req->tp_block_size = AF_PACKET_TX_BLOCK_SIZE;
243 tx_req->tp_frame_size = AF_PACKET_TX_FRAME_SIZE;
244 tx_req->tp_block_nr = AF_PACKET_TX_BLOCK_NR;
245 tx_req->tp_frame_nr = AF_PACKET_TX_FRAME_NR;
246
Ray Kinsellac855b732017-04-21 12:24:43 +0100247 host_if_index = if_nametoindex ((const char *) host_if_name);
248
249 if (!host_if_index)
250 {
251 DBG_SOCK ("Wrong host interface name");
252 return VNET_API_ERROR_INVALID_INTERFACE;
253 }
254
255 ret = create_packet_v2_sock (host_if_index, rx_req, tx_req, &fd, &ring);
Damjan Marion83243a02016-02-29 13:09:30 +0100256
257 if (ret != 0)
258 goto error;
259
Ray Kinsellac855b732017-04-21 12:24:43 +0100260 ret = is_bridge (host_if_name);
261
262 if (ret == 0) /* is a bridge, ignore state */
263 host_if_index = -1;
264
Damjan Marion83243a02016-02-29 13:09:30 +0100265 /* So far everything looks good, let's create interface */
Damjan Marion048ee2e2016-03-16 22:59:21 +0100266 pool_get (apm->interfaces, apif);
Damjan Marion83243a02016-02-29 13:09:30 +0100267 if_index = apif - apm->interfaces;
268
Ray Kinsellac855b732017-04-21 12:24:43 +0100269 apif->host_if_index = host_if_index;
Damjan Marion83243a02016-02-29 13:09:30 +0100270 apif->fd = fd;
271 apif->rx_ring = ring;
272 apif->tx_ring = ring + rx_req->tp_block_size * rx_req->tp_block_nr;
273 apif->rx_req = rx_req;
274 apif->tx_req = tx_req;
Ivan Kellybfe737a2016-10-07 18:02:43 +0200275 apif->host_if_name = host_if_name_dup;
Dave Barach13f3c452016-03-29 11:56:41 -0400276 apif->per_interface_next_index = ~0;
Peter Leidba76f22016-04-08 08:16:31 -0700277 apif->next_tx_frame = 0;
278 apif->next_rx_frame = 0;
Damjan Marion83243a02016-02-29 13:09:30 +0100279
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100280 if (tm->n_vlib_mains > 1)
Damjan Marion1927da22017-03-27 17:08:20 +0200281 clib_spinlock_init (&apif->lockp);
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100282
Damjan Marion83243a02016-02-29 13:09:30 +0100283 {
Damjan Marion56dd5432017-09-08 19:52:02 +0200284 clib_file_t template = { 0 };
Damjan Marion83243a02016-02-29 13:09:30 +0100285 template.read_function = af_packet_fd_read_ready;
286 template.file_descriptor = fd;
287 template.private_data = if_index;
288 template.flags = UNIX_FILE_EVENT_EDGE_TRIGGERED;
Damjan Marion56dd5432017-09-08 19:52:02 +0200289 apif->clib_file_index = clib_file_add (&file_main, &template);
Damjan Marion83243a02016-02-29 13:09:30 +0100290 }
291
292 /*use configured or generate random MAC address */
293 if (hw_addr_set)
Damjan Marion00a9dca2016-08-17 17:05:46 +0200294 clib_memcpy (hw_addr, hw_addr_set, 6);
Damjan Marion83243a02016-02-29 13:09:30 +0100295 else
296 {
Damjan Marion00a9dca2016-08-17 17:05:46 +0200297 f64 now = vlib_time_now (vm);
Damjan Marion83243a02016-02-29 13:09:30 +0100298 u32 rnd;
299 rnd = (u32) (now * 1e6);
300 rnd = random_u32 (&rnd);
301
Damjan Marion00a9dca2016-08-17 17:05:46 +0200302 clib_memcpy (hw_addr + 2, &rnd, sizeof (rnd));
Damjan Marion83243a02016-02-29 13:09:30 +0100303 hw_addr[0] = 2;
304 hw_addr[1] = 0xfe;
305 }
306
Damjan Marion00a9dca2016-08-17 17:05:46 +0200307 error = ethernet_register_interface (vnm, af_packet_device_class.index,
308 if_index, hw_addr, &apif->hw_if_index,
309 af_packet_eth_flag_change);
Damjan Marion83243a02016-02-29 13:09:30 +0100310
311 if (error)
312 {
Damjan Marion00a9dca2016-08-17 17:05:46 +0200313 memset (apif, 0, sizeof (*apif));
314 pool_put (apm->interfaces, apif);
Damjan Marion83243a02016-02-29 13:09:30 +0100315 clib_error_report (error);
316 ret = VNET_API_ERROR_SYSCALL_ERROR_1;
317 goto error;
318 }
319
320 sw = vnet_get_hw_sw_interface (vnm, apif->hw_if_index);
Damjan Marion44036902017-04-28 12:29:15 +0200321 hw = vnet_get_hw_interface (vnm, apif->hw_if_index);
Damjan Marion83243a02016-02-29 13:09:30 +0100322 apif->sw_if_index = sw->sw_if_index;
Damjan Marion44036902017-04-28 12:29:15 +0200323 vnet_hw_interface_set_input_node (vnm, apif->hw_if_index,
324 af_packet_input_node.index);
Damjan Marion83243a02016-02-29 13:09:30 +0100325
Damjan Marion44036902017-04-28 12:29:15 +0200326 vnet_hw_interface_assign_rx_thread (vnm, apif->hw_if_index, 0, /* queue */
327 ~0 /* any cpu */ );
328
329 hw->flags |= VNET_HW_INTERFACE_FLAG_SUPPORTS_INT_MODE;
Damjan Marion83243a02016-02-29 13:09:30 +0100330 vnet_hw_interface_set_flags (vnm, apif->hw_if_index,
331 VNET_HW_INTERFACE_FLAG_LINK_UP);
332
Damjan Marion44036902017-04-28 12:29:15 +0200333 vnet_hw_interface_set_rx_mode (vnm, apif->hw_if_index, 0,
334 VNET_HW_INTERFACE_RX_MODE_INTERRUPT);
335
Ivan Kellybfe737a2016-10-07 18:02:43 +0200336 mhash_set_mem (&apm->if_index_by_host_if_name, host_if_name_dup, &if_index,
337 0);
Pierre Pfister78ea9c22016-05-23 12:51:54 +0100338 if (sw_if_index)
339 *sw_if_index = apif->sw_if_index;
Mohsin KAZMIcf751ec2017-01-18 11:59:45 +0100340
Damjan Marion83243a02016-02-29 13:09:30 +0100341 return 0;
342
343error:
Ivan Kellybfe737a2016-10-07 18:02:43 +0200344 vec_free (host_if_name_dup);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200345 vec_free (rx_req);
346 vec_free (tx_req);
Damjan Marion83243a02016-02-29 13:09:30 +0100347 return ret;
348}
349
Peter Leidba76f22016-04-08 08:16:31 -0700350int
Damjan Marion00a9dca2016-08-17 17:05:46 +0200351af_packet_delete_if (vlib_main_t * vm, u8 * host_if_name)
Peter Leidba76f22016-04-08 08:16:31 -0700352{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200353 vnet_main_t *vnm = vnet_get_main ();
Peter Leidba76f22016-04-08 08:16:31 -0700354 af_packet_main_t *apm = &af_packet_main;
355 af_packet_if_t *apif;
356 uword *p;
357 uword if_index;
358 u32 ring_sz;
359
Damjan Marion00a9dca2016-08-17 17:05:46 +0200360 p = mhash_get (&apm->if_index_by_host_if_name, host_if_name);
361 if (p == NULL)
362 {
363 clib_warning ("Host interface %s does not exist", host_if_name);
364 return VNET_API_ERROR_SYSCALL_ERROR_1;
365 }
366 apif = pool_elt_at_index (apm->interfaces, p[0]);
Peter Leidba76f22016-04-08 08:16:31 -0700367 if_index = apif - apm->interfaces;
368
369 /* bring down the interface */
Damjan Marion00a9dca2016-08-17 17:05:46 +0200370 vnet_hw_interface_set_flags (vnm, apif->hw_if_index, 0);
Damjan Marion44036902017-04-28 12:29:15 +0200371 vnet_hw_interface_unassign_rx_thread (vnm, apif->hw_if_index, 0);
Peter Leidba76f22016-04-08 08:16:31 -0700372
373 /* clean up */
Damjan Marion56dd5432017-09-08 19:52:02 +0200374 if (apif->clib_file_index != ~0)
Damjan Marion00a9dca2016-08-17 17:05:46 +0200375 {
Damjan Marion56dd5432017-09-08 19:52:02 +0200376 clib_file_del (&file_main, file_main.file_pool + apif->clib_file_index);
377 apif->clib_file_index = ~0;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200378 }
Eyal Barif298ecf2016-09-19 18:47:39 +0300379 else
380 close (apif->fd);
381
Peter Leidba76f22016-04-08 08:16:31 -0700382 ring_sz = apif->rx_req->tp_block_size * apif->rx_req->tp_block_nr +
Damjan Marion00a9dca2016-08-17 17:05:46 +0200383 apif->tx_req->tp_block_size * apif->tx_req->tp_block_nr;
384 if (munmap (apif->rx_ring, ring_sz))
385 clib_warning ("Host interface %s could not free rx/tx ring",
386 host_if_name);
Peter Leidba76f22016-04-08 08:16:31 -0700387 apif->rx_ring = NULL;
388 apif->tx_ring = NULL;
Peter Leidba76f22016-04-08 08:16:31 -0700389 apif->fd = -1;
390
Damjan Marion00a9dca2016-08-17 17:05:46 +0200391 vec_free (apif->rx_req);
Peter Leidba76f22016-04-08 08:16:31 -0700392 apif->rx_req = NULL;
Damjan Marion00a9dca2016-08-17 17:05:46 +0200393 vec_free (apif->tx_req);
Peter Leidba76f22016-04-08 08:16:31 -0700394 apif->tx_req = NULL;
395
Damjan Marion00a9dca2016-08-17 17:05:46 +0200396 vec_free (apif->host_if_name);
Peter Leidba76f22016-04-08 08:16:31 -0700397 apif->host_if_name = NULL;
Ray Kinsellac855b732017-04-21 12:24:43 +0100398 apif->host_if_index = -1;
Peter Leidba76f22016-04-08 08:16:31 -0700399
Damjan Marion00a9dca2016-08-17 17:05:46 +0200400 mhash_unset (&apm->if_index_by_host_if_name, host_if_name, &if_index);
Peter Leidba76f22016-04-08 08:16:31 -0700401
Damjan Marion00a9dca2016-08-17 17:05:46 +0200402 ethernet_delete_interface (vnm, apif->hw_if_index);
Peter Leidba76f22016-04-08 08:16:31 -0700403
Damjan Marion00a9dca2016-08-17 17:05:46 +0200404 pool_put (apm->interfaces, apif);
Peter Leidba76f22016-04-08 08:16:31 -0700405
406 return 0;
407}
408
Damjan Marion83243a02016-02-29 13:09:30 +0100409static clib_error_t *
410af_packet_init (vlib_main_t * vm)
411{
Damjan Marion00a9dca2016-08-17 17:05:46 +0200412 af_packet_main_t *apm = &af_packet_main;
Damjan Marion553f6bd2016-09-07 11:54:22 +0200413 vlib_thread_main_t *tm = vlib_get_thread_main ();
Damjan Marion83243a02016-02-29 13:09:30 +0100414
415 memset (apm, 0, sizeof (af_packet_main_t));
416
417 mhash_init_vec_string (&apm->if_index_by_host_if_name, sizeof (uword));
418
Damjan Marion553f6bd2016-09-07 11:54:22 +0200419 vec_validate_aligned (apm->rx_buffers, tm->n_vlib_mains - 1,
420 CLIB_CACHE_LINE_BYTES);
421
Damjan Marion83243a02016-02-29 13:09:30 +0100422 return 0;
423}
424
425VLIB_INIT_FUNCTION (af_packet_init);
Damjan Marion00a9dca2016-08-17 17:05:46 +0200426
427/*
428 * fd.io coding-style-patch-verification: ON
429 *
430 * Local Variables:
431 * eval: (c-set-style "gnu")
432 * End:
433 */