Whamcloud - gitweb
LU-9680 lnet: collect data about routes by using Netlink
[fs/lustre-release.git] / lnet / include / lnet / lib-lnet.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-lnet.h
32  *
33  * Top level include for library side routines
34  */
35
36 #ifndef __LNET_LIB_LNET_H__
37 #define __LNET_LIB_LNET_H__
38
39 /* LNET has 0xeXXX */
40 #define CFS_FAIL_PTLRPC_OST_BULK_CB2    0xe000
41
42 #include <linux/netdevice.h>
43
44 #include <libcfs/libcfs.h>
45 #include <lnet/api.h>
46 #include <lnet/lib-types.h>
47 #include <uapi/linux/lnet/lnet-dlc.h>
48 #include <uapi/linux/lnet/lnet-types.h>
49 #include <uapi/linux/lnet/lnetctl.h>
50 #include <uapi/linux/lnet/nidstr.h>
51
52 extern struct lnet the_lnet;                    /* THE network */
53
54 #if (BITS_PER_LONG == 32)
55 /* 2 CPTs, allowing more CPTs might make us under memory pressure */
56 # define LNET_CPT_MAX_BITS     1
57
58 #else /* 64-bit system */
59 /*
60  * 256 CPTs for thousands of CPUs, allowing more CPTs might make us
61  * under risk of consuming all lh_cookie.
62  */
63 # define LNET_CPT_MAX_BITS     8
64 #endif /* BITS_PER_LONG == 32 */
65
66 /* max allowed CPT number */
67 #define LNET_CPT_MAX            (1 << LNET_CPT_MAX_BITS)
68
69 #define LNET_CPT_NUMBER         (the_lnet.ln_cpt_number)
70 #define LNET_CPT_BITS           (the_lnet.ln_cpt_bits)
71 #define LNET_CPT_MASK           ((1ULL << LNET_CPT_BITS) - 1)
72
73 /** exclusive lock */
74 #define LNET_LOCK_EX            CFS_PERCPT_LOCK_EX
75
76 /* need both kernel and user-land acceptor */
77 #define LNET_ACCEPTOR_MIN_RESERVED_PORT 512
78 #define LNET_ACCEPTOR_MAX_RESERVED_PORT 1023
79
80 /* default timeout and credits */
81 #define DEFAULT_PEER_TIMEOUT    180
82 #define DEFAULT_PEER_CREDITS    8
83 #define DEFAULT_CREDITS         256
84
85 /* default number of connections per peer */
86 #define DEFAULT_CONNS_PER_PEER  0
87
88 #ifdef HAVE_KERN_SOCK_GETNAME_2ARGS
89 #define lnet_kernel_getpeername(sock, addr, addrlen) \
90                 kernel_getpeername(sock, addr)
91 #define lnet_kernel_getsockname(sock, addr, addrlen) \
92                 kernel_getsockname(sock, addr)
93 #else
94 #define lnet_kernel_getpeername(sock, addr, addrlen) \
95                 kernel_getpeername(sock, addr, addrlen)
96 #define lnet_kernel_getsockname(sock, addr, addrlen) \
97                 kernel_getsockname(sock, addr, addrlen)
98 #endif
99
100 /*
101  * kernel 5.3: commit ef11db3310e272d3d8dbe8739e0770820dd20e52
102  * kernel 4.18.0-193.el8:
103  * added in_dev_for_each_ifa_rtnl and in_dev_for_each_ifa_rcu
104  * and removed for_ifa and endfor_ifa.
105  * Use the _rntl variant as the current locking is rtnl.
106  */
107 #ifdef HAVE_IN_DEV_FOR_EACH_IFA_RTNL
108 #define DECLARE_CONST_IN_IFADDR(ifa)            const struct in_ifaddr *ifa
109 #define endfor_ifa(in_dev)
110 #else
111 #define DECLARE_CONST_IN_IFADDR(ifa)
112 #define in_dev_for_each_ifa_rtnl(ifa, in_dev)   for_ifa((in_dev))
113 #define in_dev_for_each_ifa_rcu(ifa, in_dev)    for_ifa((in_dev))
114 #endif
115
116 #ifndef fallthrough
117 # if defined(__GNUC__) && __GNUC__ >= 7
118 #  define fallthrough  __attribute__((fallthrough)) /* fallthrough */
119 # else
120 #  define fallthrough do {} while (0)  /* fallthrough */
121 # endif
122 #endif
123
124 int choose_ipv4_src(__u32 *ret,
125                     int interface, __u32 dst_ipaddr, struct net *ns);
126
127 bool lnet_is_route_alive(struct lnet_route *route);
128 bool lnet_is_gateway_alive(struct lnet_peer *gw);
129
130 static inline int lnet_is_wire_handle_none(struct lnet_handle_wire *wh)
131 {
132         return (wh->wh_interface_cookie == LNET_WIRE_HANDLE_COOKIE_NONE &&
133                 wh->wh_object_cookie == LNET_WIRE_HANDLE_COOKIE_NONE);
134 }
135
136 static inline int lnet_md_exhausted(struct lnet_libmd *md)
137 {
138         return (md->md_threshold == 0 ||
139                 ((md->md_options & LNET_MD_MAX_SIZE) != 0 &&
140                  md->md_offset + md->md_max_size > md->md_length));
141 }
142
143 static inline int lnet_md_unlinkable(struct lnet_libmd *md)
144 {
145         /* Should unlink md when its refcount is 0 and either:
146          *  - md has been flagged for deletion (by auto unlink or LNetM[DE]Unlink,
147          *    in the latter case md may not be exhausted).
148          *  - auto unlink is on and md is exhausted.
149          */
150         if (md->md_refcount != 0)
151                 return 0;
152
153         if ((md->md_flags & LNET_MD_FLAG_ZOMBIE) != 0)
154                 return 1;
155
156         return ((md->md_flags & LNET_MD_FLAG_AUTO_UNLINK) != 0 &&
157                 lnet_md_exhausted(md));
158 }
159
160 #define lnet_cpt_table()        (the_lnet.ln_cpt_table)
161 #define lnet_cpt_current()      cfs_cpt_current(the_lnet.ln_cpt_table, 1)
162
163 static inline int
164 lnet_cpt_of_cookie(__u64 cookie)
165 {
166         unsigned int cpt = (cookie >> LNET_COOKIE_TYPE_BITS) & LNET_CPT_MASK;
167
168         /* LNET_CPT_NUMBER doesn't have to be power2, which means we can
169          * get illegal cpt from it's invalid cookie */
170         return cpt < LNET_CPT_NUMBER ? cpt : cpt % LNET_CPT_NUMBER;
171 }
172
173 static inline void
174 lnet_res_lock(int cpt)
175 {
176         cfs_percpt_lock(the_lnet.ln_res_lock, cpt);
177 }
178
179 static inline void
180 lnet_res_unlock(int cpt)
181 {
182         cfs_percpt_unlock(the_lnet.ln_res_lock, cpt);
183 }
184
185 static inline int
186 lnet_res_lock_current(void)
187 {
188         int cpt = lnet_cpt_current();
189
190         lnet_res_lock(cpt);
191         return cpt;
192 }
193
194 static inline void
195 lnet_net_lock(int cpt)
196 {
197         cfs_percpt_lock(the_lnet.ln_net_lock, cpt);
198 }
199
200 static inline void
201 lnet_net_unlock(int cpt)
202 {
203         cfs_percpt_unlock(the_lnet.ln_net_lock, cpt);
204 }
205
206 static inline int
207 lnet_net_lock_current(void)
208 {
209         int cpt = lnet_cpt_current();
210
211         lnet_net_lock(cpt);
212         return cpt;
213 }
214
215 #define LNET_LOCK()             lnet_net_lock(LNET_LOCK_EX)
216 #define LNET_UNLOCK()           lnet_net_unlock(LNET_LOCK_EX)
217
218 #define lnet_ptl_lock(ptl)      spin_lock(&(ptl)->ptl_lock)
219 #define lnet_ptl_unlock(ptl)    spin_unlock(&(ptl)->ptl_lock)
220 #define lnet_ni_lock(ni)        spin_lock(&(ni)->ni_lock)
221 #define lnet_ni_unlock(ni)      spin_unlock(&(ni)->ni_lock)
222
223 #define MAX_PORTALS     64
224
225 #define LNET_SMALL_MD_SIZE   offsetof(struct lnet_libmd, md_kiov[1])
226 extern struct kmem_cache *lnet_mes_cachep;       /* MEs kmem_cache */
227 extern struct kmem_cache *lnet_small_mds_cachep; /* <= LNET_SMALL_MD_SIZE bytes
228                                                   * MDs kmem_cache */
229 extern struct kmem_cache *lnet_udsp_cachep;
230 extern struct kmem_cache *lnet_rspt_cachep;
231 extern struct kmem_cache *lnet_msg_cachep;
232
233 static inline bool
234 lnet_ni_set_status_locked(struct lnet_ni *ni, __u32 status)
235 __must_hold(&ni->ni_lock)
236 {
237         bool update = false;
238
239         if (ni->ni_status && *ni->ni_status != status) {
240                 CDEBUG(D_NET, "ni %s status changed from %#x to %#x\n",
241                        libcfs_nidstr(&ni->ni_nid),
242                        *ni->ni_status, status);
243                 *ni->ni_status = status;
244                 update = true;
245         }
246
247         return update;
248 }
249
250 static inline unsigned int
251 lnet_ni_get_status_locked(struct lnet_ni *ni)
252 __must_hold(&ni->ni_lock)
253 {
254         if (nid_is_lo0(&ni->ni_nid))
255                 return LNET_NI_STATUS_UP;
256         else if (atomic_read(&ni->ni_fatal_error_on))
257                 return LNET_NI_STATUS_DOWN;
258         else if (the_lnet.ln_routing && ni->ni_status)
259                 return *ni->ni_status;
260         else
261                 return LNET_NI_STATUS_UP;
262 }
263
264 static inline bool
265 lnet_ni_set_status(struct lnet_ni *ni, __u32 status)
266 {
267         bool update;
268
269         lnet_ni_lock(ni);
270         update = lnet_ni_set_status_locked(ni, status);
271         lnet_ni_unlock(ni);
272
273         return update;
274 }
275
276 static inline void lnet_md_wait_handling(struct lnet_libmd *md, int cpt)
277 {
278         wait_queue_head_t *wq = __var_waitqueue(md);
279 #if defined(HAVE_WAIT_BIT_QUEUE_ENTRY) || !defined(HAVE_WAIT_VAR_EVENT)
280         struct wait_bit_queue_entry entry;
281         wait_queue_entry_t *wqe = &entry.wq_entry;
282 #else
283         struct wait_bit_queue entry;
284         wait_queue_entry_t *wqe = &entry.wait;
285 #endif
286         init_wait_var_entry(&entry, md, 0);
287         prepare_to_wait_event(wq, wqe, TASK_IDLE);
288         if (md->md_flags & LNET_MD_FLAG_HANDLING) {
289                 /* Race with unlocked call to ->md_handler.
290                  * It is safe to drop the res_lock here as the
291                  * caller has only just claimed it.
292                  */
293                 lnet_res_unlock(cpt);
294                 schedule();
295                 /* Cannot check md now, it might be freed.  Caller
296                  * must reclaim reference and check.
297                  */
298                 lnet_res_lock(cpt);
299         }
300         finish_wait(wq, wqe);
301 }
302
303 static inline void
304 lnet_md_free(struct lnet_libmd *md)
305 {
306         unsigned int  size;
307
308         LASSERTF(md->md_rspt_ptr == NULL, "md %p rsp %p\n", md, md->md_rspt_ptr);
309
310         size = offsetof(struct lnet_libmd, md_kiov[md->md_niov]);
311
312         if (size <= LNET_SMALL_MD_SIZE) {
313                 LIBCFS_MEM_MSG(md, size, "slab-freed");
314                 kmem_cache_free(lnet_small_mds_cachep, md);
315         } else {
316                 LIBCFS_FREE(md, size);
317         }
318 }
319
320 struct lnet_libhandle *lnet_res_lh_lookup(struct lnet_res_container *rec,
321                                      __u64 cookie);
322 void lnet_res_lh_initialize(struct lnet_res_container *rec,
323                             struct lnet_libhandle *lh);
324 static inline void
325 lnet_res_lh_invalidate(struct lnet_libhandle *lh)
326 {
327         /* ALWAYS called with resource lock held */
328         /* NB: cookie is still useful, don't reset it */
329         list_del(&lh->lh_hash_chain);
330 }
331
332 static inline void
333 lnet_md2handle(struct lnet_handle_md *handle, struct lnet_libmd *md)
334 {
335         handle->cookie = md->md_lh.lh_cookie;
336 }
337
338 static inline struct lnet_libmd *
339 lnet_handle2md(struct lnet_handle_md *handle)
340 {
341         /* ALWAYS called with resource lock held */
342         struct lnet_libhandle *lh;
343         int              cpt;
344
345         cpt = lnet_cpt_of_cookie(handle->cookie);
346         lh = lnet_res_lh_lookup(the_lnet.ln_md_containers[cpt],
347                                 handle->cookie);
348         if (lh == NULL)
349                 return NULL;
350
351         return lh_entry(lh, struct lnet_libmd, md_lh);
352 }
353
354 static inline struct lnet_libmd *
355 lnet_wire_handle2md(struct lnet_handle_wire *wh)
356 {
357         /* ALWAYS called with resource lock held */
358         struct lnet_libhandle *lh;
359         int              cpt;
360
361         if (wh->wh_interface_cookie != the_lnet.ln_interface_cookie)
362                 return NULL;
363
364         cpt = lnet_cpt_of_cookie(wh->wh_object_cookie);
365         lh = lnet_res_lh_lookup(the_lnet.ln_md_containers[cpt],
366                                 wh->wh_object_cookie);
367         if (lh == NULL)
368                 return NULL;
369
370         return lh_entry(lh, struct lnet_libmd, md_lh);
371 }
372
373 static inline void
374 lnet_peer_net_addref_locked(struct lnet_peer_net *lpn)
375 {
376         atomic_inc(&lpn->lpn_refcount);
377 }
378
379 extern void lnet_destroy_peer_net_locked(struct lnet_peer_net *lpn);
380
381 static inline void
382 lnet_peer_net_decref_locked(struct lnet_peer_net *lpn)
383 {
384         if (atomic_dec_and_test(&lpn->lpn_refcount))
385                 lnet_destroy_peer_net_locked(lpn);
386 }
387
388 static inline void
389 lnet_peer_addref_locked(struct lnet_peer *lp)
390 {
391         atomic_inc(&lp->lp_refcount);
392 }
393
394 extern void lnet_destroy_peer_locked(struct lnet_peer *lp);
395
396 static inline void
397 lnet_peer_decref_locked(struct lnet_peer *lp)
398 {
399         if (atomic_dec_and_test(&lp->lp_refcount))
400                 lnet_destroy_peer_locked(lp);
401 }
402
403 static inline void
404 lnet_peer_ni_addref_locked(struct lnet_peer_ni *lp)
405 {
406         kref_get(&lp->lpni_kref);
407 }
408
409 extern void lnet_destroy_peer_ni_locked(struct kref *ref);
410
411 static inline void
412 lnet_peer_ni_decref_locked(struct lnet_peer_ni *lp)
413 {
414         kref_put(&lp->lpni_kref, lnet_destroy_peer_ni_locked);
415 }
416
417 static inline int
418 lnet_isrouter(struct lnet_peer_ni *lpni)
419 {
420         return lpni->lpni_peer_net->lpn_peer->lp_rtr_refcount != 0;
421 }
422
423 static inline void
424 lnet_ni_addref_locked(struct lnet_ni *ni, int cpt)
425 {
426         LASSERT(cpt >= 0 && cpt < LNET_CPT_NUMBER);
427         LASSERT(*ni->ni_refs[cpt] >= 0);
428
429         (*ni->ni_refs[cpt])++;
430 }
431
432 static inline void
433 lnet_ni_addref(struct lnet_ni *ni)
434 {
435         lnet_net_lock(0);
436         lnet_ni_addref_locked(ni, 0);
437         lnet_net_unlock(0);
438 }
439
440 static inline void
441 lnet_ni_decref_locked(struct lnet_ni *ni, int cpt)
442 {
443         LASSERT(cpt >= 0 && cpt < LNET_CPT_NUMBER);
444         LASSERT(*ni->ni_refs[cpt] > 0);
445
446         (*ni->ni_refs[cpt])--;
447 }
448
449 static inline void
450 lnet_ni_decref(struct lnet_ni *ni)
451 {
452         lnet_net_lock(0);
453         lnet_ni_decref_locked(ni, 0);
454         lnet_net_unlock(0);
455 }
456
457 static inline struct lnet_msg *
458 lnet_msg_alloc(void)
459 {
460         struct lnet_msg *msg;
461
462         msg = kmem_cache_zalloc(lnet_msg_cachep, GFP_NOFS);
463
464         return (msg);
465 }
466
467 static inline void
468 lnet_msg_free(struct lnet_msg *msg)
469 {
470         LASSERT(!msg->msg_onactivelist);
471         kmem_cache_free(lnet_msg_cachep, msg);
472 }
473
474 static inline struct lnet_rsp_tracker *
475 lnet_rspt_alloc(int cpt)
476 {
477         struct lnet_rsp_tracker *rspt;
478
479         rspt = kmem_cache_zalloc(lnet_rspt_cachep, GFP_NOFS);
480         if (rspt) {
481                 lnet_net_lock(cpt);
482                 the_lnet.ln_counters[cpt]->lct_health.lch_rst_alloc++;
483                 lnet_net_unlock(cpt);
484         }
485         LIBCFS_ALLOC_POST(rspt, sizeof(*rspt), "alloc");
486         return rspt;
487 }
488
489 static inline void
490 lnet_rspt_free(struct lnet_rsp_tracker *rspt, int cpt)
491 {
492         LIBCFS_FREE_PRE(rspt, sizeof(*rspt), "free");
493         kmem_cache_free(lnet_rspt_cachep, rspt);
494         lnet_net_lock(cpt);
495         the_lnet.ln_counters[cpt]->lct_health.lch_rst_alloc--;
496         lnet_net_unlock(cpt);
497 }
498
499 void lnet_ni_free(struct lnet_ni *ni);
500 void lnet_net_free(struct lnet_net *net);
501
502 struct lnet_net *
503 lnet_net_alloc(__u32 net_type, struct list_head *netlist);
504
505 struct lnet_ni *
506 lnet_ni_alloc(struct lnet_net *net, struct cfs_expr_list *el,
507               char *iface);
508 struct lnet_ni *
509 lnet_ni_alloc_w_cpt_array(struct lnet_net *net, __u32 *cpts, __u32 ncpts,
510                           char *iface);
511 int lnet_ni_add_interface(struct lnet_ni *ni, char *iface);
512
513 static inline int
514 lnet_nid2peerhash(struct lnet_nid *nid)
515 {
516         u32 h = 0;
517         int i;
518
519         for (i = 0; i < 4; i++)
520                 h = cfs_hash_32(nid->nid_addr[i]^h, 32);
521         return cfs_hash_32(LNET_NID_NET(nid) ^ h, LNET_PEER_HASH_BITS);
522 }
523
524 static inline struct list_head *
525 lnet_net2rnethash(__u32 net)
526 {
527         return &the_lnet.ln_remote_nets_hash[(LNET_NETNUM(net) +
528                 LNET_NETTYP(net)) &
529                 ((1U << the_lnet.ln_remote_nets_hbits) - 1)];
530 }
531
532 static inline void lnet_hdr_from_nid4(struct lnet_hdr *hdr,
533                                     const struct lnet_hdr_nid4 *vhdr)
534 {
535         const struct _lnet_hdr_nid4 *hdr_nid4 = (void *)vhdr;
536
537         lnet_nid4_to_nid(le64_to_cpu(hdr_nid4->dest_nid), &hdr->dest_nid);
538         lnet_nid4_to_nid(le64_to_cpu(hdr_nid4->src_nid), &hdr->src_nid);
539         hdr->dest_pid = le32_to_cpu(hdr_nid4->dest_pid);
540         hdr->src_pid = le32_to_cpu(hdr_nid4->src_pid);
541         hdr->type = le32_to_cpu(hdr_nid4->type);
542         hdr->payload_length = le32_to_cpu(hdr_nid4->payload_length);
543
544         hdr->msg = hdr_nid4->msg;
545 }
546
547 static inline void lnet_hdr_to_nid4(const struct lnet_hdr *hdr,
548                                       struct lnet_hdr_nid4 *vhdr)
549 {
550         struct _lnet_hdr_nid4 *hdr_nid4 = (void *)vhdr;
551
552         hdr_nid4->dest_nid = cpu_to_le64(lnet_nid_to_nid4(&hdr->dest_nid));
553         hdr_nid4->src_nid = cpu_to_le64(lnet_nid_to_nid4(&hdr->src_nid));
554         hdr_nid4->dest_pid = cpu_to_le32(hdr->dest_pid);
555         hdr_nid4->src_pid = cpu_to_le32(hdr->src_pid);
556         hdr_nid4->type = cpu_to_le32(hdr->type);
557         hdr_nid4->payload_length = cpu_to_le32(hdr->payload_length);
558
559         hdr_nid4->msg = hdr->msg;
560 }
561
562 static inline void lnet_hdr_from_nid16(struct lnet_hdr *hdr,
563                                         const struct lnet_hdr_nid16 *vhdr)
564 {
565         const struct lnet_hdr *hdr16 = (void *)vhdr;
566
567         hdr->dest_nid = hdr16->dest_nid;
568         hdr->src_nid = hdr16->src_nid;
569         hdr->dest_pid = le32_to_cpu(hdr16->dest_pid);
570         hdr->src_pid = le32_to_cpu(hdr16->src_pid);
571         hdr->type = le32_to_cpu(hdr16->type);
572         hdr->payload_length = le32_to_cpu(hdr16->payload_length);
573
574         hdr->msg = hdr16->msg;
575 }
576
577 static inline void lnet_hdr_to_nid16(const struct lnet_hdr *hdr,
578                                       struct lnet_hdr_nid16 *vhdr)
579 {
580         struct lnet_hdr *hdr16 = (void *)vhdr;
581
582         hdr16->dest_nid = hdr->dest_nid;
583         hdr16->src_nid = hdr->src_nid;
584         hdr16->dest_pid = cpu_to_le32(hdr->dest_pid);
585         hdr16->src_pid = cpu_to_le32(hdr->src_pid);
586         hdr16->type = cpu_to_le32(hdr->type);
587         hdr16->payload_length = cpu_to_le32(hdr->payload_length);
588
589         hdr16->msg = hdr->msg;
590 }
591
592 extern const struct lnet_lnd the_lolnd;
593 extern int avoid_asym_router_failure;
594
595 extern unsigned int lnet_nid_cpt_hash(struct lnet_nid *nid,
596                                       unsigned int number);
597 extern int lnet_cpt_of_nid_locked(struct lnet_nid *nid, struct lnet_ni *ni);
598 extern int lnet_cpt_of_nid(lnet_nid_t nid, struct lnet_ni *ni);
599 extern int lnet_nid2cpt(struct lnet_nid *nid, struct lnet_ni *ni);
600 extern struct lnet_ni *lnet_nid_to_ni_locked(struct lnet_nid *nid, int cpt);
601 extern struct lnet_ni *lnet_net2ni_locked(__u32 net, int cpt);
602 extern struct lnet_ni *lnet_net2ni_addref(__u32 net);
603 extern struct lnet_ni *lnet_nid_to_ni_addref(struct lnet_nid *nid);
604 struct lnet_net *lnet_get_net_locked(__u32 net_id);
605
606 int lnet_lib_init(void);
607 void lnet_lib_exit(void);
608 void lnet_router_exit(void);
609
610 extern unsigned int lnet_response_tracking;
611 extern unsigned lnet_transaction_timeout;
612 extern unsigned lnet_retry_count;
613 extern unsigned int lnet_lnd_timeout;
614 extern unsigned int lnet_numa_range;
615 extern unsigned int lnet_health_sensitivity;
616 extern unsigned int lnet_recovery_interval;
617 extern unsigned int lnet_recovery_limit;
618 extern unsigned int lnet_peer_discovery_disabled;
619 extern unsigned int lnet_drop_asym_route;
620 extern unsigned int lnet_max_recovery_ping_interval;
621 extern unsigned int lnet_max_recovery_ping_count;
622 extern unsigned int router_sensitivity_percentage;
623 extern int alive_router_check_interval;
624 extern int live_router_check_interval;
625 extern int dead_router_check_interval;
626 extern int portal_rotor;
627 extern int lock_prim_nid;
628
629 void lnet_mt_event_handler(struct lnet_event *event);
630
631 int lnet_notify(struct lnet_ni *ni, struct lnet_nid *peer, bool alive,
632                 bool reset, time64_t when);
633 void lnet_notify_locked(struct lnet_peer_ni *lp, int notifylnd, int alive,
634                         time64_t when);
635 int lnet_add_route(__u32 net, __u32 hops, struct lnet_nid *gateway,
636                    __u32 priority, __u32 sensitivity);
637 int lnet_del_route(__u32 net, struct lnet_nid *gw_nid);
638 void lnet_move_route(struct lnet_route *route, struct lnet_peer *lp,
639                      struct list_head *rt_list);
640 void lnet_destroy_routes(void);
641 int lnet_get_route(int idx, __u32 *net, __u32 *hops,
642                    lnet_nid_t *gateway, __u32 *alive, __u32 *priority,
643                    __u32 *sensitivity);
644 int lnet_get_rtr_pool_cfg(int idx, struct lnet_ioctl_pool_cfg *pool_cfg);
645 struct lnet_ni *lnet_get_next_ni_locked(struct lnet_net *mynet,
646                                         struct lnet_ni *prev);
647 struct lnet_ni *lnet_get_ni_idx_locked(int idx);
648 int lnet_get_net_healthv_locked(struct lnet_net *net);
649
650 extern int libcfs_ioctl_getdata(struct libcfs_ioctl_hdr **hdr_pp,
651                                 struct libcfs_ioctl_hdr __user *uparam);
652 extern int lnet_get_peer_list(__u32 *countp, __u32 *sizep,
653                               struct lnet_process_id __user *ids);
654 extern void lnet_peer_ni_set_healthv(lnet_nid_t nid, int value, bool all);
655 extern void lnet_peer_ni_add_to_recoveryq_locked(struct lnet_peer_ni *lpni,
656                                                  struct list_head *queue,
657                                                  time64_t now);
658 extern int lnet_peer_add_pref_nid(struct lnet_peer_ni *lpni,
659                                   struct lnet_nid *nid);
660 extern void lnet_peer_clr_pref_nids(struct lnet_peer_ni *lpni);
661 extern int lnet_peer_del_pref_nid(struct lnet_peer_ni *lpni,
662                                   struct lnet_nid *nid);
663 void lnet_peer_ni_set_selection_priority(struct lnet_peer_ni *lpni,
664                                          __u32 priority);
665 extern void lnet_ni_add_to_recoveryq_locked(struct lnet_ni *ni,
666                                             struct list_head *queue,
667                                             time64_t now);
668
669 void lnet_router_debugfs_init(void);
670 void lnet_router_debugfs_fini(void);
671 int  lnet_rtrpools_alloc(int im_a_router);
672 void lnet_destroy_rtrbuf(struct lnet_rtrbuf *rb, int npages);
673 int  lnet_rtrpools_adjust(int tiny, int small, int large);
674 int lnet_rtrpools_enable(void);
675 void lnet_rtrpools_disable(void);
676 void lnet_rtrpools_free(int keep_pools);
677 void lnet_rtr_transfer_to_peer(struct lnet_peer *src,
678                                struct lnet_peer *target);
679 struct lnet_remotenet *lnet_find_rnet_locked(__u32 net);
680 int lnet_dyn_add_net(struct lnet_ioctl_config_data *conf);
681 int lnet_dyn_del_net(__u32 net);
682 int lnet_dyn_add_ni(struct lnet_ioctl_config_ni *conf, u32 net,
683                     struct lnet_ioctl_config_lnd_tunables *tun);
684 int lnet_dyn_del_ni(struct lnet_nid *nid);
685 int lnet_clear_lazy_portal(struct lnet_ni *ni, int portal, char *reason);
686 struct lnet_net *lnet_get_net_locked(__u32 net_id);
687 void lnet_net_clr_pref_rtrs(struct lnet_net *net);
688 int lnet_net_add_pref_rtr(struct lnet_net *net, struct lnet_nid *gw_nid);
689
690 int lnet_islocalnid(struct lnet_nid *nid);
691 int lnet_islocalnet(__u32 net);
692 int lnet_islocalnet_locked(__u32 net);
693
694 void lnet_msg_attach_md(struct lnet_msg *msg, struct lnet_libmd *md,
695                         unsigned int offset, unsigned int mlen);
696 void lnet_build_unlink_event(struct lnet_libmd *md, struct lnet_event *ev);
697 void lnet_build_msg_event(struct lnet_msg *msg, enum lnet_event_kind ev_type);
698 void lnet_msg_commit(struct lnet_msg *msg, int cpt);
699 void lnet_msg_decommit(struct lnet_msg *msg, int cpt, int status);
700
701 void lnet_prep_send(struct lnet_msg *msg, int type,
702                     struct lnet_processid *target, unsigned int offset,
703                     unsigned int len);
704 int lnet_send(struct lnet_nid *nid, struct lnet_msg *msg,
705               struct lnet_nid *rtr_nid);
706 int lnet_send_ping(struct lnet_nid *dest_nid, struct lnet_handle_md *mdh,
707                    int bytes, void *user_ptr, lnet_handler_t handler,
708                    bool recovery);
709 void lnet_return_tx_credits_locked(struct lnet_msg *msg);
710 void lnet_return_rx_credits_locked(struct lnet_msg *msg);
711 void lnet_schedule_blocked_locked(struct lnet_rtrbufpool *rbp);
712 void lnet_drop_routed_msgs_locked(struct list_head *list, int cpt);
713
714 struct list_head **lnet_create_array_of_queues(void);
715
716 /* portals functions */
717 /* portals attributes */
718 static inline int
719 lnet_ptl_is_lazy(struct lnet_portal *ptl)
720 {
721         return !!(ptl->ptl_options & LNET_PTL_LAZY);
722 }
723
724 static inline int
725 lnet_ptl_is_unique(struct lnet_portal *ptl)
726 {
727         return !!(ptl->ptl_options & LNET_PTL_MATCH_UNIQUE);
728 }
729
730 static inline int
731 lnet_ptl_is_wildcard(struct lnet_portal *ptl)
732 {
733         return !!(ptl->ptl_options & LNET_PTL_MATCH_WILDCARD);
734 }
735
736 static inline void
737 lnet_ptl_setopt(struct lnet_portal *ptl, int opt)
738 {
739         ptl->ptl_options |= opt;
740 }
741
742 static inline void
743 lnet_ptl_unsetopt(struct lnet_portal *ptl, int opt)
744 {
745         ptl->ptl_options &= ~opt;
746 }
747
748 /* match-table functions */
749 struct list_head *lnet_mt_match_head(struct lnet_match_table *mtable,
750                                struct lnet_processid *id, __u64 mbits);
751 struct lnet_match_table *lnet_mt_of_attach(unsigned int index,
752                                            struct lnet_processid *id,
753                                            __u64 mbits, __u64 ignore_bits,
754                                            enum lnet_ins_pos pos);
755 int lnet_mt_match_md(struct lnet_match_table *mtable,
756                      struct lnet_match_info *info, struct lnet_msg *msg);
757
758 /* portals match/attach functions */
759 void lnet_ptl_attach_md(struct lnet_me *me, struct lnet_libmd *md,
760                         struct list_head *matches, struct list_head *drops);
761 void lnet_ptl_detach_md(struct lnet_me *me, struct lnet_libmd *md);
762 int lnet_ptl_match_md(struct lnet_match_info *info, struct lnet_msg *msg);
763
764 /* initialized and finalize portals */
765 int lnet_portals_create(void);
766 void lnet_portals_destroy(void);
767
768 /* message functions */
769 int lnet_parse(struct lnet_ni *ni, struct lnet_hdr *hdr,
770                struct lnet_nid *fromnid, void *private, int rdma_req);
771 int lnet_parse_local(struct lnet_ni *ni, struct lnet_msg *msg);
772 int lnet_parse_forward_locked(struct lnet_ni *ni, struct lnet_msg *msg);
773
774 void lnet_recv(struct lnet_ni *ni, void *private, struct lnet_msg *msg,
775                int delayed, unsigned int offset, unsigned int mlen,
776                unsigned int rlen);
777 void lnet_ni_recv(struct lnet_ni *ni, void *private, struct lnet_msg *msg,
778                   int delayed, unsigned int offset,
779                   unsigned int mlen, unsigned int rlen);
780 void lnet_ni_send(struct lnet_ni *ni, struct lnet_msg *msg);
781
782 struct lnet_msg *lnet_create_reply_msg(struct lnet_ni *ni,
783                                        struct lnet_msg *get_msg);
784 void lnet_set_reply_msg_len(struct lnet_ni *ni, struct lnet_msg *msg,
785                             unsigned int len);
786 void lnet_detach_rsp_tracker(struct lnet_libmd *md, int cpt);
787 void lnet_clean_zombie_rstqs(void);
788
789 bool lnet_md_discarded(struct lnet_libmd *md);
790 void lnet_finalize(struct lnet_msg *msg, int rc);
791 bool lnet_send_error_simulation(struct lnet_msg *msg,
792                                 enum lnet_msg_hstatus *hstatus);
793 void lnet_handle_remote_failure_locked(struct lnet_peer_ni *lpni);
794
795 void lnet_drop_message(struct lnet_ni *ni, int cpt, void *private,
796                        unsigned int nob, __u32 msg_type);
797 void lnet_drop_delayed_msg_list(struct list_head *head, char *reason);
798 void lnet_recv_delayed_msg_list(struct list_head *head);
799
800 int lnet_msg_container_setup(struct lnet_msg_container *container, int cpt);
801 void lnet_msg_container_cleanup(struct lnet_msg_container *container);
802 void lnet_msg_containers_destroy(void);
803 int lnet_msg_containers_create(void);
804
805 char *lnet_health_error2str(enum lnet_msg_hstatus hstatus);
806 char *lnet_msgtyp2str(int type);
807 int lnet_fail_nid(lnet_nid_t nid, unsigned int threshold);
808
809 /** \addtogroup lnet_fault_simulation @{ */
810
811 int lnet_fault_ctl(int cmd, struct libcfs_ioctl_data *data);
812 int lnet_fault_init(void);
813 void lnet_fault_fini(void);
814
815 bool lnet_drop_rule_match(struct lnet_hdr *hdr, struct lnet_nid *local_nid,
816                           enum lnet_msg_hstatus *hstatus);
817
818 int lnet_delay_rule_add(struct lnet_fault_attr *attr);
819 int lnet_delay_rule_del(lnet_nid_t src, lnet_nid_t dst, bool shutdown);
820 int lnet_delay_rule_list(int pos, struct lnet_fault_attr *attr,
821                          struct lnet_fault_stat *stat);
822 void lnet_delay_rule_reset(void);
823 void lnet_delay_rule_check(void);
824 bool lnet_delay_rule_match_locked(struct lnet_hdr *hdr, struct lnet_msg *msg);
825
826 /** @} lnet_fault_simulation */
827
828 void lnet_counters_get_common(struct lnet_counters_common *common);
829 int lnet_counters_get(struct lnet_counters *counters);
830 void lnet_counters_reset(void);
831 static inline void
832 lnet_ni_set_sel_priority_locked(struct lnet_ni *ni, __u32 priority)
833 {
834         ni->ni_sel_priority = priority;
835 }
836
837 static inline void
838 lnet_net_set_sel_priority_locked(struct lnet_net *net, __u32 priority)
839 {
840         net->net_sel_priority = priority;
841 }
842
843 unsigned int lnet_iov_nob(unsigned int niov, struct kvec *iov);
844 unsigned int lnet_kiov_nob(unsigned int niov, struct bio_vec *iov);
845 int lnet_extract_kiov(int dst_niov, struct bio_vec *dst,
846                       int src_niov, struct bio_vec *src,
847                       unsigned int offset, unsigned int len);
848
849 void lnet_copy_iov2iov(unsigned int ndiov, struct kvec *diov,
850                        unsigned int doffset,
851                        unsigned int nsiov, struct kvec *siov,
852                        unsigned int soffset, unsigned int nob);
853 void lnet_copy_kiov2iov(unsigned int niov, struct kvec *iov,
854                         unsigned int iovoffset,
855                         unsigned int nkiov, struct bio_vec *kiov,
856                         unsigned int kiovoffset, unsigned int nob);
857 void lnet_copy_iov2kiov(unsigned int nkiov, struct bio_vec *kiov,
858                         unsigned int kiovoffset,
859                         unsigned int niov, struct kvec *iov,
860                         unsigned int iovoffset, unsigned int nob);
861 void lnet_copy_kiov2kiov(unsigned int ndkiov, struct bio_vec *dkiov,
862                          unsigned int doffset,
863                          unsigned int nskiov, struct bio_vec *skiov,
864                          unsigned int soffset, unsigned int nob);
865
866 static inline void
867 lnet_copy_kiov2flat(int dlen, void *dest, unsigned int doffset,
868                     unsigned int nsiov, struct bio_vec *skiov,
869                     unsigned int soffset, unsigned int nob)
870 {
871         struct kvec diov = { .iov_base = dest, .iov_len = dlen };
872
873         lnet_copy_kiov2iov(1, &diov, doffset,
874                            nsiov, skiov, soffset, nob);
875 }
876
877 static inline void
878 lnet_copy_flat2kiov(unsigned int ndiov, struct bio_vec *dkiov,
879                     unsigned int doffset, int slen, void *src,
880                     unsigned int soffset, unsigned int nob)
881 {
882         struct kvec siov = { .iov_base = src, .iov_len = slen };
883         lnet_copy_iov2kiov(ndiov, dkiov, doffset,
884                            1, &siov, soffset, nob);
885 }
886
887 void lnet_me_unlink(struct lnet_me *me);
888
889 void lnet_md_unlink(struct lnet_libmd *md);
890 void lnet_md_deconstruct(struct lnet_libmd *lmd, struct lnet_event *ev);
891 struct page *lnet_kvaddr_to_page(unsigned long vaddr);
892 struct page *lnet_get_first_page(struct lnet_libmd *md, unsigned int offset);
893 int lnet_cpt_of_md(struct lnet_libmd *md, unsigned int offset);
894
895 unsigned int lnet_get_lnd_timeout(void);
896 void lnet_register_lnd(const struct lnet_lnd *lnd);
897 void lnet_unregister_lnd(const struct lnet_lnd *lnd);
898
899 struct socket *lnet_connect(struct lnet_nid *peer_nid, int interface,
900                             struct sockaddr *peeraddr, struct net *ns);
901 void lnet_connect_console_error(int rc, struct lnet_nid *peer_nid,
902                                 struct sockaddr *sa);
903 int lnet_count_acceptor_nets(void);
904 int lnet_acceptor_timeout(void);
905 int lnet_acceptor_port(void);
906 int lnet_acceptor_start(void);
907 void lnet_acceptor_stop(void);
908
909 struct lnet_inetdev {
910         u32     li_cpt;
911         union {
912                 struct {
913                         u32     li_ipaddr;
914                         u32     li_netmask;
915                 };
916                 u32     li_ipv6addr[4];
917         };
918         u32     li_index;
919         bool    li_iff_master;
920         u32     li_size;
921         char    li_name[IFNAMSIZ];
922 };
923
924 int lnet_inet_enumerate(struct lnet_inetdev **dev_list, struct net *ns,
925                         bool v6);
926 int lnet_inet_select(struct lnet_ni *ni, struct lnet_inetdev *ifaces,
927                      int num_ifaces);
928
929 void lnet_sock_setbuf(struct socket *socket, int txbufsize, int rxbufsize);
930 void lnet_sock_getbuf(struct socket *socket, int *txbufsize, int *rxbufsize);
931 int lnet_sock_getaddr(struct socket *socket, bool remote,
932                       struct sockaddr_storage *peer);
933 int lnet_sock_write(struct socket *sock, void *buffer, int nob, int timeout);
934 int lnet_sock_read(struct socket *sock, void *buffer, int nob, int timeout);
935
936 struct socket *lnet_sock_listen(int port, int backlog,
937                                 struct net *ns);
938 struct socket *lnet_sock_connect(int interface, int local_port,
939                                  struct sockaddr *peeraddr,
940                                  struct net *ns);
941
942 int lnet_peers_start_down(void);
943 int lnet_peer_buffer_credits(struct lnet_net *net);
944 void lnet_consolidate_routes_locked(struct lnet_peer *orig_lp,
945                                     struct lnet_peer *new_lp);
946 void lnet_router_discovery_complete(struct lnet_peer *lp);
947 void lnet_router_discovery_ping_reply(struct lnet_peer *lp,
948                                       struct lnet_ping_buffer *pbuf);
949
950 int lnet_monitor_thr_start(void);
951 void lnet_monitor_thr_stop(void);
952
953 bool lnet_router_checker_active(void);
954 void lnet_check_routers(void);
955 void lnet_wait_router_start(void);
956 void lnet_swap_pinginfo(struct lnet_ping_buffer *pbuf);
957
958 int lnet_ping_info_validate(struct lnet_ping_info *pinfo);
959 struct lnet_ping_buffer *lnet_ping_buffer_alloc(int bytes, gfp_t gfp);
960 void lnet_ping_buffer_free(struct lnet_ping_buffer *pbuf);
961
962 static inline void lnet_ping_buffer_addref(struct lnet_ping_buffer *pbuf)
963 {
964         atomic_inc(&pbuf->pb_refcnt);
965 }
966
967 static inline void lnet_ping_buffer_decref(struct lnet_ping_buffer *pbuf)
968 {
969         if (atomic_dec_and_test(&pbuf->pb_refcnt)) {
970                 wake_up_var(&pbuf->pb_refcnt);
971                 lnet_ping_buffer_free(pbuf);
972         }
973 }
974
975 struct lnet_ping_iter {
976         struct lnet_ping_info   *pinfo;
977         void                    *pos, *end;
978 };
979
980 u32 *ping_iter_first(struct lnet_ping_iter *pi, struct lnet_ping_buffer *pbuf,
981                      struct lnet_nid *nid);
982 u32 *ping_iter_next(struct lnet_ping_iter *pi, struct lnet_nid *nid);
983 int ping_info_count_entries(struct lnet_ping_buffer *pbuf);
984
985 static inline int lnet_push_target_resize_needed(void)
986 {
987         return the_lnet.ln_push_target->pb_nbytes < the_lnet.ln_push_target_nbytes;
988 }
989
990 int lnet_push_target_resize(void);
991 int lnet_push_target_post(struct lnet_ping_buffer *pbuf,
992                           struct lnet_handle_md *mdh);
993 void lnet_peer_push_event(struct lnet_event *ev);
994
995 int lnet_parse_ip2nets(const char **networksp, const char *ip2nets);
996 int lnet_parse_routes(const char *route_str, int *im_a_router);
997 int lnet_parse_networks(struct list_head *nilist, const char *networks);
998 bool lnet_net_unique(__u32 net_id, struct list_head *nilist,
999                      struct lnet_net **net);
1000 bool lnet_ni_unique_net(struct list_head *nilist, char *iface);
1001 void lnet_incr_dlc_seq(void);
1002 __u32 lnet_get_dlc_seq_locked(void);
1003
1004 struct lnet_peer_net *lnet_get_next_peer_net_locked(struct lnet_peer *lp,
1005                                                     __u32 prev_lpn_id);
1006 struct lnet_peer_ni *lnet_get_next_peer_ni_locked(struct lnet_peer *peer,
1007                                                   struct lnet_peer_net *peer_net,
1008                                                   struct lnet_peer_ni *prev);
1009 struct lnet_peer_ni *lnet_peerni_by_nid_locked(struct lnet_nid *nid,
1010                                                struct lnet_nid *pref,
1011                                                int cpt);
1012 struct lnet_peer_ni *lnet_nid2peerni_ex(struct lnet_nid *nid);
1013 struct lnet_peer_ni *lnet_peer_ni_get_locked(struct lnet_peer *lp,
1014                                              struct lnet_nid *nid);
1015 struct lnet_peer_ni *lnet_peer_ni_find_locked(struct lnet_nid *nid);
1016 struct lnet_peer *lnet_find_peer(struct lnet_nid *nid);
1017 void lnet_peer_net_added(struct lnet_net *net);
1018 void lnet_peer_primary_nid_locked(struct lnet_nid *nid,
1019                                   struct lnet_nid *result);
1020 int lnet_discover_peer_locked(struct lnet_peer_ni *lpni, int cpt, bool block);
1021 void lnet_peer_queue_message(struct lnet_peer *lp, struct lnet_msg *msg);
1022 int lnet_peer_discovery_start(void);
1023 void lnet_peer_discovery_stop(void);
1024 void lnet_push_update_to_peers(int force);
1025 void lnet_peer_tables_cleanup(struct lnet_net *net);
1026 void lnet_peer_uninit(void);
1027 int lnet_peer_tables_create(void);
1028 void lnet_debug_peer(struct lnet_nid *nid);
1029 struct lnet_peer_net *lnet_peer_get_net_locked(struct lnet_peer *peer,
1030                                                __u32 net_id);
1031 bool lnet_peer_is_pref_nid_locked(struct lnet_peer_ni *lpni,
1032                                   struct lnet_nid *nid);
1033 int lnet_peer_add_pref_nid(struct lnet_peer_ni *lpni, struct lnet_nid *nid);
1034 void lnet_peer_clr_pref_nids(struct lnet_peer_ni *lpni);
1035 bool lnet_peer_is_pref_rtr_locked(struct lnet_peer_ni *lpni,
1036                                   struct lnet_nid *gw_nid);
1037 void lnet_peer_clr_pref_rtrs(struct lnet_peer_ni *lpni);
1038 int lnet_peer_add_pref_rtr(struct lnet_peer_ni *lpni, struct lnet_nid *nid);
1039 int lnet_peer_ni_set_non_mr_pref_nid(struct lnet_peer_ni *lpni,
1040                                      struct lnet_nid *nid);
1041 int lnet_user_add_peer_ni(struct lnet_nid *key_nid, struct lnet_nid *nid,
1042                           bool mr, bool lock_prim);
1043 int lnet_del_peer_ni(struct lnet_nid *key_nid, struct lnet_nid *nid,
1044                      int force);
1045 int lnet_get_peer_info(struct lnet_ioctl_peer_cfg *cfg, void __user *bulk);
1046 int lnet_get_peer_ni_info(__u32 peer_index, __u64 *nid,
1047                           char alivness[LNET_MAX_STR_LEN],
1048                           __u32 *cpt_iter, __u32 *refcount,
1049                           __u32 *ni_peer_tx_credits, __u32 *peer_tx_credits,
1050                           __u32 *peer_rtr_credits, __u32 *peer_min_rtr_credtis,
1051                           __u32 *peer_tx_qnob);
1052 int lnet_get_peer_ni_hstats(struct lnet_ioctl_peer_ni_hstats *stats);
1053
1054 static inline void
1055 lnet_peer_net_set_sel_priority_locked(struct lnet_peer_net *lpn, __u32 priority)
1056 {
1057         lpn->lpn_sel_priority = priority;
1058 }
1059
1060
1061 static inline struct lnet_peer_net *
1062 lnet_find_peer_net_locked(struct lnet_peer *peer, __u32 net_id)
1063 {
1064         struct lnet_peer_net *peer_net;
1065
1066         list_for_each_entry(peer_net, &peer->lp_peer_nets, lpn_peer_nets) {
1067                 if (peer_net->lpn_net_id == net_id)
1068                         return peer_net;
1069         }
1070
1071         return NULL;
1072 }
1073
1074 static inline bool
1075 lnet_peer_is_multi_rail(struct lnet_peer *lp)
1076 {
1077         if (lp->lp_state & LNET_PEER_MULTI_RAIL)
1078                 return true;
1079         return false;
1080 }
1081
1082 static inline bool
1083 lnet_peer_ni_is_configured(struct lnet_peer_ni *lpni)
1084 {
1085         if (lpni->lpni_peer_net->lpn_peer->lp_state & LNET_PEER_CONFIGURED)
1086                 return true;
1087         return false;
1088 }
1089
1090 static inline bool
1091 lnet_peer_ni_is_primary(struct lnet_peer_ni *lpni)
1092 {
1093         return nid_same(&lpni->lpni_nid,
1094                          &lpni->lpni_peer_net->lpn_peer->lp_primary_nid);
1095 }
1096
1097 bool lnet_peer_is_uptodate(struct lnet_peer *lp);
1098 bool lnet_peer_is_uptodate_locked(struct lnet_peer *lp);
1099 bool lnet_is_discovery_disabled(struct lnet_peer *lp);
1100 bool lnet_is_discovery_disabled_locked(struct lnet_peer *lp);
1101 bool lnet_peer_gw_discovery(struct lnet_peer *lp);
1102
1103 static inline bool
1104 lnet_peer_needs_push(struct lnet_peer *lp)
1105 {
1106         if (!(lp->lp_state & LNET_PEER_MULTI_RAIL))
1107                 return false;
1108         if (lp->lp_state & LNET_PEER_MARK_DELETED)
1109                 return false;
1110         if (lp->lp_state & LNET_PEER_FORCE_PUSH)
1111                 return true;
1112         if (lp->lp_state & LNET_PEER_NO_DISCOVERY)
1113                 return false;
1114         /* if discovery is not enabled then no need to push */
1115         if (lnet_peer_discovery_disabled)
1116                 return false;
1117         if (lp->lp_node_seqno < atomic_read(&the_lnet.ln_ping_target_seqno))
1118                 return true;
1119         return false;
1120 }
1121
1122 static inline unsigned int
1123 lnet_get_next_recovery_ping(unsigned int ping_count, time64_t now)
1124 {
1125         unsigned int interval;
1126
1127         /* lnet_max_recovery_interval <= 2^lnet_max_recovery_ping_count */
1128         if (ping_count > lnet_max_recovery_ping_count)
1129                 interval = lnet_max_recovery_ping_interval;
1130         else
1131                 interval = 1 << ping_count;
1132
1133         return now + interval;
1134 }
1135
1136 static inline void
1137 lnet_peer_ni_set_next_ping(struct lnet_peer_ni *lpni, time64_t now)
1138 {
1139         lpni->lpni_next_ping =
1140                 lnet_get_next_recovery_ping(lpni->lpni_ping_count, now);
1141 }
1142
1143 static inline void
1144 lnet_ni_set_next_ping(struct lnet_ni *ni, time64_t now)
1145 {
1146         ni->ni_next_ping = lnet_get_next_recovery_ping(ni->ni_ping_count, now);
1147 }
1148
1149 /*
1150  * A peer NI is alive if it satisfies the following two conditions:
1151  *  1. peer NI health >= LNET_MAX_HEALTH_VALUE * router_sensitivity_percentage
1152  *  2. the cached NI status received when we discover the peer is UP
1153  */
1154 static inline bool
1155 lnet_is_peer_ni_alive(struct lnet_peer_ni *lpni)
1156 {
1157         bool halive = false;
1158
1159         halive = (atomic_read(&lpni->lpni_healthv) >=
1160                  (LNET_MAX_HEALTH_VALUE * router_sensitivity_percentage / 100));
1161
1162         return halive && lpni->lpni_ns_status == LNET_NI_STATUS_UP;
1163 }
1164
1165 static inline void
1166 lnet_update_peer_net_healthv(struct lnet_peer_ni *lpni)
1167 {
1168         struct lnet_peer_net *lpn;
1169         int best_healthv = 0;
1170
1171         lpn = lpni->lpni_peer_net;
1172
1173         list_for_each_entry(lpni, &lpn->lpn_peer_nis, lpni_peer_nis) {
1174                 int lpni_healthv = atomic_read(&lpni->lpni_healthv);
1175                 if (best_healthv < lpni_healthv)
1176                         best_healthv = lpni_healthv;
1177         }
1178
1179         lpn->lpn_healthv = best_healthv;
1180 }
1181
1182 static inline void
1183 lnet_set_lpni_healthv_locked(struct lnet_peer_ni *lpni, int value)
1184 {
1185         if (atomic_read(&lpni->lpni_healthv) == value)
1186                 return;
1187         atomic_set(&lpni->lpni_healthv, value);
1188         lnet_update_peer_net_healthv(lpni);
1189 }
1190
1191 static inline bool
1192 lnet_atomic_add_unless_max(atomic_t *v, int a, int u)
1193 {
1194         int c = atomic_read(v);
1195         bool mod = false;
1196         int old;
1197         int m;
1198
1199         if (c == u)
1200                 return mod;
1201
1202         for (;;) {
1203                 if (c + a >= u)
1204                         m = u;
1205                 else
1206                         m = c + a;
1207                 old = atomic_cmpxchg(v, c, m);
1208
1209                 if (old == u)
1210                         break;
1211
1212                 if (old == c) {
1213                         mod = true;
1214                         break;
1215                 }
1216                 c = old;
1217         }
1218
1219         return mod;
1220 }
1221
1222 static bool
1223 lnet_dec_healthv_locked(atomic_t *healthv, int sensitivity)
1224 {
1225         int h = atomic_read(healthv);
1226
1227         if (h == 0)
1228                 return false;
1229
1230         if (h < sensitivity)
1231                 h = 0;
1232         else
1233                 h -= sensitivity;
1234
1235         return (atomic_xchg(healthv, h) != h);
1236 }
1237
1238 static inline void
1239 lnet_dec_lpni_healthv_locked(struct lnet_peer_ni *lpni)
1240 {
1241         /* If there is a health sensitivity in the peer then use that
1242          * instead of the globally set one.
1243          * only adjust the net health if the lpni health value changed
1244          */
1245         if (lnet_dec_healthv_locked(&lpni->lpni_healthv,
1246                         lpni->lpni_peer_net->lpn_peer->lp_health_sensitivity ? :
1247                         lnet_health_sensitivity)) {
1248                 lnet_update_peer_net_healthv(lpni);
1249         }
1250 }
1251
1252 static inline void
1253 lnet_inc_lpni_healthv_locked(struct lnet_peer_ni *lpni)
1254 {
1255         /* If there is a health sensitivity in the peer then use that
1256          * instead of the globally set one.
1257          * only adjust the net health if the lpni health value changed
1258          */
1259         if (lnet_atomic_add_unless_max(&lpni->lpni_healthv,
1260                         lpni->lpni_peer_net->lpn_peer->lp_health_sensitivity ? :
1261                         lnet_health_sensitivity,
1262                                        LNET_MAX_HEALTH_VALUE)) {
1263                 lnet_update_peer_net_healthv(lpni);
1264         }
1265 }
1266
1267 static inline void
1268 lnet_inc_healthv(atomic_t *healthv, int value)
1269 {
1270         lnet_atomic_add_unless_max(healthv, value, LNET_MAX_HEALTH_VALUE);
1271 }
1272
1273 static inline int
1274 lnet_get_list_len(struct list_head *list)
1275 {
1276         struct list_head *l;
1277         int count = 0;
1278
1279         list_for_each(l, list)
1280                 count++;
1281
1282         return count;
1283 }
1284
1285 void lnet_incr_stats(struct lnet_element_stats *stats,
1286                      enum lnet_msg_type msg_type,
1287                      enum lnet_stats_type stats_type);
1288
1289 __u32 lnet_sum_stats(struct lnet_element_stats *stats,
1290                      enum lnet_stats_type stats_type);
1291
1292 void lnet_usr_translate_stats(struct lnet_ioctl_element_msg_stats *msg_stats,
1293                               struct lnet_element_stats *stats);
1294
1295 static inline void
1296 lnet_set_route_aliveness(struct lnet_route *route, bool alive)
1297 {
1298         bool old = atomic_xchg(&route->lr_alive, alive);
1299
1300         if (old != alive)
1301                 CERROR("route to %s through %s has gone from %s to %s\n",
1302                        libcfs_net2str(route->lr_net),
1303                        libcfs_nidstr(&route->lr_gateway->lp_primary_nid),
1304                        old ? "up" : "down",
1305                        alive ? "up" : "down");
1306 }
1307 void lnet_update_ping_buffer(void);
1308 #endif