Whamcloud - gitweb
LU-7734 lnet: fix routing selection
[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, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lnet/lnet/lib-move.c
33  *
34  * Data movement routines
35  */
36
37 #define DEBUG_SUBSYSTEM S_LNET
38
39 #include <lnet/lib-lnet.h>
40 #include <linux/nsproxy.h>
41 #include <net/net_namespace.h>
42
43 static int local_nid_dist_zero = 1;
44 module_param(local_nid_dist_zero, int, 0444);
45 MODULE_PARM_DESC(local_nid_dist_zero, "Reserved");
46
47 int
48 lnet_fail_nid(lnet_nid_t nid, unsigned int threshold)
49 {
50         lnet_test_peer_t *tp;
51         struct list_head *el;
52         struct list_head *next;
53         struct list_head  cull;
54
55         /* NB: use lnet_net_lock(0) to serialize operations on test peers */
56         if (threshold != 0) {
57                 /* Adding a new entry */
58                 LIBCFS_ALLOC(tp, sizeof(*tp));
59                 if (tp == NULL)
60                         return -ENOMEM;
61
62                 tp->tp_nid = nid;
63                 tp->tp_threshold = threshold;
64
65                 lnet_net_lock(0);
66                 list_add_tail(&tp->tp_list, &the_lnet.ln_test_peers);
67                 lnet_net_unlock(0);
68                 return 0;
69         }
70
71         /* removing entries */
72         INIT_LIST_HEAD(&cull);
73
74         lnet_net_lock(0);
75
76         list_for_each_safe(el, next, &the_lnet.ln_test_peers) {
77                 tp = list_entry(el, lnet_test_peer_t, tp_list);
78
79                 if (tp->tp_threshold == 0 ||    /* needs culling anyway */
80                     nid == LNET_NID_ANY ||      /* removing all entries */
81                     tp->tp_nid == nid) {        /* matched this one */
82                         list_del(&tp->tp_list);
83                         list_add(&tp->tp_list, &cull);
84                 }
85         }
86
87         lnet_net_unlock(0);
88
89         while (!list_empty(&cull)) {
90                 tp = list_entry(cull.next, lnet_test_peer_t, tp_list);
91
92                 list_del(&tp->tp_list);
93                 LIBCFS_FREE(tp, sizeof(*tp));
94         }
95         return 0;
96 }
97
98 static int
99 fail_peer (lnet_nid_t nid, int outgoing)
100 {
101         lnet_test_peer_t *tp;
102         struct list_head *el;
103         struct list_head *next;
104         struct list_head  cull;
105         int               fail = 0;
106
107         INIT_LIST_HEAD(&cull);
108
109         /* NB: use lnet_net_lock(0) to serialize operations on test peers */
110         lnet_net_lock(0);
111
112         list_for_each_safe(el, next, &the_lnet.ln_test_peers) {
113                 tp = list_entry(el, lnet_test_peer_t, tp_list);
114
115                 if (tp->tp_threshold == 0) {
116                         /* zombie entry */
117                         if (outgoing) {
118                                 /* only cull zombies on outgoing tests,
119                                  * since we may be at interrupt priority on
120                                  * incoming messages. */
121                                 list_del(&tp->tp_list);
122                                 list_add(&tp->tp_list, &cull);
123                         }
124                         continue;
125                 }
126
127                 if (tp->tp_nid == LNET_NID_ANY ||       /* fail every peer */
128                     nid == tp->tp_nid) {                /* fail this peer */
129                         fail = 1;
130
131                         if (tp->tp_threshold != LNET_MD_THRESH_INF) {
132                                 tp->tp_threshold--;
133                                 if (outgoing &&
134                                     tp->tp_threshold == 0) {
135                                         /* see above */
136                                         list_del(&tp->tp_list);
137                                         list_add(&tp->tp_list, &cull);
138                                 }
139                         }
140                         break;
141                 }
142         }
143
144         lnet_net_unlock(0);
145
146         while (!list_empty(&cull)) {
147                 tp = list_entry(cull.next, lnet_test_peer_t, tp_list);
148                 list_del(&tp->tp_list);
149
150                 LIBCFS_FREE(tp, sizeof(*tp));
151         }
152
153         return fail;
154 }
155
156 unsigned int
157 lnet_iov_nob(unsigned int niov, struct kvec *iov)
158 {
159         unsigned int nob = 0;
160
161         LASSERT(niov == 0 || iov != NULL);
162         while (niov-- > 0)
163                 nob += (iov++)->iov_len;
164
165         return (nob);
166 }
167 EXPORT_SYMBOL(lnet_iov_nob);
168
169 void
170 lnet_copy_iov2iov(unsigned int ndiov, struct kvec *diov, unsigned int doffset,
171                   unsigned int nsiov, struct kvec *siov, unsigned int soffset,
172                   unsigned int nob)
173 {
174         /* NB diov, siov are READ-ONLY */
175         unsigned int  this_nob;
176
177         if (nob == 0)
178                 return;
179
180         /* skip complete frags before 'doffset' */
181         LASSERT(ndiov > 0);
182         while (doffset >= diov->iov_len) {
183                 doffset -= diov->iov_len;
184                 diov++;
185                 ndiov--;
186                 LASSERT(ndiov > 0);
187         }
188
189         /* skip complete frags before 'soffset' */
190         LASSERT(nsiov > 0);
191         while (soffset >= siov->iov_len) {
192                 soffset -= siov->iov_len;
193                 siov++;
194                 nsiov--;
195                 LASSERT(nsiov > 0);
196         }
197
198         do {
199                 LASSERT(ndiov > 0);
200                 LASSERT(nsiov > 0);
201                 this_nob = MIN(diov->iov_len - doffset,
202                                siov->iov_len - soffset);
203                 this_nob = MIN(this_nob, nob);
204
205                 memcpy((char *)diov->iov_base + doffset,
206                        (char *)siov->iov_base + soffset, this_nob);
207                 nob -= this_nob;
208
209                 if (diov->iov_len > doffset + this_nob) {
210                         doffset += this_nob;
211                 } else {
212                         diov++;
213                         ndiov--;
214                         doffset = 0;
215                 }
216
217                 if (siov->iov_len > soffset + this_nob) {
218                         soffset += this_nob;
219                 } else {
220                         siov++;
221                         nsiov--;
222                         soffset = 0;
223                 }
224         } while (nob > 0);
225 }
226 EXPORT_SYMBOL(lnet_copy_iov2iov);
227
228 int
229 lnet_extract_iov(int dst_niov, struct kvec *dst,
230                  int src_niov, struct kvec *src,
231                  unsigned int offset, unsigned int len)
232 {
233         /* Initialise 'dst' to the subset of 'src' starting at 'offset',
234          * for exactly 'len' bytes, and return the number of entries.
235          * NB not destructive to 'src' */
236         unsigned int    frag_len;
237         unsigned int    niov;
238
239         if (len == 0)                           /* no data => */
240                 return (0);                     /* no frags */
241
242         LASSERT(src_niov > 0);
243         while (offset >= src->iov_len) {      /* skip initial frags */
244                 offset -= src->iov_len;
245                 src_niov--;
246                 src++;
247                 LASSERT(src_niov > 0);
248         }
249
250         niov = 1;
251         for (;;) {
252                 LASSERT(src_niov > 0);
253                 LASSERT((int)niov <= dst_niov);
254
255                 frag_len = src->iov_len - offset;
256                 dst->iov_base = ((char *)src->iov_base) + offset;
257
258                 if (len <= frag_len) {
259                         dst->iov_len = len;
260                         return (niov);
261                 }
262
263                 dst->iov_len = frag_len;
264
265                 len -= frag_len;
266                 dst++;
267                 src++;
268                 niov++;
269                 src_niov--;
270                 offset = 0;
271         }
272 }
273 EXPORT_SYMBOL(lnet_extract_iov);
274
275
276 unsigned int
277 lnet_kiov_nob(unsigned int niov, lnet_kiov_t *kiov)
278 {
279         unsigned int  nob = 0;
280
281         LASSERT(niov == 0 || kiov != NULL);
282         while (niov-- > 0)
283                 nob += (kiov++)->kiov_len;
284
285         return (nob);
286 }
287 EXPORT_SYMBOL(lnet_kiov_nob);
288
289 void
290 lnet_copy_kiov2kiov(unsigned int ndiov, lnet_kiov_t *diov, unsigned int doffset,
291                     unsigned int nsiov, lnet_kiov_t *siov, unsigned int soffset,
292                     unsigned int nob)
293 {
294         /* NB diov, siov are READ-ONLY */
295         unsigned int    this_nob;
296         char           *daddr = NULL;
297         char           *saddr = NULL;
298
299         if (nob == 0)
300                 return;
301
302         LASSERT (!in_interrupt ());
303
304         LASSERT (ndiov > 0);
305         while (doffset >= diov->kiov_len) {
306                 doffset -= diov->kiov_len;
307                 diov++;
308                 ndiov--;
309                 LASSERT(ndiov > 0);
310         }
311
312         LASSERT(nsiov > 0);
313         while (soffset >= siov->kiov_len) {
314                 soffset -= siov->kiov_len;
315                 siov++;
316                 nsiov--;
317                 LASSERT(nsiov > 0);
318         }
319
320         do {
321                 LASSERT(ndiov > 0);
322                 LASSERT(nsiov > 0);
323                 this_nob = MIN(diov->kiov_len - doffset,
324                                siov->kiov_len - soffset);
325                 this_nob = MIN(this_nob, nob);
326
327                 if (daddr == NULL)
328                         daddr = ((char *)kmap(diov->kiov_page)) +
329                                 diov->kiov_offset + doffset;
330                 if (saddr == NULL)
331                         saddr = ((char *)kmap(siov->kiov_page)) +
332                                 siov->kiov_offset + soffset;
333
334                 /* Vanishing risk of kmap deadlock when mapping 2 pages.
335                  * However in practice at least one of the kiovs will be mapped
336                  * kernel pages and the map/unmap will be NOOPs */
337
338                 memcpy (daddr, saddr, this_nob);
339                 nob -= this_nob;
340
341                 if (diov->kiov_len > doffset + this_nob) {
342                         daddr += this_nob;
343                         doffset += this_nob;
344                 } else {
345                         kunmap(diov->kiov_page);
346                         daddr = NULL;
347                         diov++;
348                         ndiov--;
349                         doffset = 0;
350                 }
351
352                 if (siov->kiov_len > soffset + this_nob) {
353                         saddr += this_nob;
354                         soffset += this_nob;
355                 } else {
356                         kunmap(siov->kiov_page);
357                         saddr = NULL;
358                         siov++;
359                         nsiov--;
360                         soffset = 0;
361                 }
362         } while (nob > 0);
363
364         if (daddr != NULL)
365                 kunmap(diov->kiov_page);
366         if (saddr != NULL)
367                 kunmap(siov->kiov_page);
368 }
369 EXPORT_SYMBOL(lnet_copy_kiov2kiov);
370
371 void
372 lnet_copy_kiov2iov (unsigned int niov, struct kvec *iov, unsigned int iovoffset,
373                     unsigned int nkiov, lnet_kiov_t *kiov, unsigned int kiovoffset,
374                     unsigned int nob)
375 {
376         /* NB iov, kiov are READ-ONLY */
377         unsigned int    this_nob;
378         char           *addr = NULL;
379
380         if (nob == 0)
381                 return;
382
383         LASSERT (!in_interrupt ());
384
385         LASSERT (niov > 0);
386         while (iovoffset >= iov->iov_len) {
387                 iovoffset -= iov->iov_len;
388                 iov++;
389                 niov--;
390                 LASSERT(niov > 0);
391         }
392
393         LASSERT(nkiov > 0);
394         while (kiovoffset >= kiov->kiov_len) {
395                 kiovoffset -= kiov->kiov_len;
396                 kiov++;
397                 nkiov--;
398                 LASSERT(nkiov > 0);
399         }
400
401         do {
402                 LASSERT(niov > 0);
403                 LASSERT(nkiov > 0);
404                 this_nob = MIN(iov->iov_len - iovoffset,
405                                kiov->kiov_len - kiovoffset);
406                 this_nob = MIN(this_nob, nob);
407
408                 if (addr == NULL)
409                         addr = ((char *)kmap(kiov->kiov_page)) +
410                                 kiov->kiov_offset + kiovoffset;
411
412                 memcpy((char *)iov->iov_base + iovoffset, addr, this_nob);
413                 nob -= this_nob;
414
415                 if (iov->iov_len > iovoffset + this_nob) {
416                         iovoffset += this_nob;
417                 } else {
418                         iov++;
419                         niov--;
420                         iovoffset = 0;
421                 }
422
423                 if (kiov->kiov_len > kiovoffset + this_nob) {
424                         addr += this_nob;
425                         kiovoffset += this_nob;
426                 } else {
427                         kunmap(kiov->kiov_page);
428                         addr = NULL;
429                         kiov++;
430                         nkiov--;
431                         kiovoffset = 0;
432                 }
433
434         } while (nob > 0);
435
436         if (addr != NULL)
437                 kunmap(kiov->kiov_page);
438 }
439 EXPORT_SYMBOL(lnet_copy_kiov2iov);
440
441 void
442 lnet_copy_iov2kiov(unsigned int nkiov, lnet_kiov_t *kiov, unsigned int kiovoffset,
443                    unsigned int niov, struct kvec *iov, unsigned int iovoffset,
444                    unsigned int nob)
445 {
446         /* NB kiov, iov are READ-ONLY */
447         unsigned int    this_nob;
448         char           *addr = NULL;
449
450         if (nob == 0)
451                 return;
452
453         LASSERT (!in_interrupt ());
454
455         LASSERT (nkiov > 0);
456         while (kiovoffset >= kiov->kiov_len) {
457                 kiovoffset -= kiov->kiov_len;
458                 kiov++;
459                 nkiov--;
460                 LASSERT(nkiov > 0);
461         }
462
463         LASSERT(niov > 0);
464         while (iovoffset >= iov->iov_len) {
465                 iovoffset -= iov->iov_len;
466                 iov++;
467                 niov--;
468                 LASSERT(niov > 0);
469         }
470
471         do {
472                 LASSERT(nkiov > 0);
473                 LASSERT(niov > 0);
474                 this_nob = MIN(kiov->kiov_len - kiovoffset,
475                                iov->iov_len - iovoffset);
476                 this_nob = MIN(this_nob, nob);
477
478                 if (addr == NULL)
479                         addr = ((char *)kmap(kiov->kiov_page)) +
480                                 kiov->kiov_offset + kiovoffset;
481
482                 memcpy (addr, (char *)iov->iov_base + iovoffset, this_nob);
483                 nob -= this_nob;
484
485                 if (kiov->kiov_len > kiovoffset + this_nob) {
486                         addr += this_nob;
487                         kiovoffset += this_nob;
488                 } else {
489                         kunmap(kiov->kiov_page);
490                         addr = NULL;
491                         kiov++;
492                         nkiov--;
493                         kiovoffset = 0;
494                 }
495
496                 if (iov->iov_len > iovoffset + this_nob) {
497                         iovoffset += this_nob;
498                 } else {
499                         iov++;
500                         niov--;
501                         iovoffset = 0;
502                 }
503         } while (nob > 0);
504
505         if (addr != NULL)
506                 kunmap(kiov->kiov_page);
507 }
508 EXPORT_SYMBOL(lnet_copy_iov2kiov);
509
510 int
511 lnet_extract_kiov(int dst_niov, lnet_kiov_t *dst,
512                   int src_niov, lnet_kiov_t *src,
513                   unsigned int offset, unsigned int len)
514 {
515         /* Initialise 'dst' to the subset of 'src' starting at 'offset',
516          * for exactly 'len' bytes, and return the number of entries.
517          * NB not destructive to 'src' */
518         unsigned int    frag_len;
519         unsigned int    niov;
520
521         if (len == 0)                           /* no data => */
522                 return (0);                     /* no frags */
523
524         LASSERT(src_niov > 0);
525         while (offset >= src->kiov_len) {      /* skip initial frags */
526                 offset -= src->kiov_len;
527                 src_niov--;
528                 src++;
529                 LASSERT(src_niov > 0);
530         }
531
532         niov = 1;
533         for (;;) {
534                 LASSERT(src_niov > 0);
535                 LASSERT((int)niov <= dst_niov);
536
537                 frag_len = src->kiov_len - offset;
538                 dst->kiov_page = src->kiov_page;
539                 dst->kiov_offset = src->kiov_offset + offset;
540
541                 if (len <= frag_len) {
542                         dst->kiov_len = len;
543                         LASSERT(dst->kiov_offset + dst->kiov_len <= PAGE_SIZE);
544                         return niov;
545                 }
546
547                 dst->kiov_len = frag_len;
548                 LASSERT(dst->kiov_offset + dst->kiov_len <= PAGE_SIZE);
549
550                 len -= frag_len;
551                 dst++;
552                 src++;
553                 niov++;
554                 src_niov--;
555                 offset = 0;
556         }
557 }
558 EXPORT_SYMBOL(lnet_extract_kiov);
559
560 void
561 lnet_ni_recv(lnet_ni_t *ni, void *private, lnet_msg_t *msg, int delayed,
562              unsigned int offset, unsigned int mlen, unsigned int rlen)
563 {
564         unsigned int  niov = 0;
565         struct kvec *iov = NULL;
566         lnet_kiov_t  *kiov = NULL;
567         int           rc;
568
569         LASSERT (!in_interrupt ());
570         LASSERT (mlen == 0 || msg != NULL);
571
572         if (msg != NULL) {
573                 LASSERT(msg->msg_receiving);
574                 LASSERT(!msg->msg_sending);
575                 LASSERT(rlen == msg->msg_len);
576                 LASSERT(mlen <= msg->msg_len);
577                 LASSERT(msg->msg_offset == offset);
578                 LASSERT(msg->msg_wanted == mlen);
579
580                 msg->msg_receiving = 0;
581
582                 if (mlen != 0) {
583                         niov = msg->msg_niov;
584                         iov  = msg->msg_iov;
585                         kiov = msg->msg_kiov;
586
587                         LASSERT (niov > 0);
588                         LASSERT ((iov == NULL) != (kiov == NULL));
589                 }
590         }
591
592         rc = (ni->ni_net->net_lnd->lnd_recv)(ni, private, msg, delayed,
593                                              niov, iov, kiov, offset, mlen,
594                                              rlen);
595         if (rc < 0)
596                 lnet_finalize(ni, msg, rc);
597 }
598
599 static void
600 lnet_setpayloadbuffer(lnet_msg_t *msg)
601 {
602         lnet_libmd_t *md = msg->msg_md;
603
604         LASSERT(msg->msg_len > 0);
605         LASSERT(!msg->msg_routing);
606         LASSERT(md != NULL);
607         LASSERT(msg->msg_niov == 0);
608         LASSERT(msg->msg_iov == NULL);
609         LASSERT(msg->msg_kiov == NULL);
610
611         msg->msg_niov = md->md_niov;
612         if ((md->md_options & LNET_MD_KIOV) != 0)
613                 msg->msg_kiov = md->md_iov.kiov;
614         else
615                 msg->msg_iov = md->md_iov.iov;
616 }
617
618 void
619 lnet_prep_send(lnet_msg_t *msg, int type, lnet_process_id_t target,
620                unsigned int offset, unsigned int len)
621 {
622         msg->msg_type = type;
623         msg->msg_target = target;
624         msg->msg_len = len;
625         msg->msg_offset = offset;
626
627         if (len != 0)
628                 lnet_setpayloadbuffer(msg);
629
630         memset (&msg->msg_hdr, 0, sizeof (msg->msg_hdr));
631         msg->msg_hdr.type           = cpu_to_le32(type);
632         msg->msg_hdr.dest_pid       = cpu_to_le32(target.pid);
633         /* src_nid will be set later */
634         msg->msg_hdr.src_pid        = cpu_to_le32(the_lnet.ln_pid);
635         msg->msg_hdr.payload_length = cpu_to_le32(len);
636 }
637
638 static void
639 lnet_ni_send(lnet_ni_t *ni, lnet_msg_t *msg)
640 {
641         void   *priv = msg->msg_private;
642         int     rc;
643
644         LASSERT (!in_interrupt ());
645         LASSERT (LNET_NETTYP(LNET_NIDNET(ni->ni_nid)) == LOLND ||
646                  (msg->msg_txcredit && msg->msg_peertxcredit));
647
648         rc = (ni->ni_net->net_lnd->lnd_send)(ni, priv, msg);
649         if (rc < 0)
650                 lnet_finalize(ni, msg, rc);
651 }
652
653 static int
654 lnet_ni_eager_recv(lnet_ni_t *ni, lnet_msg_t *msg)
655 {
656         int     rc;
657
658         LASSERT(!msg->msg_sending);
659         LASSERT(msg->msg_receiving);
660         LASSERT(!msg->msg_rx_ready_delay);
661         LASSERT(ni->ni_net->net_lnd->lnd_eager_recv != NULL);
662
663         msg->msg_rx_ready_delay = 1;
664         rc = (ni->ni_net->net_lnd->lnd_eager_recv)(ni, msg->msg_private, msg,
665                                                   &msg->msg_private);
666         if (rc != 0) {
667                 CERROR("recv from %s / send to %s aborted: "
668                        "eager_recv failed %d\n",
669                        libcfs_nid2str(msg->msg_rxpeer->lpni_nid),
670                        libcfs_id2str(msg->msg_target), rc);
671                 LASSERT(rc < 0); /* required by my callers */
672         }
673
674         return rc;
675 }
676
677 /*
678  * This function can be called from two paths:
679  *      1. when sending a message
680  *      2. when decommiting a message (lnet_msg_decommit_tx())
681  * In both these cases the peer_ni should have it's reference count
682  * acquired by the caller and therefore it is safe to drop the spin
683  * lock before calling lnd_query()
684  */
685 static void
686 lnet_ni_query_locked(lnet_ni_t *ni, struct lnet_peer_ni *lp)
687 {
688         cfs_time_t last_alive = 0;
689         int cpt = lnet_cpt_of_nid_locked(lp->lpni_nid, ni);
690
691         LASSERT(lnet_peer_aliveness_enabled(lp));
692         LASSERT(ni->ni_net->net_lnd->lnd_query != NULL);
693
694         lnet_net_unlock(cpt);
695         (ni->ni_net->net_lnd->lnd_query)(ni, lp->lpni_nid, &last_alive);
696         lnet_net_lock(cpt);
697
698         lp->lpni_last_query = cfs_time_current();
699
700         if (last_alive != 0) /* NI has updated timestamp */
701                 lp->lpni_last_alive = last_alive;
702 }
703
704 /* NB: always called with lnet_net_lock held */
705 static inline int
706 lnet_peer_is_alive (struct lnet_peer_ni *lp, cfs_time_t now)
707 {
708         int        alive;
709         cfs_time_t deadline;
710
711         LASSERT (lnet_peer_aliveness_enabled(lp));
712
713         /*
714          * Trust lnet_notify() if it has more recent aliveness news, but
715          * ignore the initial assumed death (see lnet_peers_start_down()).
716          */
717         spin_lock(&lp->lpni_lock);
718         if (!lp->lpni_alive && lp->lpni_alive_count > 0 &&
719             cfs_time_aftereq(lp->lpni_timestamp, lp->lpni_last_alive)) {
720                 spin_unlock(&lp->lpni_lock);
721                 return 0;
722         }
723
724         deadline =
725           cfs_time_add(lp->lpni_last_alive,
726                        cfs_time_seconds(lp->lpni_net->net_tunables.
727                                         lct_peer_timeout));
728         alive = cfs_time_after(deadline, now);
729
730         /*
731          * Update obsolete lp_alive except for routers assumed to be dead
732          * initially, because router checker would update aliveness in this
733          * case, and moreover lpni_last_alive at peer creation is assumed.
734          */
735         if (alive && !lp->lpni_alive &&
736             !(lnet_isrouter(lp) && lp->lpni_alive_count == 0)) {
737                 spin_unlock(&lp->lpni_lock);
738                 lnet_notify_locked(lp, 0, 1, lp->lpni_last_alive);
739         } else {
740                 spin_unlock(&lp->lpni_lock);
741         }
742
743         return alive;
744 }
745
746
747 /* NB: returns 1 when alive, 0 when dead, negative when error;
748  *     may drop the lnet_net_lock */
749 static int
750 lnet_peer_alive_locked (struct lnet_ni *ni, struct lnet_peer_ni *lp)
751 {
752         cfs_time_t now = cfs_time_current();
753
754         if (!lnet_peer_aliveness_enabled(lp))
755                 return -ENODEV;
756
757         if (lnet_peer_is_alive(lp, now))
758                 return 1;
759
760         /*
761          * Peer appears dead, but we should avoid frequent NI queries (at
762          * most once per lnet_queryinterval seconds).
763          */
764         if (lp->lpni_last_query != 0) {
765                 static const int lnet_queryinterval = 1;
766
767                 cfs_time_t next_query =
768                            cfs_time_add(lp->lpni_last_query,
769                                         cfs_time_seconds(lnet_queryinterval));
770
771                 if (cfs_time_before(now, next_query)) {
772                         if (lp->lpni_alive)
773                                 CWARN("Unexpected aliveness of peer %s: "
774                                       "%d < %d (%d/%d)\n",
775                                       libcfs_nid2str(lp->lpni_nid),
776                                       (int)now, (int)next_query,
777                                       lnet_queryinterval,
778                                       lp->lpni_net->net_tunables.lct_peer_timeout);
779                         return 0;
780                 }
781         }
782
783         /* query NI for latest aliveness news */
784         lnet_ni_query_locked(ni, lp);
785
786         if (lnet_peer_is_alive(lp, now))
787                 return 1;
788
789         lnet_notify_locked(lp, 0, 0, lp->lpni_last_alive);
790         return 0;
791 }
792
793 /**
794  * \param msg The message to be sent.
795  * \param do_send True if lnet_ni_send() should be called in this function.
796  *        lnet_send() is going to lnet_net_unlock immediately after this, so
797  *        it sets do_send FALSE and I don't do the unlock/send/lock bit.
798  *
799  * \retval LNET_CREDIT_OK If \a msg sent or OK to send.
800  * \retval LNET_CREDIT_WAIT If \a msg blocked for credit.
801  * \retval -EHOSTUNREACH If the next hop of the message appears dead.
802  * \retval -ECANCELED If the MD of the message has been unlinked.
803  */
804 static int
805 lnet_post_send_locked(lnet_msg_t *msg, int do_send)
806 {
807         struct lnet_peer_ni     *lp = msg->msg_txpeer;
808         struct lnet_ni          *ni = msg->msg_txni;
809         int                     cpt = msg->msg_tx_cpt;
810         struct lnet_tx_queue    *tq = ni->ni_tx_queues[cpt];
811
812         /* non-lnet_send() callers have checked before */
813         LASSERT(!do_send || msg->msg_tx_delayed);
814         LASSERT(!msg->msg_receiving);
815         LASSERT(msg->msg_tx_committed);
816
817         /* NB 'lp' is always the next hop */
818         if ((msg->msg_target.pid & LNET_PID_USERFLAG) == 0 &&
819             lnet_peer_alive_locked(ni, lp) == 0) {
820                 the_lnet.ln_counters[cpt]->drop_count++;
821                 the_lnet.ln_counters[cpt]->drop_length += msg->msg_len;
822                 lnet_net_unlock(cpt);
823                 if (msg->msg_txpeer)
824                         atomic_inc(&msg->msg_txpeer->lpni_stats.drop_count);
825                 if (msg->msg_txni)
826                         atomic_inc(&msg->msg_txni->ni_stats.drop_count);
827
828                 CNETERR("Dropping message for %s: peer not alive\n",
829                         libcfs_id2str(msg->msg_target));
830                 if (do_send)
831                         lnet_finalize(ni, msg, -EHOSTUNREACH);
832
833                 lnet_net_lock(cpt);
834                 return -EHOSTUNREACH;
835         }
836
837         if (msg->msg_md != NULL &&
838             (msg->msg_md->md_flags & LNET_MD_FLAG_ABORTED) != 0) {
839                 lnet_net_unlock(cpt);
840
841                 CNETERR("Aborting message for %s: LNetM[DE]Unlink() already "
842                         "called on the MD/ME.\n",
843                         libcfs_id2str(msg->msg_target));
844                 if (do_send)
845                         lnet_finalize(ni, msg, -ECANCELED);
846
847                 lnet_net_lock(cpt);
848                 return -ECANCELED;
849         }
850
851         if (!msg->msg_peertxcredit) {
852                 spin_lock(&lp->lpni_lock);
853                 LASSERT((lp->lpni_txcredits < 0) ==
854                         !list_empty(&lp->lpni_txq));
855
856                 msg->msg_peertxcredit = 1;
857                 lp->lpni_txqnob += msg->msg_len + sizeof(lnet_hdr_t);
858                 lp->lpni_txcredits--;
859
860                 if (lp->lpni_txcredits < lp->lpni_mintxcredits)
861                         lp->lpni_mintxcredits = lp->lpni_txcredits;
862
863                 if (lp->lpni_txcredits < 0) {
864                         msg->msg_tx_delayed = 1;
865                         list_add_tail(&msg->msg_list, &lp->lpni_txq);
866                         spin_unlock(&lp->lpni_lock);
867                         return LNET_CREDIT_WAIT;
868                 }
869                 spin_unlock(&lp->lpni_lock);
870         }
871
872         if (!msg->msg_txcredit) {
873                 LASSERT((tq->tq_credits < 0) ==
874                         !list_empty(&tq->tq_delayed));
875
876                 msg->msg_txcredit = 1;
877                 tq->tq_credits--;
878                 atomic_dec(&ni->ni_tx_credits);
879
880                 if (tq->tq_credits < tq->tq_credits_min)
881                         tq->tq_credits_min = tq->tq_credits;
882
883                 if (tq->tq_credits < 0) {
884                         msg->msg_tx_delayed = 1;
885                         list_add_tail(&msg->msg_list, &tq->tq_delayed);
886                         return LNET_CREDIT_WAIT;
887                 }
888         }
889
890         if (do_send) {
891                 lnet_net_unlock(cpt);
892                 lnet_ni_send(ni, msg);
893                 lnet_net_lock(cpt);
894         }
895         return LNET_CREDIT_OK;
896 }
897
898
899 static lnet_rtrbufpool_t *
900 lnet_msg2bufpool(lnet_msg_t *msg)
901 {
902         lnet_rtrbufpool_t       *rbp;
903         int                     cpt;
904
905         LASSERT(msg->msg_rx_committed);
906
907         cpt = msg->msg_rx_cpt;
908         rbp = &the_lnet.ln_rtrpools[cpt][0];
909
910         LASSERT(msg->msg_len <= LNET_MTU);
911         while (msg->msg_len > (unsigned int)rbp->rbp_npages * PAGE_SIZE) {
912                 rbp++;
913                 LASSERT(rbp < &the_lnet.ln_rtrpools[cpt][LNET_NRBPOOLS]);
914         }
915
916         return rbp;
917 }
918
919 static int
920 lnet_post_routed_recv_locked (lnet_msg_t *msg, int do_recv)
921 {
922         /* lnet_parse is going to lnet_net_unlock immediately after this, so it
923          * sets do_recv FALSE and I don't do the unlock/send/lock bit.
924          * I return LNET_CREDIT_WAIT if msg blocked and LNET_CREDIT_OK if
925          * received or OK to receive */
926         struct lnet_peer_ni *lp = msg->msg_rxpeer;
927         lnet_rtrbufpool_t   *rbp;
928         lnet_rtrbuf_t       *rb;
929
930         LASSERT (msg->msg_iov == NULL);
931         LASSERT (msg->msg_kiov == NULL);
932         LASSERT (msg->msg_niov == 0);
933         LASSERT (msg->msg_routing);
934         LASSERT (msg->msg_receiving);
935         LASSERT (!msg->msg_sending);
936
937         /* non-lnet_parse callers only receive delayed messages */
938         LASSERT(!do_recv || msg->msg_rx_delayed);
939
940         if (!msg->msg_peerrtrcredit) {
941                 spin_lock(&lp->lpni_lock);
942                 LASSERT((lp->lpni_rtrcredits < 0) ==
943                         !list_empty(&lp->lpni_rtrq));
944
945                 msg->msg_peerrtrcredit = 1;
946                 lp->lpni_rtrcredits--;
947                 if (lp->lpni_rtrcredits < lp->lpni_minrtrcredits)
948                         lp->lpni_minrtrcredits = lp->lpni_rtrcredits;
949
950                 if (lp->lpni_rtrcredits < 0) {
951                         /* must have checked eager_recv before here */
952                         LASSERT(msg->msg_rx_ready_delay);
953                         msg->msg_rx_delayed = 1;
954                         list_add_tail(&msg->msg_list, &lp->lpni_rtrq);
955                         spin_unlock(&lp->lpni_lock);
956                         return LNET_CREDIT_WAIT;
957                 }
958                 spin_unlock(&lp->lpni_lock);
959         }
960
961         rbp = lnet_msg2bufpool(msg);
962
963         if (!msg->msg_rtrcredit) {
964                 msg->msg_rtrcredit = 1;
965                 rbp->rbp_credits--;
966                 if (rbp->rbp_credits < rbp->rbp_mincredits)
967                         rbp->rbp_mincredits = rbp->rbp_credits;
968
969                 if (rbp->rbp_credits < 0) {
970                         /* must have checked eager_recv before here */
971                         LASSERT(msg->msg_rx_ready_delay);
972                         msg->msg_rx_delayed = 1;
973                         list_add_tail(&msg->msg_list, &rbp->rbp_msgs);
974                         return LNET_CREDIT_WAIT;
975                 }
976         }
977
978         LASSERT(!list_empty(&rbp->rbp_bufs));
979         rb = list_entry(rbp->rbp_bufs.next, lnet_rtrbuf_t, rb_list);
980         list_del(&rb->rb_list);
981
982         msg->msg_niov = rbp->rbp_npages;
983         msg->msg_kiov = &rb->rb_kiov[0];
984
985         if (do_recv) {
986                 int cpt = msg->msg_rx_cpt;
987
988                 lnet_net_unlock(cpt);
989                 lnet_ni_recv(msg->msg_rxni, msg->msg_private, msg, 1,
990                              0, msg->msg_len, msg->msg_len);
991                 lnet_net_lock(cpt);
992         }
993         return LNET_CREDIT_OK;
994 }
995
996 void
997 lnet_return_tx_credits_locked(lnet_msg_t *msg)
998 {
999         struct lnet_peer_ni     *txpeer = msg->msg_txpeer;
1000         struct lnet_ni          *txni = msg->msg_txni;
1001         lnet_msg_t              *msg2;
1002
1003         if (msg->msg_txcredit) {
1004                 struct lnet_ni       *ni = msg->msg_txni;
1005                 struct lnet_tx_queue *tq = ni->ni_tx_queues[msg->msg_tx_cpt];
1006
1007                 /* give back NI txcredits */
1008                 msg->msg_txcredit = 0;
1009
1010                 LASSERT((tq->tq_credits < 0) ==
1011                         !list_empty(&tq->tq_delayed));
1012
1013                 tq->tq_credits++;
1014                 atomic_inc(&ni->ni_tx_credits);
1015                 if (tq->tq_credits <= 0) {
1016                         msg2 = list_entry(tq->tq_delayed.next,
1017                                           lnet_msg_t, msg_list);
1018                         list_del(&msg2->msg_list);
1019
1020                         LASSERT(msg2->msg_txni == ni);
1021                         LASSERT(msg2->msg_tx_delayed);
1022                         LASSERT(msg2->msg_tx_cpt == msg->msg_tx_cpt);
1023
1024                         (void) lnet_post_send_locked(msg2, 1);
1025                 }
1026         }
1027
1028         if (msg->msg_peertxcredit) {
1029                 /* give back peer txcredits */
1030                 msg->msg_peertxcredit = 0;
1031
1032                 spin_lock(&txpeer->lpni_lock);
1033                 LASSERT((txpeer->lpni_txcredits < 0) ==
1034                         !list_empty(&txpeer->lpni_txq));
1035
1036                 txpeer->lpni_txqnob -= msg->msg_len + sizeof(lnet_hdr_t);
1037                 LASSERT(txpeer->lpni_txqnob >= 0);
1038
1039                 txpeer->lpni_txcredits++;
1040                 if (txpeer->lpni_txcredits <= 0) {
1041                         msg2 = list_entry(txpeer->lpni_txq.next,
1042                                               lnet_msg_t, msg_list);
1043                         list_del(&msg2->msg_list);
1044                         spin_unlock(&txpeer->lpni_lock);
1045
1046                         LASSERT(msg2->msg_txpeer == txpeer);
1047                         LASSERT(msg2->msg_tx_delayed);
1048
1049                         if (msg2->msg_tx_cpt != msg->msg_tx_cpt) {
1050                                 lnet_net_unlock(msg->msg_tx_cpt);
1051                                 lnet_net_lock(msg2->msg_tx_cpt);
1052                         }
1053                         (void) lnet_post_send_locked(msg2, 1);
1054                         if (msg2->msg_tx_cpt != msg->msg_tx_cpt) {
1055                                 lnet_net_unlock(msg2->msg_tx_cpt);
1056                                 lnet_net_lock(msg->msg_tx_cpt);
1057                         }
1058                 } else {
1059                         spin_unlock(&txpeer->lpni_lock);
1060                 }
1061         }
1062
1063         if (txni != NULL) {
1064                 msg->msg_txni = NULL;
1065                 lnet_ni_decref_locked(txni, msg->msg_tx_cpt);
1066         }
1067
1068         if (txpeer != NULL) {
1069                 /*
1070                  * TODO:
1071                  * Once the patch for the health comes in we need to set
1072                  * the health of the peer ni to bad when we fail to send
1073                  * a message.
1074                  * int status = msg->msg_ev.status;
1075                  * if (status != 0)
1076                  *      lnet_set_peer_ni_health_locked(txpeer, false)
1077                  */
1078                 msg->msg_txpeer = NULL;
1079                 lnet_peer_ni_decref_locked(txpeer);
1080         }
1081 }
1082
1083 void
1084 lnet_schedule_blocked_locked(lnet_rtrbufpool_t *rbp)
1085 {
1086         lnet_msg_t      *msg;
1087
1088         if (list_empty(&rbp->rbp_msgs))
1089                 return;
1090         msg = list_entry(rbp->rbp_msgs.next,
1091                          lnet_msg_t, msg_list);
1092         list_del(&msg->msg_list);
1093
1094         (void)lnet_post_routed_recv_locked(msg, 1);
1095 }
1096
1097 void
1098 lnet_drop_routed_msgs_locked(struct list_head *list, int cpt)
1099 {
1100         lnet_msg_t *msg;
1101         lnet_msg_t *tmp;
1102
1103         lnet_net_unlock(cpt);
1104
1105         list_for_each_entry_safe(msg, tmp, list, msg_list) {
1106                 lnet_ni_recv(msg->msg_rxni, msg->msg_private, NULL,
1107                              0, 0, 0, msg->msg_hdr.payload_length);
1108                 list_del_init(&msg->msg_list);
1109                 lnet_finalize(NULL, msg, -ECANCELED);
1110         }
1111
1112         lnet_net_lock(cpt);
1113 }
1114
1115 void
1116 lnet_return_rx_credits_locked(lnet_msg_t *msg)
1117 {
1118         struct lnet_peer_ni     *rxpeer = msg->msg_rxpeer;
1119         struct lnet_ni          *rxni = msg->msg_rxni;
1120         lnet_msg_t              *msg2;
1121
1122         if (msg->msg_rtrcredit) {
1123                 /* give back global router credits */
1124                 lnet_rtrbuf_t     *rb;
1125                 lnet_rtrbufpool_t *rbp;
1126
1127                 /* NB If a msg ever blocks for a buffer in rbp_msgs, it stays
1128                  * there until it gets one allocated, or aborts the wait
1129                  * itself */
1130                 LASSERT(msg->msg_kiov != NULL);
1131
1132                 rb = list_entry(msg->msg_kiov, lnet_rtrbuf_t, rb_kiov[0]);
1133                 rbp = rb->rb_pool;
1134
1135                 msg->msg_kiov = NULL;
1136                 msg->msg_rtrcredit = 0;
1137
1138                 LASSERT(rbp == lnet_msg2bufpool(msg));
1139
1140                 LASSERT((rbp->rbp_credits > 0) ==
1141                         !list_empty(&rbp->rbp_bufs));
1142
1143                 /* If routing is now turned off, we just drop this buffer and
1144                  * don't bother trying to return credits.  */
1145                 if (!the_lnet.ln_routing) {
1146                         lnet_destroy_rtrbuf(rb, rbp->rbp_npages);
1147                         goto routing_off;
1148                 }
1149
1150                 /* It is possible that a user has lowered the desired number of
1151                  * buffers in this pool.  Make sure we never put back
1152                  * more buffers than the stated number. */
1153                 if (unlikely(rbp->rbp_credits >= rbp->rbp_req_nbuffers)) {
1154                         /* Discard this buffer so we don't have too
1155                          * many. */
1156                         lnet_destroy_rtrbuf(rb, rbp->rbp_npages);
1157                         rbp->rbp_nbuffers--;
1158                 } else {
1159                         list_add(&rb->rb_list, &rbp->rbp_bufs);
1160                         rbp->rbp_credits++;
1161                         if (rbp->rbp_credits <= 0)
1162                                 lnet_schedule_blocked_locked(rbp);
1163                 }
1164         }
1165
1166 routing_off:
1167         if (msg->msg_peerrtrcredit) {
1168                 /* give back peer router credits */
1169                 msg->msg_peerrtrcredit = 0;
1170
1171                 spin_lock(&rxpeer->lpni_lock);
1172                 LASSERT((rxpeer->lpni_rtrcredits < 0) ==
1173                         !list_empty(&rxpeer->lpni_rtrq));
1174
1175                 rxpeer->lpni_rtrcredits++;
1176
1177                 /* drop all messages which are queued to be routed on that
1178                  * peer. */
1179                 if (!the_lnet.ln_routing) {
1180                         struct list_head drop;
1181                         INIT_LIST_HEAD(&drop);
1182                         list_splice_init(&rxpeer->lpni_rtrq, &drop);
1183                         spin_unlock(&rxpeer->lpni_lock);
1184                         lnet_drop_routed_msgs_locked(&drop, msg->msg_rx_cpt);
1185                 } else if (rxpeer->lpni_rtrcredits <= 0) {
1186                         msg2 = list_entry(rxpeer->lpni_rtrq.next,
1187                                           lnet_msg_t, msg_list);
1188                         list_del(&msg2->msg_list);
1189                         spin_unlock(&rxpeer->lpni_lock);
1190                         (void) lnet_post_routed_recv_locked(msg2, 1);
1191                 } else {
1192                         spin_unlock(&rxpeer->lpni_lock);
1193                 }
1194         }
1195         if (rxni != NULL) {
1196                 msg->msg_rxni = NULL;
1197                 lnet_ni_decref_locked(rxni, msg->msg_rx_cpt);
1198         }
1199         if (rxpeer != NULL) {
1200                 msg->msg_rxpeer = NULL;
1201                 lnet_peer_ni_decref_locked(rxpeer);
1202         }
1203 }
1204
1205 static int
1206 lnet_compare_peers(struct lnet_peer_ni *p1, struct lnet_peer_ni *p2)
1207 {
1208         if (p1->lpni_txqnob < p2->lpni_txqnob)
1209                 return 1;
1210
1211         if (p1->lpni_txqnob > p2->lpni_txqnob)
1212                 return -1;
1213
1214         if (p1->lpni_txcredits > p2->lpni_txcredits)
1215                 return 1;
1216
1217         if (p1->lpni_txcredits < p2->lpni_txcredits)
1218                 return -1;
1219
1220         return 0;
1221 }
1222
1223 static int
1224 lnet_compare_routes(lnet_route_t *r1, lnet_route_t *r2)
1225 {
1226         struct lnet_peer_ni *p1 = r1->lr_gateway;
1227         struct lnet_peer_ni *p2 = r2->lr_gateway;
1228         int r1_hops = (r1->lr_hops == LNET_UNDEFINED_HOPS) ? 1 : r1->lr_hops;
1229         int r2_hops = (r2->lr_hops == LNET_UNDEFINED_HOPS) ? 1 : r2->lr_hops;
1230         int rc;
1231
1232         if (r1->lr_priority < r2->lr_priority)
1233                 return 1;
1234
1235         if (r1->lr_priority > r2->lr_priority)
1236                 return -1;
1237
1238         if (r1_hops < r2_hops)
1239                 return 1;
1240
1241         if (r1_hops > r2_hops)
1242                 return -1;
1243
1244         rc = lnet_compare_peers(p1, p2);
1245         if (rc)
1246                 return rc;
1247
1248         if (r1->lr_seq - r2->lr_seq <= 0)
1249                 return 1;
1250
1251         return -1;
1252 }
1253
1254 static struct lnet_peer_ni *
1255 lnet_find_route_locked(struct lnet_net *net, lnet_nid_t target,
1256                        lnet_nid_t rtr_nid)
1257 {
1258         lnet_remotenet_t        *rnet;
1259         lnet_route_t            *route;
1260         lnet_route_t            *best_route;
1261         lnet_route_t            *last_route;
1262         struct lnet_peer_ni     *lpni_best;
1263         struct lnet_peer_ni     *lp;
1264         int                     rc;
1265
1266         /* If @rtr_nid is not LNET_NID_ANY, return the gateway with
1267          * rtr_nid nid, otherwise find the best gateway I can use */
1268
1269         rnet = lnet_find_rnet_locked(LNET_NIDNET(target));
1270         if (rnet == NULL)
1271                 return NULL;
1272
1273         lpni_best = NULL;
1274         best_route = last_route = NULL;
1275         list_for_each_entry(route, &rnet->lrn_routes, lr_list) {
1276                 lp = route->lr_gateway;
1277
1278                 if (!lnet_is_route_alive(route))
1279                         continue;
1280
1281                 if (net != NULL && lp->lpni_net != net)
1282                         continue;
1283
1284                 if (lp->lpni_nid == rtr_nid) /* it's pre-determined router */
1285                         return lp;
1286
1287                 if (lpni_best == NULL) {
1288                         best_route = last_route = route;
1289                         lpni_best = lp;
1290                         continue;
1291                 }
1292
1293                 /* no protection on below fields, but it's harmless */
1294                 if (last_route->lr_seq - route->lr_seq < 0)
1295                         last_route = route;
1296
1297                 rc = lnet_compare_routes(route, best_route);
1298                 if (rc < 0)
1299                         continue;
1300
1301                 best_route = route;
1302                 lpni_best = lp;
1303         }
1304
1305         /* set sequence number on the best router to the latest sequence + 1
1306          * so we can round-robin all routers, it's race and inaccurate but
1307          * harmless and functional  */
1308         if (best_route != NULL)
1309                 best_route->lr_seq = last_route->lr_seq + 1;
1310         return lpni_best;
1311 }
1312
1313 static struct lnet_ni *
1314 lnet_get_best_ni(struct lnet_net *local_net, struct lnet_ni *cur_ni,
1315                  int md_cpt)
1316 {
1317         struct lnet_ni *ni = NULL, *best_ni = cur_ni;
1318         unsigned int shortest_distance;
1319         int best_credits;
1320
1321         if (best_ni == NULL) {
1322                 shortest_distance = UINT_MAX;
1323                 best_credits = INT_MIN;
1324         } else {
1325                 shortest_distance = cfs_cpt_distance(lnet_cpt_table(), md_cpt,
1326                                                      best_ni->ni_dev_cpt);
1327                 best_credits = atomic_read(&best_ni->ni_tx_credits);
1328         }
1329
1330         while ((ni = lnet_get_next_ni_locked(local_net, ni))) {
1331                 unsigned int distance;
1332                 int ni_credits;
1333
1334                 if (!lnet_is_ni_healthy_locked(ni))
1335                         continue;
1336
1337                 ni_credits = atomic_read(&ni->ni_tx_credits);
1338
1339                 /*
1340                  * calculate the distance from the CPT on which
1341                  * the message memory is allocated to the CPT of
1342                  * the NI's physical device
1343                  */
1344                 distance = cfs_cpt_distance(lnet_cpt_table(),
1345                                             md_cpt,
1346                                             ni->ni_dev_cpt);
1347
1348                 /*
1349                  * All distances smaller than the NUMA range
1350                  * are treated equally.
1351                  */
1352                 if (distance < lnet_numa_range)
1353                         distance = lnet_numa_range;
1354
1355                 /*
1356                  * Select on shorter distance, then available
1357                  * credits, then round-robin.
1358                  */
1359                 if (distance > shortest_distance) {
1360                         continue;
1361                 } else if (distance < shortest_distance) {
1362                         shortest_distance = distance;
1363                 } else if (ni_credits < best_credits) {
1364                         continue;
1365                 } else if (ni_credits == best_credits) {
1366                         if (best_ni && (best_ni)->ni_seq <= ni->ni_seq)
1367                                 continue;
1368                 }
1369                 best_ni = ni;
1370                 best_credits = ni_credits;
1371         }
1372
1373         return best_ni;
1374 }
1375
1376 static int
1377 lnet_select_pathway(lnet_nid_t src_nid, lnet_nid_t dst_nid,
1378                     struct lnet_msg *msg, lnet_nid_t rtr_nid)
1379 {
1380         struct lnet_ni          *best_ni;
1381         struct lnet_peer_ni     *best_lpni;
1382         struct lnet_peer_ni     *best_gw;
1383         struct lnet_peer_ni     *lpni;
1384         struct lnet_peer_ni     *final_dst;
1385         struct lnet_peer        *peer;
1386         struct lnet_peer_net    *peer_net;
1387         struct lnet_net         *local_net;
1388         __u32                   seq;
1389         int                     cpt, cpt2, rc;
1390         bool                    routing;
1391         bool                    routing2;
1392         bool                    ni_is_pref;
1393         bool                    preferred;
1394         bool                    local_found;
1395         int                     best_lpni_credits;
1396         int                     md_cpt;
1397
1398         /*
1399          * get an initial CPT to use for locking. The idea here is not to
1400          * serialize the calls to select_pathway, so that as many
1401          * operations can run concurrently as possible. To do that we use
1402          * the CPT where this call is being executed. Later on when we
1403          * determine the CPT to use in lnet_message_commit, we switch the
1404          * lock and check if there was any configuration change.  If none,
1405          * then we proceed, if there is, then we restart the operation.
1406          */
1407         cpt = lnet_net_lock_current();
1408 again:
1409         best_ni = NULL;
1410         best_lpni = NULL;
1411         best_gw = NULL;
1412         final_dst = NULL;
1413         local_net = NULL;
1414         routing = false;
1415         routing2 = false;
1416         local_found = false;
1417
1418         seq = lnet_get_dlc_seq_locked();
1419
1420         if (the_lnet.ln_shutdown) {
1421                 lnet_net_unlock(cpt);
1422                 return -ESHUTDOWN;
1423         }
1424
1425         if (msg->msg_md != NULL)
1426                 /* get the cpt of the MD, used during NUMA based selection */
1427                 md_cpt = lnet_cpt_of_cookie(msg->msg_md->md_lh.lh_cookie);
1428         else
1429                 md_cpt = CFS_CPT_ANY;
1430
1431         peer = lnet_find_or_create_peer_locked(dst_nid, cpt);
1432         if (IS_ERR(peer)) {
1433                 lnet_net_unlock(cpt);
1434                 return PTR_ERR(peer);
1435         }
1436
1437         /* If peer is not healthy then can not send anything to it */
1438         if (!lnet_is_peer_healthy_locked(peer)) {
1439                 lnet_net_unlock(cpt);
1440                 return -EHOSTUNREACH;
1441         }
1442
1443         if (!peer->lp_multi_rail && lnet_get_num_peer_nis(peer) > 1) {
1444                 CERROR("peer %s is declared to be non MR capable, "
1445                        "yet configured with more than one NID\n",
1446                        libcfs_nid2str(dst_nid));
1447                 return -EINVAL;
1448         }
1449
1450         /*
1451          * STEP 1: first jab at determining best_ni
1452          * if src_nid is explicitly specified, then best_ni is already
1453          * pre-determiend for us. Otherwise we need to select the best
1454          * one to use later on
1455          */
1456         if (src_nid != LNET_NID_ANY) {
1457                 best_ni = lnet_nid2ni_locked(src_nid, cpt);
1458                 if (!best_ni) {
1459                         lnet_net_unlock(cpt);
1460                         LCONSOLE_WARN("Can't send to %s: src %s is not a "
1461                                       "local nid\n", libcfs_nid2str(dst_nid),
1462                                       libcfs_nid2str(src_nid));
1463                         return -EINVAL;
1464                 }
1465         }
1466
1467         if (msg->msg_type == LNET_MSG_REPLY ||
1468             msg->msg_type == LNET_MSG_ACK ||
1469             !peer->lp_multi_rail) {
1470                 /*
1471                  * for replies we want to respond on the same peer_ni we
1472                  * received the message on if possible. If not, then pick
1473                  * a peer_ni to send to
1474                  *
1475                  * if the peer is non-multi-rail then you want to send to
1476                  * the dst_nid provided as well.
1477                  *
1478                  * It is expected to find the lpni using dst_nid, since we
1479                  * created it earlier.
1480                  */
1481                 best_lpni = lnet_find_peer_ni_locked(dst_nid);
1482                 if (best_lpni)
1483                         lnet_peer_ni_decref_locked(best_lpni);
1484
1485                 if (best_lpni && !lnet_get_net_locked(LNET_NIDNET(dst_nid))) {
1486                         /*
1487                          * this lpni is not on a local network so we need
1488                          * to route this reply.
1489                          */
1490                         best_gw = lnet_find_route_locked(NULL,
1491                                                          best_lpni->lpni_nid,
1492                                                          rtr_nid);
1493                         if (best_gw) {
1494                                 /*
1495                                 * RULE: Each node considers only the next-hop
1496                                 *
1497                                 * We're going to route the message, so change the peer to
1498                                 * the router.
1499                                 */
1500                                 LASSERT(best_gw->lpni_peer_net);
1501                                 LASSERT(best_gw->lpni_peer_net->lpn_peer);
1502                                 peer = best_gw->lpni_peer_net->lpn_peer;
1503
1504                                 /*
1505                                 * if the router is not multi-rail then use the best_gw
1506                                 * found to send the message to
1507                                 */
1508                                 if (!peer->lp_multi_rail)
1509                                         best_lpni = best_gw;
1510                                 else
1511                                         best_lpni = NULL;
1512
1513                                 routing = true;
1514                         } else {
1515                                 best_lpni = NULL;
1516                         }
1517                 } else if (!best_lpni) {
1518                         lnet_net_unlock(cpt);
1519                         CERROR("unable to send msg_type %d to "
1520                               "originating %s. Destination NID not in DB\n",
1521                               msg->msg_type, libcfs_nid2str(dst_nid));
1522                         return -EINVAL;
1523                 }
1524         }
1525
1526         /*
1527          * if the peer is not MR capable, then we should always send to it
1528          * using the first NI in the NET we determined.
1529          */
1530         if (!peer->lp_multi_rail) {
1531                 if (!best_lpni) {
1532                         lnet_net_unlock(cpt);
1533                         CERROR("no route to %s\n",
1534                                libcfs_nid2str(dst_nid));
1535                         return -EHOSTUNREACH;
1536                 }
1537
1538                 /* best ni could be set because src_nid was provided */
1539                 if (!best_ni) {
1540                         best_ni = lnet_net2ni_locked(best_lpni->lpni_net->net_id, cpt);
1541                         if (!best_ni) {
1542                                 lnet_net_unlock(cpt);
1543                                 CERROR("no path to %s from net %s\n",
1544                                 libcfs_nid2str(best_lpni->lpni_nid),
1545                                 libcfs_net2str(best_lpni->lpni_net->net_id));
1546                                 return -EHOSTUNREACH;
1547                         }
1548                 }
1549         }
1550
1551         if (best_ni == the_lnet.ln_loni) {
1552                 /* No send credit hassles with LOLND */
1553                 lnet_ni_addref_locked(best_ni, cpt);
1554                 msg->msg_hdr.dest_nid = cpu_to_le64(best_ni->ni_nid);
1555                 if (!msg->msg_routing)
1556                         msg->msg_hdr.src_nid = cpu_to_le64(best_ni->ni_nid);
1557                 msg->msg_target.nid = best_ni->ni_nid;
1558                 lnet_msg_commit(msg, cpt);
1559                 msg->msg_txni = best_ni;
1560                 lnet_net_unlock(cpt);
1561
1562                 return LNET_CREDIT_OK;
1563         }
1564
1565         /*
1566          * if we already found a best_ni because src_nid is specified and
1567          * best_lpni because we are replying to a message then just send
1568          * the message
1569          */
1570         if (best_ni && best_lpni)
1571                 goto send;
1572
1573         /*
1574          * If we already found a best_ni because src_nid is specified then
1575          * pick the peer then send the message
1576          */
1577         if (best_ni)
1578                 goto pick_peer;
1579
1580         /*
1581          * pick the best_ni by going through all the possible networks of
1582          * that peer and see which local NI is best suited to talk to that
1583          * peer.
1584          *
1585          * Locally connected networks will always be preferred over
1586          * a routed network. If there are only routed paths to the peer,
1587          * then the best route is chosen. If all routes are equal then
1588          * they are used in round robin.
1589          */
1590         list_for_each_entry(peer_net, &peer->lp_peer_nets, lpn_on_peer_list) {
1591                 if (!lnet_is_peer_net_healthy_locked(peer_net))
1592                         continue;
1593
1594                 local_net = lnet_get_net_locked(peer_net->lpn_net_id);
1595                 if (!local_net && !routing && !local_found) {
1596                         struct lnet_peer_ni *net_gw;
1597
1598                         lpni = list_entry(peer_net->lpn_peer_nis.next,
1599                                           struct lnet_peer_ni,
1600                                           lpni_on_peer_net_list);
1601
1602                         net_gw = lnet_find_route_locked(NULL,
1603                                                         lpni->lpni_nid,
1604                                                         rtr_nid);
1605                         if (!net_gw)
1606                                 continue;
1607
1608                         if (best_gw) {
1609                                 /*
1610                                  * lnet_find_route_locked() call
1611                                  * will return the best_Gw on the
1612                                  * lpni->lpni_nid network.
1613                                  * However, best_gw and net_gw can
1614                                  * be on different networks.
1615                                  * Therefore need to compare them
1616                                  * to pick the better of either.
1617                                  */
1618                                 if (lnet_compare_peers(best_gw, net_gw) > 0)
1619                                         continue;
1620                                 if (best_gw->lpni_gw_seq <= net_gw->lpni_gw_seq)
1621                                         continue;
1622                         }
1623                         best_gw = net_gw;
1624                         final_dst = lpni;
1625
1626                         routing2 = true;
1627                 } else {
1628                         best_gw = NULL;
1629                         final_dst = NULL;
1630                         routing2 = false;
1631                         local_found = true;
1632                 }
1633
1634                 /*
1635                  * a gw on this network is found, but there could be
1636                  * other better gateways on other networks. So don't pick
1637                  * the best_ni until we determine the best_gw.
1638                  */
1639                 if (best_gw)
1640                         continue;
1641
1642                 /* if no local_net found continue */
1643                 if (!local_net)
1644                         continue;
1645
1646                 /*
1647                  * Iterate through the NIs in this local Net and select
1648                  * the NI to send from. The selection is determined by
1649                  * these 3 criterion in the following priority:
1650                  *      1. NUMA
1651                  *      2. NI available credits
1652                  *      3. Round Robin
1653                  */
1654                 best_ni = lnet_get_best_ni(local_net, best_ni, md_cpt);
1655         }
1656
1657         if (!best_ni && !best_gw) {
1658                 lnet_net_unlock(cpt);
1659                 LCONSOLE_WARN("No local ni found to send from to %s\n",
1660                         libcfs_nid2str(dst_nid));
1661                 return -EINVAL;
1662         }
1663
1664         if (!best_ni) {
1665                 best_ni = lnet_get_best_ni(best_gw->lpni_net, best_ni, md_cpt);
1666                 LASSERT(best_gw && best_ni);
1667
1668                 /*
1669                  * We're going to route the message, so change the peer to
1670                  * the router.
1671                  */
1672                 LASSERT(best_gw->lpni_peer_net);
1673                 LASSERT(best_gw->lpni_peer_net->lpn_peer);
1674                 best_gw->lpni_gw_seq++;
1675                 peer = best_gw->lpni_peer_net->lpn_peer;
1676         }
1677
1678         /*
1679          * Now that we selected the NI to use increment its sequence
1680          * number so the Round Robin algorithm will detect that it has
1681          * been used and pick the next NI.
1682          */
1683         best_ni->ni_seq++;
1684
1685 pick_peer:
1686         /*
1687          * At this point the best_ni is on a local network on which
1688          * the peer has a peer_ni as well
1689          */
1690         peer_net = lnet_peer_get_net_locked(peer,
1691                                             best_ni->ni_net->net_id);
1692         /*
1693          * peer_net is not available or the src_nid is explicitly defined
1694          * and the peer_net for that src_nid is unhealthy. find a route to
1695          * the destination nid.
1696          */
1697         if (!peer_net ||
1698             (src_nid != LNET_NID_ANY &&
1699              !lnet_is_peer_net_healthy_locked(peer_net))) {
1700                 best_gw = lnet_find_route_locked(best_ni->ni_net,
1701                                                  dst_nid,
1702                                                  rtr_nid);
1703                 /*
1704                  * if no route is found for that network then
1705                  * move onto the next peer_ni in the peer
1706                  */
1707                 if (!best_gw) {
1708                         lnet_net_unlock(cpt);
1709                         LCONSOLE_WARN("No route to peer from %s\n",
1710                                 libcfs_nid2str(best_ni->ni_nid));
1711                         return -EHOSTUNREACH;
1712                 }
1713
1714                 CDEBUG(D_NET, "Best route to %s via %s for %s %d\n",
1715                         libcfs_nid2str(dst_nid),
1716                         libcfs_nid2str(best_gw->lpni_nid),
1717                         lnet_msgtyp2str(msg->msg_type), msg->msg_len);
1718
1719                 routing2 = true;
1720                 /*
1721                  * RULE: Each node considers only the next-hop
1722                  *
1723                  * We're going to route the message, so change the peer to
1724                  * the router.
1725                  */
1726                 LASSERT(best_gw->lpni_peer_net);
1727                 LASSERT(best_gw->lpni_peer_net->lpn_peer);
1728                 peer = best_gw->lpni_peer_net->lpn_peer;
1729         } else if (!lnet_is_peer_net_healthy_locked(peer_net)) {
1730                 /*
1731                  * this peer_net is unhealthy but we still have an opportunity
1732                  * to find another peer_net that we can use
1733                  */
1734                 __u32 net_id = peer_net->lpn_net_id;
1735                 LCONSOLE_WARN("peer net %s unhealthy\n",
1736                               libcfs_net2str(net_id));
1737                 goto again;
1738         }
1739
1740         /*
1741          * Look at the peer NIs for the destination peer that connect
1742          * to the chosen net. If a peer_ni is preferred when using the
1743          * best_ni to communicate, we use that one. If there is no
1744          * preferred peer_ni, or there are multiple preferred peer_ni,
1745          * the available transmit credits are used. If the transmit
1746          * credits are equal, we round-robin over the peer_ni.
1747          */
1748         lpni = NULL;
1749         best_lpni_credits = INT_MIN;
1750         preferred = false;
1751         best_lpni = NULL;
1752         while ((lpni = lnet_get_next_peer_ni_locked(peer, peer_net, lpni))) {
1753                 /*
1754                  * if this peer ni is not healthy just skip it, no point in
1755                  * examining it further
1756                  */
1757                 if (!lnet_is_peer_ni_healthy_locked(lpni))
1758                         continue;
1759                 ni_is_pref = lnet_peer_is_ni_pref_locked(lpni, best_ni);
1760
1761                 /* if this is a preferred peer use it */
1762                 if (!preferred && ni_is_pref) {
1763                         preferred = true;
1764                 } else if (preferred && !ni_is_pref) {
1765                         /*
1766                          * this is not the preferred peer so let's ignore
1767                          * it.
1768                          */
1769                         continue;
1770                 } else if (lpni->lpni_txcredits < best_lpni_credits) {
1771                         /*
1772                          * We already have a peer that has more credits
1773                          * available than this one. No need to consider
1774                          * this peer further.
1775                          */
1776                         continue;
1777                 } else if (lpni->lpni_txcredits == best_lpni_credits) {
1778                         /*
1779                          * The best peer found so far and the current peer
1780                          * have the same number of available credits let's
1781                          * make sure to select between them using Round
1782                          * Robin
1783                          */
1784                         if (best_lpni) {
1785                                 if (best_lpni->lpni_seq <= lpni->lpni_seq)
1786                                         continue;
1787                         }
1788                 }
1789
1790                 best_lpni = lpni;
1791                 best_lpni_credits = lpni->lpni_txcredits;
1792         }
1793
1794         /* if we still can't find a peer ni then we can't reach it */
1795         if (!best_lpni) {
1796                 __u32 net_id = peer_net->lpn_net_id;
1797                 lnet_net_unlock(cpt);
1798                 LCONSOLE_WARN("no peer_ni found on peer net %s\n",
1799                                 libcfs_net2str(net_id));
1800                 return -EHOSTUNREACH;
1801         }
1802
1803
1804 send:
1805         routing = routing || routing2;
1806
1807         /*
1808          * Increment sequence number of the peer selected so that we
1809          * pick the next one in Round Robin.
1810          */
1811         best_lpni->lpni_seq++;
1812
1813         /*
1814          * grab a reference on the peer_ni so it sticks around even if
1815          * we need to drop and relock the lnet_net_lock below.
1816          */
1817         lnet_peer_ni_addref_locked(best_lpni);
1818
1819         /*
1820          * Use lnet_cpt_of_nid() to determine the CPT used to commit the
1821          * message. This ensures that we get a CPT that is correct for
1822          * the NI when the NI has been restricted to a subset of all CPTs.
1823          * If the selected CPT differs from the one currently locked, we
1824          * must unlock and relock the lnet_net_lock(), and then check whether
1825          * the configuration has changed. We don't have a hold on the best_ni
1826          * yet, and it may have vanished.
1827          */
1828         cpt2 = lnet_cpt_of_nid_locked(best_lpni->lpni_nid, best_ni);
1829         if (cpt != cpt2) {
1830                 lnet_net_unlock(cpt);
1831                 cpt = cpt2;
1832                 lnet_net_lock(cpt);
1833                 if (seq != lnet_get_dlc_seq_locked()) {
1834                         lnet_peer_ni_decref_locked(best_lpni);
1835                         goto again;
1836                 }
1837         }
1838
1839         /*
1840          * store the best_lpni in the message right away to avoid having
1841          * to do the same operation under different conditions
1842          */
1843         msg->msg_txpeer = best_lpni;
1844         msg->msg_txni = best_ni;
1845
1846         /*
1847          * grab a reference for the best_ni since now it's in use in this
1848          * send. the reference will need to be dropped when the message is
1849          * finished in lnet_finalize()
1850          */
1851         lnet_ni_addref_locked(msg->msg_txni, cpt);
1852
1853         /*
1854          * Always set the target.nid to the best peer picked. Either the
1855          * nid will be one of the preconfigured NIDs, or the same NID as
1856          * what was originally set in the target or it will be the NID of
1857          * a router if this message should be routed
1858          */
1859         msg->msg_target.nid = msg->msg_txpeer->lpni_nid;
1860
1861         /*
1862          * lnet_msg_commit assigns the correct cpt to the message, which
1863          * is used to decrement the correct refcount on the ni when it's
1864          * time to return the credits
1865          */
1866         lnet_msg_commit(msg, cpt);
1867
1868         /*
1869          * If we are routing the message then we don't need to overwrite
1870          * the src_nid since it would've been set at the origin. Otherwise
1871          * we are the originator so we need to set it.
1872          */
1873         if (!msg->msg_routing)
1874                 msg->msg_hdr.src_nid = cpu_to_le64(msg->msg_txni->ni_nid);
1875
1876         if (routing) {
1877                 msg->msg_target_is_router = 1;
1878                 msg->msg_target.pid = LNET_PID_LUSTRE;
1879                 /*
1880                  * since we're routing we want to ensure that the
1881                  * msg_hdr.dest_nid is set to the final destination. When
1882                  * the router receives this message it knows how to route
1883                  * it.
1884                  */
1885                 msg->msg_hdr.dest_nid =
1886                         cpu_to_le64(final_dst ? final_dst->lpni_nid : dst_nid);
1887         } else {
1888                 /*
1889                  * if we're not routing set the dest_nid to the best peer
1890                  * ni that we picked earlier in the algorithm.
1891                  */
1892                 msg->msg_hdr.dest_nid = cpu_to_le64(msg->msg_txpeer->lpni_nid);
1893         }
1894
1895         rc = lnet_post_send_locked(msg, 0);
1896
1897         lnet_net_unlock(cpt);
1898
1899         return rc;
1900 }
1901
1902 int
1903 lnet_send(lnet_nid_t src_nid, lnet_msg_t *msg, lnet_nid_t rtr_nid)
1904 {
1905         lnet_nid_t              dst_nid = msg->msg_target.nid;
1906         int                     rc;
1907
1908         /*
1909          * NB: rtr_nid is set to LNET_NID_ANY for all current use-cases,
1910          * but we might want to use pre-determined router for ACK/REPLY
1911          * in the future
1912          */
1913         /* NB: ni != NULL == interface pre-determined (ACK/REPLY) */
1914         LASSERT (msg->msg_txpeer == NULL);
1915         LASSERT (!msg->msg_sending);
1916         LASSERT (!msg->msg_target_is_router);
1917         LASSERT (!msg->msg_receiving);
1918
1919         msg->msg_sending = 1;
1920
1921         LASSERT(!msg->msg_tx_committed);
1922
1923         rc = lnet_select_pathway(src_nid, dst_nid, msg, rtr_nid);
1924         if (rc < 0)
1925                 return rc;
1926
1927         if (rc == LNET_CREDIT_OK)
1928                 lnet_ni_send(msg->msg_txni, msg);
1929
1930         /* rc == LNET_CREDIT_OK or LNET_CREDIT_WAIT */
1931         return 0;
1932 }
1933
1934 void
1935 lnet_drop_message(lnet_ni_t *ni, int cpt, void *private, unsigned int nob)
1936 {
1937         lnet_net_lock(cpt);
1938         the_lnet.ln_counters[cpt]->drop_count++;
1939         the_lnet.ln_counters[cpt]->drop_length += nob;
1940         lnet_net_unlock(cpt);
1941
1942         lnet_ni_recv(ni, private, NULL, 0, 0, 0, nob);
1943 }
1944
1945 static void
1946 lnet_recv_put(lnet_ni_t *ni, lnet_msg_t *msg)
1947 {
1948         lnet_hdr_t      *hdr = &msg->msg_hdr;
1949
1950         if (msg->msg_wanted != 0)
1951                 lnet_setpayloadbuffer(msg);
1952
1953         lnet_build_msg_event(msg, LNET_EVENT_PUT);
1954
1955         /* Must I ACK?  If so I'll grab the ack_wmd out of the header and put
1956          * it back into the ACK during lnet_finalize() */
1957         msg->msg_ack = (!lnet_is_wire_handle_none(&hdr->msg.put.ack_wmd) &&
1958                         (msg->msg_md->md_options & LNET_MD_ACK_DISABLE) == 0);
1959
1960         lnet_ni_recv(ni, msg->msg_private, msg, msg->msg_rx_delayed,
1961                      msg->msg_offset, msg->msg_wanted, hdr->payload_length);
1962 }
1963
1964 static int
1965 lnet_parse_put(lnet_ni_t *ni, lnet_msg_t *msg)
1966 {
1967         lnet_hdr_t              *hdr = &msg->msg_hdr;
1968         struct lnet_match_info  info;
1969         int                     rc;
1970         bool                    ready_delay;
1971
1972         /* Convert put fields to host byte order */
1973         hdr->msg.put.match_bits = le64_to_cpu(hdr->msg.put.match_bits);
1974         hdr->msg.put.ptl_index  = le32_to_cpu(hdr->msg.put.ptl_index);
1975         hdr->msg.put.offset     = le32_to_cpu(hdr->msg.put.offset);
1976
1977         /* Primary peer NID. */
1978         info.mi_id.nid  = msg->msg_initiator;
1979         info.mi_id.pid  = hdr->src_pid;
1980         info.mi_opc     = LNET_MD_OP_PUT;
1981         info.mi_portal  = hdr->msg.put.ptl_index;
1982         info.mi_rlength = hdr->payload_length;
1983         info.mi_roffset = hdr->msg.put.offset;
1984         info.mi_mbits   = hdr->msg.put.match_bits;
1985         info.mi_cpt     = lnet_cpt_of_nid(msg->msg_rxpeer->lpni_nid, ni);
1986
1987         msg->msg_rx_ready_delay = ni->ni_net->net_lnd->lnd_eager_recv == NULL;
1988         ready_delay = msg->msg_rx_ready_delay;
1989
1990  again:
1991         rc = lnet_ptl_match_md(&info, msg);
1992         switch (rc) {
1993         default:
1994                 LBUG();
1995
1996         case LNET_MATCHMD_OK:
1997                 lnet_recv_put(ni, msg);
1998                 return 0;
1999
2000         case LNET_MATCHMD_NONE:
2001                 if (ready_delay)
2002                         /* no eager_recv or has already called it, should
2003                          * have been attached on delayed list */
2004                         return 0;
2005
2006                 rc = lnet_ni_eager_recv(ni, msg);
2007                 if (rc == 0) {
2008                         ready_delay = true;
2009                         goto again;
2010                 }
2011                 /* fall through */
2012
2013         case LNET_MATCHMD_DROP:
2014                 CNETERR("Dropping PUT from %s portal %d match %llu"
2015                         " offset %d length %d: %d\n",
2016                         libcfs_id2str(info.mi_id), info.mi_portal,
2017                         info.mi_mbits, info.mi_roffset, info.mi_rlength, rc);
2018
2019                 return -ENOENT; /* -ve: OK but no match */
2020         }
2021 }
2022
2023 static int
2024 lnet_parse_get(lnet_ni_t *ni, lnet_msg_t *msg, int rdma_get)
2025 {
2026         struct lnet_match_info  info;
2027         lnet_hdr_t              *hdr = &msg->msg_hdr;
2028         lnet_process_id_t       source_id;
2029         struct lnet_handle_wire reply_wmd;
2030         int                     rc;
2031
2032         /* Convert get fields to host byte order */
2033         hdr->msg.get.match_bits   = le64_to_cpu(hdr->msg.get.match_bits);
2034         hdr->msg.get.ptl_index    = le32_to_cpu(hdr->msg.get.ptl_index);
2035         hdr->msg.get.sink_length  = le32_to_cpu(hdr->msg.get.sink_length);
2036         hdr->msg.get.src_offset   = le32_to_cpu(hdr->msg.get.src_offset);
2037
2038         source_id.nid = hdr->src_nid;
2039         source_id.pid = hdr->src_pid;
2040         /* Primary peer NID */
2041         info.mi_id.nid  = msg->msg_initiator;
2042         info.mi_id.pid  = hdr->src_pid;
2043         info.mi_opc     = LNET_MD_OP_GET;
2044         info.mi_portal  = hdr->msg.get.ptl_index;
2045         info.mi_rlength = hdr->msg.get.sink_length;
2046         info.mi_roffset = hdr->msg.get.src_offset;
2047         info.mi_mbits   = hdr->msg.get.match_bits;
2048         info.mi_cpt     = lnet_cpt_of_nid(msg->msg_rxpeer->lpni_nid, ni);
2049
2050         rc = lnet_ptl_match_md(&info, msg);
2051         if (rc == LNET_MATCHMD_DROP) {
2052                 CNETERR("Dropping GET from %s portal %d match %llu"
2053                         " offset %d length %d\n",
2054                         libcfs_id2str(info.mi_id), info.mi_portal,
2055                         info.mi_mbits, info.mi_roffset, info.mi_rlength);
2056                 return -ENOENT; /* -ve: OK but no match */
2057         }
2058
2059         LASSERT(rc == LNET_MATCHMD_OK);
2060
2061         lnet_build_msg_event(msg, LNET_EVENT_GET);
2062
2063         reply_wmd = hdr->msg.get.return_wmd;
2064
2065         lnet_prep_send(msg, LNET_MSG_REPLY, source_id,
2066                        msg->msg_offset, msg->msg_wanted);
2067
2068         msg->msg_hdr.msg.reply.dst_wmd = reply_wmd;
2069
2070         if (rdma_get) {
2071                 /* The LND completes the REPLY from her recv procedure */
2072                 lnet_ni_recv(ni, msg->msg_private, msg, 0,
2073                              msg->msg_offset, msg->msg_len, msg->msg_len);
2074                 return 0;
2075         }
2076
2077         lnet_ni_recv(ni, msg->msg_private, NULL, 0, 0, 0, 0);
2078         msg->msg_receiving = 0;
2079
2080         rc = lnet_send(ni->ni_nid, msg, LNET_NID_ANY);
2081         if (rc < 0) {
2082                 /* didn't get as far as lnet_ni_send() */
2083                 CERROR("%s: Unable to send REPLY for GET from %s: %d\n",
2084                        libcfs_nid2str(ni->ni_nid),
2085                        libcfs_id2str(info.mi_id), rc);
2086
2087                 lnet_finalize(ni, msg, rc);
2088         }
2089
2090         return 0;
2091 }
2092
2093 static int
2094 lnet_parse_reply(lnet_ni_t *ni, lnet_msg_t *msg)
2095 {
2096         void             *private = msg->msg_private;
2097         lnet_hdr_t       *hdr = &msg->msg_hdr;
2098         lnet_process_id_t src = {0};
2099         lnet_libmd_t     *md;
2100         int               rlength;
2101         int               mlength;
2102         int                     cpt;
2103
2104         cpt = lnet_cpt_of_cookie(hdr->msg.reply.dst_wmd.wh_object_cookie);
2105         lnet_res_lock(cpt);
2106
2107         src.nid = hdr->src_nid;
2108         src.pid = hdr->src_pid;
2109
2110         /* NB handles only looked up by creator (no flips) */
2111         md = lnet_wire_handle2md(&hdr->msg.reply.dst_wmd);
2112         if (md == NULL || md->md_threshold == 0 || md->md_me != NULL) {
2113                 CNETERR("%s: Dropping REPLY from %s for %s "
2114                         "MD %#llx.%#llx\n",
2115                         libcfs_nid2str(ni->ni_nid), libcfs_id2str(src),
2116                         (md == NULL) ? "invalid" : "inactive",
2117                         hdr->msg.reply.dst_wmd.wh_interface_cookie,
2118                         hdr->msg.reply.dst_wmd.wh_object_cookie);
2119                 if (md != NULL && md->md_me != NULL)
2120                         CERROR("REPLY MD also attached to portal %d\n",
2121                                md->md_me->me_portal);
2122
2123                 lnet_res_unlock(cpt);
2124                 return -ENOENT; /* -ve: OK but no match */
2125         }
2126
2127         LASSERT(md->md_offset == 0);
2128
2129         rlength = hdr->payload_length;
2130         mlength = MIN(rlength, (int)md->md_length);
2131
2132         if (mlength < rlength &&
2133             (md->md_options & LNET_MD_TRUNCATE) == 0) {
2134                 CNETERR("%s: Dropping REPLY from %s length %d "
2135                         "for MD %#llx would overflow (%d)\n",
2136                         libcfs_nid2str(ni->ni_nid), libcfs_id2str(src),
2137                         rlength, hdr->msg.reply.dst_wmd.wh_object_cookie,
2138                         mlength);
2139                 lnet_res_unlock(cpt);
2140                 return -ENOENT; /* -ve: OK but no match */
2141         }
2142
2143         CDEBUG(D_NET, "%s: Reply from %s of length %d/%d into md %#llx\n",
2144                libcfs_nid2str(ni->ni_nid), libcfs_id2str(src),
2145                mlength, rlength, hdr->msg.reply.dst_wmd.wh_object_cookie);
2146
2147         lnet_msg_attach_md(msg, md, 0, mlength);
2148
2149         if (mlength != 0)
2150                 lnet_setpayloadbuffer(msg);
2151
2152         lnet_res_unlock(cpt);
2153
2154         lnet_build_msg_event(msg, LNET_EVENT_REPLY);
2155
2156         lnet_ni_recv(ni, private, msg, 0, 0, mlength, rlength);
2157         return 0;
2158 }
2159
2160 static int
2161 lnet_parse_ack(lnet_ni_t *ni, lnet_msg_t *msg)
2162 {
2163         lnet_hdr_t       *hdr = &msg->msg_hdr;
2164         lnet_process_id_t src = {0};
2165         lnet_libmd_t     *md;
2166         int                     cpt;
2167
2168         src.nid = hdr->src_nid;
2169         src.pid = hdr->src_pid;
2170
2171         /* Convert ack fields to host byte order */
2172         hdr->msg.ack.match_bits = le64_to_cpu(hdr->msg.ack.match_bits);
2173         hdr->msg.ack.mlength = le32_to_cpu(hdr->msg.ack.mlength);
2174
2175         cpt = lnet_cpt_of_cookie(hdr->msg.ack.dst_wmd.wh_object_cookie);
2176         lnet_res_lock(cpt);
2177
2178         /* NB handles only looked up by creator (no flips) */
2179         md = lnet_wire_handle2md(&hdr->msg.ack.dst_wmd);
2180         if (md == NULL || md->md_threshold == 0 || md->md_me != NULL) {
2181                 /* Don't moan; this is expected */
2182                 CDEBUG(D_NET,
2183                        "%s: Dropping ACK from %s to %s MD %#llx.%#llx\n",
2184                        libcfs_nid2str(ni->ni_nid), libcfs_id2str(src),
2185                        (md == NULL) ? "invalid" : "inactive",
2186                        hdr->msg.ack.dst_wmd.wh_interface_cookie,
2187                        hdr->msg.ack.dst_wmd.wh_object_cookie);
2188                 if (md != NULL && md->md_me != NULL)
2189                         CERROR("Source MD also attached to portal %d\n",
2190                                md->md_me->me_portal);
2191
2192                 lnet_res_unlock(cpt);
2193                 return -ENOENT;                  /* -ve! */
2194         }
2195
2196         CDEBUG(D_NET, "%s: ACK from %s into md %#llx\n",
2197                libcfs_nid2str(ni->ni_nid), libcfs_id2str(src),
2198                hdr->msg.ack.dst_wmd.wh_object_cookie);
2199
2200         lnet_msg_attach_md(msg, md, 0, 0);
2201
2202         lnet_res_unlock(cpt);
2203
2204         lnet_build_msg_event(msg, LNET_EVENT_ACK);
2205
2206         lnet_ni_recv(ni, msg->msg_private, msg, 0, 0, 0, msg->msg_len);
2207         return 0;
2208 }
2209
2210 /**
2211  * \retval LNET_CREDIT_OK       If \a msg is forwarded
2212  * \retval LNET_CREDIT_WAIT     If \a msg is blocked because w/o buffer
2213  * \retval -ve                  error code
2214  */
2215 int
2216 lnet_parse_forward_locked(lnet_ni_t *ni, lnet_msg_t *msg)
2217 {
2218         int     rc = 0;
2219
2220         if (!the_lnet.ln_routing)
2221                 return -ECANCELED;
2222
2223         if (msg->msg_rxpeer->lpni_rtrcredits <= 0 ||
2224             lnet_msg2bufpool(msg)->rbp_credits <= 0) {
2225                 if (ni->ni_net->net_lnd->lnd_eager_recv == NULL) {
2226                         msg->msg_rx_ready_delay = 1;
2227                 } else {
2228                         lnet_net_unlock(msg->msg_rx_cpt);
2229                         rc = lnet_ni_eager_recv(ni, msg);
2230                         lnet_net_lock(msg->msg_rx_cpt);
2231                 }
2232         }
2233
2234         if (rc == 0)
2235                 rc = lnet_post_routed_recv_locked(msg, 0);
2236         return rc;
2237 }
2238
2239 int
2240 lnet_parse_local(lnet_ni_t *ni, lnet_msg_t *msg)
2241 {
2242         int     rc;
2243
2244         switch (msg->msg_type) {
2245         case LNET_MSG_ACK:
2246                 rc = lnet_parse_ack(ni, msg);
2247                 break;
2248         case LNET_MSG_PUT:
2249                 rc = lnet_parse_put(ni, msg);
2250                 break;
2251         case LNET_MSG_GET:
2252                 rc = lnet_parse_get(ni, msg, msg->msg_rdma_get);
2253                 break;
2254         case LNET_MSG_REPLY:
2255                 rc = lnet_parse_reply(ni, msg);
2256                 break;
2257         default: /* prevent an unused label if !kernel */
2258                 LASSERT(0);
2259                 return -EPROTO;
2260         }
2261
2262         LASSERT(rc == 0 || rc == -ENOENT);
2263         return rc;
2264 }
2265
2266 char *
2267 lnet_msgtyp2str (int type)
2268 {
2269         switch (type) {
2270         case LNET_MSG_ACK:
2271                 return ("ACK");
2272         case LNET_MSG_PUT:
2273                 return ("PUT");
2274         case LNET_MSG_GET:
2275                 return ("GET");
2276         case LNET_MSG_REPLY:
2277                 return ("REPLY");
2278         case LNET_MSG_HELLO:
2279                 return ("HELLO");
2280         default:
2281                 return ("<UNKNOWN>");
2282         }
2283 }
2284
2285 void
2286 lnet_print_hdr(lnet_hdr_t * hdr)
2287 {
2288         lnet_process_id_t src = {0};
2289         lnet_process_id_t dst = {0};
2290         char *type_str = lnet_msgtyp2str(hdr->type);
2291
2292         src.nid = hdr->src_nid;
2293         src.pid = hdr->src_pid;
2294
2295         dst.nid = hdr->dest_nid;
2296         dst.pid = hdr->dest_pid;
2297
2298         CWARN("P3 Header at %p of type %s\n", hdr, type_str);
2299         CWARN("    From %s\n", libcfs_id2str(src));
2300         CWARN("    To   %s\n", libcfs_id2str(dst));
2301
2302         switch (hdr->type) {
2303         default:
2304                 break;
2305
2306         case LNET_MSG_PUT:
2307                 CWARN("    Ptl index %d, ack md %#llx.%#llx, "
2308                       "match bits %llu\n",
2309                       hdr->msg.put.ptl_index,
2310                       hdr->msg.put.ack_wmd.wh_interface_cookie,
2311                       hdr->msg.put.ack_wmd.wh_object_cookie,
2312                       hdr->msg.put.match_bits);
2313                 CWARN("    Length %d, offset %d, hdr data %#llx\n",
2314                       hdr->payload_length, hdr->msg.put.offset,
2315                       hdr->msg.put.hdr_data);
2316                 break;
2317
2318         case LNET_MSG_GET:
2319                 CWARN("    Ptl index %d, return md %#llx.%#llx, "
2320                       "match bits %llu\n", hdr->msg.get.ptl_index,
2321                       hdr->msg.get.return_wmd.wh_interface_cookie,
2322                       hdr->msg.get.return_wmd.wh_object_cookie,
2323                       hdr->msg.get.match_bits);
2324                 CWARN("    Length %d, src offset %d\n",
2325                       hdr->msg.get.sink_length,
2326                       hdr->msg.get.src_offset);
2327                 break;
2328
2329         case LNET_MSG_ACK:
2330                 CWARN("    dst md %#llx.%#llx, "
2331                       "manipulated length %d\n",
2332                       hdr->msg.ack.dst_wmd.wh_interface_cookie,
2333                       hdr->msg.ack.dst_wmd.wh_object_cookie,
2334                       hdr->msg.ack.mlength);
2335                 break;
2336
2337         case LNET_MSG_REPLY:
2338                 CWARN("    dst md %#llx.%#llx, "
2339                       "length %d\n",
2340                       hdr->msg.reply.dst_wmd.wh_interface_cookie,
2341                       hdr->msg.reply.dst_wmd.wh_object_cookie,
2342                       hdr->payload_length);
2343         }
2344
2345 }
2346
2347 int
2348 lnet_parse(lnet_ni_t *ni, lnet_hdr_t *hdr, lnet_nid_t from_nid,
2349            void *private, int rdma_req)
2350 {
2351         int             rc = 0;
2352         int             cpt;
2353         int             for_me;
2354         struct lnet_msg *msg;
2355         lnet_pid_t     dest_pid;
2356         lnet_nid_t     dest_nid;
2357         lnet_nid_t     src_nid;
2358         struct lnet_peer_ni *lpni;
2359         __u32          payload_length;
2360         __u32          type;
2361
2362         LASSERT (!in_interrupt ());
2363
2364         type = le32_to_cpu(hdr->type);
2365         src_nid = le64_to_cpu(hdr->src_nid);
2366         dest_nid = le64_to_cpu(hdr->dest_nid);
2367         dest_pid = le32_to_cpu(hdr->dest_pid);
2368         payload_length = le32_to_cpu(hdr->payload_length);
2369
2370         for_me = (ni->ni_nid == dest_nid);
2371         cpt = lnet_cpt_of_nid(from_nid, ni);
2372
2373         switch (type) {
2374         case LNET_MSG_ACK:
2375         case LNET_MSG_GET:
2376                 if (payload_length > 0) {
2377                         CERROR("%s, src %s: bad %s payload %d (0 expected)\n",
2378                                libcfs_nid2str(from_nid),
2379                                libcfs_nid2str(src_nid),
2380                                lnet_msgtyp2str(type), payload_length);
2381                         return -EPROTO;
2382                 }
2383                 break;
2384
2385         case LNET_MSG_PUT:
2386         case LNET_MSG_REPLY:
2387                 if (payload_length >
2388                     (__u32)(for_me ? LNET_MAX_PAYLOAD : LNET_MTU)) {
2389                         CERROR("%s, src %s: bad %s payload %d "
2390                                "(%d max expected)\n",
2391                                libcfs_nid2str(from_nid),
2392                                libcfs_nid2str(src_nid),
2393                                lnet_msgtyp2str(type),
2394                                payload_length,
2395                                for_me ? LNET_MAX_PAYLOAD : LNET_MTU);
2396                         return -EPROTO;
2397                 }
2398                 break;
2399
2400         default:
2401                 CERROR("%s, src %s: Bad message type 0x%x\n",
2402                        libcfs_nid2str(from_nid),
2403                        libcfs_nid2str(src_nid), type);
2404                 return -EPROTO;
2405         }
2406
2407         if (the_lnet.ln_routing &&
2408             ni->ni_last_alive != ktime_get_real_seconds()) {
2409                 /* NB: so far here is the only place to set NI status to "up */
2410                 lnet_ni_lock(ni);
2411                 ni->ni_last_alive = ktime_get_real_seconds();
2412                 if (ni->ni_status != NULL &&
2413                     ni->ni_status->ns_status == LNET_NI_STATUS_DOWN)
2414                         ni->ni_status->ns_status = LNET_NI_STATUS_UP;
2415                 lnet_ni_unlock(ni);
2416         }
2417
2418         /* Regard a bad destination NID as a protocol error.  Senders should
2419          * know what they're doing; if they don't they're misconfigured, buggy
2420          * or malicious so we chop them off at the knees :) */
2421
2422         if (!for_me) {
2423                 if (LNET_NIDNET(dest_nid) == LNET_NIDNET(ni->ni_nid)) {
2424                         /* should have gone direct */
2425                         CERROR("%s, src %s: Bad dest nid %s "
2426                                "(should have been sent direct)\n",
2427                                 libcfs_nid2str(from_nid),
2428                                 libcfs_nid2str(src_nid),
2429                                 libcfs_nid2str(dest_nid));
2430                         return -EPROTO;
2431                 }
2432
2433                 if (lnet_islocalnid(dest_nid)) {
2434                         /* dest is another local NI; sender should have used
2435                          * this node's NID on its own network */
2436                         CERROR("%s, src %s: Bad dest nid %s "
2437                                "(it's my nid but on a different network)\n",
2438                                 libcfs_nid2str(from_nid),
2439                                 libcfs_nid2str(src_nid),
2440                                 libcfs_nid2str(dest_nid));
2441                         return -EPROTO;
2442                 }
2443
2444                 if (rdma_req && type == LNET_MSG_GET) {
2445                         CERROR("%s, src %s: Bad optimized GET for %s "
2446                                "(final destination must be me)\n",
2447                                 libcfs_nid2str(from_nid),
2448                                 libcfs_nid2str(src_nid),
2449                                 libcfs_nid2str(dest_nid));
2450                         return -EPROTO;
2451                 }
2452
2453                 if (!the_lnet.ln_routing) {
2454                         CERROR("%s, src %s: Dropping message for %s "
2455                                "(routing not enabled)\n",
2456                                 libcfs_nid2str(from_nid),
2457                                 libcfs_nid2str(src_nid),
2458                                 libcfs_nid2str(dest_nid));
2459                         goto drop;
2460                 }
2461         }
2462
2463         /* Message looks OK; we're not going to return an error, so we MUST
2464          * call back lnd_recv() come what may... */
2465
2466         if (!list_empty(&the_lnet.ln_test_peers) &&     /* normally we don't */
2467             fail_peer(src_nid, 0)) {                    /* shall we now? */
2468                 CERROR("%s, src %s: Dropping %s to simulate failure\n",
2469                        libcfs_nid2str(from_nid), libcfs_nid2str(src_nid),
2470                        lnet_msgtyp2str(type));
2471                 goto drop;
2472         }
2473
2474         if (!list_empty(&the_lnet.ln_drop_rules) &&
2475             lnet_drop_rule_match(hdr)) {
2476                 CDEBUG(D_NET, "%s, src %s, dst %s: Dropping %s to simulate"
2477                               "silent message loss\n",
2478                        libcfs_nid2str(from_nid), libcfs_nid2str(src_nid),
2479                        libcfs_nid2str(dest_nid), lnet_msgtyp2str(type));
2480                 goto drop;
2481         }
2482
2483
2484         msg = lnet_msg_alloc();
2485         if (msg == NULL) {
2486                 CERROR("%s, src %s: Dropping %s (out of memory)\n",
2487                        libcfs_nid2str(from_nid), libcfs_nid2str(src_nid),
2488                        lnet_msgtyp2str(type));
2489                 goto drop;
2490         }
2491
2492         /* msg zeroed in lnet_msg_alloc; i.e. flags all clear,
2493          * pointers NULL etc */
2494
2495         msg->msg_type = type;
2496         msg->msg_private = private;
2497         msg->msg_receiving = 1;
2498         msg->msg_rdma_get = rdma_req;
2499         msg->msg_len = msg->msg_wanted = payload_length;
2500         msg->msg_offset = 0;
2501         msg->msg_hdr = *hdr;
2502         /* for building message event */
2503         msg->msg_from = from_nid;
2504         if (!for_me) {
2505                 msg->msg_target.pid     = dest_pid;
2506                 msg->msg_target.nid     = dest_nid;
2507                 msg->msg_routing        = 1;
2508
2509         } else {
2510                 /* convert common msg->hdr fields to host byteorder */
2511                 msg->msg_hdr.type       = type;
2512                 msg->msg_hdr.src_nid    = src_nid;
2513                 msg->msg_hdr.src_pid    = le32_to_cpu(msg->msg_hdr.src_pid);
2514                 msg->msg_hdr.dest_nid   = dest_nid;
2515                 msg->msg_hdr.dest_pid   = dest_pid;
2516                 msg->msg_hdr.payload_length = payload_length;
2517         }
2518         /* Multi-Rail: Primary NID of source. */
2519         msg->msg_initiator = lnet_peer_primary_nid(src_nid);
2520
2521         lnet_net_lock(cpt);
2522         lpni = lnet_nid2peerni_locked(from_nid, cpt);
2523         if (IS_ERR(lpni)) {
2524                 lnet_net_unlock(cpt);
2525                 CERROR("%s, src %s: Dropping %s "
2526                        "(error %ld looking up sender)\n",
2527                        libcfs_nid2str(from_nid), libcfs_nid2str(src_nid),
2528                        lnet_msgtyp2str(type), PTR_ERR(lpni));
2529                 lnet_msg_free(msg);
2530                 if (rc == -ESHUTDOWN)
2531                         /* We are shutting down.  Don't do anything more */
2532                         return 0;
2533                 goto drop;
2534         }
2535         msg->msg_rxpeer = lpni;
2536         msg->msg_rxni = ni;
2537         lnet_ni_addref_locked(ni, cpt);
2538
2539         if (lnet_isrouter(msg->msg_rxpeer)) {
2540                 lnet_peer_set_alive(msg->msg_rxpeer);
2541                 if (avoid_asym_router_failure &&
2542                     LNET_NIDNET(src_nid) != LNET_NIDNET(from_nid)) {
2543                         /* received a remote message from router, update
2544                          * remote NI status on this router.
2545                          * NB: multi-hop routed message will be ignored.
2546                          */
2547                         lnet_router_ni_update_locked(msg->msg_rxpeer,
2548                                                      LNET_NIDNET(src_nid));
2549                 }
2550         }
2551
2552         lnet_msg_commit(msg, cpt);
2553
2554         /* message delay simulation */
2555         if (unlikely(!list_empty(&the_lnet.ln_delay_rules) &&
2556                      lnet_delay_rule_match_locked(hdr, msg))) {
2557                 lnet_net_unlock(cpt);
2558                 return 0;
2559         }
2560
2561         if (!for_me) {
2562                 rc = lnet_parse_forward_locked(ni, msg);
2563                 lnet_net_unlock(cpt);
2564
2565                 if (rc < 0)
2566                         goto free_drop;
2567
2568                 if (rc == LNET_CREDIT_OK) {
2569                         lnet_ni_recv(ni, msg->msg_private, msg, 0,
2570                                      0, payload_length, payload_length);
2571                 }
2572                 return 0;
2573         }
2574
2575         lnet_net_unlock(cpt);
2576
2577         rc = lnet_parse_local(ni, msg);
2578         if (rc != 0)
2579                 goto free_drop;
2580         return 0;
2581
2582  free_drop:
2583         LASSERT(msg->msg_md == NULL);
2584         lnet_finalize(ni, msg, rc);
2585
2586  drop:
2587         lnet_drop_message(ni, cpt, private, payload_length);
2588         return 0;
2589 }
2590 EXPORT_SYMBOL(lnet_parse);
2591
2592 void
2593 lnet_drop_delayed_msg_list(struct list_head *head, char *reason)
2594 {
2595         while (!list_empty(head)) {
2596                 lnet_process_id_t       id = {0};
2597                 lnet_msg_t              *msg;
2598
2599                 msg = list_entry(head->next, lnet_msg_t, msg_list);
2600                 list_del(&msg->msg_list);
2601
2602                 id.nid = msg->msg_hdr.src_nid;
2603                 id.pid = msg->msg_hdr.src_pid;
2604
2605                 LASSERT(msg->msg_md == NULL);
2606                 LASSERT(msg->msg_rx_delayed);
2607                 LASSERT(msg->msg_rxpeer != NULL);
2608                 LASSERT(msg->msg_hdr.type == LNET_MSG_PUT);
2609
2610                 CWARN("Dropping delayed PUT from %s portal %d match %llu"
2611                       " offset %d length %d: %s\n",
2612                       libcfs_id2str(id),
2613                       msg->msg_hdr.msg.put.ptl_index,
2614                       msg->msg_hdr.msg.put.match_bits,
2615                       msg->msg_hdr.msg.put.offset,
2616                       msg->msg_hdr.payload_length, reason);
2617
2618                 /* NB I can't drop msg's ref on msg_rxpeer until after I've
2619                  * called lnet_drop_message(), so I just hang onto msg as well
2620                  * until that's done */
2621
2622                 lnet_drop_message(msg->msg_rxni, msg->msg_rx_cpt,
2623                                   msg->msg_private, msg->msg_len);
2624                 /*
2625                  * NB: message will not generate event because w/o attached MD,
2626                  * but we still should give error code so lnet_msg_decommit()
2627                  * can skip counters operations and other checks.
2628                  */
2629                 lnet_finalize(msg->msg_rxni, msg, -ENOENT);
2630         }
2631 }
2632
2633 void
2634 lnet_recv_delayed_msg_list(struct list_head *head)
2635 {
2636         while (!list_empty(head)) {
2637                 lnet_msg_t        *msg;
2638                 lnet_process_id_t  id;
2639
2640                 msg = list_entry(head->next, lnet_msg_t, msg_list);
2641                 list_del(&msg->msg_list);
2642
2643                 /* md won't disappear under me, since each msg
2644                  * holds a ref on it */
2645
2646                 id.nid = msg->msg_hdr.src_nid;
2647                 id.pid = msg->msg_hdr.src_pid;
2648
2649                 LASSERT(msg->msg_rx_delayed);
2650                 LASSERT(msg->msg_md != NULL);
2651                 LASSERT(msg->msg_rxpeer != NULL);
2652                 LASSERT(msg->msg_rxni != NULL);
2653                 LASSERT(msg->msg_hdr.type == LNET_MSG_PUT);
2654
2655                 CDEBUG(D_NET, "Resuming delayed PUT from %s portal %d "
2656                        "match %llu offset %d length %d.\n",
2657                         libcfs_id2str(id), msg->msg_hdr.msg.put.ptl_index,
2658                         msg->msg_hdr.msg.put.match_bits,
2659                         msg->msg_hdr.msg.put.offset,
2660                         msg->msg_hdr.payload_length);
2661
2662                 lnet_recv_put(msg->msg_rxni, msg);
2663         }
2664 }
2665
2666 /**
2667  * Initiate an asynchronous PUT operation.
2668  *
2669  * There are several events associated with a PUT: completion of the send on
2670  * the initiator node (LNET_EVENT_SEND), and when the send completes
2671  * successfully, the receipt of an acknowledgment (LNET_EVENT_ACK) indicating
2672  * that the operation was accepted by the target. The event LNET_EVENT_PUT is
2673  * used at the target node to indicate the completion of incoming data
2674  * delivery.
2675  *
2676  * The local events will be logged in the EQ associated with the MD pointed to
2677  * by \a mdh handle. Using a MD without an associated EQ results in these
2678  * events being discarded. In this case, the caller must have another
2679  * mechanism (e.g., a higher level protocol) for determining when it is safe
2680  * to modify the memory region associated with the MD.
2681  *
2682  * Note that LNet does not guarantee the order of LNET_EVENT_SEND and
2683  * LNET_EVENT_ACK, though intuitively ACK should happen after SEND.
2684  *
2685  * \param self Indicates the NID of a local interface through which to send
2686  * the PUT request. Use LNET_NID_ANY to let LNet choose one by itself.
2687  * \param mdh A handle for the MD that describes the memory to be sent. The MD
2688  * must be "free floating" (See LNetMDBind()).
2689  * \param ack Controls whether an acknowledgment is requested.
2690  * Acknowledgments are only sent when they are requested by the initiating
2691  * process and the target MD enables them.
2692  * \param target A process identifier for the target process.
2693  * \param portal The index in the \a target's portal table.
2694  * \param match_bits The match bits to use for MD selection at the target
2695  * process.
2696  * \param offset The offset into the target MD (only used when the target
2697  * MD has the LNET_MD_MANAGE_REMOTE option set).
2698  * \param hdr_data 64 bits of user data that can be included in the message
2699  * header. This data is written to an event queue entry at the target if an
2700  * EQ is present on the matching MD.
2701  *
2702  * \retval  0      Success, and only in this case events will be generated
2703  * and logged to EQ (if it exists).
2704  * \retval -EIO    Simulated failure.
2705  * \retval -ENOMEM Memory allocation failure.
2706  * \retval -ENOENT Invalid MD object.
2707  *
2708  * \see lnet_event_t::hdr_data and lnet_event_kind_t.
2709  */
2710 int
2711 LNetPut(lnet_nid_t self, lnet_handle_md_t mdh, lnet_ack_req_t ack,
2712         lnet_process_id_t target, unsigned int portal,
2713         __u64 match_bits, unsigned int offset,
2714         __u64 hdr_data)
2715 {
2716         struct lnet_msg         *msg;
2717         struct lnet_libmd       *md;
2718         int                     cpt;
2719         int                     rc;
2720
2721         LASSERT(the_lnet.ln_refcount > 0);
2722
2723         if (!list_empty(&the_lnet.ln_test_peers) &&     /* normally we don't */
2724             fail_peer(target.nid, 1)) {                 /* shall we now? */
2725                 CERROR("Dropping PUT to %s: simulated failure\n",
2726                        libcfs_id2str(target));
2727                 return -EIO;
2728         }
2729
2730         msg = lnet_msg_alloc();
2731         if (msg == NULL) {
2732                 CERROR("Dropping PUT to %s: ENOMEM on lnet_msg_t\n",
2733                        libcfs_id2str(target));
2734                 return -ENOMEM;
2735         }
2736         msg->msg_vmflush = !!memory_pressure_get();
2737
2738         cpt = lnet_cpt_of_cookie(mdh.cookie);
2739         lnet_res_lock(cpt);
2740
2741         md = lnet_handle2md(&mdh);
2742         if (md == NULL || md->md_threshold == 0 || md->md_me != NULL) {
2743                 CERROR("Dropping PUT (%llu:%d:%s): MD (%d) invalid\n",
2744                        match_bits, portal, libcfs_id2str(target),
2745                        md == NULL ? -1 : md->md_threshold);
2746                 if (md != NULL && md->md_me != NULL)
2747                         CERROR("Source MD also attached to portal %d\n",
2748                                md->md_me->me_portal);
2749                 lnet_res_unlock(cpt);
2750
2751                 lnet_msg_free(msg);
2752                 return -ENOENT;
2753         }
2754
2755         CDEBUG(D_NET, "LNetPut -> %s\n", libcfs_id2str(target));
2756
2757         lnet_msg_attach_md(msg, md, 0, 0);
2758
2759         lnet_prep_send(msg, LNET_MSG_PUT, target, 0, md->md_length);
2760
2761         msg->msg_hdr.msg.put.match_bits = cpu_to_le64(match_bits);
2762         msg->msg_hdr.msg.put.ptl_index = cpu_to_le32(portal);
2763         msg->msg_hdr.msg.put.offset = cpu_to_le32(offset);
2764         msg->msg_hdr.msg.put.hdr_data = hdr_data;
2765
2766         /* NB handles only looked up by creator (no flips) */
2767         if (ack == LNET_ACK_REQ) {
2768                 msg->msg_hdr.msg.put.ack_wmd.wh_interface_cookie =
2769                         the_lnet.ln_interface_cookie;
2770                 msg->msg_hdr.msg.put.ack_wmd.wh_object_cookie =
2771                         md->md_lh.lh_cookie;
2772         } else {
2773                 msg->msg_hdr.msg.put.ack_wmd.wh_interface_cookie =
2774                         LNET_WIRE_HANDLE_COOKIE_NONE;
2775                 msg->msg_hdr.msg.put.ack_wmd.wh_object_cookie =
2776                         LNET_WIRE_HANDLE_COOKIE_NONE;
2777         }
2778
2779         lnet_res_unlock(cpt);
2780
2781         lnet_build_msg_event(msg, LNET_EVENT_SEND);
2782
2783         rc = lnet_send(self, msg, LNET_NID_ANY);
2784         if (rc != 0) {
2785                 CNETERR("Error sending PUT to %s: %d\n",
2786                         libcfs_id2str(target), rc);
2787                 lnet_finalize(NULL, msg, rc);
2788         }
2789
2790         /* completion will be signalled by an event */
2791         return 0;
2792 }
2793 EXPORT_SYMBOL(LNetPut);
2794
2795 lnet_msg_t *
2796 lnet_create_reply_msg (lnet_ni_t *ni, lnet_msg_t *getmsg)
2797 {
2798         /* The LND can DMA direct to the GET md (i.e. no REPLY msg).  This
2799          * returns a msg for the LND to pass to lnet_finalize() when the sink
2800          * data has been received.
2801          *
2802          * CAVEAT EMPTOR: 'getmsg' is the original GET, which is freed when
2803          * lnet_finalize() is called on it, so the LND must call this first */
2804
2805         struct lnet_msg         *msg = lnet_msg_alloc();
2806         struct lnet_libmd       *getmd = getmsg->msg_md;
2807         lnet_process_id_t       peer_id = getmsg->msg_target;
2808         int                     cpt;
2809
2810         LASSERT(!getmsg->msg_target_is_router);
2811         LASSERT(!getmsg->msg_routing);
2812
2813         if (msg == NULL) {
2814                 CERROR("%s: Dropping REPLY from %s: can't allocate msg\n",
2815                        libcfs_nid2str(ni->ni_nid), libcfs_id2str(peer_id));
2816                 goto drop;
2817         }
2818
2819         cpt = lnet_cpt_of_cookie(getmd->md_lh.lh_cookie);
2820         lnet_res_lock(cpt);
2821
2822         LASSERT(getmd->md_refcount > 0);
2823
2824         if (getmd->md_threshold == 0) {
2825                 CERROR("%s: Dropping REPLY from %s for inactive MD %p\n",
2826                         libcfs_nid2str(ni->ni_nid), libcfs_id2str(peer_id),
2827                         getmd);
2828                 lnet_res_unlock(cpt);
2829                 goto drop;
2830         }
2831
2832         LASSERT(getmd->md_offset == 0);
2833
2834         CDEBUG(D_NET, "%s: Reply from %s md %p\n",
2835                libcfs_nid2str(ni->ni_nid), libcfs_id2str(peer_id), getmd);
2836
2837         /* setup information for lnet_build_msg_event */
2838         msg->msg_initiator = lnet_peer_primary_nid(peer_id.nid);
2839         /* Cheaper: msg->msg_initiator = getmsg->msg_txpeer->lp_nid; */
2840         msg->msg_from = peer_id.nid;
2841         msg->msg_type = LNET_MSG_GET; /* flag this msg as an "optimized" GET */
2842         msg->msg_hdr.src_nid = peer_id.nid;
2843         msg->msg_hdr.payload_length = getmd->md_length;
2844         msg->msg_receiving = 1; /* required by lnet_msg_attach_md */
2845
2846         lnet_msg_attach_md(msg, getmd, getmd->md_offset, getmd->md_length);
2847         lnet_res_unlock(cpt);
2848
2849         cpt = lnet_cpt_of_nid(peer_id.nid, ni);
2850
2851         lnet_net_lock(cpt);
2852         lnet_msg_commit(msg, cpt);
2853         lnet_net_unlock(cpt);
2854
2855         lnet_build_msg_event(msg, LNET_EVENT_REPLY);
2856
2857         return msg;
2858
2859  drop:
2860         cpt = lnet_cpt_of_nid(peer_id.nid, ni);
2861
2862         lnet_net_lock(cpt);
2863         the_lnet.ln_counters[cpt]->drop_count++;
2864         the_lnet.ln_counters[cpt]->drop_length += getmd->md_length;
2865         lnet_net_unlock(cpt);
2866
2867         if (msg != NULL)
2868                 lnet_msg_free(msg);
2869
2870         return NULL;
2871 }
2872 EXPORT_SYMBOL(lnet_create_reply_msg);
2873
2874 void
2875 lnet_set_reply_msg_len(lnet_ni_t *ni, lnet_msg_t *reply, unsigned int len)
2876 {
2877         /* Set the REPLY length, now the RDMA that elides the REPLY message has
2878          * completed and I know it. */
2879         LASSERT(reply != NULL);
2880         LASSERT(reply->msg_type == LNET_MSG_GET);
2881         LASSERT(reply->msg_ev.type == LNET_EVENT_REPLY);
2882
2883         /* NB I trusted my peer to RDMA.  If she tells me she's written beyond
2884          * the end of my buffer, I might as well be dead. */
2885         LASSERT(len <= reply->msg_ev.mlength);
2886
2887         reply->msg_ev.mlength = len;
2888 }
2889 EXPORT_SYMBOL(lnet_set_reply_msg_len);
2890
2891 /**
2892  * Initiate an asynchronous GET operation.
2893  *
2894  * On the initiator node, an LNET_EVENT_SEND is logged when the GET request
2895  * is sent, and an LNET_EVENT_REPLY is logged when the data returned from
2896  * the target node in the REPLY has been written to local MD.
2897  *
2898  * On the target node, an LNET_EVENT_GET is logged when the GET request
2899  * arrives and is accepted into a MD.
2900  *
2901  * \param self,target,portal,match_bits,offset See the discussion in LNetPut().
2902  * \param mdh A handle for the MD that describes the memory into which the
2903  * requested data will be received. The MD must be "free floating" (See LNetMDBind()).
2904  *
2905  * \retval  0      Success, and only in this case events will be generated
2906  * and logged to EQ (if it exists) of the MD.
2907  * \retval -EIO    Simulated failure.
2908  * \retval -ENOMEM Memory allocation failure.
2909  * \retval -ENOENT Invalid MD object.
2910  */
2911 int
2912 LNetGet(lnet_nid_t self, lnet_handle_md_t mdh,
2913         lnet_process_id_t target, unsigned int portal,
2914         __u64 match_bits, unsigned int offset)
2915 {
2916         struct lnet_msg         *msg;
2917         struct lnet_libmd       *md;
2918         int                     cpt;
2919         int                     rc;
2920
2921         LASSERT(the_lnet.ln_refcount > 0);
2922
2923         if (!list_empty(&the_lnet.ln_test_peers) &&     /* normally we don't */
2924             fail_peer(target.nid, 1))                   /* shall we now? */
2925         {
2926                 CERROR("Dropping GET to %s: simulated failure\n",
2927                        libcfs_id2str(target));
2928                 return -EIO;
2929         }
2930
2931         msg = lnet_msg_alloc();
2932         if (msg == NULL) {
2933                 CERROR("Dropping GET to %s: ENOMEM on lnet_msg_t\n",
2934                        libcfs_id2str(target));
2935                 return -ENOMEM;
2936         }
2937
2938         cpt = lnet_cpt_of_cookie(mdh.cookie);
2939         lnet_res_lock(cpt);
2940
2941         md = lnet_handle2md(&mdh);
2942         if (md == NULL || md->md_threshold == 0 || md->md_me != NULL) {
2943                 CERROR("Dropping GET (%llu:%d:%s): MD (%d) invalid\n",
2944                        match_bits, portal, libcfs_id2str(target),
2945                        md == NULL ? -1 : md->md_threshold);
2946                 if (md != NULL && md->md_me != NULL)
2947                         CERROR("REPLY MD also attached to portal %d\n",
2948                                md->md_me->me_portal);
2949
2950                 lnet_res_unlock(cpt);
2951
2952                 lnet_msg_free(msg);
2953                 return -ENOENT;
2954         }
2955
2956         CDEBUG(D_NET, "LNetGet -> %s\n", libcfs_id2str(target));
2957
2958         lnet_msg_attach_md(msg, md, 0, 0);
2959
2960         lnet_prep_send(msg, LNET_MSG_GET, target, 0, 0);
2961
2962         msg->msg_hdr.msg.get.match_bits = cpu_to_le64(match_bits);
2963         msg->msg_hdr.msg.get.ptl_index = cpu_to_le32(portal);
2964         msg->msg_hdr.msg.get.src_offset = cpu_to_le32(offset);
2965         msg->msg_hdr.msg.get.sink_length = cpu_to_le32(md->md_length);
2966
2967         /* NB handles only looked up by creator (no flips) */
2968         msg->msg_hdr.msg.get.return_wmd.wh_interface_cookie =
2969                 the_lnet.ln_interface_cookie;
2970         msg->msg_hdr.msg.get.return_wmd.wh_object_cookie =
2971                 md->md_lh.lh_cookie;
2972
2973         lnet_res_unlock(cpt);
2974
2975         lnet_build_msg_event(msg, LNET_EVENT_SEND);
2976
2977         rc = lnet_send(self, msg, LNET_NID_ANY);
2978         if (rc < 0) {
2979                 CNETERR("Error sending GET to %s: %d\n",
2980                         libcfs_id2str(target), rc);
2981                 lnet_finalize(NULL, msg, rc);
2982         }
2983
2984         /* completion will be signalled by an event */
2985         return 0;
2986 }
2987 EXPORT_SYMBOL(LNetGet);
2988
2989 /**
2990  * Calculate distance to node at \a dstnid.
2991  *
2992  * \param dstnid Target NID.
2993  * \param srcnidp If not NULL, NID of the local interface to reach \a dstnid
2994  * is saved here.
2995  * \param orderp If not NULL, order of the route to reach \a dstnid is saved
2996  * here.
2997  *
2998  * \retval 0 If \a dstnid belongs to a local interface, and reserved option
2999  * local_nid_dist_zero is set, which is the default.
3000  * \retval positives Distance to target NID, i.e. number of hops plus one.
3001  * \retval -EHOSTUNREACH If \a dstnid is not reachable.
3002  */
3003 int
3004 LNetDist(lnet_nid_t dstnid, lnet_nid_t *srcnidp, __u32 *orderp)
3005 {
3006         struct list_head        *e;
3007         struct lnet_ni          *ni = NULL;
3008         lnet_remotenet_t        *rnet;
3009         __u32                   dstnet = LNET_NIDNET(dstnid);
3010         int                     hops;
3011         int                     cpt;
3012         __u32                   order = 2;
3013         struct list_head        *rn_list;
3014
3015         /* if !local_nid_dist_zero, I don't return a distance of 0 ever
3016          * (when lustre sees a distance of 0, it substitutes 0@lo), so I
3017          * keep order 0 free for 0@lo and order 1 free for a local NID
3018          * match */
3019
3020         LASSERT(the_lnet.ln_refcount > 0);
3021
3022         cpt = lnet_net_lock_current();
3023
3024         while ((ni = lnet_get_next_ni_locked(NULL, ni))) {
3025                 if (ni->ni_nid == dstnid) {
3026                         if (srcnidp != NULL)
3027                                 *srcnidp = dstnid;
3028                         if (orderp != NULL) {
3029                                 if (LNET_NETTYP(LNET_NIDNET(dstnid)) == LOLND)
3030                                         *orderp = 0;
3031                                 else
3032                                         *orderp = 1;
3033                         }
3034                         lnet_net_unlock(cpt);
3035
3036                         return local_nid_dist_zero ? 0 : 1;
3037                 }
3038
3039                 if (LNET_NIDNET(ni->ni_nid) == dstnet) {
3040                         /* Check if ni was originally created in
3041                          * current net namespace.
3042                          * If not, assign order above 0xffff0000,
3043                          * to make this ni not a priority. */
3044                         if (!net_eq(ni->ni_net_ns, current->nsproxy->net_ns))
3045                                 order += 0xffff0000;
3046
3047                         if (srcnidp != NULL)
3048                                 *srcnidp = ni->ni_nid;
3049                         if (orderp != NULL)
3050                                 *orderp = order;
3051                         lnet_net_unlock(cpt);
3052                         return 1;
3053                 }
3054
3055                 order++;
3056         }
3057
3058         rn_list = lnet_net2rnethash(dstnet);
3059         list_for_each(e, rn_list) {
3060                 rnet = list_entry(e, lnet_remotenet_t, lrn_list);
3061
3062                 if (rnet->lrn_net == dstnet) {
3063                         lnet_route_t *route;
3064                         lnet_route_t *shortest = NULL;
3065                         __u32 shortest_hops = LNET_UNDEFINED_HOPS;
3066                         __u32 route_hops;
3067
3068                         LASSERT(!list_empty(&rnet->lrn_routes));
3069
3070                         list_for_each_entry(route, &rnet->lrn_routes,
3071                                             lr_list) {
3072                                 route_hops = route->lr_hops;
3073                                 if (route_hops == LNET_UNDEFINED_HOPS)
3074                                         route_hops = 1;
3075                                 if (shortest == NULL ||
3076                                     route_hops < shortest_hops) {
3077                                         shortest = route;
3078                                         shortest_hops = route_hops;
3079                                 }
3080                         }
3081
3082                         LASSERT(shortest != NULL);
3083                         hops = shortest_hops;
3084                         if (srcnidp != NULL) {
3085                                 ni = lnet_get_next_ni_locked(
3086                                         shortest->lr_gateway->lpni_net,
3087                                         NULL);
3088                                 *srcnidp = ni->ni_nid;
3089                         }
3090                         if (orderp != NULL)
3091                                 *orderp = order;
3092                         lnet_net_unlock(cpt);
3093                         return hops + 1;
3094                 }
3095                 order++;
3096         }
3097
3098         lnet_net_unlock(cpt);
3099         return -EHOSTUNREACH;
3100 }
3101 EXPORT_SYMBOL(LNetDist);