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