Whamcloud - gitweb
e8c60258ddffa329d7917e85d54f4e5aaa4f8f86
[fs/lustre-release.git] / lnet / lnet / lib-msg.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2012, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  * Lustre is a trademark of Sun Microsystems, Inc.
31  *
32  * lnet/lnet/lib-msg.c
33  *
34  * Message decoding, parsing and finalizing routines
35  */
36
37 #define DEBUG_SUBSYSTEM S_LNET
38
39 #include <lnet/lib-lnet.h>
40
41 void
42 lnet_build_unlink_event(struct lnet_libmd *md, struct lnet_event *ev)
43 {
44         ENTRY;
45
46         memset(ev, 0, sizeof(*ev));
47
48         ev->status   = 0;
49         ev->unlinked = 1;
50         ev->type     = LNET_EVENT_UNLINK;
51         lnet_md_deconstruct(md, ev);
52         lnet_md2handle(&ev->md_handle, md);
53         EXIT;
54 }
55
56 /*
57  * Don't need any lock, must be called after lnet_commit_md
58  */
59 void
60 lnet_build_msg_event(struct lnet_msg *msg, enum lnet_event_kind ev_type)
61 {
62         struct lnet_hdr *hdr = &msg->msg_hdr;
63         struct lnet_event *ev = &msg->msg_ev;
64
65         LASSERT(!msg->msg_routing);
66
67         ev->type = ev_type;
68         ev->msg_type = msg->msg_type;
69
70         if (ev_type == LNET_EVENT_SEND) {
71                 /* event for active message */
72                 ev->target.nid    = le64_to_cpu(hdr->dest_nid);
73                 ev->target.pid    = le32_to_cpu(hdr->dest_pid);
74                 ev->initiator.nid = LNET_NID_ANY;
75                 ev->initiator.pid = the_lnet.ln_pid;
76                 ev->source.nid    = LNET_NID_ANY;
77                 ev->source.pid    = the_lnet.ln_pid;
78                 ev->sender        = LNET_NID_ANY;
79         } else {
80                 /* event for passive message */
81                 ev->target.pid    = hdr->dest_pid;
82                 ev->target.nid    = hdr->dest_nid;
83                 ev->initiator.pid = hdr->src_pid;
84                 /* Multi-Rail: resolve src_nid to "primary" peer NID */
85                 ev->initiator.nid = msg->msg_initiator;
86                 /* Multi-Rail: track source NID. */
87                 ev->source.pid    = hdr->src_pid;
88                 ev->source.nid    = hdr->src_nid;
89                 ev->rlength       = hdr->payload_length;
90                 ev->sender        = msg->msg_from;
91                 ev->mlength       = msg->msg_wanted;
92                 ev->offset        = msg->msg_offset;
93         }
94
95         switch (ev_type) {
96         default:
97                 LBUG();
98
99         case LNET_EVENT_PUT: /* passive PUT */
100                 ev->pt_index   = hdr->msg.put.ptl_index;
101                 ev->match_bits = hdr->msg.put.match_bits;
102                 ev->hdr_data   = hdr->msg.put.hdr_data;
103                 return;
104
105         case LNET_EVENT_GET: /* passive GET */
106                 ev->pt_index   = hdr->msg.get.ptl_index;
107                 ev->match_bits = hdr->msg.get.match_bits;
108                 ev->hdr_data   = 0;
109                 return;
110
111         case LNET_EVENT_ACK: /* ACK */
112                 ev->match_bits = hdr->msg.ack.match_bits;
113                 ev->mlength    = hdr->msg.ack.mlength;
114                 return;
115
116         case LNET_EVENT_REPLY: /* REPLY */
117                 return;
118
119         case LNET_EVENT_SEND: /* active message */
120                 if (msg->msg_type == LNET_MSG_PUT) {
121                         ev->pt_index   = le32_to_cpu(hdr->msg.put.ptl_index);
122                         ev->match_bits = le64_to_cpu(hdr->msg.put.match_bits);
123                         ev->offset     = le32_to_cpu(hdr->msg.put.offset);
124                         ev->mlength    =
125                         ev->rlength    = le32_to_cpu(hdr->payload_length);
126                         ev->hdr_data   = le64_to_cpu(hdr->msg.put.hdr_data);
127
128                 } else {
129                         LASSERT(msg->msg_type == LNET_MSG_GET);
130                         ev->pt_index   = le32_to_cpu(hdr->msg.get.ptl_index);
131                         ev->match_bits = le64_to_cpu(hdr->msg.get.match_bits);
132                         ev->mlength    =
133                         ev->rlength    = le32_to_cpu(hdr->msg.get.sink_length);
134                         ev->offset     = le32_to_cpu(hdr->msg.get.src_offset);
135                         ev->hdr_data   = 0;
136                 }
137                 return;
138         }
139 }
140
141 void
142 lnet_msg_commit(struct lnet_msg *msg, int cpt)
143 {
144         struct lnet_msg_container *container = the_lnet.ln_msg_containers[cpt];
145         struct lnet_counters_common *common;
146         s64 timeout_ns;
147
148         /* set the message deadline */
149         timeout_ns = lnet_transaction_timeout * NSEC_PER_SEC;
150         msg->msg_deadline = ktime_add_ns(ktime_get(), timeout_ns);
151
152         /* routed message can be committed for both receiving and sending */
153         LASSERT(!msg->msg_tx_committed);
154
155         if (msg->msg_sending) {
156                 LASSERT(!msg->msg_receiving);
157                 msg->msg_tx_cpt = cpt;
158                 msg->msg_tx_committed = 1;
159                 if (msg->msg_rx_committed) { /* routed message REPLY */
160                         LASSERT(msg->msg_onactivelist);
161                         return;
162                 }
163         } else {
164                 LASSERT(!msg->msg_sending);
165                 msg->msg_rx_cpt = cpt;
166                 msg->msg_rx_committed = 1;
167         }
168
169         LASSERT(!msg->msg_onactivelist);
170
171         msg->msg_onactivelist = 1;
172         list_add_tail(&msg->msg_activelist, &container->msc_active);
173
174         common = &the_lnet.ln_counters[cpt]->lct_common;
175         common->lcc_msgs_alloc++;
176         if (common->lcc_msgs_alloc > common->lcc_msgs_max)
177                 common->lcc_msgs_max = common->lcc_msgs_alloc;
178 }
179
180 static void
181 lnet_msg_decommit_tx(struct lnet_msg *msg, int status)
182 {
183         struct lnet_counters_common *common;
184         struct lnet_event *ev = &msg->msg_ev;
185
186         LASSERT(msg->msg_tx_committed);
187         if (status != 0)
188                 goto out;
189
190         common = &(the_lnet.ln_counters[msg->msg_tx_cpt]->lct_common);
191         switch (ev->type) {
192         default: /* routed message */
193                 LASSERT(msg->msg_routing);
194                 LASSERT(msg->msg_rx_committed);
195                 LASSERT(ev->type == 0);
196
197                 common->lcc_route_length += msg->msg_len;
198                 common->lcc_route_count++;
199                 goto incr_stats;
200
201         case LNET_EVENT_PUT:
202                 /* should have been decommitted */
203                 LASSERT(!msg->msg_rx_committed);
204                 /* overwritten while sending ACK */
205                 LASSERT(msg->msg_type == LNET_MSG_ACK);
206                 msg->msg_type = LNET_MSG_PUT; /* fix type */
207                 break;
208
209         case LNET_EVENT_SEND:
210                 LASSERT(!msg->msg_rx_committed);
211                 if (msg->msg_type == LNET_MSG_PUT)
212                         common->lcc_send_length += msg->msg_len;
213                 break;
214
215         case LNET_EVENT_GET:
216                 LASSERT(msg->msg_rx_committed);
217                 /* overwritten while sending reply, we should never be
218                  * here for optimized GET */
219                 LASSERT(msg->msg_type == LNET_MSG_REPLY);
220                 msg->msg_type = LNET_MSG_GET; /* fix type */
221                 break;
222         }
223
224         common->lcc_send_count++;
225
226 incr_stats:
227         if (msg->msg_txpeer)
228                 lnet_incr_stats(&msg->msg_txpeer->lpni_stats,
229                                 msg->msg_type,
230                                 LNET_STATS_TYPE_SEND);
231         if (msg->msg_txni)
232                 lnet_incr_stats(&msg->msg_txni->ni_stats,
233                                 msg->msg_type,
234                                 LNET_STATS_TYPE_SEND);
235  out:
236         lnet_return_tx_credits_locked(msg);
237         msg->msg_tx_committed = 0;
238 }
239
240 static void
241 lnet_msg_decommit_rx(struct lnet_msg *msg, int status)
242 {
243         struct lnet_counters_common *common;
244         struct lnet_event *ev = &msg->msg_ev;
245
246         LASSERT(!msg->msg_tx_committed); /* decommitted or never committed */
247         LASSERT(msg->msg_rx_committed);
248
249         if (status != 0)
250                 goto out;
251
252         common = &(the_lnet.ln_counters[msg->msg_rx_cpt]->lct_common);
253         switch (ev->type) {
254         default:
255                 LASSERT(ev->type == 0);
256                 LASSERT(msg->msg_routing);
257                 goto incr_stats;
258
259         case LNET_EVENT_ACK:
260                 LASSERT(msg->msg_type == LNET_MSG_ACK);
261                 break;
262
263         case LNET_EVENT_GET:
264                 /* type is "REPLY" if it's an optimized GET on passive side,
265                  * because optimized GET will never be committed for sending,
266                  * so message type wouldn't be changed back to "GET" by
267                  * lnet_msg_decommit_tx(), see details in lnet_parse_get() */
268                 LASSERT(msg->msg_type == LNET_MSG_REPLY ||
269                         msg->msg_type == LNET_MSG_GET);
270                 common->lcc_send_length += msg->msg_wanted;
271                 break;
272
273         case LNET_EVENT_PUT:
274                 LASSERT(msg->msg_type == LNET_MSG_PUT);
275                 break;
276
277         case LNET_EVENT_REPLY:
278                 /* type is "GET" if it's an optimized GET on active side,
279                  * see details in lnet_create_reply_msg() */
280                 LASSERT(msg->msg_type == LNET_MSG_GET ||
281                         msg->msg_type == LNET_MSG_REPLY);
282                 break;
283         }
284
285         common->lcc_recv_count++;
286
287 incr_stats:
288         if (msg->msg_rxpeer)
289                 lnet_incr_stats(&msg->msg_rxpeer->lpni_stats,
290                                 msg->msg_type,
291                                 LNET_STATS_TYPE_RECV);
292         if (msg->msg_rxni)
293                 lnet_incr_stats(&msg->msg_rxni->ni_stats,
294                                 msg->msg_type,
295                                 LNET_STATS_TYPE_RECV);
296         if (ev->type == LNET_EVENT_PUT || ev->type == LNET_EVENT_REPLY)
297                 common->lcc_recv_length += msg->msg_wanted;
298
299  out:
300         lnet_return_rx_credits_locked(msg);
301         msg->msg_rx_committed = 0;
302 }
303
304 void
305 lnet_msg_decommit(struct lnet_msg *msg, int cpt, int status)
306 {
307         int     cpt2 = cpt;
308
309         LASSERT(msg->msg_tx_committed || msg->msg_rx_committed);
310         LASSERT(msg->msg_onactivelist);
311
312         if (msg->msg_tx_committed) { /* always decommit for sending first */
313                 LASSERT(cpt == msg->msg_tx_cpt);
314                 lnet_msg_decommit_tx(msg, status);
315         }
316
317         if (msg->msg_rx_committed) {
318                 /* forwarding msg committed for both receiving and sending */
319                 if (cpt != msg->msg_rx_cpt) {
320                         lnet_net_unlock(cpt);
321                         cpt2 = msg->msg_rx_cpt;
322                         lnet_net_lock(cpt2);
323                 }
324                 lnet_msg_decommit_rx(msg, status);
325         }
326
327         list_del(&msg->msg_activelist);
328         msg->msg_onactivelist = 0;
329
330         the_lnet.ln_counters[cpt2]->lct_common.lcc_msgs_alloc--;
331
332         if (cpt2 != cpt) {
333                 lnet_net_unlock(cpt2);
334                 lnet_net_lock(cpt);
335         }
336 }
337
338 void
339 lnet_msg_attach_md(struct lnet_msg *msg, struct lnet_libmd *md,
340                    unsigned int offset, unsigned int mlen)
341 {
342         /* NB: @offset and @len are only useful for receiving */
343         /* Here, we attach the MD on lnet_msg and mark it busy and
344          * decrementing its threshold. Come what may, the lnet_msg "owns"
345          * the MD until a call to lnet_msg_detach_md or lnet_finalize()
346          * signals completion. */
347         LASSERT(!msg->msg_routing);
348
349         msg->msg_md = md;
350         if (msg->msg_receiving) { /* committed for receiving */
351                 msg->msg_offset = offset;
352                 msg->msg_wanted = mlen;
353         }
354
355         md->md_refcount++;
356         if (md->md_threshold != LNET_MD_THRESH_INF) {
357                 LASSERT(md->md_threshold > 0);
358                 md->md_threshold--;
359         }
360
361         /* build umd in event */
362         lnet_md2handle(&msg->msg_ev.md_handle, md);
363         lnet_md_deconstruct(md, &msg->msg_ev);
364 }
365
366 static int
367 lnet_complete_msg_locked(struct lnet_msg *msg, int cpt)
368 {
369         struct lnet_handle_wire ack_wmd;
370         int                rc;
371         int                status = msg->msg_ev.status;
372
373         LASSERT(msg->msg_onactivelist);
374
375         if (status == 0 && msg->msg_ack) {
376                 /* Only send an ACK if the PUT completed successfully */
377
378                 lnet_msg_decommit(msg, cpt, 0);
379
380                 msg->msg_ack = 0;
381                 lnet_net_unlock(cpt);
382
383                 LASSERT(msg->msg_ev.type == LNET_EVENT_PUT);
384                 LASSERT(!msg->msg_routing);
385
386                 ack_wmd = msg->msg_hdr.msg.put.ack_wmd;
387
388                 lnet_prep_send(msg, LNET_MSG_ACK, msg->msg_ev.source, 0, 0);
389
390                 msg->msg_hdr.msg.ack.dst_wmd = ack_wmd;
391                 msg->msg_hdr.msg.ack.match_bits = msg->msg_ev.match_bits;
392                 msg->msg_hdr.msg.ack.mlength = cpu_to_le32(msg->msg_ev.mlength);
393
394                 rc = lnet_send(msg->msg_ev.target.nid, msg, msg->msg_from);
395
396                 lnet_net_lock(cpt);
397                 /*
398                  * NB: message is committed for sending, we should return
399                  * on success because LND will finalize this message later.
400                  *
401                  * Also, there is possibility that message is committed for
402                  * sending and also failed before delivering to LND,
403                  * i.e: ENOMEM, in that case we can't fall through either
404                  * because CPT for sending can be different with CPT for
405                  * receiving, so we should return back to lnet_finalize()
406                  * to make sure we are locking the correct partition.
407                  */
408                 return rc;
409
410         } else if (status == 0 &&       /* OK so far */
411                    (msg->msg_routing && !msg->msg_sending)) {
412                 /* not forwarded */
413                 LASSERT(!msg->msg_receiving);   /* called back recv already */
414                 lnet_net_unlock(cpt);
415
416                 rc = lnet_send(LNET_NID_ANY, msg, LNET_NID_ANY);
417
418                 lnet_net_lock(cpt);
419                 /*
420                  * NB: message is committed for sending, we should return
421                  * on success because LND will finalize this message later.
422                  *
423                  * Also, there is possibility that message is committed for
424                  * sending and also failed before delivering to LND,
425                  * i.e: ENOMEM, in that case we can't fall through either:
426                  * - The rule is message must decommit for sending first if
427                  *   the it's committed for both sending and receiving
428                  * - CPT for sending can be different with CPT for receiving,
429                  *   so we should return back to lnet_finalize() to make
430                  *   sure we are locking the correct partition.
431                  */
432                 return rc;
433         }
434
435         lnet_msg_decommit(msg, cpt, status);
436         lnet_msg_free(msg);
437         return 0;
438 }
439
440 static void
441 lnet_dec_healthv_locked(atomic_t *healthv, int sensitivity)
442 {
443         int h = atomic_read(healthv);
444
445         if (h < sensitivity) {
446                 atomic_set(healthv, 0);
447         } else {
448                 h -= sensitivity;
449                 atomic_set(healthv, h);
450         }
451 }
452
453 static void
454 lnet_handle_local_failure(struct lnet_ni *local_ni)
455 {
456         /*
457          * the lnet_net_lock(0) is used to protect the addref on the ni
458          * and the recovery queue.
459          */
460         lnet_net_lock(0);
461         /* the mt could've shutdown and cleaned up the queues */
462         if (the_lnet.ln_mt_state != LNET_MT_STATE_RUNNING) {
463                 lnet_net_unlock(0);
464                 return;
465         }
466
467         lnet_dec_healthv_locked(&local_ni->ni_healthv, lnet_health_sensitivity);
468         /*
469          * add the NI to the recovery queue if it's not already there
470          * and it's health value is actually below the maximum. It's
471          * possible that the sensitivity might be set to 0, and the health
472          * value will not be reduced. In this case, there is no reason to
473          * invoke recovery
474          */
475         if (list_empty(&local_ni->ni_recovery) &&
476             atomic_read(&local_ni->ni_healthv) < LNET_MAX_HEALTH_VALUE) {
477                 CDEBUG(D_NET, "ni %s added to recovery queue. Health = %d\n",
478                         libcfs_nid2str(local_ni->ni_nid),
479                         atomic_read(&local_ni->ni_healthv));
480                 list_add_tail(&local_ni->ni_recovery,
481                               &the_lnet.ln_mt_localNIRecovq);
482                 lnet_ni_addref_locked(local_ni, 0);
483         }
484         lnet_net_unlock(0);
485 }
486
487 void
488 lnet_handle_remote_failure_locked(struct lnet_peer_ni *lpni)
489 {
490         __u32 sensitivity = lnet_health_sensitivity;
491         __u32 lp_sensitivity;
492
493         /*
494          * NO-OP if:
495          * 1. lpni could be NULL if we're in the LOLND case
496          * 2. this is a recovery message
497          */
498         if (!lpni)
499                 return;
500
501         /*
502          * If there is a health sensitivity in the peer then use that
503          * instead of the globally set one.
504          */
505         lp_sensitivity = lpni->lpni_peer_net->lpn_peer->lp_health_sensitivity;
506         if (lp_sensitivity)
507                 sensitivity = lp_sensitivity;
508
509         lnet_dec_healthv_locked(&lpni->lpni_healthv, sensitivity);
510
511         /* update the peer_net's health value */
512         lnet_update_peer_net_healthv(lpni);
513
514         /*
515          * add the peer NI to the recovery queue if it's not already there
516          * and it's health value is actually below the maximum. It's
517          * possible that the sensitivity might be set to 0, and the health
518          * value will not be reduced. In this case, there is no reason to
519          * invoke recovery
520          */
521         lnet_peer_ni_add_to_recoveryq_locked(lpni);
522 }
523
524 static void
525 lnet_handle_remote_failure(struct lnet_peer_ni *lpni)
526 {
527         /* lpni could be NULL if we're in the LOLND case */
528         if (!lpni)
529                 return;
530
531         lnet_net_lock(0);
532         /* the mt could've shutdown and cleaned up the queues */
533         if (the_lnet.ln_mt_state != LNET_MT_STATE_RUNNING) {
534                 lnet_net_unlock(0);
535                 return;
536         }
537         lnet_handle_remote_failure_locked(lpni);
538         lnet_net_unlock(0);
539 }
540
541 static void
542 lnet_incr_hstats(struct lnet_ni *ni, struct lnet_peer_ni *lpni,
543                  enum lnet_msg_hstatus hstatus)
544 {
545         struct lnet_counters_health *health;
546
547         health = &the_lnet.ln_counters[0]->lct_health;
548
549         switch (hstatus) {
550         case LNET_MSG_STATUS_LOCAL_INTERRUPT:
551                 atomic_inc(&ni->ni_hstats.hlt_local_interrupt);
552                 health->lch_local_interrupt_count++;
553                 break;
554         case LNET_MSG_STATUS_LOCAL_DROPPED:
555                 atomic_inc(&ni->ni_hstats.hlt_local_dropped);
556                 health->lch_local_dropped_count++;
557                 break;
558         case LNET_MSG_STATUS_LOCAL_ABORTED:
559                 atomic_inc(&ni->ni_hstats.hlt_local_aborted);
560                 health->lch_local_aborted_count++;
561                 break;
562         case LNET_MSG_STATUS_LOCAL_NO_ROUTE:
563                 atomic_inc(&ni->ni_hstats.hlt_local_no_route);
564                 health->lch_local_no_route_count++;
565                 break;
566         case LNET_MSG_STATUS_LOCAL_TIMEOUT:
567                 atomic_inc(&ni->ni_hstats.hlt_local_timeout);
568                 health->lch_local_timeout_count++;
569                 break;
570         case LNET_MSG_STATUS_LOCAL_ERROR:
571                 atomic_inc(&ni->ni_hstats.hlt_local_error);
572                 health->lch_local_error_count++;
573                 break;
574         case LNET_MSG_STATUS_REMOTE_DROPPED:
575                 if (lpni)
576                         atomic_inc(&lpni->lpni_hstats.hlt_remote_dropped);
577                 health->lch_remote_dropped_count++;
578                 break;
579         case LNET_MSG_STATUS_REMOTE_ERROR:
580                 if (lpni)
581                         atomic_inc(&lpni->lpni_hstats.hlt_remote_error);
582                 health->lch_remote_error_count++;
583                 break;
584         case LNET_MSG_STATUS_REMOTE_TIMEOUT:
585                 if (lpni)
586                         atomic_inc(&lpni->lpni_hstats.hlt_remote_timeout);
587                 health->lch_remote_timeout_count++;
588                 break;
589         case LNET_MSG_STATUS_NETWORK_TIMEOUT:
590                 if (lpni)
591                         atomic_inc(&lpni->lpni_hstats.hlt_network_timeout);
592                 health->lch_network_timeout_count++;
593                 break;
594         case LNET_MSG_STATUS_OK:
595                 break;
596         default:
597                 LBUG();
598         }
599 }
600
601 static void
602 lnet_resend_msg_locked(struct lnet_msg *msg)
603 {
604         msg->msg_retry_count++;
605
606         /*
607          * remove message from the active list and reset it to prepare
608          * for a resend. Two exceptions to this
609          *
610          * 1. the router case. When a message is being routed it is
611          * committed for rx when received and committed for tx when
612          * forwarded. We don't want to remove it from the active list, since
613          * code which handles receiving expects it to remain on the active
614          * list.
615          *
616          * 2. The REPLY case. Reply messages use the same message
617          * structure for the GET that was received.
618          */
619         if (!msg->msg_routing && msg->msg_type != LNET_MSG_REPLY) {
620                 list_del_init(&msg->msg_activelist);
621                 msg->msg_onactivelist = 0;
622         }
623         /*
624          * The msg_target.nid which was originally set
625          * when calling LNetGet() or LNetPut() might've
626          * been overwritten if we're routing this message.
627          * Call lnet_msg_decommit_tx() to return the credit
628          * this message consumed. The message will
629          * consume another credit when it gets resent.
630          */
631         msg->msg_target.nid = msg->msg_hdr.dest_nid;
632         lnet_msg_decommit_tx(msg, -EAGAIN);
633         msg->msg_sending = 0;
634         msg->msg_receiving = 0;
635         msg->msg_target_is_router = 0;
636
637         CDEBUG(D_NET, "%s->%s:%s:%s - queuing msg (%p) for resend\n",
638                libcfs_nid2str(msg->msg_hdr.src_nid),
639                libcfs_nid2str(msg->msg_hdr.dest_nid),
640                lnet_msgtyp2str(msg->msg_type),
641                lnet_health_error2str(msg->msg_health_status), msg);
642
643         list_add_tail(&msg->msg_list, the_lnet.ln_mt_resendqs[msg->msg_tx_cpt]);
644
645         complete(&the_lnet.ln_mt_wait_complete);
646 }
647
648 int
649 lnet_check_finalize_recursion_locked(struct lnet_msg *msg,
650                                      struct list_head *containerq,
651                                      int nworkers, void **workers)
652 {
653         int my_slot = -1;
654         int i;
655
656         list_add_tail(&msg->msg_list, containerq);
657
658         for (i = 0; i < nworkers; i++) {
659                 if (workers[i] == current)
660                         break;
661
662                 if (my_slot < 0 && workers[i] == NULL)
663                         my_slot = i;
664         }
665
666         if (i < nworkers || my_slot < 0)
667                 return -1;
668
669         workers[my_slot] = current;
670
671         return my_slot;
672 }
673
674 int
675 lnet_attempt_msg_resend(struct lnet_msg *msg)
676 {
677         struct lnet_msg_container *container;
678         int my_slot;
679         int cpt;
680
681         /* we can only resend tx_committed messages */
682         LASSERT(msg->msg_tx_committed);
683
684         /* don't resend recovery messages */
685         if (msg->msg_recovery) {
686                 CDEBUG(D_NET, "msg %s->%s is a recovery ping. retry# %d\n",
687                         libcfs_nid2str(msg->msg_from),
688                         libcfs_nid2str(msg->msg_target.nid),
689                         msg->msg_retry_count);
690                 return -ENOTRECOVERABLE;
691         }
692
693         /*
694          * if we explicitly indicated we don't want to resend then just
695          * return
696          */
697         if (msg->msg_no_resend) {
698                 CDEBUG(D_NET, "msg %s->%s requested no resend. retry# %d\n",
699                         libcfs_nid2str(msg->msg_from),
700                         libcfs_nid2str(msg->msg_target.nid),
701                         msg->msg_retry_count);
702                 return -ENOTRECOVERABLE;
703         }
704
705         /* check if the message has exceeded the number of retries */
706         if (msg->msg_retry_count >= lnet_retry_count) {
707                 CNETERR("msg %s->%s exceeded retry count %d\n",
708                         libcfs_nid2str(msg->msg_from),
709                         libcfs_nid2str(msg->msg_target.nid),
710                         msg->msg_retry_count);
711                 return -ENOTRECOVERABLE;
712         }
713
714         cpt = msg->msg_tx_cpt;
715         lnet_net_lock(cpt);
716
717         /* check again under lock */
718         if (the_lnet.ln_mt_state != LNET_MT_STATE_RUNNING) {
719                 lnet_net_unlock(cpt);
720                 return -ESHUTDOWN;
721         }
722
723         container = the_lnet.ln_msg_containers[cpt];
724         my_slot =
725                 lnet_check_finalize_recursion_locked(msg,
726                                         &container->msc_resending,
727                                         container->msc_nfinalizers,
728                                         container->msc_resenders);
729
730         /* enough threads are resending */
731         if (my_slot == -1) {
732                 lnet_net_unlock(cpt);
733                 return 0;
734         }
735
736         while (!list_empty(&container->msc_resending)) {
737                 msg = list_entry(container->msc_resending.next,
738                                         struct lnet_msg, msg_list);
739                 list_del(&msg->msg_list);
740
741                 /*
742                  * resending the message will require us to call
743                  * lnet_msg_decommit_tx() which will return the credit
744                  * which this message holds. This could trigger another
745                  * queued message to be sent. If that message fails and
746                  * requires a resend we will recurse.
747                  * But since at this point the slot is taken, the message
748                  * will be queued in the container and dealt with
749                  * later. This breaks the recursion.
750                  */
751                 lnet_resend_msg_locked(msg);
752         }
753
754         /*
755          * msc_resenders is an array of process pointers. Each entry holds
756          * a pointer to the current process operating on the message. An
757          * array entry is created per CPT. If the array slot is already
758          * set, then it means that there is a thread on the CPT currently
759          * resending a message.
760          * Once the thread finishes clear the slot to enable the thread to
761          * take on more resend work.
762          */
763         container->msc_resenders[my_slot] = NULL;
764         lnet_net_unlock(cpt);
765
766         return 0;
767 }
768
769 /*
770  * Do a health check on the message:
771  * return -1 if we're not going to handle the error or
772  *   if we've reached the maximum number of retries.
773  *   success case will return -1 as well
774  * return 0 if it the message is requeued for send
775  */
776 static int
777 lnet_health_check(struct lnet_msg *msg)
778 {
779         enum lnet_msg_hstatus hstatus = msg->msg_health_status;
780         struct lnet_peer_ni *lpni;
781         struct lnet_ni *ni;
782         bool lo = false;
783
784         /* if we're shutting down no point in handling health. */
785         if (the_lnet.ln_mt_state != LNET_MT_STATE_RUNNING)
786                 return -1;
787
788         LASSERT(msg->msg_tx_committed || msg->msg_rx_committed);
789
790         /*
791          * if we're sending to the LOLND then the msg_txpeer will not be
792          * set. So no need to sanity check it.
793          */
794         if (msg->msg_tx_committed &&
795             LNET_NETTYP(LNET_NIDNET(msg->msg_txni->ni_nid)) != LOLND)
796                 LASSERT(msg->msg_txpeer);
797         else if (msg->msg_tx_committed &&
798                  LNET_NETTYP(LNET_NIDNET(msg->msg_txni->ni_nid)) == LOLND)
799                 lo = true;
800
801         if (hstatus != LNET_MSG_STATUS_OK &&
802             ktime_compare(ktime_get(), msg->msg_deadline) >= 0)
803                 return -1;
804
805         /*
806          * always prefer txni/txpeer if they message is committed for both
807          * directions.
808          */
809         if (msg->msg_tx_committed) {
810                 ni = msg->msg_txni;
811                 lpni = msg->msg_txpeer;
812         } else {
813                 ni = msg->msg_rxni;
814                 lpni = msg->msg_rxpeer;
815         }
816
817         if (!lo)
818                 LASSERT(ni && lpni);
819         else
820                 LASSERT(ni);
821
822         CDEBUG(D_NET, "health check: %s->%s: %s: %s\n",
823                libcfs_nid2str(ni->ni_nid),
824                (lo) ? "self" : libcfs_nid2str(lpni->lpni_nid),
825                lnet_msgtyp2str(msg->msg_type),
826                lnet_health_error2str(hstatus));
827
828         /*
829          * stats are only incremented for errors so avoid wasting time
830          * incrementing statistics if there is no error.
831          */
832         if (hstatus != LNET_MSG_STATUS_OK) {
833                 lnet_net_lock(0);
834                 lnet_incr_hstats(ni, lpni, hstatus);
835                 lnet_net_unlock(0);
836         }
837
838         switch (hstatus) {
839         case LNET_MSG_STATUS_OK:
840                 /*
841                  * increment the local ni health weather we successfully
842                  * received or sent a message on it.
843                  */
844                 lnet_inc_healthv(&ni->ni_healthv, lnet_health_sensitivity);
845                 /*
846                  * It's possible msg_txpeer is NULL in the LOLND
847                  * case. Only increment the peer's health if we're
848                  * receiving a message from it. It's the only sure way to
849                  * know that a remote interface is up.
850                  * If this interface is part of a router, then take that
851                  * as indication that the router is fully healthy.
852                  */
853                 if (lpni && msg->msg_rx_committed) {
854                         /*
855                          * If we're receiving a message from the router or
856                          * I'm a router, then set that lpni's health to
857                          * maximum so we can commence communication
858                          */
859                         lnet_net_lock(0);
860                         if (lnet_isrouter(lpni) || the_lnet.ln_routing) {
861                                 lnet_set_lpni_healthv_locked(lpni,
862                                         LNET_MAX_HEALTH_VALUE);
863                         } else {
864                                 __u32 sensitivity = lpni->lpni_peer_net->
865                                         lpn_peer->lp_health_sensitivity;
866
867                                 lnet_inc_lpni_healthv_locked(lpni,
868                                         (sensitivity) ? sensitivity :
869                                         lnet_health_sensitivity);
870                         }
871                         lnet_net_unlock(0);
872                 }
873
874                 /* we can finalize this message */
875                 return -1;
876         case LNET_MSG_STATUS_LOCAL_INTERRUPT:
877         case LNET_MSG_STATUS_LOCAL_DROPPED:
878         case LNET_MSG_STATUS_LOCAL_ABORTED:
879         case LNET_MSG_STATUS_LOCAL_NO_ROUTE:
880         case LNET_MSG_STATUS_LOCAL_TIMEOUT:
881                 /*
882                  * don't further decrement the health value if the
883                  * recovery message failed.
884                  */
885                 if (!msg->msg_recovery)
886                         lnet_handle_local_failure(ni);
887                 if (msg->msg_tx_committed)
888                         /* add to the re-send queue */
889                         return lnet_attempt_msg_resend(msg);
890                 break;
891
892         /*
893          * These errors will not trigger a resend so simply
894          * finalize the message
895          */
896         case LNET_MSG_STATUS_LOCAL_ERROR:
897                 /*
898                  * don't further decrement the health value if the
899                  * recovery message failed.
900                  */
901                 if (!msg->msg_recovery)
902                         lnet_handle_local_failure(ni);
903                 return -1;
904
905         /*
906          * TODO: since the remote dropped the message we can
907          * attempt a resend safely.
908          */
909         case LNET_MSG_STATUS_REMOTE_DROPPED:
910                 if (!msg->msg_recovery)
911                         lnet_handle_remote_failure(lpni);
912                 if (msg->msg_tx_committed)
913                         return lnet_attempt_msg_resend(msg);
914                 break;
915
916         case LNET_MSG_STATUS_REMOTE_ERROR:
917         case LNET_MSG_STATUS_REMOTE_TIMEOUT:
918         case LNET_MSG_STATUS_NETWORK_TIMEOUT:
919                 if (!msg->msg_recovery)
920                         lnet_handle_remote_failure(lpni);
921                 return -1;
922         default:
923                 LBUG();
924         }
925
926         /* no resend is needed */
927         return -1;
928 }
929
930 static void
931 lnet_msg_detach_md(struct lnet_msg *msg, int cpt, int status)
932 {
933         struct lnet_libmd *md = msg->msg_md;
934         int unlink;
935
936         /* Now it's safe to drop my caller's ref */
937         md->md_refcount--;
938         LASSERT(md->md_refcount >= 0);
939
940         unlink = lnet_md_unlinkable(md);
941         if (md->md_handler) {
942                 if ((md->md_flags & LNET_MD_FLAG_ABORTED) && !status) {
943                         msg->msg_ev.status   = -ETIMEDOUT;
944                         CDEBUG(D_NET, "md 0x%p already unlinked\n", md);
945                 } else {
946                         msg->msg_ev.status   = status;
947                 }
948                 msg->msg_ev.unlinked = unlink;
949                 md->md_handler(&msg->msg_ev);
950         }
951
952         if (unlink || (md->md_refcount == 0 &&
953                        md->md_threshold == LNET_MD_THRESH_INF))
954                 lnet_detach_rsp_tracker(md, cpt);
955
956         if (unlink)
957                 lnet_md_unlink(md);
958
959         msg->msg_md = NULL;
960 }
961
962 static bool
963 lnet_is_health_check(struct lnet_msg *msg)
964 {
965         bool hc = true;
966         int status = msg->msg_ev.status;
967
968         if ((!msg->msg_tx_committed && !msg->msg_rx_committed) ||
969             !msg->msg_onactivelist) {
970                 CDEBUG(D_NET, "msg %p not committed for send or receive\n",
971                        msg);
972                 return false;
973         }
974
975         if ((msg->msg_tx_committed && !msg->msg_txpeer) ||
976             (msg->msg_rx_committed && !msg->msg_rxpeer)) {
977                 /* The optimized GET case does not set msg_rxpeer, but status
978                  * could be zero. Only print the error message if we have a
979                  * non-zero status.
980                  */
981                 if (status)
982                         CDEBUG(D_NET, "msg %p status %d cannot retry\n", msg,
983                                status);
984                 return false;
985         }
986
987         /* Check for status inconsistencies */
988         if ((!status && msg->msg_health_status != LNET_MSG_STATUS_OK) ||
989              (status && msg->msg_health_status == LNET_MSG_STATUS_OK)) {
990                 CDEBUG(D_NET, "Msg %p is in inconsistent state, don't perform health "
991                        "checking (%d, %d)\n", msg, status,
992                        msg->msg_health_status);
993                 hc = false;
994         }
995
996         CDEBUG(D_NET, "health check = %d, status = %d, hstatus = %d\n",
997                hc, status, msg->msg_health_status);
998
999         return hc;
1000 }
1001
1002 char *
1003 lnet_health_error2str(enum lnet_msg_hstatus hstatus)
1004 {
1005         switch (hstatus) {
1006         case LNET_MSG_STATUS_LOCAL_INTERRUPT:
1007                 return "LOCAL_INTERRUPT";
1008         case LNET_MSG_STATUS_LOCAL_DROPPED:
1009                 return "LOCAL_DROPPED";
1010         case LNET_MSG_STATUS_LOCAL_ABORTED:
1011                 return "LOCAL_ABORTED";
1012         case LNET_MSG_STATUS_LOCAL_NO_ROUTE:
1013                 return "LOCAL_NO_ROUTE";
1014         case LNET_MSG_STATUS_LOCAL_TIMEOUT:
1015                 return "LOCAL_TIMEOUT";
1016         case LNET_MSG_STATUS_LOCAL_ERROR:
1017                 return "LOCAL_ERROR";
1018         case LNET_MSG_STATUS_REMOTE_DROPPED:
1019                 return "REMOTE_DROPPED";
1020         case LNET_MSG_STATUS_REMOTE_ERROR:
1021                 return "REMOTE_ERROR";
1022         case LNET_MSG_STATUS_REMOTE_TIMEOUT:
1023                 return "REMOTE_TIMEOUT";
1024         case LNET_MSG_STATUS_NETWORK_TIMEOUT:
1025                 return "NETWORK_TIMEOUT";
1026         case LNET_MSG_STATUS_OK:
1027                 return "OK";
1028         default:
1029                 return "<UNKNOWN>";
1030         }
1031 }
1032
1033 bool
1034 lnet_send_error_simulation(struct lnet_msg *msg,
1035                            enum lnet_msg_hstatus *hstatus)
1036 {
1037         if (!msg)
1038                 return false;
1039
1040         if (list_empty(&the_lnet.ln_drop_rules))
1041             return false;
1042
1043         /* match only health rules */
1044         if (!lnet_drop_rule_match(&msg->msg_hdr, LNET_NID_ANY,
1045                                   hstatus))
1046                 return false;
1047
1048         CDEBUG(D_NET, "src %s(%s)->dst %s: %s simulate health error: %s\n",
1049                 libcfs_nid2str(msg->msg_hdr.src_nid),
1050                 libcfs_nid2str(msg->msg_txni->ni_nid),
1051                 libcfs_nid2str(msg->msg_hdr.dest_nid),
1052                 lnet_msgtyp2str(msg->msg_type),
1053                 lnet_health_error2str(*hstatus));
1054
1055         return true;
1056 }
1057 EXPORT_SYMBOL(lnet_send_error_simulation);
1058
1059 void
1060 lnet_finalize(struct lnet_msg *msg, int status)
1061 {
1062         struct lnet_msg_container *container;
1063         int my_slot;
1064         int cpt;
1065         int rc;
1066
1067         LASSERT(!in_interrupt());
1068
1069         if (msg == NULL)
1070                 return;
1071
1072         msg->msg_ev.status = status;
1073
1074         if (lnet_is_health_check(msg)) {
1075                 /*
1076                  * Check the health status of the message. If it has one
1077                  * of the errors that we're supposed to handle, and it has
1078                  * not timed out, then
1079                  *      1. Decrement the appropriate health_value
1080                  *      2. queue the message on the resend queue
1081
1082                  * if the message send is success, timed out or failed in the
1083                  * health check for any reason then we'll just finalize the
1084                  * message. Otherwise just return since the message has been
1085                  * put on the resend queue.
1086                  */
1087                 if (!lnet_health_check(msg))
1088                         return;
1089         }
1090
1091         /*
1092          * We're not going to resend this message so detach its MD and invoke
1093          * the appropriate callbacks
1094          */
1095         if (msg->msg_md != NULL) {
1096                 cpt = lnet_cpt_of_cookie(msg->msg_md->md_lh.lh_cookie);
1097                 lnet_res_lock(cpt);
1098                 lnet_msg_detach_md(msg, cpt, status);
1099                 lnet_res_unlock(cpt);
1100         }
1101
1102 again:
1103         if (!msg->msg_tx_committed && !msg->msg_rx_committed) {
1104                 /* not committed to network yet */
1105                 LASSERT(!msg->msg_onactivelist);
1106                 lnet_msg_free(msg);
1107                 return;
1108         }
1109
1110         /*
1111          * NB: routed message can be committed for both receiving and sending,
1112          * we should finalize in LIFO order and keep counters correct.
1113          * (finalize sending first then finalize receiving)
1114          */
1115         cpt = msg->msg_tx_committed ? msg->msg_tx_cpt : msg->msg_rx_cpt;
1116         lnet_net_lock(cpt);
1117
1118         container = the_lnet.ln_msg_containers[cpt];
1119
1120         /* Recursion breaker.  Don't complete the message here if I am (or
1121          * enough other threads are) already completing messages */
1122         my_slot = lnet_check_finalize_recursion_locked(msg,
1123                                                 &container->msc_finalizing,
1124                                                 container->msc_nfinalizers,
1125                                                 container->msc_finalizers);
1126
1127         /* enough threads are resending */
1128         if (my_slot == -1) {
1129                 lnet_net_unlock(cpt);
1130                 return;
1131         }
1132
1133         rc = 0;
1134         while (!list_empty(&container->msc_finalizing)) {
1135                 msg = list_entry(container->msc_finalizing.next,
1136                                  struct lnet_msg, msg_list);
1137
1138                 list_del_init(&msg->msg_list);
1139
1140                 /* NB drops and regains the lnet lock if it actually does
1141                  * anything, so my finalizing friends can chomp along too */
1142                 rc = lnet_complete_msg_locked(msg, cpt);
1143                 if (rc != 0)
1144                         break;
1145         }
1146
1147         if (unlikely(!list_empty(&the_lnet.ln_delay_rules))) {
1148                 lnet_net_unlock(cpt);
1149                 lnet_delay_rule_check();
1150                 lnet_net_lock(cpt);
1151         }
1152
1153         container->msc_finalizers[my_slot] = NULL;
1154         lnet_net_unlock(cpt);
1155
1156         if (rc != 0)
1157                 goto again;
1158 }
1159 EXPORT_SYMBOL(lnet_finalize);
1160
1161 void
1162 lnet_msg_container_cleanup(struct lnet_msg_container *container)
1163 {
1164         int     count = 0;
1165
1166         if (container->msc_init == 0)
1167                 return;
1168
1169         while (!list_empty(&container->msc_active)) {
1170                 struct lnet_msg *msg;
1171
1172                 msg  = list_entry(container->msc_active.next,
1173                                   struct lnet_msg, msg_activelist);
1174                 LASSERT(msg->msg_onactivelist);
1175                 msg->msg_onactivelist = 0;
1176                 list_del_init(&msg->msg_activelist);
1177                 lnet_msg_free(msg);
1178                 count++;
1179         }
1180
1181         if (count > 0)
1182                 CERROR("%d active msg on exit\n", count);
1183
1184         if (container->msc_finalizers != NULL) {
1185                 CFS_FREE_PTR_ARRAY(container->msc_finalizers,
1186                                    container->msc_nfinalizers);
1187                 container->msc_finalizers = NULL;
1188         }
1189
1190         if (container->msc_resenders != NULL) {
1191                 CFS_FREE_PTR_ARRAY(container->msc_resenders,
1192                                    container->msc_nfinalizers);
1193                 container->msc_resenders = NULL;
1194         }
1195         container->msc_init = 0;
1196 }
1197
1198 int
1199 lnet_msg_container_setup(struct lnet_msg_container *container, int cpt)
1200 {
1201         int rc = 0;
1202
1203         container->msc_init = 1;
1204
1205         INIT_LIST_HEAD(&container->msc_active);
1206         INIT_LIST_HEAD(&container->msc_finalizing);
1207         INIT_LIST_HEAD(&container->msc_resending);
1208
1209         /* number of CPUs */
1210         container->msc_nfinalizers = cfs_cpt_weight(lnet_cpt_table(), cpt);
1211         if (container->msc_nfinalizers == 0)
1212                 container->msc_nfinalizers = 1;
1213
1214         LIBCFS_CPT_ALLOC(container->msc_finalizers, lnet_cpt_table(), cpt,
1215                          container->msc_nfinalizers *
1216                          sizeof(*container->msc_finalizers));
1217
1218         if (container->msc_finalizers == NULL) {
1219                 CERROR("Failed to allocate message finalizers\n");
1220                 lnet_msg_container_cleanup(container);
1221                 return -ENOMEM;
1222         }
1223
1224         LIBCFS_CPT_ALLOC(container->msc_resenders, lnet_cpt_table(), cpt,
1225                          container->msc_nfinalizers *
1226                          sizeof(*container->msc_resenders));
1227
1228         if (container->msc_resenders == NULL) {
1229                 CERROR("Failed to allocate message resenders\n");
1230                 lnet_msg_container_cleanup(container);
1231                 return -ENOMEM;
1232         }
1233
1234         return rc;
1235 }
1236
1237 void
1238 lnet_msg_containers_destroy(void)
1239 {
1240         struct lnet_msg_container *container;
1241         int     i;
1242
1243         if (the_lnet.ln_msg_containers == NULL)
1244                 return;
1245
1246         cfs_percpt_for_each(container, i, the_lnet.ln_msg_containers)
1247                 lnet_msg_container_cleanup(container);
1248
1249         cfs_percpt_free(the_lnet.ln_msg_containers);
1250         the_lnet.ln_msg_containers = NULL;
1251 }
1252
1253 int
1254 lnet_msg_containers_create(void)
1255 {
1256         struct lnet_msg_container *container;
1257         int     rc;
1258         int     i;
1259
1260         the_lnet.ln_msg_containers = cfs_percpt_alloc(lnet_cpt_table(),
1261                                                       sizeof(*container));
1262
1263         if (the_lnet.ln_msg_containers == NULL) {
1264                 CERROR("Failed to allocate cpu-partition data for network\n");
1265                 return -ENOMEM;
1266         }
1267
1268         cfs_percpt_for_each(container, i, the_lnet.ln_msg_containers) {
1269                 rc = lnet_msg_container_setup(container, i);
1270                 if (rc != 0) {
1271                         lnet_msg_containers_destroy();
1272                         return rc;
1273                 }
1274         }
1275
1276         return 0;
1277 }