Whamcloud - gitweb
a8c5f5b30834a906c827b7b8a6049d37f7754bb8
[fs/lustre-release.git] / lnet / lnet / lib-move.c
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  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lnet/lnet/lib-move.c
33  *
34  * Data movement routines
35  */
36
37 #define DEBUG_SUBSYSTEM S_LNET
38
39 #include <linux/pagemap.h>
40
41 #include <lnet/lib-lnet.h>
42 #include <linux/nsproxy.h>
43 #include <net/net_namespace.h>
44
45 static int local_nid_dist_zero = 1;
46 module_param(local_nid_dist_zero, int, 0444);
47 MODULE_PARM_DESC(local_nid_dist_zero, "Reserved");
48
49 struct lnet_send_data {
50         struct lnet_ni *sd_best_ni;
51         struct lnet_peer_ni *sd_best_lpni;
52         struct lnet_peer_ni *sd_final_dst_lpni;
53         struct lnet_peer *sd_peer;
54         struct lnet_peer *sd_gw_peer;
55         struct lnet_peer_ni *sd_gw_lpni;
56         struct lnet_peer_net *sd_peer_net;
57         struct lnet_msg *sd_msg;
58         lnet_nid_t sd_dst_nid;
59         lnet_nid_t sd_src_nid;
60         lnet_nid_t sd_rtr_nid;
61         int sd_cpt;
62         int sd_md_cpt;
63         __u32 sd_send_case;
64 };
65
66 static inline bool
67 lnet_msg_is_response(struct lnet_msg *msg)
68 {
69         return msg->msg_type == LNET_MSG_ACK || msg->msg_type == LNET_MSG_REPLY;
70 }
71
72 static inline bool
73 lnet_response_tracking_enabled(__u32 msg_type, unsigned int md_options)
74 {
75         if (md_options & LNET_MD_NO_TRACK_RESPONSE)
76                 /* Explicitly disabled in MD options */
77                 return false;
78
79         if (md_options & LNET_MD_TRACK_RESPONSE)
80                 /* Explicity enabled in MD options */
81                 return true;
82
83         if (lnet_response_tracking == 3)
84                 /* Enabled for all message types */
85                 return true;
86
87         if (msg_type == LNET_MSG_PUT)
88                 return lnet_response_tracking == 2;
89
90         if (msg_type == LNET_MSG_GET)
91                 return lnet_response_tracking == 1;
92
93         return false;
94 }
95
96 static inline struct lnet_comm_count *
97 get_stats_counts(struct lnet_element_stats *stats,
98                  enum lnet_stats_type stats_type)
99 {
100         switch (stats_type) {
101         case LNET_STATS_TYPE_SEND:
102                 return &stats->el_send_stats;
103         case LNET_STATS_TYPE_RECV:
104                 return &stats->el_recv_stats;
105         case LNET_STATS_TYPE_DROP:
106                 return &stats->el_drop_stats;
107         default:
108                 CERROR("Unknown stats type\n");
109         }
110
111         return NULL;
112 }
113
114 void lnet_incr_stats(struct lnet_element_stats *stats,
115                      enum lnet_msg_type msg_type,
116                      enum lnet_stats_type stats_type)
117 {
118         struct lnet_comm_count *counts = get_stats_counts(stats, stats_type);
119         if (!counts)
120                 return;
121
122         switch (msg_type) {
123         case LNET_MSG_ACK:
124                 atomic_inc(&counts->co_ack_count);
125                 break;
126         case LNET_MSG_PUT:
127                 atomic_inc(&counts->co_put_count);
128                 break;
129         case LNET_MSG_GET:
130                 atomic_inc(&counts->co_get_count);
131                 break;
132         case LNET_MSG_REPLY:
133                 atomic_inc(&counts->co_reply_count);
134                 break;
135         case LNET_MSG_HELLO:
136                 atomic_inc(&counts->co_hello_count);
137                 break;
138         default:
139                 CERROR("There is a BUG in the code. Unknown message type\n");
140                 break;
141         }
142 }
143
144 __u32 lnet_sum_stats(struct lnet_element_stats *stats,
145                      enum lnet_stats_type stats_type)
146 {
147         struct lnet_comm_count *counts = get_stats_counts(stats, stats_type);
148         if (!counts)
149                 return 0;
150
151         return (atomic_read(&counts->co_ack_count) +
152                 atomic_read(&counts->co_put_count) +
153                 atomic_read(&counts->co_get_count) +
154                 atomic_read(&counts->co_reply_count) +
155                 atomic_read(&counts->co_hello_count));
156 }
157
158 static inline void assign_stats(struct lnet_ioctl_comm_count *msg_stats,
159                                 struct lnet_comm_count *counts)
160 {
161         msg_stats->ico_get_count = atomic_read(&counts->co_get_count);
162         msg_stats->ico_put_count = atomic_read(&counts->co_put_count);
163         msg_stats->ico_reply_count = atomic_read(&counts->co_reply_count);
164         msg_stats->ico_ack_count = atomic_read(&counts->co_ack_count);
165         msg_stats->ico_hello_count = atomic_read(&counts->co_hello_count);
166 }
167
168 void lnet_usr_translate_stats(struct lnet_ioctl_element_msg_stats *msg_stats,
169                               struct lnet_element_stats *stats)
170 {
171         struct lnet_comm_count *counts;
172
173         LASSERT(msg_stats);
174         LASSERT(stats);
175
176         counts = get_stats_counts(stats, LNET_STATS_TYPE_SEND);
177         if (!counts)
178                 return;
179         assign_stats(&msg_stats->im_send_stats, counts);
180
181         counts = get_stats_counts(stats, LNET_STATS_TYPE_RECV);
182         if (!counts)
183                 return;
184         assign_stats(&msg_stats->im_recv_stats, counts);
185
186         counts = get_stats_counts(stats, LNET_STATS_TYPE_DROP);
187         if (!counts)
188                 return;
189         assign_stats(&msg_stats->im_drop_stats, counts);
190 }
191
192 int
193 lnet_fail_nid(lnet_nid_t nid, unsigned int threshold)
194 {
195         struct lnet_test_peer *tp;
196         struct list_head *el;
197         struct list_head *next;
198         LIST_HEAD(cull);
199
200         /* NB: use lnet_net_lock(0) to serialize operations on test peers */
201         if (threshold != 0) {
202                 /* Adding a new entry */
203                 LIBCFS_ALLOC(tp, sizeof(*tp));
204                 if (tp == NULL)
205                         return -ENOMEM;
206
207                 tp->tp_nid = nid;
208                 tp->tp_threshold = threshold;
209
210                 lnet_net_lock(0);
211                 list_add_tail(&tp->tp_list, &the_lnet.ln_test_peers);
212                 lnet_net_unlock(0);
213                 return 0;
214         }
215
216         lnet_net_lock(0);
217
218         list_for_each_safe(el, next, &the_lnet.ln_test_peers) {
219                 tp = list_entry(el, struct lnet_test_peer, tp_list);
220
221                 if (tp->tp_threshold == 0 ||    /* needs culling anyway */
222                     nid == LNET_NID_ANY ||      /* removing all entries */
223                     tp->tp_nid == nid) {        /* matched this one */
224                         list_move(&tp->tp_list, &cull);
225                 }
226         }
227
228         lnet_net_unlock(0);
229
230         while (!list_empty(&cull)) {
231                 tp = list_entry(cull.next, struct lnet_test_peer, tp_list);
232
233                 list_del(&tp->tp_list);
234                 LIBCFS_FREE(tp, sizeof(*tp));
235         }
236         return 0;
237 }
238
239 static int
240 fail_peer (lnet_nid_t nid, int outgoing)
241 {
242         struct lnet_test_peer *tp;
243         struct list_head *el;
244         struct list_head *next;
245         LIST_HEAD(cull);
246         int fail = 0;
247
248         /* NB: use lnet_net_lock(0) to serialize operations on test peers */
249         lnet_net_lock(0);
250
251         list_for_each_safe(el, next, &the_lnet.ln_test_peers) {
252                 tp = list_entry(el, struct lnet_test_peer, tp_list);
253
254                 if (tp->tp_threshold == 0) {
255                         /* zombie entry */
256                         if (outgoing) {
257                                 /* only cull zombies on outgoing tests,
258                                  * since we may be at interrupt priority on
259                                  * incoming messages. */
260                                 list_move(&tp->tp_list, &cull);
261                         }
262                         continue;
263                 }
264
265                 if (tp->tp_nid == LNET_NID_ANY ||       /* fail every peer */
266                     nid == tp->tp_nid) {                /* fail this peer */
267                         fail = 1;
268
269                         if (tp->tp_threshold != LNET_MD_THRESH_INF) {
270                                 tp->tp_threshold--;
271                                 if (outgoing &&
272                                     tp->tp_threshold == 0) {
273                                         /* see above */
274                                         list_move(&tp->tp_list, &cull);
275                                 }
276                         }
277                         break;
278                 }
279         }
280
281         lnet_net_unlock(0);
282
283         while (!list_empty(&cull)) {
284                 tp = list_entry(cull.next, struct lnet_test_peer, tp_list);
285                 list_del(&tp->tp_list);
286
287                 LIBCFS_FREE(tp, sizeof(*tp));
288         }
289
290         return fail;
291 }
292
293 unsigned int
294 lnet_iov_nob(unsigned int niov, struct kvec *iov)
295 {
296         unsigned int nob = 0;
297
298         LASSERT(niov == 0 || iov != NULL);
299         while (niov-- > 0)
300                 nob += (iov++)->iov_len;
301
302         return (nob);
303 }
304 EXPORT_SYMBOL(lnet_iov_nob);
305
306 void
307 lnet_copy_iov2iov(unsigned int ndiov, struct kvec *diov, unsigned int doffset,
308                   unsigned int nsiov, struct kvec *siov, unsigned int soffset,
309                   unsigned int nob)
310 {
311         /* NB diov, siov are READ-ONLY */
312         unsigned int this_nob;
313
314         if (nob == 0)
315                 return;
316
317         /* skip complete frags before 'doffset' */
318         LASSERT(ndiov > 0);
319         while (doffset >= diov->iov_len) {
320                 doffset -= diov->iov_len;
321                 diov++;
322                 ndiov--;
323                 LASSERT(ndiov > 0);
324         }
325
326         /* skip complete frags before 'soffset' */
327         LASSERT(nsiov > 0);
328         while (soffset >= siov->iov_len) {
329                 soffset -= siov->iov_len;
330                 siov++;
331                 nsiov--;
332                 LASSERT(nsiov > 0);
333         }
334
335         do {
336                 LASSERT(ndiov > 0);
337                 LASSERT(nsiov > 0);
338                 this_nob = min3((unsigned int)diov->iov_len - doffset,
339                                 (unsigned int)siov->iov_len - soffset,
340                                 nob);
341
342                 memcpy((char *)diov->iov_base + doffset,
343                        (char *)siov->iov_base + soffset, this_nob);
344                 nob -= this_nob;
345
346                 if (diov->iov_len > doffset + this_nob) {
347                         doffset += this_nob;
348                 } else {
349                         diov++;
350                         ndiov--;
351                         doffset = 0;
352                 }
353
354                 if (siov->iov_len > soffset + this_nob) {
355                         soffset += this_nob;
356                 } else {
357                         siov++;
358                         nsiov--;
359                         soffset = 0;
360                 }
361         } while (nob > 0);
362 }
363 EXPORT_SYMBOL(lnet_copy_iov2iov);
364
365 unsigned int
366 lnet_kiov_nob(unsigned int niov, struct bio_vec *kiov)
367 {
368         unsigned int  nob = 0;
369
370         LASSERT(niov == 0 || kiov != NULL);
371         while (niov-- > 0)
372                 nob += (kiov++)->bv_len;
373
374         return (nob);
375 }
376 EXPORT_SYMBOL(lnet_kiov_nob);
377
378 void
379 lnet_copy_kiov2kiov(unsigned int ndiov, struct bio_vec *diov,
380                     unsigned int doffset,
381                     unsigned int nsiov, struct bio_vec *siov,
382                     unsigned int soffset,
383                     unsigned int nob)
384 {
385         /* NB diov, siov are READ-ONLY */
386         unsigned int    this_nob;
387         char           *daddr = NULL;
388         char           *saddr = NULL;
389
390         if (nob == 0)
391                 return;
392
393         LASSERT (!in_interrupt ());
394
395         LASSERT (ndiov > 0);
396         while (doffset >= diov->bv_len) {
397                 doffset -= diov->bv_len;
398                 diov++;
399                 ndiov--;
400                 LASSERT(ndiov > 0);
401         }
402
403         LASSERT(nsiov > 0);
404         while (soffset >= siov->bv_len) {
405                 soffset -= siov->bv_len;
406                 siov++;
407                 nsiov--;
408                 LASSERT(nsiov > 0);
409         }
410
411         do {
412                 LASSERT(ndiov > 0);
413                 LASSERT(nsiov > 0);
414                 this_nob = min3(diov->bv_len - doffset,
415                                 siov->bv_len - soffset,
416                                 nob);
417
418                 if (daddr == NULL)
419                         daddr = ((char *)kmap(diov->bv_page)) +
420                                 diov->bv_offset + doffset;
421                 if (saddr == NULL)
422                         saddr = ((char *)kmap(siov->bv_page)) +
423                                 siov->bv_offset + soffset;
424
425                 /* Vanishing risk of kmap deadlock when mapping 2 pages.
426                  * However in practice at least one of the kiovs will be mapped
427                  * kernel pages and the map/unmap will be NOOPs */
428
429                 memcpy (daddr, saddr, this_nob);
430                 nob -= this_nob;
431
432                 if (diov->bv_len > doffset + this_nob) {
433                         daddr += this_nob;
434                         doffset += this_nob;
435                 } else {
436                         kunmap(diov->bv_page);
437                         daddr = NULL;
438                         diov++;
439                         ndiov--;
440                         doffset = 0;
441                 }
442
443                 if (siov->bv_len > soffset + this_nob) {
444                         saddr += this_nob;
445                         soffset += this_nob;
446                 } else {
447                         kunmap(siov->bv_page);
448                         saddr = NULL;
449                         siov++;
450                         nsiov--;
451                         soffset = 0;
452                 }
453         } while (nob > 0);
454
455         if (daddr != NULL)
456                 kunmap(diov->bv_page);
457         if (saddr != NULL)
458                 kunmap(siov->bv_page);
459 }
460 EXPORT_SYMBOL(lnet_copy_kiov2kiov);
461
462 void
463 lnet_copy_kiov2iov (unsigned int niov, struct kvec *iov, unsigned int iovoffset,
464                     unsigned int nkiov, struct bio_vec *kiov,
465                     unsigned int kiovoffset,
466                     unsigned int nob)
467 {
468         /* NB iov, kiov are READ-ONLY */
469         unsigned int    this_nob;
470         char           *addr = NULL;
471
472         if (nob == 0)
473                 return;
474
475         LASSERT (!in_interrupt ());
476
477         LASSERT (niov > 0);
478         while (iovoffset >= iov->iov_len) {
479                 iovoffset -= iov->iov_len;
480                 iov++;
481                 niov--;
482                 LASSERT(niov > 0);
483         }
484
485         LASSERT(nkiov > 0);
486         while (kiovoffset >= kiov->bv_len) {
487                 kiovoffset -= kiov->bv_len;
488                 kiov++;
489                 nkiov--;
490                 LASSERT(nkiov > 0);
491         }
492
493         do {
494                 LASSERT(niov > 0);
495                 LASSERT(nkiov > 0);
496                 this_nob = min3((unsigned int)iov->iov_len - iovoffset,
497                                 (unsigned int)kiov->bv_len - kiovoffset,
498                                 nob);
499
500                 if (addr == NULL)
501                         addr = ((char *)kmap(kiov->bv_page)) +
502                                 kiov->bv_offset + kiovoffset;
503
504                 memcpy((char *)iov->iov_base + iovoffset, addr, this_nob);
505                 nob -= this_nob;
506
507                 if (iov->iov_len > iovoffset + this_nob) {
508                         iovoffset += this_nob;
509                 } else {
510                         iov++;
511                         niov--;
512                         iovoffset = 0;
513                 }
514
515                 if (kiov->bv_len > kiovoffset + this_nob) {
516                         addr += this_nob;
517                         kiovoffset += this_nob;
518                 } else {
519                         kunmap(kiov->bv_page);
520                         addr = NULL;
521                         kiov++;
522                         nkiov--;
523                         kiovoffset = 0;
524                 }
525
526         } while (nob > 0);
527
528         if (addr != NULL)
529                 kunmap(kiov->bv_page);
530 }
531 EXPORT_SYMBOL(lnet_copy_kiov2iov);
532
533 void
534 lnet_copy_iov2kiov(unsigned int nkiov, struct bio_vec *kiov,
535                    unsigned int kiovoffset,
536                    unsigned int niov, struct kvec *iov, unsigned int iovoffset,
537                    unsigned int nob)
538 {
539         /* NB kiov, iov are READ-ONLY */
540         unsigned int    this_nob;
541         char           *addr = NULL;
542
543         if (nob == 0)
544                 return;
545
546         LASSERT (!in_interrupt ());
547
548         LASSERT (nkiov > 0);
549         while (kiovoffset >= kiov->bv_len) {
550                 kiovoffset -= kiov->bv_len;
551                 kiov++;
552                 nkiov--;
553                 LASSERT(nkiov > 0);
554         }
555
556         LASSERT(niov > 0);
557         while (iovoffset >= iov->iov_len) {
558                 iovoffset -= iov->iov_len;
559                 iov++;
560                 niov--;
561                 LASSERT(niov > 0);
562         }
563
564         do {
565                 LASSERT(nkiov > 0);
566                 LASSERT(niov > 0);
567                 this_nob = min3((unsigned int)kiov->bv_len - kiovoffset,
568                                 (unsigned int)iov->iov_len - iovoffset,
569                                 nob);
570
571                 if (addr == NULL)
572                         addr = ((char *)kmap(kiov->bv_page)) +
573                                 kiov->bv_offset + kiovoffset;
574
575                 memcpy (addr, (char *)iov->iov_base + iovoffset, this_nob);
576                 nob -= this_nob;
577
578                 if (kiov->bv_len > kiovoffset + this_nob) {
579                         addr += this_nob;
580                         kiovoffset += this_nob;
581                 } else {
582                         kunmap(kiov->bv_page);
583                         addr = NULL;
584                         kiov++;
585                         nkiov--;
586                         kiovoffset = 0;
587                 }
588
589                 if (iov->iov_len > iovoffset + this_nob) {
590                         iovoffset += this_nob;
591                 } else {
592                         iov++;
593                         niov--;
594                         iovoffset = 0;
595                 }
596         } while (nob > 0);
597
598         if (addr != NULL)
599                 kunmap(kiov->bv_page);
600 }
601 EXPORT_SYMBOL(lnet_copy_iov2kiov);
602
603 int
604 lnet_extract_kiov(int dst_niov, struct bio_vec *dst,
605                   int src_niov, struct bio_vec *src,
606                   unsigned int offset, unsigned int len)
607 {
608         /* Initialise 'dst' to the subset of 'src' starting at 'offset',
609          * for exactly 'len' bytes, and return the number of entries.
610          * NB not destructive to 'src' */
611         unsigned int    frag_len;
612         unsigned int    niov;
613
614         if (len == 0)                           /* no data => */
615                 return (0);                     /* no frags */
616
617         LASSERT(src_niov > 0);
618         while (offset >= src->bv_len) {      /* skip initial frags */
619                 offset -= src->bv_len;
620                 src_niov--;
621                 src++;
622                 LASSERT(src_niov > 0);
623         }
624
625         niov = 1;
626         for (;;) {
627                 LASSERT(src_niov > 0);
628                 LASSERT((int)niov <= dst_niov);
629
630                 frag_len = src->bv_len - offset;
631                 dst->bv_page = src->bv_page;
632                 dst->bv_offset = src->bv_offset + offset;
633
634                 if (len <= frag_len) {
635                         dst->bv_len = len;
636                         LASSERT(dst->bv_offset + dst->bv_len <= PAGE_SIZE);
637                         return niov;
638                 }
639
640                 dst->bv_len = frag_len;
641                 LASSERT(dst->bv_offset + dst->bv_len <= PAGE_SIZE);
642
643                 len -= frag_len;
644                 dst++;
645                 src++;
646                 niov++;
647                 src_niov--;
648                 offset = 0;
649         }
650 }
651 EXPORT_SYMBOL(lnet_extract_kiov);
652
653 void
654 lnet_ni_recv(struct lnet_ni *ni, void *private, struct lnet_msg *msg,
655              int delayed, unsigned int offset, unsigned int mlen,
656              unsigned int rlen)
657 {
658         unsigned int niov = 0;
659         struct kvec *iov = NULL;
660         struct bio_vec  *kiov = NULL;
661         int rc;
662
663         LASSERT (!in_interrupt ());
664         LASSERT (mlen == 0 || msg != NULL);
665
666         if (msg != NULL) {
667                 LASSERT(msg->msg_receiving);
668                 LASSERT(!msg->msg_sending);
669                 LASSERT(rlen == msg->msg_len);
670                 LASSERT(mlen <= msg->msg_len);
671                 LASSERT(msg->msg_offset == offset);
672                 LASSERT(msg->msg_wanted == mlen);
673
674                 msg->msg_receiving = 0;
675
676                 if (mlen != 0) {
677                         niov = msg->msg_niov;
678                         kiov = msg->msg_kiov;
679
680                         LASSERT (niov > 0);
681                         LASSERT ((iov == NULL) != (kiov == NULL));
682                 }
683         }
684
685         rc = (ni->ni_net->net_lnd->lnd_recv)(ni, private, msg, delayed,
686                                              niov, kiov, offset, mlen,
687                                              rlen);
688         if (rc < 0)
689                 lnet_finalize(msg, rc);
690 }
691
692 static void
693 lnet_setpayloadbuffer(struct lnet_msg *msg)
694 {
695         struct lnet_libmd *md = msg->msg_md;
696
697         LASSERT(msg->msg_len > 0);
698         LASSERT(!msg->msg_routing);
699         LASSERT(md != NULL);
700         LASSERT(msg->msg_niov == 0);
701         LASSERT(msg->msg_kiov == NULL);
702
703         msg->msg_niov = md->md_niov;
704         msg->msg_kiov = md->md_kiov;
705 }
706
707 void
708 lnet_prep_send(struct lnet_msg *msg, int type, struct lnet_process_id target,
709                unsigned int offset, unsigned int len)
710 {
711         msg->msg_type = type;
712         msg->msg_target = target;
713         msg->msg_len = len;
714         msg->msg_offset = offset;
715
716         if (len != 0)
717                 lnet_setpayloadbuffer(msg);
718
719         memset (&msg->msg_hdr, 0, sizeof (msg->msg_hdr));
720         msg->msg_hdr.type           = cpu_to_le32(type);
721         /* dest_nid will be overwritten by lnet_select_pathway() */
722         msg->msg_hdr.dest_nid       = cpu_to_le64(target.nid);
723         msg->msg_hdr.dest_pid       = cpu_to_le32(target.pid);
724         /* src_nid will be set later */
725         msg->msg_hdr.src_pid        = cpu_to_le32(the_lnet.ln_pid);
726         msg->msg_hdr.payload_length = cpu_to_le32(len);
727 }
728
729 static void
730 lnet_ni_send(struct lnet_ni *ni, struct lnet_msg *msg)
731 {
732         void *priv = msg->msg_private;
733         int rc;
734
735         LASSERT(!in_interrupt());
736         LASSERT(ni->ni_nid == LNET_NID_LO_0 ||
737                 (msg->msg_txcredit && msg->msg_peertxcredit));
738
739         rc = (ni->ni_net->net_lnd->lnd_send)(ni, priv, msg);
740         if (rc < 0) {
741                 msg->msg_no_resend = true;
742                 lnet_finalize(msg, rc);
743         }
744 }
745
746 static int
747 lnet_ni_eager_recv(struct lnet_ni *ni, struct lnet_msg *msg)
748 {
749         int     rc;
750
751         LASSERT(!msg->msg_sending);
752         LASSERT(msg->msg_receiving);
753         LASSERT(!msg->msg_rx_ready_delay);
754         LASSERT(ni->ni_net->net_lnd->lnd_eager_recv != NULL);
755
756         msg->msg_rx_ready_delay = 1;
757         rc = (ni->ni_net->net_lnd->lnd_eager_recv)(ni, msg->msg_private, msg,
758                                                   &msg->msg_private);
759         if (rc != 0) {
760                 CERROR("recv from %s / send to %s aborted: "
761                        "eager_recv failed %d\n",
762                        libcfs_nid2str(msg->msg_rxpeer->lpni_nid),
763                        libcfs_id2str(msg->msg_target), rc);
764                 LASSERT(rc < 0); /* required by my callers */
765         }
766
767         return rc;
768 }
769
770 static bool
771 lnet_is_peer_deadline_passed(struct lnet_peer_ni *lpni, time64_t now)
772 {
773         time64_t deadline;
774
775         deadline = lpni->lpni_last_alive +
776                    lpni->lpni_net->net_tunables.lct_peer_timeout;
777
778         /*
779          * assume peer_ni is alive as long as we're within the configured
780          * peer timeout
781          */
782         if (deadline > now)
783                 return false;
784
785         return true;
786 }
787
788 /* NB: returns 1 when alive, 0 when dead, negative when error;
789  *     may drop the lnet_net_lock */
790 static int
791 lnet_peer_alive_locked(struct lnet_ni *ni, struct lnet_peer_ni *lpni,
792                        struct lnet_msg *msg)
793 {
794         time64_t now = ktime_get_seconds();
795
796         if (!lnet_peer_aliveness_enabled(lpni))
797                 return -ENODEV;
798
799         /*
800          * If we're resending a message, let's attempt to send it even if
801          * the peer is down to fulfill our resend quota on the message
802          */
803         if (msg->msg_retry_count > 0)
804                 return 1;
805
806         /* try and send recovery messages irregardless */
807         if (msg->msg_recovery)
808                 return 1;
809
810         /* always send any responses */
811         if (lnet_msg_is_response(msg))
812                 return 1;
813
814         if (!lnet_is_peer_deadline_passed(lpni, now))
815                 return true;
816
817         return lnet_is_peer_ni_alive(lpni);
818 }
819
820 /**
821  * \param msg The message to be sent.
822  * \param do_send True if lnet_ni_send() should be called in this function.
823  *        lnet_send() is going to lnet_net_unlock immediately after this, so
824  *        it sets do_send FALSE and I don't do the unlock/send/lock bit.
825  *
826  * \retval LNET_CREDIT_OK If \a msg sent or OK to send.
827  * \retval LNET_CREDIT_WAIT If \a msg blocked for credit.
828  * \retval -EHOSTUNREACH If the next hop of the message appears dead.
829  * \retval -ECANCELED If the MD of the message has been unlinked.
830  */
831 static int
832 lnet_post_send_locked(struct lnet_msg *msg, int do_send)
833 {
834         struct lnet_peer_ni     *lp = msg->msg_txpeer;
835         struct lnet_ni          *ni = msg->msg_txni;
836         int                     cpt = msg->msg_tx_cpt;
837         struct lnet_tx_queue    *tq = ni->ni_tx_queues[cpt];
838
839         /* non-lnet_send() callers have checked before */
840         LASSERT(!do_send || msg->msg_tx_delayed);
841         LASSERT(!msg->msg_receiving);
842         LASSERT(msg->msg_tx_committed);
843         /* can't get here if we're sending to the loopback interface */
844         LASSERT(lp->lpni_nid != the_lnet.ln_loni->ni_nid);
845
846         /* NB 'lp' is always the next hop */
847         if ((msg->msg_target.pid & LNET_PID_USERFLAG) == 0 &&
848             lnet_peer_alive_locked(ni, lp, msg) == 0) {
849                 the_lnet.ln_counters[cpt]->lct_common.lcc_drop_count++;
850                 the_lnet.ln_counters[cpt]->lct_common.lcc_drop_length +=
851                         msg->msg_len;
852                 lnet_net_unlock(cpt);
853                 if (msg->msg_txpeer)
854                         lnet_incr_stats(&msg->msg_txpeer->lpni_stats,
855                                         msg->msg_type,
856                                         LNET_STATS_TYPE_DROP);
857                 if (msg->msg_txni)
858                         lnet_incr_stats(&msg->msg_txni->ni_stats,
859                                         msg->msg_type,
860                                         LNET_STATS_TYPE_DROP);
861
862                 CNETERR("Dropping message for %s: peer not alive\n",
863                         libcfs_id2str(msg->msg_target));
864                 msg->msg_health_status = LNET_MSG_STATUS_REMOTE_DROPPED;
865                 if (do_send)
866                         lnet_finalize(msg, -EHOSTUNREACH);
867
868                 lnet_net_lock(cpt);
869                 return -EHOSTUNREACH;
870         }
871
872         if (msg->msg_md != NULL &&
873             (msg->msg_md->md_flags & LNET_MD_FLAG_ABORTED) != 0) {
874                 lnet_net_unlock(cpt);
875
876                 CNETERR("Aborting message for %s: LNetM[DE]Unlink() already "
877                         "called on the MD/ME.\n",
878                         libcfs_id2str(msg->msg_target));
879                 if (do_send) {
880                         msg->msg_no_resend = true;
881                         CDEBUG(D_NET, "msg %p to %s canceled and will not be resent\n",
882                                msg, libcfs_id2str(msg->msg_target));
883                         lnet_finalize(msg, -ECANCELED);
884                 }
885
886                 lnet_net_lock(cpt);
887                 return -ECANCELED;
888         }
889
890         if (!msg->msg_peertxcredit) {
891                 spin_lock(&lp->lpni_lock);
892                 LASSERT((lp->lpni_txcredits < 0) ==
893                         !list_empty(&lp->lpni_txq));
894
895                 msg->msg_peertxcredit = 1;
896                 lp->lpni_txqnob += msg->msg_len + sizeof(struct lnet_hdr);
897                 lp->lpni_txcredits--;
898
899                 if (lp->lpni_txcredits < lp->lpni_mintxcredits)
900                         lp->lpni_mintxcredits = lp->lpni_txcredits;
901
902                 if (lp->lpni_txcredits < 0) {
903                         msg->msg_tx_delayed = 1;
904                         list_add_tail(&msg->msg_list, &lp->lpni_txq);
905                         spin_unlock(&lp->lpni_lock);
906                         return LNET_CREDIT_WAIT;
907                 }
908                 spin_unlock(&lp->lpni_lock);
909         }
910
911         if (!msg->msg_txcredit) {
912                 LASSERT((tq->tq_credits < 0) ==
913                         !list_empty(&tq->tq_delayed));
914
915                 msg->msg_txcredit = 1;
916                 tq->tq_credits--;
917                 atomic_dec(&ni->ni_tx_credits);
918
919                 if (tq->tq_credits < tq->tq_credits_min)
920                         tq->tq_credits_min = tq->tq_credits;
921
922                 if (tq->tq_credits < 0) {
923                         msg->msg_tx_delayed = 1;
924                         list_add_tail(&msg->msg_list, &tq->tq_delayed);
925                         return LNET_CREDIT_WAIT;
926                 }
927         }
928
929         /* unset the tx_delay flag as we're going to send it now */
930         msg->msg_tx_delayed = 0;
931
932         if (do_send) {
933                 lnet_net_unlock(cpt);
934                 lnet_ni_send(ni, msg);
935                 lnet_net_lock(cpt);
936         }
937         return LNET_CREDIT_OK;
938 }
939
940
941 static struct lnet_rtrbufpool *
942 lnet_msg2bufpool(struct lnet_msg *msg)
943 {
944         struct lnet_rtrbufpool  *rbp;
945         int                     cpt;
946
947         LASSERT(msg->msg_rx_committed);
948
949         cpt = msg->msg_rx_cpt;
950         rbp = &the_lnet.ln_rtrpools[cpt][0];
951
952         LASSERT(msg->msg_len <= LNET_MTU);
953         while (msg->msg_len > (unsigned int)rbp->rbp_npages * PAGE_SIZE) {
954                 rbp++;
955                 LASSERT(rbp < &the_lnet.ln_rtrpools[cpt][LNET_NRBPOOLS]);
956         }
957
958         return rbp;
959 }
960
961 static int
962 lnet_post_routed_recv_locked(struct lnet_msg *msg, int do_recv)
963 {
964         /* lnet_parse is going to lnet_net_unlock immediately after this, so it
965          * sets do_recv FALSE and I don't do the unlock/send/lock bit.
966          * I return LNET_CREDIT_WAIT if msg blocked and LNET_CREDIT_OK if
967          * received or OK to receive */
968         struct lnet_peer_ni *lpni = msg->msg_rxpeer;
969         struct lnet_peer *lp;
970         struct lnet_rtrbufpool *rbp;
971         struct lnet_rtrbuf *rb;
972
973         LASSERT(msg->msg_kiov == NULL);
974         LASSERT(msg->msg_niov == 0);
975         LASSERT(msg->msg_routing);
976         LASSERT(msg->msg_receiving);
977         LASSERT(!msg->msg_sending);
978         LASSERT(lpni->lpni_peer_net);
979         LASSERT(lpni->lpni_peer_net->lpn_peer);
980
981         lp = lpni->lpni_peer_net->lpn_peer;
982
983         /* non-lnet_parse callers only receive delayed messages */
984         LASSERT(!do_recv || msg->msg_rx_delayed);
985
986         if (!msg->msg_peerrtrcredit) {
987                 /* lpni_lock protects the credit manipulation */
988                 spin_lock(&lpni->lpni_lock);
989
990                 msg->msg_peerrtrcredit = 1;
991                 lpni->lpni_rtrcredits--;
992                 if (lpni->lpni_rtrcredits < lpni->lpni_minrtrcredits)
993                         lpni->lpni_minrtrcredits = lpni->lpni_rtrcredits;
994
995                 if (lpni->lpni_rtrcredits < 0) {
996                         spin_unlock(&lpni->lpni_lock);
997                         /* must have checked eager_recv before here */
998                         LASSERT(msg->msg_rx_ready_delay);
999                         msg->msg_rx_delayed = 1;
1000                         /* lp_lock protects the lp_rtrq */
1001                         spin_lock(&lp->lp_lock);
1002                         list_add_tail(&msg->msg_list, &lp->lp_rtrq);
1003                         spin_unlock(&lp->lp_lock);
1004                         return LNET_CREDIT_WAIT;
1005                 }
1006                 spin_unlock(&lpni->lpni_lock);
1007         }
1008
1009         rbp = lnet_msg2bufpool(msg);
1010
1011         if (!msg->msg_rtrcredit) {
1012                 msg->msg_rtrcredit = 1;
1013                 rbp->rbp_credits--;
1014                 if (rbp->rbp_credits < rbp->rbp_mincredits)
1015                         rbp->rbp_mincredits = rbp->rbp_credits;
1016
1017                 if (rbp->rbp_credits < 0) {
1018                         /* must have checked eager_recv before here */
1019                         LASSERT(msg->msg_rx_ready_delay);
1020                         msg->msg_rx_delayed = 1;
1021                         list_add_tail(&msg->msg_list, &rbp->rbp_msgs);
1022                         return LNET_CREDIT_WAIT;
1023                 }
1024         }
1025
1026         LASSERT(!list_empty(&rbp->rbp_bufs));
1027         rb = list_entry(rbp->rbp_bufs.next, struct lnet_rtrbuf, rb_list);
1028         list_del(&rb->rb_list);
1029
1030         msg->msg_niov = rbp->rbp_npages;
1031         msg->msg_kiov = &rb->rb_kiov[0];
1032
1033         /* unset the msg-rx_delayed flag since we're receiving the message */
1034         msg->msg_rx_delayed = 0;
1035
1036         if (do_recv) {
1037                 int cpt = msg->msg_rx_cpt;
1038
1039                 lnet_net_unlock(cpt);
1040                 lnet_ni_recv(msg->msg_rxni, msg->msg_private, msg, 1,
1041                              0, msg->msg_len, msg->msg_len);
1042                 lnet_net_lock(cpt);
1043         }
1044         return LNET_CREDIT_OK;
1045 }
1046
1047 void
1048 lnet_return_tx_credits_locked(struct lnet_msg *msg)
1049 {
1050         struct lnet_peer_ni     *txpeer = msg->msg_txpeer;
1051         struct lnet_ni          *txni = msg->msg_txni;
1052         struct lnet_msg         *msg2;
1053
1054         if (msg->msg_txcredit) {
1055                 struct lnet_ni       *ni = msg->msg_txni;
1056                 struct lnet_tx_queue *tq = ni->ni_tx_queues[msg->msg_tx_cpt];
1057
1058                 /* give back NI txcredits */
1059                 msg->msg_txcredit = 0;
1060
1061                 LASSERT((tq->tq_credits < 0) ==
1062                         !list_empty(&tq->tq_delayed));
1063
1064                 tq->tq_credits++;
1065                 atomic_inc(&ni->ni_tx_credits);
1066                 if (tq->tq_credits <= 0) {
1067                         msg2 = list_entry(tq->tq_delayed.next,
1068                                           struct lnet_msg, msg_list);
1069                         list_del(&msg2->msg_list);
1070
1071                         LASSERT(msg2->msg_txni == ni);
1072                         LASSERT(msg2->msg_tx_delayed);
1073                         LASSERT(msg2->msg_tx_cpt == msg->msg_tx_cpt);
1074
1075                         (void) lnet_post_send_locked(msg2, 1);
1076                 }
1077         }
1078
1079         if (msg->msg_peertxcredit) {
1080                 /* give back peer txcredits */
1081                 msg->msg_peertxcredit = 0;
1082
1083                 spin_lock(&txpeer->lpni_lock);
1084                 LASSERT((txpeer->lpni_txcredits < 0) ==
1085                         !list_empty(&txpeer->lpni_txq));
1086
1087                 txpeer->lpni_txqnob -= msg->msg_len + sizeof(struct lnet_hdr);
1088                 LASSERT(txpeer->lpni_txqnob >= 0);
1089
1090                 txpeer->lpni_txcredits++;
1091                 if (txpeer->lpni_txcredits <= 0) {
1092                         int msg2_cpt;
1093
1094                         msg2 = list_entry(txpeer->lpni_txq.next,
1095                                               struct lnet_msg, msg_list);
1096                         list_del(&msg2->msg_list);
1097                         spin_unlock(&txpeer->lpni_lock);
1098
1099                         LASSERT(msg2->msg_txpeer == txpeer);
1100                         LASSERT(msg2->msg_tx_delayed);
1101
1102                         msg2_cpt = msg2->msg_tx_cpt;
1103
1104                         /*
1105                          * The msg_cpt can be different from the msg2_cpt
1106                          * so we need to make sure we lock the correct cpt
1107                          * for msg2.
1108                          * Once we call lnet_post_send_locked() it is no
1109                          * longer safe to access msg2, since it could've
1110                          * been freed by lnet_finalize(), but we still
1111                          * need to relock the correct cpt, so we cache the
1112                          * msg2_cpt for the purpose of the check that
1113                          * follows the call to lnet_pose_send_locked().
1114                          */
1115                         if (msg2_cpt != msg->msg_tx_cpt) {
1116                                 lnet_net_unlock(msg->msg_tx_cpt);
1117                                 lnet_net_lock(msg2_cpt);
1118                         }
1119                         (void) lnet_post_send_locked(msg2, 1);
1120                         if (msg2_cpt != msg->msg_tx_cpt) {
1121                                 lnet_net_unlock(msg2_cpt);
1122                                 lnet_net_lock(msg->msg_tx_cpt);
1123                         }
1124                 } else {
1125                         spin_unlock(&txpeer->lpni_lock);
1126                 }
1127         }
1128
1129         if (txni != NULL) {
1130                 msg->msg_txni = NULL;
1131                 lnet_ni_decref_locked(txni, msg->msg_tx_cpt);
1132         }
1133
1134         if (txpeer != NULL) {
1135                 msg->msg_txpeer = NULL;
1136                 lnet_peer_ni_decref_locked(txpeer);
1137         }
1138 }
1139
1140 void
1141 lnet_schedule_blocked_locked(struct lnet_rtrbufpool *rbp)
1142 {
1143         struct lnet_msg *msg;
1144
1145         if (list_empty(&rbp->rbp_msgs))
1146                 return;
1147         msg = list_entry(rbp->rbp_msgs.next,
1148                          struct lnet_msg, msg_list);
1149         list_del(&msg->msg_list);
1150
1151         (void)lnet_post_routed_recv_locked(msg, 1);
1152 }
1153
1154 void
1155 lnet_drop_routed_msgs_locked(struct list_head *list, int cpt)
1156 {
1157         struct lnet_msg *msg;
1158         struct lnet_msg *tmp;
1159
1160         lnet_net_unlock(cpt);
1161
1162         list_for_each_entry_safe(msg, tmp, list, msg_list) {
1163                 lnet_ni_recv(msg->msg_rxni, msg->msg_private, NULL,
1164                              0, 0, 0, msg->msg_hdr.payload_length);
1165                 list_del_init(&msg->msg_list);
1166                 msg->msg_no_resend = true;
1167                 msg->msg_health_status = LNET_MSG_STATUS_REMOTE_ERROR;
1168                 lnet_finalize(msg, -ECANCELED);
1169         }
1170
1171         lnet_net_lock(cpt);
1172 }
1173
1174 void
1175 lnet_return_rx_credits_locked(struct lnet_msg *msg)
1176 {
1177         struct lnet_peer_ni *rxpeerni = msg->msg_rxpeer;
1178         struct lnet_peer *lp;
1179         struct lnet_ni *rxni = msg->msg_rxni;
1180         struct lnet_msg *msg2;
1181
1182         if (msg->msg_rtrcredit) {
1183                 /* give back global router credits */
1184                 struct lnet_rtrbuf *rb;
1185                 struct lnet_rtrbufpool *rbp;
1186
1187                 /* NB If a msg ever blocks for a buffer in rbp_msgs, it stays
1188                  * there until it gets one allocated, or aborts the wait
1189                  * itself */
1190                 LASSERT(msg->msg_kiov != NULL);
1191
1192                 rb = list_entry(msg->msg_kiov, struct lnet_rtrbuf, rb_kiov[0]);
1193                 rbp = rb->rb_pool;
1194
1195                 msg->msg_kiov = NULL;
1196                 msg->msg_rtrcredit = 0;
1197
1198                 LASSERT(rbp == lnet_msg2bufpool(msg));
1199
1200                 LASSERT((rbp->rbp_credits > 0) ==
1201                         !list_empty(&rbp->rbp_bufs));
1202
1203                 /* If routing is now turned off, we just drop this buffer and
1204                  * don't bother trying to return credits.  */
1205                 if (!the_lnet.ln_routing) {
1206                         lnet_destroy_rtrbuf(rb, rbp->rbp_npages);
1207                         goto routing_off;
1208                 }
1209
1210                 /* It is possible that a user has lowered the desired number of
1211                  * buffers in this pool.  Make sure we never put back
1212                  * more buffers than the stated number. */
1213                 if (unlikely(rbp->rbp_credits >= rbp->rbp_req_nbuffers)) {
1214                         /* Discard this buffer so we don't have too
1215                          * many. */
1216                         lnet_destroy_rtrbuf(rb, rbp->rbp_npages);
1217                         rbp->rbp_nbuffers--;
1218                 } else {
1219                         list_add(&rb->rb_list, &rbp->rbp_bufs);
1220                         rbp->rbp_credits++;
1221                         if (rbp->rbp_credits <= 0)
1222                                 lnet_schedule_blocked_locked(rbp);
1223                 }
1224         }
1225
1226 routing_off:
1227         if (msg->msg_peerrtrcredit) {
1228                 LASSERT(rxpeerni);
1229                 LASSERT(rxpeerni->lpni_peer_net);
1230                 LASSERT(rxpeerni->lpni_peer_net->lpn_peer);
1231
1232                 /* give back peer router credits */
1233                 msg->msg_peerrtrcredit = 0;
1234
1235                 spin_lock(&rxpeerni->lpni_lock);
1236                 rxpeerni->lpni_rtrcredits++;
1237                 spin_unlock(&rxpeerni->lpni_lock);
1238
1239                 lp = rxpeerni->lpni_peer_net->lpn_peer;
1240                 spin_lock(&lp->lp_lock);
1241
1242                 /* drop all messages which are queued to be routed on that
1243                  * peer. */
1244                 if (!the_lnet.ln_routing) {
1245                         LIST_HEAD(drop);
1246                         list_splice_init(&lp->lp_rtrq, &drop);
1247                         spin_unlock(&lp->lp_lock);
1248                         lnet_drop_routed_msgs_locked(&drop, msg->msg_rx_cpt);
1249                 } else if (!list_empty(&lp->lp_rtrq)) {
1250                         int msg2_cpt;
1251
1252                         msg2 = list_entry(lp->lp_rtrq.next,
1253                                           struct lnet_msg, msg_list);
1254                         list_del(&msg2->msg_list);
1255                         msg2_cpt = msg2->msg_rx_cpt;
1256                         spin_unlock(&lp->lp_lock);
1257                         /*
1258                          * messages on the lp_rtrq can be from any NID in
1259                          * the peer, which means they might have different
1260                          * cpts. We need to make sure we lock the right
1261                          * one.
1262                          */
1263                         if (msg2_cpt != msg->msg_rx_cpt) {
1264                                 lnet_net_unlock(msg->msg_rx_cpt);
1265                                 lnet_net_lock(msg2_cpt);
1266                         }
1267                         (void) lnet_post_routed_recv_locked(msg2, 1);
1268                         if (msg2_cpt != msg->msg_rx_cpt) {
1269                                 lnet_net_unlock(msg2_cpt);
1270                                 lnet_net_lock(msg->msg_rx_cpt);
1271                         }
1272                 } else {
1273                         spin_unlock(&lp->lp_lock);
1274                 }
1275         }
1276         if (rxni != NULL) {
1277                 msg->msg_rxni = NULL;
1278                 lnet_ni_decref_locked(rxni, msg->msg_rx_cpt);
1279         }
1280         if (rxpeerni != NULL) {
1281                 msg->msg_rxpeer = NULL;
1282                 lnet_peer_ni_decref_locked(rxpeerni);
1283         }
1284 }
1285
1286 static int
1287 lnet_compare_gw_lpnis(struct lnet_peer_ni *p1, struct lnet_peer_ni *p2)
1288 {
1289         if (p1->lpni_txqnob < p2->lpni_txqnob)
1290                 return 1;
1291
1292         if (p1->lpni_txqnob > p2->lpni_txqnob)
1293                 return -1;
1294
1295         if (p1->lpni_txcredits > p2->lpni_txcredits)
1296                 return 1;
1297
1298         if (p1->lpni_txcredits < p2->lpni_txcredits)
1299                 return -1;
1300
1301         return 0;
1302 }
1303
1304 static struct lnet_peer_ni *
1305 lnet_select_peer_ni(struct lnet_ni *best_ni, lnet_nid_t dst_nid,
1306                     struct lnet_peer *peer,
1307                     struct lnet_peer_ni *best_lpni,
1308                     struct lnet_peer_net *peer_net)
1309 {
1310         /*
1311          * Look at the peer NIs for the destination peer that connect
1312          * to the chosen net. If a peer_ni is preferred when using the
1313          * best_ni to communicate, we use that one. If there is no
1314          * preferred peer_ni, or there are multiple preferred peer_ni,
1315          * the available transmit credits are used. If the transmit
1316          * credits are equal, we round-robin over the peer_ni.
1317          */
1318         struct lnet_peer_ni *lpni = NULL;
1319         int best_lpni_credits = (best_lpni) ? best_lpni->lpni_txcredits :
1320                 INT_MIN;
1321         int best_lpni_healthv = (best_lpni) ?
1322                 atomic_read(&best_lpni->lpni_healthv) : 0;
1323         bool preferred = false;
1324         bool ni_is_pref;
1325         int lpni_healthv;
1326
1327         while ((lpni = lnet_get_next_peer_ni_locked(peer, peer_net, lpni))) {
1328                 /*
1329                  * if the best_ni we've chosen aleady has this lpni
1330                  * preferred, then let's use it
1331                  */
1332                 if (best_ni) {
1333                         ni_is_pref = lnet_peer_is_pref_nid_locked(lpni,
1334                                                                 best_ni->ni_nid);
1335                         CDEBUG(D_NET, "%s ni_is_pref = %d\n",
1336                                libcfs_nid2str(best_ni->ni_nid), ni_is_pref);
1337                 } else {
1338                         ni_is_pref = false;
1339                 }
1340
1341                 lpni_healthv = atomic_read(&lpni->lpni_healthv);
1342
1343                 if (best_lpni)
1344                         CDEBUG(D_NET, "%s c:[%d, %d], s:[%d, %d]\n",
1345                                 libcfs_nid2str(lpni->lpni_nid),
1346                                 lpni->lpni_txcredits, best_lpni_credits,
1347                                 lpni->lpni_seq, best_lpni->lpni_seq);
1348
1349                 /* pick the healthiest peer ni */
1350                 if (lpni_healthv < best_lpni_healthv) {
1351                         continue;
1352                 } else if (lpni_healthv > best_lpni_healthv) {
1353                         best_lpni_healthv = lpni_healthv;
1354                 /* if this is a preferred peer use it */
1355                 } else if (!preferred && ni_is_pref) {
1356                         preferred = true;
1357                 } else if (preferred && !ni_is_pref) {
1358                         /*
1359                          * this is not the preferred peer so let's ignore
1360                          * it.
1361                          */
1362                         continue;
1363                 } else if (lpni->lpni_txcredits < best_lpni_credits) {
1364                         /*
1365                          * We already have a peer that has more credits
1366                          * available than this one. No need to consider
1367                          * this peer further.
1368                          */
1369                         continue;
1370                 } else if (lpni->lpni_txcredits == best_lpni_credits) {
1371                         /*
1372                          * The best peer found so far and the current peer
1373                          * have the same number of available credits let's
1374                          * make sure to select between them using Round
1375                          * Robin
1376                          */
1377                         if (best_lpni) {
1378                                 if (best_lpni->lpni_seq <= lpni->lpni_seq)
1379                                         continue;
1380                         }
1381                 }
1382
1383                 best_lpni = lpni;
1384                 best_lpni_credits = lpni->lpni_txcredits;
1385         }
1386
1387         /* if we still can't find a peer ni then we can't reach it */
1388         if (!best_lpni) {
1389                 __u32 net_id = (peer_net) ? peer_net->lpn_net_id :
1390                         LNET_NIDNET(dst_nid);
1391                 CDEBUG(D_NET, "no peer_ni found on peer net %s\n",
1392                                 libcfs_net2str(net_id));
1393                 return NULL;
1394         }
1395
1396         CDEBUG(D_NET, "sd_best_lpni = %s\n",
1397                libcfs_nid2str(best_lpni->lpni_nid));
1398
1399         return best_lpni;
1400 }
1401
1402 /*
1403  * Prerequisite: the best_ni should already be set in the sd
1404  * Find the best lpni.
1405  * If the net id is provided then restrict lpni selection on
1406  * that particular net.
1407  * Otherwise find any reachable lpni. When dealing with an MR
1408  * gateway and it has multiple lpnis which we can use
1409  * we want to select the best one from the list of reachable
1410  * ones.
1411  */
1412 static inline struct lnet_peer_ni *
1413 lnet_find_best_lpni(struct lnet_ni *lni, lnet_nid_t dst_nid,
1414                     struct lnet_peer *peer, __u32 net_id)
1415 {
1416         struct lnet_peer_net *peer_net;
1417         __u32 any_net = LNET_NIDNET(LNET_NID_ANY);
1418
1419         /* find the best_lpni on any local network */
1420         if (net_id == any_net) {
1421                 struct lnet_peer_ni *best_lpni = NULL;
1422                 struct lnet_peer_net *lpn;
1423                 list_for_each_entry(lpn, &peer->lp_peer_nets, lpn_peer_nets) {
1424                         /* no net specified find any reachable peer ni */
1425                         if (!lnet_islocalnet_locked(lpn->lpn_net_id))
1426                                 continue;
1427                         best_lpni = lnet_select_peer_ni(lni, dst_nid, peer,
1428                                                         best_lpni, lpn);
1429                 }
1430
1431                 return best_lpni;
1432         }
1433         /* restrict on the specified net */
1434         peer_net = lnet_peer_get_net_locked(peer, net_id);
1435         if (peer_net)
1436                 return lnet_select_peer_ni(lni, dst_nid, peer, NULL, peer_net);
1437
1438         return NULL;
1439 }
1440
1441 /* Compare route priorities and hop counts */
1442 static int
1443 lnet_compare_routes(struct lnet_route *r1, struct lnet_route *r2)
1444 {
1445         int r1_hops = (r1->lr_hops == LNET_UNDEFINED_HOPS) ? 1 : r1->lr_hops;
1446         int r2_hops = (r2->lr_hops == LNET_UNDEFINED_HOPS) ? 1 : r2->lr_hops;
1447
1448         if (r1->lr_priority < r2->lr_priority)
1449                 return 1;
1450
1451         if (r1->lr_priority > r2->lr_priority)
1452                 return -1;
1453
1454         if (r1_hops < r2_hops)
1455                 return 1;
1456
1457         if (r1_hops > r2_hops)
1458                 return -1;
1459
1460         return 0;
1461 }
1462
1463 static struct lnet_route *
1464 lnet_find_route_locked(struct lnet_remotenet *rnet, __u32 src_net,
1465                        struct lnet_route **prev_route,
1466                        struct lnet_peer_ni **gwni)
1467 {
1468         struct lnet_peer_ni *lpni, *best_gw_ni = NULL;
1469         struct lnet_route *best_route;
1470         struct lnet_route *last_route;
1471         struct lnet_route *route;
1472         int rc;
1473
1474         CDEBUG(D_NET, "Looking up a route to %s, from %s\n",
1475                libcfs_net2str(rnet->lrn_net), libcfs_net2str(src_net));
1476
1477         best_route = last_route = NULL;
1478         list_for_each_entry(route, &rnet->lrn_routes, lr_list) {
1479                 if (!lnet_is_route_alive(route))
1480                         continue;
1481
1482                 /*
1483                  * Restrict the selection of the router NI on the src_net
1484                  * provided. If the src_net is LNET_NID_ANY, then select
1485                  * the best interface available.
1486                  */
1487                 if (!best_route) {
1488                         lpni = lnet_find_best_lpni(NULL, LNET_NID_ANY,
1489                                                    route->lr_gateway,
1490                                                    src_net);
1491                         if (lpni) {
1492                                 best_route = last_route = route;
1493                                 best_gw_ni = lpni;
1494                         } else {
1495                                 CDEBUG(D_NET, "Gateway %s does not have a peer NI on net %s\n",
1496                                        libcfs_nid2str(route->lr_gateway->lp_primary_nid),
1497                                        libcfs_net2str(src_net));
1498                         }
1499
1500                         continue;
1501                 }
1502
1503                 /* no protection on below fields, but it's harmless */
1504                 if (last_route->lr_seq - route->lr_seq < 0)
1505                         last_route = route;
1506
1507                 rc = lnet_compare_routes(route, best_route);
1508                 if (rc == -1)
1509                         continue;
1510
1511                 lpni = lnet_find_best_lpni(NULL, LNET_NID_ANY,
1512                                            route->lr_gateway,
1513                                            src_net);
1514                 /* restrict the lpni on the src_net if specified */
1515                 if (!lpni) {
1516                         CDEBUG(D_NET, "Gateway %s does not have a peer NI on net %s\n",
1517                                libcfs_nid2str(route->lr_gateway->lp_primary_nid),
1518                                libcfs_net2str(src_net));
1519                         continue;
1520                 }
1521
1522                 if (rc == 1) {
1523                         best_route = route;
1524                         best_gw_ni = lpni;
1525                         continue;
1526                 }
1527
1528                 rc = lnet_compare_gw_lpnis(lpni, best_gw_ni);
1529                 if (rc == -1)
1530                         continue;
1531
1532                 if (rc == 1 || route->lr_seq <= best_route->lr_seq) {
1533                         best_route = route;
1534                         best_gw_ni = lpni;
1535                         continue;
1536                 }
1537         }
1538
1539         *prev_route = last_route;
1540         *gwni = best_gw_ni;
1541
1542         return best_route;
1543 }
1544
1545 static struct lnet_ni *
1546 lnet_get_best_ni(struct lnet_net *local_net, struct lnet_ni *best_ni,
1547                  struct lnet_peer *peer, struct lnet_peer_net *peer_net,
1548                  int md_cpt)
1549 {
1550         struct lnet_ni *ni = NULL;
1551         unsigned int shortest_distance;
1552         int best_credits;
1553         int best_healthv;
1554
1555         /*
1556          * If there is no peer_ni that we can send to on this network,
1557          * then there is no point in looking for a new best_ni here.
1558         */
1559         if (!lnet_get_next_peer_ni_locked(peer, peer_net, NULL))
1560                 return best_ni;
1561
1562         if (best_ni == NULL) {
1563                 shortest_distance = UINT_MAX;
1564                 best_credits = INT_MIN;
1565                 best_healthv = 0;
1566         } else {
1567                 shortest_distance = cfs_cpt_distance(lnet_cpt_table(), md_cpt,
1568                                                      best_ni->ni_dev_cpt);
1569                 best_credits = atomic_read(&best_ni->ni_tx_credits);
1570                 best_healthv = atomic_read(&best_ni->ni_healthv);
1571         }
1572
1573         while ((ni = lnet_get_next_ni_locked(local_net, ni))) {
1574                 unsigned int distance;
1575                 int ni_credits;
1576                 int ni_healthv;
1577                 int ni_fatal;
1578
1579                 ni_credits = atomic_read(&ni->ni_tx_credits);
1580                 ni_healthv = atomic_read(&ni->ni_healthv);
1581                 ni_fatal = atomic_read(&ni->ni_fatal_error_on);
1582
1583                 /*
1584                  * calculate the distance from the CPT on which
1585                  * the message memory is allocated to the CPT of
1586                  * the NI's physical device
1587                  */
1588                 distance = cfs_cpt_distance(lnet_cpt_table(),
1589                                             md_cpt,
1590                                             ni->ni_dev_cpt);
1591
1592                 CDEBUG(D_NET, "compare ni %s [c:%d, d:%d, s:%d] with best_ni %s [c:%d, d:%d, s:%d]\n",
1593                        libcfs_nid2str(ni->ni_nid), ni_credits, distance,
1594                        ni->ni_seq, (best_ni) ? libcfs_nid2str(best_ni->ni_nid)
1595                         : "not seleced", best_credits, shortest_distance,
1596                         (best_ni) ? best_ni->ni_seq : 0);
1597
1598                 /*
1599                  * All distances smaller than the NUMA range
1600                  * are treated equally.
1601                  */
1602                 if (distance < lnet_numa_range)
1603                         distance = lnet_numa_range;
1604
1605                 /*
1606                  * Select on health, shorter distance, available
1607                  * credits, then round-robin.
1608                  */
1609                 if (ni_fatal) {
1610                         continue;
1611                 } else if (ni_healthv < best_healthv) {
1612                         continue;
1613                 } else if (ni_healthv > best_healthv) {
1614                         best_healthv = ni_healthv;
1615                         /*
1616                          * If we're going to prefer this ni because it's
1617                          * the healthiest, then we should set the
1618                          * shortest_distance in the algorithm in case
1619                          * there are multiple NIs with the same health but
1620                          * different distances.
1621                          */
1622                         if (distance < shortest_distance)
1623                                 shortest_distance = distance;
1624                 } else if (distance > shortest_distance) {
1625                         continue;
1626                 } else if (distance < shortest_distance) {
1627                         shortest_distance = distance;
1628                 } else if (ni_credits < best_credits) {
1629                         continue;
1630                 } else if (ni_credits == best_credits) {
1631                         if (best_ni && best_ni->ni_seq <= ni->ni_seq)
1632                                 continue;
1633                 }
1634                 best_ni = ni;
1635                 best_credits = ni_credits;
1636         }
1637
1638         CDEBUG(D_NET, "selected best_ni %s\n",
1639                (best_ni) ? libcfs_nid2str(best_ni->ni_nid) : "no selection");
1640
1641         return best_ni;
1642 }
1643
1644 /*
1645  * Traffic to the LNET_RESERVED_PORTAL may not trigger peer discovery,
1646  * because such traffic is required to perform discovery. We therefore
1647  * exclude all GET and PUT on that portal. We also exclude all ACK and
1648  * REPLY traffic, but that is because the portal is not tracked in the
1649  * message structure for these message types. We could restrict this
1650  * further by also checking for LNET_PROTO_PING_MATCHBITS.
1651  */
1652 static bool
1653 lnet_msg_discovery(struct lnet_msg *msg)
1654 {
1655         if (msg->msg_type == LNET_MSG_PUT) {
1656                 if (msg->msg_hdr.msg.put.ptl_index != LNET_RESERVED_PORTAL)
1657                         return true;
1658         } else if (msg->msg_type == LNET_MSG_GET) {
1659                 if (msg->msg_hdr.msg.get.ptl_index != LNET_RESERVED_PORTAL)
1660                         return true;
1661         }
1662         return false;
1663 }
1664
1665 #define SRC_SPEC        0x0001
1666 #define SRC_ANY         0x0002
1667 #define LOCAL_DST       0x0004
1668 #define REMOTE_DST      0x0008
1669 #define MR_DST          0x0010
1670 #define NMR_DST         0x0020
1671 #define SND_RESP        0x0040
1672
1673 /* The following to defines are used for return codes */
1674 #define REPEAT_SEND     0x1000
1675 #define PASS_THROUGH    0x2000
1676
1677 /* The different cases lnet_select pathway needs to handle */
1678 #define SRC_SPEC_LOCAL_MR_DST   (SRC_SPEC | LOCAL_DST | MR_DST)
1679 #define SRC_SPEC_ROUTER_MR_DST  (SRC_SPEC | REMOTE_DST | MR_DST)
1680 #define SRC_SPEC_LOCAL_NMR_DST  (SRC_SPEC | LOCAL_DST | NMR_DST)
1681 #define SRC_SPEC_ROUTER_NMR_DST (SRC_SPEC | REMOTE_DST | NMR_DST)
1682 #define SRC_ANY_LOCAL_MR_DST    (SRC_ANY | LOCAL_DST | MR_DST)
1683 #define SRC_ANY_ROUTER_MR_DST   (SRC_ANY | REMOTE_DST | MR_DST)
1684 #define SRC_ANY_LOCAL_NMR_DST   (SRC_ANY | LOCAL_DST | NMR_DST)
1685 #define SRC_ANY_ROUTER_NMR_DST  (SRC_ANY | REMOTE_DST | NMR_DST)
1686
1687 static int
1688 lnet_handle_lo_send(struct lnet_send_data *sd)
1689 {
1690         struct lnet_msg *msg = sd->sd_msg;
1691         int cpt = sd->sd_cpt;
1692
1693         /* No send credit hassles with LOLND */
1694         lnet_ni_addref_locked(the_lnet.ln_loni, cpt);
1695         msg->msg_hdr.dest_nid = cpu_to_le64(the_lnet.ln_loni->ni_nid);
1696         if (!msg->msg_routing)
1697                 msg->msg_hdr.src_nid =
1698                         cpu_to_le64(the_lnet.ln_loni->ni_nid);
1699         msg->msg_target.nid = the_lnet.ln_loni->ni_nid;
1700         lnet_msg_commit(msg, cpt);
1701         msg->msg_txni = the_lnet.ln_loni;
1702
1703         return LNET_CREDIT_OK;
1704 }
1705
1706 static int
1707 lnet_handle_send(struct lnet_send_data *sd)
1708 {
1709         struct lnet_ni *best_ni = sd->sd_best_ni;
1710         struct lnet_peer_ni *best_lpni = sd->sd_best_lpni;
1711         struct lnet_peer_ni *final_dst_lpni = sd->sd_final_dst_lpni;
1712         struct lnet_msg *msg = sd->sd_msg;
1713         int cpt2;
1714         __u32 send_case = sd->sd_send_case;
1715         int rc;
1716         __u32 routing = send_case & REMOTE_DST;
1717          struct lnet_rsp_tracker *rspt;
1718
1719         /*
1720          * Increment sequence number of the selected peer so that we
1721          * pick the next one in Round Robin.
1722          */
1723         best_lpni->lpni_seq++;
1724
1725         /*
1726          * grab a reference on the peer_ni so it sticks around even if
1727          * we need to drop and relock the lnet_net_lock below.
1728          */
1729         lnet_peer_ni_addref_locked(best_lpni);
1730
1731         /*
1732          * Use lnet_cpt_of_nid() to determine the CPT used to commit the
1733          * message. This ensures that we get a CPT that is correct for
1734          * the NI when the NI has been restricted to a subset of all CPTs.
1735          * If the selected CPT differs from the one currently locked, we
1736          * must unlock and relock the lnet_net_lock(), and then check whether
1737          * the configuration has changed. We don't have a hold on the best_ni
1738          * yet, and it may have vanished.
1739          */
1740         cpt2 = lnet_cpt_of_nid_locked(best_lpni->lpni_nid, best_ni);
1741         if (sd->sd_cpt != cpt2) {
1742                 __u32 seq = lnet_get_dlc_seq_locked();
1743                 lnet_net_unlock(sd->sd_cpt);
1744                 sd->sd_cpt = cpt2;
1745                 lnet_net_lock(sd->sd_cpt);
1746                 if (seq != lnet_get_dlc_seq_locked()) {
1747                         lnet_peer_ni_decref_locked(best_lpni);
1748                         return REPEAT_SEND;
1749                 }
1750         }
1751
1752         /*
1753          * store the best_lpni in the message right away to avoid having
1754          * to do the same operation under different conditions
1755          */
1756         msg->msg_txpeer = best_lpni;
1757         msg->msg_txni = best_ni;
1758
1759         /*
1760          * grab a reference for the best_ni since now it's in use in this
1761          * send. The reference will be dropped in lnet_finalize()
1762          */
1763         lnet_ni_addref_locked(msg->msg_txni, sd->sd_cpt);
1764
1765         /*
1766          * Always set the target.nid to the best peer picked. Either the
1767          * NID will be one of the peer NIDs selected, or the same NID as
1768          * what was originally set in the target or it will be the NID of
1769          * a router if this message should be routed
1770          */
1771         msg->msg_target.nid = msg->msg_txpeer->lpni_nid;
1772
1773         /*
1774          * lnet_msg_commit assigns the correct cpt to the message, which
1775          * is used to decrement the correct refcount on the ni when it's
1776          * time to return the credits
1777          */
1778         lnet_msg_commit(msg, sd->sd_cpt);
1779
1780         /*
1781          * If we are routing the message then we keep the src_nid that was
1782          * set by the originator. If we are not routing then we are the
1783          * originator and set it here.
1784          */
1785         if (!msg->msg_routing)
1786                 msg->msg_hdr.src_nid = cpu_to_le64(msg->msg_txni->ni_nid);
1787
1788         if (routing) {
1789                 msg->msg_target_is_router = 1;
1790                 msg->msg_target.pid = LNET_PID_LUSTRE;
1791                 /*
1792                  * since we're routing we want to ensure that the
1793                  * msg_hdr.dest_nid is set to the final destination. When
1794                  * the router receives this message it knows how to route
1795                  * it.
1796                  *
1797                  * final_dst_lpni is set at the beginning of the
1798                  * lnet_select_pathway() function and is never changed.
1799                  * It's safe to use it here.
1800                  */
1801                 msg->msg_hdr.dest_nid = cpu_to_le64(final_dst_lpni->lpni_nid);
1802         } else {
1803                 /*
1804                  * if we're not routing set the dest_nid to the best peer
1805                  * ni NID that we picked earlier in the algorithm.
1806                  */
1807                 msg->msg_hdr.dest_nid = cpu_to_le64(msg->msg_txpeer->lpni_nid);
1808         }
1809
1810         /*
1811          * if we have response tracker block update it with the next hop
1812          * nid
1813          */
1814         if (msg->msg_md) {
1815                 rspt = msg->msg_md->md_rspt_ptr;
1816                 if (rspt) {
1817                         rspt->rspt_next_hop_nid = msg->msg_txpeer->lpni_nid;
1818                         CDEBUG(D_NET, "rspt_next_hop_nid = %s\n",
1819                                libcfs_nid2str(rspt->rspt_next_hop_nid));
1820                 }
1821         }
1822
1823         rc = lnet_post_send_locked(msg, 0);
1824
1825         if (!rc)
1826                 CDEBUG(D_NET, "TRACE: %s(%s:%s) -> %s(%s:%s) %s : %s try# %d\n",
1827                        libcfs_nid2str(msg->msg_hdr.src_nid),
1828                        libcfs_nid2str(msg->msg_txni->ni_nid),
1829                        libcfs_nid2str(sd->sd_src_nid),
1830                        libcfs_nid2str(msg->msg_hdr.dest_nid),
1831                        libcfs_nid2str(sd->sd_dst_nid),
1832                        libcfs_nid2str(msg->msg_txpeer->lpni_nid),
1833                        libcfs_nid2str(sd->sd_rtr_nid),
1834                        lnet_msgtyp2str(msg->msg_type), msg->msg_retry_count);
1835
1836         return rc;
1837 }
1838
1839 static inline void
1840 lnet_set_non_mr_pref_nid(struct lnet_peer_ni *lpni, struct lnet_ni *lni,
1841                          struct lnet_msg *msg)
1842 {
1843         if (!lnet_peer_is_multi_rail(lpni->lpni_peer_net->lpn_peer) &&
1844             !lnet_msg_is_response(msg) && lpni->lpni_pref_nnids == 0) {
1845                 CDEBUG(D_NET, "Setting preferred local NID %s on NMR peer %s\n",
1846                        libcfs_nid2str(lni->ni_nid),
1847                        libcfs_nid2str(lpni->lpni_nid));
1848                 lnet_peer_ni_set_non_mr_pref_nid(lpni, lni->ni_nid);
1849         }
1850 }
1851
1852 /*
1853  * Source Specified
1854  * Local Destination
1855  * non-mr peer
1856  *
1857  * use the source and destination NIDs as the pathway
1858  */
1859 static int
1860 lnet_handle_spec_local_nmr_dst(struct lnet_send_data *sd)
1861 {
1862         /* the destination lpni is set before we get here. */
1863
1864         /* find local NI */
1865         sd->sd_best_ni = lnet_nid2ni_locked(sd->sd_src_nid, sd->sd_cpt);
1866         if (!sd->sd_best_ni) {
1867                 CERROR("Can't send to %s: src %s is not a "
1868                        "local nid\n", libcfs_nid2str(sd->sd_dst_nid),
1869                                 libcfs_nid2str(sd->sd_src_nid));
1870                 return -EINVAL;
1871         }
1872
1873         lnet_set_non_mr_pref_nid(sd->sd_best_lpni, sd->sd_best_ni, sd->sd_msg);
1874
1875         return lnet_handle_send(sd);
1876 }
1877
1878 /*
1879  * Source Specified
1880  * Local Destination
1881  * MR Peer
1882  *
1883  * Don't run the selection algorithm on the peer NIs. By specifying the
1884  * local NID, we're also saying that we should always use the destination NID
1885  * provided. This handles the case where we should be using the same
1886  * destination NID for the all the messages which belong to the same RPC
1887  * request.
1888  */
1889 static int
1890 lnet_handle_spec_local_mr_dst(struct lnet_send_data *sd)
1891 {
1892         sd->sd_best_ni = lnet_nid2ni_locked(sd->sd_src_nid, sd->sd_cpt);
1893         if (!sd->sd_best_ni) {
1894                 CERROR("Can't send to %s: src %s is not a "
1895                        "local nid\n", libcfs_nid2str(sd->sd_dst_nid),
1896                                 libcfs_nid2str(sd->sd_src_nid));
1897                 return -EINVAL;
1898         }
1899
1900         if (sd->sd_best_lpni &&
1901             sd->sd_best_lpni->lpni_nid == the_lnet.ln_loni->ni_nid)
1902                 return lnet_handle_lo_send(sd);
1903         else if (sd->sd_best_lpni)
1904                 return lnet_handle_send(sd);
1905
1906         CERROR("can't send to %s. no NI on %s\n",
1907                libcfs_nid2str(sd->sd_dst_nid),
1908                libcfs_net2str(sd->sd_best_ni->ni_net->net_id));
1909
1910         return -EHOSTUNREACH;
1911 }
1912
1913 struct lnet_ni *
1914 lnet_find_best_ni_on_spec_net(struct lnet_ni *cur_best_ni,
1915                               struct lnet_peer *peer,
1916                               struct lnet_peer_net *peer_net,
1917                               int cpt,
1918                               bool incr_seq)
1919 {
1920         struct lnet_net *local_net;
1921         struct lnet_ni *best_ni;
1922
1923         local_net = lnet_get_net_locked(peer_net->lpn_net_id);
1924         if (!local_net)
1925                 return NULL;
1926
1927         /*
1928          * Iterate through the NIs in this local Net and select
1929          * the NI to send from. The selection is determined by
1930          * these 3 criterion in the following priority:
1931          *      1. NUMA
1932          *      2. NI available credits
1933          *      3. Round Robin
1934          */
1935         best_ni = lnet_get_best_ni(local_net, cur_best_ni,
1936                                    peer, peer_net, cpt);
1937
1938         if (incr_seq && best_ni)
1939                 best_ni->ni_seq++;
1940
1941         return best_ni;
1942 }
1943
1944 static int
1945 lnet_initiate_peer_discovery(struct lnet_peer_ni *lpni, struct lnet_msg *msg,
1946                              int cpt)
1947 {
1948         struct lnet_peer *peer;
1949         int rc;
1950
1951         lnet_peer_ni_addref_locked(lpni);
1952
1953         peer = lpni->lpni_peer_net->lpn_peer;
1954
1955         if (lnet_peer_gw_discovery(peer)) {
1956                 lnet_peer_ni_decref_locked(lpni);
1957                 return 0;
1958         }
1959
1960         if (!lnet_msg_discovery(msg) || lnet_peer_is_uptodate(peer)) {
1961                 lnet_peer_ni_decref_locked(lpni);
1962                 return 0;
1963         }
1964
1965         rc = lnet_discover_peer_locked(lpni, cpt, false);
1966         if (rc) {
1967                 lnet_peer_ni_decref_locked(lpni);
1968                 return rc;
1969         }
1970         /* The peer may have changed. */
1971         peer = lpni->lpni_peer_net->lpn_peer;
1972         spin_lock(&peer->lp_lock);
1973         if (lnet_peer_is_uptodate_locked(peer)) {
1974                 spin_unlock(&peer->lp_lock);
1975                 lnet_peer_ni_decref_locked(lpni);
1976                 return 0;
1977         }
1978         /* queue message and return */
1979         msg->msg_sending = 0;
1980         msg->msg_txpeer = NULL;
1981         list_add_tail(&msg->msg_list, &peer->lp_dc_pendq);
1982         spin_unlock(&peer->lp_lock);
1983
1984         lnet_peer_ni_decref_locked(lpni);
1985
1986         CDEBUG(D_NET, "msg %p delayed. %s pending discovery\n",
1987                msg, libcfs_nid2str(peer->lp_primary_nid));
1988
1989         return LNET_DC_WAIT;
1990 }
1991
1992 static int
1993 lnet_handle_find_routed_path(struct lnet_send_data *sd,
1994                              lnet_nid_t dst_nid,
1995                              struct lnet_peer_ni **gw_lpni,
1996                              struct lnet_peer **gw_peer)
1997 {
1998         int rc;
1999         __u32 local_lnet;
2000         struct lnet_peer *gw;
2001         struct lnet_peer *lp;
2002         struct lnet_peer_net *lpn;
2003         struct lnet_peer_net *best_lpn = NULL;
2004         struct lnet_remotenet *rnet, *best_rnet = NULL;
2005         struct lnet_route *best_route = NULL;
2006         struct lnet_route *last_route = NULL;
2007         struct lnet_peer_ni *lpni = NULL;
2008         struct lnet_peer_ni *gwni = NULL;
2009         bool route_found = false;
2010         lnet_nid_t src_nid = (sd->sd_src_nid != LNET_NID_ANY) ? sd->sd_src_nid :
2011                 (sd->sd_best_ni != NULL) ? sd->sd_best_ni->ni_nid :
2012                 LNET_NID_ANY;
2013
2014         CDEBUG(D_NET, "using src nid %s for route restriction\n",
2015                libcfs_nid2str(src_nid));
2016
2017         /* If a router nid was specified then we are replying to a GET or
2018          * sending an ACK. In this case we use the gateway associated with the
2019          * specified router nid.
2020          */
2021         if (sd->sd_rtr_nid != LNET_NID_ANY) {
2022                 gwni = lnet_find_peer_ni_locked(sd->sd_rtr_nid);
2023                 if (gwni) {
2024                         gw = gwni->lpni_peer_net->lpn_peer;
2025                         lnet_peer_ni_decref_locked(gwni);
2026                         if (gw->lp_rtr_refcount) {
2027                                 local_lnet = LNET_NIDNET(sd->sd_rtr_nid);
2028                                 route_found = true;
2029                         }
2030                 } else {
2031                         CWARN("No peer NI for gateway %s. Attempting to find an alternative route.\n",
2032                                libcfs_nid2str(sd->sd_rtr_nid));
2033                 }
2034         }
2035
2036         if (!route_found) {
2037                 /* we've already looked up the initial lpni using dst_nid */
2038                 lpni = sd->sd_best_lpni;
2039                 /* the peer tree must be in existence */
2040                 LASSERT(lpni && lpni->lpni_peer_net &&
2041                         lpni->lpni_peer_net->lpn_peer);
2042                 lp = lpni->lpni_peer_net->lpn_peer;
2043
2044                 list_for_each_entry(lpn, &lp->lp_peer_nets, lpn_peer_nets) {
2045                         /* is this remote network reachable?  */
2046                         rnet = lnet_find_rnet_locked(lpn->lpn_net_id);
2047                         if (!rnet)
2048                                 continue;
2049
2050                         if (!best_lpn) {
2051                                 best_lpn = lpn;
2052                                 best_rnet = rnet;
2053                         }
2054
2055                         if (best_lpn->lpn_seq <= lpn->lpn_seq)
2056                                 continue;
2057
2058                         best_lpn = lpn;
2059                         best_rnet = rnet;
2060                 }
2061
2062                 if (!best_lpn) {
2063                         CERROR("peer %s has no available nets\n",
2064                                libcfs_nid2str(sd->sd_dst_nid));
2065                         return -EHOSTUNREACH;
2066                 }
2067
2068                 sd->sd_best_lpni = lnet_find_best_lpni(sd->sd_best_ni,
2069                                                        sd->sd_dst_nid,
2070                                                        lp,
2071                                                        best_lpn->lpn_net_id);
2072                 if (!sd->sd_best_lpni) {
2073                         CERROR("peer %s is unreachable\n",
2074                                libcfs_nid2str(sd->sd_dst_nid));
2075                         return -EHOSTUNREACH;
2076                 }
2077
2078                 /*
2079                  * We're attempting to round robin over the remote peer
2080                  * NI's so update the final destination we selected
2081                  */
2082                 sd->sd_final_dst_lpni = sd->sd_best_lpni;
2083
2084                 /*
2085                  * find the best route. Restrict the selection on the net of the
2086                  * local NI if we've already picked the local NI to send from.
2087                  * Otherwise, let's pick any route we can find and then find
2088                  * a local NI we can reach the route's gateway on. Any route we select
2089                  * will be reachable by virtue of the restriction we have when
2090                  * adding a route.
2091                  */
2092                 best_route = lnet_find_route_locked(best_rnet,
2093                                                     LNET_NIDNET(src_nid),
2094                                                     &last_route, &gwni);
2095
2096                 if (!best_route) {
2097                         CERROR("no route to %s from %s\n",
2098                                libcfs_nid2str(dst_nid),
2099                                libcfs_nid2str(src_nid));
2100                         return -EHOSTUNREACH;
2101                 }
2102
2103                 if (!gwni) {
2104                         CERROR("Internal Error. Route expected to %s from %s\n",
2105                                libcfs_nid2str(dst_nid),
2106                                libcfs_nid2str(src_nid));
2107                         return -EFAULT;
2108                 }
2109
2110                 gw = best_route->lr_gateway;
2111                 LASSERT(gw == gwni->lpni_peer_net->lpn_peer);
2112                 local_lnet = best_route->lr_lnet;
2113
2114                 /*
2115                  * Increment the sequence number of the remote lpni so we
2116                  * can round robin over the different interfaces of the
2117                  * remote lpni
2118                  */
2119                 sd->sd_best_lpni->lpni_seq++;
2120         }
2121
2122         /*
2123          * Discover this gateway if it hasn't already been discovered.
2124          * This means we might delay the message until discovery has
2125          * completed
2126          */
2127         sd->sd_msg->msg_src_nid_param = sd->sd_src_nid;
2128         rc = lnet_initiate_peer_discovery(gwni, sd->sd_msg, sd->sd_cpt);
2129         if (rc)
2130                 return rc;
2131
2132         if (!sd->sd_best_ni)
2133                 sd->sd_best_ni = lnet_find_best_ni_on_spec_net(NULL, gw,
2134                                         lnet_peer_get_net_locked(gw,
2135                                                                  local_lnet),
2136                                         sd->sd_md_cpt,
2137                                         true);
2138
2139         if (!sd->sd_best_ni) {
2140                 CERROR("Internal Error. Expected local ni on %s but non found :%s\n",
2141                        libcfs_net2str(local_lnet),
2142                        libcfs_nid2str(sd->sd_src_nid));
2143                 return -EFAULT;
2144         }
2145
2146         *gw_lpni = gwni;
2147         *gw_peer = gw;
2148
2149         /*
2150          * increment the sequence numbers since now we're sure we're
2151          * going to use this path
2152          */
2153         if (sd->sd_rtr_nid == LNET_NID_ANY) {
2154                 LASSERT(best_route && last_route);
2155                 best_route->lr_seq = last_route->lr_seq + 1;
2156                 best_lpn->lpn_seq++;
2157         }
2158
2159         return 0;
2160 }
2161
2162 /*
2163  * Handle two cases:
2164  *
2165  * Case 1:
2166  *  Source specified
2167  *  Remote destination
2168  *  Non-MR destination
2169  *
2170  * Case 2:
2171  *  Source specified
2172  *  Remote destination
2173  *  MR destination
2174  *
2175  * The handling of these two cases is similar. Even though the destination
2176  * can be MR or non-MR, we'll deal directly with the router.
2177  */
2178 static int
2179 lnet_handle_spec_router_dst(struct lnet_send_data *sd)
2180 {
2181         int rc;
2182         struct lnet_peer_ni *gw_lpni = NULL;
2183         struct lnet_peer *gw_peer = NULL;
2184
2185         /* find local NI */
2186         sd->sd_best_ni = lnet_nid2ni_locked(sd->sd_src_nid, sd->sd_cpt);
2187         if (!sd->sd_best_ni) {
2188                 CERROR("Can't send to %s: src %s is not a "
2189                        "local nid\n", libcfs_nid2str(sd->sd_dst_nid),
2190                                 libcfs_nid2str(sd->sd_src_nid));
2191                 return -EINVAL;
2192         }
2193
2194         rc = lnet_handle_find_routed_path(sd, sd->sd_dst_nid, &gw_lpni,
2195                                      &gw_peer);
2196         if (rc)
2197                 return rc;
2198
2199         if (sd->sd_send_case & NMR_DST)
2200                 /*
2201                  * since the final destination is non-MR let's set its preferred
2202                  * NID before we send
2203                  */
2204                 lnet_set_non_mr_pref_nid(sd->sd_best_lpni, sd->sd_best_ni,
2205                                          sd->sd_msg);
2206
2207         /*
2208          * We're going to send to the gw found so let's set its
2209          * info
2210          */
2211         sd->sd_peer = gw_peer;
2212         sd->sd_best_lpni = gw_lpni;
2213
2214         return lnet_handle_send(sd);
2215 }
2216
2217 struct lnet_ni *
2218 lnet_find_best_ni_on_local_net(struct lnet_peer *peer, int md_cpt,
2219                                bool discovery)
2220 {
2221         struct lnet_peer_net *peer_net = NULL;
2222         struct lnet_ni *best_ni = NULL;
2223         int lpn_healthv = 0;
2224
2225         /*
2226          * The peer can have multiple interfaces, some of them can be on
2227          * the local network and others on a routed network. We should
2228          * prefer the local network. However if the local network is not
2229          * available then we need to try the routed network
2230          */
2231
2232         /* go through all the peer nets and find the best_ni */
2233         list_for_each_entry(peer_net, &peer->lp_peer_nets, lpn_peer_nets) {
2234                 /*
2235                  * The peer's list of nets can contain non-local nets. We
2236                  * want to only examine the local ones.
2237                  */
2238                 if (!lnet_get_net_locked(peer_net->lpn_net_id))
2239                         continue;
2240
2241                 /* always select the lpn with the best health */
2242                 if (lpn_healthv <= peer_net->lpn_healthv)
2243                         lpn_healthv = peer_net->lpn_healthv;
2244                 else
2245                         continue;
2246
2247                 best_ni = lnet_find_best_ni_on_spec_net(best_ni, peer, peer_net,
2248                                                         md_cpt, false);
2249
2250                 /*
2251                  * if this is a discovery message and lp_disc_net_id is
2252                  * specified then use that net to send the discovery on.
2253                  */
2254                 if (peer->lp_disc_net_id == peer_net->lpn_net_id &&
2255                     discovery)
2256                         break;
2257         }
2258
2259         if (best_ni)
2260                 /* increment sequence number so we can round robin */
2261                 best_ni->ni_seq++;
2262
2263         return best_ni;
2264 }
2265
2266 static struct lnet_ni *
2267 lnet_find_existing_preferred_best_ni(struct lnet_peer_ni *lpni, int cpt)
2268 {
2269         struct lnet_ni *best_ni = NULL;
2270         struct lnet_peer_net *peer_net = lpni->lpni_peer_net;
2271         struct lnet_peer_ni *lpni_entry;
2272
2273         /*
2274          * We must use a consistent source address when sending to a
2275          * non-MR peer. However, a non-MR peer can have multiple NIDs
2276          * on multiple networks, and we may even need to talk to this
2277          * peer on multiple networks -- certain types of
2278          * load-balancing configuration do this.
2279          *
2280          * So we need to pick the NI the peer prefers for this
2281          * particular network.
2282          */
2283         LASSERT(peer_net);
2284         list_for_each_entry(lpni_entry, &peer_net->lpn_peer_nis,
2285                             lpni_peer_nis) {
2286                 if (lpni_entry->lpni_pref_nnids == 0)
2287                         continue;
2288                 LASSERT(lpni_entry->lpni_pref_nnids == 1);
2289                 best_ni = lnet_nid2ni_locked(lpni_entry->lpni_pref.nid, cpt);
2290                 break;
2291         }
2292
2293         return best_ni;
2294 }
2295
2296 /* Prerequisite: sd->sd_peer and sd->sd_best_lpni should be set */
2297 static int
2298 lnet_select_preferred_best_ni(struct lnet_send_data *sd)
2299 {
2300         struct lnet_ni *best_ni = NULL;
2301         struct lnet_peer_ni *best_lpni = sd->sd_best_lpni;
2302
2303         /*
2304          * We must use a consistent source address when sending to a
2305          * non-MR peer. However, a non-MR peer can have multiple NIDs
2306          * on multiple networks, and we may even need to talk to this
2307          * peer on multiple networks -- certain types of
2308          * load-balancing configuration do this.
2309          *
2310          * So we need to pick the NI the peer prefers for this
2311          * particular network.
2312          */
2313
2314         best_ni = lnet_find_existing_preferred_best_ni(sd->sd_best_lpni,
2315                                                        sd->sd_cpt);
2316
2317         /* if best_ni is still not set just pick one */
2318         if (!best_ni) {
2319                 best_ni =
2320                   lnet_find_best_ni_on_spec_net(NULL, sd->sd_peer,
2321                                                 sd->sd_best_lpni->lpni_peer_net,
2322                                                 sd->sd_md_cpt, true);
2323                 /* If there is no best_ni we don't have a route */
2324                 if (!best_ni) {
2325                         CERROR("no path to %s from net %s\n",
2326                                 libcfs_nid2str(best_lpni->lpni_nid),
2327                                 libcfs_net2str(best_lpni->lpni_net->net_id));
2328                         return -EHOSTUNREACH;
2329                 }
2330         }
2331
2332         sd->sd_best_ni = best_ni;
2333
2334         /* Set preferred NI if necessary. */
2335         lnet_set_non_mr_pref_nid(sd->sd_best_lpni, sd->sd_best_ni, sd->sd_msg);
2336
2337         return 0;
2338 }
2339
2340
2341 /*
2342  * Source not specified
2343  * Local destination
2344  * Non-MR Peer
2345  *
2346  * always use the same source NID for NMR peers
2347  * If we've talked to that peer before then we already have a preferred
2348  * source NI associated with it. Otherwise, we select a preferred local NI
2349  * and store it in the peer
2350  */
2351 static int
2352 lnet_handle_any_local_nmr_dst(struct lnet_send_data *sd)
2353 {
2354         int rc = 0;
2355
2356         /* sd->sd_best_lpni is already set to the final destination */
2357
2358         /*
2359          * At this point we should've created the peer ni and peer. If we
2360          * can't find it, then something went wrong. Instead of assert
2361          * output a relevant message and fail the send
2362          */
2363         if (!sd->sd_best_lpni) {
2364                 CERROR("Internal fault. Unable to send msg %s to %s. "
2365                        "NID not known\n",
2366                        lnet_msgtyp2str(sd->sd_msg->msg_type),
2367                        libcfs_nid2str(sd->sd_dst_nid));
2368                 return -EFAULT;
2369         }
2370
2371         if (sd->sd_msg->msg_routing) {
2372                 /* If I'm forwarding this message then I can choose any NI
2373                  * on the destination peer net
2374                  */
2375                 sd->sd_best_ni = lnet_find_best_ni_on_spec_net(NULL,
2376                                                                sd->sd_peer,
2377                                                                sd->sd_best_lpni->lpni_peer_net,
2378                                                                sd->sd_md_cpt,
2379                                                                true);
2380                 if (!sd->sd_best_ni) {
2381                         CERROR("Unable to forward message to %s. No local NI available\n",
2382                                libcfs_nid2str(sd->sd_dst_nid));
2383                         rc = -EHOSTUNREACH;
2384                 }
2385         } else
2386                 rc = lnet_select_preferred_best_ni(sd);
2387
2388         if (!rc)
2389                 rc = lnet_handle_send(sd);
2390
2391         return rc;
2392 }
2393
2394 static int
2395 lnet_handle_any_mr_dsta(struct lnet_send_data *sd)
2396 {
2397         /*
2398          * NOTE we've already handled the remote peer case. So we only
2399          * need to worry about the local case here.
2400          *
2401          * if we're sending a response, ACK or reply, we need to send it
2402          * to the destination NID given to us. At this point we already
2403          * have the peer_ni we're suppose to send to, so just find the
2404          * best_ni on the peer net and use that. Since we're sending to an
2405          * MR peer then we can just run the selection algorithm on our
2406          * local NIs and pick the best one.
2407          */
2408         if (sd->sd_send_case & SND_RESP) {
2409                 sd->sd_best_ni =
2410                   lnet_find_best_ni_on_spec_net(NULL, sd->sd_peer,
2411                                                 sd->sd_best_lpni->lpni_peer_net,
2412                                                 sd->sd_md_cpt, true);
2413
2414                 if (!sd->sd_best_ni) {
2415                         /*
2416                          * We're not going to deal with not able to send
2417                          * a response to the provided final destination
2418                          */
2419                         CERROR("Can't send response to %s. "
2420                                "No local NI available\n",
2421                                 libcfs_nid2str(sd->sd_dst_nid));
2422                         return -EHOSTUNREACH;
2423                 }
2424
2425                 return lnet_handle_send(sd);
2426         }
2427
2428         /*
2429          * If we get here that means we're sending a fresh request, PUT or
2430          * GET, so we need to run our standard selection algorithm.
2431          * First find the best local interface that's on any of the peer's
2432          * networks.
2433          */
2434         sd->sd_best_ni = lnet_find_best_ni_on_local_net(sd->sd_peer,
2435                                         sd->sd_md_cpt,
2436                                         lnet_msg_discovery(sd->sd_msg));
2437         if (sd->sd_best_ni) {
2438                 sd->sd_best_lpni =
2439                   lnet_find_best_lpni(sd->sd_best_ni, sd->sd_dst_nid,
2440                                       sd->sd_peer,
2441                                       sd->sd_best_ni->ni_net->net_id);
2442
2443                 /*
2444                  * if we're successful in selecting a peer_ni on the local
2445                  * network, then send to it. Otherwise fall through and
2446                  * try and see if we can reach it over another routed
2447                  * network
2448                  */
2449                 if (sd->sd_best_lpni &&
2450                     sd->sd_best_lpni->lpni_nid == the_lnet.ln_loni->ni_nid) {
2451                         /*
2452                          * in case we initially started with a routed
2453                          * destination, let's reset to local
2454                          */
2455                         sd->sd_send_case &= ~REMOTE_DST;
2456                         sd->sd_send_case |= LOCAL_DST;
2457                         return lnet_handle_lo_send(sd);
2458                 } else if (sd->sd_best_lpni) {
2459                         /*
2460                          * in case we initially started with a routed
2461                          * destination, let's reset to local
2462                          */
2463                         sd->sd_send_case &= ~REMOTE_DST;
2464                         sd->sd_send_case |= LOCAL_DST;
2465                         return lnet_handle_send(sd);
2466                 }
2467
2468                 CERROR("Internal Error. Expected to have a best_lpni: "
2469                        "%s -> %s\n",
2470                        libcfs_nid2str(sd->sd_src_nid),
2471                        libcfs_nid2str(sd->sd_dst_nid));
2472
2473                 return -EFAULT;
2474         }
2475
2476         /*
2477          * Peer doesn't have a local network. Let's see if there is
2478          * a remote network we can reach it on.
2479          */
2480         return PASS_THROUGH;
2481 }
2482
2483 /*
2484  * Case 1:
2485  *      Source NID not specified
2486  *      Local destination
2487  *      MR peer
2488  *
2489  * Case 2:
2490  *      Source NID not speified
2491  *      Remote destination
2492  *      MR peer
2493  *
2494  * In both of these cases if we're sending a response, ACK or REPLY, then
2495  * we need to send to the destination NID provided.
2496  *
2497  * In the remote case let's deal with MR routers.
2498  *
2499  */
2500
2501 static int
2502 lnet_handle_any_mr_dst(struct lnet_send_data *sd)
2503 {
2504         int rc = 0;
2505         struct lnet_peer *gw_peer = NULL;
2506         struct lnet_peer_ni *gw_lpni = NULL;
2507
2508         /*
2509          * handle sending a response to a remote peer here so we don't
2510          * have to worry about it if we hit lnet_handle_any_mr_dsta()
2511          */
2512         if (sd->sd_send_case & REMOTE_DST &&
2513             sd->sd_send_case & SND_RESP) {
2514                 struct lnet_peer_ni *gw;
2515                 struct lnet_peer *gw_peer;
2516
2517                 rc = lnet_handle_find_routed_path(sd, sd->sd_dst_nid, &gw,
2518                                                   &gw_peer);
2519                 if (rc < 0) {
2520                         CERROR("Can't send response to %s. "
2521                                "No route available\n",
2522                                 libcfs_nid2str(sd->sd_dst_nid));
2523                         return -EHOSTUNREACH;
2524                 } else if (rc > 0) {
2525                         return rc;
2526                 }
2527
2528                 sd->sd_best_lpni = gw;
2529                 sd->sd_peer = gw_peer;
2530
2531                 return lnet_handle_send(sd);
2532         }
2533
2534         /*
2535          * Even though the NID for the peer might not be on a local network,
2536          * since the peer is MR there could be other interfaces on the
2537          * local network. In that case we'd still like to prefer the local
2538          * network over the routed network. If we're unable to do that
2539          * then we select the best router among the different routed networks,
2540          * and if the router is MR then we can deal with it as such.
2541          */
2542         rc = lnet_handle_any_mr_dsta(sd);
2543         if (rc != PASS_THROUGH)
2544                 return rc;
2545
2546         /*
2547          * Now that we must route to the destination, we must consider the
2548          * MR case, where the destination has multiple interfaces, some of
2549          * which we can route to and others we do not. For this reason we
2550          * need to select the destination which we can route to and if
2551          * there are multiple, we need to round robin.
2552          */
2553         rc = lnet_handle_find_routed_path(sd, sd->sd_dst_nid, &gw_lpni,
2554                                           &gw_peer);
2555         if (rc)
2556                 return rc;
2557
2558         sd->sd_send_case &= ~LOCAL_DST;
2559         sd->sd_send_case |= REMOTE_DST;
2560
2561         sd->sd_peer = gw_peer;
2562         sd->sd_best_lpni = gw_lpni;
2563
2564         return lnet_handle_send(sd);
2565 }
2566
2567 /*
2568  * Source not specified
2569  * Remote destination
2570  * Non-MR peer
2571  *
2572  * Must send to the specified peer NID using the same source NID that
2573  * we've used before. If it's the first time to talk to that peer then
2574  * find the source NI and assign it as preferred to that peer
2575  */
2576 static int
2577 lnet_handle_any_router_nmr_dst(struct lnet_send_data *sd)
2578 {
2579         int rc;
2580         struct lnet_peer_ni *gw_lpni = NULL;
2581         struct lnet_peer *gw_peer = NULL;
2582
2583         /*
2584          * Let's see if we have a preferred NI to talk to this NMR peer
2585          */
2586         sd->sd_best_ni = lnet_find_existing_preferred_best_ni(sd->sd_best_lpni,
2587                                                               sd->sd_cpt);
2588
2589         /*
2590          * find the router and that'll find the best NI if we didn't find
2591          * it already.
2592          */
2593         rc = lnet_handle_find_routed_path(sd, sd->sd_dst_nid, &gw_lpni,
2594                                           &gw_peer);
2595         if (rc)
2596                 return rc;
2597
2598         /*
2599          * set the best_ni we've chosen as the preferred one for
2600          * this peer
2601          */
2602         lnet_set_non_mr_pref_nid(sd->sd_best_lpni, sd->sd_best_ni, sd->sd_msg);
2603
2604         /* we'll be sending to the gw */
2605         sd->sd_best_lpni = gw_lpni;
2606         sd->sd_peer = gw_peer;
2607
2608         return lnet_handle_send(sd);
2609 }
2610
2611 static int
2612 lnet_handle_send_case_locked(struct lnet_send_data *sd)
2613 {
2614         /*
2615          * turn off the SND_RESP bit.
2616          * It will be checked in the case handling
2617          */
2618         __u32 send_case = sd->sd_send_case &= ~SND_RESP ;
2619
2620         CDEBUG(D_NET, "Source %s%s to %s %s %s destination\n",
2621                 (send_case & SRC_SPEC) ? "Specified: " : "ANY",
2622                 (send_case & SRC_SPEC) ? libcfs_nid2str(sd->sd_src_nid) : "",
2623                 (send_case & MR_DST) ? "MR: " : "NMR: ",
2624                 libcfs_nid2str(sd->sd_dst_nid),
2625                 (send_case & LOCAL_DST) ? "local" : "routed");
2626
2627         switch (send_case) {
2628         /*
2629          * For all cases where the source is specified, we should always
2630          * use the destination NID, whether it's an MR destination or not,
2631          * since we're continuing a series of related messages for the
2632          * same RPC
2633          */
2634         case SRC_SPEC_LOCAL_NMR_DST:
2635                 return lnet_handle_spec_local_nmr_dst(sd);
2636         case SRC_SPEC_LOCAL_MR_DST:
2637                 return lnet_handle_spec_local_mr_dst(sd);
2638         case SRC_SPEC_ROUTER_NMR_DST:
2639         case SRC_SPEC_ROUTER_MR_DST:
2640                 return lnet_handle_spec_router_dst(sd);
2641         case SRC_ANY_LOCAL_NMR_DST:
2642                 return lnet_handle_any_local_nmr_dst(sd);
2643         case SRC_ANY_LOCAL_MR_DST:
2644         case SRC_ANY_ROUTER_MR_DST:
2645                 return lnet_handle_any_mr_dst(sd);
2646         case SRC_ANY_ROUTER_NMR_DST:
2647                 return lnet_handle_any_router_nmr_dst(sd);
2648         default:
2649                 CERROR("Unknown send case\n");
2650                 return -1;
2651         }
2652 }
2653
2654 static int
2655 lnet_select_pathway(lnet_nid_t src_nid, lnet_nid_t dst_nid,
2656                     struct lnet_msg *msg, lnet_nid_t rtr_nid)
2657 {
2658         struct lnet_peer_ni *lpni;
2659         struct lnet_peer *peer;
2660         struct lnet_send_data send_data;
2661         int cpt, rc;
2662         int md_cpt;
2663         __u32 send_case = 0;
2664         bool final_hop;
2665         bool mr_forwarding_allowed;
2666
2667         memset(&send_data, 0, sizeof(send_data));
2668
2669         /*
2670          * get an initial CPT to use for locking. The idea here is not to
2671          * serialize the calls to select_pathway, so that as many
2672          * operations can run concurrently as possible. To do that we use
2673          * the CPT where this call is being executed. Later on when we
2674          * determine the CPT to use in lnet_message_commit, we switch the
2675          * lock and check if there was any configuration change.  If none,
2676          * then we proceed, if there is, then we restart the operation.
2677          */
2678         cpt = lnet_net_lock_current();
2679
2680         md_cpt = lnet_cpt_of_md(msg->msg_md, msg->msg_offset);
2681         if (md_cpt == CFS_CPT_ANY)
2682                 md_cpt = cpt;
2683
2684 again:
2685
2686         /*
2687          * If we're being asked to send to the loopback interface, there
2688          * is no need to go through any selection. We can just shortcut
2689          * the entire process and send over lolnd
2690          */
2691         send_data.sd_msg = msg;
2692         send_data.sd_cpt = cpt;
2693         if (dst_nid == LNET_NID_LO_0) {
2694                 rc = lnet_handle_lo_send(&send_data);
2695                 lnet_net_unlock(cpt);
2696                 return rc;
2697         }
2698
2699         /*
2700          * find an existing peer_ni, or create one and mark it as having been
2701          * created due to network traffic. This call will create the
2702          * peer->peer_net->peer_ni tree.
2703          */
2704         lpni = lnet_nid2peerni_locked(dst_nid, LNET_NID_ANY, cpt);
2705         if (IS_ERR(lpni)) {
2706                 lnet_net_unlock(cpt);
2707                 return PTR_ERR(lpni);
2708         }
2709
2710         /*
2711          * Cache the original src_nid and rtr_nid. If we need to resend the
2712          * message then we'll need to know whether the src_nid was originally
2713          * specified for this message. If it was originally specified,
2714          * then we need to keep using the same src_nid since it's
2715          * continuing the same sequence of messages. Similarly, rtr_nid will
2716          * affect our choice of next hop.
2717          */
2718         msg->msg_src_nid_param = src_nid;
2719         msg->msg_rtr_nid_param = rtr_nid;
2720
2721         /*
2722          * If necessary, perform discovery on the peer that owns this peer_ni.
2723          * Note, this can result in the ownership of this peer_ni changing
2724          * to another peer object.
2725          */
2726         rc = lnet_initiate_peer_discovery(lpni, msg, cpt);
2727         if (rc) {
2728                 lnet_peer_ni_decref_locked(lpni);
2729                 lnet_net_unlock(cpt);
2730                 return rc;
2731         }
2732         lnet_peer_ni_decref_locked(lpni);
2733
2734         peer = lpni->lpni_peer_net->lpn_peer;
2735
2736         /*
2737          * Identify the different send cases
2738          */
2739         if (src_nid == LNET_NID_ANY)
2740                 send_case |= SRC_ANY;
2741         else
2742                 send_case |= SRC_SPEC;
2743
2744         if (lnet_get_net_locked(LNET_NIDNET(dst_nid)))
2745                 send_case |= LOCAL_DST;
2746         else
2747                 send_case |= REMOTE_DST;
2748
2749         final_hop = false;
2750         if (msg->msg_routing && (send_case & LOCAL_DST))
2751                 final_hop = true;
2752
2753         /* Determine whether to allow MR forwarding for this message.
2754          * NB: MR forwarding is allowed if the message originator and the
2755          * destination are both MR capable, and the destination lpni that was
2756          * originally chosen by the originator is unhealthy or down.
2757          * We check the MR capability of the destination further below
2758          */
2759         mr_forwarding_allowed = false;
2760         if (final_hop) {
2761                 struct lnet_peer *src_lp;
2762                 struct lnet_peer_ni *src_lpni;
2763
2764                 src_lpni = lnet_nid2peerni_locked(msg->msg_hdr.src_nid,
2765                                                   LNET_NID_ANY, cpt);
2766                 /* We don't fail the send if we hit any errors here. We'll just
2767                  * try to send it via non-multi-rail criteria
2768                  */
2769                 if (!IS_ERR(src_lpni)) {
2770                         /* Drop ref taken by lnet_nid2peerni_locked() */
2771                         lnet_peer_ni_decref_locked(src_lpni);
2772                         src_lp = lpni->lpni_peer_net->lpn_peer;
2773                         if (lnet_peer_is_multi_rail(src_lp) &&
2774                             !lnet_is_peer_ni_alive(lpni))
2775                                 mr_forwarding_allowed = true;
2776
2777                 }
2778                 CDEBUG(D_NET, "msg %p MR forwarding %s\n", msg,
2779                        mr_forwarding_allowed ? "allowed" : "not allowed");
2780         }
2781
2782         /*
2783          * Deal with the peer as NMR in the following cases:
2784          * 1. the peer is NMR
2785          * 2. We're trying to recover a specific peer NI
2786          * 3. I'm a router sending to the final destination and MR forwarding is
2787          *    not allowed for this message (as determined above).
2788          *    In this case the source of the message would've
2789          *    already selected the final destination so my job
2790          *    is to honor the selection.
2791          */
2792         if (!lnet_peer_is_multi_rail(peer) || msg->msg_recovery ||
2793             (final_hop && !mr_forwarding_allowed))
2794                 send_case |= NMR_DST;
2795         else
2796                 send_case |= MR_DST;
2797
2798         if (lnet_msg_is_response(msg))
2799                 send_case |= SND_RESP;
2800
2801         /* assign parameters to the send_data */
2802         send_data.sd_rtr_nid = rtr_nid;
2803         send_data.sd_src_nid = src_nid;
2804         send_data.sd_dst_nid = dst_nid;
2805         send_data.sd_best_lpni = lpni;
2806         /*
2807          * keep a pointer to the final destination in case we're going to
2808          * route, so we'll need to access it later
2809          */
2810         send_data.sd_final_dst_lpni = lpni;
2811         send_data.sd_peer = peer;
2812         send_data.sd_md_cpt = md_cpt;
2813         send_data.sd_send_case = send_case;
2814
2815         rc = lnet_handle_send_case_locked(&send_data);
2816
2817         /*
2818          * Update the local cpt since send_data.sd_cpt might've been
2819          * updated as a result of calling lnet_handle_send_case_locked().
2820          */
2821         cpt = send_data.sd_cpt;
2822
2823         if (rc == REPEAT_SEND)
2824                 goto again;
2825
2826         lnet_net_unlock(cpt);
2827
2828         return rc;
2829 }
2830
2831 int
2832 lnet_send(lnet_nid_t src_nid, struct lnet_msg *msg, lnet_nid_t rtr_nid)
2833 {
2834         lnet_nid_t              dst_nid = msg->msg_target.nid;
2835         int                     rc;
2836
2837         /*
2838          * NB: rtr_nid is set to LNET_NID_ANY for all current use-cases,
2839          * but we might want to use pre-determined router for ACK/REPLY
2840          * in the future
2841          */
2842         /* NB: ni != NULL == interface pre-determined (ACK/REPLY) */
2843         LASSERT(msg->msg_txpeer == NULL);
2844         LASSERT(msg->msg_txni == NULL);
2845         LASSERT(!msg->msg_sending);
2846         LASSERT(!msg->msg_target_is_router);
2847         LASSERT(!msg->msg_receiving);
2848
2849         msg->msg_sending = 1;
2850
2851         LASSERT(!msg->msg_tx_committed);
2852
2853         rc = lnet_select_pathway(src_nid, dst_nid, msg, rtr_nid);
2854         if (rc < 0) {
2855                 if (rc == -EHOSTUNREACH)
2856                         msg->msg_health_status = LNET_MSG_STATUS_REMOTE_ERROR;
2857                 else
2858                         msg->msg_health_status = LNET_MSG_STATUS_LOCAL_ERROR;
2859                 return rc;
2860         }
2861
2862         if (rc == LNET_CREDIT_OK)
2863                 lnet_ni_send(msg->msg_txni, msg);
2864
2865         /* rc == LNET_CREDIT_OK or LNET_CREDIT_WAIT or LNET_DC_WAIT */
2866         return 0;
2867 }
2868
2869 enum lnet_mt_event_type {
2870         MT_TYPE_LOCAL_NI = 0,
2871         MT_TYPE_PEER_NI
2872 };
2873
2874 struct lnet_mt_event_info {
2875         enum lnet_mt_event_type mt_type;
2876         lnet_nid_t mt_nid;
2877 };
2878
2879 /* called with res_lock held */
2880 void
2881 lnet_detach_rsp_tracker(struct lnet_libmd *md, int cpt)
2882 {
2883         struct lnet_rsp_tracker *rspt;
2884
2885         /*
2886          * msg has a refcount on the MD so the MD is not going away.
2887          * The rspt queue for the cpt is protected by
2888          * the lnet_net_lock(cpt). cpt is the cpt of the MD cookie.
2889          */
2890         if (!md->md_rspt_ptr)
2891                 return;
2892
2893         rspt = md->md_rspt_ptr;
2894
2895         /* debug code */
2896         LASSERT(rspt->rspt_cpt == cpt);
2897
2898         md->md_rspt_ptr = NULL;
2899
2900         if (LNetMDHandleIsInvalid(rspt->rspt_mdh)) {
2901                 /*
2902                  * The monitor thread has invalidated this handle because the
2903                  * response timed out, but it failed to lookup the MD. That
2904                  * means this response tracker is on the zombie list. We can
2905                  * safely remove it under the resource lock (held by caller) and
2906                  * free the response tracker block.
2907                  */
2908                 list_del(&rspt->rspt_on_list);
2909                 lnet_rspt_free(rspt, cpt);
2910         } else {
2911                 /*
2912                  * invalidate the handle to indicate that a response has been
2913                  * received, which will then lead the monitor thread to clean up
2914                  * the rspt block.
2915                  */
2916                 LNetInvalidateMDHandle(&rspt->rspt_mdh);
2917         }
2918 }
2919
2920 void
2921 lnet_clean_zombie_rstqs(void)
2922 {
2923         struct lnet_rsp_tracker *rspt, *tmp;
2924         int i;
2925
2926         cfs_cpt_for_each(i, lnet_cpt_table()) {
2927                 list_for_each_entry_safe(rspt, tmp,
2928                                          the_lnet.ln_mt_zombie_rstqs[i],
2929                                          rspt_on_list) {
2930                         list_del(&rspt->rspt_on_list);
2931                         lnet_rspt_free(rspt, i);
2932                 }
2933         }
2934
2935         cfs_percpt_free(the_lnet.ln_mt_zombie_rstqs);
2936 }
2937
2938 static void
2939 lnet_finalize_expired_responses(void)
2940 {
2941         struct lnet_libmd *md;
2942         struct lnet_rsp_tracker *rspt, *tmp;
2943         ktime_t now;
2944         int i;
2945
2946         if (the_lnet.ln_mt_rstq == NULL)
2947                 return;
2948
2949         cfs_cpt_for_each(i, lnet_cpt_table()) {
2950                 LIST_HEAD(local_queue);
2951
2952                 lnet_net_lock(i);
2953                 if (!the_lnet.ln_mt_rstq[i]) {
2954                         lnet_net_unlock(i);
2955                         continue;
2956                 }
2957                 list_splice_init(the_lnet.ln_mt_rstq[i], &local_queue);
2958                 lnet_net_unlock(i);
2959
2960                 now = ktime_get();
2961
2962                 list_for_each_entry_safe(rspt, tmp, &local_queue, rspt_on_list) {
2963                         /*
2964                          * The rspt mdh will be invalidated when a response
2965                          * is received or whenever we want to discard the
2966                          * block the monitor thread will walk the queue
2967                          * and clean up any rsts with an invalid mdh.
2968                          * The monitor thread will walk the queue until
2969                          * the first unexpired rspt block. This means that
2970                          * some rspt blocks which received their
2971                          * corresponding responses will linger in the
2972                          * queue until they are cleaned up eventually.
2973                          */
2974                         lnet_res_lock(i);
2975                         if (LNetMDHandleIsInvalid(rspt->rspt_mdh)) {
2976                                 lnet_res_unlock(i);
2977                                 list_del(&rspt->rspt_on_list);
2978                                 lnet_rspt_free(rspt, i);
2979                                 continue;
2980                         }
2981
2982                         if (ktime_compare(now, rspt->rspt_deadline) >= 0 ||
2983                             the_lnet.ln_mt_state == LNET_MT_STATE_SHUTDOWN) {
2984                                 struct lnet_peer_ni *lpni;
2985                                 lnet_nid_t nid;
2986
2987                                 md = lnet_handle2md(&rspt->rspt_mdh);
2988                                 if (!md) {
2989                                         /* MD has been queued for unlink, but
2990                                          * rspt hasn't been detached (Note we've
2991                                          * checked above that the rspt_mdh is
2992                                          * valid). Since we cannot lookup the MD
2993                                          * we're unable to detach the rspt
2994                                          * ourselves. Thus, move the rspt to the
2995                                          * zombie list where we'll wait for
2996                                          * either:
2997                                          *   1. The remaining operations on the
2998                                          *   MD to complete. In this case the
2999                                          *   final operation will result in
3000                                          *   lnet_msg_detach_md()->
3001                                          *   lnet_detach_rsp_tracker() where
3002                                          *   we will clean up this response
3003                                          *   tracker.
3004                                          *   2. LNet to shutdown. In this case
3005                                          *   we'll wait until after all LND Nets
3006                                          *   have shutdown and then we can
3007                                          *   safely free any remaining response
3008                                          *   tracker blocks on the zombie list.
3009                                          * Note: We need to hold the resource
3010                                          * lock when adding to the zombie list
3011                                          * because we may have concurrent access
3012                                          * with lnet_detach_rsp_tracker().
3013                                          */
3014                                         LNetInvalidateMDHandle(&rspt->rspt_mdh);
3015                                         list_move(&rspt->rspt_on_list,
3016                                                   the_lnet.ln_mt_zombie_rstqs[i]);
3017                                         lnet_res_unlock(i);
3018                                         continue;
3019                                 }
3020                                 LASSERT(md->md_rspt_ptr == rspt);
3021                                 md->md_rspt_ptr = NULL;
3022                                 lnet_res_unlock(i);
3023
3024                                 LNetMDUnlink(rspt->rspt_mdh);
3025
3026                                 nid = rspt->rspt_next_hop_nid;
3027
3028                                 list_del(&rspt->rspt_on_list);
3029                                 lnet_rspt_free(rspt, i);
3030
3031                                 /* If we're shutting down we just want to clean
3032                                  * up the rspt blocks
3033                                  */
3034                                 if (the_lnet.ln_mt_state == LNET_MT_STATE_SHUTDOWN)
3035                                         continue;
3036
3037                                 lnet_net_lock(i);
3038                                 the_lnet.ln_counters[i]->lct_health.lch_response_timeout_count++;
3039                                 lnet_net_unlock(i);
3040
3041                                 CDEBUG(D_NET,
3042                                        "Response timeout: md = %p: nid = %s\n",
3043                                        md, libcfs_nid2str(nid));
3044
3045                                 /*
3046                                  * If there is a timeout on the response
3047                                  * from the next hop decrement its health
3048                                  * value so that we don't use it
3049                                  */
3050                                 lnet_net_lock(0);
3051                                 lpni = lnet_find_peer_ni_locked(nid);
3052                                 if (lpni) {
3053                                         lnet_handle_remote_failure_locked(lpni);
3054                                         lnet_peer_ni_decref_locked(lpni);
3055                                 }
3056                                 lnet_net_unlock(0);
3057                         } else {
3058                                 lnet_res_unlock(i);
3059                                 break;
3060                         }
3061                 }
3062
3063                 if (!list_empty(&local_queue)) {
3064                         lnet_net_lock(i);
3065                         list_splice(&local_queue, the_lnet.ln_mt_rstq[i]);
3066                         lnet_net_unlock(i);
3067                 }
3068         }
3069 }
3070
3071 static void
3072 lnet_resend_pending_msgs_locked(struct list_head *resendq, int cpt)
3073 {
3074         struct lnet_msg *msg;
3075
3076         while (!list_empty(resendq)) {
3077                 struct lnet_peer_ni *lpni;
3078
3079                 msg = list_entry(resendq->next, struct lnet_msg,
3080                                  msg_list);
3081
3082                 list_del_init(&msg->msg_list);
3083
3084                 lpni = lnet_find_peer_ni_locked(msg->msg_hdr.dest_nid);
3085                 if (!lpni) {
3086                         lnet_net_unlock(cpt);
3087                         CERROR("Expected that a peer is already created for %s\n",
3088                                libcfs_nid2str(msg->msg_hdr.dest_nid));
3089                         msg->msg_no_resend = true;
3090                         lnet_finalize(msg, -EFAULT);
3091                         lnet_net_lock(cpt);
3092                 } else {
3093                         int rc;
3094
3095                         lnet_peer_ni_decref_locked(lpni);
3096
3097                         lnet_net_unlock(cpt);
3098                         CDEBUG(D_NET, "resending %s->%s: %s recovery %d try# %d\n",
3099                                libcfs_nid2str(msg->msg_src_nid_param),
3100                                libcfs_id2str(msg->msg_target),
3101                                lnet_msgtyp2str(msg->msg_type),
3102                                msg->msg_recovery,
3103                                msg->msg_retry_count);
3104                         rc = lnet_send(msg->msg_src_nid_param, msg,
3105                                        msg->msg_rtr_nid_param);
3106                         if (rc) {
3107                                 CERROR("Error sending %s to %s: %d\n",
3108                                        lnet_msgtyp2str(msg->msg_type),
3109                                        libcfs_id2str(msg->msg_target), rc);
3110                                 msg->msg_no_resend = true;
3111                                 lnet_finalize(msg, rc);
3112                         }
3113                         lnet_net_lock(cpt);
3114                         if (!rc)
3115                                 the_lnet.ln_counters[cpt]->lct_health.lch_resend_count++;
3116                 }
3117         }
3118 }
3119
3120 static void
3121 lnet_resend_pending_msgs(void)
3122 {
3123         int i;
3124
3125         cfs_cpt_for_each(i, lnet_cpt_table()) {
3126                 lnet_net_lock(i);
3127                 lnet_resend_pending_msgs_locked(the_lnet.ln_mt_resendqs[i], i);
3128                 lnet_net_unlock(i);
3129         }
3130 }
3131
3132 /* called with cpt and ni_lock held */
3133 static void
3134 lnet_unlink_ni_recovery_mdh_locked(struct lnet_ni *ni, int cpt, bool force)
3135 {
3136         struct lnet_handle_md recovery_mdh;
3137
3138         LNetInvalidateMDHandle(&recovery_mdh);
3139
3140         if (ni->ni_recovery_state & LNET_NI_RECOVERY_PENDING ||
3141             force) {
3142                 recovery_mdh = ni->ni_ping_mdh;
3143                 LNetInvalidateMDHandle(&ni->ni_ping_mdh);
3144         }
3145         lnet_ni_unlock(ni);
3146         lnet_net_unlock(cpt);
3147         if (!LNetMDHandleIsInvalid(recovery_mdh))
3148                 LNetMDUnlink(recovery_mdh);
3149         lnet_net_lock(cpt);
3150         lnet_ni_lock(ni);
3151 }
3152
3153 static void
3154 lnet_recover_local_nis(void)
3155 {
3156         struct lnet_mt_event_info *ev_info;
3157         LIST_HEAD(processed_list);
3158         LIST_HEAD(local_queue);
3159         struct lnet_handle_md mdh;
3160         struct lnet_ni *tmp;
3161         struct lnet_ni *ni;
3162         lnet_nid_t nid;
3163         int healthv;
3164         int rc;
3165
3166         /*
3167          * splice the recovery queue on a local queue. We will iterate
3168          * through the local queue and update it as needed. Once we're
3169          * done with the traversal, we'll splice the local queue back on
3170          * the head of the ln_mt_localNIRecovq. Any newly added local NIs
3171          * will be traversed in the next iteration.
3172          */
3173         lnet_net_lock(0);
3174         list_splice_init(&the_lnet.ln_mt_localNIRecovq,
3175                          &local_queue);
3176         lnet_net_unlock(0);
3177
3178         list_for_each_entry_safe(ni, tmp, &local_queue, ni_recovery) {
3179                 /*
3180                  * if an NI is being deleted or it is now healthy, there
3181                  * is no need to keep it around in the recovery queue.
3182                  * The monitor thread is the only thread responsible for
3183                  * removing the NI from the recovery queue.
3184                  * Multiple threads can be adding NIs to the recovery
3185                  * queue.
3186                  */
3187                 healthv = atomic_read(&ni->ni_healthv);
3188
3189                 lnet_net_lock(0);
3190                 lnet_ni_lock(ni);
3191                 if (ni->ni_state != LNET_NI_STATE_ACTIVE ||
3192                     healthv == LNET_MAX_HEALTH_VALUE) {
3193                         list_del_init(&ni->ni_recovery);
3194                         lnet_unlink_ni_recovery_mdh_locked(ni, 0, false);
3195                         lnet_ni_unlock(ni);
3196                         lnet_ni_decref_locked(ni, 0);
3197                         lnet_net_unlock(0);
3198                         continue;
3199                 }
3200
3201                 /*
3202                  * if the local NI failed recovery we must unlink the md.
3203                  * But we want to keep the local_ni on the recovery queue
3204                  * so we can continue the attempts to recover it.
3205                  */
3206                 if (ni->ni_recovery_state & LNET_NI_RECOVERY_FAILED) {
3207                         lnet_unlink_ni_recovery_mdh_locked(ni, 0, true);
3208                         ni->ni_recovery_state &= ~LNET_NI_RECOVERY_FAILED;
3209                 }
3210
3211                 lnet_ni_unlock(ni);
3212                 lnet_net_unlock(0);
3213
3214
3215                 CDEBUG(D_NET, "attempting to recover local ni: %s\n",
3216                        libcfs_nid2str(ni->ni_nid));
3217
3218                 lnet_ni_lock(ni);
3219                 if (!(ni->ni_recovery_state & LNET_NI_RECOVERY_PENDING)) {
3220                         ni->ni_recovery_state |= LNET_NI_RECOVERY_PENDING;
3221                         lnet_ni_unlock(ni);
3222
3223                         LIBCFS_ALLOC(ev_info, sizeof(*ev_info));
3224                         if (!ev_info) {
3225                                 CERROR("out of memory. Can't recover %s\n",
3226                                        libcfs_nid2str(ni->ni_nid));
3227                                 lnet_ni_lock(ni);
3228                                 ni->ni_recovery_state &=
3229                                   ~LNET_NI_RECOVERY_PENDING;
3230                                 lnet_ni_unlock(ni);
3231                                 continue;
3232                         }
3233
3234                         mdh = ni->ni_ping_mdh;
3235                         /*
3236                          * Invalidate the ni mdh in case it's deleted.
3237                          * We'll unlink the mdh in this case below.
3238                          */
3239                         LNetInvalidateMDHandle(&ni->ni_ping_mdh);
3240                         nid = ni->ni_nid;
3241
3242                         /*
3243                          * remove the NI from the local queue and drop the
3244                          * reference count to it while we're recovering
3245                          * it. The reason for that, is that the NI could
3246                          * be deleted, and the way the code is structured
3247                          * is if we don't drop the NI, then the deletion
3248                          * code will enter a loop waiting for the
3249                          * reference count to be removed while holding the
3250                          * ln_mutex_lock(). When we look up the peer to
3251                          * send to in lnet_select_pathway() we will try to
3252                          * lock the ln_mutex_lock() as well, leading to
3253                          * a deadlock. By dropping the refcount and
3254                          * removing it from the list, we allow for the NI
3255                          * to be removed, then we use the cached NID to
3256                          * look it up again. If it's gone, then we just
3257                          * continue examining the rest of the queue.
3258                          */
3259                         lnet_net_lock(0);
3260                         list_del_init(&ni->ni_recovery);
3261                         lnet_ni_decref_locked(ni, 0);
3262                         lnet_net_unlock(0);
3263
3264                         ev_info->mt_type = MT_TYPE_LOCAL_NI;
3265                         ev_info->mt_nid = nid;
3266                         rc = lnet_send_ping(nid, &mdh, LNET_INTERFACES_MIN,
3267                                             ev_info, the_lnet.ln_mt_handler,
3268                                             true);
3269                         /* lookup the nid again */
3270                         lnet_net_lock(0);
3271                         ni = lnet_nid2ni_locked(nid, 0);
3272                         if (!ni) {
3273                                 /*
3274                                  * the NI has been deleted when we dropped
3275                                  * the ref count
3276                                  */
3277                                 lnet_net_unlock(0);
3278                                 LNetMDUnlink(mdh);
3279                                 continue;
3280                         }
3281                         /*
3282                          * Same note as in lnet_recover_peer_nis(). When
3283                          * we're sending the ping, the NI is free to be
3284                          * deleted or manipulated. By this point it
3285                          * could've been added back on the recovery queue,
3286                          * and a refcount taken on it.
3287                          * So we can't just add it blindly again or we'll
3288                          * corrupt the queue. We must check under lock if
3289                          * it's not on any list and if not then add it
3290                          * to the processed list, which will eventually be
3291                          * spliced back on to the recovery queue.
3292                          */
3293                         ni->ni_ping_mdh = mdh;
3294                         if (list_empty(&ni->ni_recovery)) {
3295                                 list_add_tail(&ni->ni_recovery, &processed_list);
3296                                 lnet_ni_addref_locked(ni, 0);
3297                         }
3298                         lnet_net_unlock(0);
3299
3300                         lnet_ni_lock(ni);
3301                         if (rc)
3302                                 ni->ni_recovery_state &= ~LNET_NI_RECOVERY_PENDING;
3303                 }
3304                 lnet_ni_unlock(ni);
3305         }
3306
3307         /*
3308          * put back the remaining NIs on the ln_mt_localNIRecovq to be
3309          * reexamined in the next iteration.
3310          */
3311         list_splice_init(&processed_list, &local_queue);
3312         lnet_net_lock(0);
3313         list_splice(&local_queue, &the_lnet.ln_mt_localNIRecovq);
3314         lnet_net_unlock(0);
3315 }
3316
3317 static int
3318 lnet_resendqs_create(void)
3319 {
3320         struct list_head **resendqs;
3321         resendqs = lnet_create_array_of_queues();
3322
3323         if (!resendqs)
3324                 return -ENOMEM;
3325
3326         lnet_net_lock(LNET_LOCK_EX);
3327         the_lnet.ln_mt_resendqs = resendqs;
3328         lnet_net_unlock(LNET_LOCK_EX);
3329
3330         return 0;
3331 }
3332
3333 static void
3334 lnet_clean_local_ni_recoveryq(void)
3335 {
3336         struct lnet_ni *ni;
3337
3338         /* This is only called when the monitor thread has stopped */
3339         lnet_net_lock(0);
3340
3341         while (!list_empty(&the_lnet.ln_mt_localNIRecovq)) {
3342                 ni = list_entry(the_lnet.ln_mt_localNIRecovq.next,
3343                                 struct lnet_ni, ni_recovery);
3344                 list_del_init(&ni->ni_recovery);
3345                 lnet_ni_lock(ni);
3346                 lnet_unlink_ni_recovery_mdh_locked(ni, 0, true);
3347                 lnet_ni_unlock(ni);
3348                 lnet_ni_decref_locked(ni, 0);
3349         }
3350
3351         lnet_net_unlock(0);
3352 }
3353
3354 static void
3355 lnet_unlink_lpni_recovery_mdh_locked(struct lnet_peer_ni *lpni, int cpt,
3356                                      bool force)
3357 {
3358         struct lnet_handle_md recovery_mdh;
3359
3360         LNetInvalidateMDHandle(&recovery_mdh);
3361
3362         if (lpni->lpni_state & LNET_PEER_NI_RECOVERY_PENDING || force) {
3363                 recovery_mdh = lpni->lpni_recovery_ping_mdh;
3364                 LNetInvalidateMDHandle(&lpni->lpni_recovery_ping_mdh);
3365         }
3366         spin_unlock(&lpni->lpni_lock);
3367         lnet_net_unlock(cpt);
3368         if (!LNetMDHandleIsInvalid(recovery_mdh))
3369                 LNetMDUnlink(recovery_mdh);
3370         lnet_net_lock(cpt);
3371         spin_lock(&lpni->lpni_lock);
3372 }
3373
3374 static void
3375 lnet_clean_peer_ni_recoveryq(void)
3376 {
3377         struct lnet_peer_ni *lpni, *tmp;
3378
3379         lnet_net_lock(LNET_LOCK_EX);
3380
3381         list_for_each_entry_safe(lpni, tmp, &the_lnet.ln_mt_peerNIRecovq,
3382                                  lpni_recovery) {
3383                 list_del_init(&lpni->lpni_recovery);
3384                 spin_lock(&lpni->lpni_lock);
3385                 lnet_unlink_lpni_recovery_mdh_locked(lpni, LNET_LOCK_EX, true);
3386                 spin_unlock(&lpni->lpni_lock);
3387                 lnet_peer_ni_decref_locked(lpni);
3388         }
3389
3390         lnet_net_unlock(LNET_LOCK_EX);
3391 }
3392
3393 static void
3394 lnet_clean_resendqs(void)
3395 {
3396         struct lnet_msg *msg, *tmp;
3397         LIST_HEAD(msgs);
3398         int i;
3399
3400         cfs_cpt_for_each(i, lnet_cpt_table()) {
3401                 lnet_net_lock(i);
3402                 list_splice_init(the_lnet.ln_mt_resendqs[i], &msgs);
3403                 lnet_net_unlock(i);
3404                 list_for_each_entry_safe(msg, tmp, &msgs, msg_list) {
3405                         list_del_init(&msg->msg_list);
3406                         msg->msg_no_resend = true;
3407                         lnet_finalize(msg, -ESHUTDOWN);
3408                 }
3409         }
3410
3411         cfs_percpt_free(the_lnet.ln_mt_resendqs);
3412 }
3413
3414 static void
3415 lnet_recover_peer_nis(void)
3416 {
3417         struct lnet_mt_event_info *ev_info;
3418         LIST_HEAD(processed_list);
3419         LIST_HEAD(local_queue);
3420         struct lnet_handle_md mdh;
3421         struct lnet_peer_ni *lpni;
3422         struct lnet_peer_ni *tmp;
3423         lnet_nid_t nid;
3424         int healthv;
3425         int rc;
3426
3427         /*
3428          * Always use cpt 0 for locking across all interactions with
3429          * ln_mt_peerNIRecovq
3430          */
3431         lnet_net_lock(0);
3432         list_splice_init(&the_lnet.ln_mt_peerNIRecovq,
3433                          &local_queue);
3434         lnet_net_unlock(0);
3435
3436         list_for_each_entry_safe(lpni, tmp, &local_queue,
3437                                  lpni_recovery) {
3438                 /*
3439                  * The same protection strategy is used here as is in the
3440                  * local recovery case.
3441                  */
3442                 lnet_net_lock(0);
3443                 healthv = atomic_read(&lpni->lpni_healthv);
3444                 spin_lock(&lpni->lpni_lock);
3445                 if (lpni->lpni_state & LNET_PEER_NI_DELETING ||
3446                     healthv == LNET_MAX_HEALTH_VALUE) {
3447                         list_del_init(&lpni->lpni_recovery);
3448                         lnet_unlink_lpni_recovery_mdh_locked(lpni, 0, false);
3449                         spin_unlock(&lpni->lpni_lock);
3450                         lnet_peer_ni_decref_locked(lpni);
3451                         lnet_net_unlock(0);
3452                         continue;
3453                 }
3454
3455                 /*
3456                  * If the peer NI has failed recovery we must unlink the
3457                  * md. But we want to keep the peer ni on the recovery
3458                  * queue so we can try to continue recovering it
3459                  */
3460                 if (lpni->lpni_state & LNET_PEER_NI_RECOVERY_FAILED) {
3461                         lnet_unlink_lpni_recovery_mdh_locked(lpni, 0, true);
3462                         lpni->lpni_state &= ~LNET_PEER_NI_RECOVERY_FAILED;
3463                 }
3464
3465                 spin_unlock(&lpni->lpni_lock);
3466                 lnet_net_unlock(0);
3467
3468                 /*
3469                  * NOTE: we're racing with peer deletion from user space.
3470                  * It's possible that a peer is deleted after we check its
3471                  * state. In this case the recovery can create a new peer
3472                  */
3473                 spin_lock(&lpni->lpni_lock);
3474                 if (!(lpni->lpni_state & LNET_PEER_NI_RECOVERY_PENDING) &&
3475                     !(lpni->lpni_state & LNET_PEER_NI_DELETING)) {
3476                         lpni->lpni_state |= LNET_PEER_NI_RECOVERY_PENDING;
3477                         spin_unlock(&lpni->lpni_lock);
3478
3479                         LIBCFS_ALLOC(ev_info, sizeof(*ev_info));
3480                         if (!ev_info) {
3481                                 CERROR("out of memory. Can't recover %s\n",
3482                                        libcfs_nid2str(lpni->lpni_nid));
3483                                 spin_lock(&lpni->lpni_lock);
3484                                 lpni->lpni_state &= ~LNET_PEER_NI_RECOVERY_PENDING;
3485                                 spin_unlock(&lpni->lpni_lock);
3486                                 continue;
3487                         }
3488
3489                         /* look at the comments in lnet_recover_local_nis() */
3490                         mdh = lpni->lpni_recovery_ping_mdh;
3491                         LNetInvalidateMDHandle(&lpni->lpni_recovery_ping_mdh);
3492                         nid = lpni->lpni_nid;
3493                         lnet_net_lock(0);
3494                         list_del_init(&lpni->lpni_recovery);
3495                         lnet_peer_ni_decref_locked(lpni);
3496                         lnet_net_unlock(0);
3497
3498                         ev_info->mt_type = MT_TYPE_PEER_NI;
3499                         ev_info->mt_nid = nid;
3500                         rc = lnet_send_ping(nid, &mdh, LNET_INTERFACES_MIN,
3501                                             ev_info, the_lnet.ln_mt_handler,
3502                                             true);
3503                         lnet_net_lock(0);
3504                         /*
3505                          * lnet_find_peer_ni_locked() grabs a refcount for
3506                          * us. No need to take it explicitly.
3507                          */
3508                         lpni = lnet_find_peer_ni_locked(nid);
3509                         if (!lpni) {
3510                                 lnet_net_unlock(0);
3511                                 LNetMDUnlink(mdh);
3512                                 continue;
3513                         }
3514
3515                         lpni->lpni_recovery_ping_mdh = mdh;
3516                         /*
3517                          * While we're unlocked the lpni could've been
3518                          * readded on the recovery queue. In this case we
3519                          * don't need to add it to the local queue, since
3520                          * it's already on there and the thread that added
3521                          * it would've incremented the refcount on the
3522                          * peer, which means we need to decref the refcount
3523                          * that was implicitly grabbed by find_peer_ni_locked.
3524                          * Otherwise, if the lpni is still not on
3525                          * the recovery queue, then we'll add it to the
3526                          * processed list.
3527                          */
3528                         if (list_empty(&lpni->lpni_recovery))
3529                                 list_add_tail(&lpni->lpni_recovery, &processed_list);
3530                         else
3531                                 lnet_peer_ni_decref_locked(lpni);
3532                         lnet_net_unlock(0);
3533
3534                         spin_lock(&lpni->lpni_lock);
3535                         if (rc)
3536                                 lpni->lpni_state &= ~LNET_PEER_NI_RECOVERY_PENDING;
3537                 }
3538                 spin_unlock(&lpni->lpni_lock);
3539         }
3540
3541         list_splice_init(&processed_list, &local_queue);
3542         lnet_net_lock(0);
3543         list_splice(&local_queue, &the_lnet.ln_mt_peerNIRecovq);
3544         lnet_net_unlock(0);
3545 }
3546
3547 static int
3548 lnet_monitor_thread(void *arg)
3549 {
3550         time64_t recovery_timeout = 0;
3551         time64_t rsp_timeout = 0;
3552         int interval;
3553         time64_t now;
3554
3555         wait_for_completion(&the_lnet.ln_started);
3556         /*
3557          * The monitor thread takes care of the following:
3558          *  1. Checks the aliveness of routers
3559          *  2. Checks if there are messages on the resend queue to resend
3560          *     them.
3561          *  3. Check if there are any NIs on the local recovery queue and
3562          *     pings them
3563          *  4. Checks if there are any NIs on the remote recovery queue
3564          *     and pings them.
3565          */
3566         while (the_lnet.ln_mt_state == LNET_MT_STATE_RUNNING) {
3567                 now = ktime_get_real_seconds();
3568
3569                 if (lnet_router_checker_active())
3570                         lnet_check_routers();
3571
3572                 lnet_resend_pending_msgs();
3573
3574                 if (now >= rsp_timeout) {
3575                         lnet_finalize_expired_responses();
3576                         rsp_timeout = now + (lnet_transaction_timeout / 2);
3577                 }
3578
3579                 if (now >= recovery_timeout) {
3580                         lnet_recover_local_nis();
3581                         lnet_recover_peer_nis();
3582                         recovery_timeout = now + lnet_recovery_interval;
3583                 }
3584
3585                 /*
3586                  * TODO do we need to check if we should sleep without
3587                  * timeout?  Technically, an active system will always
3588                  * have messages in flight so this check will always
3589                  * evaluate to false. And on an idle system do we care
3590                  * if we wake up every 1 second? Although, we've seen
3591                  * cases where we get a complaint that an idle thread
3592                  * is waking up unnecessarily.
3593                  *
3594                  * Take into account the current net_count when you wake
3595                  * up for alive router checking, since we need to check
3596                  * possibly as many networks as we have configured.
3597                  */
3598                 interval = min(lnet_recovery_interval,
3599                                min((unsigned int) alive_router_check_interval /
3600                                         lnet_current_net_count,
3601                                    lnet_transaction_timeout / 2));
3602                 wait_for_completion_interruptible_timeout(
3603                         &the_lnet.ln_mt_wait_complete,
3604                         cfs_time_seconds(interval));
3605                 /* Must re-init the completion before testing anything,
3606                  * including ln_mt_state.
3607                  */
3608                 reinit_completion(&the_lnet.ln_mt_wait_complete);
3609         }
3610
3611         /* Shutting down */
3612         lnet_net_lock(LNET_LOCK_EX);
3613         the_lnet.ln_mt_state = LNET_MT_STATE_SHUTDOWN;
3614         lnet_net_unlock(LNET_LOCK_EX);
3615
3616         /* signal that the monitor thread is exiting */
3617         up(&the_lnet.ln_mt_signal);
3618
3619         return 0;
3620 }
3621
3622 /*
3623  * lnet_send_ping
3624  * Sends a ping.
3625  * Returns == 0 if success
3626  * Returns > 0 if LNetMDBind or prior fails
3627  * Returns < 0 if LNetGet fails
3628  */
3629 int
3630 lnet_send_ping(lnet_nid_t dest_nid,
3631                struct lnet_handle_md *mdh, int nnis,
3632                void *user_data, lnet_handler_t handler, bool recovery)
3633 {
3634         struct lnet_md md = { NULL };
3635         struct lnet_process_id id;
3636         struct lnet_ping_buffer *pbuf;
3637         int rc;
3638
3639         if (dest_nid == LNET_NID_ANY) {
3640                 rc = -EHOSTUNREACH;
3641                 goto fail_error;
3642         }
3643
3644         pbuf = lnet_ping_buffer_alloc(nnis, GFP_NOFS);
3645         if (!pbuf) {
3646                 rc = ENOMEM;
3647                 goto fail_error;
3648         }
3649
3650         /* initialize md content */
3651         md.start     = &pbuf->pb_info;
3652         md.length    = LNET_PING_INFO_SIZE(nnis);
3653         md.threshold = 2; /* GET/REPLY */
3654         md.max_size  = 0;
3655         md.options   = LNET_MD_TRUNCATE | LNET_MD_TRACK_RESPONSE;
3656         md.user_ptr  = user_data;
3657         md.handler   = handler;
3658
3659         rc = LNetMDBind(&md, LNET_UNLINK, mdh);
3660         if (rc) {
3661                 lnet_ping_buffer_decref(pbuf);
3662                 CERROR("Can't bind MD: %d\n", rc);
3663                 rc = -rc; /* change the rc to positive */
3664                 goto fail_error;
3665         }
3666         id.pid = LNET_PID_LUSTRE;
3667         id.nid = dest_nid;
3668
3669         rc = LNetGet(LNET_NID_ANY, *mdh, id,
3670                      LNET_RESERVED_PORTAL,
3671                      LNET_PROTO_PING_MATCHBITS, 0, recovery);
3672
3673         if (rc)
3674                 goto fail_unlink_md;
3675
3676         return 0;
3677
3678 fail_unlink_md:
3679         LNetMDUnlink(*mdh);
3680         LNetInvalidateMDHandle(mdh);
3681 fail_error:
3682         return rc;
3683 }
3684
3685 static void
3686 lnet_handle_recovery_reply(struct lnet_mt_event_info *ev_info,
3687                            int status, bool send, bool unlink_event)
3688 {
3689         lnet_nid_t nid = ev_info->mt_nid;
3690
3691         if (ev_info->mt_type == MT_TYPE_LOCAL_NI) {
3692                 struct lnet_ni *ni;
3693
3694                 lnet_net_lock(0);
3695                 ni = lnet_nid2ni_locked(nid, 0);
3696                 if (!ni) {
3697                         lnet_net_unlock(0);
3698                         return;
3699                 }
3700                 lnet_ni_lock(ni);
3701                 if (!send || (send && status != 0))
3702                         ni->ni_recovery_state &= ~LNET_NI_RECOVERY_PENDING;
3703                 if (status)
3704                         ni->ni_recovery_state |= LNET_NI_RECOVERY_FAILED;
3705                 lnet_ni_unlock(ni);
3706                 lnet_net_unlock(0);
3707
3708                 if (status != 0) {
3709                         CERROR("local NI (%s) recovery failed with %d\n",
3710                                libcfs_nid2str(nid), status);
3711                         return;
3712                 }
3713                 /*
3714                  * need to increment healthv for the ni here, because in
3715                  * the lnet_finalize() path we don't have access to this
3716                  * NI. And in order to get access to it, we'll need to
3717                  * carry forward too much information.
3718                  * In the peer case, it'll naturally be incremented
3719                  */
3720                 if (!unlink_event)
3721                         lnet_inc_healthv(&ni->ni_healthv,
3722                                          lnet_health_sensitivity);
3723         } else {
3724                 struct lnet_peer_ni *lpni;
3725                 int cpt;
3726
3727                 cpt = lnet_net_lock_current();
3728                 lpni = lnet_find_peer_ni_locked(nid);
3729                 if (!lpni) {
3730                         lnet_net_unlock(cpt);
3731                         return;
3732                 }
3733                 spin_lock(&lpni->lpni_lock);
3734                 if (!send || (send && status != 0))
3735                         lpni->lpni_state &= ~LNET_PEER_NI_RECOVERY_PENDING;
3736                 if (status)
3737                         lpni->lpni_state |= LNET_PEER_NI_RECOVERY_FAILED;
3738                 spin_unlock(&lpni->lpni_lock);
3739                 lnet_peer_ni_decref_locked(lpni);
3740                 lnet_net_unlock(cpt);
3741
3742                 if (status != 0)
3743                         CERROR("peer NI (%s) recovery failed with %d\n",
3744                                libcfs_nid2str(nid), status);
3745         }
3746 }
3747
3748 void
3749 lnet_mt_event_handler(struct lnet_event *event)
3750 {
3751         struct lnet_mt_event_info *ev_info = event->md_user_ptr;
3752         struct lnet_ping_buffer *pbuf;
3753
3754         /* TODO: remove assert */
3755         LASSERT(event->type == LNET_EVENT_REPLY ||
3756                 event->type == LNET_EVENT_SEND ||
3757                 event->type == LNET_EVENT_UNLINK);
3758
3759         CDEBUG(D_NET, "Received event: %d status: %d\n", event->type,
3760                event->status);
3761
3762         switch (event->type) {
3763         case LNET_EVENT_UNLINK:
3764                 CDEBUG(D_NET, "%s recovery ping unlinked\n",
3765                        libcfs_nid2str(ev_info->mt_nid));
3766                 /* fallthrough */
3767         case LNET_EVENT_REPLY:
3768                 lnet_handle_recovery_reply(ev_info, event->status, false,
3769                                            event->type == LNET_EVENT_UNLINK);
3770                 break;
3771         case LNET_EVENT_SEND:
3772                 CDEBUG(D_NET, "%s recovery message sent %s:%d\n",
3773                                libcfs_nid2str(ev_info->mt_nid),
3774                                (event->status) ? "unsuccessfully" :
3775                                "successfully", event->status);
3776                 lnet_handle_recovery_reply(ev_info, event->status, true, false);
3777                 break;
3778         default:
3779                 CERROR("Unexpected event: %d\n", event->type);
3780                 break;
3781         }
3782         if (event->unlinked) {
3783                 LIBCFS_FREE(ev_info, sizeof(*ev_info));
3784                 pbuf = LNET_PING_INFO_TO_BUFFER(event->md_start);
3785                 lnet_ping_buffer_decref(pbuf);
3786         }
3787 }
3788
3789 static int
3790 lnet_rsp_tracker_create(void)
3791 {
3792         struct list_head **rstqs;
3793         rstqs = lnet_create_array_of_queues();
3794
3795         if (!rstqs)
3796                 return -ENOMEM;
3797
3798         the_lnet.ln_mt_rstq = rstqs;
3799
3800         return 0;
3801 }
3802
3803 static void
3804 lnet_rsp_tracker_clean(void)
3805 {
3806         lnet_finalize_expired_responses();
3807
3808         cfs_percpt_free(the_lnet.ln_mt_rstq);
3809         the_lnet.ln_mt_rstq = NULL;
3810 }
3811
3812 int lnet_monitor_thr_start(void)
3813 {
3814         int rc = 0;
3815         struct task_struct *task;
3816
3817         if (the_lnet.ln_mt_state != LNET_MT_STATE_SHUTDOWN)
3818                 return -EALREADY;
3819
3820         rc = lnet_resendqs_create();
3821         if (rc)
3822                 return rc;
3823
3824         rc = lnet_rsp_tracker_create();
3825         if (rc)
3826                 goto clean_queues;
3827
3828         sema_init(&the_lnet.ln_mt_signal, 0);
3829
3830         lnet_net_lock(LNET_LOCK_EX);
3831         the_lnet.ln_mt_state = LNET_MT_STATE_RUNNING;
3832         lnet_net_unlock(LNET_LOCK_EX);
3833         task = kthread_run(lnet_monitor_thread, NULL, "monitor_thread");
3834         if (IS_ERR(task)) {
3835                 rc = PTR_ERR(task);
3836                 CERROR("Can't start monitor thread: %d\n", rc);
3837                 goto clean_thread;
3838         }
3839
3840         return 0;
3841
3842 clean_thread:
3843         lnet_net_lock(LNET_LOCK_EX);
3844         the_lnet.ln_mt_state = LNET_MT_STATE_STOPPING;
3845         lnet_net_unlock(LNET_LOCK_EX);
3846         /* block until event callback signals exit */
3847         down(&the_lnet.ln_mt_signal);
3848         /* clean up */
3849         lnet_net_lock(LNET_LOCK_EX);
3850         the_lnet.ln_mt_state = LNET_MT_STATE_SHUTDOWN;
3851         lnet_net_unlock(LNET_LOCK_EX);
3852         lnet_rsp_tracker_clean();
3853         lnet_clean_local_ni_recoveryq();
3854         lnet_clean_peer_ni_recoveryq();
3855         lnet_clean_resendqs();
3856         the_lnet.ln_mt_handler = NULL;
3857         return rc;
3858 clean_queues:
3859         lnet_rsp_tracker_clean();
3860         lnet_clean_local_ni_recoveryq();
3861         lnet_clean_peer_ni_recoveryq();
3862         lnet_clean_resendqs();
3863         return rc;
3864 }
3865
3866 void lnet_monitor_thr_stop(void)
3867 {
3868         if (the_lnet.ln_mt_state == LNET_MT_STATE_SHUTDOWN)
3869                 return;
3870
3871         LASSERT(the_lnet.ln_mt_state == LNET_MT_STATE_RUNNING);
3872         lnet_net_lock(LNET_LOCK_EX);
3873         the_lnet.ln_mt_state = LNET_MT_STATE_STOPPING;
3874         lnet_net_unlock(LNET_LOCK_EX);
3875
3876         /* tell the monitor thread that we're shutting down */
3877         complete(&the_lnet.ln_mt_wait_complete);
3878
3879         /* block until monitor thread signals that it's done */
3880         down(&the_lnet.ln_mt_signal);
3881         LASSERT(the_lnet.ln_mt_state == LNET_MT_STATE_SHUTDOWN);
3882
3883         /* perform cleanup tasks */
3884         lnet_rsp_tracker_clean();
3885         lnet_clean_local_ni_recoveryq();
3886         lnet_clean_peer_ni_recoveryq();
3887         lnet_clean_resendqs();
3888 }
3889
3890 void
3891 lnet_drop_message(struct lnet_ni *ni, int cpt, void *private, unsigned int nob,
3892                   __u32 msg_type)
3893 {
3894         lnet_net_lock(cpt);
3895         lnet_incr_stats(&ni->ni_stats, msg_type, LNET_STATS_TYPE_DROP);
3896         the_lnet.ln_counters[cpt]->lct_common.lcc_drop_count++;
3897         the_lnet.ln_counters[cpt]->lct_common.lcc_drop_length += nob;
3898         lnet_net_unlock(cpt);
3899
3900         lnet_ni_recv(ni, private, NULL, 0, 0, 0, nob);
3901 }
3902
3903 static void
3904 lnet_recv_put(struct lnet_ni *ni, struct lnet_msg *msg)
3905 {
3906         struct lnet_hdr *hdr = &msg->msg_hdr;
3907
3908         if (msg->msg_wanted != 0)
3909                 lnet_setpayloadbuffer(msg);
3910
3911         lnet_build_msg_event(msg, LNET_EVENT_PUT);
3912
3913         /* Must I ACK?  If so I'll grab the ack_wmd out of the header and put
3914          * it back into the ACK during lnet_finalize() */
3915         msg->msg_ack = (!lnet_is_wire_handle_none(&hdr->msg.put.ack_wmd) &&
3916                         (msg->msg_md->md_options & LNET_MD_ACK_DISABLE) == 0);
3917
3918         lnet_ni_recv(ni, msg->msg_private, msg, msg->msg_rx_delayed,
3919                      msg->msg_offset, msg->msg_wanted, hdr->payload_length);
3920 }
3921
3922 static int
3923 lnet_parse_put(struct lnet_ni *ni, struct lnet_msg *msg)
3924 {
3925         struct lnet_hdr         *hdr = &msg->msg_hdr;
3926         struct lnet_match_info  info;
3927         int                     rc;
3928         bool                    ready_delay;
3929
3930         /* Convert put fields to host byte order */
3931         hdr->msg.put.match_bits = le64_to_cpu(hdr->msg.put.match_bits);
3932         hdr->msg.put.ptl_index  = le32_to_cpu(hdr->msg.put.ptl_index);
3933         hdr->msg.put.offset     = le32_to_cpu(hdr->msg.put.offset);
3934
3935         /* Primary peer NID. */
3936         info.mi_id.nid  = msg->msg_initiator;
3937         info.mi_id.pid  = hdr->src_pid;
3938         info.mi_opc     = LNET_MD_OP_PUT;
3939         info.mi_portal  = hdr->msg.put.ptl_index;
3940         info.mi_rlength = hdr->payload_length;
3941         info.mi_roffset = hdr->msg.put.offset;
3942         info.mi_mbits   = hdr->msg.put.match_bits;
3943         info.mi_cpt     = lnet_cpt_of_nid(msg->msg_initiator, ni);
3944
3945         msg->msg_rx_ready_delay = ni->ni_net->net_lnd->lnd_eager_recv == NULL;
3946         ready_delay = msg->msg_rx_ready_delay;
3947
3948  again:
3949         rc = lnet_ptl_match_md(&info, msg);
3950         switch (rc) {
3951         default:
3952                 LBUG();
3953
3954         case LNET_MATCHMD_OK:
3955                 lnet_recv_put(ni, msg);
3956                 return 0;
3957
3958         case LNET_MATCHMD_NONE:
3959                 if (ready_delay)
3960                         /* no eager_recv or has already called it, should
3961                          * have been attached on delayed list */
3962                         return 0;
3963
3964                 rc = lnet_ni_eager_recv(ni, msg);
3965                 if (rc == 0) {
3966                         ready_delay = true;
3967                         goto again;
3968                 }
3969                 /* fall through */
3970
3971         case LNET_MATCHMD_DROP:
3972                 CNETERR("Dropping PUT from %s portal %d match %llu"
3973                         " offset %d length %d: %d\n",
3974                         libcfs_id2str(info.mi_id), info.mi_portal,
3975                         info.mi_mbits, info.mi_roffset, info.mi_rlength, rc);
3976
3977                 return -ENOENT; /* -ve: OK but no match */
3978         }
3979 }
3980
3981 static int
3982 lnet_parse_get(struct lnet_ni *ni, struct lnet_msg *msg, int rdma_get)
3983 {
3984         struct lnet_match_info info;
3985         struct lnet_hdr *hdr = &msg->msg_hdr;
3986         struct lnet_process_id source_id;
3987         struct lnet_handle_wire reply_wmd;
3988         int rc;
3989
3990         /* Convert get fields to host byte order */
3991         hdr->msg.get.match_bits   = le64_to_cpu(hdr->msg.get.match_bits);
3992         hdr->msg.get.ptl_index    = le32_to_cpu(hdr->msg.get.ptl_index);
3993         hdr->msg.get.sink_length  = le32_to_cpu(hdr->msg.get.sink_length);
3994         hdr->msg.get.src_offset   = le32_to_cpu(hdr->msg.get.src_offset);
3995
3996         source_id.nid = hdr->src_nid;
3997         source_id.pid = hdr->src_pid;
3998         /* Primary peer NID */
3999         info.mi_id.nid  = msg->msg_initiator;
4000         info.mi_id.pid  = hdr->src_pid;
4001         info.mi_opc     = LNET_MD_OP_GET;
4002         info.mi_portal  = hdr->msg.get.ptl_index;
4003         info.mi_rlength = hdr->msg.get.sink_length;
4004         info.mi_roffset = hdr->msg.get.src_offset;
4005         info.mi_mbits   = hdr->msg.get.match_bits;
4006         info.mi_cpt     = lnet_cpt_of_nid(msg->msg_initiator, ni);
4007
4008         rc = lnet_ptl_match_md(&info, msg);
4009         if (rc == LNET_MATCHMD_DROP) {
4010                 CNETERR("Dropping GET from %s portal %d match %llu"
4011                         " offset %d length %d\n",
4012                         libcfs_id2str(info.mi_id), info.mi_portal,
4013                         info.mi_mbits, info.mi_roffset, info.mi_rlength);
4014                 return -ENOENT; /* -ve: OK but no match */
4015         }
4016
4017         LASSERT(rc == LNET_MATCHMD_OK);
4018
4019         lnet_build_msg_event(msg, LNET_EVENT_GET);
4020
4021         reply_wmd = hdr->msg.get.return_wmd;
4022
4023         lnet_prep_send(msg, LNET_MSG_REPLY, source_id,
4024                        msg->msg_offset, msg->msg_wanted);
4025
4026         msg->msg_hdr.msg.reply.dst_wmd = reply_wmd;
4027
4028         if (rdma_get) {
4029                 /* The LND completes the REPLY from her recv procedure */
4030                 lnet_ni_recv(ni, msg->msg_private, msg, 0,
4031                              msg->msg_offset, msg->msg_len, msg->msg_len);
4032                 return 0;
4033         }
4034
4035         lnet_ni_recv(ni, msg->msg_private, NULL, 0, 0, 0, 0);
4036         msg->msg_receiving = 0;
4037
4038         rc = lnet_send(ni->ni_nid, msg, msg->msg_from);
4039         if (rc < 0) {
4040                 /* didn't get as far as lnet_ni_send() */
4041                 CERROR("%s: Unable to send REPLY for GET from %s: %d\n",
4042                        libcfs_nid2str(ni->ni_nid),
4043                        libcfs_id2str(info.mi_id), rc);
4044
4045                 lnet_finalize(msg, rc);
4046         }
4047
4048         return 0;
4049 }
4050
4051 static int
4052 lnet_parse_reply(struct lnet_ni *ni, struct lnet_msg *msg)
4053 {
4054         void *private = msg->msg_private;
4055         struct lnet_hdr *hdr = &msg->msg_hdr;
4056         struct lnet_process_id src = {0};
4057         struct lnet_libmd *md;
4058         unsigned int rlength;
4059         unsigned int mlength;
4060         int cpt;
4061
4062         cpt = lnet_cpt_of_cookie(hdr->msg.reply.dst_wmd.wh_object_cookie);
4063         lnet_res_lock(cpt);
4064
4065         src.nid = hdr->src_nid;
4066         src.pid = hdr->src_pid;
4067
4068         /* NB handles only looked up by creator (no flips) */
4069         md = lnet_wire_handle2md(&hdr->msg.reply.dst_wmd);
4070         if (md == NULL || md->md_threshold == 0 || md->md_me != NULL) {
4071                 CNETERR("%s: Dropping REPLY from %s for %s "
4072                         "MD %#llx.%#llx\n",
4073                         libcfs_nid2str(ni->ni_nid), libcfs_id2str(src),
4074                         (md == NULL) ? "invalid" : "inactive",
4075                         hdr->msg.reply.dst_wmd.wh_interface_cookie,
4076                         hdr->msg.reply.dst_wmd.wh_object_cookie);
4077                 if (md != NULL && md->md_me != NULL)
4078                         CERROR("REPLY MD also attached to portal %d\n",
4079                                md->md_me->me_portal);
4080
4081                 lnet_res_unlock(cpt);
4082                 return -ENOENT; /* -ve: OK but no match */
4083         }
4084
4085         LASSERT(md->md_offset == 0);
4086
4087         rlength = hdr->payload_length;
4088         mlength = min(rlength, md->md_length);
4089
4090         if (mlength < rlength &&
4091             (md->md_options & LNET_MD_TRUNCATE) == 0) {
4092                 CNETERR("%s: Dropping REPLY from %s length %d "
4093                         "for MD %#llx would overflow (%d)\n",
4094                         libcfs_nid2str(ni->ni_nid), libcfs_id2str(src),
4095                         rlength, hdr->msg.reply.dst_wmd.wh_object_cookie,
4096                         mlength);
4097                 lnet_res_unlock(cpt);
4098                 return -ENOENT; /* -ve: OK but no match */
4099         }
4100
4101         CDEBUG(D_NET, "%s: Reply from %s of length %d/%d into md %#llx\n",
4102                libcfs_nid2str(ni->ni_nid), libcfs_id2str(src),
4103                mlength, rlength, hdr->msg.reply.dst_wmd.wh_object_cookie);
4104
4105         lnet_msg_attach_md(msg, md, 0, mlength);
4106
4107         if (mlength != 0)
4108                 lnet_setpayloadbuffer(msg);
4109
4110         lnet_res_unlock(cpt);
4111
4112         lnet_build_msg_event(msg, LNET_EVENT_REPLY);
4113
4114         lnet_ni_recv(ni, private, msg, 0, 0, mlength, rlength);
4115         return 0;
4116 }
4117
4118 static int
4119 lnet_parse_ack(struct lnet_ni *ni, struct lnet_msg *msg)
4120 {
4121         struct lnet_hdr *hdr = &msg->msg_hdr;
4122         struct lnet_process_id src = {0};
4123         struct lnet_libmd *md;
4124         int cpt;
4125
4126         src.nid = hdr->src_nid;
4127         src.pid = hdr->src_pid;
4128
4129         /* Convert ack fields to host byte order */
4130         hdr->msg.ack.match_bits = le64_to_cpu(hdr->msg.ack.match_bits);
4131         hdr->msg.ack.mlength = le32_to_cpu(hdr->msg.ack.mlength);
4132
4133         cpt = lnet_cpt_of_cookie(hdr->msg.ack.dst_wmd.wh_object_cookie);
4134         lnet_res_lock(cpt);
4135
4136         /* NB handles only looked up by creator (no flips) */
4137         md = lnet_wire_handle2md(&hdr->msg.ack.dst_wmd);
4138         if (md == NULL || md->md_threshold == 0 || md->md_me != NULL) {
4139                 /* Don't moan; this is expected */
4140                 CDEBUG(D_NET,
4141                        "%s: Dropping ACK from %s to %s MD %#llx.%#llx\n",
4142                        libcfs_nid2str(ni->ni_nid), libcfs_id2str(src),
4143                        (md == NULL) ? "invalid" : "inactive",
4144                        hdr->msg.ack.dst_wmd.wh_interface_cookie,
4145                        hdr->msg.ack.dst_wmd.wh_object_cookie);
4146                 if (md != NULL && md->md_me != NULL)
4147                         CERROR("Source MD also attached to portal %d\n",
4148                                md->md_me->me_portal);
4149
4150                 lnet_res_unlock(cpt);
4151                 return -ENOENT;                  /* -ve! */
4152         }
4153
4154         CDEBUG(D_NET, "%s: ACK from %s into md %#llx\n",
4155                libcfs_nid2str(ni->ni_nid), libcfs_id2str(src),
4156                hdr->msg.ack.dst_wmd.wh_object_cookie);
4157
4158         lnet_msg_attach_md(msg, md, 0, 0);
4159
4160         lnet_res_unlock(cpt);
4161
4162         lnet_build_msg_event(msg, LNET_EVENT_ACK);
4163
4164         lnet_ni_recv(ni, msg->msg_private, msg, 0, 0, 0, msg->msg_len);
4165         return 0;
4166 }
4167
4168 /**
4169  * \retval LNET_CREDIT_OK       If \a msg is forwarded
4170  * \retval LNET_CREDIT_WAIT     If \a msg is blocked because w/o buffer
4171  * \retval -ve                  error code
4172  */
4173 int
4174 lnet_parse_forward_locked(struct lnet_ni *ni, struct lnet_msg *msg)
4175 {
4176         int     rc = 0;
4177
4178         if (!the_lnet.ln_routing)
4179                 return -ECANCELED;
4180
4181         if (msg->msg_rxpeer->lpni_rtrcredits <= 0 ||
4182             lnet_msg2bufpool(msg)->rbp_credits <= 0) {
4183                 if (ni->ni_net->net_lnd->lnd_eager_recv == NULL) {
4184                         msg->msg_rx_ready_delay = 1;
4185                 } else {
4186                         lnet_net_unlock(msg->msg_rx_cpt);
4187                         rc = lnet_ni_eager_recv(ni, msg);
4188                         lnet_net_lock(msg->msg_rx_cpt);
4189                 }
4190         }
4191
4192         if (rc == 0)
4193                 rc = lnet_post_routed_recv_locked(msg, 0);
4194         return rc;
4195 }
4196
4197 int
4198 lnet_parse_local(struct lnet_ni *ni, struct lnet_msg *msg)
4199 {
4200         int     rc;
4201
4202         switch (msg->msg_type) {
4203         case LNET_MSG_ACK:
4204                 rc = lnet_parse_ack(ni, msg);
4205                 break;
4206         case LNET_MSG_PUT:
4207                 rc = lnet_parse_put(ni, msg);
4208                 break;
4209         case LNET_MSG_GET:
4210                 rc = lnet_parse_get(ni, msg, msg->msg_rdma_get);
4211                 break;
4212         case LNET_MSG_REPLY:
4213                 rc = lnet_parse_reply(ni, msg);
4214                 break;
4215         default: /* prevent an unused label if !kernel */
4216                 LASSERT(0);
4217                 return -EPROTO;
4218         }
4219
4220         LASSERT(rc == 0 || rc == -ENOENT);
4221         return rc;
4222 }
4223
4224 char *
4225 lnet_msgtyp2str (int type)
4226 {
4227         switch (type) {
4228         case LNET_MSG_ACK:
4229                 return ("ACK");
4230         case LNET_MSG_PUT:
4231                 return ("PUT");
4232         case LNET_MSG_GET:
4233                 return ("GET");
4234         case LNET_MSG_REPLY:
4235                 return ("REPLY");
4236         case LNET_MSG_HELLO:
4237                 return ("HELLO");
4238         default:
4239                 return ("<UNKNOWN>");
4240         }
4241 }
4242
4243 int
4244 lnet_parse(struct lnet_ni *ni, struct lnet_hdr *hdr, lnet_nid_t from_nid,
4245            void *private, int rdma_req)
4246 {
4247         struct lnet_peer_ni *lpni;
4248         struct lnet_msg *msg;
4249         __u32 payload_length;
4250         lnet_pid_t dest_pid;
4251         lnet_nid_t dest_nid;
4252         lnet_nid_t src_nid;
4253         bool push = false;
4254         int for_me;
4255         __u32 type;
4256         int rc = 0;
4257         int cpt;
4258
4259         LASSERT (!in_interrupt ());
4260
4261         type = le32_to_cpu(hdr->type);
4262         src_nid = le64_to_cpu(hdr->src_nid);
4263         dest_nid = le64_to_cpu(hdr->dest_nid);
4264         dest_pid = le32_to_cpu(hdr->dest_pid);
4265         payload_length = le32_to_cpu(hdr->payload_length);
4266
4267         for_me = (ni->ni_nid == dest_nid);
4268         cpt = lnet_cpt_of_nid(from_nid, ni);
4269
4270         CDEBUG(D_NET, "TRACE: %s(%s) <- %s : %s - %s\n",
4271                 libcfs_nid2str(dest_nid),
4272                 libcfs_nid2str(ni->ni_nid),
4273                 libcfs_nid2str(src_nid),
4274                 lnet_msgtyp2str(type),
4275                 (for_me) ? "for me" : "routed");
4276
4277         switch (type) {
4278         case LNET_MSG_ACK:
4279         case LNET_MSG_GET:
4280                 if (payload_length > 0) {
4281                         CERROR("%s, src %s: bad %s payload %d (0 expected)\n",
4282                                libcfs_nid2str(from_nid),
4283                                libcfs_nid2str(src_nid),
4284                                lnet_msgtyp2str(type), payload_length);
4285                         return -EPROTO;
4286                 }
4287                 break;
4288
4289         case LNET_MSG_PUT:
4290         case LNET_MSG_REPLY:
4291                 if (payload_length >
4292                     (__u32)(for_me ? LNET_MAX_PAYLOAD : LNET_MTU)) {
4293                         CERROR("%s, src %s: bad %s payload %d "
4294                                "(%d max expected)\n",
4295                                libcfs_nid2str(from_nid),
4296                                libcfs_nid2str(src_nid),
4297                                lnet_msgtyp2str(type),
4298                                payload_length,
4299                                for_me ? LNET_MAX_PAYLOAD : LNET_MTU);
4300                         return -EPROTO;
4301                 }
4302                 break;
4303
4304         default:
4305                 CERROR("%s, src %s: Bad message type 0x%x\n",
4306                        libcfs_nid2str(from_nid),
4307                        libcfs_nid2str(src_nid), type);
4308                 return -EPROTO;
4309         }
4310
4311         if (the_lnet.ln_routing &&
4312             ni->ni_net->net_last_alive != ktime_get_real_seconds()) {
4313                 lnet_ni_lock(ni);
4314                 spin_lock(&ni->ni_net->net_lock);
4315                 ni->ni_net->net_last_alive = ktime_get_real_seconds();
4316                 spin_unlock(&ni->ni_net->net_lock);
4317                 push = lnet_ni_set_status_locked(ni, LNET_NI_STATUS_UP);
4318                 lnet_ni_unlock(ni);
4319         }
4320
4321         if (push)
4322                 lnet_push_update_to_peers(1);
4323
4324         /* Regard a bad destination NID as a protocol error.  Senders should
4325          * know what they're doing; if they don't they're misconfigured, buggy
4326          * or malicious so we chop them off at the knees :) */
4327
4328         if (!for_me) {
4329                 if (LNET_NIDNET(dest_nid) == LNET_NIDNET(ni->ni_nid)) {
4330                         /* should have gone direct */
4331                         CERROR("%s, src %s: Bad dest nid %s "
4332                                "(should have been sent direct)\n",
4333                                 libcfs_nid2str(from_nid),
4334                                 libcfs_nid2str(src_nid),
4335                                 libcfs_nid2str(dest_nid));
4336                         return -EPROTO;
4337                 }
4338
4339                 if (lnet_islocalnid(dest_nid)) {
4340                         /* dest is another local NI; sender should have used
4341                          * this node's NID on its own network */
4342                         CERROR("%s, src %s: Bad dest nid %s "
4343                                "(it's my nid but on a different network)\n",
4344                                 libcfs_nid2str(from_nid),
4345                                 libcfs_nid2str(src_nid),
4346                                 libcfs_nid2str(dest_nid));
4347                         return -EPROTO;
4348                 }
4349
4350                 if (rdma_req && type == LNET_MSG_GET) {
4351                         CERROR("%s, src %s: Bad optimized GET for %s "
4352                                "(final destination must be me)\n",
4353                                 libcfs_nid2str(from_nid),
4354                                 libcfs_nid2str(src_nid),
4355                                 libcfs_nid2str(dest_nid));
4356                         return -EPROTO;
4357                 }
4358
4359                 if (!the_lnet.ln_routing) {
4360                         CERROR("%s, src %s: Dropping message for %s "
4361                                "(routing not enabled)\n",
4362                                 libcfs_nid2str(from_nid),
4363                                 libcfs_nid2str(src_nid),
4364                                 libcfs_nid2str(dest_nid));
4365                         goto drop;
4366                 }
4367         }
4368
4369         /* Message looks OK; we're not going to return an error, so we MUST
4370          * call back lnd_recv() come what may... */
4371
4372         if (!list_empty(&the_lnet.ln_test_peers) &&     /* normally we don't */
4373             fail_peer(src_nid, 0)) {                    /* shall we now? */
4374                 CERROR("%s, src %s: Dropping %s to simulate failure\n",
4375                        libcfs_nid2str(from_nid), libcfs_nid2str(src_nid),
4376                        lnet_msgtyp2str(type));
4377                 goto drop;
4378         }
4379
4380         if (!list_empty(&the_lnet.ln_drop_rules) &&
4381             lnet_drop_rule_match(hdr, ni->ni_nid, NULL)) {
4382                 CDEBUG(D_NET,
4383                        "%s, src %s, dst %s: Dropping %s to simulate silent message loss\n",
4384                        libcfs_nid2str(from_nid), libcfs_nid2str(src_nid),
4385                        libcfs_nid2str(dest_nid), lnet_msgtyp2str(type));
4386                 goto drop;
4387         }
4388
4389         if (lnet_drop_asym_route && for_me &&
4390             LNET_NIDNET(src_nid) != LNET_NIDNET(from_nid)) {
4391                 struct lnet_net *net;
4392                 struct lnet_remotenet *rnet;
4393                 bool found = true;
4394
4395                 /* we are dealing with a routed message,
4396                  * so see if route to reach src_nid goes through from_nid
4397                  */
4398                 lnet_net_lock(cpt);
4399                 net = lnet_get_net_locked(LNET_NIDNET(ni->ni_nid));
4400                 if (!net) {
4401                         lnet_net_unlock(cpt);
4402                         CERROR("net %s not found\n",
4403                                libcfs_net2str(LNET_NIDNET(ni->ni_nid)));
4404                         return -EPROTO;
4405                 }
4406
4407                 rnet = lnet_find_rnet_locked(LNET_NIDNET(src_nid));
4408                 if (rnet) {
4409                         struct lnet_peer *gw = NULL;
4410                         struct lnet_peer_ni *lpni = NULL;
4411                         struct lnet_route *route;
4412
4413                         list_for_each_entry(route, &rnet->lrn_routes, lr_list) {
4414                                 found = false;
4415                                 gw = route->lr_gateway;
4416                                 if (route->lr_lnet != net->net_id)
4417                                         continue;
4418                                 /*
4419                                  * if the nid is one of the gateway's NIDs
4420                                  * then this is a valid gateway
4421                                  */
4422                                 while ((lpni = lnet_get_next_peer_ni_locked(gw,
4423                                                 NULL, lpni)) != NULL) {
4424                                         if (lpni->lpni_nid == from_nid) {
4425                                                 found = true;
4426                                                 break;
4427                                         }
4428                                 }
4429                         }
4430                 }
4431                 lnet_net_unlock(cpt);
4432                 if (!found) {
4433                         /* we would not use from_nid to route a message to
4434                          * src_nid
4435                          * => asymmetric routing detected but forbidden
4436                          */
4437                         CERROR("%s, src %s: Dropping asymmetrical route %s\n",
4438                                libcfs_nid2str(from_nid),
4439                                libcfs_nid2str(src_nid), lnet_msgtyp2str(type));
4440                         goto drop;
4441                 }
4442         }
4443
4444         msg = lnet_msg_alloc();
4445         if (msg == NULL) {
4446                 CERROR("%s, src %s: Dropping %s (out of memory)\n",
4447                        libcfs_nid2str(from_nid), libcfs_nid2str(src_nid),
4448                        lnet_msgtyp2str(type));
4449                 goto drop;
4450         }
4451
4452         /* msg zeroed in lnet_msg_alloc; i.e. flags all clear,
4453          * pointers NULL etc */
4454
4455         msg->msg_type = type;
4456         msg->msg_private = private;
4457         msg->msg_receiving = 1;
4458         msg->msg_rdma_get = rdma_req;
4459         msg->msg_len = msg->msg_wanted = payload_length;
4460         msg->msg_offset = 0;
4461         msg->msg_hdr = *hdr;
4462         /* for building message event */
4463         msg->msg_from = from_nid;
4464         if (!for_me) {
4465                 msg->msg_target.pid     = dest_pid;
4466                 msg->msg_target.nid     = dest_nid;
4467                 msg->msg_routing        = 1;
4468
4469         } else {
4470                 /* convert common msg->hdr fields to host byteorder */
4471                 msg->msg_hdr.type       = type;
4472                 msg->msg_hdr.src_nid    = src_nid;
4473                 msg->msg_hdr.src_pid    = le32_to_cpu(msg->msg_hdr.src_pid);
4474                 msg->msg_hdr.dest_nid   = dest_nid;
4475                 msg->msg_hdr.dest_pid   = dest_pid;
4476                 msg->msg_hdr.payload_length = payload_length;
4477         }
4478
4479         lnet_net_lock(cpt);
4480         lpni = lnet_nid2peerni_locked(from_nid, ni->ni_nid, cpt);
4481         if (IS_ERR(lpni)) {
4482                 lnet_net_unlock(cpt);
4483                 CERROR("%s, src %s: Dropping %s "
4484                        "(error %ld looking up sender)\n",
4485                        libcfs_nid2str(from_nid), libcfs_nid2str(src_nid),
4486                        lnet_msgtyp2str(type), PTR_ERR(lpni));
4487                 lnet_msg_free(msg);
4488                 if (rc == -ESHUTDOWN)
4489                         /* We are shutting down.  Don't do anything more */
4490                         return 0;
4491                 goto drop;
4492         }
4493
4494         if (the_lnet.ln_routing)
4495                 lpni->lpni_last_alive = ktime_get_seconds();
4496
4497         msg->msg_rxpeer = lpni;
4498         msg->msg_rxni = ni;
4499         lnet_ni_addref_locked(ni, cpt);
4500         /* Multi-Rail: Primary NID of source. */
4501         msg->msg_initiator = lnet_peer_primary_nid_locked(src_nid);
4502
4503         /*
4504          * mark the status of this lpni as UP since we received a message
4505          * from it. The ping response reports back the ns_status which is
4506          * marked on the remote as up or down and we cache it here.
4507          */
4508         msg->msg_rxpeer->lpni_ns_status = LNET_NI_STATUS_UP;
4509
4510         lnet_msg_commit(msg, cpt);
4511
4512         /* message delay simulation */
4513         if (unlikely(!list_empty(&the_lnet.ln_delay_rules) &&
4514                      lnet_delay_rule_match_locked(hdr, msg))) {
4515                 lnet_net_unlock(cpt);
4516                 return 0;
4517         }
4518
4519         if (!for_me) {
4520                 rc = lnet_parse_forward_locked(ni, msg);
4521                 lnet_net_unlock(cpt);
4522
4523                 if (rc < 0)
4524                         goto free_drop;
4525
4526                 if (rc == LNET_CREDIT_OK) {
4527                         lnet_ni_recv(ni, msg->msg_private, msg, 0,
4528                                      0, payload_length, payload_length);
4529                 }
4530                 return 0;
4531         }
4532
4533         lnet_net_unlock(cpt);
4534
4535         rc = lnet_parse_local(ni, msg);
4536         if (rc != 0)
4537                 goto free_drop;
4538         return 0;
4539
4540  free_drop:
4541         LASSERT(msg->msg_md == NULL);
4542         lnet_finalize(msg, rc);
4543
4544  drop:
4545         lnet_drop_message(ni, cpt, private, payload_length, type);
4546         return 0;
4547 }
4548 EXPORT_SYMBOL(lnet_parse);
4549
4550 void
4551 lnet_drop_delayed_msg_list(struct list_head *head, char *reason)
4552 {
4553         while (!list_empty(head)) {
4554                 struct lnet_process_id id = {0};
4555                 struct lnet_msg *msg;
4556
4557                 msg = list_entry(head->next, struct lnet_msg, msg_list);
4558                 list_del(&msg->msg_list);
4559
4560                 id.nid = msg->msg_hdr.src_nid;
4561                 id.pid = msg->msg_hdr.src_pid;
4562
4563                 LASSERT(msg->msg_md == NULL);
4564                 LASSERT(msg->msg_rx_delayed);
4565                 LASSERT(msg->msg_rxpeer != NULL);
4566                 LASSERT(msg->msg_hdr.type == LNET_MSG_PUT);
4567
4568                 CWARN("Dropping delayed PUT from %s portal %d match %llu"
4569                       " offset %d length %d: %s\n",
4570                       libcfs_id2str(id),
4571                       msg->msg_hdr.msg.put.ptl_index,
4572                       msg->msg_hdr.msg.put.match_bits,
4573                       msg->msg_hdr.msg.put.offset,
4574                       msg->msg_hdr.payload_length, reason);
4575
4576                 /* NB I can't drop msg's ref on msg_rxpeer until after I've
4577                  * called lnet_drop_message(), so I just hang onto msg as well
4578                  * until that's done */
4579
4580                 lnet_drop_message(msg->msg_rxni, msg->msg_rx_cpt,
4581                                   msg->msg_private, msg->msg_len,
4582                                   msg->msg_type);
4583
4584                 msg->msg_no_resend = true;
4585                 /*
4586                  * NB: message will not generate event because w/o attached MD,
4587                  * but we still should give error code so lnet_msg_decommit()
4588                  * can skip counters operations and other checks.
4589                  */
4590                 lnet_finalize(msg, -ENOENT);
4591         }
4592 }
4593
4594 void
4595 lnet_recv_delayed_msg_list(struct list_head *head)
4596 {
4597         while (!list_empty(head)) {
4598                 struct lnet_msg *msg;
4599                 struct lnet_process_id id;
4600
4601                 msg = list_entry(head->next, struct lnet_msg, msg_list);
4602                 list_del(&msg->msg_list);
4603
4604                 /* md won't disappear under me, since each msg
4605                  * holds a ref on it */
4606
4607                 id.nid = msg->msg_hdr.src_nid;
4608                 id.pid = msg->msg_hdr.src_pid;
4609
4610                 LASSERT(msg->msg_rx_delayed);
4611                 LASSERT(msg->msg_md != NULL);
4612                 LASSERT(msg->msg_rxpeer != NULL);
4613                 LASSERT(msg->msg_rxni != NULL);
4614                 LASSERT(msg->msg_hdr.type == LNET_MSG_PUT);
4615
4616                 CDEBUG(D_NET, "Resuming delayed PUT from %s portal %d "
4617                        "match %llu offset %d length %d.\n",
4618                         libcfs_id2str(id), msg->msg_hdr.msg.put.ptl_index,
4619                         msg->msg_hdr.msg.put.match_bits,
4620                         msg->msg_hdr.msg.put.offset,
4621                         msg->msg_hdr.payload_length);
4622
4623                 lnet_recv_put(msg->msg_rxni, msg);
4624         }
4625 }
4626
4627 static void
4628 lnet_attach_rsp_tracker(struct lnet_rsp_tracker *rspt, int cpt,
4629                         struct lnet_libmd *md, struct lnet_handle_md mdh)
4630 {
4631         s64 timeout_ns;
4632         struct lnet_rsp_tracker *local_rspt;
4633
4634         /*
4635          * MD has a refcount taken by message so it's not going away.
4636          * The MD however can be looked up. We need to secure the access
4637          * to the md_rspt_ptr by taking the res_lock.
4638          * The rspt can be accessed without protection up to when it gets
4639          * added to the list.
4640          */
4641
4642         lnet_res_lock(cpt);
4643         local_rspt = md->md_rspt_ptr;
4644         timeout_ns = lnet_transaction_timeout * NSEC_PER_SEC;
4645         if (local_rspt != NULL) {
4646                 /*
4647                  * we already have an rspt attached to the md, so we'll
4648                  * update the deadline on that one.
4649                  */
4650                 lnet_rspt_free(rspt, cpt);
4651         } else {
4652                 /* new md */
4653                 rspt->rspt_mdh = mdh;
4654                 rspt->rspt_cpt = cpt;
4655                 /* store the rspt so we can access it when we get the REPLY */
4656                 md->md_rspt_ptr = rspt;
4657                 local_rspt = rspt;
4658         }
4659         local_rspt->rspt_deadline = ktime_add_ns(ktime_get(), timeout_ns);
4660
4661         /*
4662          * add to the list of tracked responses. It's added to tail of the
4663          * list in order to expire all the older entries first.
4664          */
4665         lnet_net_lock(cpt);
4666         list_move_tail(&local_rspt->rspt_on_list, the_lnet.ln_mt_rstq[cpt]);
4667         lnet_net_unlock(cpt);
4668         lnet_res_unlock(cpt);
4669 }
4670
4671 /**
4672  * Initiate an asynchronous PUT operation.
4673  *
4674  * There are several events associated with a PUT: completion of the send on
4675  * the initiator node (LNET_EVENT_SEND), and when the send completes
4676  * successfully, the receipt of an acknowledgment (LNET_EVENT_ACK) indicating
4677  * that the operation was accepted by the target. The event LNET_EVENT_PUT is
4678  * used at the target node to indicate the completion of incoming data
4679  * delivery.
4680  *
4681  * The local events will be logged in the EQ associated with the MD pointed to
4682  * by \a mdh handle. Using a MD without an associated EQ results in these
4683  * events being discarded. In this case, the caller must have another
4684  * mechanism (e.g., a higher level protocol) for determining when it is safe
4685  * to modify the memory region associated with the MD.
4686  *
4687  * Note that LNet does not guarantee the order of LNET_EVENT_SEND and
4688  * LNET_EVENT_ACK, though intuitively ACK should happen after SEND.
4689  *
4690  * \param self Indicates the NID of a local interface through which to send
4691  * the PUT request. Use LNET_NID_ANY to let LNet choose one by itself.
4692  * \param mdh A handle for the MD that describes the memory to be sent. The MD
4693  * must be "free floating" (See LNetMDBind()).
4694  * \param ack Controls whether an acknowledgment is requested.
4695  * Acknowledgments are only sent when they are requested by the initiating
4696  * process and the target MD enables them.
4697  * \param target A process identifier for the target process.
4698  * \param portal The index in the \a target's portal table.
4699  * \param match_bits The match bits to use for MD selection at the target
4700  * process.
4701  * \param offset The offset into the target MD (only used when the target
4702  * MD has the LNET_MD_MANAGE_REMOTE option set).
4703  * \param hdr_data 64 bits of user data that can be included in the message
4704  * header. This data is written to an event queue entry at the target if an
4705  * EQ is present on the matching MD.
4706  *
4707  * \retval  0      Success, and only in this case events will be generated
4708  * and logged to EQ (if it exists).
4709  * \retval -EIO    Simulated failure.
4710  * \retval -ENOMEM Memory allocation failure.
4711  * \retval -ENOENT Invalid MD object.
4712  *
4713  * \see struct lnet_event::hdr_data and lnet_event_kind_t.
4714  */
4715 int
4716 LNetPut(lnet_nid_t self, struct lnet_handle_md mdh, enum lnet_ack_req ack,
4717         struct lnet_process_id target, unsigned int portal,
4718         __u64 match_bits, unsigned int offset,
4719         __u64 hdr_data)
4720 {
4721         struct lnet_msg *msg;
4722         struct lnet_libmd *md;
4723         int cpt;
4724         int rc;
4725         struct lnet_rsp_tracker *rspt = NULL;
4726
4727         LASSERT(the_lnet.ln_refcount > 0);
4728
4729         if (!list_empty(&the_lnet.ln_test_peers) &&     /* normally we don't */
4730             fail_peer(target.nid, 1)) {                 /* shall we now? */
4731                 CERROR("Dropping PUT to %s: simulated failure\n",
4732                        libcfs_id2str(target));
4733                 return -EIO;
4734         }
4735
4736         msg = lnet_msg_alloc();
4737         if (msg == NULL) {
4738                 CERROR("Dropping PUT to %s: ENOMEM on struct lnet_msg\n",
4739                        libcfs_id2str(target));
4740                 return -ENOMEM;
4741         }
4742         msg->msg_vmflush = !!(current->flags & PF_MEMALLOC);
4743
4744         cpt = lnet_cpt_of_cookie(mdh.cookie);
4745
4746         if (ack == LNET_ACK_REQ) {
4747                 rspt = lnet_rspt_alloc(cpt);
4748                 if (!rspt) {
4749                         CERROR("Dropping PUT to %s: ENOMEM on response tracker\n",
4750                                 libcfs_id2str(target));
4751                         return -ENOMEM;
4752                 }
4753                 INIT_LIST_HEAD(&rspt->rspt_on_list);
4754         }
4755
4756         lnet_res_lock(cpt);
4757
4758         md = lnet_handle2md(&mdh);
4759         if (md == NULL || md->md_threshold == 0 || md->md_me != NULL) {
4760                 CERROR("Dropping PUT (%llu:%d:%s): MD (%d) invalid\n",
4761                        match_bits, portal, libcfs_id2str(target),
4762                        md == NULL ? -1 : md->md_threshold);
4763                 if (md != NULL && md->md_me != NULL)
4764                         CERROR("Source MD also attached to portal %d\n",
4765                                md->md_me->me_portal);
4766                 lnet_res_unlock(cpt);
4767
4768                 if (rspt)
4769                         lnet_rspt_free(rspt, cpt);
4770
4771                 lnet_msg_free(msg);
4772                 return -ENOENT;
4773         }
4774
4775         CDEBUG(D_NET, "LNetPut -> %s\n", libcfs_id2str(target));
4776
4777         lnet_msg_attach_md(msg, md, 0, 0);
4778
4779         lnet_prep_send(msg, LNET_MSG_PUT, target, 0, md->md_length);
4780
4781         msg->msg_hdr.msg.put.match_bits = cpu_to_le64(match_bits);
4782         msg->msg_hdr.msg.put.ptl_index = cpu_to_le32(portal);
4783         msg->msg_hdr.msg.put.offset = cpu_to_le32(offset);
4784         msg->msg_hdr.msg.put.hdr_data = hdr_data;
4785
4786         /* NB handles only looked up by creator (no flips) */
4787         if (ack == LNET_ACK_REQ) {
4788                 msg->msg_hdr.msg.put.ack_wmd.wh_interface_cookie =
4789                         the_lnet.ln_interface_cookie;
4790                 msg->msg_hdr.msg.put.ack_wmd.wh_object_cookie =
4791                         md->md_lh.lh_cookie;
4792         } else {
4793                 msg->msg_hdr.msg.put.ack_wmd.wh_interface_cookie =
4794                         LNET_WIRE_HANDLE_COOKIE_NONE;
4795                 msg->msg_hdr.msg.put.ack_wmd.wh_object_cookie =
4796                         LNET_WIRE_HANDLE_COOKIE_NONE;
4797         }
4798
4799         lnet_res_unlock(cpt);
4800
4801         lnet_build_msg_event(msg, LNET_EVENT_SEND);
4802
4803         if (rspt && lnet_response_tracking_enabled(LNET_MSG_PUT,
4804                                                    md->md_options))
4805                 lnet_attach_rsp_tracker(rspt, cpt, md, mdh);
4806         else if (rspt)
4807                 lnet_rspt_free(rspt, cpt);
4808
4809         if (CFS_FAIL_CHECK_ORSET(CFS_FAIL_PTLRPC_OST_BULK_CB2,
4810                                  CFS_FAIL_ONCE))
4811                 rc = -EIO;
4812         else
4813                 rc = lnet_send(self, msg, LNET_NID_ANY);
4814
4815         if (rc != 0) {
4816                 CNETERR("Error sending PUT to %s: %d\n",
4817                         libcfs_id2str(target), rc);
4818                 msg->msg_no_resend = true;
4819                 lnet_finalize(msg, rc);
4820         }
4821
4822         /* completion will be signalled by an event */
4823         return 0;
4824 }
4825 EXPORT_SYMBOL(LNetPut);
4826
4827 /*
4828  * The LND can DMA direct to the GET md (i.e. no REPLY msg).  This
4829  * returns a msg for the LND to pass to lnet_finalize() when the sink
4830  * data has been received.
4831  *
4832  * CAVEAT EMPTOR: 'getmsg' is the original GET, which is freed when
4833  * lnet_finalize() is called on it, so the LND must call this first
4834  */
4835 struct lnet_msg *
4836 lnet_create_reply_msg(struct lnet_ni *ni, struct lnet_msg *getmsg)
4837 {
4838         struct lnet_msg *msg = lnet_msg_alloc();
4839         struct lnet_libmd *getmd = getmsg->msg_md;
4840         struct lnet_process_id peer_id = getmsg->msg_target;
4841         int cpt;
4842
4843         LASSERT(!getmsg->msg_target_is_router);
4844         LASSERT(!getmsg->msg_routing);
4845
4846         if (msg == NULL) {
4847                 CERROR("%s: Dropping REPLY from %s: can't allocate msg\n",
4848                        libcfs_nid2str(ni->ni_nid), libcfs_id2str(peer_id));
4849                 goto drop;
4850         }
4851
4852         cpt = lnet_cpt_of_cookie(getmd->md_lh.lh_cookie);
4853         lnet_res_lock(cpt);
4854
4855         LASSERT(getmd->md_refcount > 0);
4856
4857         if (getmd->md_threshold == 0) {
4858                 CERROR("%s: Dropping REPLY from %s for inactive MD %p\n",
4859                         libcfs_nid2str(ni->ni_nid), libcfs_id2str(peer_id),
4860                         getmd);
4861                 lnet_res_unlock(cpt);
4862                 goto drop;
4863         }
4864
4865         LASSERT(getmd->md_offset == 0);
4866
4867         CDEBUG(D_NET, "%s: Reply from %s md %p\n",
4868                libcfs_nid2str(ni->ni_nid), libcfs_id2str(peer_id), getmd);
4869
4870         /* setup information for lnet_build_msg_event */
4871         msg->msg_initiator = getmsg->msg_txpeer->lpni_peer_net->lpn_peer->lp_primary_nid;
4872         msg->msg_from = peer_id.nid;
4873         msg->msg_type = LNET_MSG_GET; /* flag this msg as an "optimized" GET */
4874         msg->msg_hdr.src_nid = peer_id.nid;
4875         msg->msg_hdr.payload_length = getmd->md_length;
4876         msg->msg_receiving = 1; /* required by lnet_msg_attach_md */
4877
4878         lnet_msg_attach_md(msg, getmd, getmd->md_offset, getmd->md_length);
4879         lnet_res_unlock(cpt);
4880
4881         cpt = lnet_cpt_of_nid(peer_id.nid, ni);
4882
4883         lnet_net_lock(cpt);
4884         lnet_msg_commit(msg, cpt);
4885         lnet_net_unlock(cpt);
4886
4887         lnet_build_msg_event(msg, LNET_EVENT_REPLY);
4888
4889         return msg;
4890
4891  drop:
4892         cpt = lnet_cpt_of_nid(peer_id.nid, ni);
4893
4894         lnet_net_lock(cpt);
4895         lnet_incr_stats(&ni->ni_stats, LNET_MSG_GET, LNET_STATS_TYPE_DROP);
4896         the_lnet.ln_counters[cpt]->lct_common.lcc_drop_count++;
4897         the_lnet.ln_counters[cpt]->lct_common.lcc_drop_length +=
4898                 getmd->md_length;
4899         lnet_net_unlock(cpt);
4900
4901         if (msg != NULL)
4902                 lnet_msg_free(msg);
4903
4904         return NULL;
4905 }
4906 EXPORT_SYMBOL(lnet_create_reply_msg);
4907
4908 void
4909 lnet_set_reply_msg_len(struct lnet_ni *ni, struct lnet_msg *reply,
4910                        unsigned int len)
4911 {
4912         /* Set the REPLY length, now the RDMA that elides the REPLY message has
4913          * completed and I know it. */
4914         LASSERT(reply != NULL);
4915         LASSERT(reply->msg_type == LNET_MSG_GET);
4916         LASSERT(reply->msg_ev.type == LNET_EVENT_REPLY);
4917
4918         /* NB I trusted my peer to RDMA.  If she tells me she's written beyond
4919          * the end of my buffer, I might as well be dead. */
4920         LASSERT(len <= reply->msg_ev.mlength);
4921
4922         reply->msg_ev.mlength = len;
4923 }
4924 EXPORT_SYMBOL(lnet_set_reply_msg_len);
4925
4926 /**
4927  * Initiate an asynchronous GET operation.
4928  *
4929  * On the initiator node, an LNET_EVENT_SEND is logged when the GET request
4930  * is sent, and an LNET_EVENT_REPLY is logged when the data returned from
4931  * the target node in the REPLY has been written to local MD.
4932  *
4933  * On the target node, an LNET_EVENT_GET is logged when the GET request
4934  * arrives and is accepted into a MD.
4935  *
4936  * \param self,target,portal,match_bits,offset See the discussion in LNetPut().
4937  * \param mdh A handle for the MD that describes the memory into which the
4938  * requested data will be received. The MD must be "free floating" (See LNetMDBind()).
4939  *
4940  * \retval  0      Success, and only in this case events will be generated
4941  * and logged to EQ (if it exists) of the MD.
4942  * \retval -EIO    Simulated failure.
4943  * \retval -ENOMEM Memory allocation failure.
4944  * \retval -ENOENT Invalid MD object.
4945  */
4946 int
4947 LNetGet(lnet_nid_t self, struct lnet_handle_md mdh,
4948         struct lnet_process_id target, unsigned int portal,
4949         __u64 match_bits, unsigned int offset, bool recovery)
4950 {
4951         struct lnet_msg *msg;
4952         struct lnet_libmd *md;
4953         struct lnet_rsp_tracker *rspt;
4954         int cpt;
4955         int rc;
4956
4957         LASSERT(the_lnet.ln_refcount > 0);
4958
4959         if (!list_empty(&the_lnet.ln_test_peers) &&     /* normally we don't */
4960             fail_peer(target.nid, 1))                   /* shall we now? */
4961         {
4962                 CERROR("Dropping GET to %s: simulated failure\n",
4963                        libcfs_id2str(target));
4964                 return -EIO;
4965         }
4966
4967         msg = lnet_msg_alloc();
4968         if (!msg) {
4969                 CERROR("Dropping GET to %s: ENOMEM on struct lnet_msg\n",
4970                        libcfs_id2str(target));
4971                 return -ENOMEM;
4972         }
4973
4974         cpt = lnet_cpt_of_cookie(mdh.cookie);
4975
4976         rspt = lnet_rspt_alloc(cpt);
4977         if (!rspt) {
4978                 CERROR("Dropping GET to %s: ENOMEM on response tracker\n",
4979                        libcfs_id2str(target));
4980                 return -ENOMEM;
4981         }
4982         INIT_LIST_HEAD(&rspt->rspt_on_list);
4983
4984         msg->msg_recovery = recovery;
4985
4986         lnet_res_lock(cpt);
4987
4988         md = lnet_handle2md(&mdh);
4989         if (md == NULL || md->md_threshold == 0 || md->md_me != NULL) {
4990                 CERROR("Dropping GET (%llu:%d:%s): MD (%d) invalid\n",
4991                        match_bits, portal, libcfs_id2str(target),
4992                        md == NULL ? -1 : md->md_threshold);
4993                 if (md != NULL && md->md_me != NULL)
4994                         CERROR("REPLY MD also attached to portal %d\n",
4995                                md->md_me->me_portal);
4996
4997                 lnet_res_unlock(cpt);
4998
4999                 lnet_msg_free(msg);
5000                 lnet_rspt_free(rspt, cpt);
5001                 return -ENOENT;
5002         }
5003
5004         CDEBUG(D_NET, "LNetGet -> %s\n", libcfs_id2str(target));
5005
5006         lnet_msg_attach_md(msg, md, 0, 0);
5007
5008         lnet_prep_send(msg, LNET_MSG_GET, target, 0, 0);
5009
5010         msg->msg_hdr.msg.get.match_bits = cpu_to_le64(match_bits);
5011         msg->msg_hdr.msg.get.ptl_index = cpu_to_le32(portal);
5012         msg->msg_hdr.msg.get.src_offset = cpu_to_le32(offset);
5013         msg->msg_hdr.msg.get.sink_length = cpu_to_le32(md->md_length);
5014
5015         /* NB handles only looked up by creator (no flips) */
5016         msg->msg_hdr.msg.get.return_wmd.wh_interface_cookie =
5017                 the_lnet.ln_interface_cookie;
5018         msg->msg_hdr.msg.get.return_wmd.wh_object_cookie =
5019                 md->md_lh.lh_cookie;
5020
5021         lnet_res_unlock(cpt);
5022
5023         lnet_build_msg_event(msg, LNET_EVENT_SEND);
5024
5025         if (lnet_response_tracking_enabled(LNET_MSG_GET, md->md_options))
5026                 lnet_attach_rsp_tracker(rspt, cpt, md, mdh);
5027         else
5028                 lnet_rspt_free(rspt, cpt);
5029
5030         rc = lnet_send(self, msg, LNET_NID_ANY);
5031         if (rc < 0) {
5032                 CNETERR("Error sending GET to %s: %d\n",
5033                         libcfs_id2str(target), rc);
5034                 msg->msg_no_resend = true;
5035                 lnet_finalize(msg, rc);
5036         }
5037
5038         /* completion will be signalled by an event */
5039         return 0;
5040 }
5041 EXPORT_SYMBOL(LNetGet);
5042
5043 /**
5044  * Calculate distance to node at \a dstnid.
5045  *
5046  * \param dstnid Target NID.
5047  * \param srcnidp If not NULL, NID of the local interface to reach \a dstnid
5048  * is saved here.
5049  * \param orderp If not NULL, order of the route to reach \a dstnid is saved
5050  * here.
5051  *
5052  * \retval 0 If \a dstnid belongs to a local interface, and reserved option
5053  * local_nid_dist_zero is set, which is the default.
5054  * \retval positives Distance to target NID, i.e. number of hops plus one.
5055  * \retval -EHOSTUNREACH If \a dstnid is not reachable.
5056  */
5057 int
5058 LNetDist(lnet_nid_t dstnid, lnet_nid_t *srcnidp, __u32 *orderp)
5059 {
5060         struct list_head *e;
5061         struct lnet_ni *ni = NULL;
5062         struct lnet_remotenet *rnet;
5063         __u32 dstnet = LNET_NIDNET(dstnid);
5064         int hops;
5065         int cpt;
5066         __u32 order = 2;
5067         struct list_head *rn_list;
5068
5069         /* if !local_nid_dist_zero, I don't return a distance of 0 ever
5070          * (when lustre sees a distance of 0, it substitutes 0@lo), so I
5071          * keep order 0 free for 0@lo and order 1 free for a local NID
5072          * match */
5073
5074         LASSERT(the_lnet.ln_refcount > 0);
5075
5076         cpt = lnet_net_lock_current();
5077
5078         while ((ni = lnet_get_next_ni_locked(NULL, ni))) {
5079                 if (ni->ni_nid == dstnid) {
5080                         if (srcnidp != NULL)
5081                                 *srcnidp = dstnid;
5082                         if (orderp != NULL) {
5083                                 if (dstnid == LNET_NID_LO_0)
5084                                         *orderp = 0;
5085                                 else
5086                                         *orderp = 1;
5087                         }
5088                         lnet_net_unlock(cpt);
5089
5090                         return local_nid_dist_zero ? 0 : 1;
5091                 }
5092
5093                 if (LNET_NIDNET(ni->ni_nid) == dstnet) {
5094                         /* Check if ni was originally created in
5095                          * current net namespace.
5096                          * If not, assign order above 0xffff0000,
5097                          * to make this ni not a priority. */
5098                         if (current->nsproxy &&
5099                             !net_eq(ni->ni_net_ns, current->nsproxy->net_ns))
5100                                         order += 0xffff0000;
5101                         if (srcnidp != NULL)
5102                                 *srcnidp = ni->ni_nid;
5103                         if (orderp != NULL)
5104                                 *orderp = order;
5105                         lnet_net_unlock(cpt);
5106                         return 1;
5107                 }
5108
5109                 order++;
5110         }
5111
5112         rn_list = lnet_net2rnethash(dstnet);
5113         list_for_each(e, rn_list) {
5114                 rnet = list_entry(e, struct lnet_remotenet, lrn_list);
5115
5116                 if (rnet->lrn_net == dstnet) {
5117                         struct lnet_route *route;
5118                         struct lnet_route *shortest = NULL;
5119                         __u32 shortest_hops = LNET_UNDEFINED_HOPS;
5120                         __u32 route_hops;
5121
5122                         LASSERT(!list_empty(&rnet->lrn_routes));
5123
5124                         list_for_each_entry(route, &rnet->lrn_routes,
5125                                             lr_list) {
5126                                 route_hops = route->lr_hops;
5127                                 if (route_hops == LNET_UNDEFINED_HOPS)
5128                                         route_hops = 1;
5129                                 if (shortest == NULL ||
5130                                     route_hops < shortest_hops) {
5131                                         shortest = route;
5132                                         shortest_hops = route_hops;
5133                                 }
5134                         }
5135
5136                         LASSERT(shortest != NULL);
5137                         hops = shortest_hops;
5138                         if (srcnidp != NULL) {
5139                                 struct lnet_net *net;
5140                                 net = lnet_get_net_locked(shortest->lr_lnet);
5141                                 LASSERT(net);
5142                                 ni = lnet_get_next_ni_locked(net, NULL);
5143                                 *srcnidp = ni->ni_nid;
5144                         }
5145                         if (orderp != NULL)
5146                                 *orderp = order;
5147                         lnet_net_unlock(cpt);
5148                         return hops + 1;
5149                 }
5150                 order++;
5151         }
5152
5153         lnet_net_unlock(cpt);
5154         return -EHOSTUNREACH;
5155 }
5156 EXPORT_SYMBOL(LNetDist);