Whamcloud - gitweb
LU-10391 lnet: handle discovery with Netlink
[fs/lustre-release.git] / lnet / include / lnet / lib-types.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lnet/include/lnet/lib-types.h
32  *
33  * Types used by the library side routines that do not need to be
34  * exposed to the user application
35  */
36
37 #ifndef __LNET_LIB_TYPES_H__
38 #define __LNET_LIB_TYPES_H__
39
40 #ifndef __KERNEL__
41 # error This include is only for kernel use.
42 #endif
43
44 #include <linux/kthread.h>
45 #include <linux/uio.h>
46 #include <linux/semaphore.h>
47 #include <linux/types.h>
48 #include <linux/kref.h>
49 #include <net/genetlink.h>
50
51 #include <uapi/linux/lnet/lnet-nl.h>
52 #include <uapi/linux/lnet/lnet-dlc.h>
53 #include <uapi/linux/lnet/lnetctl.h>
54 #include <uapi/linux/lnet/nidstr.h>
55
56 int libcfs_strid(struct lnet_processid *id, const char *str);
57
58 int cfs_match_nid_net(struct lnet_nid *nid, u32 net,
59                       struct list_head *net_num_list,
60                       struct list_head *addr);
61
62 /* Max payload size */
63 #define LNET_MAX_PAYLOAD        LNET_MTU
64
65 /** limit on the number of fragments in discontiguous MDs */
66 #define LNET_MAX_IOV    256
67
68 /*
69  * This is the maximum health value.
70  * All local and peer NIs created have their health default to this value.
71  */
72 #define LNET_MAX_HEALTH_VALUE 1000
73 #define LNET_MAX_SELECTION_PRIORITY UINT_MAX
74
75 /* forward refs */
76 struct lnet_libmd;
77
78 enum lnet_msg_hstatus {
79         LNET_MSG_STATUS_OK = 0,
80         LNET_MSG_STATUS_LOCAL_INTERRUPT,
81         LNET_MSG_STATUS_LOCAL_DROPPED,
82         LNET_MSG_STATUS_LOCAL_ABORTED,
83         LNET_MSG_STATUS_LOCAL_NO_ROUTE,
84         LNET_MSG_STATUS_LOCAL_ERROR,
85         LNET_MSG_STATUS_LOCAL_TIMEOUT,
86         LNET_MSG_STATUS_REMOTE_ERROR,
87         LNET_MSG_STATUS_REMOTE_DROPPED,
88         LNET_MSG_STATUS_REMOTE_TIMEOUT,
89         LNET_MSG_STATUS_NETWORK_TIMEOUT,
90         LNET_MSG_STATUS_END,
91 };
92
93 struct lnet_rsp_tracker {
94         /* chain on the waiting list */
95         struct list_head rspt_on_list;
96         /* cpt to lock */
97         int rspt_cpt;
98         /* nid of next hop */
99         struct lnet_nid rspt_next_hop_nid;
100         /* deadline of the REPLY/ACK */
101         ktime_t rspt_deadline;
102         /* parent MD */
103         struct lnet_handle_md rspt_mdh;
104 };
105
106 struct lnet_msg {
107         struct list_head        msg_activelist;
108         struct list_head        msg_list;       /* Q for credits/MD */
109
110         struct lnet_processid   msg_target;
111         /* Primary NID of the source. */
112         struct lnet_nid         msg_initiator;
113         /* where is it from, it's only for building event */
114         struct lnet_nid         msg_from;
115         __u32                   msg_type;
116
117         /*
118          * hold parameters in case message is with held due
119          * to discovery
120          */
121         struct lnet_nid         msg_src_nid_param;
122         struct lnet_nid         msg_rtr_nid_param;
123
124         /*
125          * Deadline for the message after which it will be finalized if it
126          * has not completed.
127          */
128         ktime_t                 msg_deadline;
129
130         /* The message health status. */
131         enum lnet_msg_hstatus   msg_health_status;
132         /* This is a recovery message */
133         bool                    msg_recovery;
134         /* the number of times a transmission has been retried */
135         int                     msg_retry_count;
136         /* flag to indicate that we do not want to resend this message */
137         bool                    msg_no_resend;
138
139         /* committed for sending */
140         unsigned int            msg_tx_committed:1;
141         /* CPT # this message committed for sending */
142         unsigned int            msg_tx_cpt:15;
143         /* committed for receiving */
144         unsigned int            msg_rx_committed:1;
145         /* CPT # this message committed for receiving */
146         unsigned int            msg_rx_cpt:15;
147         /* queued for tx credit */
148         unsigned int            msg_tx_delayed:1;
149         /* queued for RX buffer */
150         unsigned int            msg_rx_delayed:1;
151         /* ready for pending on RX delay list */
152         unsigned int            msg_rx_ready_delay:1;
153
154         unsigned int          msg_vmflush:1;      /* VM trying to free memory */
155         unsigned int          msg_target_is_router:1; /* sending to a router */
156         unsigned int          msg_routing:1;      /* being forwarded */
157         unsigned int          msg_ack:1;          /* ack on finalize (PUT) */
158         unsigned int          msg_sending:1;      /* outgoing message */
159         unsigned int          msg_receiving:1;    /* being received */
160         unsigned int          msg_txcredit:1;     /* taken an NI send credit */
161         unsigned int          msg_peertxcredit:1; /* taken a peer send credit */
162         unsigned int          msg_rtrcredit:1;    /* taken a globel router credit */
163         unsigned int          msg_peerrtrcredit:1; /* taken a peer router credit */
164         unsigned int          msg_onactivelist:1; /* on the activelist */
165         unsigned int          msg_rdma_get:1;
166
167         struct lnet_peer_ni  *msg_txpeer;         /* peer I'm sending to */
168         struct lnet_peer_ni  *msg_rxpeer;         /* peer I received from */
169
170         void                 *msg_private;
171         struct lnet_libmd    *msg_md;
172         /* the NI the message was sent or received over */
173         struct lnet_ni       *msg_txni;
174         struct lnet_ni       *msg_rxni;
175
176         unsigned int          msg_len;
177         unsigned int          msg_wanted;
178         unsigned int          msg_offset;
179         unsigned int          msg_niov;
180         struct bio_vec       *msg_kiov;
181
182         struct lnet_event       msg_ev;
183         struct lnet_hdr         msg_hdr;
184 };
185
186 struct lnet_libhandle {
187         struct list_head        lh_hash_chain;
188         __u64                   lh_cookie;
189 };
190
191 #define lh_entry(ptr, type, member) \
192         ((type *)((char *)(ptr)-(char *)(&((type *)0)->member)))
193
194 struct lnet_me {
195         struct list_head        me_list;
196         int                     me_cpt;
197         struct lnet_processid   me_match_id;
198         unsigned int            me_portal;
199         unsigned int            me_pos;         /* hash offset in mt_hash */
200         __u64                   me_match_bits;
201         __u64                   me_ignore_bits;
202         enum lnet_unlink        me_unlink;
203         struct lnet_libmd      *me_md;
204 };
205
206 struct lnet_libmd {
207         struct list_head         md_list;
208         struct lnet_libhandle    md_lh;
209         struct lnet_me          *md_me;
210         char                    *md_start;
211         unsigned int             md_offset;
212         unsigned int             md_length;
213         unsigned int             md_max_size;
214         int                      md_threshold;
215         int                      md_refcount;
216         unsigned int             md_options;
217         unsigned int             md_flags;
218         unsigned int             md_niov;       /* # frags at end of struct */
219         void                    *md_user_ptr;
220         struct lnet_rsp_tracker *md_rspt_ptr;
221         lnet_handler_t           md_handler;
222         struct lnet_handle_md    md_bulk_handle;
223         struct bio_vec           md_kiov[LNET_MAX_IOV];
224 };
225
226 #define LNET_MD_FLAG_ZOMBIE      BIT(0)
227 #define LNET_MD_FLAG_AUTO_UNLINK BIT(1)
228 #define LNET_MD_FLAG_ABORTED     BIT(2)
229 /* LNET_MD_FLAG_HANDLING is set when a non-unlink event handler
230  * is being called for an event relating to the md.
231  * It ensures only one such handler runs at a time.
232  * The final "unlink" event is only called once the
233  * md_refcount has reached zero, and this flag has been cleared,
234  * ensuring that it doesn't race with any other event handler
235  * call.
236  */
237 #define LNET_MD_FLAG_HANDLING    BIT(3)
238 #define LNET_MD_FLAG_DISCARD     BIT(4)
239 #define LNET_MD_FLAG_GPU         BIT(5) /**< Special mapping needs */
240
241 struct lnet_test_peer {
242         /* info about peers we are trying to fail */
243         struct list_head        tp_list;        /* ln_test_peers */
244         struct lnet_nid         tp_nid;         /* matching nid */
245         unsigned int            tp_threshold;   /* # failures to simulate */
246 };
247
248 #define LNET_COOKIE_TYPE_MD    1
249 #define LNET_COOKIE_TYPE_ME    2
250 #define LNET_COOKIE_TYPE_EQ    3
251 #define LNET_COOKIE_TYPE_BITS  2
252 #define LNET_COOKIE_MASK        ((1ULL << LNET_COOKIE_TYPE_BITS) - 1ULL)
253
254 struct netstrfns {
255         u32     nf_type;
256         char    *nf_name;
257         char    *nf_modname;
258         void    (*nf_addr2str)(u32 addr, char *str, size_t size);
259         void    (*nf_addr2str_size)(const __be32 *addr, size_t asize,
260                                     char *str, size_t size);
261         int     (*nf_str2addr)(const char *str, int nob, u32 *addr);
262         int     (*nf_str2addr_size)(const char *str, int nob,
263                                     __be32 *addr, size_t *asize);
264         int     (*nf_parse_addrlist)(char *str, int len,
265                                      struct list_head *list);
266         int     (*nf_print_addrlist)(char *buffer, int count,
267                                      struct list_head *list);
268         int     (*nf_match_addr)(u32 addr, struct list_head *list);
269         int     (*nf_min_max)(struct list_head *nidlist, u32 *min_nid,
270                               u32 *max_nid);
271 };
272
273 struct lnet_ni;                                  /* forward ref */
274 struct socket;
275
276 struct lnet_lnd {
277         /* fields initialized by the LND */
278         __u32                   lnd_type;
279
280         int  (*lnd_startup)(struct lnet_ni *ni);
281         void (*lnd_shutdown)(struct lnet_ni *ni);
282         int  (*lnd_ctl)(struct lnet_ni *ni, unsigned int cmd, void *arg);
283
284         /* In data movement APIs below, payload buffers are described as a set
285          * of 'niov' fragments which are in pages.
286          * The LND may NOT overwrite these fragment descriptors.
287          * An 'offset' and may specify a byte offset within the set of
288          * fragments to start from
289          */
290
291         /* Start sending a preformatted message.  'private' is NULL for PUT and
292          * GET messages; otherwise this is a response to an incoming message
293          * and 'private' is the 'private' passed to lnet_parse().  Return
294          * non-zero for immediate failure, otherwise complete later with
295          * lnet_finalize() */
296         int (*lnd_send)(struct lnet_ni *ni, void *private,
297                         struct lnet_msg *msg);
298
299         /* Start receiving 'mlen' bytes of payload data, skipping the following
300          * 'rlen' - 'mlen' bytes. 'private' is the 'private' passed to
301          * lnet_parse().  Return non-zero for immedaite failure, otherwise
302          * complete later with lnet_finalize().  This also gives back a receive
303          * credit if the LND does flow control. */
304         int (*lnd_recv)(struct lnet_ni *ni, void *private, struct lnet_msg *msg,
305                         int delayed, unsigned int niov,
306                         struct bio_vec *kiov,
307                         unsigned int offset, unsigned int mlen, unsigned int rlen);
308
309         /* lnet_parse() has had to delay processing of this message
310          * (e.g. waiting for a forwarding buffer or send credits).  Give the
311          * LND a chance to free urgently needed resources.  If called, return 0
312          * for success and do NOT give back a receive credit; that has to wait
313          * until lnd_recv() gets called.  On failure return < 0 and
314          * release resources; lnd_recv() will not be called. */
315         int (*lnd_eager_recv)(struct lnet_ni *ni, void *private,
316                               struct lnet_msg *msg, void **new_privatep);
317
318         /* notification of peer down */
319         void (*lnd_notify_peer_down)(struct lnet_nid *peer);
320
321         /* accept a new connection */
322         int (*lnd_accept)(struct lnet_ni *ni, struct socket *sock);
323
324         /* get dma_dev priority */
325         unsigned int (*lnd_get_dev_prio)(struct lnet_ni *ni,
326                                          unsigned int dev_idx);
327
328         /* Handle LND specific Netlink handling */
329         int (*lnd_nl_get)(int cmd, struct sk_buff *msg, int type, void *data);
330         int (*lnd_nl_set)(int cmd, struct nlattr *attr, int type, void *data);
331
332         const struct ln_key_list *lnd_keys;
333 };
334
335 struct lnet_tx_queue {
336         int                     tq_credits;     /* # tx credits free */
337         int                     tq_credits_min; /* lowest it's been */
338         int                     tq_credits_max; /* total # tx credits */
339         struct list_head        tq_delayed;     /* delayed TXs */
340 };
341
342 enum lnet_net_state {
343         /* set when net block is allocated */
344         LNET_NET_STATE_INIT = 0,
345         /* set when NIs in net are started successfully */
346         LNET_NET_STATE_ACTIVE,
347         /* set if all NIs in net are in FAILED state */
348         LNET_NET_STATE_INACTIVE,
349         /* set when shutting down a NET */
350         LNET_NET_STATE_DELETING
351 };
352
353 enum lnet_ni_state {
354         /* initial state when NI is created */
355         LNET_NI_STATE_INIT = 0,
356         /* set when NI is brought up */
357         LNET_NI_STATE_ACTIVE,
358         /* set when NI is being shutdown */
359         LNET_NI_STATE_DELETING,
360 };
361
362 #define LNET_NI_RECOVERY_PENDING        BIT(0)
363 #define LNET_NI_RECOVERY_FAILED         BIT(1)
364
365 enum lnet_stats_type {
366         LNET_STATS_TYPE_SEND = 0,
367         LNET_STATS_TYPE_RECV,
368         LNET_STATS_TYPE_DROP
369 };
370
371 struct lnet_comm_count {
372         atomic_t co_get_count;
373         atomic_t co_put_count;
374         atomic_t co_reply_count;
375         atomic_t co_ack_count;
376         atomic_t co_hello_count;
377 };
378
379 struct lnet_element_stats {
380         struct lnet_comm_count el_send_stats;
381         struct lnet_comm_count el_recv_stats;
382         struct lnet_comm_count el_drop_stats;
383 };
384
385 struct lnet_health_local_stats {
386         atomic_t hlt_local_interrupt;
387         atomic_t hlt_local_dropped;
388         atomic_t hlt_local_aborted;
389         atomic_t hlt_local_no_route;
390         atomic_t hlt_local_timeout;
391         atomic_t hlt_local_error;
392 };
393
394 struct lnet_health_remote_stats {
395         atomic_t hlt_remote_dropped;
396         atomic_t hlt_remote_timeout;
397         atomic_t hlt_remote_error;
398         atomic_t hlt_network_timeout;
399 };
400
401 struct lnet_net {
402         /* chain on the ln_nets */
403         struct list_head        net_list;
404
405         /* net ID, which is composed of
406          * (net_type << 16) | net_num.
407          * net_type can be one of the enumerated types defined in
408          * lnet/include/lnet/nidstr.h */
409         __u32                   net_id;
410
411         /* round robin selection */
412         __u32                   net_seq;
413
414         /* total number of CPTs in the array */
415         __u32                   net_ncpts;
416
417         /* cumulative CPTs of all NIs in this net */
418         __u32                   *net_cpts;
419
420         /* relative net selection priority */
421         __u32                   net_sel_priority;
422
423         /* network tunables */
424         struct lnet_ioctl_config_lnd_cmn_tunables net_tunables;
425
426         /*
427          * boolean to indicate that the tunables have been set and
428          * shouldn't be reset
429          */
430         bool                    net_tunables_set;
431
432         /* procedural interface */
433         const struct lnet_lnd   *net_lnd;
434
435         /* list of NIs on this net */
436         struct list_head        net_ni_list;
437
438         /* list of NIs being added, but not started yet */
439         struct list_head        net_ni_added;
440
441         /* dying LND instances */
442         struct list_head        net_ni_zombie;
443
444         /* when I was last alive */
445         time64_t                net_last_alive;
446
447         /* protects access to net_last_alive */
448         spinlock_t              net_lock;
449
450         /* list of router nids preferred for this network */
451         struct list_head        net_rtr_pref_nids;
452 };
453
454 /* Normally Netlink atttributes are defined in UAPI headers but Lustre is
455  * different in that the ABI is in a constant state of change unlike other
456  * Netlink interfaces. LNet sends a special header to help user land handle
457  * the differences.
458  */
459
460 /** enum lnet_err_atrrs               - LNet error netlink properties
461  *                                      For LNet request of multiple items
462  *                                      sometimes those items exist and
463  *                                      others don't. In the case the item
464  *                                      item doesn't exist we return the
465  *                                      error state.
466  *
467  * @LNET_ERR_ATTR_UNSPEC:               unspecified attribute to catch errors
468  *
469  * @LNET_ERR_ATTR_HDR:                  Name of the error header
470  *                                      (NLA_NUL_STRING)
471  * @LNET_ERR_ATTR_TYPE:                 Which LNet function since error is for
472  *                                      (NLA_STRING)
473  * @LNET_ERR_TYPE_ERRNO:                Error code for failure (NLA_S16)
474  * @LNET_ERR_DESCR:                     Complete error message (NLA_STRING)
475  */
476 enum lnet_err_attrs {
477         LNET_ERR_ATTR_UNSPEC = 0,
478
479         LNET_ERR_ATTR_HDR,
480         LNET_ERR_ATTR_TYPE,
481         LNET_ERR_ATTR_ERRNO,
482         LNET_ERR_ATTR_DESCR,
483         __LNET_ERR_ATTR_MAX_PLUS_ONE,
484 };
485
486 #define LNET_ERR_ATTR_MAX (__LNET_ERR_ATTR_MAX_PLUS_ONE - 1)
487
488 /** enum lnet_net_attrs               - LNet NI netlink properties
489  *                                      attributes that describe LNet 'NI'
490  *                                      These values are used to piece together
491  *                                      messages for sending and receiving.
492  *
493  * @LNET_NET_ATTR_UNSPEC:               unspecified attribute to catch errors
494  *
495  * @LNET_NET_ATTR_HDR:                  grouping for LNet net data (NLA_NUL_STRING)
496  * @LNET_NET_ATTR_TYPE:                 LNet net this NI belongs to (NLA_STRING)
497  * @LNET_NET_ATTR_LOCAL:                Local NI information (NLA_NESTED)
498  */
499 enum lnet_net_attrs {
500         LNET_NET_ATTR_UNSPEC = 0,
501
502         LNET_NET_ATTR_HDR,
503         LNET_NET_ATTR_TYPE,
504         LNET_NET_ATTR_LOCAL,
505
506         __LNET_NET_ATTR_MAX_PLUS_ONE,
507 };
508
509 #define LNET_NET_ATTR_MAX (__LNET_NET_ATTR_MAX_PLUS_ONE - 1)
510
511 /** enum lnet_net_local_ni_attrs              - LNet local NI netlink properties
512  *                                              attributes that describe local
513  *                                              NI
514  *
515  * @LNET_NET_LOCAL_NI_ATTR_UNSPEC:              unspecified attribute to catch
516  *                                              errors
517  *
518  * @LNET_NET_LOCAL_NI_ATTR_NID:                 NID that represents this NI
519  *                                              (NLA_STRING)
520  * @LNET_NET_LOCAL_NI_ATTR_STATUS:              State of this NI (NLA_STRING)
521  * @LNET_NET_LOCAL_NI_ATTR_INTERFACE:           Defines physical devices. used
522  *                                              to be many devices but no longer
523  *                                              (NLA_NESTED)
524  *
525  * @LNET_NET_LOCAL_NI_ATTR_STATS:               NI general msg stats (NLA_NESTED)
526  * @LNET_NET_LOCAL_NI_ATTR_UDSP_INFO:           NI UDSP state (NLA_NESTED)
527  * @LNET_NET_LOCAL_NI_ATTR_SEND_STATS:          NI send stats (NLA_NESTED)
528  * @LNET_NET_LOCAL_NI_ATTR_RECV_STATS:          NI recieved stats (NLA_NESTED)
529  * @LNET_NET_LOCAL_NI_ATTR_DROPPED_STATS:       NI dropped stats (NLA_NESTED)
530  * @LNET_NET_LOCAL_NI_ATTR_HEALTH_STATS:        NI health stats (NLA_NESTED)
531  * @LNET_NET_LOCAL_NI_ATTR_TUNABLES:            NI tunables (NLA_NESTED)
532  * @LNET_NET_LOCAL_NI_ATTR_LND_TUNABLES:        NI LND tunables (NLA_NESTED)
533  * @LNET_NET_LOCAL_NI_ATTR_DEV_CPT:             NI CPT interface bound to
534  *                                              (NLA_S32)
535  * @LNET_NET_LOCAL_NI_ATTR_CPTS:                CPT core used by this NI
536  *                                              (NLA_STRING)
537  */
538 enum lnet_net_local_ni_attrs {
539         LNET_NET_LOCAL_NI_ATTR_UNSPEC = 0,
540
541         LNET_NET_LOCAL_NI_ATTR_NID,
542         LNET_NET_LOCAL_NI_ATTR_STATUS,
543         LNET_NET_LOCAL_NI_ATTR_INTERFACE,
544
545         LNET_NET_LOCAL_NI_ATTR_STATS,
546         LNET_NET_LOCAL_NI_ATTR_UDSP_INFO,
547         LNET_NET_LOCAL_NI_ATTR_SEND_STATS,
548         LNET_NET_LOCAL_NI_ATTR_RECV_STATS,
549         LNET_NET_LOCAL_NI_ATTR_DROPPED_STATS,
550         LNET_NET_LOCAL_NI_ATTR_HEALTH_STATS,
551         LNET_NET_LOCAL_NI_ATTR_TUNABLES,
552         LNET_NET_LOCAL_NI_ATTR_LND_TUNABLES,
553         LNET_NET_LOCAL_NI_DEV_CPT,
554         LNET_NET_LOCAL_NI_CPTS,
555
556         __LNET_NET_LOCAL_NI_ATTR_MAX_PLUS_ONE,
557 };
558
559 #define LNET_NET_LOCAL_NI_ATTR_MAX (__LNET_NET_LOCAL_NI_ATTR_MAX_PLUS_ONE - 1)
560
561 /** enum lnet_net_local_ni_intf_attrs - LNet NI device netlink properties
562  *                                      attribute that reports the device
563  *                                      in use
564  *
565  * @LNET_NET_LOCAL_NI_INTF_ATTR_UNSPEC: unspecified attribute to catch errors
566  *
567  * @LNET_NET_LOCAL_NI_INTF_ATTR_TYPE:   Physcial device interface (NLA_STRING)
568  */
569 enum lnet_net_local_ni_intf_attrs {
570         LNET_NET_LOCAL_NI_INTF_ATTR_UNSPEC = 0,
571
572         LNET_NET_LOCAL_NI_INTF_ATTR_TYPE,
573
574         __LNET_NET_LOCAL_NI_INTF_ATTR_MAX_PLUS_ONE,
575 };
576
577 #define LNET_NET_LOCAL_NI_INTF_ATTR_MAX (__LNET_NET_LOCAL_NI_INTF_ATTR_MAX_PLUS_ONE - 1)
578
579 /** enum lnet_net_local_ni_stats_attrs        - LNet NI netlink properties
580  *                                              attributes that reports the
581  *                                              network traffic stats
582  *
583  * @LNET_NET_LOCAL_NI_STATS_ATTR_UNSPEC:        unspecified attribute to catch
584  *                                              errors
585  *
586  * @LNET_NET_LOCAL_NI_STATS_ATTR_SEND_COUNT:    Number of sent messages
587  *                                              (NLA_U32)
588  * @LNET_NET_LOCAL_NI_STATS_ATTR_RECV_COUNT:    Number of recieved messages
589  *                                              (NLA_U32)
590  * @LNET_NET_LOCAL_NI_STATS_ATTR_DROP_COUNT:    Number of dropped messages
591  *                                              (NLA_U32)
592  */
593 enum lnet_net_local_ni_stats_attrs {
594         LNET_NET_LOCAL_NI_STATS_ATTR_UNSPEC = 0,
595
596         LNET_NET_LOCAL_NI_STATS_ATTR_SEND_COUNT,
597         LNET_NET_LOCAL_NI_STATS_ATTR_RECV_COUNT,
598         LNET_NET_LOCAL_NI_STATS_ATTR_DROP_COUNT,
599         __LNET_NET_LOCAL_NI_STATS_ATTR_MAX_PLUS_ONE,
600 };
601
602 #define LNET_NET_LOCAL_NI_STATS_ATTR_MAX (__LNET_NET_LOCAL_NI_STATS_ATTR_MAX_PLUS_ONE - 1)
603
604 /** enum lnet_net_local_ni_msg_stats_attrs            - LNet NI netlink
605  *                                                      properties attributes
606  *                                                      that reports the message
607  *                                                      type traffic stats
608  *
609  * @LNET_NET_LOCAL_NI_MSG_STATS_ATTR_UNSPEC:            unspecified attribute
610  *                                                      to catch errors
611  *
612  * @LNET_NET_LOCAL_NI_MSG_STATS_ATTR_PUT_COUNT:         Number of PUT messages
613  *                                                      (NLA_U32)
614  * @LNET_NET_LOCAL_NI_MSG_STATS_ATTR_GET_COUNT:         Number of GET messages
615  *                                                      (NLA_U32)
616  * @LNET_NET_LOCAL_NI_MSG_STATS_ATTR_REPLY_COUNT:       Number of REPLY messages
617  *                                                      (NLA_U32)
618  * @LNET_NET_LOCAL_NI_MSG_STATS_ATTR_ACK_COUNT:         Number of ACK messages
619  *                                                      (NLA_U32)
620  * @LNET_NET_LOCAL_NI_MSG_STATS_ATTR_HELLO_COUNT:       Number of HELLO messages
621  *                                                      (NLA_U32)
622  */
623 enum lnet_net_local_ni_msg_stats_attrs {
624         LNET_NET_LOCAL_NI_MSG_STATS_ATTR_UNSPEC = 0,
625
626         LNET_NET_LOCAL_NI_MSG_STATS_ATTR_PUT_COUNT,
627         LNET_NET_LOCAL_NI_MSG_STATS_ATTR_GET_COUNT,
628         LNET_NET_LOCAL_NI_MSG_STATS_ATTR_REPLY_COUNT,
629         LNET_NET_LOCAL_NI_MSG_STATS_ATTR_ACK_COUNT,
630         LNET_NET_LOCAL_NI_MSG_STATS_ATTR_HELLO_COUNT,
631         __LNET_NET_LOCAL_NI_MSG_STATS_ATTR_MAX_PLUS_ONE,
632 };
633
634 #define LNET_NET_LOCAL_NI_MSG_STATS_ATTR_MAX (__LNET_NET_LOCAL_NI_MSG_STATS_ATTR_MAX_PLUS_ONE - 1)
635
636 /** enum lnet_net_local_ni_health_stats_attrs         - LNet NI netlink
637  *                                                      properties attributes
638  *                                                      that reports how
639  *                                                      healthly it is.
640  *
641  * @LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_UNSPEC:         unspecified attribute
642  *                                                      to catch errors
643  *
644  * @LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_FATAL_ERRORS:   How many fatal errors
645  *                                                      (NLA_S32)
646  * @LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_LEVEL:          How healthly is NI
647  *                                                      (NLA_S32)
648  * @LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_INTERRUPTS:     How many interrupts
649  *                                                      happened (NLA_U32)
650  * @LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_DROPPED:        How much traffic has
651  *                                                      been dropped (NLA_U32)
652  * @LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_ABORTED:        How many aborts
653  *                                                      happened (NLA_U32)
654  * @LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_NO_ROUTE:       How often routing broke
655  *                                                      (NLA_U32)
656  * @LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_TIMEOUTS:       How often timeouts
657  *                                                      occurred (NLA_U32)
658  * @LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_ERROR:          The number of errors
659  *                                                      reported (NLA_U32)
660  * @LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_PING_COUNT:     Number of successful
661  *                                                      ping (NLA_U32)
662  * @LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_NEXT_PING:      Number of next pings
663  *                                                      (NLA_U64)
664  */
665 enum lnet_net_local_ni_health_stats_attrs {
666         LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_UNSPEC = 0,
667         LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_PAD = LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_UNSPEC,
668
669         LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_FATAL_ERRORS,
670         LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_LEVEL,
671         LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_INTERRUPTS,
672         LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_DROPPED,
673         LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_ABORTED,
674         LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_NO_ROUTE,
675         LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_TIMEOUTS,
676         LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_ERROR,
677         LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_PING_COUNT,
678         LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_NEXT_PING,
679         __LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_MAX_PLUS_ONE,
680 };
681 #define LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_MAX (__LNET_NET_LOCAL_NI_HEALTH_STATS_ATTR_MAX_PLUS_ONE - 1)
682
683 /** enum lnet_net_local_ni_tunables_attrs             - LNet NI tunables
684  *                                                      netlink properties.
685  *                                                      Performance options
686  *                                                      for your NI.
687  *
688  * @LNET_NET_LOCAL_NI_TUNABLES_ATTR_UNSPEC:             unspecified attribute
689  *                                                      to catch errors
690  *
691  * @LNET_NET_LOCAL_NI_TUNABLES_ATTR_PEER_TIMEOUT:       Timeout for LNet peer.
692  *                                                      (NLA_S32)
693  * @LNET_NET_LOCAL_NI_TUNABLES_ATTR_PEER_CREDITS:       Credits for LNet peer.
694  *                                                      (NLA_S32)
695  * @LNET_NET_LOCAL_NI_TUNABLES_ATTR_PEER_BUFFER_CREDITS: Buffer credits for
696  *                                                       LNet peer. (NLA_S32)
697  * @LNET_NET_LOCAL_NI_TUNABLES_ATTR_CREDITS:            Credits for LNet peer
698  *                                                      TX. (NLA_S32)
699  */
700 enum lnet_net_local_ni_tunables_attr {
701         LNET_NET_LOCAL_NI_TUNABLES_ATTR_UNSPEC = 0,
702
703         LNET_NET_LOCAL_NI_TUNABLES_ATTR_PEER_TIMEOUT,
704         LNET_NET_LOCAL_NI_TUNABLES_ATTR_PEER_CREDITS,
705         LNET_NET_LOCAL_NI_TUNABLES_ATTR_PEER_BUFFER_CREDITS,
706         LNET_NET_LOCAL_NI_TUNABLES_ATTR_CREDITS,
707         __LNET_NET_LOCAL_NI_TUNABLES_ATTR_MAX_PLUS_ONE,
708 };
709
710 #define LNET_NET_LOCAL_NI_TUNABLES_ATTR_MAX (__LNET_NET_LOCAL_NI_TUNABLES_ATTR_MAX_PLUS_ONE - 1)
711
712 /** enum lnet_route_attrs                     - LNet route netlink
713  *                                              attributes that describe
714  *                                              LNet routes
715  *
716  * @LNET_ROUTE_ATTR_UNSPEC:                     unspecified attribute to
717  *                                              catch errors
718  *
719  * @LNET_ROUTE_ATTR_HDR:                        grouping for LNet route data
720  *                                              (NLA_NUL_STRING)
721  * @LNET_ROUTE_ATTR_NET:                        LNet remote network reached
722  *                                              by the route (NLA_STRING)
723  * @LNET_ROUTE_ATTR_GATEWAY:                    gateway for the route
724  *                                              (NLA_STRING)
725  * @LNET_ROUTE_ATTR_HOP:                        route hop count (NLA_S32)
726  *
727  * @LNET_ROUTE_ATTR_PRIORITY:                   rank of this network path
728  *                                              (NLA_U32)
729  * @LNET_ROUTE_ATTR_HEALTH_SENSITIVITY:         rate of health value change
730  *                                              for the route (NLA_U32)
731  * @LNET_ROUTE_ATTR_STATE:                      state of route (NLA_STRING)
732  *
733  * @LNET_ROUTE_ATTR_TYPE:                       Report if we support multi-hop
734  *                                              (NLA_STRING)
735  */
736 enum lnet_route_attrs {
737         LNET_ROUTE_ATTR_UNSPEC = 0,
738
739         LNET_ROUTE_ATTR_HDR,
740         LNET_ROUTE_ATTR_NET,
741         LNET_ROUTE_ATTR_GATEWAY,
742         LNET_ROUTE_ATTR_HOP,
743         LNET_ROUTE_ATTR_PRIORITY,
744         LNET_ROUTE_ATTR_HEALTH_SENSITIVITY,
745         LNET_ROUTE_ATTR_STATE,
746         LNET_ROUTE_ATTR_TYPE,
747         __LNET_ROUTE_ATTR_MAX_PLUS_ONE,
748 };
749
750 #define LNET_ROUTE_ATTR_MAX (__LNET_ROUTE_ATTR_MAX_PLUS_ONE - 1)
751
752 /** enum lnet_peer_ni_attrs           - LNet peer NI netlink properties
753  *                                      attributes that describe LNet peer 'NI'.
754  *                                      These values are used to piece together
755  *                                      messages for sending and receiving.
756  *
757  * @LNET_PEER_NI_ATTR_UNSPEC:           unspecified attribute to catch errors
758  *
759  * @LNET_PEER_NI_ATTR_HDR:              grouping for LNet peer data
760  *                                      (NLA_NUL_STRING)
761  * @LNET_PEER_NI_ATTR_PRIMARY_NID:      primary NID of this peer (NLA_STRING)
762  * @LNET_PEER_NI_ATTR_MULTIRAIL:        Do we support MultiRail ? (NLA_FLAG)
763  * @LNET_PEER_NI_ATTR_STATE:            Bitfields of the peer state (NLA_U32)
764  * @LNET_PEER_NI_ATTR_PEER_NI_LIST:     List of remote peers we can reach
765  *                                      (NLA_NESTED)
766  */
767 enum lnet_peer_ni_attrs {
768         LNET_PEER_NI_ATTR_UNSPEC = 0,
769
770         LNET_PEER_NI_ATTR_HDR,
771         LNET_PEER_NI_ATTR_PRIMARY_NID,
772         LNET_PEER_NI_ATTR_MULTIRAIL,
773         LNET_PEER_NI_ATTR_STATE,
774         LNET_PEER_NI_ATTR_PEER_NI_LIST,
775         __LNET_PEER_NI_ATTR_MAX_PLUS_ONE,
776 };
777
778 #define LNET_PEER_NI_ATTR_MAX (__LNET_PEER_NI_ATTR_MAX_PLUS_ONE - 1)
779
780 /** enum lnet_peer_ni_list_attrs              - LNet remote peer netlink
781  *                                              properties attributes that
782  *                                              describe remote LNet peer 'NI'.
783  *                                              These values are used to piece
784  *                                              together messages for sending
785  *                                              and receiving.
786  *
787  * @LNET_PEER_NI_LIST_ATTR_UNSPEC:              unspecified attribute to catch
788  *                                              errors
789  *
790  * @LNET_PEER_NI_LIST_ATTR_NID:                 remote peer's NID (NLA_STRING)
791  * @LNET_PEER_NI_LIST_ATTR_UDSP_INFO:           remote peer's UDSP info
792  *                                              (NLA_NESTED)
793  * @LNET_PEER_NI_LIST_ATTR_STATE:               state of remote peer
794  *                                              (NLA_STRING)
795  *
796  * @LNET_PEER_NI_LIST_ATTR_MAX_TX_CREDITS:      Maximum TX credits for remote
797  *                                              peer (NLA_U32)
798  * @LNET_PEER_NI_LIST_ATTR_CUR_TX_CREDITS:      Current TX credits for remote
799  *                                              peer (NLA_U32)
800  * @LNET_PEER_NI_LIST_ATTR_MIN_TX_CREDITS:      Minimum TX credits for remote
801  *                                              peer (NLA_U32)
802  * @LNET_PEER_NI_LIST_ATTR_QUEUE_BUF_COUNT:     Size of TX queue buffer
803  *                                              (NLA_U32)
804  * @LNET_PEER_NI_LIST_ATTR_CUR_RTR_CREDITS:     Current router credits for
805  *                                              remote peer (NLA_U32)
806  * @LNET_PEER_NI_LIST_ATTR_MIN_RTR_CREDITS:     Minimum router credits for
807  *                                              remote peer (NLA_U32)
808  * @LNET_PEER_NI_LIST_ATTR_REFCOUNT:            Remote peer reference count
809  *                                              (NLA_U32)
810  * @LNET_PEER_NI_LIST_ATTR_STATS_COUNT:         Remote peer general stats,
811  *                                              reports sent, recieved, and
812  *                                              dropped packets. (NLA_NESTED)
813  *
814  * @LNET_PEER_NI_LIST_ATTR_SENT_STATS:          Remote peer sent stats,
815  *                                              reports gets, puts, acks, and
816  *                                              hello packets. (NLA_NESTED)
817  * @LNET_PEER_NI_LIST_ATTR_RECV_STATS:          Remote peer recieved stats,
818  *                                              reports gets, puts, acks, and
819  *                                              hello packets. (NLA_NESTED)
820  * @LNET_PEER_NI_LIST_ATTR_DROP_STATS:          Remote peer dropped stats,
821  *                                              reports gets, puts, acks, and
822  *                                              hello packets. (NLA_NESTED)
823  * @LNET_PEER_NI_LIST_ATTR_HEALTH_STATS:        Report the stats about the
824  *                                              health of the remote peer.
825  *                                              (NLA_NESTED)
826  */
827 enum lnet_peer_ni_list_attr {
828         LNET_PEER_NI_LIST_ATTR_UNSPEC = 0,
829
830         LNET_PEER_NI_LIST_ATTR_NID,
831         LNET_PEER_NI_LIST_ATTR_UDSP_INFO,
832         LNET_PEER_NI_LIST_ATTR_STATE,
833
834         LNET_PEER_NI_LIST_ATTR_MAX_TX_CREDITS,
835         LNET_PEER_NI_LIST_ATTR_CUR_TX_CREDITS,
836         LNET_PEER_NI_LIST_ATTR_MIN_TX_CREDITS,
837         LNET_PEER_NI_LIST_ATTR_QUEUE_BUF_COUNT,
838         LNET_PEER_NI_LIST_ATTR_CUR_RTR_CREDITS,
839         LNET_PEER_NI_LIST_ATTR_MIN_RTR_CREDITS,
840         LNET_PEER_NI_LIST_ATTR_REFCOUNT,
841         LNET_PEER_NI_LIST_ATTR_STATS_COUNT,
842
843         LNET_PEER_NI_LIST_ATTR_SENT_STATS,
844         LNET_PEER_NI_LIST_ATTR_RECV_STATS,
845         LNET_PEER_NI_LIST_ATTR_DROP_STATS,
846         LNET_PEER_NI_LIST_ATTR_HEALTH_STATS,
847
848         __LNET_PEER_NI_LIST_ATTR_MAX_PLUS_ONE,
849 };
850
851 #define LNET_PEER_NI_LIST_ATTR_MAX (__LNET_PEER_NI_LIST_ATTR_MAX_PLUS_ONE - 1)
852
853 /** enum lnet_peer_ni_list_stats_count                - LNet remote peer traffic
854  *                                                      stats netlink properties
855  *                                                      attributes that provide
856  *                                                      traffic stats on the
857  *                                                      remote LNet peer 'NI'.
858  *                                                      These values are used to
859  *                                                      piece together messages
860  *                                                      for sending and receiving.
861  *
862  * @LNET_PEER_NI_LIST_STATS_COUNT_ATTR_UNSPEC:          unspecified attribute to
863  *                                                      catch errors
864  *
865  * @LNET_PEER_NI_LIST_STATS_COUNT_ATTR_SEND_COUNT:      Number of sent packets for
866  *                                                      remote peer (NLA_U32)
867  * @LNET_PEER_NI_LIST_STATS_COUNT_ATTR_RECV_COUNT:      Numebr of recieved packets
868  *                                                      for remote peer (NLA_U32)
869  * @LNET_PEER_NI_LIST_STATS_COUNT_ATTR_DROP_COUNT:      Number of dropped packets
870  *                                                      for remote peer (NLA_U32)
871  */
872 enum lnet_peer_ni_list_stats_count {
873         LNET_PEER_NI_LIST_STATS_COUNT_ATTR_UNSPEC = 0,
874
875         LNET_PEER_NI_LIST_STATS_COUNT_ATTR_SEND_COUNT,
876         LNET_PEER_NI_LIST_STATS_COUNT_ATTR_RECV_COUNT,
877         LNET_PEER_NI_LIST_STATS_COUNT_ATTR_DROP_COUNT,
878         __LNET_PEER_NI_LIST_STATS_COUNT_ATTR_MAX_PLUS_ONE,
879 };
880
881 #define LNET_PEER_NI_LIST_STATS_COUNT_ATTR_MAX (__LNET_PEER_NI_LIST_STATS_COUNT_ATTR_MAX_PLUS_ONE - 1)
882
883 /** enum lnet_peer_ni_list_stats              - LNet remote peer stats netlink
884  *                                              properties attributes that
885  *                                              provide stats on the remote
886  *                                              LNet peer 'NI'. These values are
887  *                                              used to piece together messages
888  *                                              for sending and receiving.
889  *
890  * @LNET_PEER_NI_LIST_STATS_ATTR_UNSPEC:        unspecified attribute to catch
891  *                                              errors
892  *
893  * @LNET_PEER_NI_LIST_STATS_ATTR_PUT:           PUT message count for remote
894  *                                              peer (NLA_U32)
895  * @LNET_PEER_NI_LIST_STATS_ATTR_GET:           GET message count for remote
896  *                                              peer (NLA_U32)
897  * @LNET_PEER_NI_LIST_STATS_ATTR_REPLY:         REPLY message count for remote
898  *                                              peer (NLA_U32)
899  * @LNET_PEER_NI_LIST_STATS_ATTR_ACK:           ACK message count for remote
900  *                                              peer (NLA_U32)
901  * @LNET_PEER_NI_LIST_STATS_ATTR_HEALTH:        HELLO message count for remote
902  *                                              peer (NLA_U32)
903  */
904 enum lnet_peer_ni_list_stats {
905         LNET_PEER_NI_LIST_STATS_ATTR_UNSPEC = 0,
906
907         LNET_PEER_NI_LIST_STATS_ATTR_PUT,
908         LNET_PEER_NI_LIST_STATS_ATTR_GET,
909         LNET_PEER_NI_LIST_STATS_ATTR_REPLY,
910         LNET_PEER_NI_LIST_STATS_ATTR_ACK,
911         LNET_PEER_NI_LIST_STATS_ATTR_HELLO,
912         __LNET_PEER_NI_LIST_STATS_ATTR_MAX_PLUS_ONE,
913 };
914
915 #define LNET_PEER_NI_LIST_STATS_ATTR_MAX (__LNET_PEER_NI_LIST_STATS_ATTR_MAX_PLUS_ONE - 1)
916
917 /** enum lnet_peer_ni_list_health_stats               - LNet remote peer health
918  *                                                      stats netlink properties
919  *                                                      attributes that provide
920  *                                                      stats on the health of a
921  *                                                      remote LNet peer 'NI'.
922  *                                                      These values are used to
923  *                                                      piece together messages
924  *                                                      for sending and receiving.
925  *
926  * @LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_UNSPEC:         unspecified attribute to
927  *                                                      catch errors
928  *
929  * @LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_VALUE:          Health level of remote
930  *                                                      peer (NLA_S32)
931  * @LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_DROP:           drop message state for
932  *                                                      remote peer (NLA_U32)
933  * @LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_TIMEOUT:        timeout set for remote
934  *                                                      peer (NLA_U32)
935  * @LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_ERROR:          total errors for remote
936  *                                                      peer (NLA_U32)
937  * @LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_NETWORK_TIMEOUT: network timeout for
938  *                                                       remote peer (NLA_U32)
939  * @LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_PING_COUNT:     number of pings for
940  *                                                      remote peer (NLA_U32)
941  * @LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_NEXT_PING:      timestamp for next ping
942  *                                                      sent by remote peer
943  *                                                      (NLA_S64)
944  */
945 enum lnet_peer_ni_list_health_stats {
946         LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_UNSPEC = 0,
947         LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_PAD = LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_UNSPEC,
948
949         LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_VALUE,
950         LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_DROPPED,
951         LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_TIMEOUT,
952         LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_ERROR,
953         LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_NETWORK_TIMEOUT,
954         LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_PING_COUNT,
955         LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_NEXT_PING,
956
957         __LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_MAX_PLUS_ONE,
958 };
959
960 #define LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_MAX (__LNET_PEER_NI_LIST_HEALTH_STATS_ATTR_MAX_PLUS_ONE - 1)
961
962 /** LNet netlink ping API */
963
964 /** enum lnet_ping_attr                               - LNet ping netlink properties
965  *                                                      attributes to describe ping format
966  *                                                      These values are used to piece together
967  *                                                      messages for sending and receiving.
968  *
969  * @LNET_PING_ATTR_UNSPEC:                              unspecified attribute to catch errors
970  *
971  * @LNET_PING_ATTR_HDR:                                 grouping for LNet ping  data (NLA_NUL_STRING)
972  * @LNET_PING_ATTR_PRIMARY_NID:                         Source NID for ping request (NLA_STRING)
973  * @LNET_PING_ATTR_ERRNO:                               error code if we fail to ping (NLA_S16)
974  * @LNET_PING_ATTR_MULTIRAIL:                           Report if MR is supported (NLA_FLAG)
975  * @LNET_PING_ATTR_PEER_NI_LIST:                        List of peer NI's (NLA_NESTED)
976  */
977 enum lnet_ping_attr {
978         LNET_PING_ATTR_UNSPEC = 0,
979
980         LNET_PING_ATTR_HDR,
981         LNET_PING_ATTR_PRIMARY_NID,
982         LNET_PING_ATTR_ERRNO,
983         LNET_PING_ATTR_MULTIRAIL,
984         LNET_PING_ATTR_PEER_NI_LIST,
985         __LNET_PING_ATTR_MAX_PLUS_ONE,
986 };
987
988 #define LNET_PING_ATTR_MAX (__LNET_PING_ATTR_MAX_PLUS_ONE - 1)
989
990 /** enum lnet_ping_peer_ni_attr               - LNet peer ni information reported by
991  *                                                      ping command. A list of these are
992  *                                                      returned with a ping request.
993  *
994  * @LNET_PING_PEER_NI_ATTR_UNSPEC:                      unspecified attribute to catch errrors
995  *
996  * @LNET_PING_PEER_NI_ATTR_NID:                         NID address of peer NI. (NLA_STRING)
997  */
998 enum lnet_ping_peer_ni_attr {
999         LNET_PING_PEER_NI_ATTR_UNSPEC = 0,
1000
1001         LNET_PING_PEER_NI_ATTR_NID,
1002         __LNET_PING_PEER_NI_ATTR_MAX_PLUS_ONE,
1003 };
1004
1005 #define LNET_PING_PEER_NI_ATTR_MAX (__LNET_PING_PEER_NI_ATTR_MAX_PLUS_ONE - 1)
1006
1007 /** enum lnet_udsp_info_attr                          - LNet UDSP information reported for
1008  *                                                      some subsystem that tracks it.
1009  *
1010  * @LNET_UDSP_INFO_ATTR_UNSPEC:                         unspecified attribute to catch errors
1011  *
1012  * @LNET_UDSP_INFO_ATTR_NET_PRIORITY,                   LNet net priority in selection.
1013  *                                                      (NLA_S32)
1014  * @LNET_UDSP_INFO_ATTR_NID_PRIORITY,                   NID's priority in selection.
1015  *                                                      (NLA_S32)
1016  * @LNET_UDSP_INFO_ATTR_PREF_RTR_NIDS_LIST:             Which gateway's are preferred.
1017  *                                                      (NLA_NESTED)
1018  * @LNET_UDSP_INFO_ATTR_PREF_NIDS_LIST:                 Which NIDs are preferred.
1019  *                                                      (NLA_NESTED)
1020  */
1021 enum lnet_udsp_info_attr {
1022         LNET_UDSP_INFO_ATTR_UNSPEC = 0,
1023
1024         LNET_UDSP_INFO_ATTR_NET_PRIORITY,
1025         LNET_UDSP_INFO_ATTR_NID_PRIORITY,
1026         LNET_UDSP_INFO_ATTR_PREF_RTR_NIDS_LIST,
1027         LNET_UDSP_INFO_ATTR_PREF_NIDS_LIST,
1028         __LNET_UDSP_INFO_ATTR_MAX_PLUS_ONE,
1029 };
1030
1031 #define LNET_UDSP_INFO_ATTR_MAX (__LNET_UDSP_INFO_ATTR_MAX_PLUS_ONE - 1)
1032
1033 /** enum lnet_udsp_info_pref_nids_attr                - LNet UDSP information reported for
1034  *                                                      some subsystem that tracks it.
1035  *
1036  * @LNET_UDSP_INFO_PREF_NIDS_ATTR_UNSPEC:               unspecified attribute to catch errors
1037  *
1038  * @LNET_UDSP_INFO_PREF_NIDS_ATTR_INDEX,                UDSP prority NIDs label
1039  *                                                      (NLA_NUL_STRING)
1040  * @LNET_UDSP_INFO_PREF_NIDS_ATTR_NID,                  UDSP prority NID (NLA_STRING)
1041  */
1042 enum lnet_udsp_info_pref_nids_attr {
1043         LNET_UDSP_INFO_PREF_NIDS_ATTR_UNSPEC = 0,
1044
1045         LNET_UDSP_INFO_PREF_NIDS_ATTR_INDEX,
1046         LNET_UDSP_INFO_PREF_NIDS_ATTR_NID,
1047         __LNET_UDSP_INFO_PREF_NIDS_ATTR_MAX_PLUS_ONE,
1048 };
1049
1050 #define LNET_UDSP_INFO_PREF_NIDS_ATTR_MAX (__LNET_UDSP_INFO_PREF_NIDS_ATTR_MAX_PLUS_ONE - 1)
1051
1052 struct lnet_ni {
1053         /* chain on the lnet_net structure */
1054         struct list_head        ni_netlist;
1055
1056         /* chain on the recovery queue */
1057         struct list_head        ni_recovery;
1058
1059         /* MD handle for recovery ping */
1060         struct lnet_handle_md   ni_ping_mdh;
1061
1062         spinlock_t              ni_lock;
1063
1064         /* number of CPTs */
1065         int                     ni_ncpts;
1066
1067         /* bond NI on some CPTs */
1068         __u32                   *ni_cpts;
1069
1070         /* interface's NID */
1071         struct lnet_nid         ni_nid;
1072
1073         /* instance-specific data */
1074         void                    *ni_data;
1075
1076         /* per ni credits */
1077         atomic_t                ni_tx_credits;
1078
1079         /* percpt TX queues */
1080         struct lnet_tx_queue    **ni_tx_queues;
1081
1082         /* percpt reference count */
1083         int                     **ni_refs;
1084
1085         /* pointer to parent network */
1086         struct lnet_net         *ni_net;
1087
1088         /* my health status */
1089         u32                     *ni_status;
1090
1091         /* NI FSM. Protected by lnet_ni_lock() */
1092         enum lnet_ni_state      ni_state;
1093
1094         /* Recovery state. Protected by lnet_ni_lock() */
1095         __u32                   ni_recovery_state;
1096
1097         /* When to send the next recovery ping */
1098         time64_t                ni_next_ping;
1099         /* How many pings sent during current recovery period did not receive
1100          * a reply. NB: reset whenever _any_ message arrives on this NI
1101          */
1102         unsigned int            ni_ping_count;
1103
1104         /* per NI LND tunables */
1105         struct lnet_lnd_tunables ni_lnd_tunables;
1106
1107         /* lnd tunables set explicitly */
1108         bool ni_lnd_tunables_set;
1109
1110         /* NI statistics */
1111         struct lnet_element_stats ni_stats;
1112         struct lnet_health_local_stats ni_hstats;
1113
1114         /* physical device CPT */
1115         int                     ni_dev_cpt;
1116
1117         /* sequence number used to round robin over nis within a net */
1118         __u32                   ni_seq;
1119
1120         /*
1121          * health value
1122          *      initialized to LNET_MAX_HEALTH_VALUE
1123          * Value is decremented every time we fail to send a message over
1124          * this NI because of a NI specific failure.
1125          * Value is incremented if we successfully send a message.
1126          */
1127         atomic_t                ni_healthv;
1128
1129         /*
1130          * Set to 1 by the LND when it receives an event telling it the device
1131          * has gone into a fatal state. Set to 0 when the LND receives an
1132          * even telling it the device is back online.
1133          */
1134         atomic_t                ni_fatal_error_on;
1135
1136         /* the relative selection priority of this NI */
1137         __u32                   ni_sel_priority;
1138
1139         /*
1140          * equivalent interface to use
1141          */
1142         char                    *ni_interface;
1143         struct net              *ni_net_ns;     /* original net namespace */
1144 };
1145
1146 #define LNET_PROTO_PING_MATCHBITS       0x8000000000000000LL
1147
1148 /*
1149  * Descriptor of a ping info buffer: keep a separate indicator of the
1150  * size and a reference count. The type is used both as a source and
1151  * sink of data, so we need to keep some information outside of the
1152  * area that may be overwritten by network data.
1153  */
1154 struct lnet_ping_buffer {
1155         int                     pb_nbytes;      /* sizeof pb_info */
1156         atomic_t                pb_refcnt;
1157         bool                    pb_needs_post;
1158         struct lnet_ping_info   pb_info;
1159 };
1160
1161 #define LNET_PING_BUFFER_SIZE(bytes) \
1162         (offsetof(struct lnet_ping_buffer, pb_info) + bytes)
1163 #define LNET_PING_BUFFER_LONI(PBUF)     ((PBUF)->pb_info.pi_ni[0].ns_nid)
1164 #define LNET_PING_BUFFER_SEQNO(PBUF)    ((PBUF)->pb_info.pi_ni[0].ns_status)
1165
1166 #define LNET_PING_INFO_TO_BUFFER(PINFO) \
1167         container_of((PINFO), struct lnet_ping_buffer, pb_info)
1168
1169 static inline int
1170 lnet_ping_sts_size(const struct lnet_nid *nid)
1171 {
1172         int size;
1173
1174         if (nid_is_nid4(nid))
1175                 return sizeof(struct lnet_ni_status);
1176
1177         size = offsetof(struct lnet_ni_large_status, ns_nid) +
1178                NID_BYTES(nid);
1179
1180         return round_up(size, 4);
1181 }
1182
1183 static inline struct lnet_ni_large_status *
1184 lnet_ping_sts_next(const struct lnet_ni_large_status *nis)
1185 {
1186         return (void *)nis + lnet_ping_sts_size(&nis->ns_nid);
1187 }
1188
1189 static inline bool
1190 lnet_ping_at_least_two_entries(const struct lnet_ping_info *pi)
1191 {
1192         /* Return true if we have at lease two entries.  There is always a
1193          * least one, a 4-byte lo0 interface.
1194          */
1195         struct lnet_ni_large_status *lns;
1196
1197         if ((pi->pi_features & LNET_PING_FEAT_LARGE_ADDR) == 0)
1198                 return pi->pi_nnis <= 2;
1199         /* There is at least 1 large-address entry */
1200         if (pi->pi_nnis != 1)
1201                 return false;
1202         lns = (void *)&pi->pi_ni[1];
1203         lns = lnet_ping_sts_next(lns);
1204
1205         return ((void *)pi + lnet_ping_info_size(pi) <= (void *)lns);
1206 }
1207
1208 struct lnet_nid_list {
1209         struct list_head nl_list;
1210         struct lnet_nid nl_nid;
1211 };
1212
1213 struct lnet_peer_ni {
1214         /* chain on lpn_peer_nis */
1215         struct list_head        lpni_peer_nis;
1216         /* chain on remote peer list */
1217         struct list_head        lpni_on_remote_peer_ni_list;
1218         /* chain on recovery queue */
1219         struct list_head        lpni_recovery;
1220         /* chain on peer hash */
1221         struct list_head        lpni_hashlist;
1222         /* messages blocking for tx credits */
1223         struct list_head        lpni_txq;
1224         /* pointer to peer net I'm part of */
1225         struct lnet_peer_net    *lpni_peer_net;
1226         /* statistics kept on each peer NI */
1227         struct lnet_element_stats lpni_stats;
1228         struct lnet_health_remote_stats lpni_hstats;
1229         /* spin lock protecting credits and lpni_txq */
1230         spinlock_t              lpni_lock;
1231         /* # tx credits available */
1232         int                     lpni_txcredits;
1233         /* low water mark */
1234         int                     lpni_mintxcredits;
1235         /*
1236          * Each peer_ni in a gateway maintains its own credits. This
1237          * allows more traffic to gateways that have multiple interfaces.
1238          */
1239         /* # router credits */
1240         int                     lpni_rtrcredits;
1241         /* low water mark */
1242         int                     lpni_minrtrcredits;
1243         /* bytes queued for sending */
1244         long                    lpni_txqnob;
1245         /* network peer is on */
1246         struct lnet_net         *lpni_net;
1247         /* peer's NID */
1248         struct lnet_nid         lpni_nid;
1249         /* # refs */
1250         struct kref             lpni_kref;
1251         /* health value for the peer */
1252         atomic_t                lpni_healthv;
1253         /* recovery ping mdh */
1254         struct lnet_handle_md   lpni_recovery_ping_mdh;
1255         /* When to send the next recovery ping */
1256         time64_t                lpni_next_ping;
1257         /* How many pings sent during current recovery period did not receive
1258          * a reply. NB: reset whenever _any_ message arrives from this peer NI
1259          */
1260         unsigned int            lpni_ping_count;
1261         /* CPT this peer attached on */
1262         int                     lpni_cpt;
1263         /* state flags -- protected by lpni_lock */
1264         unsigned                lpni_state;
1265         /* status of the peer NI as reported by the peer */
1266         __u32                   lpni_ns_status;
1267         /* sequence number used to round robin over peer nis within a net */
1268         __u32                   lpni_seq;
1269         /* sequence number used to round robin over gateways */
1270         __u32                   lpni_gw_seq;
1271         /* returned RC ping features. Protected with lpni_lock */
1272         unsigned int            lpni_ping_feats;
1273         /* time last message was received from the peer */
1274         time64_t                lpni_last_alive;
1275         /* preferred local nids: if only one, use lpni_pref.nid */
1276         union lpni_pref {
1277                 struct lnet_nid nid;
1278                 struct list_head nids;
1279         } lpni_pref;
1280         /* list of router nids preferred for this peer NI */
1281         struct list_head        lpni_rtr_pref_nids;
1282         /* The relative selection priority of this peer NI */
1283         __u32                   lpni_sel_priority;
1284         /* number of preferred NIDs in lnpi_pref_nids */
1285         __u32                   lpni_pref_nnids;
1286 };
1287
1288 /* Preferred path added due to traffic on non-MR peer_ni */
1289 #define LNET_PEER_NI_NON_MR_PREF        BIT(0)
1290 /* peer is being recovered. */
1291 #define LNET_PEER_NI_RECOVERY_PENDING   BIT(1)
1292 /* recovery ping failed */
1293 #define LNET_PEER_NI_RECOVERY_FAILED    BIT(2)
1294 /* peer is being deleted */
1295 #define LNET_PEER_NI_DELETING           BIT(3)
1296
1297 struct lnet_peer {
1298         /* chain on pt_peer_list */
1299         struct list_head        lp_peer_list;
1300
1301         /* list of peer nets */
1302         struct list_head        lp_peer_nets;
1303
1304         /* list of messages pending discovery*/
1305         struct list_head        lp_dc_pendq;
1306
1307         /* chain on router list */
1308         struct list_head        lp_rtr_list;
1309
1310         /* primary NID of the peer */
1311         struct lnet_nid         lp_primary_nid;
1312
1313         /* source NID to use during discovery */
1314         struct lnet_nid         lp_disc_src_nid;
1315         /* destination NID to use during discovery */
1316         struct lnet_nid         lp_disc_dst_nid;
1317
1318         /* net to perform discovery on */
1319         __u32                   lp_disc_net_id;
1320
1321         /* CPT of peer_table */
1322         int                     lp_cpt;
1323
1324         /* number of NIDs on this peer */
1325         int                     lp_nnis;
1326
1327         /* # refs from lnet_route::lr_gateway */
1328         int                     lp_rtr_refcount;
1329
1330         /*
1331          * peer specific health sensitivity value to decrement peer nis in
1332          * this peer with if set to something other than 0
1333          */
1334         __u32                   lp_health_sensitivity;
1335
1336         /* messages blocking for router credits */
1337         struct list_head        lp_rtrq;
1338
1339         /* routes on this peer */
1340         struct list_head        lp_routes;
1341
1342         /* reference count */
1343         atomic_t                lp_refcount;
1344
1345         /* lock protecting peer state flags and lpni_rtrq */
1346         spinlock_t              lp_lock;
1347
1348         /* peer state flags */
1349         unsigned                lp_state;
1350
1351         /* buffer for data pushed by peer */
1352         struct lnet_ping_buffer *lp_data;
1353
1354         /* MD handle for ping in progress */
1355         struct lnet_handle_md   lp_ping_mdh;
1356
1357         /* MD handle for push in progress */
1358         struct lnet_handle_md   lp_push_mdh;
1359
1360         /* number of bytes for sizing pb_info in push data */
1361         int                     lp_data_bytes;
1362
1363         /* NI config sequence number of peer */
1364         __u32                   lp_peer_seqno;
1365
1366         /* Local NI config sequence number acked by peer */
1367         __u32                   lp_node_seqno;
1368
1369         /* Local NI config sequence number sent to peer */
1370         __u32                   lp_node_seqno_sent;
1371
1372         /* Ping error encountered during discovery. */
1373         int                     lp_ping_error;
1374
1375         /* Push error encountered during discovery. */
1376         int                     lp_push_error;
1377
1378         /* Error encountered during discovery. */
1379         int                     lp_dc_error;
1380
1381         /* time it was put on the ln_dc_working queue */
1382         time64_t                lp_last_queued;
1383
1384         /* link on discovery-related lists */
1385         struct list_head        lp_dc_list;
1386
1387         /* tasks waiting on discovery of this peer */
1388         wait_queue_head_t       lp_dc_waitq;
1389
1390         /* cached peer aliveness */
1391         bool                    lp_alive;
1392
1393         /* sequence number used to round robin traffic to this peer's
1394          * nets/NIs
1395          */
1396         __u32                   lp_send_seq;
1397
1398         /* timestamp of primary nid lock */
1399         __u64                   lp_prim_lock_ts;
1400 };
1401
1402 /*
1403  * The status flags in lp_state. Their semantics have chosen so that
1404  * lp_state can be zero-initialized.
1405  *
1406  * A peer is marked MULTI_RAIL in two cases: it was configured using DLC
1407  * as multi-rail aware, or the LNET_PING_FEAT_MULTI_RAIL bit was set.
1408  *
1409  * A peer is marked NO_DISCOVERY if the LNET_PING_FEAT_DISCOVERY bit was
1410  * NOT set when the peer was pinged by discovery.
1411  *
1412  * A peer is marked ROUTER if it indicates so in the feature bit.
1413  */
1414 #define LNET_PEER_MULTI_RAIL            BIT(0)  /* Multi-rail aware */
1415 #define LNET_PEER_NO_DISCOVERY          BIT(1)  /* Peer disabled discovery */
1416 #define LNET_PEER_ROUTER_ENABLED        BIT(2)  /* router feature enabled */
1417
1418 /*
1419  * A peer is marked CONFIGURED if it was configured by DLC.
1420  *
1421  * In addition, a peer is marked DISCOVERED if it has fully passed
1422  * through Peer Discovery.
1423  *
1424  * When Peer Discovery is disabled, the discovery thread will mark
1425  * peers REDISCOVER to indicate that they should be re-examined if
1426  * discovery is (re)enabled on the node.
1427  *
1428  * A peer that was created as the result of inbound traffic will not
1429  * be marked at all.
1430  */
1431 #define LNET_PEER_CONFIGURED            BIT(3)  /* Configured via DLC */
1432 #define LNET_PEER_DISCOVERED            BIT(4)  /* Peer was discovered */
1433 #define LNET_PEER_REDISCOVER            BIT(5)  /* Discovery was disabled */
1434 /*
1435  * A peer is marked DISCOVERING when discovery is in progress.
1436  * The other flags below correspond to stages of discovery.
1437  */
1438 #define LNET_PEER_DISCOVERING           BIT(6)  /* Discovering */
1439 #define LNET_PEER_DATA_PRESENT          BIT(7)  /* Remote peer data present */
1440 #define LNET_PEER_NIDS_UPTODATE         BIT(8)  /* Remote peer info uptodate */
1441 #define LNET_PEER_PING_SENT             BIT(9)  /* Waiting for REPLY to Ping */
1442 #define LNET_PEER_PUSH_SENT             BIT(10) /* Waiting for ACK of Push */
1443 #define LNET_PEER_PING_FAILED           BIT(11) /* Ping send failure */
1444 #define LNET_PEER_PUSH_FAILED           BIT(12) /* Push send failure */
1445 /*
1446  * A ping can be forced as a way to fix up state, or as a manual
1447  * intervention by an admin.
1448  * A push can be forced in circumstances that would normally not
1449  * allow for one to happen.
1450  */
1451 #define LNET_PEER_FORCE_PING            BIT(13) /* Forced Ping */
1452 #define LNET_PEER_FORCE_PUSH            BIT(14) /* Forced Push */
1453
1454 /* force delete even if router */
1455 #define LNET_PEER_RTR_NI_FORCE_DEL      BIT(15)
1456
1457 /* gw undergoing alive discovery */
1458 #define LNET_PEER_RTR_DISCOVERY         BIT(16)
1459 /* gw has undergone discovery (does not indicate success or failure) */
1460 #define LNET_PEER_RTR_DISCOVERED        BIT(17)
1461
1462 /* peer is marked for deletion */
1463 #define LNET_PEER_MARK_DELETION         BIT(18)
1464 /* lnet_peer_del()/lnet_peer_del_locked() has been called on the peer */
1465 #define LNET_PEER_MARK_DELETED          BIT(19)
1466 /* lock primary NID to what's requested by ULP */
1467 #define LNET_PEER_LOCK_PRIMARY          BIT(20)
1468 /* this is for informational purposes only. It is set if a peer gets
1469  * configured from Lustre with a primary NID which belongs to another peer
1470  * which is also configured by Lustre as the primary NID.
1471  */
1472 #define LNET_PEER_BAD_CONFIG            BIT(21)
1473
1474 struct lnet_peer_net {
1475         /* chain on lp_peer_nets */
1476         struct list_head        lpn_peer_nets;
1477
1478         /* list of peer_nis on this network */
1479         struct list_head        lpn_peer_nis;
1480
1481         /* pointer to the peer I'm part of */
1482         struct lnet_peer        *lpn_peer;
1483
1484         /* Net ID */
1485         __u32                   lpn_net_id;
1486
1487         /* peer net health */
1488         int                     lpn_healthv;
1489
1490         /* time of next router ping on this net */
1491         time64_t                lpn_next_ping;
1492
1493         /* selection sequence number */
1494         __u32                   lpn_seq;
1495
1496         /* relative peer net selection priority */
1497         __u32                   lpn_sel_priority;
1498
1499         /* reference count */
1500         atomic_t                lpn_refcount;
1501 };
1502
1503 /* peer hash size */
1504 #define LNET_PEER_HASH_BITS     9
1505 #define LNET_PEER_HASH_SIZE     (1 << LNET_PEER_HASH_BITS)
1506
1507 /*
1508  * peer hash table - one per CPT
1509  *
1510  * protected by lnet_net_lock/EX for update
1511  *    pt_version
1512  *    pt_hash[...]
1513  *    pt_peer_list
1514  *    pt_peers
1515  * protected by pt_zombie_lock:
1516  *    pt_zombie_list
1517  *    pt_zombies
1518  *
1519  * pt_zombie lock nests inside lnet_net_lock
1520  */
1521 struct lnet_peer_table {
1522         int                     pt_version;     /* /proc validity stamp */
1523         struct list_head        *pt_hash;       /* NID->peer hash */
1524         struct list_head        pt_peer_list;   /* peers */
1525         int                     pt_peers;       /* # peers */
1526         struct list_head        pt_zombie_list; /* zombie peer_ni */
1527         int                     pt_zombies;     /* # zombie peers_ni */
1528         spinlock_t              pt_zombie_lock; /* protect list and count */
1529 };
1530
1531 /* peer aliveness is enabled only on routers for peers in a network where the
1532  * struct lnet_ni::ni_peertimeout has been set to a positive value
1533  */
1534 #define lnet_peer_aliveness_enabled(lp) (the_lnet.ln_routing != 0 && \
1535                                         ((lp)->lpni_net) && \
1536                                         (lp)->lpni_net->net_tunables.lct_peer_timeout > 0)
1537
1538 struct lnet_route {
1539         struct list_head        lr_list;        /* chain on net */
1540         struct list_head        lr_gwlist;      /* chain on gateway */
1541         struct lnet_peer        *lr_gateway;    /* router node */
1542         struct lnet_nid         lr_nid;         /* NID used to add route */
1543         __u32                   lr_net;         /* remote network number */
1544         __u32                   lr_lnet;        /* local network number */
1545         int                     lr_seq;         /* sequence for round-robin */
1546         __u32                   lr_hops;        /* how far I am */
1547         unsigned int            lr_priority;    /* route priority */
1548         atomic_t                lr_alive;       /* cached route aliveness */
1549         bool                    lr_single_hop;  /* this route is single-hop */
1550 };
1551
1552 #define LNET_REMOTE_NETS_HASH_DEFAULT   (1U << 7)
1553 #define LNET_REMOTE_NETS_HASH_MAX       (1U << 16)
1554 #define LNET_REMOTE_NETS_HASH_SIZE      (1 << the_lnet.ln_remote_nets_hbits)
1555
1556 struct lnet_remotenet {
1557         /* chain on ln_remote_nets_hash */
1558         struct list_head        lrn_list;
1559         /* routes to me */
1560         struct list_head        lrn_routes;
1561         /* my net number */
1562         __u32                   lrn_net;
1563 };
1564
1565 /** lnet message has credit and can be submitted to lnd for send/receive */
1566 #define LNET_CREDIT_OK          0
1567 /** lnet message is waiting for credit */
1568 #define LNET_CREDIT_WAIT        1
1569 /** lnet message is waiting for discovery */
1570 #define LNET_DC_WAIT            2
1571
1572 struct lnet_rtrbufpool {
1573         /* my free buffer pool */
1574         struct list_head        rbp_bufs;
1575         /* messages blocking for a buffer */
1576         struct list_head        rbp_msgs;
1577         /* # pages in each buffer */
1578         int                     rbp_npages;
1579         /* requested number of buffers */
1580         int                     rbp_req_nbuffers;
1581         /* # buffers actually allocated */
1582         int                     rbp_nbuffers;
1583         /* # free buffers / blocked messages */
1584         int                     rbp_credits;
1585         /* low water mark */
1586         int                     rbp_mincredits;
1587 };
1588
1589 struct lnet_rtrbuf {
1590         struct list_head         rb_list;       /* chain on rbp_bufs */
1591         struct lnet_rtrbufpool  *rb_pool;       /* owning pool */
1592         struct bio_vec           rb_kiov[0];    /* the buffer space */
1593 };
1594
1595 #define LNET_PEER_HASHSIZE   503                /* prime! */
1596
1597 enum lnet_match_flags {
1598         /* Didn't match anything */
1599         LNET_MATCHMD_NONE       = BIT(0),
1600         /* Matched OK */
1601         LNET_MATCHMD_OK         = BIT(1),
1602         /* Must be discarded */
1603         LNET_MATCHMD_DROP       = BIT(2),
1604         /* match and buffer is exhausted */
1605         LNET_MATCHMD_EXHAUSTED  = BIT(3),
1606         /* match or drop */
1607         LNET_MATCHMD_FINISH     = (LNET_MATCHMD_OK | LNET_MATCHMD_DROP),
1608 };
1609
1610 /* Options for struct lnet_portal::ptl_options */
1611 #define LNET_PTL_LAZY           BIT(0)
1612 #define LNET_PTL_MATCH_UNIQUE   BIT(1)  /* unique match, for RDMA */
1613 #define LNET_PTL_MATCH_WILDCARD BIT(2)  /* wildcard match, request portal */
1614
1615 /* parameter for matching operations (GET, PUT) */
1616 struct lnet_match_info {
1617         __u64                   mi_mbits;
1618         struct lnet_processid   mi_id;
1619         unsigned int            mi_cpt;
1620         unsigned int            mi_opc;
1621         unsigned int            mi_portal;
1622         unsigned int            mi_rlength;
1623         unsigned int            mi_roffset;
1624 };
1625
1626 /* ME hash of RDMA portal */
1627 #define LNET_MT_HASH_BITS               8
1628 #define LNET_MT_HASH_SIZE               (1 << LNET_MT_HASH_BITS)
1629 #define LNET_MT_HASH_MASK               (LNET_MT_HASH_SIZE - 1)
1630 /* we allocate (LNET_MT_HASH_SIZE + 1) entries for lnet_match_table::mt_hash,
1631  * the last entry is reserved for MEs with ignore-bits */
1632 #define LNET_MT_HASH_IGNORE             LNET_MT_HASH_SIZE
1633 /* __u64 has 2^6 bits, so need 2^(LNET_MT_HASH_BITS - LNET_MT_BITS_U64) which
1634  * is 4 __u64s as bit-map, and add an extra __u64 (only use one bit) for the
1635  * ME-list with ignore-bits, which is mtable::mt_hash[LNET_MT_HASH_IGNORE] */
1636 #define LNET_MT_BITS_U64                6       /* 2^6 bits */
1637 #define LNET_MT_EXHAUSTED_BITS          (LNET_MT_HASH_BITS - LNET_MT_BITS_U64)
1638 #define LNET_MT_EXHAUSTED_BMAP          ((1 << LNET_MT_EXHAUSTED_BITS) + 1)
1639
1640 /* portal match table */
1641 struct lnet_match_table {
1642         /* reserved for upcoming patches, CPU partition ID */
1643         unsigned int            mt_cpt;
1644         unsigned int            mt_portal;      /* portal index */
1645         /* match table is set as "enabled" if there's non-exhausted MD
1646          * attached on mt_mhash, it's only valid for wildcard portal */
1647         unsigned int            mt_enabled;
1648         /* bitmap to flag whether MEs on mt_hash are exhausted or not */
1649         __u64                   mt_exhausted[LNET_MT_EXHAUSTED_BMAP];
1650         struct list_head        *mt_mhash;      /* matching hash */
1651 };
1652
1653 /* these are only useful for wildcard portal */
1654 /* Turn off message rotor for wildcard portals */
1655 #define LNET_PTL_ROTOR_OFF      0
1656 /* round-robin dispatch all PUT messages for wildcard portals */
1657 #define LNET_PTL_ROTOR_ON       1
1658 /* round-robin dispatch routed PUT message for wildcard portals */
1659 #define LNET_PTL_ROTOR_RR_RT    2
1660 /* dispatch routed PUT message by hashing source NID for wildcard portals */
1661 #define LNET_PTL_ROTOR_HASH_RT  3
1662
1663 struct lnet_portal {
1664         spinlock_t              ptl_lock;
1665         unsigned int            ptl_index;      /* portal ID, reserved */
1666         /* flags on this portal: lazy, unique... */
1667         unsigned int            ptl_options;
1668         /* list of messages which are stealing buffer */
1669         struct list_head        ptl_msg_stealing;
1670         /* messages blocking for MD */
1671         struct list_head        ptl_msg_delayed;
1672         /* Match table for each CPT */
1673         struct lnet_match_table **ptl_mtables;
1674         /* spread rotor of incoming "PUT" */
1675         unsigned int            ptl_rotor;
1676         /* # active entries for this portal */
1677         int                     ptl_mt_nmaps;
1678         /* array of active entries' cpu-partition-id */
1679         int                     ptl_mt_maps[0];
1680 };
1681
1682 #define LNET_LH_HASH_BITS       12
1683 #define LNET_LH_HASH_SIZE       (1ULL << LNET_LH_HASH_BITS)
1684 #define LNET_LH_HASH_MASK       (LNET_LH_HASH_SIZE - 1)
1685
1686 /* resource container (ME, MD, EQ) */
1687 struct lnet_res_container {
1688         unsigned int            rec_type;       /* container type */
1689         __u64                   rec_lh_cookie;  /* cookie generator */
1690         struct list_head        rec_active;     /* active resource list */
1691         struct list_head        *rec_lh_hash;   /* handle hash */
1692 };
1693
1694 /* message container */
1695 struct lnet_msg_container {
1696         int                     msc_init;       /* initialized or not */
1697         /* max # threads finalizing */
1698         int                     msc_nfinalizers;
1699         /* msgs waiting to complete finalizing */
1700         struct list_head        msc_finalizing;
1701         /* msgs waiting to be resent */
1702         struct list_head        msc_resending;
1703         struct list_head        msc_active;     /* active message list */
1704         /* threads doing finalization */
1705         void                    **msc_finalizers;
1706         /* threads doing resends */
1707         void                    **msc_resenders;
1708 };
1709
1710 /* This UDSP structures need to match the user space liblnetconfig structures
1711  * in order for the marshall and unmarshall functions to be common.
1712  */
1713
1714 /* Net is described as a
1715  *  1. net type
1716  *  2. num range
1717  */
1718 struct lnet_ud_net_descr {
1719         __u32 udn_net_type;
1720         struct list_head udn_net_num_range;
1721 };
1722
1723 /* each NID range is defined as
1724  *  1. net descriptor
1725  *  2. address range descriptor
1726  */
1727 struct lnet_ud_nid_descr {
1728         struct lnet_ud_net_descr ud_net_id;
1729         struct list_head ud_addr_range;
1730         __u32 ud_mem_size;
1731 };
1732
1733 /* a UDSP rule can have up to three user defined NID descriptors
1734  *      - src: defines the local NID range for the rule
1735  *      - dst: defines the peer NID range for the rule
1736  *      - rte: defines the router NID range for the rule
1737  *
1738  * An action union defines the action to take when the rule
1739  * is matched
1740  */
1741 struct lnet_udsp {
1742         struct list_head udsp_on_list;
1743         __u32 udsp_idx;
1744         struct lnet_ud_nid_descr udsp_src;
1745         struct lnet_ud_nid_descr udsp_dst;
1746         struct lnet_ud_nid_descr udsp_rte;
1747         enum lnet_udsp_action_type udsp_action_type;
1748         union {
1749                 __u32 udsp_priority;
1750         } udsp_action;
1751 };
1752
1753 /* Peer Discovery states */
1754 #define LNET_DC_STATE_SHUTDOWN          0       /* not started */
1755 #define LNET_DC_STATE_RUNNING           1       /* started up OK */
1756 #define LNET_DC_STATE_STOPPING          2       /* telling thread to stop */
1757
1758 /* Router Checker states */
1759 #define LNET_MT_STATE_SHUTDOWN          0       /* not started */
1760 #define LNET_MT_STATE_RUNNING           1       /* started up OK */
1761 #define LNET_MT_STATE_STOPPING          2       /* telling thread to stop */
1762
1763 /* LNet states */
1764 #define LNET_STATE_SHUTDOWN             0       /* not started */
1765 #define LNET_STATE_RUNNING              1       /* started up OK */
1766 #define LNET_STATE_STOPPING             2       /* telling thread to stop */
1767
1768 struct lnet {
1769         /* CPU partition table of LNet */
1770         struct cfs_cpt_table            *ln_cpt_table;
1771         /* number of CPTs in ln_cpt_table */
1772         unsigned int                    ln_cpt_number;
1773         unsigned int                    ln_cpt_bits;
1774
1775         /* protect LNet resources (ME/MD/EQ) */
1776         struct cfs_percpt_lock          *ln_res_lock;
1777         /* # portals */
1778         int                             ln_nportals;
1779         /* the vector of portals */
1780         struct lnet_portal              **ln_portals;
1781         /* percpt MD container */
1782         struct lnet_res_container       **ln_md_containers;
1783
1784         /* Event Queue container */
1785         struct lnet_res_container       ln_eq_container;
1786         spinlock_t                      ln_eq_wait_lock;
1787
1788         unsigned int                    ln_remote_nets_hbits;
1789
1790         /* protect NI, peer table, credits, routers, rtrbuf... */
1791         struct cfs_percpt_lock          *ln_net_lock;
1792         /* percpt message containers for active/finalizing/freed message */
1793         struct lnet_msg_container       **ln_msg_containers;
1794         struct lnet_counters            **ln_counters;
1795         struct lnet_peer_table          **ln_peer_tables;
1796         /* list of peer nis not on a local network */
1797         struct list_head                ln_remote_peer_ni_list;
1798         /* failure simulation */
1799         struct list_head                ln_test_peers;
1800         struct list_head                ln_drop_rules;
1801         struct list_head                ln_delay_rules;
1802         /* LND instances */
1803         struct list_head                ln_nets;
1804         /* Sequence number used to round robin sends across all nets */
1805         __u32                           ln_net_seq;
1806         /* the loopback NI */
1807         struct lnet_ni                  *ln_loni;
1808         /* network zombie list */
1809         struct list_head                ln_net_zombie;
1810         /* resend messages list */
1811         struct list_head                ln_msg_resend;
1812         /* spin lock to protect the msg resend list */
1813         spinlock_t                      ln_msg_resend_lock;
1814
1815         /* remote networks with routes to them */
1816         struct list_head                *ln_remote_nets_hash;
1817         /* validity stamp */
1818         __u64                           ln_remote_nets_version;
1819         /* list of all known routers */
1820         struct list_head                ln_routers;
1821         /* validity stamp */
1822         __u64                           ln_routers_version;
1823         /* percpt router buffer pools */
1824         struct lnet_rtrbufpool          **ln_rtrpools;
1825
1826         /*
1827          * Ping target / Push source
1828          *
1829          * The ping target and push source share a single buffer. The
1830          * ln_ping_target is protected against concurrent updates by
1831          * ln_api_mutex.
1832          */
1833         struct lnet_handle_md           ln_ping_target_md;
1834         lnet_handler_t                  ln_ping_target_handler;
1835         struct lnet_ping_buffer         *ln_ping_target;
1836         atomic_t                        ln_ping_target_seqno;
1837
1838         /*
1839          * Push Target
1840          *
1841          * ln_push_nnis contains the desired size of the push target.
1842          * The lnet_net_lock is used to handle update races. The old
1843          * buffer may linger a while after it has been unlinked, in
1844          * which case the event handler cleans up.
1845          */
1846         lnet_handler_t                  ln_push_target_handler;
1847         struct lnet_handle_md           ln_push_target_md;
1848         struct lnet_ping_buffer         *ln_push_target;
1849         /* bytes needed for pb_info to receive push */
1850         int                             ln_push_target_nbytes;
1851
1852         /* discovery event queue handle */
1853         lnet_handler_t                  ln_dc_handler;
1854         /* discovery requests */
1855         struct list_head                ln_dc_request;
1856         /* discovery working list */
1857         struct list_head                ln_dc_working;
1858         /* discovery expired list */
1859         struct list_head                ln_dc_expired;
1860         /* discovery thread wait queue */
1861         wait_queue_head_t               ln_dc_waitq;
1862         /* discovery startup/shutdown state */
1863         int                             ln_dc_state;
1864
1865         /* monitor thread startup/shutdown state */
1866         int                             ln_mt_state;
1867         /* serialise startup/shutdown */
1868         struct semaphore                ln_mt_signal;
1869
1870         struct mutex                    ln_api_mutex;
1871         struct mutex                    ln_lnd_mutex;
1872         /* Have I called LNetNIInit myself? */
1873         int                             ln_niinit_self;
1874         /* LNetNIInit/LNetNIFini counter */
1875         int                             ln_refcount;
1876         /* SHUTDOWN/RUNNING/STOPPING */
1877         int                             ln_state;
1878
1879         int                             ln_routing;     /* am I a router? */
1880         lnet_pid_t                      ln_pid;         /* requested pid */
1881         /* uniquely identifies this ni in this epoch */
1882         __u64                           ln_interface_cookie;
1883         /* registered LNDs */
1884         const struct lnet_lnd           *ln_lnds[NUM_LNDS];
1885
1886         /* test protocol compatibility flags */
1887         unsigned long                   ln_testprotocompat;
1888
1889         /* 0 - load the NIs from the mod params
1890          * 1 - do not load the NIs from the mod params
1891          * Reverse logic to ensure that other calls to LNetNIInit
1892          * need no change
1893          */
1894         bool                            ln_nis_from_mod_params;
1895
1896         /*
1897          * completion for the monitor thread. The monitor thread takes care of
1898          * checking routes, timedout messages and resending messages.
1899          */
1900         struct completion               ln_mt_wait_complete;
1901
1902         /* per-cpt resend queues */
1903         struct list_head                **ln_mt_resendqs;
1904         /* local NIs to recover */
1905         struct list_head                ln_mt_localNIRecovq;
1906         /* local NIs to recover */
1907         struct list_head                ln_mt_peerNIRecovq;
1908         /*
1909          * An array of queues for GET/PUT waiting for REPLY/ACK respectively.
1910          * There are CPT number of queues. Since response trackers will be
1911          * added on the fast path we can't afford to grab the exclusive
1912          * net lock to protect these queues. The CPT will be calculated
1913          * based on the mdh cookie.
1914          */
1915         struct list_head                **ln_mt_rstq;
1916         /*
1917          * A response tracker becomes a zombie when the associated MD is queued
1918          * for unlink before the response tracker is detached from the MD. An
1919          * entry on a zombie list can be freed when either the remaining
1920          * operations on the MD complete or when LNet has shut down.
1921          */
1922         struct list_head                **ln_mt_zombie_rstqs;
1923         /* recovery handler */
1924         lnet_handler_t                  ln_mt_handler;
1925
1926         /*
1927          * Completed when the discovery and monitor threads can enter their
1928          * work loops
1929          */
1930         struct completion               ln_started;
1931         /* UDSP list */
1932         struct list_head                ln_udsp_list;
1933
1934         /* Number of messages that have exceeded their message deadline */
1935         atomic_t                        ln_late_msg_count;
1936         /* Total amount of time past their deadline for all late ^ messages */
1937         atomic64_t                      ln_late_msg_nsecs;
1938
1939         /* for LNDs to signal that ping buffer needs updating */
1940         atomic_t                        ln_update_ping_buf;
1941
1942         /* workqueue for serving lnd ping buffer update requests */
1943         struct workqueue_struct         *ln_pb_update_wq;
1944         struct work_struct              ln_pb_update_work;
1945
1946         atomic_t                        ln_pb_update_ready;
1947 };
1948
1949 struct genl_filter_list {
1950         struct list_head         lp_list;
1951         void                    *lp_cursor;
1952         bool                     lp_first;
1953 };
1954
1955 static const struct nla_policy scalar_attr_policy[LN_SCALAR_MAX + 1] = {
1956         [LN_SCALAR_ATTR_LIST]           = { .type = NLA_NESTED },
1957         [LN_SCALAR_ATTR_LIST_SIZE]      = { .type = NLA_U16 },
1958         [LN_SCALAR_ATTR_INDEX]          = { .type = NLA_U16 },
1959         [LN_SCALAR_ATTR_NLA_TYPE]       = { .type = NLA_U16 },
1960         [LN_SCALAR_ATTR_VALUE]          = { .type = NLA_STRING },
1961         [LN_SCALAR_ATTR_KEY_FORMAT]     = { .type = NLA_U16 },
1962 };
1963
1964 int lnet_genl_send_scalar_list(struct sk_buff *msg, u32 portid, u32 seq,
1965                                const struct genl_family *family, int flags,
1966                                u8 cmd, const struct ln_key_list *data[]);
1967
1968 /* Special workaround for pre-4.19 kernels to send error messages
1969  * from dumpit routines. Newer kernels will send message with
1970  * NL_SET_ERR_MSG information by default if NETLINK_EXT_ACK is set.
1971  */
1972 static inline int lnet_nl_send_error(struct sk_buff *msg, int portid, int seq,
1973                                      int error)
1974 {
1975 #ifndef HAVE_NL_DUMP_WITH_EXT_ACK
1976         struct nlmsghdr *nlh;
1977
1978         if (!error)
1979                 return 0;
1980
1981         nlh = nlmsg_put(msg, portid, seq, NLMSG_ERROR, sizeof(error), 0);
1982         if (!nlh)
1983                 return -ENOMEM;
1984 #ifdef HAVE_NL_PARSE_WITH_EXT_ACK
1985         netlink_ack(msg, nlh, error, NULL);
1986 #else
1987         netlink_ack(msg, nlh, error);
1988 #endif
1989         return nlmsg_len(nlh);
1990 #else
1991         return error;
1992 #endif
1993 }
1994
1995 #endif