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