af_packet: reflect admin device state on host
[vpp.git] / src / vnet / devices / af_packet / af_packet.c
1 /*
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>
22 #include <dirent.h>
23
24 #include <vlib/vlib.h>
25 #include <vlib/unix/unix.h>
26 #include <vnet/ip/ip.h>
27 #include <vnet/ethernet/ethernet.h>
28
29 #include <vnet/devices/af_packet/af_packet.h>
30
31 #define AF_PACKET_DEBUG_SOCKET          0
32
33 #define AF_PACKET_TX_FRAMES_PER_BLOCK   1024
34 #define AF_PACKET_TX_FRAME_SIZE         (2048 * 5)
35 #define AF_PACKET_TX_BLOCK_NR           1
36 #define AF_PACKET_TX_FRAME_NR           (AF_PACKET_TX_BLOCK_NR * \
37                                          AF_PACKET_TX_FRAMES_PER_BLOCK)
38 #define AF_PACKET_TX_BLOCK_SIZE         (AF_PACKET_TX_FRAME_SIZE * \
39                                          AF_PACKET_TX_FRAMES_PER_BLOCK)
40
41 #define AF_PACKET_RX_FRAMES_PER_BLOCK   1024
42 #define AF_PACKET_RX_FRAME_SIZE         (2048 * 5)
43 #define AF_PACKET_RX_BLOCK_NR           1
44 #define AF_PACKET_RX_FRAME_NR           (AF_PACKET_RX_BLOCK_NR * \
45                                          AF_PACKET_RX_FRAMES_PER_BLOCK)
46 #define AF_PACKET_RX_BLOCK_SIZE         (AF_PACKET_RX_FRAME_SIZE * \
47                                          AF_PACKET_RX_FRAMES_PER_BLOCK)
48
49 #if AF_PACKET_DEBUG_SOCKET == 1
50 #define DBG_SOCK(args...) clib_warning(args);
51 #else
52 #define DBG_SOCK(args...)
53 #endif
54
55 /*defined in net/if.h but clashes with dpdk headers */
56 unsigned int if_nametoindex (const char *ifname);
57
58 typedef struct tpacket_req tpacket_req_t;
59
60 static u32
61 af_packet_eth_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hi,
62                            u32 flags)
63 {
64   /* nothing for now */
65   return 0;
66 }
67
68 static clib_error_t *
69 af_packet_fd_read_ready (unix_file_t * uf)
70 {
71   af_packet_main_t *apm = &af_packet_main;
72   vnet_main_t *vnm = vnet_get_main ();
73   u32 idx = uf->private_data;
74   af_packet_if_t *apif = pool_elt_at_index (apm->interfaces, idx);
75
76   apm->pending_input_bitmap =
77     clib_bitmap_set (apm->pending_input_bitmap, idx, 1);
78
79   /* Schedule the rx node */
80   vnet_device_input_set_interrupt_pending (vnm, apif->hw_if_index, 0);
81
82   return 0;
83 }
84
85 static int
86 is_bridge (const u8 * host_if_name)
87 {
88   u8 *s;
89   DIR *dir = NULL;
90
91   s = format (0, "/sys/class/net/%s/bridge%c", host_if_name, 0);
92   dir = opendir ((char *) s);
93   vec_free (s);
94
95   if (dir)
96     {
97       closedir (dir);
98       return 0;
99     }
100
101   return -1;
102 }
103
104 static int
105 create_packet_v2_sock (int host_if_index, tpacket_req_t * rx_req,
106                        tpacket_req_t * tx_req, int *fd, u8 ** ring)
107 {
108   int ret, err;
109   struct sockaddr_ll sll;
110   int ver = TPACKET_V2;
111   socklen_t req_sz = sizeof (struct tpacket_req);
112   u32 ring_sz = rx_req->tp_block_size * rx_req->tp_block_nr +
113     tx_req->tp_block_size * tx_req->tp_block_nr;
114
115   if ((*fd = socket (AF_PACKET, SOCK_RAW, htons (ETH_P_ALL))) < 0)
116     {
117       DBG_SOCK ("Failed to create socket");
118       ret = VNET_API_ERROR_SYSCALL_ERROR_1;
119       goto error;
120     }
121
122   if ((err =
123        setsockopt (*fd, SOL_PACKET, PACKET_VERSION, &ver, sizeof (ver))) < 0)
124     {
125       DBG_SOCK ("Failed to set rx packet interface version");
126       ret = VNET_API_ERROR_SYSCALL_ERROR_1;
127       goto error;
128     }
129
130   int opt = 1;
131   if ((err =
132        setsockopt (*fd, SOL_PACKET, PACKET_LOSS, &opt, sizeof (opt))) < 0)
133     {
134       DBG_SOCK ("Failed to set packet tx ring error handling option");
135       ret = VNET_API_ERROR_SYSCALL_ERROR_1;
136       goto error;
137     }
138
139   if ((err =
140        setsockopt (*fd, SOL_PACKET, PACKET_RX_RING, rx_req, req_sz)) < 0)
141     {
142       DBG_SOCK ("Failed to set packet rx ring options");
143       ret = VNET_API_ERROR_SYSCALL_ERROR_1;
144       goto error;
145     }
146
147   if ((err =
148        setsockopt (*fd, SOL_PACKET, PACKET_TX_RING, tx_req, req_sz)) < 0)
149     {
150       DBG_SOCK ("Failed to set packet rx ring options");
151       ret = VNET_API_ERROR_SYSCALL_ERROR_1;
152       goto error;
153     }
154
155   *ring =
156     mmap (NULL, ring_sz, PROT_READ | PROT_WRITE, MAP_SHARED | MAP_LOCKED, *fd,
157           0);
158   if (*ring == MAP_FAILED)
159     {
160       DBG_SOCK ("mmap failure");
161       ret = VNET_API_ERROR_SYSCALL_ERROR_1;
162       goto error;
163     }
164
165   memset (&sll, 0, sizeof (sll));
166   sll.sll_family = PF_PACKET;
167   sll.sll_protocol = htons (ETH_P_ALL);
168   sll.sll_ifindex = host_if_index;
169
170   if ((err = bind (*fd, (struct sockaddr *) &sll, sizeof (sll))) < 0)
171     {
172       DBG_SOCK ("Failed to bind rx packet socket (error %d)", err);
173       ret = VNET_API_ERROR_SYSCALL_ERROR_1;
174       goto error;
175     }
176
177   return 0;
178 error:
179   if (*fd >= 0)
180     close (*fd);
181   *fd = -1;
182   return ret;
183 }
184
185 int
186 af_packet_create_if (vlib_main_t * vm, u8 * host_if_name, u8 * hw_addr_set,
187                      u32 * sw_if_index)
188 {
189   af_packet_main_t *apm = &af_packet_main;
190   int ret, fd = -1;
191   struct tpacket_req *rx_req = 0;
192   struct tpacket_req *tx_req = 0;
193   u8 *ring = 0;
194   af_packet_if_t *apif = 0;
195   u8 hw_addr[6];
196   clib_error_t *error;
197   vnet_sw_interface_t *sw;
198   vlib_thread_main_t *tm = vlib_get_thread_main ();
199   vnet_main_t *vnm = vnet_get_main ();
200   uword *p;
201   uword if_index;
202   u8 *host_if_name_dup = vec_dup (host_if_name);
203   int host_if_index = -1;
204
205   p = mhash_get (&apm->if_index_by_host_if_name, host_if_name);
206   if (p)
207     {
208       return VNET_API_ERROR_SUBIF_ALREADY_EXISTS;
209     }
210
211   vec_validate (rx_req, 0);
212   rx_req->tp_block_size = AF_PACKET_RX_BLOCK_SIZE;
213   rx_req->tp_frame_size = AF_PACKET_RX_FRAME_SIZE;
214   rx_req->tp_block_nr = AF_PACKET_RX_BLOCK_NR;
215   rx_req->tp_frame_nr = AF_PACKET_RX_FRAME_NR;
216
217   vec_validate (tx_req, 0);
218   tx_req->tp_block_size = AF_PACKET_TX_BLOCK_SIZE;
219   tx_req->tp_frame_size = AF_PACKET_TX_FRAME_SIZE;
220   tx_req->tp_block_nr = AF_PACKET_TX_BLOCK_NR;
221   tx_req->tp_frame_nr = AF_PACKET_TX_FRAME_NR;
222
223   host_if_index = if_nametoindex ((const char *) host_if_name);
224
225   if (!host_if_index)
226     {
227       DBG_SOCK ("Wrong host interface name");
228       return VNET_API_ERROR_INVALID_INTERFACE;
229     }
230
231   ret = create_packet_v2_sock (host_if_index, rx_req, tx_req, &fd, &ring);
232
233   if (ret != 0)
234     goto error;
235
236   ret = is_bridge (host_if_name);
237
238   if (ret == 0)                 /* is a bridge, ignore state */
239     host_if_index = -1;
240
241   /* So far everything looks good, let's create interface */
242   pool_get (apm->interfaces, apif);
243   if_index = apif - apm->interfaces;
244
245   apif->host_if_index = host_if_index;
246   apif->fd = fd;
247   apif->rx_ring = ring;
248   apif->tx_ring = ring + rx_req->tp_block_size * rx_req->tp_block_nr;
249   apif->rx_req = rx_req;
250   apif->tx_req = tx_req;
251   apif->host_if_name = host_if_name_dup;
252   apif->per_interface_next_index = ~0;
253   apif->next_tx_frame = 0;
254   apif->next_rx_frame = 0;
255
256   if (tm->n_vlib_mains > 1)
257     clib_spinlock_init (&apif->lockp);
258
259   {
260     unix_file_t template = { 0 };
261     template.read_function = af_packet_fd_read_ready;
262     template.file_descriptor = fd;
263     template.private_data = if_index;
264     template.flags = UNIX_FILE_EVENT_EDGE_TRIGGERED;
265     apif->unix_file_index = unix_file_add (&unix_main, &template);
266   }
267
268   /*use configured or generate random MAC address */
269   if (hw_addr_set)
270     clib_memcpy (hw_addr, hw_addr_set, 6);
271   else
272     {
273       f64 now = vlib_time_now (vm);
274       u32 rnd;
275       rnd = (u32) (now * 1e6);
276       rnd = random_u32 (&rnd);
277
278       clib_memcpy (hw_addr + 2, &rnd, sizeof (rnd));
279       hw_addr[0] = 2;
280       hw_addr[1] = 0xfe;
281     }
282
283   error = ethernet_register_interface (vnm, af_packet_device_class.index,
284                                        if_index, hw_addr, &apif->hw_if_index,
285                                        af_packet_eth_flag_change);
286
287   if (error)
288     {
289       memset (apif, 0, sizeof (*apif));
290       pool_put (apm->interfaces, apif);
291       clib_error_report (error);
292       ret = VNET_API_ERROR_SYSCALL_ERROR_1;
293       goto error;
294     }
295
296   sw = vnet_get_hw_sw_interface (vnm, apif->hw_if_index);
297   apif->sw_if_index = sw->sw_if_index;
298   vnet_set_device_input_node (vnm, apif->hw_if_index,
299                               af_packet_input_node.index);
300   vnet_device_input_assign_thread (vnm, apif->hw_if_index, 0,   /* queue */
301                                    ~0 /* any cpu */ );
302   vnet_device_input_set_mode (vnm, apif->hw_if_index, 0,
303                               VNET_DEVICE_INPUT_MODE_INTERRUPT);
304
305   vnet_hw_interface_set_flags (vnm, apif->hw_if_index,
306                                VNET_HW_INTERFACE_FLAG_LINK_UP);
307
308   mhash_set_mem (&apm->if_index_by_host_if_name, host_if_name_dup, &if_index,
309                  0);
310   if (sw_if_index)
311     *sw_if_index = apif->sw_if_index;
312
313   return 0;
314
315 error:
316   vec_free (host_if_name_dup);
317   vec_free (rx_req);
318   vec_free (tx_req);
319   return ret;
320 }
321
322 int
323 af_packet_delete_if (vlib_main_t * vm, u8 * host_if_name)
324 {
325   vnet_main_t *vnm = vnet_get_main ();
326   af_packet_main_t *apm = &af_packet_main;
327   af_packet_if_t *apif;
328   uword *p;
329   uword if_index;
330   u32 ring_sz;
331
332   p = mhash_get (&apm->if_index_by_host_if_name, host_if_name);
333   if (p == NULL)
334     {
335       clib_warning ("Host interface %s does not exist", host_if_name);
336       return VNET_API_ERROR_SYSCALL_ERROR_1;
337     }
338   apif = pool_elt_at_index (apm->interfaces, p[0]);
339   if_index = apif - apm->interfaces;
340
341   /* bring down the interface */
342   vnet_hw_interface_set_flags (vnm, apif->hw_if_index, 0);
343
344   /* clean up */
345   if (apif->unix_file_index != ~0)
346     {
347       unix_file_del (&unix_main, unix_main.file_pool + apif->unix_file_index);
348       apif->unix_file_index = ~0;
349     }
350   else
351     close (apif->fd);
352
353   ring_sz = apif->rx_req->tp_block_size * apif->rx_req->tp_block_nr +
354     apif->tx_req->tp_block_size * apif->tx_req->tp_block_nr;
355   if (munmap (apif->rx_ring, ring_sz))
356     clib_warning ("Host interface %s could not free rx/tx ring",
357                   host_if_name);
358   apif->rx_ring = NULL;
359   apif->tx_ring = NULL;
360   apif->fd = -1;
361
362   vec_free (apif->rx_req);
363   apif->rx_req = NULL;
364   vec_free (apif->tx_req);
365   apif->tx_req = NULL;
366
367   vec_free (apif->host_if_name);
368   apif->host_if_name = NULL;
369   apif->host_if_index = -1;
370
371   mhash_unset (&apm->if_index_by_host_if_name, host_if_name, &if_index);
372
373   ethernet_delete_interface (vnm, apif->hw_if_index);
374
375   pool_put (apm->interfaces, apif);
376
377   return 0;
378 }
379
380 static clib_error_t *
381 af_packet_init (vlib_main_t * vm)
382 {
383   af_packet_main_t *apm = &af_packet_main;
384   vlib_thread_main_t *tm = vlib_get_thread_main ();
385
386   memset (apm, 0, sizeof (af_packet_main_t));
387
388   mhash_init_vec_string (&apm->if_index_by_host_if_name, sizeof (uword));
389
390   vec_validate_aligned (apm->rx_buffers, tm->n_vlib_mains - 1,
391                         CLIB_CACHE_LINE_BYTES);
392
393   return 0;
394 }
395
396 VLIB_INIT_FUNCTION (af_packet_init);
397
398 /*
399  * fd.io coding-style-patch-verification: ON
400  *
401  * Local Variables:
402  * eval: (c-set-style "gnu")
403  * End:
404  */