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