FD.io VPP  v17.10-9-gd594711
Vector Packet Processing
common.c
Go to the documentation of this file.
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>
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
40 {
41  dpdk_main_t *dm = &dpdk_main;
42  vnet_main_t *vnm = vnet_get_main ();
44  int rv;
45  int j;
46 
47  ASSERT (vlib_get_thread_index () == 0);
48 
49  clib_error_free (xd->errors);
51 
53  {
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  for (j = 0; j < xd->rx_q_used; j++)
82  {
84  xd->hw_if_index, j);
85  unsigned lcore = vlib_worker_threads[tidx].lcore_id;
86  u16 socket_id = rte_lcore_to_socket_id (lcore);
87 
88  rv = rte_eth_rx_queue_setup (xd->device_index, j, xd->nb_rx_desc,
89  xd->cpu_socket, 0,
90  dm->pktmbuf_pools[socket_id]);
91 
92  /* retry with any other CPU socket */
93  if (rv < 0)
94  rv = rte_eth_rx_queue_setup (xd->device_index, j, xd->nb_rx_desc,
95  SOCKET_ID_ANY, 0,
96  dm->pktmbuf_pools[socket_id]);
97 
98  if (rv < 0)
99  dpdk_device_error (xd, "rte_eth_rx_queue_setup", rv);
100  }
101 
102  if (vec_len (xd->errors))
103  goto error;
104 
106  dpdk_device_start (xd);
107 
108  if (vec_len (xd->errors))
109  goto error;
110 
111  return;
112 
113 error:
116 }
117 
118 void
120 {
121  int rv;
122 
124  return;
125 
126  rv = rte_eth_dev_start (xd->device_index);
127 
128  if (rv)
129  {
130  dpdk_device_error (xd, "rte_eth_dev_start", rv);
131  return;
132  }
133 
134  if (xd->default_mac_address)
135  rv =
136  rte_eth_dev_default_mac_addr_set (xd->device_index,
137  (struct ether_addr *)
138  xd->default_mac_address);
139 
140  if (rv)
141  dpdk_device_error (xd, "rte_eth_dev_default_mac_addr_set", rv);
142 
144  rte_eth_promiscuous_enable (xd->device_index);
145  else
146  rte_eth_promiscuous_disable (xd->device_index);
147 
148  rte_eth_allmulticast_enable (xd->device_index);
149 
150  if (xd->pmd == VNET_DPDK_PMD_BOND)
151  {
152  u8 slink[16];
153  int nlink = rte_eth_bond_slaves_get (xd->device_index, slink, 16);
154  while (nlink >= 1)
155  {
156  u8 dpdk_port = slink[--nlink];
157  rte_eth_allmulticast_enable (dpdk_port);
158  }
159  }
160 }
161 
162 void
164 {
166  return;
167 
168  rte_eth_allmulticast_disable (xd->device_index);
169  rte_eth_dev_stop (xd->device_index);
170 
171  /* For bonded interface, stop slave links */
172  if (xd->pmd == VNET_DPDK_PMD_BOND)
173  {
174  u8 slink[16];
175  int nlink = rte_eth_bond_slaves_get (xd->device_index, slink, 16);
176  while (nlink >= 1)
177  {
178  u8 dpdk_port = slink[--nlink];
179  rte_eth_dev_stop (dpdk_port);
180  }
181  }
182 }
183 
184 /* Even type for send_garp_na_process */
185 enum
186 {
189 
191 
192 static uword
195 {
196  vnet_main_t *vnm = vnet_get_main ();
197  uword event_type, *event_data = 0;
198 
199  while (1)
200  {
201  u32 i;
202  uword dpdk_port;
204  event_type = vlib_process_get_events (vm, &event_data);
205  ASSERT (event_type == SEND_GARP_NA);
206  for (i = 0; i < vec_len (event_data); i++)
207  {
208  dpdk_port = event_data[i];
209  if (i < 5) /* wait 0.2 sec for link to settle, max total 1 sec */
210  vlib_process_suspend (vm, 0.2);
211  dpdk_device_t *xd = &dpdk_main.devices[dpdk_port];
212  u32 hw_if_index = xd->hw_if_index;
213  vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, hw_if_index);
215  send_ip4_garp (vm, hi);
216  send_ip6_na (vm, hi);
217  }
218  vec_reset_length (event_data);
219  }
220  return 0;
221 }
222 
223 /* *INDENT-OFF* */
224 VLIB_REGISTER_NODE (send_garp_na_proc_node, static) = {
225  .function = send_garp_na_process,
226  .type = VLIB_NODE_TYPE_PROCESS,
227  .name = "send-garp-na-process",
228 };
229 /* *INDENT-ON* */
230 
231 void vl_api_force_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
232 
233 static void
235 {
237  ASSERT (vlib_get_thread_index () == 0);
239  (vm, send_garp_na_proc_node.index, SEND_GARP_NA, *dpdk_port);
240 }
241 
242 always_inline int
244  enum rte_eth_event_type type, void *param)
245 {
246  struct rte_eth_link link;
247  dpdk_device_t *xd = &dpdk_main.devices[port_id];
248 
249  RTE_SET_USED (param);
250  if (type != RTE_ETH_EVENT_INTR_LSC)
251  {
252  clib_warning ("Unknown event %d received for port %d", type, port_id);
253  return -1;
254  }
255 
256  rte_eth_link_get_nowait (port_id, &link);
257  u8 link_up = link.link_status;
258 
259  if (xd->flags & DPDK_DEVICE_FLAG_BOND_SLAVE)
260  {
261  uword bd_port = xd->bond_port;
262  int bd_mode = rte_eth_bond_mode_get (bd_port);
263 #if 0
264  clib_warning ("Port %d state to %s, "
265  "slave of port %d BondEthernet%d in mode %d",
266  port_id, (link_up) ? "UP" : "DOWN",
267  bd_port, xd->port_id, bd_mode);
268 #endif
269  if (bd_mode == BONDING_MODE_ACTIVE_BACKUP)
270  {
272  (garp_na_proc_callback, (u8 *) & bd_port, sizeof (uword));
273  }
274  xd->flags |= link_up ?
276  }
277  else /* Should not happen as callback not setup for "normal" links */
278  {
279  if (link_up)
280  clib_warning ("Port %d Link Up - speed %u Mbps - %s",
281  port_id, (unsigned) link.link_speed,
282  (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
283  "full-duplex" : "half-duplex");
284  else
285  clib_warning ("Port %d Link Down\n\n", port_id);
286  }
287 
288  return 0;
289 }
290 
291 #if DPDK_VOID_CALLBACK
292 void
293 dpdk_port_state_callback (uint8_t port_id,
294  enum rte_eth_event_type type, void *param)
295 {
296  dpdk_port_state_callback_inline (port_id, type, param);
297 }
298 
299 #else
300 int
301 dpdk_port_state_callback (uint8_t port_id,
302  enum rte_eth_event_type type,
303  void *param,
304  void *ret_param __attribute__ ((unused)))
305 {
306  return dpdk_port_state_callback_inline (port_id, type, param);
307 }
308 #endif
309 /*
310  * fd.io coding-style-patch-verification: ON
311  *
312  * Local Variables:
313  * eval: (c-set-style "gnu")
314  * End:
315  */
#define DPDK_DEVICE_FLAG_PROMISC
Definition: dpdk.h:173
u8 * default_mac_address
Definition: dpdk.h:223
vmrglw vmrglh hi
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:337
clib_error_t * vnet_hw_interface_set_flags(vnet_main_t *vnm, u32 hw_if_index, u32 flags)
Definition: interface.c:538
#define DPDK_DEVICE_FLAG_PMD_INIT_FAIL
Definition: dpdk.h:175
void vl_api_force_rpc_call_main_thread(void *fp, u8 *data, u32 data_length)
Definition: memory_vlib.c:1528
static uword * vlib_process_wait_for_event(vlib_main_t *vm)
Definition: node_funcs.h:619
dpdk_main_t dpdk_main
Definition: init.c:37
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:221
u16 flags
Definition: dpdk.h:171
static vnet_hw_interface_t * vnet_get_hw_interface(vnet_main_t *vnm, u32 hw_if_index)
struct _vlib_node_registration vlib_node_registration_t
clib_error_t * errors
Definition: dpdk.h:226
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
static uword vlib_process_suspend(vlib_main_t *vm, f64 dt)
Suspend a vlib cooperative multi-tasking thread for a period of time.
Definition: node_funcs.h:448
static uword vlib_process_get_events(vlib_main_t *vm, uword **data_vector)
Return the first event type which has occurred and a vector of per-event data of that type...
Definition: node_funcs.h:542
#define always_inline
Definition: clib.h:84
#define clib_error_return(e, args...)
Definition: error.h:99
u16 rx_q_used
Definition: dpdk.h:194
void dpdk_device_setup(dpdk_device_t *xd)
Definition: common.c:39
u32 device_index
Definition: dpdk.h:153
struct rte_eth_conf port_conf
Definition: dpdk.h:197
static uword send_garp_na_process(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
Definition: common.c:193
int dpdk_port_state_callback(uint8_t port_id, enum rte_eth_event_type type, void *param, void *ret_param)
Definition: common.c:301
u32 vlib_sw_if_index
Definition: dpdk.h:156
struct rte_eth_txconf tx_conf
Definition: dpdk.h:198
vlib_worker_thread_t * vlib_worker_threads
Definition: threads.c:35
void dpdk_device_start(dpdk_device_t *xd)
Definition: common.c:119
static_always_inline uword vnet_get_device_input_thread_index(vnet_main_t *vnm, u32 hw_if_index, u16 queue_id)
Definition: devices.h:126
static void vlib_process_signal_event(vlib_main_t *vm, uword node_index, uword type_opaque, uword data)
Definition: node_funcs.h:950
void send_ip4_garp(vlib_main_t *vm, vnet_hw_interface_t *hi)
Definition: arp.c:2487
u16 tx_q_used
Definition: dpdk.h:193
u16 nb_rx_desc
Definition: dpdk.h:195
static void garp_na_proc_callback(uword *dpdk_port)
Definition: common.c:234
enum @294 dpdk_send_garp_na_process_event_t
u32 hw_if_index
Definition: dpdk.h:155
void send_ip6_na(vlib_main_t *vm, vnet_hw_interface_t *hi)
#define DPDK_DEVICE_FLAG_ADMIN_UP
Definition: dpdk.h:172
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:221
dpdk_device_t * devices
Definition: dpdk.h:341
vlib_main_t * vm
Definition: buffer.c:283
#define clib_warning(format, args...)
Definition: error.h:59
dpdk_pmd_t pmd
Definition: dpdk.h:168
static vlib_node_registration_t send_garp_na_proc_node
(constructor) VLIB_REGISTER_NODE (send_garp_na_proc_node)
Definition: common.c:190
void dpdk_device_stop(dpdk_device_t *xd)
Definition: common.c:163
static int dpdk_port_state_callback_inline(uint8_t port_id, enum rte_eth_event_type type, void *param)
Definition: common.c:243
void dpdk_device_error(dpdk_device_t *xd, char *str, int rv)
Definition: common.c:31
#define ASSERT(truth)
unsigned int u32
Definition: types.h:88
struct rte_mempool ** pktmbuf_pools
Definition: dpdk.h:391
void dpdk_update_link_state(dpdk_device_t *xd, f64 now)
Definition: init.c:1252
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
u64 uword
Definition: types.h:112
unsigned short u16
Definition: types.h:57
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
#define VNET_SW_INTERFACE_FLAG_ERROR
Definition: interface.h:587
unsigned char u8
Definition: types.h:56
#define DPDK_DEVICE_FLAG_BOND_SLAVE
Definition: dpdk.h:179
#define clib_error_free(e)
Definition: error.h:86
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:143
i8 cpu_socket
Definition: dpdk.h:169
vnet_main_t * vnet_main
Definition: dpdk.h:387
u16 nb_tx_desc
Definition: dpdk.h:184
CLIB vectors are ubiquitous dynamically resized arrays with by user defined "headers".
#define DPDK_DEVICE_FLAG_BOND_SLAVE_UP
Definition: dpdk.h:180