dpdk: Decoupling the meaning of xd->device_index in dpdk_plugin
[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   dpdk_log_err ("Interface %U error %d: %s",
34                 format_dpdk_device_name, xd->port_id, rv, rte_strerror (rv));
35   xd->errors = clib_error_return (xd->errors, "%s[port:%d, errno:%d]: %s",
36                                   str, xd->port_id, rv, rte_strerror (rv));
37 }
38
39 void
40 dpdk_device_setup (dpdk_device_t * xd)
41 {
42   dpdk_main_t *dm = &dpdk_main;
43   vnet_main_t *vnm = vnet_get_main ();
44   vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, xd->sw_if_index);
45   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, xd->hw_if_index);
46   int rv;
47   int j;
48
49   ASSERT (vlib_get_thread_index () == 0);
50
51   clib_error_free (xd->errors);
52   sw->flags &= ~VNET_SW_INTERFACE_FLAG_ERROR;
53
54   if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
55     {
56       vnet_hw_interface_set_flags (dm->vnet_main, xd->hw_if_index, 0);
57       dpdk_device_stop (xd);
58     }
59
60   /* Enable flow director when flows exist */
61   if (xd->pmd == VNET_DPDK_PMD_I40E)
62     {
63       if ((xd->flags & DPDK_DEVICE_FLAG_RX_FLOW_OFFLOAD) != 0)
64         xd->port_conf.fdir_conf.mode = RTE_FDIR_MODE_PERFECT;
65       else
66         xd->port_conf.fdir_conf.mode = RTE_FDIR_MODE_NONE;
67     }
68
69   rv = rte_eth_dev_configure (xd->port_id, xd->rx_q_used,
70                               xd->tx_q_used, &xd->port_conf);
71
72   if (rv < 0)
73     {
74       dpdk_device_error (xd, "rte_eth_dev_configure", rv);
75       goto error;
76     }
77
78   /* Set up one TX-queue per worker thread */
79   for (j = 0; j < xd->tx_q_used; j++)
80     {
81       rv =
82         rte_eth_tx_queue_setup (xd->port_id, j, xd->nb_tx_desc,
83                                 xd->cpu_socket, &xd->tx_conf);
84
85       /* retry with any other CPU socket */
86       if (rv < 0)
87         rv =
88           rte_eth_tx_queue_setup (xd->port_id, j,
89                                   xd->nb_tx_desc, SOCKET_ID_ANY,
90                                   &xd->tx_conf);
91       if (rv < 0)
92         dpdk_device_error (xd, "rte_eth_tx_queue_setup", rv);
93     }
94
95   vec_validate_aligned (xd->buffer_pool_for_queue, xd->rx_q_used - 1,
96                         CLIB_CACHE_LINE_BYTES);
97   for (j = 0; j < xd->rx_q_used; j++)
98     {
99       dpdk_mempool_private_t *privp;
100       uword tidx = vnet_get_device_input_thread_index (dm->vnet_main,
101                                                        xd->hw_if_index, j);
102       unsigned lcore = vlib_worker_threads[tidx].lcore_id;
103       u16 socket_id = rte_lcore_to_socket_id (lcore);
104
105       rv =
106         rte_eth_rx_queue_setup (xd->port_id, j, xd->nb_rx_desc,
107                                 xd->cpu_socket, 0,
108                                 dm->pktmbuf_pools[socket_id]);
109
110       /* retry with any other CPU socket */
111       if (rv < 0)
112         rv =
113           rte_eth_rx_queue_setup (xd->port_id, j,
114                                   xd->nb_rx_desc, SOCKET_ID_ANY, 0,
115                                   dm->pktmbuf_pools[socket_id]);
116
117       privp = rte_mempool_get_priv (dm->pktmbuf_pools[socket_id]);
118       xd->buffer_pool_for_queue[j] = privp->buffer_pool_index;
119
120       if (rv < 0)
121         dpdk_device_error (xd, "rte_eth_rx_queue_setup", rv);
122     }
123
124   if (vec_len (xd->errors))
125     goto error;
126
127   rte_eth_dev_set_mtu (xd->port_id, hi->max_packet_bytes);
128
129   if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
130     dpdk_device_start (xd);
131
132   if (vec_len (xd->errors))
133     goto error;
134
135   return;
136
137 error:
138   xd->flags |= DPDK_DEVICE_FLAG_PMD_INIT_FAIL;
139   sw->flags |= VNET_SW_INTERFACE_FLAG_ERROR;
140 }
141
142 void
143 dpdk_device_start (dpdk_device_t * xd)
144 {
145   int rv;
146
147   if (xd->flags & DPDK_DEVICE_FLAG_PMD_INIT_FAIL)
148     return;
149
150   rv = rte_eth_dev_start (xd->port_id);
151
152   if (rv)
153     {
154       dpdk_device_error (xd, "rte_eth_dev_start", rv);
155       return;
156     }
157
158   if (xd->default_mac_address)
159     rv =
160       rte_eth_dev_default_mac_addr_set (xd->port_id,
161                                         (struct ether_addr *)
162                                         xd->default_mac_address);
163
164   if (rv)
165     dpdk_device_error (xd, "rte_eth_dev_default_mac_addr_set", rv);
166
167   if (xd->flags & DPDK_DEVICE_FLAG_PROMISC)
168     rte_eth_promiscuous_enable (xd->port_id);
169   else
170     rte_eth_promiscuous_disable (xd->port_id);
171
172   rte_eth_allmulticast_enable (xd->port_id);
173
174   if (xd->pmd == VNET_DPDK_PMD_BOND)
175     {
176       dpdk_portid_t slink[16];
177       int nlink = rte_eth_bond_slaves_get (xd->port_id, slink, 16);
178       while (nlink >= 1)
179         {
180           dpdk_portid_t dpdk_port = slink[--nlink];
181           rte_eth_allmulticast_enable (dpdk_port);
182         }
183     }
184
185   dpdk_log_info ("Interface %U started",
186                  format_dpdk_device_name, xd->port_id);
187 }
188
189 void
190 dpdk_device_stop (dpdk_device_t * xd)
191 {
192   if (xd->flags & DPDK_DEVICE_FLAG_PMD_INIT_FAIL)
193     return;
194
195   rte_eth_allmulticast_disable (xd->port_id);
196   rte_eth_dev_stop (xd->port_id);
197
198   /* For bonded interface, stop slave links */
199   if (xd->pmd == VNET_DPDK_PMD_BOND)
200     {
201       dpdk_portid_t slink[16];
202       int nlink = rte_eth_bond_slaves_get (xd->port_id, slink, 16);
203       while (nlink >= 1)
204         {
205           dpdk_portid_t dpdk_port = slink[--nlink];
206           rte_eth_dev_stop (dpdk_port);
207         }
208     }
209   dpdk_log_info ("Interface %U stopped",
210                  format_dpdk_device_name, xd->port_id);
211 }
212
213 /* Even type for send_garp_na_process */
214 enum
215 {
216   SEND_GARP_NA = 1,
217 } dpdk_send_garp_na_process_event_t;
218
219 static vlib_node_registration_t send_garp_na_proc_node;
220
221 static uword
222 send_garp_na_process (vlib_main_t * vm,
223                       vlib_node_runtime_t * rt, vlib_frame_t * f)
224 {
225   vnet_main_t *vnm = vnet_get_main ();
226   uword event_type, *event_data = 0;
227
228   while (1)
229     {
230       u32 i;
231       uword dpdk_port;
232       vlib_process_wait_for_event (vm);
233       event_type = vlib_process_get_events (vm, &event_data);
234       ASSERT (event_type == SEND_GARP_NA);
235       for (i = 0; i < vec_len (event_data); i++)
236         {
237           dpdk_port = event_data[i];
238           if (i < 5)            /* wait 0.2 sec for link to settle, max total 1 sec */
239             vlib_process_suspend (vm, 0.2);
240           dpdk_device_t *xd = &dpdk_main.devices[dpdk_port];
241           u32 hw_if_index = xd->hw_if_index;
242           vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
243           dpdk_update_link_state (xd, vlib_time_now (vm));
244           send_ip4_garp (vm, hi);
245           send_ip6_na (vm, hi);
246         }
247       vec_reset_length (event_data);
248     }
249   return 0;
250 }
251
252 /* *INDENT-OFF* */
253 VLIB_REGISTER_NODE (send_garp_na_proc_node, static) = {
254     .function = send_garp_na_process,
255     .type = VLIB_NODE_TYPE_PROCESS,
256     .name = "send-garp-na-process",
257 };
258 /* *INDENT-ON* */
259
260 void vl_api_force_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
261
262 static void
263 garp_na_proc_callback (uword * dpdk_port)
264 {
265   vlib_main_t *vm = vlib_get_main ();
266   ASSERT (vlib_get_thread_index () == 0);
267   vlib_process_signal_event
268     (vm, send_garp_na_proc_node.index, SEND_GARP_NA, *dpdk_port);
269 }
270
271 always_inline int
272 dpdk_port_state_callback_inline (dpdk_portid_t port_id,
273                                  enum rte_eth_event_type type, void *param)
274 {
275   struct rte_eth_link link;
276   dpdk_device_t *xd = &dpdk_main.devices[port_id];
277
278   RTE_SET_USED (param);
279   if (type != RTE_ETH_EVENT_INTR_LSC)
280     {
281       dpdk_log_info ("Unknown event %d received for port %d", type, port_id);
282       return -1;
283     }
284
285   rte_eth_link_get_nowait (port_id, &link);
286   u8 link_up = link.link_status;
287
288   if (xd->flags & DPDK_DEVICE_FLAG_BOND_SLAVE)
289     {
290       uword bd_port = xd->bond_port;
291       int bd_mode = rte_eth_bond_mode_get (bd_port);
292       dpdk_log_info ("Port %d state to %s, "
293                      "slave of port %d BondEthernet%d in mode %d",
294                      port_id, (link_up) ? "UP" : "DOWN",
295                      bd_port, xd->bond_instance_num, bd_mode);
296       if (bd_mode == BONDING_MODE_ACTIVE_BACKUP)
297         {
298           vl_api_force_rpc_call_main_thread
299             (garp_na_proc_callback, (u8 *) & bd_port, sizeof (uword));
300         }
301
302       if (link_up)
303         xd->flags |= DPDK_DEVICE_FLAG_BOND_SLAVE_UP;
304       else
305         xd->flags &= ~DPDK_DEVICE_FLAG_BOND_SLAVE_UP;
306     }
307   else                          /* Should not happen as callback not setup for "normal" links */
308     {
309       if (link_up)
310         dpdk_log_info ("Port %d Link Up - speed %u Mbps - %s",
311                        port_id, (unsigned) link.link_speed,
312                        (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
313                        "full-duplex" : "half-duplex");
314       else
315         dpdk_log_info ("Port %d Link Down\n\n", port_id);
316     }
317
318   return 0;
319 }
320
321 int
322 dpdk_port_state_callback (dpdk_portid_t port_id,
323                           enum rte_eth_event_type type,
324                           void *param,
325                           void *ret_param __attribute__ ((unused)))
326 {
327   return dpdk_port_state_callback_inline (port_id, type, param);
328 }
329
330 /*
331  * fd.io coding-style-patch-verification: ON
332  *
333  * Local Variables:
334  * eval: (c-set-style "gnu")
335  * End:
336  */