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