net/failsafe: fix sub-device ownership race
[dpdk.git] / drivers / net / failsafe / failsafe_private.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright 2017 6WIND S.A.
3  * Copyright 2017 Mellanox Technologies, Ltd
4  */
5
6 #ifndef _RTE_ETH_FAILSAFE_PRIVATE_H_
7 #define _RTE_ETH_FAILSAFE_PRIVATE_H_
8
9 #include <sys/queue.h>
10 #include <pthread.h>
11
12 #include <rte_atomic.h>
13 #include <rte_dev.h>
14 #include <rte_ethdev_driver.h>
15 #include <rte_devargs.h>
16 #include <rte_interrupts.h>
17
18 #define FAILSAFE_DRIVER_NAME "Fail-safe PMD"
19 #define FAILSAFE_OWNER_NAME "Fail-safe"
20
21 #define PMD_FAILSAFE_MAC_KVARG "mac"
22 #define PMD_FAILSAFE_HOTPLUG_POLL_KVARG "hotplug_poll"
23 #define PMD_FAILSAFE_PARAM_STRING       \
24         "dev(<ifc>),"                   \
25         "exec(<shell command>),"        \
26         "fd(<fd number>),"              \
27         "mac=mac_addr,"                 \
28         "hotplug_poll=u64"              \
29         ""
30
31 #define FAILSAFE_HOTPLUG_DEFAULT_TIMEOUT_MS 2000
32
33 #define FAILSAFE_MAX_ETHPORTS 2
34 #define FAILSAFE_MAX_ETHADDR 128
35
36 #define DEVARGS_MAXLEN 4096
37
38 enum rxp_service_state {
39         SS_NO_SERVICE = 0,
40         SS_REGISTERED,
41         SS_READY,
42         SS_RUNNING,
43 };
44
45 /* TYPES */
46
47 struct rx_proxy {
48         /* epoll file descriptor */
49         int efd;
50         /* event vector to be used by epoll */
51         struct rte_epoll_event *evec;
52         /* rte service id */
53         uint32_t sid;
54         /* service core id */
55         uint32_t scid;
56         enum rxp_service_state sstate;
57 };
58
59 struct rxq {
60         struct fs_priv *priv;
61         uint16_t qid;
62         /* next sub_device to poll */
63         struct sub_device *sdev;
64         unsigned int socket_id;
65         int event_fd;
66         unsigned int enable_events:1;
67         struct rte_eth_rxq_info info;
68         rte_atomic64_t refcnt[];
69 };
70
71 struct txq {
72         struct fs_priv *priv;
73         uint16_t qid;
74         unsigned int socket_id;
75         struct rte_eth_txq_info info;
76         rte_atomic64_t refcnt[];
77 };
78
79 struct rte_flow {
80         TAILQ_ENTRY(rte_flow) next;
81         /* sub_flows */
82         struct rte_flow *flows[FAILSAFE_MAX_ETHPORTS];
83         /* flow description for synchronization */
84         struct rte_flow_desc *fd;
85 };
86
87 enum dev_state {
88         DEV_UNDEFINED,
89         DEV_PARSED,
90         DEV_PROBED,
91         DEV_ACTIVE,
92         DEV_STARTED,
93 };
94
95 struct fs_stats {
96         struct rte_eth_stats stats;
97         uint64_t timestamp;
98 };
99
100 struct sub_device {
101         /* Exhaustive DPDK device description */
102         struct sub_device *next;
103         struct rte_devargs devargs;
104         struct rte_bus *bus;
105         struct rte_device *dev;
106         struct rte_eth_dev *edev;
107         uint8_t sid;
108         /* Device state machine */
109         enum dev_state state;
110         /* Last stats snapshot passed to user */
111         struct fs_stats stats_snapshot;
112         /* Some device are defined as a command line */
113         char *cmdline;
114         /* Others are retrieved through a file descriptor */
115         char *fd_str;
116         /* fail-safe device backreference */
117         struct rte_eth_dev *fs_dev;
118         /* flag calling for recollection */
119         volatile unsigned int remove:1;
120         /* flow isolation state */
121         int flow_isolated:1;
122 };
123
124 struct fs_priv {
125         struct rte_eth_dev *dev;
126         /*
127          * Set of sub_devices.
128          * subs[0] is the preferred device
129          * any other is just another slave
130          */
131         struct sub_device *subs;
132         uint8_t subs_head; /* if head == tail, no subs */
133         uint8_t subs_tail; /* first invalid */
134         uint8_t subs_tx; /* current emitting device */
135         uint8_t current_probed;
136         /* flow mapping */
137         TAILQ_HEAD(sub_flows, rte_flow) flow_list;
138         /* current number of mac_addr slots allocated. */
139         uint32_t nb_mac_addr;
140         struct ether_addr mac_addrs[FAILSAFE_MAX_ETHADDR];
141         uint32_t mac_addr_pool[FAILSAFE_MAX_ETHADDR];
142         /* current capabilities */
143         struct rte_eth_dev_info infos;
144         struct rte_eth_dev_owner my_owner; /* Unique owner. */
145         struct rte_intr_handle intr_handle; /* Port interrupt handle. */
146         /*
147          * Fail-safe state machine.
148          * This level will be tracking state of the EAL and eth
149          * layer at large as defined by the user application.
150          * It will then steer the sub_devices toward the same
151          * synchronized state.
152          */
153         enum dev_state state;
154         struct rte_eth_stats stats_accumulator;
155         /*
156          * Rx interrupts/events proxy.
157          * The PMD issues Rx events to the EAL on behalf of its subdevices,
158          * it does that by registering an event-fd for each of its queues with
159          * the EAL. A PMD service thread listens to all the Rx events from the
160          * subdevices, when an Rx event is issued by a subdevice it will be
161          * caught by this service with will trigger an Rx event in the
162          * appropriate failsafe Rx queue.
163          */
164         struct rx_proxy rxp;
165         pthread_mutex_t hotplug_mutex;
166         /* Hot-plug mutex is locked by the alarm mechanism. */
167         volatile unsigned int alarm_lock:1;
168         unsigned int pending_alarm:1; /* An alarm is pending */
169         /* flow isolation state */
170         int flow_isolated:1;
171 };
172
173 /* FAILSAFE_INTR */
174
175 int failsafe_rx_intr_install(struct rte_eth_dev *dev);
176 void failsafe_rx_intr_uninstall(struct rte_eth_dev *dev);
177 int failsafe_rx_intr_install_subdevice(struct sub_device *sdev);
178 void failsafe_rx_intr_uninstall_subdevice(struct sub_device *sdev);
179
180 /* MISC */
181
182 int failsafe_hotplug_alarm_install(struct rte_eth_dev *dev);
183 int failsafe_hotplug_alarm_cancel(struct rte_eth_dev *dev);
184
185 /* RX / TX */
186
187 void set_burst_fn(struct rte_eth_dev *dev, int force_safe);
188
189 uint16_t failsafe_rx_burst(void *rxq,
190                 struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
191 uint16_t failsafe_tx_burst(void *txq,
192                 struct rte_mbuf **tx_pkts, uint16_t nb_pkts);
193
194 uint16_t failsafe_rx_burst_fast(void *rxq,
195                 struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
196 uint16_t failsafe_tx_burst_fast(void *txq,
197                 struct rte_mbuf **tx_pkts, uint16_t nb_pkts);
198
199 /* ARGS */
200
201 int failsafe_args_parse(struct rte_eth_dev *dev, const char *params);
202 void failsafe_args_free(struct rte_eth_dev *dev);
203 int failsafe_args_count_subdevice(struct rte_eth_dev *dev, const char *params);
204 int failsafe_args_parse_subs(struct rte_eth_dev *dev);
205
206 /* EAL */
207
208 int failsafe_eal_init(struct rte_eth_dev *dev);
209 int failsafe_eal_uninit(struct rte_eth_dev *dev);
210
211 /* ETH_DEV */
212
213 int failsafe_eth_dev_state_sync(struct rte_eth_dev *dev);
214 void failsafe_dev_remove(struct rte_eth_dev *dev);
215 void failsafe_stats_increment(struct rte_eth_stats *to,
216                                 struct rte_eth_stats *from);
217 int failsafe_eth_rmv_event_callback(uint16_t port_id,
218                                     enum rte_eth_event_type type,
219                                     void *arg, void *out);
220 int failsafe_eth_lsc_event_callback(uint16_t port_id,
221                                     enum rte_eth_event_type event,
222                                     void *cb_arg, void *out);
223 int failsafe_eth_new_event_callback(uint16_t port_id,
224                                     enum rte_eth_event_type event,
225                                     void *cb_arg, void *out);
226
227 /* GLOBALS */
228
229 extern const char pmd_failsafe_driver_name[];
230 extern const struct eth_dev_ops failsafe_ops;
231 extern const struct rte_flow_ops fs_flow_ops;
232 extern uint64_t hotplug_poll;
233 extern int mac_from_arg;
234
235 /* HELPERS */
236
237 /* dev: (struct rte_eth_dev *) fail-safe device */
238 #define PRIV(dev) \
239         ((struct fs_priv *)(dev)->data->dev_private)
240
241 /* sdev: (struct sub_device *) */
242 #define ETH(sdev) \
243         ((sdev)->edev)
244
245 /* sdev: (struct sub_device *) */
246 #define PORT_ID(sdev) \
247         (ETH(sdev)->data->port_id)
248
249 /* sdev: (struct sub_device *) */
250 #define SUB_ID(sdev) \
251         ((sdev)->sid)
252
253 /**
254  * Stateful iterator construct over fail-safe sub-devices:
255  * s:     (struct sub_device *), iterator
256  * i:     (uint8_t), increment
257  * dev:   (struct rte_eth_dev *), fail-safe ethdev
258  * state: (enum dev_state), minimum acceptable device state
259  */
260 #define FOREACH_SUBDEV_STATE(s, i, dev, state)          \
261         for (s = fs_find_next((dev), 0, state, &i);     \
262              s != NULL;                                 \
263              s = fs_find_next((dev), i + 1, state, &i))
264
265 /**
266  * Iterator construct over fail-safe sub-devices:
267  * s:   (struct sub_device *), iterator
268  * i:   (uint8_t), increment
269  * dev: (struct rte_eth_dev *), fail-safe ethdev
270  */
271 #define FOREACH_SUBDEV(s, i, dev)                       \
272         FOREACH_SUBDEV_STATE(s, i, dev, DEV_UNDEFINED)
273
274 /* dev: (struct rte_eth_dev *) fail-safe device */
275 #define PREFERRED_SUBDEV(dev) \
276         (&PRIV(dev)->subs[0])
277
278 /* dev: (struct rte_eth_dev *) fail-safe device */
279 #define TX_SUBDEV(dev)                                                    \
280         (PRIV(dev)->subs_tx >= PRIV(dev)->subs_tail                ? NULL \
281          : (PRIV(dev)->subs[PRIV(dev)->subs_tx].state < DEV_PROBED ? NULL \
282          : &PRIV(dev)->subs[PRIV(dev)->subs_tx]))
283
284 /**
285  * s:   (struct sub_device *)
286  * ops: (struct eth_dev_ops) member
287  */
288 #define SUBOPS(s, ops) \
289         (ETH(s)->dev_ops->ops)
290
291 /**
292  * Atomic guard
293  */
294
295 /**
296  * a: (rte_atomic64_t)
297  */
298 #define FS_ATOMIC_P(a) \
299         rte_atomic64_set(&(a), 1)
300
301 /**
302  * a: (rte_atomic64_t)
303  */
304 #define FS_ATOMIC_V(a) \
305         rte_atomic64_set(&(a), 0)
306
307 /**
308  * s: (struct sub_device *)
309  * i: uint16_t qid
310  */
311 #define FS_ATOMIC_RX(s, i) \
312         rte_atomic64_read( \
313          &((struct rxq *)((s)->fs_dev->data->rx_queues[i]))->refcnt[(s)->sid] \
314         )
315 /**
316  * s: (struct sub_device *)
317  * i: uint16_t qid
318  */
319 #define FS_ATOMIC_TX(s, i) \
320         rte_atomic64_read( \
321          &((struct txq *)((s)->fs_dev->data->tx_queues[i]))->refcnt[(s)->sid] \
322         )
323
324 #ifdef RTE_EXEC_ENV_BSDAPP
325 #define FS_THREADID_TYPE void*
326 #define FS_THREADID_FMT  "p"
327 #else
328 #define FS_THREADID_TYPE unsigned long
329 #define FS_THREADID_FMT  "lu"
330 #endif
331
332 extern int failsafe_logtype;
333
334 #define LOG__(l, m, ...) \
335         rte_log(RTE_LOG_ ## l, failsafe_logtype, \
336                 "net_failsafe: " m "%c", __VA_ARGS__)
337
338 #define LOG_(level, ...) LOG__(level, __VA_ARGS__, '\n')
339 #define DEBUG(...) LOG_(DEBUG, __VA_ARGS__)
340 #define INFO(...) LOG_(INFO, __VA_ARGS__)
341 #define WARN(...) LOG_(WARNING, __VA_ARGS__)
342 #define ERROR(...) LOG_(ERR, __VA_ARGS__)
343
344 /* inlined functions */
345
346 static inline struct sub_device *
347 fs_find_next(struct rte_eth_dev *dev,
348              uint8_t sid,
349              enum dev_state min_state,
350              uint8_t *sid_out)
351 {
352         struct sub_device *subs;
353         uint8_t tail;
354
355         subs = PRIV(dev)->subs;
356         tail = PRIV(dev)->subs_tail;
357         while (sid < tail) {
358                 if (subs[sid].state >= min_state)
359                         break;
360                 sid++;
361         }
362         *sid_out = sid;
363         if (sid >= tail)
364                 return NULL;
365         return &subs[sid];
366 }
367
368 /*
369  * Lock hot-plug mutex.
370  * is_alarm means that the caller is, for sure, the hot-plug alarm mechanism.
371  */
372 static inline int
373 fs_lock(struct rte_eth_dev *dev, unsigned int is_alarm)
374 {
375         int ret;
376
377         if (is_alarm) {
378                 ret = pthread_mutex_trylock(&PRIV(dev)->hotplug_mutex);
379                 if (ret) {
380                         DEBUG("Hot-plug mutex lock trying failed(%s), will try"
381                               " again later...", strerror(ret));
382                         return ret;
383                 }
384                 PRIV(dev)->alarm_lock = 1;
385         } else {
386                 ret = pthread_mutex_lock(&PRIV(dev)->hotplug_mutex);
387                 if (ret) {
388                         ERROR("Cannot lock mutex(%s)", strerror(ret));
389                         return ret;
390                 }
391         }
392         DEBUG("Hot-plug mutex was locked by thread %" FS_THREADID_FMT "%s",
393               (FS_THREADID_TYPE)pthread_self(),
394               PRIV(dev)->alarm_lock ? " by the hot-plug alarm" : "");
395         return ret;
396 }
397
398 /*
399  * Unlock hot-plug mutex.
400  * is_alarm means that the caller is, for sure, the hot-plug alarm mechanism.
401  */
402 static inline void
403 fs_unlock(struct rte_eth_dev *dev, unsigned int is_alarm)
404 {
405         int ret;
406         unsigned int prev_alarm_lock = PRIV(dev)->alarm_lock;
407
408         if (is_alarm) {
409                 RTE_ASSERT(PRIV(dev)->alarm_lock == 1);
410                 PRIV(dev)->alarm_lock = 0;
411         }
412         ret = pthread_mutex_unlock(&PRIV(dev)->hotplug_mutex);
413         if (ret)
414                 ERROR("Cannot unlock hot-plug mutex(%s)", strerror(ret));
415         else
416                 DEBUG("Hot-plug mutex was unlocked by thread %" FS_THREADID_FMT "%s",
417                       (FS_THREADID_TYPE)pthread_self(),
418                       prev_alarm_lock ? " by the hot-plug alarm" : "");
419 }
420
421 /*
422  * Switch emitting device.
423  * If banned is set, banned must not be considered for
424  * the role of emitting device.
425  */
426 static inline void
427 fs_switch_dev(struct rte_eth_dev *dev,
428               struct sub_device *banned)
429 {
430         struct sub_device *txd;
431         enum dev_state req_state;
432
433         req_state = PRIV(dev)->state;
434         txd = TX_SUBDEV(dev);
435         if (PREFERRED_SUBDEV(dev)->state >= req_state &&
436             PREFERRED_SUBDEV(dev) != banned) {
437                 if (txd != PREFERRED_SUBDEV(dev) &&
438                     (txd == NULL ||
439                      (req_state == DEV_STARTED) ||
440                      (txd && txd->state < DEV_STARTED))) {
441                         DEBUG("Switching tx_dev to preferred sub_device");
442                         PRIV(dev)->subs_tx = 0;
443                 }
444         } else if ((txd && txd->state < req_state) ||
445                    txd == NULL ||
446                    txd == banned) {
447                 struct sub_device *sdev = NULL;
448                 uint8_t i;
449
450                 /* Using acceptable device */
451                 FOREACH_SUBDEV_STATE(sdev, i, dev, req_state) {
452                         if (sdev == banned)
453                                 continue;
454                         DEBUG("Switching tx_dev to sub_device %d",
455                               i);
456                         PRIV(dev)->subs_tx = i;
457                         break;
458                 }
459                 if (i >= PRIV(dev)->subs_tail || sdev == NULL) {
460                         DEBUG("No device ready, deactivating tx_dev");
461                         PRIV(dev)->subs_tx = PRIV(dev)->subs_tail;
462                 }
463         } else {
464                 return;
465         }
466         set_burst_fn(dev, 0);
467         rte_wmb();
468 }
469
470 /*
471  * Adjust error value and rte_errno to the fail-safe actual error value.
472  */
473 static inline int
474 fs_err(struct sub_device *sdev, int err)
475 {
476         /* A device removal shouldn't be reported as an error. */
477         if (sdev->remove == 1 || err == -EIO)
478                 return rte_errno = 0;
479         return err;
480 }
481 #endif /* _RTE_ETH_FAILSAFE_PRIVATE_H_ */