bond: send gratuitous arp when the active slave went down in active-backup mode
[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   uword event_type, *event_data = 0;
226
227   while (1)
228     {
229       u32 i;
230       uword dpdk_port;
231       vlib_process_wait_for_event (vm);
232       event_type = vlib_process_get_events (vm, &event_data);
233       ASSERT (event_type == SEND_GARP_NA);
234       for (i = 0; i < vec_len (event_data); i++)
235         {
236           dpdk_port = event_data[i];
237           if (i < 5)            /* wait 0.2 sec for link to settle, max total 1 sec */
238             vlib_process_suspend (vm, 0.2);
239           dpdk_device_t *xd = &dpdk_main.devices[dpdk_port];
240           dpdk_update_link_state (xd, vlib_time_now (vm));
241           send_ip4_garp (vm, xd->sw_if_index);
242           send_ip6_na (vm, xd->sw_if_index);
243         }
244       vec_reset_length (event_data);
245     }
246   return 0;
247 }
248
249 /* *INDENT-OFF* */
250 VLIB_REGISTER_NODE (send_garp_na_proc_node, static) = {
251     .function = send_garp_na_process,
252     .type = VLIB_NODE_TYPE_PROCESS,
253     .name = "send-garp-na-process",
254 };
255 /* *INDENT-ON* */
256
257 void vl_api_force_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
258
259 static void
260 garp_na_proc_callback (uword * dpdk_port)
261 {
262   vlib_main_t *vm = vlib_get_main ();
263   ASSERT (vlib_get_thread_index () == 0);
264   vlib_process_signal_event
265     (vm, send_garp_na_proc_node.index, SEND_GARP_NA, *dpdk_port);
266 }
267
268 always_inline int
269 dpdk_port_state_callback_inline (dpdk_portid_t port_id,
270                                  enum rte_eth_event_type type, void *param)
271 {
272   struct rte_eth_link link;
273   dpdk_device_t *xd = &dpdk_main.devices[port_id];
274
275   RTE_SET_USED (param);
276   if (type != RTE_ETH_EVENT_INTR_LSC)
277     {
278       dpdk_log_info ("Unknown event %d received for port %d", type, port_id);
279       return -1;
280     }
281
282   rte_eth_link_get_nowait (port_id, &link);
283   u8 link_up = link.link_status;
284
285   if (xd->flags & DPDK_DEVICE_FLAG_BOND_SLAVE)
286     {
287       uword bd_port = xd->bond_port;
288       int bd_mode = rte_eth_bond_mode_get (bd_port);
289       dpdk_log_info ("Port %d state to %s, "
290                      "slave of port %d BondEthernet%d in mode %d",
291                      port_id, (link_up) ? "UP" : "DOWN",
292                      bd_port, xd->bond_instance_num, bd_mode);
293       if (bd_mode == BONDING_MODE_ACTIVE_BACKUP)
294         {
295           vl_api_force_rpc_call_main_thread
296             (garp_na_proc_callback, (u8 *) & bd_port, sizeof (uword));
297         }
298
299       if (link_up)
300         xd->flags |= DPDK_DEVICE_FLAG_BOND_SLAVE_UP;
301       else
302         xd->flags &= ~DPDK_DEVICE_FLAG_BOND_SLAVE_UP;
303     }
304   else                          /* Should not happen as callback not setup for "normal" links */
305     {
306       if (link_up)
307         dpdk_log_info ("Port %d Link Up - speed %u Mbps - %s",
308                        port_id, (unsigned) link.link_speed,
309                        (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
310                        "full-duplex" : "half-duplex");
311       else
312         dpdk_log_info ("Port %d Link Down\n\n", port_id);
313     }
314
315   return 0;
316 }
317
318 int
319 dpdk_port_state_callback (dpdk_portid_t port_id,
320                           enum rte_eth_event_type type,
321                           void *param,
322                           void *ret_param __attribute__ ((unused)))
323 {
324   return dpdk_port_state_callback_inline (port_id, type, param);
325 }
326
327 /*
328  * fd.io coding-style-patch-verification: ON
329  *
330  * Local Variables:
331  * eval: (c-set-style "gnu")
332  * End:
333  */