dpdk: add support for DPDK 17.11
[vpp.git] / src / plugins / dpdk / device / common.c
1 /*
2  * Copyright (c) 2017 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include <vnet/vnet.h>
17 #include <vppinfra/vec.h>
18 #include <vppinfra/format.h>
19 #include <vlib/unix/cj.h>
20 #include <assert.h>
21
22 #include <vnet/ip/ip.h>
23 #include <vnet/ethernet/ethernet.h>
24 #include <vnet/ethernet/arp_packet.h>
25 #include <dpdk/device/dpdk.h>
26
27 #include <dpdk/device/dpdk_priv.h>
28 #include <vppinfra/error.h>
29
30 void
31 dpdk_device_error (dpdk_device_t * xd, char *str, int rv)
32 {
33   xd->errors = clib_error_return (xd->errors, "%s[port:%d, errno:%d]: %s",
34                                   str, xd->device_index, rv,
35                                   rte_strerror (rv));
36 }
37
38 void
39 dpdk_device_setup (dpdk_device_t * xd)
40 {
41   dpdk_main_t *dm = &dpdk_main;
42   vnet_main_t *vnm = vnet_get_main ();
43   vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, xd->vlib_sw_if_index);
44   int rv;
45   int j;
46
47   ASSERT (vlib_get_thread_index () == 0);
48
49   clib_error_free (xd->errors);
50   sw->flags &= ~VNET_SW_INTERFACE_FLAG_ERROR;
51
52   if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
53     {
54       vnet_hw_interface_set_flags (dm->vnet_main, xd->hw_if_index, 0);
55       dpdk_device_stop (xd);
56     }
57
58   rv = rte_eth_dev_configure (xd->device_index, xd->rx_q_used,
59                               xd->tx_q_used, &xd->port_conf);
60
61   if (rv < 0)
62     {
63       dpdk_device_error (xd, "rte_eth_dev_configure", rv);
64       goto error;
65     }
66
67   /* Set up one TX-queue per worker thread */
68   for (j = 0; j < xd->tx_q_used; j++)
69     {
70       rv = rte_eth_tx_queue_setup (xd->device_index, j, xd->nb_tx_desc,
71                                    xd->cpu_socket, &xd->tx_conf);
72
73       /* retry with any other CPU socket */
74       if (rv < 0)
75         rv = rte_eth_tx_queue_setup (xd->device_index, j, xd->nb_tx_desc,
76                                      SOCKET_ID_ANY, &xd->tx_conf);
77       if (rv < 0)
78         dpdk_device_error (xd, "rte_eth_tx_queue_setup", rv);
79     }
80
81   vec_validate_aligned (xd->buffer_pool_for_queue, xd->rx_q_used - 1,
82                         CLIB_CACHE_LINE_BYTES);
83   for (j = 0; j < xd->rx_q_used; j++)
84     {
85       dpdk_mempool_private_t *privp;
86       uword tidx = vnet_get_device_input_thread_index (dm->vnet_main,
87                                                        xd->hw_if_index, j);
88       unsigned lcore = vlib_worker_threads[tidx].lcore_id;
89       u16 socket_id = rte_lcore_to_socket_id (lcore);
90
91       rv = rte_eth_rx_queue_setup (xd->device_index, j, xd->nb_rx_desc,
92                                    xd->cpu_socket, 0,
93                                    dm->pktmbuf_pools[socket_id]);
94
95       /* retry with any other CPU socket */
96       if (rv < 0)
97         rv = rte_eth_rx_queue_setup (xd->device_index, j, xd->nb_rx_desc,
98                                      SOCKET_ID_ANY, 0,
99                                      dm->pktmbuf_pools[socket_id]);
100
101       privp = rte_mempool_get_priv (dm->pktmbuf_pools[socket_id]);
102       xd->buffer_pool_for_queue[j] = privp->buffer_pool_index;
103
104       if (rv < 0)
105         dpdk_device_error (xd, "rte_eth_rx_queue_setup", rv);
106     }
107
108   if (vec_len (xd->errors))
109     goto error;
110
111   if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
112     dpdk_device_start (xd);
113
114   if (vec_len (xd->errors))
115     goto error;
116
117   return;
118
119 error:
120   xd->flags |= DPDK_DEVICE_FLAG_PMD_INIT_FAIL;
121   sw->flags |= VNET_SW_INTERFACE_FLAG_ERROR;
122 }
123
124 void
125 dpdk_device_start (dpdk_device_t * xd)
126 {
127   int rv;
128
129   if (xd->flags & DPDK_DEVICE_FLAG_PMD_INIT_FAIL)
130     return;
131
132   rv = rte_eth_dev_start (xd->device_index);
133
134   if (rv)
135     {
136       dpdk_device_error (xd, "rte_eth_dev_start", rv);
137       return;
138     }
139
140   if (xd->default_mac_address)
141     rv =
142       rte_eth_dev_default_mac_addr_set (xd->device_index,
143                                         (struct ether_addr *)
144                                         xd->default_mac_address);
145
146   if (rv)
147     dpdk_device_error (xd, "rte_eth_dev_default_mac_addr_set", rv);
148
149   if (xd->flags & DPDK_DEVICE_FLAG_PROMISC)
150     rte_eth_promiscuous_enable (xd->device_index);
151   else
152     rte_eth_promiscuous_disable (xd->device_index);
153
154   rte_eth_allmulticast_enable (xd->device_index);
155
156   if (xd->pmd == VNET_DPDK_PMD_BOND)
157     {
158       dpdk_portid_t slink[16];
159       int nlink = rte_eth_bond_slaves_get (xd->device_index, slink, 16);
160       while (nlink >= 1)
161         {
162           dpdk_portid_t dpdk_port = slink[--nlink];
163           rte_eth_allmulticast_enable (dpdk_port);
164         }
165     }
166 }
167
168 void
169 dpdk_device_stop (dpdk_device_t * xd)
170 {
171   if (xd->flags & DPDK_DEVICE_FLAG_PMD_INIT_FAIL)
172     return;
173
174   rte_eth_allmulticast_disable (xd->device_index);
175   rte_eth_dev_stop (xd->device_index);
176
177   /* For bonded interface, stop slave links */
178   if (xd->pmd == VNET_DPDK_PMD_BOND)
179     {
180       dpdk_portid_t slink[16];
181       int nlink = rte_eth_bond_slaves_get (xd->device_index, slink, 16);
182       while (nlink >= 1)
183         {
184           dpdk_portid_t dpdk_port = slink[--nlink];
185           rte_eth_dev_stop (dpdk_port);
186         }
187     }
188 }
189
190 /* Even type for send_garp_na_process */
191 enum
192 {
193   SEND_GARP_NA = 1,
194 } dpdk_send_garp_na_process_event_t;
195
196 static vlib_node_registration_t send_garp_na_proc_node;
197
198 static uword
199 send_garp_na_process (vlib_main_t * vm,
200                       vlib_node_runtime_t * rt, vlib_frame_t * f)
201 {
202   vnet_main_t *vnm = vnet_get_main ();
203   uword event_type, *event_data = 0;
204
205   while (1)
206     {
207       u32 i;
208       uword dpdk_port;
209       vlib_process_wait_for_event (vm);
210       event_type = vlib_process_get_events (vm, &event_data);
211       ASSERT (event_type == SEND_GARP_NA);
212       for (i = 0; i < vec_len (event_data); i++)
213         {
214           dpdk_port = event_data[i];
215           if (i < 5)            /* wait 0.2 sec for link to settle, max total 1 sec */
216             vlib_process_suspend (vm, 0.2);
217           dpdk_device_t *xd = &dpdk_main.devices[dpdk_port];
218           u32 hw_if_index = xd->hw_if_index;
219           vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
220           dpdk_update_link_state (xd, vlib_time_now (vm));
221           send_ip4_garp (vm, hi);
222           send_ip6_na (vm, hi);
223         }
224       vec_reset_length (event_data);
225     }
226   return 0;
227 }
228
229 /* *INDENT-OFF* */
230 VLIB_REGISTER_NODE (send_garp_na_proc_node, static) = {
231     .function = send_garp_na_process,
232     .type = VLIB_NODE_TYPE_PROCESS,
233     .name = "send-garp-na-process",
234 };
235 /* *INDENT-ON* */
236
237 void vl_api_force_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
238
239 static void
240 garp_na_proc_callback (uword * dpdk_port)
241 {
242   vlib_main_t *vm = vlib_get_main ();
243   ASSERT (vlib_get_thread_index () == 0);
244   vlib_process_signal_event
245     (vm, send_garp_na_proc_node.index, SEND_GARP_NA, *dpdk_port);
246 }
247
248 always_inline int
249 dpdk_port_state_callback_inline (dpdk_portid_t port_id,
250                                  enum rte_eth_event_type type, void *param)
251 {
252   struct rte_eth_link link;
253   dpdk_device_t *xd = &dpdk_main.devices[port_id];
254
255   RTE_SET_USED (param);
256   if (type != RTE_ETH_EVENT_INTR_LSC)
257     {
258       clib_warning ("Unknown event %d received for port %d", type, port_id);
259       return -1;
260     }
261
262   rte_eth_link_get_nowait (port_id, &link);
263   u8 link_up = link.link_status;
264
265   if (xd->flags & DPDK_DEVICE_FLAG_BOND_SLAVE)
266     {
267       uword bd_port = xd->bond_port;
268       int bd_mode = rte_eth_bond_mode_get (bd_port);
269 #if 0
270       clib_warning ("Port %d state to %s, "
271                     "slave of port %d BondEthernet%d in mode %d",
272                     port_id, (link_up) ? "UP" : "DOWN",
273                     bd_port, xd->port_id, bd_mode);
274 #endif
275       if (bd_mode == BONDING_MODE_ACTIVE_BACKUP)
276         {
277           vl_api_force_rpc_call_main_thread
278             (garp_na_proc_callback, (u8 *) & bd_port, sizeof (uword));
279         }
280       xd->flags |= link_up ?
281         DPDK_DEVICE_FLAG_BOND_SLAVE_UP : ~DPDK_DEVICE_FLAG_BOND_SLAVE_UP;
282     }
283   else                          /* Should not happen as callback not setup for "normal" links */
284     {
285       if (link_up)
286         clib_warning ("Port %d Link Up - speed %u Mbps - %s",
287                       port_id, (unsigned) link.link_speed,
288                       (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
289                       "full-duplex" : "half-duplex");
290       else
291         clib_warning ("Port %d Link Down\n\n", port_id);
292     }
293
294   return 0;
295 }
296
297 int
298 dpdk_port_state_callback (dpdk_portid_t port_id,
299                           enum rte_eth_event_type type,
300                           void *param,
301                           void *ret_param __attribute__ ((unused)))
302 {
303   return dpdk_port_state_callback_inline (port_id, type, param);
304 }
305
306 /*
307  * fd.io coding-style-patch-verification: ON
308  *
309  * Local Variables:
310  * eval: (c-set-style "gnu")
311  * End:
312  */