dpdk: clean interface link information on admin down / stop
[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   memset (&xd->link, 0, sizeof (struct rte_eth_link));
198
199   /* For bonded interface, stop slave links */
200   if (xd->pmd == VNET_DPDK_PMD_BOND)
201     {
202       dpdk_portid_t slink[16];
203       int nlink = rte_eth_bond_slaves_get (xd->port_id, slink, 16);
204       while (nlink >= 1)
205         {
206           dpdk_portid_t dpdk_port = slink[--nlink];
207           rte_eth_dev_stop (dpdk_port);
208         }
209     }
210   dpdk_log_info ("Interface %U stopped",
211                  format_dpdk_device_name, xd->port_id);
212 }
213
214 /* Even type for send_garp_na_process */
215 enum
216 {
217   SEND_GARP_NA = 1,
218 } dpdk_send_garp_na_process_event_t;
219
220 static vlib_node_registration_t send_garp_na_proc_node;
221
222 static uword
223 send_garp_na_process (vlib_main_t * vm,
224                       vlib_node_runtime_t * rt, vlib_frame_t * f)
225 {
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           dpdk_update_link_state (xd, vlib_time_now (vm));
242           send_ip4_garp (vm, xd->sw_if_index);
243           send_ip6_na (vm, xd->sw_if_index);
244         }
245       vec_reset_length (event_data);
246     }
247   return 0;
248 }
249
250 /* *INDENT-OFF* */
251 VLIB_REGISTER_NODE (send_garp_na_proc_node, static) = {
252     .function = send_garp_na_process,
253     .type = VLIB_NODE_TYPE_PROCESS,
254     .name = "send-garp-na-process",
255 };
256 /* *INDENT-ON* */
257
258 void vl_api_force_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
259
260 static void
261 garp_na_proc_callback (uword * dpdk_port)
262 {
263   vlib_main_t *vm = vlib_get_main ();
264   ASSERT (vlib_get_thread_index () == 0);
265   vlib_process_signal_event
266     (vm, send_garp_na_proc_node.index, SEND_GARP_NA, *dpdk_port);
267 }
268
269 always_inline int
270 dpdk_port_state_callback_inline (dpdk_portid_t port_id,
271                                  enum rte_eth_event_type type, void *param)
272 {
273   struct rte_eth_link link;
274   dpdk_device_t *xd = &dpdk_main.devices[port_id];
275
276   RTE_SET_USED (param);
277   if (type != RTE_ETH_EVENT_INTR_LSC)
278     {
279       dpdk_log_info ("Unknown event %d received for port %d", type, port_id);
280       return -1;
281     }
282
283   rte_eth_link_get_nowait (port_id, &link);
284   u8 link_up = link.link_status;
285
286   if (xd->flags & DPDK_DEVICE_FLAG_BOND_SLAVE)
287     {
288       uword bd_port = xd->bond_port;
289       int bd_mode = rte_eth_bond_mode_get (bd_port);
290       dpdk_log_info ("Port %d state to %s, "
291                      "slave of port %d BondEthernet%d in mode %d",
292                      port_id, (link_up) ? "UP" : "DOWN",
293                      bd_port, xd->bond_instance_num, bd_mode);
294       if (bd_mode == BONDING_MODE_ACTIVE_BACKUP)
295         {
296           vl_api_force_rpc_call_main_thread
297             (garp_na_proc_callback, (u8 *) & bd_port, sizeof (uword));
298         }
299
300       if (link_up)
301         xd->flags |= DPDK_DEVICE_FLAG_BOND_SLAVE_UP;
302       else
303         xd->flags &= ~DPDK_DEVICE_FLAG_BOND_SLAVE_UP;
304     }
305   else                          /* Should not happen as callback not setup for "normal" links */
306     {
307       if (link_up)
308         dpdk_log_info ("Port %d Link Up - speed %u Mbps - %s",
309                        port_id, (unsigned) link.link_speed,
310                        (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
311                        "full-duplex" : "half-duplex");
312       else
313         dpdk_log_info ("Port %d Link Down\n\n", port_id);
314     }
315
316   return 0;
317 }
318
319 int
320 dpdk_port_state_callback (dpdk_portid_t port_id,
321                           enum rte_eth_event_type type,
322                           void *param,
323                           void *ret_param __attribute__ ((unused)))
324 {
325   return dpdk_port_state_callback_inline (port_id, type, param);
326 }
327
328 /*
329  * fd.io coding-style-patch-verification: ON
330  *
331  * Local Variables:
332  * eval: (c-set-style "gnu")
333  * End:
334  */