Whamcloud - gitweb
LU-13255 lnet: introduce wait_var_event_warning.
[fs/lustre-release.git] / lnet / klnds / socklnd / socklnd_cb.c
1 /*
2  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
3  *
4  * Copyright (c) 2011, 2017, Intel Corporation.
5  *
6  *   Author: Zach Brown <zab@zabbo.net>
7  *   Author: Peter J. Braam <braam@clusterfs.com>
8  *   Author: Phil Schwan <phil@clusterfs.com>
9  *   Author: Eric Barton <eric@bartonsoftware.com>
10  *
11  *   This file is part of Lustre, https://wiki.whamcloud.com/
12  *
13  *   Portals is free software; you can redistribute it and/or
14  *   modify it under the terms of version 2 of the GNU General Public
15  *   License as published by the Free Software Foundation.
16  *
17  *   Portals is distributed in the hope that it will be useful,
18  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
19  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  *   GNU General Public License for more details.
21  *
22  *   You should have received a copy of the GNU General Public License
23  *   along with Portals; if not, write to the Free Software
24  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25  */
26
27 #include "socklnd.h"
28
29 struct ksock_tx *
30 ksocknal_alloc_tx(int type, int size)
31 {
32         struct ksock_tx *tx = NULL;
33
34         if (type == KSOCK_MSG_NOOP) {
35                 LASSERT(size == KSOCK_NOOP_TX_SIZE);
36
37                 /* searching for a noop tx in free list */
38                 spin_lock(&ksocknal_data.ksnd_tx_lock);
39
40                 if (!list_empty(&ksocknal_data.ksnd_idle_noop_txs)) {
41                         tx = list_entry(ksocknal_data.ksnd_idle_noop_txs.next,
42                                         struct ksock_tx, tx_list);
43                         LASSERT(tx->tx_desc_size == size);
44                         list_del(&tx->tx_list);
45                 }
46
47                 spin_unlock(&ksocknal_data.ksnd_tx_lock);
48         }
49
50         if (tx == NULL)
51                 LIBCFS_ALLOC(tx, size);
52
53         if (tx == NULL)
54                 return NULL;
55
56         atomic_set(&tx->tx_refcount, 1);
57         tx->tx_zc_aborted = 0;
58         tx->tx_zc_capable = 0;
59         tx->tx_zc_checked = 0;
60         tx->tx_hstatus = LNET_MSG_STATUS_OK;
61         tx->tx_desc_size  = size;
62
63         atomic_inc(&ksocknal_data.ksnd_nactive_txs);
64
65         return tx;
66 }
67
68 struct ksock_tx *
69 ksocknal_alloc_tx_noop(__u64 cookie, int nonblk)
70 {
71         struct ksock_tx *tx;
72
73         tx = ksocknal_alloc_tx(KSOCK_MSG_NOOP, KSOCK_NOOP_TX_SIZE);
74         if (tx == NULL) {
75                 CERROR("Can't allocate noop tx desc\n");
76                 return NULL;
77         }
78
79         tx->tx_conn     = NULL;
80         tx->tx_lnetmsg  = NULL;
81         tx->tx_kiov     = NULL;
82         tx->tx_nkiov    = 0;
83         tx->tx_iov      = tx->tx_frags.virt.iov;
84         tx->tx_niov     = 1;
85         tx->tx_nonblk   = nonblk;
86
87         tx->tx_msg.ksm_csum = 0;
88         tx->tx_msg.ksm_type = KSOCK_MSG_NOOP;
89         tx->tx_msg.ksm_zc_cookies[0] = 0;
90         tx->tx_msg.ksm_zc_cookies[1] = cookie;
91
92         return tx;
93 }
94
95
96 void
97 ksocknal_free_tx(struct ksock_tx *tx)
98 {
99         atomic_dec(&ksocknal_data.ksnd_nactive_txs);
100
101         if (tx->tx_lnetmsg == NULL && tx->tx_desc_size == KSOCK_NOOP_TX_SIZE) {
102                 /* it's a noop tx */
103                 spin_lock(&ksocknal_data.ksnd_tx_lock);
104
105                 list_add(&tx->tx_list, &ksocknal_data.ksnd_idle_noop_txs);
106
107                 spin_unlock(&ksocknal_data.ksnd_tx_lock);
108         } else {
109                 LIBCFS_FREE(tx, tx->tx_desc_size);
110         }
111 }
112
113 static int
114 ksocknal_send_iov(struct ksock_conn *conn, struct ksock_tx *tx,
115                   struct kvec *scratch_iov)
116 {
117         struct kvec *iov = tx->tx_iov;
118         int    nob;
119         int    rc;
120
121         LASSERT(tx->tx_niov > 0);
122
123         /* Never touch tx->tx_iov inside ksocknal_lib_send_iov() */
124         rc = ksocknal_lib_send_iov(conn, tx, scratch_iov);
125
126         if (rc <= 0)                            /* sent nothing? */
127                 return rc;
128
129         nob = rc;
130         LASSERT(nob <= tx->tx_resid);
131         tx->tx_resid -= nob;
132
133         /* "consume" iov */
134         do {
135                 LASSERT(tx->tx_niov > 0);
136
137                 if (nob < (int) iov->iov_len) {
138                         iov->iov_base += nob;
139                         iov->iov_len -= nob;
140                         return rc;
141                 }
142
143                 nob -= iov->iov_len;
144                 tx->tx_iov = ++iov;
145                 tx->tx_niov--;
146         } while (nob != 0);
147
148         return rc;
149 }
150
151 static int
152 ksocknal_send_kiov(struct ksock_conn *conn, struct ksock_tx *tx,
153                    struct kvec *scratch_iov)
154 {
155         lnet_kiov_t *kiov = tx->tx_kiov;
156         int nob;
157         int rc;
158
159         LASSERT(tx->tx_niov == 0);
160         LASSERT(tx->tx_nkiov > 0);
161
162         /* Never touch tx->tx_kiov inside ksocknal_lib_send_kiov() */
163         rc = ksocknal_lib_send_kiov(conn, tx, scratch_iov);
164
165         if (rc <= 0)                            /* sent nothing? */
166                 return rc;
167
168         nob = rc;
169         LASSERT(nob <= tx->tx_resid);
170         tx->tx_resid -= nob;
171
172         /* "consume" kiov */
173         do {
174                 LASSERT(tx->tx_nkiov > 0);
175
176                 if (nob < (int)kiov->kiov_len) {
177                         kiov->kiov_offset += nob;
178                         kiov->kiov_len -= nob;
179                         return rc;
180                 }
181
182                 nob -= (int)kiov->kiov_len;
183                 tx->tx_kiov = ++kiov;
184                 tx->tx_nkiov--;
185         } while (nob != 0);
186
187         return rc;
188 }
189
190 static int
191 ksocknal_transmit(struct ksock_conn *conn, struct ksock_tx *tx,
192                   struct kvec *scratch_iov)
193 {
194         int     rc;
195         int     bufnob;
196
197         if (ksocknal_data.ksnd_stall_tx != 0)
198                 schedule_timeout_uninterruptible(
199                         cfs_time_seconds(ksocknal_data.ksnd_stall_tx));
200
201         LASSERT(tx->tx_resid != 0);
202
203         rc = ksocknal_connsock_addref(conn);
204         if (rc != 0) {
205                 LASSERT(conn->ksnc_closing);
206                 return -ESHUTDOWN;
207         }
208
209         do {
210                 if (ksocknal_data.ksnd_enomem_tx > 0) {
211                         /* testing... */
212                         ksocknal_data.ksnd_enomem_tx--;
213                         rc = -EAGAIN;
214                 } else if (tx->tx_niov != 0) {
215                         rc = ksocknal_send_iov(conn, tx, scratch_iov);
216                 } else {
217                         rc = ksocknal_send_kiov(conn, tx, scratch_iov);
218                 }
219
220                 bufnob = conn->ksnc_sock->sk->sk_wmem_queued;
221                 if (rc > 0)                     /* sent something? */
222                         conn->ksnc_tx_bufnob += rc; /* account it */
223
224                 if (bufnob < conn->ksnc_tx_bufnob) {
225                         /* allocated send buffer bytes < computed; infer
226                          * something got ACKed */
227                         conn->ksnc_tx_deadline = ktime_get_seconds() +
228                                                  lnet_get_lnd_timeout();
229                         conn->ksnc_peer->ksnp_last_alive = ktime_get_seconds();
230                         conn->ksnc_tx_bufnob = bufnob;
231                         smp_mb();
232                 }
233
234                 if (rc <= 0) { /* Didn't write anything? */
235                         /* some stacks return 0 instead of -EAGAIN */
236                         if (rc == 0)
237                                 rc = -EAGAIN;
238
239                         /* Check if EAGAIN is due to memory pressure */
240                         if (rc == -EAGAIN && ksocknal_lib_memory_pressure(conn))
241                                 rc = -ENOMEM;
242
243                         break;
244                 }
245
246                 /* socket's wmem_queued now includes 'rc' bytes */
247                 atomic_sub (rc, &conn->ksnc_tx_nob);
248                 rc = 0;
249
250         } while (tx->tx_resid != 0);
251
252         ksocknal_connsock_decref(conn);
253         return rc;
254 }
255
256 static int
257 ksocknal_recv_iov(struct ksock_conn *conn, struct kvec *scratchiov)
258 {
259         struct kvec *iov = conn->ksnc_rx_iov;
260         int     nob;
261         int     rc;
262
263         LASSERT(conn->ksnc_rx_niov > 0);
264
265         /* Never touch conn->ksnc_rx_iov or change connection
266          * status inside ksocknal_lib_recv_iov */
267         rc = ksocknal_lib_recv_iov(conn, scratchiov);
268
269         if (rc <= 0)
270                 return rc;
271
272         /* received something... */
273         nob = rc;
274
275         conn->ksnc_peer->ksnp_last_alive = ktime_get_seconds();
276         conn->ksnc_rx_deadline = ktime_get_seconds() +
277                                  lnet_get_lnd_timeout();
278         smp_mb();                       /* order with setting rx_started */
279         conn->ksnc_rx_started = 1;
280
281         conn->ksnc_rx_nob_wanted -= nob;
282         conn->ksnc_rx_nob_left -= nob;
283
284         do {
285                 LASSERT(conn->ksnc_rx_niov > 0);
286
287                 if (nob < (int)iov->iov_len) {
288                         iov->iov_len -= nob;
289                         iov->iov_base += nob;
290                         return -EAGAIN;
291                 }
292
293                 nob -= iov->iov_len;
294                 conn->ksnc_rx_iov = ++iov;
295                 conn->ksnc_rx_niov--;
296         } while (nob != 0);
297
298         return rc;
299 }
300
301 static int
302 ksocknal_recv_kiov(struct ksock_conn *conn, struct page **rx_scratch_pgs,
303                    struct kvec *scratch_iov)
304 {
305         lnet_kiov_t *kiov = conn->ksnc_rx_kiov;
306         int nob;
307         int rc;
308         LASSERT(conn->ksnc_rx_nkiov > 0);
309
310         /* Never touch conn->ksnc_rx_kiov or change connection
311          * status inside ksocknal_lib_recv_iov */
312         rc = ksocknal_lib_recv_kiov(conn, rx_scratch_pgs, scratch_iov);
313
314         if (rc <= 0)
315                 return rc;
316
317         /* received something... */
318         nob = rc;
319
320         conn->ksnc_peer->ksnp_last_alive = ktime_get_seconds();
321         conn->ksnc_rx_deadline = ktime_get_seconds() +
322                                  lnet_get_lnd_timeout();
323         smp_mb();                       /* order with setting rx_started */
324         conn->ksnc_rx_started = 1;
325
326         conn->ksnc_rx_nob_wanted -= nob;
327         conn->ksnc_rx_nob_left -= nob;
328
329         do {
330                 LASSERT(conn->ksnc_rx_nkiov > 0);
331
332                 if (nob < (int) kiov->kiov_len) {
333                         kiov->kiov_offset += nob;
334                         kiov->kiov_len -= nob;
335                         return -EAGAIN;
336                 }
337
338                 nob -= kiov->kiov_len;
339                 conn->ksnc_rx_kiov = ++kiov;
340                 conn->ksnc_rx_nkiov--;
341         } while (nob != 0);
342
343         return 1;
344 }
345
346 static int
347 ksocknal_receive(struct ksock_conn *conn, struct page **rx_scratch_pgs,
348                  struct kvec *scratch_iov)
349 {
350         /* Return 1 on success, 0 on EOF, < 0 on error.
351          * Caller checks ksnc_rx_nob_wanted to determine
352          * progress/completion. */
353         int     rc;
354         ENTRY;
355
356         if (ksocknal_data.ksnd_stall_rx != 0)
357                 schedule_timeout_uninterruptible(
358                         cfs_time_seconds(ksocknal_data.ksnd_stall_rx));
359
360         rc = ksocknal_connsock_addref(conn);
361         if (rc != 0) {
362                 LASSERT(conn->ksnc_closing);
363                 return -ESHUTDOWN;
364         }
365
366         for (;;) {
367                 if (conn->ksnc_rx_niov != 0)
368                         rc = ksocknal_recv_iov(conn, scratch_iov);
369                 else
370                         rc = ksocknal_recv_kiov(conn, rx_scratch_pgs,
371                                                  scratch_iov);
372
373                 if (rc <= 0) {
374                         /* error/EOF or partial receive */
375                         if (rc == -EAGAIN) {
376                                 rc = 1;
377                         } else if (rc == 0 && conn->ksnc_rx_started) {
378                                 /* EOF in the middle of a message */
379                                 rc = -EPROTO;
380                         }
381                         break;
382                 }
383
384                 /* Completed a fragment */
385
386                 if (conn->ksnc_rx_nob_wanted == 0) {
387                         rc = 1;
388                         break;
389                 }
390         }
391
392         ksocknal_connsock_decref(conn);
393         RETURN(rc);
394 }
395
396 void
397 ksocknal_tx_done(struct lnet_ni *ni, struct ksock_tx *tx, int rc)
398 {
399         struct lnet_msg *lnetmsg = tx->tx_lnetmsg;
400         enum lnet_msg_hstatus hstatus = tx->tx_hstatus;
401         ENTRY;
402
403         LASSERT(ni != NULL || tx->tx_conn != NULL);
404
405         if (!rc && (tx->tx_resid != 0 || tx->tx_zc_aborted)) {
406                 rc = -EIO;
407                 if (hstatus == LNET_MSG_STATUS_OK)
408                         hstatus = LNET_MSG_STATUS_LOCAL_ERROR;
409         }
410
411         if (tx->tx_conn != NULL)
412                 ksocknal_conn_decref(tx->tx_conn);
413
414         ksocknal_free_tx(tx);
415         if (lnetmsg != NULL) { /* KSOCK_MSG_NOOP go without lnetmsg */
416                 lnetmsg->msg_health_status = hstatus;
417                 lnet_finalize(lnetmsg, rc);
418         }
419
420         EXIT;
421 }
422
423 void
424 ksocknal_txlist_done(struct lnet_ni *ni, struct list_head *txlist, int error)
425 {
426         struct ksock_tx *tx;
427
428         while (!list_empty(txlist)) {
429                 tx = list_entry(txlist->next, struct ksock_tx, tx_list);
430
431                 if (error && tx->tx_lnetmsg != NULL) {
432                         CNETERR("Deleting packet type %d len %d %s->%s\n",
433                                 le32_to_cpu(tx->tx_lnetmsg->msg_hdr.type),
434                                 le32_to_cpu(tx->tx_lnetmsg->msg_hdr.payload_length),
435                                 libcfs_nid2str(le64_to_cpu(tx->tx_lnetmsg->msg_hdr.src_nid)),
436                                 libcfs_nid2str(le64_to_cpu(tx->tx_lnetmsg->msg_hdr.dest_nid)));
437                 } else if (error) {
438                         CNETERR("Deleting noop packet\n");
439                 }
440
441                 list_del(&tx->tx_list);
442
443                 if (tx->tx_hstatus == LNET_MSG_STATUS_OK) {
444                         if (error == -ETIMEDOUT)
445                                 tx->tx_hstatus =
446                                   LNET_MSG_STATUS_LOCAL_TIMEOUT;
447                         else if (error == -ENETDOWN ||
448                                  error == -EHOSTUNREACH ||
449                                  error == -ENETUNREACH ||
450                                  error == -ECONNREFUSED ||
451                                  error == -ECONNRESET)
452                                 tx->tx_hstatus = LNET_MSG_STATUS_REMOTE_DROPPED;
453                         /*
454                          * for all other errors we don't want to
455                          * retransmit
456                          */
457                         else if (error)
458                                 tx->tx_hstatus = LNET_MSG_STATUS_LOCAL_ERROR;
459                 }
460
461                 LASSERT(atomic_read(&tx->tx_refcount) == 1);
462                 ksocknal_tx_done(ni, tx, error);
463         }
464 }
465
466 static void
467 ksocknal_check_zc_req(struct ksock_tx *tx)
468 {
469         struct ksock_conn *conn = tx->tx_conn;
470         struct ksock_peer_ni *peer_ni = conn->ksnc_peer;
471
472         /* Set tx_msg.ksm_zc_cookies[0] to a unique non-zero cookie and add tx
473          * to ksnp_zc_req_list if some fragment of this message should be sent
474          * zero-copy.  Our peer_ni will send an ACK containing this cookie when
475          * she has received this message to tell us we can signal completion.
476          * tx_msg.ksm_zc_cookies[0] remains non-zero while tx is on
477          * ksnp_zc_req_list. */
478         LASSERT (tx->tx_msg.ksm_type != KSOCK_MSG_NOOP);
479         LASSERT (tx->tx_zc_capable);
480
481         tx->tx_zc_checked = 1;
482
483         if (conn->ksnc_proto == &ksocknal_protocol_v1x ||
484             !conn->ksnc_zc_capable)
485                 return;
486
487         /* assign cookie and queue tx to pending list, it will be released when
488          * a matching ack is received. See ksocknal_handle_zcack() */
489
490         ksocknal_tx_addref(tx);
491
492         spin_lock(&peer_ni->ksnp_lock);
493
494         /* ZC_REQ is going to be pinned to the peer_ni */
495         tx->tx_deadline = ktime_get_seconds() +
496                           lnet_get_lnd_timeout();
497
498         LASSERT (tx->tx_msg.ksm_zc_cookies[0] == 0);
499
500         tx->tx_msg.ksm_zc_cookies[0] = peer_ni->ksnp_zc_next_cookie++;
501
502         if (peer_ni->ksnp_zc_next_cookie == 0)
503                 peer_ni->ksnp_zc_next_cookie = SOCKNAL_KEEPALIVE_PING + 1;
504
505         list_add_tail(&tx->tx_zc_list, &peer_ni->ksnp_zc_req_list);
506
507         spin_unlock(&peer_ni->ksnp_lock);
508 }
509
510 static void
511 ksocknal_uncheck_zc_req(struct ksock_tx *tx)
512 {
513         struct ksock_peer_ni *peer_ni = tx->tx_conn->ksnc_peer;
514
515         LASSERT(tx->tx_msg.ksm_type != KSOCK_MSG_NOOP);
516         LASSERT(tx->tx_zc_capable);
517
518         tx->tx_zc_checked = 0;
519
520         spin_lock(&peer_ni->ksnp_lock);
521
522         if (tx->tx_msg.ksm_zc_cookies[0] == 0) {
523                 /* Not waiting for an ACK */
524                 spin_unlock(&peer_ni->ksnp_lock);
525                 return;
526         }
527
528         tx->tx_msg.ksm_zc_cookies[0] = 0;
529         list_del(&tx->tx_zc_list);
530
531         spin_unlock(&peer_ni->ksnp_lock);
532
533         ksocknal_tx_decref(tx);
534 }
535
536 static int
537 ksocknal_process_transmit(struct ksock_conn *conn, struct ksock_tx *tx,
538                           struct kvec *scratch_iov)
539 {
540         int rc;
541         bool error_sim = false;
542
543         if (lnet_send_error_simulation(tx->tx_lnetmsg, &tx->tx_hstatus)) {
544                 error_sim = true;
545                 rc = -EINVAL;
546                 goto simulate_error;
547         }
548
549         if (tx->tx_zc_capable && !tx->tx_zc_checked)
550                 ksocknal_check_zc_req(tx);
551
552         rc = ksocknal_transmit(conn, tx, scratch_iov);
553
554         CDEBUG(D_NET, "send(%d) %d\n", tx->tx_resid, rc);
555
556         if (tx->tx_resid == 0) {
557                 /* Sent everything OK */
558                 LASSERT(rc == 0);
559
560                 return 0;
561         }
562
563         if (rc == -EAGAIN)
564                 return rc;
565
566         if (rc == -ENOMEM) {
567                 static int counter;
568
569                 counter++;   /* exponential backoff warnings */
570                 if ((counter & (-counter)) == counter)
571                         CWARN("%u ENOMEM tx %p (%u allocated)\n",
572                               counter, conn, atomic_read(&libcfs_kmemory));
573
574                 /* Queue on ksnd_enomem_conns for retry after a timeout */
575                 spin_lock_bh(&ksocknal_data.ksnd_reaper_lock);
576
577                 /* enomem list takes over scheduler's ref... */
578                 LASSERT(conn->ksnc_tx_scheduled);
579                 list_add_tail(&conn->ksnc_tx_list,
580                                   &ksocknal_data.ksnd_enomem_conns);
581                 if (ktime_get_seconds() + SOCKNAL_ENOMEM_RETRY <
582                     ksocknal_data.ksnd_reaper_waketime)
583                         wake_up(&ksocknal_data.ksnd_reaper_waitq);
584
585                 spin_unlock_bh(&ksocknal_data.ksnd_reaper_lock);
586
587                 /*
588                  * set the health status of the message which determines
589                  * whether we should retry the transmit
590                  */
591                 tx->tx_hstatus = LNET_MSG_STATUS_LOCAL_ERROR;
592                 return (rc);
593         }
594
595 simulate_error:
596
597         /* Actual error */
598         LASSERT(rc < 0);
599
600         if (!error_sim) {
601                 /*
602                 * set the health status of the message which determines
603                 * whether we should retry the transmit
604                 */
605                 if (rc == -ETIMEDOUT)
606                         tx->tx_hstatus = LNET_MSG_STATUS_REMOTE_TIMEOUT;
607                 else
608                         tx->tx_hstatus = LNET_MSG_STATUS_LOCAL_ERROR;
609         }
610
611         if (!conn->ksnc_closing) {
612                 switch (rc) {
613                 case -ECONNRESET:
614                         LCONSOLE_WARN("Host %pI4h reset our connection "
615                                       "while we were sending data; it may have "
616                                       "rebooted.\n",
617                                       &conn->ksnc_ipaddr);
618                         break;
619                 default:
620                         LCONSOLE_WARN("There was an unexpected network error "
621                                       "while writing to %pI4h: %d.\n",
622                                       &conn->ksnc_ipaddr, rc);
623                         break;
624                 }
625                 CDEBUG(D_NET, "[%p] Error %d on write to %s ip %pI4h:%d\n",
626                        conn, rc, libcfs_id2str(conn->ksnc_peer->ksnp_id),
627                        &conn->ksnc_ipaddr, conn->ksnc_port);
628         }
629
630         if (tx->tx_zc_checked)
631                 ksocknal_uncheck_zc_req(tx);
632
633         /* it's not an error if conn is being closed */
634         ksocknal_close_conn_and_siblings(conn,
635                                           (conn->ksnc_closing) ? 0 : rc);
636
637         return rc;
638 }
639
640 static void
641 ksocknal_launch_connection_locked(struct ksock_route *route)
642 {
643
644         /* called holding write lock on ksnd_global_lock */
645
646         LASSERT (!route->ksnr_scheduled);
647         LASSERT (!route->ksnr_connecting);
648         LASSERT ((ksocknal_route_mask() & ~route->ksnr_connected) != 0);
649
650         route->ksnr_scheduled = 1;              /* scheduling conn for connd */
651         ksocknal_route_addref(route);           /* extra ref for connd */
652
653         spin_lock_bh(&ksocknal_data.ksnd_connd_lock);
654
655         list_add_tail(&route->ksnr_connd_list,
656                           &ksocknal_data.ksnd_connd_routes);
657         wake_up(&ksocknal_data.ksnd_connd_waitq);
658
659         spin_unlock_bh(&ksocknal_data.ksnd_connd_lock);
660 }
661
662 void
663 ksocknal_launch_all_connections_locked(struct ksock_peer_ni *peer_ni)
664 {
665         struct ksock_route *route;
666
667         /* called holding write lock on ksnd_global_lock */
668         for (;;) {
669                 /* launch any/all connections that need it */
670                 route = ksocknal_find_connectable_route_locked(peer_ni);
671                 if (route == NULL)
672                         return;
673
674                 ksocknal_launch_connection_locked(route);
675         }
676 }
677
678 struct ksock_conn *
679 ksocknal_find_conn_locked(struct ksock_peer_ni *peer_ni, struct ksock_tx *tx, int nonblk)
680 {
681         struct list_head *tmp;
682         struct ksock_conn *conn;
683         struct ksock_conn *typed = NULL;
684         struct ksock_conn *fallback = NULL;
685         int tnob = 0;
686         int fnob = 0;
687
688         list_for_each(tmp, &peer_ni->ksnp_conns) {
689                 struct ksock_conn *c = list_entry(tmp, struct ksock_conn,
690                                                   ksnc_list);
691                 int nob = atomic_read(&c->ksnc_tx_nob) +
692                           c->ksnc_sock->sk->sk_wmem_queued;
693                 int rc;
694
695                 LASSERT (!c->ksnc_closing);
696                 LASSERT (c->ksnc_proto != NULL &&
697                          c->ksnc_proto->pro_match_tx != NULL);
698
699                 rc = c->ksnc_proto->pro_match_tx(c, tx, nonblk);
700
701                 switch (rc) {
702                 default:
703                         LBUG();
704                 case SOCKNAL_MATCH_NO: /* protocol rejected the tx */
705                         continue;
706
707                 case SOCKNAL_MATCH_YES: /* typed connection */
708                         if (typed == NULL || tnob > nob ||
709                             (tnob == nob && *ksocknal_tunables.ksnd_round_robin &&
710                              typed->ksnc_tx_last_post > c->ksnc_tx_last_post)) {
711                                 typed = c;
712                                 tnob  = nob;
713                         }
714                         break;
715
716                 case SOCKNAL_MATCH_MAY: /* fallback connection */
717                         if (fallback == NULL || fnob > nob ||
718                             (fnob == nob && *ksocknal_tunables.ksnd_round_robin &&
719                              fallback->ksnc_tx_last_post > c->ksnc_tx_last_post)) {
720                                 fallback = c;
721                                 fnob     = nob;
722                         }
723                         break;
724                 }
725         }
726
727         /* prefer the typed selection */
728         conn = (typed != NULL) ? typed : fallback;
729
730         if (conn != NULL)
731                 conn->ksnc_tx_last_post = ktime_get_seconds();
732
733         return conn;
734 }
735
736 void
737 ksocknal_tx_prep(struct ksock_conn *conn, struct ksock_tx *tx)
738 {
739         conn->ksnc_proto->pro_pack(tx);
740
741         atomic_add (tx->tx_nob, &conn->ksnc_tx_nob);
742         ksocknal_conn_addref(conn); /* +1 ref for tx */
743         tx->tx_conn = conn;
744 }
745
746 void
747 ksocknal_queue_tx_locked(struct ksock_tx *tx, struct ksock_conn *conn)
748 {
749         struct ksock_sched *sched = conn->ksnc_scheduler;
750         struct ksock_msg *msg = &tx->tx_msg;
751         struct ksock_tx *ztx = NULL;
752         int bufnob = 0;
753
754         /* called holding global lock (read or irq-write) and caller may
755          * not have dropped this lock between finding conn and calling me,
756          * so we don't need the {get,put}connsock dance to deref
757          * ksnc_sock... */
758         LASSERT(!conn->ksnc_closing);
759
760         CDEBUG(D_NET, "Sending to %s ip %pI4h:%d\n",
761                libcfs_id2str(conn->ksnc_peer->ksnp_id),
762                &conn->ksnc_ipaddr, conn->ksnc_port);
763
764         ksocknal_tx_prep(conn, tx);
765
766         /* Ensure the frags we've been given EXACTLY match the number of
767          * bytes we want to send.  Many TCP/IP stacks disregard any total
768          * size parameters passed to them and just look at the frags.
769          *
770          * We always expect at least 1 mapped fragment containing the
771          * complete ksocknal message header. */
772         LASSERT (lnet_iov_nob (tx->tx_niov, tx->tx_iov) +
773                  lnet_kiov_nob(tx->tx_nkiov, tx->tx_kiov) ==
774                  (unsigned int)tx->tx_nob);
775         LASSERT (tx->tx_niov >= 1);
776         LASSERT (tx->tx_resid == tx->tx_nob);
777
778         CDEBUG (D_NET, "Packet %p type %d, nob %d niov %d nkiov %d\n",
779                 tx, (tx->tx_lnetmsg != NULL) ? tx->tx_lnetmsg->msg_hdr.type:
780                                                KSOCK_MSG_NOOP,
781                 tx->tx_nob, tx->tx_niov, tx->tx_nkiov);
782
783         bufnob = conn->ksnc_sock->sk->sk_wmem_queued;
784         spin_lock_bh(&sched->kss_lock);
785
786         if (list_empty(&conn->ksnc_tx_queue) && bufnob == 0) {
787                 /* First packet starts the timeout */
788                 conn->ksnc_tx_deadline = ktime_get_seconds() +
789                                          lnet_get_lnd_timeout();
790                 if (conn->ksnc_tx_bufnob > 0) /* something got ACKed */
791                         conn->ksnc_peer->ksnp_last_alive = ktime_get_seconds();
792                 conn->ksnc_tx_bufnob = 0;
793                 smp_mb(); /* order with adding to tx_queue */
794         }
795
796         if (msg->ksm_type == KSOCK_MSG_NOOP) {
797                 /* The packet is noop ZC ACK, try to piggyback the ack_cookie
798                  * on a normal packet so I don't need to send it */
799                 LASSERT (msg->ksm_zc_cookies[1] != 0);
800                 LASSERT (conn->ksnc_proto->pro_queue_tx_zcack != NULL);
801
802                 if (conn->ksnc_proto->pro_queue_tx_zcack(conn, tx, 0))
803                         ztx = tx; /* ZC ACK piggybacked on ztx release tx later */
804
805         } else {
806                 /* It's a normal packet - can it piggback a noop zc-ack that
807                  * has been queued already? */
808                 LASSERT (msg->ksm_zc_cookies[1] == 0);
809                 LASSERT (conn->ksnc_proto->pro_queue_tx_msg != NULL);
810
811                 ztx = conn->ksnc_proto->pro_queue_tx_msg(conn, tx);
812                 /* ztx will be released later */
813         }
814
815         if (ztx != NULL) {
816                 atomic_sub (ztx->tx_nob, &conn->ksnc_tx_nob);
817                 list_add_tail(&ztx->tx_list, &sched->kss_zombie_noop_txs);
818         }
819
820         if (conn->ksnc_tx_ready &&      /* able to send */
821             !conn->ksnc_tx_scheduled) { /* not scheduled to send */
822                 /* +1 ref for scheduler */
823                 ksocknal_conn_addref(conn);
824                 list_add_tail(&conn->ksnc_tx_list,
825                                    &sched->kss_tx_conns);
826                 conn->ksnc_tx_scheduled = 1;
827                 wake_up(&sched->kss_waitq);
828         }
829
830         spin_unlock_bh(&sched->kss_lock);
831 }
832
833
834 struct ksock_route *
835 ksocknal_find_connectable_route_locked(struct ksock_peer_ni *peer_ni)
836 {
837         time64_t now = ktime_get_seconds();
838         struct list_head *tmp;
839         struct ksock_route *route;
840
841         list_for_each(tmp, &peer_ni->ksnp_routes) {
842                 route = list_entry(tmp, struct ksock_route, ksnr_list);
843
844                 LASSERT (!route->ksnr_connecting || route->ksnr_scheduled);
845
846                 if (route->ksnr_scheduled)      /* connections being established */
847                         continue;
848
849                 /* all route types connected ? */
850                 if ((ksocknal_route_mask() & ~route->ksnr_connected) == 0)
851                         continue;
852
853                 if (!(route->ksnr_retry_interval == 0 || /* first attempt */
854                       now >= route->ksnr_timeout)) {
855                         CDEBUG(D_NET,
856                                "Too soon to retry route %pI4h "
857                                "(cnted %d, interval %lld, %lld secs later)\n",
858                                &route->ksnr_ipaddr,
859                                route->ksnr_connected,
860                                route->ksnr_retry_interval,
861                                route->ksnr_timeout - now);
862                         continue;
863                 }
864
865                 return (route);
866         }
867
868         return (NULL);
869 }
870
871 struct ksock_route *
872 ksocknal_find_connecting_route_locked(struct ksock_peer_ni *peer_ni)
873 {
874         struct list_head *tmp;
875         struct ksock_route *route;
876
877         list_for_each(tmp, &peer_ni->ksnp_routes) {
878                 route = list_entry(tmp, struct ksock_route, ksnr_list);
879
880                 LASSERT (!route->ksnr_connecting || route->ksnr_scheduled);
881
882                 if (route->ksnr_scheduled)
883                         return (route);
884         }
885
886         return (NULL);
887 }
888
889 int
890 ksocknal_launch_packet(struct lnet_ni *ni, struct ksock_tx *tx,
891                        struct lnet_process_id id)
892 {
893         struct ksock_peer_ni *peer_ni;
894         struct ksock_conn *conn;
895         rwlock_t *g_lock;
896         int retry;
897         int rc;
898
899         LASSERT (tx->tx_conn == NULL);
900
901         g_lock = &ksocknal_data.ksnd_global_lock;
902
903         for (retry = 0;; retry = 1) {
904                 read_lock(g_lock);
905                 peer_ni = ksocknal_find_peer_locked(ni, id);
906                 if (peer_ni != NULL) {
907                         if (ksocknal_find_connectable_route_locked(peer_ni) == NULL) {
908                                 conn = ksocknal_find_conn_locked(peer_ni, tx, tx->tx_nonblk);
909                                 if (conn != NULL) {
910                                         /* I've got no routes that need to be
911                                          * connecting and I do have an actual
912                                          * connection... */
913                                         ksocknal_queue_tx_locked (tx, conn);
914                                         read_unlock(g_lock);
915                                         return (0);
916                                 }
917                         }
918                 }
919
920                 /* I'll need a write lock... */
921                 read_unlock(g_lock);
922
923                 write_lock_bh(g_lock);
924
925                 peer_ni = ksocknal_find_peer_locked(ni, id);
926                 if (peer_ni != NULL)
927                         break;
928
929                 write_unlock_bh(g_lock);
930
931                 if ((id.pid & LNET_PID_USERFLAG) != 0) {
932                         CERROR("Refusing to create a connection to "
933                                "userspace process %s\n", libcfs_id2str(id));
934                         return -EHOSTUNREACH;
935                 }
936
937                 if (retry) {
938                         CERROR("Can't find peer_ni %s\n", libcfs_id2str(id));
939                         return -EHOSTUNREACH;
940                 }
941
942                 rc = ksocknal_add_peer(ni, id,
943                                        LNET_NIDADDR(id.nid),
944                                        lnet_acceptor_port());
945                 if (rc != 0) {
946                         CERROR("Can't add peer_ni %s: %d\n",
947                                libcfs_id2str(id), rc);
948                         return rc;
949                 }
950         }
951
952         ksocknal_launch_all_connections_locked(peer_ni);
953
954         conn = ksocknal_find_conn_locked(peer_ni, tx, tx->tx_nonblk);
955         if (conn != NULL) {
956                 /* Connection exists; queue message on it */
957                 ksocknal_queue_tx_locked (tx, conn);
958                 write_unlock_bh(g_lock);
959                 return (0);
960         }
961
962         if (peer_ni->ksnp_accepting > 0 ||
963             ksocknal_find_connecting_route_locked (peer_ni) != NULL) {
964                 /* the message is going to be pinned to the peer_ni */
965                 tx->tx_deadline = ktime_get_seconds() +
966                                   lnet_get_lnd_timeout();
967
968                 /* Queue the message until a connection is established */
969                 list_add_tail(&tx->tx_list, &peer_ni->ksnp_tx_queue);
970                 write_unlock_bh(g_lock);
971                 return 0;
972         }
973
974         write_unlock_bh(g_lock);
975
976         /* NB Routes may be ignored if connections to them failed recently */
977         CNETERR("No usable routes to %s\n", libcfs_id2str(id));
978         tx->tx_hstatus = LNET_MSG_STATUS_REMOTE_ERROR;
979         return (-EHOSTUNREACH);
980 }
981
982 int
983 ksocknal_send(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg)
984 {
985         int mpflag = 1;
986         int type = lntmsg->msg_type;
987         struct lnet_process_id target = lntmsg->msg_target;
988         unsigned int      payload_niov = lntmsg->msg_niov;
989         struct kvec *payload_iov = lntmsg->msg_iov;
990         lnet_kiov_t      *payload_kiov = lntmsg->msg_kiov;
991         unsigned int      payload_offset = lntmsg->msg_offset;
992         unsigned int      payload_nob = lntmsg->msg_len;
993         struct ksock_tx *tx;
994         int               desc_size;
995         int               rc;
996
997         /* NB 'private' is different depending on what we're sending.
998          * Just ignore it... */
999
1000         CDEBUG(D_NET, "sending %u bytes in %d frags to %s\n",
1001                payload_nob, payload_niov, libcfs_id2str(target));
1002
1003         LASSERT (payload_nob == 0 || payload_niov > 0);
1004         LASSERT (payload_niov <= LNET_MAX_IOV);
1005         /* payload is either all vaddrs or all pages */
1006         LASSERT (!(payload_kiov != NULL && payload_iov != NULL));
1007         LASSERT (!in_interrupt ());
1008
1009         if (payload_iov != NULL)
1010                 desc_size = offsetof(struct ksock_tx,
1011                                      tx_frags.virt.iov[1 + payload_niov]);
1012         else
1013                 desc_size = offsetof(struct ksock_tx,
1014                                      tx_frags.paged.kiov[payload_niov]);
1015
1016         if (lntmsg->msg_vmflush)
1017                 mpflag = cfs_memory_pressure_get_and_set();
1018         tx = ksocknal_alloc_tx(KSOCK_MSG_LNET, desc_size);
1019         if (tx == NULL) {
1020                 CERROR("Can't allocate tx desc type %d size %d\n",
1021                        type, desc_size);
1022                 if (lntmsg->msg_vmflush)
1023                         cfs_memory_pressure_restore(mpflag);
1024                 return (-ENOMEM);
1025         }
1026
1027         tx->tx_conn = NULL;                     /* set when assigned a conn */
1028         tx->tx_lnetmsg = lntmsg;
1029
1030         if (payload_iov != NULL) {
1031                 tx->tx_kiov = NULL;
1032                 tx->tx_nkiov = 0;
1033                 tx->tx_iov = tx->tx_frags.virt.iov;
1034                 tx->tx_niov = 1 +
1035                               lnet_extract_iov(payload_niov, &tx->tx_iov[1],
1036                                                payload_niov, payload_iov,
1037                                                payload_offset, payload_nob);
1038         } else {
1039                 tx->tx_niov = 1;
1040                 tx->tx_iov = &tx->tx_frags.paged.iov;
1041                 tx->tx_kiov = tx->tx_frags.paged.kiov;
1042                 tx->tx_nkiov = lnet_extract_kiov(payload_niov, tx->tx_kiov,
1043                                                  payload_niov, payload_kiov,
1044                                                  payload_offset, payload_nob);
1045
1046                 if (payload_nob >= *ksocknal_tunables.ksnd_zc_min_payload)
1047                         tx->tx_zc_capable = 1;
1048         }
1049
1050         tx->tx_msg.ksm_csum = 0;
1051         tx->tx_msg.ksm_type = KSOCK_MSG_LNET;
1052         tx->tx_msg.ksm_zc_cookies[0] = 0;
1053         tx->tx_msg.ksm_zc_cookies[1] = 0;
1054
1055         /* The first fragment will be set later in pro_pack */
1056         rc = ksocknal_launch_packet(ni, tx, target);
1057         if (!mpflag)
1058                 cfs_memory_pressure_restore(mpflag);
1059
1060         if (rc == 0)
1061                 return (0);
1062
1063         lntmsg->msg_health_status = tx->tx_hstatus;
1064         ksocknal_free_tx(tx);
1065         return (-EIO);
1066 }
1067
1068 int
1069 ksocknal_thread_start(int (*fn)(void *arg), void *arg, char *name)
1070 {
1071         struct task_struct *task = kthread_run(fn, arg, name);
1072
1073         if (IS_ERR(task))
1074                 return PTR_ERR(task);
1075
1076         write_lock_bh(&ksocknal_data.ksnd_global_lock);
1077         ksocknal_data.ksnd_nthreads++;
1078         write_unlock_bh(&ksocknal_data.ksnd_global_lock);
1079         return 0;
1080 }
1081
1082 void
1083 ksocknal_thread_fini (void)
1084 {
1085         write_lock_bh(&ksocknal_data.ksnd_global_lock);
1086         if (--ksocknal_data.ksnd_nthreads == 0)
1087                 wake_up_var(&ksocknal_data.ksnd_nthreads);
1088         write_unlock_bh(&ksocknal_data.ksnd_global_lock);
1089 }
1090
1091 int
1092 ksocknal_new_packet(struct ksock_conn *conn, int nob_to_skip)
1093 {
1094         static char ksocknal_slop_buffer[4096];
1095         int nob;
1096         unsigned int niov;
1097         int skipped;
1098
1099         LASSERT(conn->ksnc_proto != NULL);
1100
1101         if ((*ksocknal_tunables.ksnd_eager_ack & conn->ksnc_type) != 0) {
1102                 /* Remind the socket to ack eagerly... */
1103                 ksocknal_lib_eager_ack(conn);
1104         }
1105
1106         if (nob_to_skip == 0) {         /* right at next packet boundary now */
1107                 conn->ksnc_rx_started = 0;
1108                 smp_mb();                       /* racing with timeout thread */
1109
1110                 switch (conn->ksnc_proto->pro_version) {
1111                 case  KSOCK_PROTO_V2:
1112                 case  KSOCK_PROTO_V3:
1113                         conn->ksnc_rx_state = SOCKNAL_RX_KSM_HEADER;
1114                         conn->ksnc_rx_iov = (struct kvec *)&conn->ksnc_rx_iov_space;
1115                         conn->ksnc_rx_iov[0].iov_base = (char *)&conn->ksnc_msg;
1116
1117                         conn->ksnc_rx_nob_wanted = offsetof(struct ksock_msg, ksm_u);
1118                         conn->ksnc_rx_nob_left = offsetof(struct ksock_msg, ksm_u);
1119                         conn->ksnc_rx_iov[0].iov_len  = offsetof(struct ksock_msg, ksm_u);
1120                         break;
1121
1122                 case KSOCK_PROTO_V1:
1123                         /* Receiving bare struct lnet_hdr */
1124                         conn->ksnc_rx_state = SOCKNAL_RX_LNET_HEADER;
1125                         conn->ksnc_rx_nob_wanted = sizeof(struct lnet_hdr);
1126                         conn->ksnc_rx_nob_left = sizeof(struct lnet_hdr);
1127
1128                         conn->ksnc_rx_iov = (struct kvec *)&conn->ksnc_rx_iov_space;
1129                         conn->ksnc_rx_iov[0].iov_base = (char *)&conn->ksnc_msg.ksm_u.lnetmsg;
1130                         conn->ksnc_rx_iov[0].iov_len = sizeof(struct lnet_hdr);
1131                         break;
1132
1133                 default:
1134                         LBUG ();
1135                 }
1136                 conn->ksnc_rx_niov = 1;
1137
1138                 conn->ksnc_rx_kiov = NULL;
1139                 conn->ksnc_rx_nkiov = 0;
1140                 conn->ksnc_rx_csum = ~0;
1141                 return (1);
1142         }
1143
1144         /* Set up to skip as much as possible now.  If there's more left
1145          * (ran out of iov entries) we'll get called again */
1146
1147         conn->ksnc_rx_state = SOCKNAL_RX_SLOP;
1148         conn->ksnc_rx_nob_left = nob_to_skip;
1149         conn->ksnc_rx_iov = (struct kvec *)&conn->ksnc_rx_iov_space;
1150         skipped = 0;
1151         niov = 0;
1152
1153         do {
1154                 nob = min_t(int, nob_to_skip, sizeof(ksocknal_slop_buffer));
1155
1156                 conn->ksnc_rx_iov[niov].iov_base = ksocknal_slop_buffer;
1157                 conn->ksnc_rx_iov[niov].iov_len  = nob;
1158                 niov++;
1159                 skipped += nob;
1160                 nob_to_skip -= nob;
1161
1162         } while (nob_to_skip != 0 &&    /* mustn't overflow conn's rx iov */
1163                  niov < sizeof(conn->ksnc_rx_iov_space) / sizeof(struct kvec));
1164
1165         conn->ksnc_rx_niov = niov;
1166         conn->ksnc_rx_kiov = NULL;
1167         conn->ksnc_rx_nkiov = 0;
1168         conn->ksnc_rx_nob_wanted = skipped;
1169         return (0);
1170 }
1171
1172 static int
1173 ksocknal_process_receive(struct ksock_conn *conn,
1174                          struct page **rx_scratch_pgs,
1175                          struct kvec *scratch_iov)
1176 {
1177         struct lnet_hdr *lhdr;
1178         struct lnet_process_id *id;
1179         int rc;
1180
1181         LASSERT (atomic_read(&conn->ksnc_conn_refcount) > 0);
1182
1183         /* NB: sched lock NOT held */
1184         /* SOCKNAL_RX_LNET_HEADER is here for backward compatibility */
1185         LASSERT(conn->ksnc_rx_state == SOCKNAL_RX_KSM_HEADER ||
1186                 conn->ksnc_rx_state == SOCKNAL_RX_LNET_PAYLOAD ||
1187                 conn->ksnc_rx_state == SOCKNAL_RX_LNET_HEADER ||
1188                 conn->ksnc_rx_state == SOCKNAL_RX_SLOP);
1189  again:
1190         if (conn->ksnc_rx_nob_wanted != 0) {
1191                 rc = ksocknal_receive(conn, rx_scratch_pgs,
1192                                       scratch_iov);
1193
1194                 if (rc <= 0) {
1195                         struct lnet_process_id ksnp_id;
1196
1197                         ksnp_id = conn->ksnc_peer->ksnp_id;
1198
1199                         LASSERT(rc != -EAGAIN);
1200                         if (rc == 0)
1201                                 CDEBUG(D_NET, "[%p] EOF from %s "
1202                                        "ip %pI4h:%d\n", conn,
1203                                         libcfs_id2str(ksnp_id),
1204                                         &conn->ksnc_ipaddr,
1205                                         conn->ksnc_port);
1206                         else if (!conn->ksnc_closing)
1207                                 CERROR("[%p] Error %d on read from %s "
1208                                        "ip %pI4h:%d\n", conn, rc,
1209                                        libcfs_id2str(ksnp_id),
1210                                        &conn->ksnc_ipaddr,
1211                                        conn->ksnc_port);
1212
1213                         /* it's not an error if conn is being closed */
1214                         ksocknal_close_conn_and_siblings (conn,
1215                                                           (conn->ksnc_closing) ? 0 : rc);
1216                         return (rc == 0 ? -ESHUTDOWN : rc);
1217                 }
1218
1219                 if (conn->ksnc_rx_nob_wanted != 0) {
1220                         /* short read */
1221                         return (-EAGAIN);
1222                 }
1223         }
1224         switch (conn->ksnc_rx_state) {
1225         case SOCKNAL_RX_KSM_HEADER:
1226                 if (conn->ksnc_flip) {
1227                         __swab32s(&conn->ksnc_msg.ksm_type);
1228                         __swab32s(&conn->ksnc_msg.ksm_csum);
1229                         __swab64s(&conn->ksnc_msg.ksm_zc_cookies[0]);
1230                         __swab64s(&conn->ksnc_msg.ksm_zc_cookies[1]);
1231                 }
1232
1233                 if (conn->ksnc_msg.ksm_type != KSOCK_MSG_NOOP &&
1234                     conn->ksnc_msg.ksm_type != KSOCK_MSG_LNET) {
1235                         CERROR("%s: Unknown message type: %x\n",
1236                                libcfs_id2str(conn->ksnc_peer->ksnp_id),
1237                                conn->ksnc_msg.ksm_type);
1238                         ksocknal_new_packet(conn, 0);
1239                         ksocknal_close_conn_and_siblings(conn, -EPROTO);
1240                         return (-EPROTO);
1241                 }
1242
1243                 if (conn->ksnc_msg.ksm_type == KSOCK_MSG_NOOP &&
1244                     conn->ksnc_msg.ksm_csum != 0 &&     /* has checksum */
1245                     conn->ksnc_msg.ksm_csum != conn->ksnc_rx_csum) {
1246                         /* NOOP Checksum error */
1247                         CERROR("%s: Checksum error, wire:0x%08X data:0x%08X\n",
1248                                libcfs_id2str(conn->ksnc_peer->ksnp_id),
1249                                conn->ksnc_msg.ksm_csum, conn->ksnc_rx_csum);
1250                         ksocknal_new_packet(conn, 0);
1251                         ksocknal_close_conn_and_siblings(conn, -EPROTO);
1252                         return (-EIO);
1253                 }
1254
1255                 if (conn->ksnc_msg.ksm_zc_cookies[1] != 0) {
1256                         __u64 cookie = 0;
1257
1258                         LASSERT (conn->ksnc_proto != &ksocknal_protocol_v1x);
1259
1260                         if (conn->ksnc_msg.ksm_type == KSOCK_MSG_NOOP)
1261                                 cookie = conn->ksnc_msg.ksm_zc_cookies[0];
1262
1263                         rc = conn->ksnc_proto->pro_handle_zcack(conn, cookie,
1264                                                conn->ksnc_msg.ksm_zc_cookies[1]);
1265
1266                         if (rc != 0) {
1267                                 CERROR("%s: Unknown ZC-ACK cookie: %llu, %llu\n",
1268                                        libcfs_id2str(conn->ksnc_peer->ksnp_id),
1269                                        cookie, conn->ksnc_msg.ksm_zc_cookies[1]);
1270                                 ksocknal_new_packet(conn, 0);
1271                                 ksocknal_close_conn_and_siblings(conn, -EPROTO);
1272                                 return (rc);
1273                         }
1274                 }
1275
1276                 if (conn->ksnc_msg.ksm_type == KSOCK_MSG_NOOP) {
1277                         ksocknal_new_packet (conn, 0);
1278                         return 0;       /* NOOP is done and just return */
1279                 }
1280
1281                 conn->ksnc_rx_state = SOCKNAL_RX_LNET_HEADER;
1282                 conn->ksnc_rx_nob_wanted = sizeof(struct ksock_lnet_msg);
1283                 conn->ksnc_rx_nob_left = sizeof(struct ksock_lnet_msg);
1284
1285                 conn->ksnc_rx_iov = (struct kvec *)&conn->ksnc_rx_iov_space;
1286                 conn->ksnc_rx_iov[0].iov_base = (char *)&conn->ksnc_msg.ksm_u.lnetmsg;
1287                 conn->ksnc_rx_iov[0].iov_len  = sizeof(struct ksock_lnet_msg);
1288
1289                 conn->ksnc_rx_niov = 1;
1290                 conn->ksnc_rx_kiov = NULL;
1291                 conn->ksnc_rx_nkiov = 0;
1292
1293                 goto again;     /* read lnet header now */
1294
1295         case SOCKNAL_RX_LNET_HEADER:
1296                 /* unpack message header */
1297                 conn->ksnc_proto->pro_unpack(&conn->ksnc_msg);
1298
1299                 if ((conn->ksnc_peer->ksnp_id.pid & LNET_PID_USERFLAG) != 0) {
1300                         /* Userspace peer_ni */
1301                         lhdr = &conn->ksnc_msg.ksm_u.lnetmsg.ksnm_hdr;
1302                         id   = &conn->ksnc_peer->ksnp_id;
1303
1304                         /* Substitute process ID assigned at connection time */
1305                         lhdr->src_pid = cpu_to_le32(id->pid);
1306                         lhdr->src_nid = cpu_to_le64(id->nid);
1307                 }
1308
1309                 conn->ksnc_rx_state = SOCKNAL_RX_PARSE;
1310                 ksocknal_conn_addref(conn);     /* ++ref while parsing */
1311
1312                 rc = lnet_parse(conn->ksnc_peer->ksnp_ni,
1313                                 &conn->ksnc_msg.ksm_u.lnetmsg.ksnm_hdr,
1314                                 conn->ksnc_peer->ksnp_id.nid, conn, 0);
1315                 if (rc < 0) {
1316                         /* I just received garbage: give up on this conn */
1317                         ksocknal_new_packet(conn, 0);
1318                         ksocknal_close_conn_and_siblings (conn, rc);
1319                         ksocknal_conn_decref(conn);
1320                         return (-EPROTO);
1321                 }
1322
1323                 /* I'm racing with ksocknal_recv() */
1324                 LASSERT (conn->ksnc_rx_state == SOCKNAL_RX_PARSE ||
1325                          conn->ksnc_rx_state == SOCKNAL_RX_LNET_PAYLOAD);
1326
1327                 if (conn->ksnc_rx_state != SOCKNAL_RX_LNET_PAYLOAD)
1328                         return 0;
1329
1330                 /* ksocknal_recv() got called */
1331                 goto again;
1332
1333         case SOCKNAL_RX_LNET_PAYLOAD:
1334                 /* payload all received */
1335                 rc = 0;
1336
1337                 if (conn->ksnc_rx_nob_left == 0 &&   /* not truncating */
1338                     conn->ksnc_msg.ksm_csum != 0 &&  /* has checksum */
1339                     conn->ksnc_msg.ksm_csum != conn->ksnc_rx_csum) {
1340                         CERROR("%s: Checksum error, wire:0x%08X data:0x%08X\n",
1341                                libcfs_id2str(conn->ksnc_peer->ksnp_id),
1342                                conn->ksnc_msg.ksm_csum, conn->ksnc_rx_csum);
1343                         rc = -EIO;
1344                 }
1345
1346                 if (rc == 0 && conn->ksnc_msg.ksm_zc_cookies[0] != 0) {
1347                         LASSERT(conn->ksnc_proto != &ksocknal_protocol_v1x);
1348
1349                         lhdr = &conn->ksnc_msg.ksm_u.lnetmsg.ksnm_hdr;
1350                         id   = &conn->ksnc_peer->ksnp_id;
1351
1352                         rc = conn->ksnc_proto->pro_handle_zcreq(conn,
1353                                         conn->ksnc_msg.ksm_zc_cookies[0],
1354                                         *ksocknal_tunables.ksnd_nonblk_zcack ||
1355                                         le64_to_cpu(lhdr->src_nid) != id->nid);
1356                 }
1357
1358                 if (rc && conn->ksnc_lnet_msg)
1359                         conn->ksnc_lnet_msg->msg_health_status =
1360                                 LNET_MSG_STATUS_REMOTE_ERROR;
1361                 lnet_finalize(conn->ksnc_lnet_msg, rc);
1362
1363                 if (rc != 0) {
1364                         ksocknal_new_packet(conn, 0);
1365                         ksocknal_close_conn_and_siblings (conn, rc);
1366                         return (-EPROTO);
1367                 }
1368                 /* Fall through */
1369
1370         case SOCKNAL_RX_SLOP:
1371                 /* starting new packet? */
1372                 if (ksocknal_new_packet (conn, conn->ksnc_rx_nob_left))
1373                         return 0;       /* come back later */
1374                 goto again;             /* try to finish reading slop now */
1375
1376         default:
1377                 break;
1378         }
1379
1380         /* Not Reached */
1381         LBUG ();
1382         return (-EINVAL);                       /* keep gcc happy */
1383 }
1384
1385 int
1386 ksocknal_recv(struct lnet_ni *ni, void *private, struct lnet_msg *msg,
1387               int delayed, unsigned int niov, struct kvec *iov,
1388               lnet_kiov_t *kiov, unsigned int offset, unsigned int mlen,
1389               unsigned int rlen)
1390 {
1391         struct ksock_conn *conn = private;
1392         struct ksock_sched *sched = conn->ksnc_scheduler;
1393
1394         LASSERT (mlen <= rlen);
1395         LASSERT (niov <= LNET_MAX_IOV);
1396
1397         conn->ksnc_lnet_msg = msg;
1398         conn->ksnc_rx_nob_wanted = mlen;
1399         conn->ksnc_rx_nob_left   = rlen;
1400
1401         if (mlen == 0 || iov != NULL) {
1402                 conn->ksnc_rx_nkiov = 0;
1403                 conn->ksnc_rx_kiov = NULL;
1404                 conn->ksnc_rx_iov = conn->ksnc_rx_iov_space.iov;
1405                 conn->ksnc_rx_niov =
1406                         lnet_extract_iov(LNET_MAX_IOV, conn->ksnc_rx_iov,
1407                                          niov, iov, offset, mlen);
1408         } else {
1409                 conn->ksnc_rx_niov = 0;
1410                 conn->ksnc_rx_iov  = NULL;
1411                 conn->ksnc_rx_kiov = conn->ksnc_rx_iov_space.kiov;
1412                 conn->ksnc_rx_nkiov =
1413                         lnet_extract_kiov(LNET_MAX_IOV, conn->ksnc_rx_kiov,
1414                                           niov, kiov, offset, mlen);
1415         }
1416
1417         LASSERT (mlen ==
1418                  lnet_iov_nob (conn->ksnc_rx_niov, conn->ksnc_rx_iov) +
1419                  lnet_kiov_nob (conn->ksnc_rx_nkiov, conn->ksnc_rx_kiov));
1420
1421         LASSERT (conn->ksnc_rx_scheduled);
1422
1423         spin_lock_bh(&sched->kss_lock);
1424
1425         switch (conn->ksnc_rx_state) {
1426         case SOCKNAL_RX_PARSE_WAIT:
1427                 list_add_tail(&conn->ksnc_rx_list, &sched->kss_rx_conns);
1428                 wake_up(&sched->kss_waitq);
1429                 LASSERT(conn->ksnc_rx_ready);
1430                 break;
1431
1432         case SOCKNAL_RX_PARSE:
1433                 /* scheduler hasn't noticed I'm parsing yet */
1434                 break;
1435         }
1436
1437         conn->ksnc_rx_state = SOCKNAL_RX_LNET_PAYLOAD;
1438
1439         spin_unlock_bh(&sched->kss_lock);
1440         ksocknal_conn_decref(conn);
1441         return 0;
1442 }
1443
1444 static inline int
1445 ksocknal_sched_cansleep(struct ksock_sched *sched)
1446 {
1447         int           rc;
1448
1449         spin_lock_bh(&sched->kss_lock);
1450
1451         rc = (!ksocknal_data.ksnd_shuttingdown &&
1452               list_empty(&sched->kss_rx_conns) &&
1453               list_empty(&sched->kss_tx_conns));
1454
1455         spin_unlock_bh(&sched->kss_lock);
1456         return rc;
1457 }
1458
1459 int ksocknal_scheduler(void *arg)
1460 {
1461         struct ksock_sched *sched;
1462         struct ksock_conn *conn;
1463         struct ksock_tx *tx;
1464         int rc;
1465         int nloops = 0;
1466         long id = (long)arg;
1467         struct page **rx_scratch_pgs;
1468         struct kvec *scratch_iov;
1469
1470         sched = ksocknal_data.ksnd_schedulers[KSOCK_THREAD_CPT(id)];
1471
1472         LIBCFS_CPT_ALLOC(rx_scratch_pgs, lnet_cpt_table(), sched->kss_cpt,
1473                          sizeof(*rx_scratch_pgs) * LNET_MAX_IOV);
1474         if (!rx_scratch_pgs) {
1475                 CERROR("Unable to allocate scratch pages\n");
1476                 return -ENOMEM;
1477         }
1478
1479         LIBCFS_CPT_ALLOC(scratch_iov, lnet_cpt_table(), sched->kss_cpt,
1480                          sizeof(*scratch_iov) * LNET_MAX_IOV);
1481         if (!scratch_iov) {
1482                 CERROR("Unable to allocate scratch iov\n");
1483                 return -ENOMEM;
1484         }
1485
1486         rc = cfs_cpt_bind(lnet_cpt_table(), sched->kss_cpt);
1487         if (rc != 0) {
1488                 CWARN("Can't set CPU partition affinity to %d: %d\n",
1489                         sched->kss_cpt, rc);
1490         }
1491
1492         spin_lock_bh(&sched->kss_lock);
1493
1494         while (!ksocknal_data.ksnd_shuttingdown) {
1495                 int did_something = 0;
1496
1497                 /* Ensure I progress everything semi-fairly */
1498
1499                 if (!list_empty(&sched->kss_rx_conns)) {
1500                         conn = list_entry(sched->kss_rx_conns.next,
1501                                           struct ksock_conn, ksnc_rx_list);
1502                         list_del(&conn->ksnc_rx_list);
1503
1504                         LASSERT(conn->ksnc_rx_scheduled);
1505                         LASSERT(conn->ksnc_rx_ready);
1506
1507                         /* clear rx_ready in case receive isn't complete.
1508                          * Do it BEFORE we call process_recv, since
1509                          * data_ready can set it any time after we release
1510                          * kss_lock. */
1511                         conn->ksnc_rx_ready = 0;
1512                         spin_unlock_bh(&sched->kss_lock);
1513
1514                         rc = ksocknal_process_receive(conn, rx_scratch_pgs,
1515                                                       scratch_iov);
1516
1517                         spin_lock_bh(&sched->kss_lock);
1518
1519                         /* I'm the only one that can clear this flag */
1520                         LASSERT(conn->ksnc_rx_scheduled);
1521
1522                         /* Did process_receive get everything it wanted? */
1523                         if (rc == 0)
1524                                 conn->ksnc_rx_ready = 1;
1525
1526                         if (conn->ksnc_rx_state == SOCKNAL_RX_PARSE) {
1527                                 /* Conn blocked waiting for ksocknal_recv()
1528                                  * I change its state (under lock) to signal
1529                                  * it can be rescheduled */
1530                                 conn->ksnc_rx_state = SOCKNAL_RX_PARSE_WAIT;
1531                         } else if (conn->ksnc_rx_ready) {
1532                                 /* reschedule for rx */
1533                                 list_add_tail(&conn->ksnc_rx_list,
1534                                                    &sched->kss_rx_conns);
1535                         } else {
1536                                 conn->ksnc_rx_scheduled = 0;
1537                                 /* drop my ref */
1538                                 ksocknal_conn_decref(conn);
1539                         }
1540
1541                         did_something = 1;
1542                 }
1543
1544                 if (!list_empty(&sched->kss_tx_conns)) {
1545                         LIST_HEAD(zlist);
1546
1547                         list_splice_init(&sched->kss_zombie_noop_txs, &zlist);
1548
1549                         conn = list_entry(sched->kss_tx_conns.next,
1550                                           struct ksock_conn, ksnc_tx_list);
1551                         list_del(&conn->ksnc_tx_list);
1552
1553                         LASSERT(conn->ksnc_tx_scheduled);
1554                         LASSERT(conn->ksnc_tx_ready);
1555                         LASSERT(!list_empty(&conn->ksnc_tx_queue));
1556
1557                         tx = list_entry(conn->ksnc_tx_queue.next,
1558                                         struct ksock_tx, tx_list);
1559
1560                         if (conn->ksnc_tx_carrier == tx)
1561                                 ksocknal_next_tx_carrier(conn);
1562
1563                         /* dequeue now so empty list => more to send */
1564                         list_del(&tx->tx_list);
1565
1566                         /* Clear tx_ready in case send isn't complete.  Do
1567                          * it BEFORE we call process_transmit, since
1568                          * write_space can set it any time after we release
1569                          * kss_lock. */
1570                         conn->ksnc_tx_ready = 0;
1571                         spin_unlock_bh(&sched->kss_lock);
1572
1573                         if (!list_empty(&zlist)) {
1574                                 /* free zombie noop txs, it's fast because
1575                                  * noop txs are just put in freelist */
1576                                 ksocknal_txlist_done(NULL, &zlist, 0);
1577                         }
1578
1579                         rc = ksocknal_process_transmit(conn, tx, scratch_iov);
1580
1581                         if (rc == -ENOMEM || rc == -EAGAIN) {
1582                                 /* Incomplete send: replace tx on HEAD of tx_queue */
1583                                 spin_lock_bh(&sched->kss_lock);
1584                                 list_add(&tx->tx_list,
1585                                          &conn->ksnc_tx_queue);
1586                         } else {
1587                                 /* Complete send; tx -ref */
1588                                 ksocknal_tx_decref(tx);
1589
1590                                 spin_lock_bh(&sched->kss_lock);
1591                                 /* assume space for more */
1592                                 conn->ksnc_tx_ready = 1;
1593                         }
1594
1595                         if (rc == -ENOMEM) {
1596                                 /* Do nothing; after a short timeout, this
1597                                  * conn will be reposted on kss_tx_conns. */
1598                         } else if (conn->ksnc_tx_ready &&
1599                                    !list_empty(&conn->ksnc_tx_queue)) {
1600                                 /* reschedule for tx */
1601                                 list_add_tail(&conn->ksnc_tx_list,
1602                                               &sched->kss_tx_conns);
1603                         } else {
1604                                 conn->ksnc_tx_scheduled = 0;
1605                                 /* drop my ref */
1606                                 ksocknal_conn_decref(conn);
1607                         }
1608
1609                         did_something = 1;
1610                 }
1611                 if (!did_something ||           /* nothing to do */
1612                     ++nloops == SOCKNAL_RESCHED) { /* hogging CPU? */
1613                         spin_unlock_bh(&sched->kss_lock);
1614
1615                         nloops = 0;
1616
1617                         if (!did_something) {   /* wait for something to do */
1618                                 rc = wait_event_interruptible_exclusive(
1619                                         sched->kss_waitq,
1620                                         !ksocknal_sched_cansleep(sched));
1621                                 LASSERT (rc == 0);
1622                         } else {
1623                                 cond_resched();
1624                         }
1625
1626                         spin_lock_bh(&sched->kss_lock);
1627                 }
1628         }
1629
1630         spin_unlock_bh(&sched->kss_lock);
1631         CFS_FREE_PTR_ARRAY(rx_scratch_pgs, LNET_MAX_IOV);
1632         CFS_FREE_PTR_ARRAY(scratch_iov, LNET_MAX_IOV);
1633         ksocknal_thread_fini();
1634         return 0;
1635 }
1636
1637 /*
1638  * Add connection to kss_rx_conns of scheduler
1639  * and wakeup the scheduler.
1640  */
1641 void ksocknal_read_callback(struct ksock_conn *conn)
1642 {
1643         struct ksock_sched *sched;
1644         ENTRY;
1645
1646         sched = conn->ksnc_scheduler;
1647
1648         spin_lock_bh(&sched->kss_lock);
1649
1650         conn->ksnc_rx_ready = 1;
1651
1652         if (!conn->ksnc_rx_scheduled) {  /* not being progressed */
1653                 list_add_tail(&conn->ksnc_rx_list,
1654                                   &sched->kss_rx_conns);
1655                 conn->ksnc_rx_scheduled = 1;
1656                 /* extra ref for scheduler */
1657                 ksocknal_conn_addref(conn);
1658
1659                 wake_up (&sched->kss_waitq);
1660         }
1661         spin_unlock_bh(&sched->kss_lock);
1662
1663         EXIT;
1664 }
1665
1666 /*
1667  * Add connection to kss_tx_conns of scheduler
1668  * and wakeup the scheduler.
1669  */
1670 void ksocknal_write_callback(struct ksock_conn *conn)
1671 {
1672         struct ksock_sched *sched;
1673         ENTRY;
1674
1675         sched = conn->ksnc_scheduler;
1676
1677         spin_lock_bh(&sched->kss_lock);
1678
1679         conn->ksnc_tx_ready = 1;
1680
1681         if (!conn->ksnc_tx_scheduled && /* not being progressed */
1682             !list_empty(&conn->ksnc_tx_queue)) { /* packets to send */
1683                 list_add_tail(&conn->ksnc_tx_list, &sched->kss_tx_conns);
1684                 conn->ksnc_tx_scheduled = 1;
1685                 /* extra ref for scheduler */
1686                 ksocknal_conn_addref(conn);
1687
1688                 wake_up(&sched->kss_waitq);
1689         }
1690
1691         spin_unlock_bh(&sched->kss_lock);
1692
1693         EXIT;
1694 }
1695
1696 static const struct ksock_proto *
1697 ksocknal_parse_proto_version(struct ksock_hello_msg *hello)
1698 {
1699         __u32   version = 0;
1700
1701         if (hello->kshm_magic == LNET_PROTO_MAGIC)
1702                 version = hello->kshm_version;
1703         else if (hello->kshm_magic == __swab32(LNET_PROTO_MAGIC))
1704                 version = __swab32(hello->kshm_version);
1705
1706         if (version != 0) {
1707 #if SOCKNAL_VERSION_DEBUG
1708                 if (*ksocknal_tunables.ksnd_protocol == 1)
1709                         return NULL;
1710
1711                 if (*ksocknal_tunables.ksnd_protocol == 2 &&
1712                     version == KSOCK_PROTO_V3)
1713                         return NULL;
1714 #endif
1715                 if (version == KSOCK_PROTO_V2)
1716                         return &ksocknal_protocol_v2x;
1717
1718                 if (version == KSOCK_PROTO_V3)
1719                         return &ksocknal_protocol_v3x;
1720
1721                 return NULL;
1722         }
1723
1724         if (hello->kshm_magic == le32_to_cpu(LNET_PROTO_TCP_MAGIC)) {
1725                 struct lnet_magicversion *hmv;
1726
1727                 BUILD_BUG_ON(sizeof(struct lnet_magicversion) !=
1728                          offsetof(struct ksock_hello_msg, kshm_src_nid));
1729
1730                 hmv = (struct lnet_magicversion *)hello;
1731
1732                 if (hmv->version_major == cpu_to_le16 (KSOCK_PROTO_V1_MAJOR) &&
1733                     hmv->version_minor == cpu_to_le16 (KSOCK_PROTO_V1_MINOR))
1734                         return &ksocknal_protocol_v1x;
1735         }
1736
1737         return NULL;
1738 }
1739
1740 int
1741 ksocknal_send_hello(struct lnet_ni *ni, struct ksock_conn *conn,
1742                     lnet_nid_t peer_nid, struct ksock_hello_msg *hello)
1743 {
1744         /* CAVEAT EMPTOR: this byte flips 'ipaddrs' */
1745         struct ksock_net *net = (struct ksock_net *)ni->ni_data;
1746
1747         LASSERT(hello->kshm_nips <= LNET_INTERFACES_NUM);
1748
1749         /* rely on caller to hold a ref on socket so it wouldn't disappear */
1750         LASSERT(conn->ksnc_proto != NULL);
1751
1752         hello->kshm_src_nid         = ni->ni_nid;
1753         hello->kshm_dst_nid         = peer_nid;
1754         hello->kshm_src_pid         = the_lnet.ln_pid;
1755
1756         hello->kshm_src_incarnation = net->ksnn_incarnation;
1757         hello->kshm_ctype           = conn->ksnc_type;
1758
1759         return conn->ksnc_proto->pro_send_hello(conn, hello);
1760 }
1761
1762 static int
1763 ksocknal_invert_type(int type)
1764 {
1765         switch (type)
1766         {
1767         case SOCKLND_CONN_ANY:
1768         case SOCKLND_CONN_CONTROL:
1769                 return (type);
1770         case SOCKLND_CONN_BULK_IN:
1771                 return SOCKLND_CONN_BULK_OUT;
1772         case SOCKLND_CONN_BULK_OUT:
1773                 return SOCKLND_CONN_BULK_IN;
1774         default:
1775                 return (SOCKLND_CONN_NONE);
1776         }
1777 }
1778
1779 int
1780 ksocknal_recv_hello(struct lnet_ni *ni, struct ksock_conn *conn,
1781                     struct ksock_hello_msg *hello,
1782                     struct lnet_process_id *peerid,
1783                     __u64 *incarnation)
1784 {
1785         /* Return < 0        fatal error
1786          *        0          success
1787          *        EALREADY   lost connection race
1788          *        EPROTO     protocol version mismatch
1789          */
1790         struct socket        *sock = conn->ksnc_sock;
1791         int                  active = (conn->ksnc_proto != NULL);
1792         int                  timeout;
1793         int                  proto_match;
1794         int                  rc;
1795         const struct ksock_proto *proto;
1796         struct lnet_process_id recv_id;
1797
1798         /* socket type set on active connections - not set on passive */
1799         LASSERT(!active == !(conn->ksnc_type != SOCKLND_CONN_NONE));
1800
1801         timeout = active ? lnet_get_lnd_timeout() :
1802                             lnet_acceptor_timeout();
1803
1804         rc = lnet_sock_read(sock, &hello->kshm_magic,
1805                             sizeof(hello->kshm_magic), timeout);
1806         if (rc != 0) {
1807                 CERROR("Error %d reading HELLO from %pI4h\n",
1808                        rc, &conn->ksnc_ipaddr);
1809                 LASSERT (rc < 0);
1810                 return rc;
1811         }
1812
1813         if (hello->kshm_magic != LNET_PROTO_MAGIC &&
1814             hello->kshm_magic != __swab32(LNET_PROTO_MAGIC) &&
1815             hello->kshm_magic != le32_to_cpu (LNET_PROTO_TCP_MAGIC)) {
1816                 /* Unexpected magic! */
1817                 CERROR ("Bad magic(1) %#08x (%#08x expected) from "
1818                         "%pI4h\n", __cpu_to_le32 (hello->kshm_magic),
1819                         LNET_PROTO_TCP_MAGIC, &conn->ksnc_ipaddr);
1820                 return -EPROTO;
1821         }
1822
1823         rc = lnet_sock_read(sock, &hello->kshm_version,
1824                             sizeof(hello->kshm_version), timeout);
1825         if (rc != 0) {
1826                 CERROR("Error %d reading HELLO from %pI4h\n",
1827                        rc, &conn->ksnc_ipaddr);
1828                 LASSERT(rc < 0);
1829                 return rc;
1830         }
1831
1832         proto = ksocknal_parse_proto_version(hello);
1833         if (proto == NULL) {
1834                 if (!active) {
1835                         /* unknown protocol from peer_ni, tell peer_ni my protocol */
1836                         conn->ksnc_proto = &ksocknal_protocol_v3x;
1837 #if SOCKNAL_VERSION_DEBUG
1838                         if (*ksocknal_tunables.ksnd_protocol == 2)
1839                                 conn->ksnc_proto = &ksocknal_protocol_v2x;
1840                         else if (*ksocknal_tunables.ksnd_protocol == 1)
1841                                 conn->ksnc_proto = &ksocknal_protocol_v1x;
1842 #endif
1843                         hello->kshm_nips = 0;
1844                         ksocknal_send_hello(ni, conn, ni->ni_nid, hello);
1845                 }
1846
1847                 CERROR("Unknown protocol version (%d.x expected) from %pI4h\n",
1848                        conn->ksnc_proto->pro_version, &conn->ksnc_ipaddr);
1849
1850                 return -EPROTO;
1851         }
1852
1853         proto_match = (conn->ksnc_proto == proto);
1854         conn->ksnc_proto = proto;
1855
1856         /* receive the rest of hello message anyway */
1857         rc = conn->ksnc_proto->pro_recv_hello(conn, hello, timeout);
1858         if (rc != 0) {
1859                 CERROR("Error %d reading or checking hello from from %pI4h\n",
1860                        rc, &conn->ksnc_ipaddr);
1861                 LASSERT (rc < 0);
1862                 return rc;
1863         }
1864
1865         *incarnation = hello->kshm_src_incarnation;
1866
1867         if (hello->kshm_src_nid == LNET_NID_ANY) {
1868                 CERROR("Expecting a HELLO hdr with a NID, but got LNET_NID_ANY from %pI4h\n",
1869                        &conn->ksnc_ipaddr);
1870                 return -EPROTO;
1871         }
1872
1873         if (!active &&
1874             conn->ksnc_port > LNET_ACCEPTOR_MAX_RESERVED_PORT) {
1875                 /* Userspace NAL assigns peer_ni process ID from socket */
1876                 recv_id.pid = conn->ksnc_port | LNET_PID_USERFLAG;
1877                 recv_id.nid = LNET_MKNID(LNET_NIDNET(ni->ni_nid), conn->ksnc_ipaddr);
1878         } else {
1879                 recv_id.nid = hello->kshm_src_nid;
1880                 recv_id.pid = hello->kshm_src_pid;
1881         }
1882
1883         if (!active) {
1884                 *peerid = recv_id;
1885
1886                 /* peer_ni determines type */
1887                 conn->ksnc_type = ksocknal_invert_type(hello->kshm_ctype);
1888                 if (conn->ksnc_type == SOCKLND_CONN_NONE) {
1889                         CERROR("Unexpected type %d from %s ip %pI4h\n",
1890                                hello->kshm_ctype, libcfs_id2str(*peerid),
1891                                &conn->ksnc_ipaddr);
1892                         return -EPROTO;
1893                 }
1894                 return 0;
1895         }
1896
1897         if (peerid->pid != recv_id.pid ||
1898             peerid->nid != recv_id.nid) {
1899                 LCONSOLE_ERROR_MSG(0x130, "Connected successfully to %s on host"
1900                                    " %pI4h, but they claimed they were "
1901                                    "%s; please check your Lustre "
1902                                    "configuration.\n",
1903                                    libcfs_id2str(*peerid),
1904                                    &conn->ksnc_ipaddr,
1905                                    libcfs_id2str(recv_id));
1906                 return -EPROTO;
1907         }
1908
1909         if (hello->kshm_ctype == SOCKLND_CONN_NONE) {
1910                 /* Possible protocol mismatch or I lost the connection race */
1911                 return proto_match ? EALREADY : EPROTO;
1912         }
1913
1914         if (ksocknal_invert_type(hello->kshm_ctype) != conn->ksnc_type) {
1915                 CERROR("Mismatched types: me %d, %s ip %pI4h %d\n",
1916                        conn->ksnc_type, libcfs_id2str(*peerid),
1917                        &conn->ksnc_ipaddr,
1918                        hello->kshm_ctype);
1919                 return -EPROTO;
1920         }
1921         return 0;
1922 }
1923
1924 static int
1925 ksocknal_connect(struct ksock_route *route)
1926 {
1927         LIST_HEAD(zombies);
1928         struct ksock_peer_ni *peer_ni = route->ksnr_peer;
1929         int               type;
1930         int               wanted;
1931         struct socket     *sock;
1932         time64_t deadline;
1933         int               retry_later = 0;
1934         int               rc = 0;
1935
1936         deadline = ktime_get_seconds() + lnet_get_lnd_timeout();
1937
1938         write_lock_bh(&ksocknal_data.ksnd_global_lock);
1939
1940         LASSERT (route->ksnr_scheduled);
1941         LASSERT (!route->ksnr_connecting);
1942
1943         route->ksnr_connecting = 1;
1944
1945         for (;;) {
1946                 wanted = ksocknal_route_mask() & ~route->ksnr_connected;
1947
1948                 /* stop connecting if peer_ni/route got closed under me, or
1949                  * route got connected while queued */
1950                 if (peer_ni->ksnp_closing || route->ksnr_deleted ||
1951                     wanted == 0) {
1952                         retry_later = 0;
1953                         break;
1954                 }
1955
1956                 /* reschedule if peer_ni is connecting to me */
1957                 if (peer_ni->ksnp_accepting > 0) {
1958                         CDEBUG(D_NET,
1959                                "peer_ni %s(%d) already connecting to me, retry later.\n",
1960                                libcfs_nid2str(peer_ni->ksnp_id.nid), peer_ni->ksnp_accepting);
1961                         retry_later = 1;
1962                 }
1963
1964                 if (retry_later) /* needs reschedule */
1965                         break;
1966
1967                 if ((wanted & (1 << SOCKLND_CONN_ANY)) != 0) {
1968                         type = SOCKLND_CONN_ANY;
1969                 } else if ((wanted & (1 << SOCKLND_CONN_CONTROL)) != 0) {
1970                         type = SOCKLND_CONN_CONTROL;
1971                 } else if ((wanted & (1 << SOCKLND_CONN_BULK_IN)) != 0) {
1972                         type = SOCKLND_CONN_BULK_IN;
1973                 } else {
1974                         LASSERT ((wanted & (1 << SOCKLND_CONN_BULK_OUT)) != 0);
1975                         type = SOCKLND_CONN_BULK_OUT;
1976                 }
1977
1978                 write_unlock_bh(&ksocknal_data.ksnd_global_lock);
1979
1980                 if (ktime_get_seconds() >= deadline) {
1981                         rc = -ETIMEDOUT;
1982                         lnet_connect_console_error(rc, peer_ni->ksnp_id.nid,
1983                                                    route->ksnr_ipaddr,
1984                                                    route->ksnr_port);
1985                         goto failed;
1986                 }
1987
1988                 rc = lnet_connect(&sock, peer_ni->ksnp_id.nid,
1989                                   route->ksnr_myipaddr,
1990                                   route->ksnr_ipaddr, route->ksnr_port,
1991                                   peer_ni->ksnp_ni->ni_net_ns);
1992                 if (rc != 0)
1993                         goto failed;
1994
1995                 rc = ksocknal_create_conn(peer_ni->ksnp_ni, route, sock, type);
1996                 if (rc < 0) {
1997                         lnet_connect_console_error(rc, peer_ni->ksnp_id.nid,
1998                                                    route->ksnr_ipaddr,
1999                                                    route->ksnr_port);
2000                         goto failed;
2001                 }
2002
2003                 /* A +ve RC means I have to retry because I lost the connection
2004                  * race or I have to renegotiate protocol version */
2005                 retry_later = (rc != 0);
2006                 if (retry_later)
2007                         CDEBUG(D_NET, "peer_ni %s: conn race, retry later.\n",
2008                                libcfs_nid2str(peer_ni->ksnp_id.nid));
2009
2010                 write_lock_bh(&ksocknal_data.ksnd_global_lock);
2011         }
2012
2013         route->ksnr_scheduled = 0;
2014         route->ksnr_connecting = 0;
2015
2016         if (retry_later) {
2017                 /* re-queue for attention; this frees me up to handle
2018                  * the peer_ni's incoming connection request */
2019
2020                 if (rc == EALREADY ||
2021                     (rc == 0 && peer_ni->ksnp_accepting > 0)) {
2022                         /* We want to introduce a delay before next
2023                          * attempt to connect if we lost conn race,
2024                          * but the race is resolved quickly usually,
2025                          * so min_reconnectms should be good heuristic */
2026                         route->ksnr_retry_interval = *ksocknal_tunables.ksnd_min_reconnectms / 1000;
2027                         route->ksnr_timeout = ktime_get_seconds() +
2028                                               route->ksnr_retry_interval;
2029                 }
2030
2031                 ksocknal_launch_connection_locked(route);
2032         }
2033
2034         write_unlock_bh(&ksocknal_data.ksnd_global_lock);
2035         return retry_later;
2036
2037  failed:
2038         write_lock_bh(&ksocknal_data.ksnd_global_lock);
2039
2040         route->ksnr_scheduled = 0;
2041         route->ksnr_connecting = 0;
2042
2043         /* This is a retry rather than a new connection */
2044         route->ksnr_retry_interval *= 2;
2045         route->ksnr_retry_interval =
2046                 max_t(time64_t, route->ksnr_retry_interval,
2047                       *ksocknal_tunables.ksnd_min_reconnectms / 1000);
2048         route->ksnr_retry_interval =
2049                 min_t(time64_t, route->ksnr_retry_interval,
2050                       *ksocknal_tunables.ksnd_max_reconnectms / 1000);
2051
2052         LASSERT(route->ksnr_retry_interval);
2053         route->ksnr_timeout = ktime_get_seconds() + route->ksnr_retry_interval;
2054
2055         if (!list_empty(&peer_ni->ksnp_tx_queue) &&
2056             peer_ni->ksnp_accepting == 0 &&
2057             ksocknal_find_connecting_route_locked(peer_ni) == NULL) {
2058                 struct ksock_conn *conn;
2059
2060                 /* ksnp_tx_queue is queued on a conn on successful
2061                  * connection for V1.x and V2.x */
2062                 if (!list_empty(&peer_ni->ksnp_conns)) {
2063                         conn = list_entry(peer_ni->ksnp_conns.next,
2064                                           struct ksock_conn, ksnc_list);
2065                         LASSERT (conn->ksnc_proto == &ksocknal_protocol_v3x);
2066                 }
2067
2068                 /* take all the blocked packets while I've got the lock and
2069                  * complete below... */
2070                 list_splice_init(&peer_ni->ksnp_tx_queue, &zombies);
2071         }
2072
2073         write_unlock_bh(&ksocknal_data.ksnd_global_lock);
2074
2075         ksocknal_peer_failed(peer_ni);
2076         ksocknal_txlist_done(peer_ni->ksnp_ni, &zombies, rc);
2077         return 0;
2078 }
2079
2080 /*
2081  * check whether we need to create more connds.
2082  * It will try to create new thread if it's necessary, @timeout can
2083  * be updated if failed to create, so caller wouldn't keep try while
2084  * running out of resource.
2085  */
2086 static int
2087 ksocknal_connd_check_start(time64_t sec, long *timeout)
2088 {
2089         char name[16];
2090         int rc;
2091         int total = ksocknal_data.ksnd_connd_starting +
2092                     ksocknal_data.ksnd_connd_running;
2093
2094         if (unlikely(ksocknal_data.ksnd_init < SOCKNAL_INIT_ALL)) {
2095                 /* still in initializing */
2096                 return 0;
2097         }
2098
2099         if (total >= *ksocknal_tunables.ksnd_nconnds_max ||
2100             total > ksocknal_data.ksnd_connd_connecting + SOCKNAL_CONND_RESV) {
2101                 /* can't create more connd, or still have enough
2102                  * threads to handle more connecting */
2103                 return 0;
2104         }
2105
2106         if (list_empty(&ksocknal_data.ksnd_connd_routes)) {
2107                 /* no pending connecting request */
2108                 return 0;
2109         }
2110
2111         if (sec - ksocknal_data.ksnd_connd_failed_stamp <= 1) {
2112                 /* may run out of resource, retry later */
2113                 *timeout = cfs_time_seconds(1);
2114                 return 0;
2115         }
2116
2117         if (ksocknal_data.ksnd_connd_starting > 0) {
2118                 /* serialize starting to avoid flood */
2119                 return 0;
2120         }
2121
2122         ksocknal_data.ksnd_connd_starting_stamp = sec;
2123         ksocknal_data.ksnd_connd_starting++;
2124         spin_unlock_bh(&ksocknal_data.ksnd_connd_lock);
2125
2126         /* NB: total is the next id */
2127         snprintf(name, sizeof(name), "socknal_cd%02d", total);
2128         rc = ksocknal_thread_start(ksocknal_connd, NULL, name);
2129
2130         spin_lock_bh(&ksocknal_data.ksnd_connd_lock);
2131         if (rc == 0)
2132                 return 1;
2133
2134         /* we tried ... */
2135         LASSERT(ksocknal_data.ksnd_connd_starting > 0);
2136         ksocknal_data.ksnd_connd_starting--;
2137         ksocknal_data.ksnd_connd_failed_stamp = ktime_get_real_seconds();
2138
2139         return 1;
2140 }
2141
2142 /*
2143  * check whether current thread can exit, it will return 1 if there are too
2144  * many threads and no creating in past 120 seconds.
2145  * Also, this function may update @timeout to make caller come back
2146  * again to recheck these conditions.
2147  */
2148 static int
2149 ksocknal_connd_check_stop(time64_t sec, long *timeout)
2150 {
2151         int val;
2152
2153         if (unlikely(ksocknal_data.ksnd_init < SOCKNAL_INIT_ALL)) {
2154                 /* still in initializing */
2155                 return 0;
2156         }
2157
2158         if (ksocknal_data.ksnd_connd_starting > 0) {
2159                 /* in progress of starting new thread */
2160                 return 0;
2161         }
2162
2163         if (ksocknal_data.ksnd_connd_running <=
2164             *ksocknal_tunables.ksnd_nconnds) { /* can't shrink */
2165                 return 0;
2166         }
2167
2168         /* created thread in past 120 seconds? */
2169         val = (int)(ksocknal_data.ksnd_connd_starting_stamp +
2170                     SOCKNAL_CONND_TIMEOUT - sec);
2171
2172         *timeout = (val > 0) ? cfs_time_seconds(val) :
2173                                cfs_time_seconds(SOCKNAL_CONND_TIMEOUT);
2174         if (val > 0)
2175                 return 0;
2176
2177         /* no creating in past 120 seconds */
2178
2179         return ksocknal_data.ksnd_connd_running >
2180                ksocknal_data.ksnd_connd_connecting + SOCKNAL_CONND_RESV;
2181 }
2182
2183 /* Go through connd_routes queue looking for a route that we can process
2184  * right now, @timeout_p can be updated if we need to come back later */
2185 static struct ksock_route *
2186 ksocknal_connd_get_route_locked(signed long *timeout_p)
2187 {
2188         time64_t now = ktime_get_seconds();
2189         struct ksock_route *route;
2190
2191         /* connd_routes can contain both pending and ordinary routes */
2192         list_for_each_entry(route, &ksocknal_data.ksnd_connd_routes,
2193                                  ksnr_connd_list) {
2194
2195                 if (route->ksnr_retry_interval == 0 ||
2196                     now >= route->ksnr_timeout)
2197                         return route;
2198
2199                 if (*timeout_p == MAX_SCHEDULE_TIMEOUT ||
2200                     *timeout_p > cfs_time_seconds(route->ksnr_timeout - now))
2201                         *timeout_p = cfs_time_seconds(route->ksnr_timeout - now);
2202         }
2203
2204         return NULL;
2205 }
2206
2207 int
2208 ksocknal_connd(void *arg)
2209 {
2210         spinlock_t *connd_lock = &ksocknal_data.ksnd_connd_lock;
2211         struct ksock_connreq *cr;
2212         wait_queue_entry_t wait;
2213         int nloops = 0;
2214         int cons_retry = 0;
2215
2216         init_waitqueue_entry(&wait, current);
2217
2218         spin_lock_bh(connd_lock);
2219
2220         LASSERT(ksocknal_data.ksnd_connd_starting > 0);
2221         ksocknal_data.ksnd_connd_starting--;
2222         ksocknal_data.ksnd_connd_running++;
2223
2224         while (!ksocknal_data.ksnd_shuttingdown) {
2225                 struct ksock_route *route = NULL;
2226                 time64_t sec = ktime_get_real_seconds();
2227                 long timeout = MAX_SCHEDULE_TIMEOUT;
2228                 int  dropped_lock = 0;
2229
2230                 if (ksocknal_connd_check_stop(sec, &timeout)) {
2231                         /* wakeup another one to check stop */
2232                         wake_up(&ksocknal_data.ksnd_connd_waitq);
2233                         break;
2234                 }
2235
2236                 if (ksocknal_connd_check_start(sec, &timeout)) {
2237                         /* created new thread */
2238                         dropped_lock = 1;
2239                 }
2240
2241                 if (!list_empty(&ksocknal_data.ksnd_connd_connreqs)) {
2242                         /* Connection accepted by the listener */
2243                         cr = list_entry(ksocknal_data.ksnd_connd_connreqs.next,
2244                                         struct ksock_connreq, ksncr_list);
2245
2246                         list_del(&cr->ksncr_list);
2247                         spin_unlock_bh(connd_lock);
2248                         dropped_lock = 1;
2249
2250                         ksocknal_create_conn(cr->ksncr_ni, NULL,
2251                                              cr->ksncr_sock, SOCKLND_CONN_NONE);
2252                         lnet_ni_decref(cr->ksncr_ni);
2253                         LIBCFS_FREE(cr, sizeof(*cr));
2254
2255                         spin_lock_bh(connd_lock);
2256                 }
2257
2258                 /* Only handle an outgoing connection request if there
2259                  * is a thread left to handle incoming connections and
2260                  * create new connd */
2261                 if (ksocknal_data.ksnd_connd_connecting + SOCKNAL_CONND_RESV <
2262                     ksocknal_data.ksnd_connd_running) {
2263                         route = ksocknal_connd_get_route_locked(&timeout);
2264                 }
2265                 if (route != NULL) {
2266                         list_del(&route->ksnr_connd_list);
2267                         ksocknal_data.ksnd_connd_connecting++;
2268                         spin_unlock_bh(connd_lock);
2269                         dropped_lock = 1;
2270
2271                         if (ksocknal_connect(route)) {
2272                                 /* consecutive retry */
2273                                 if (cons_retry++ > SOCKNAL_INSANITY_RECONN) {
2274                                         CWARN("massive consecutive "
2275                                               "re-connecting to %pI4h\n",
2276                                               &route->ksnr_ipaddr);
2277                                         cons_retry = 0;
2278                                 }
2279                         } else {
2280                                 cons_retry = 0;
2281                         }
2282
2283                         ksocknal_route_decref(route);
2284
2285                         spin_lock_bh(connd_lock);
2286                         ksocknal_data.ksnd_connd_connecting--;
2287                 }
2288
2289                 if (dropped_lock) {
2290                         if (++nloops < SOCKNAL_RESCHED)
2291                                 continue;
2292                         spin_unlock_bh(connd_lock);
2293                         nloops = 0;
2294                         cond_resched();
2295                         spin_lock_bh(connd_lock);
2296                         continue;
2297                 }
2298
2299                 /* Nothing to do for 'timeout'  */
2300                 set_current_state(TASK_INTERRUPTIBLE);
2301                 add_wait_queue_exclusive(&ksocknal_data.ksnd_connd_waitq, &wait);
2302                 spin_unlock_bh(connd_lock);
2303
2304                 nloops = 0;
2305                 schedule_timeout(timeout);
2306
2307                 remove_wait_queue(&ksocknal_data.ksnd_connd_waitq, &wait);
2308                 spin_lock_bh(connd_lock);
2309         }
2310         ksocknal_data.ksnd_connd_running--;
2311         spin_unlock_bh(connd_lock);
2312
2313         ksocknal_thread_fini();
2314         return 0;
2315 }
2316
2317 static struct ksock_conn *
2318 ksocknal_find_timed_out_conn(struct ksock_peer_ni *peer_ni)
2319 {
2320         /* We're called with a shared lock on ksnd_global_lock */
2321         struct ksock_conn *conn;
2322         struct list_head *ctmp;
2323         struct ksock_tx *tx;
2324
2325         list_for_each(ctmp, &peer_ni->ksnp_conns) {
2326                 int error;
2327
2328                 conn = list_entry(ctmp, struct ksock_conn, ksnc_list);
2329
2330                 /* Don't need the {get,put}connsock dance to deref ksnc_sock */
2331                 LASSERT (!conn->ksnc_closing);
2332
2333                 error = conn->ksnc_sock->sk->sk_err;
2334                 if (error != 0) {
2335                         ksocknal_conn_addref(conn);
2336
2337                         switch (error) {
2338                         case ECONNRESET:
2339                                 CNETERR("A connection with %s "
2340                                         "(%pI4h:%d) was reset; "
2341                                         "it may have rebooted.\n",
2342                                         libcfs_id2str(peer_ni->ksnp_id),
2343                                         &conn->ksnc_ipaddr,
2344                                         conn->ksnc_port);
2345                                 break;
2346                         case ETIMEDOUT:
2347                                 CNETERR("A connection with %s "
2348                                         "(%pI4h:%d) timed out; the "
2349                                         "network or node may be down.\n",
2350                                         libcfs_id2str(peer_ni->ksnp_id),
2351                                         &conn->ksnc_ipaddr,
2352                                         conn->ksnc_port);
2353                                 break;
2354                         default:
2355                                 CNETERR("An unexpected network error %d "
2356                                         "occurred with %s "
2357                                         "(%pI4h:%d\n", error,
2358                                         libcfs_id2str(peer_ni->ksnp_id),
2359                                         &conn->ksnc_ipaddr,
2360                                         conn->ksnc_port);
2361                                 break;
2362                         }
2363
2364                         return (conn);
2365                 }
2366
2367                 if (conn->ksnc_rx_started &&
2368                     ktime_get_seconds() >= conn->ksnc_rx_deadline) {
2369                         /* Timed out incomplete incoming message */
2370                         ksocknal_conn_addref(conn);
2371                         CNETERR("Timeout receiving from %s (%pI4h:%d), "
2372                                 "state %d wanted %d left %d\n",
2373                                 libcfs_id2str(peer_ni->ksnp_id),
2374                                 &conn->ksnc_ipaddr,
2375                                 conn->ksnc_port,
2376                                 conn->ksnc_rx_state,
2377                                 conn->ksnc_rx_nob_wanted,
2378                                 conn->ksnc_rx_nob_left);
2379                         return (conn);
2380                 }
2381
2382                 if ((!list_empty(&conn->ksnc_tx_queue) ||
2383                      conn->ksnc_sock->sk->sk_wmem_queued != 0) &&
2384                     ktime_get_seconds() >= conn->ksnc_tx_deadline) {
2385                         /* Timed out messages queued for sending or
2386                          * buffered in the socket's send buffer */
2387                         ksocknal_conn_addref(conn);
2388                         list_for_each_entry(tx, &conn->ksnc_tx_queue,
2389                                             tx_list)
2390                                 tx->tx_hstatus =
2391                                         LNET_MSG_STATUS_LOCAL_TIMEOUT;
2392                         CNETERR("Timeout sending data to %s (%pI4h:%d) "
2393                                 "the network or that node may be down.\n",
2394                                 libcfs_id2str(peer_ni->ksnp_id),
2395                                 &conn->ksnc_ipaddr, conn->ksnc_port);
2396                         return (conn);
2397                 }
2398         }
2399
2400         return (NULL);
2401 }
2402
2403 static inline void
2404 ksocknal_flush_stale_txs(struct ksock_peer_ni *peer_ni)
2405 {
2406         struct ksock_tx *tx;
2407         LIST_HEAD(stale_txs);
2408
2409         write_lock_bh(&ksocknal_data.ksnd_global_lock);
2410
2411         while (!list_empty(&peer_ni->ksnp_tx_queue)) {
2412                 tx = list_entry(peer_ni->ksnp_tx_queue.next,
2413                                 struct ksock_tx, tx_list);
2414
2415                 if (ktime_get_seconds() < tx->tx_deadline)
2416                         break;
2417
2418                 tx->tx_hstatus = LNET_MSG_STATUS_LOCAL_TIMEOUT;
2419
2420                 list_move_tail(&tx->tx_list, &stale_txs);
2421         }
2422
2423         write_unlock_bh(&ksocknal_data.ksnd_global_lock);
2424
2425         ksocknal_txlist_done(peer_ni->ksnp_ni, &stale_txs, -ETIMEDOUT);
2426 }
2427
2428 static int
2429 ksocknal_send_keepalive_locked(struct ksock_peer_ni *peer_ni)
2430 __must_hold(&ksocknal_data.ksnd_global_lock)
2431 {
2432         struct ksock_sched *sched;
2433         struct ksock_conn *conn;
2434         struct ksock_tx *tx;
2435
2436         /* last_alive will be updated by create_conn */
2437         if (list_empty(&peer_ni->ksnp_conns))
2438                 return 0;
2439
2440         if (peer_ni->ksnp_proto != &ksocknal_protocol_v3x)
2441                 return 0;
2442
2443         if (*ksocknal_tunables.ksnd_keepalive <= 0 ||
2444             ktime_get_seconds() < peer_ni->ksnp_last_alive +
2445                                   *ksocknal_tunables.ksnd_keepalive)
2446                 return 0;
2447
2448         if (ktime_get_seconds() < peer_ni->ksnp_send_keepalive)
2449                 return 0;
2450
2451         /* retry 10 secs later, so we wouldn't put pressure
2452          * on this peer_ni if we failed to send keepalive this time */
2453         peer_ni->ksnp_send_keepalive = ktime_get_seconds() + 10;
2454
2455         conn = ksocknal_find_conn_locked(peer_ni, NULL, 1);
2456         if (conn != NULL) {
2457                 sched = conn->ksnc_scheduler;
2458
2459                 spin_lock_bh(&sched->kss_lock);
2460                 if (!list_empty(&conn->ksnc_tx_queue)) {
2461                         spin_unlock_bh(&sched->kss_lock);
2462                         /* there is an queued ACK, don't need keepalive */
2463                         return 0;
2464                 }
2465
2466                 spin_unlock_bh(&sched->kss_lock);
2467         }
2468
2469         read_unlock(&ksocknal_data.ksnd_global_lock);
2470
2471         /* cookie = 1 is reserved for keepalive PING */
2472         tx = ksocknal_alloc_tx_noop(1, 1);
2473         if (tx == NULL) {
2474                 read_lock(&ksocknal_data.ksnd_global_lock);
2475                 return -ENOMEM;
2476         }
2477
2478         if (ksocknal_launch_packet(peer_ni->ksnp_ni, tx, peer_ni->ksnp_id) == 0) {
2479                 read_lock(&ksocknal_data.ksnd_global_lock);
2480                 return 1;
2481         }
2482
2483         ksocknal_free_tx(tx);
2484         read_lock(&ksocknal_data.ksnd_global_lock);
2485
2486         return -EIO;
2487 }
2488
2489
2490 static void
2491 ksocknal_check_peer_timeouts(int idx)
2492 {
2493         struct hlist_head *peers = &ksocknal_data.ksnd_peers[idx];
2494         struct ksock_peer_ni *peer_ni;
2495         struct ksock_conn *conn;
2496         struct ksock_tx *tx;
2497
2498  again:
2499         /* NB. We expect to have a look at all the peers and not find any
2500          * connections to time out, so we just use a shared lock while we
2501          * take a look...
2502          */
2503         read_lock(&ksocknal_data.ksnd_global_lock);
2504
2505         hlist_for_each_entry(peer_ni, peers, ksnp_list) {
2506                 struct ksock_tx *tx_stale;
2507                 time64_t deadline = 0;
2508                 int resid = 0;
2509                 int n = 0;
2510
2511                 if (ksocknal_send_keepalive_locked(peer_ni) != 0) {
2512                         read_unlock(&ksocknal_data.ksnd_global_lock);
2513                         goto again;
2514                 }
2515
2516                 conn = ksocknal_find_timed_out_conn(peer_ni);
2517
2518                 if (conn != NULL) {
2519                         read_unlock(&ksocknal_data.ksnd_global_lock);
2520
2521                         ksocknal_close_conn_and_siblings(conn, -ETIMEDOUT);
2522
2523                         /* NB we won't find this one again, but we can't
2524                          * just proceed with the next peer_ni, since we dropped
2525                          * ksnd_global_lock and it might be dead already!
2526                          */
2527                         ksocknal_conn_decref(conn);
2528                         goto again;
2529                 }
2530
2531                 /* we can't process stale txs right here because we're
2532                  * holding only shared lock
2533                  */
2534                 if (!list_empty(&peer_ni->ksnp_tx_queue)) {
2535                         struct ksock_tx *tx;
2536
2537                         tx = list_entry(peer_ni->ksnp_tx_queue.next,
2538                                         struct ksock_tx, tx_list);
2539                         if (ktime_get_seconds() >= tx->tx_deadline) {
2540                                 ksocknal_peer_addref(peer_ni);
2541                                 read_unlock(&ksocknal_data.ksnd_global_lock);
2542
2543                                 ksocknal_flush_stale_txs(peer_ni);
2544
2545                                 ksocknal_peer_decref(peer_ni);
2546                                 goto again;
2547                         }
2548                 }
2549
2550                 if (list_empty(&peer_ni->ksnp_zc_req_list))
2551                         continue;
2552
2553                 tx_stale = NULL;
2554                 spin_lock(&peer_ni->ksnp_lock);
2555                 list_for_each_entry(tx, &peer_ni->ksnp_zc_req_list, tx_zc_list) {
2556                         if (ktime_get_seconds() < tx->tx_deadline)
2557                                 break;
2558                         /* ignore the TX if connection is being closed */
2559                         if (tx->tx_conn->ksnc_closing)
2560                                 continue;
2561                         n++;
2562                         if (tx_stale == NULL)
2563                                 tx_stale = tx;
2564                 }
2565
2566                 if (tx_stale == NULL) {
2567                         spin_unlock(&peer_ni->ksnp_lock);
2568                         continue;
2569                 }
2570
2571                 deadline = tx_stale->tx_deadline;
2572                 resid    = tx_stale->tx_resid;
2573                 conn     = tx_stale->tx_conn;
2574                 ksocknal_conn_addref(conn);
2575
2576                 spin_unlock(&peer_ni->ksnp_lock);
2577                 read_unlock(&ksocknal_data.ksnd_global_lock);
2578
2579                 CERROR("Total %d stale ZC_REQs for peer_ni %s detected; the "
2580                        "oldest(%p) timed out %lld secs ago, "
2581                        "resid: %d, wmem: %d\n",
2582                        n, libcfs_nid2str(peer_ni->ksnp_id.nid), tx_stale,
2583                        ktime_get_seconds() - deadline,
2584                        resid, conn->ksnc_sock->sk->sk_wmem_queued);
2585
2586                 ksocknal_close_conn_and_siblings (conn, -ETIMEDOUT);
2587                 ksocknal_conn_decref(conn);
2588                 goto again;
2589         }
2590
2591         read_unlock(&ksocknal_data.ksnd_global_lock);
2592 }
2593
2594 int ksocknal_reaper(void *arg)
2595 {
2596         wait_queue_entry_t wait;
2597         struct ksock_conn *conn;
2598         struct ksock_sched *sched;
2599         LIST_HEAD(enomem_conns);
2600         int nenomem_conns;
2601         time64_t timeout;
2602         int i;
2603         int peer_index = 0;
2604         time64_t deadline = ktime_get_seconds();
2605
2606         init_waitqueue_entry(&wait, current);
2607
2608         spin_lock_bh(&ksocknal_data.ksnd_reaper_lock);
2609
2610         while (!ksocknal_data.ksnd_shuttingdown) {
2611                 if (!list_empty(&ksocknal_data.ksnd_deathrow_conns)) {
2612                         conn = list_entry(ksocknal_data.ksnd_deathrow_conns.next,
2613                                           struct ksock_conn, ksnc_list);
2614                         list_del(&conn->ksnc_list);
2615
2616                         spin_unlock_bh(&ksocknal_data.ksnd_reaper_lock);
2617
2618                         ksocknal_terminate_conn(conn);
2619                         ksocknal_conn_decref(conn);
2620
2621                         spin_lock_bh(&ksocknal_data.ksnd_reaper_lock);
2622                         continue;
2623                 }
2624
2625                 if (!list_empty(&ksocknal_data.ksnd_zombie_conns)) {
2626                         conn = list_entry(ksocknal_data.ksnd_zombie_conns.next,
2627                                           struct ksock_conn, ksnc_list);
2628                         list_del(&conn->ksnc_list);
2629
2630                         spin_unlock_bh(&ksocknal_data.ksnd_reaper_lock);
2631
2632                         ksocknal_destroy_conn(conn);
2633
2634                         spin_lock_bh(&ksocknal_data.ksnd_reaper_lock);
2635                         continue;
2636                 }
2637
2638                 list_splice_init(&ksocknal_data.ksnd_enomem_conns,
2639                                  &enomem_conns);
2640
2641                 spin_unlock_bh(&ksocknal_data.ksnd_reaper_lock);
2642
2643                 /* reschedule all the connections that stalled with ENOMEM... */
2644                 nenomem_conns = 0;
2645                 while (!list_empty(&enomem_conns)) {
2646                         conn = list_entry(enomem_conns.next,
2647                                           struct ksock_conn, ksnc_tx_list);
2648                         list_del(&conn->ksnc_tx_list);
2649
2650                         sched = conn->ksnc_scheduler;
2651
2652                         spin_lock_bh(&sched->kss_lock);
2653
2654                         LASSERT(conn->ksnc_tx_scheduled);
2655                         conn->ksnc_tx_ready = 1;
2656                         list_add_tail(&conn->ksnc_tx_list,
2657                                           &sched->kss_tx_conns);
2658                         wake_up(&sched->kss_waitq);
2659
2660                         spin_unlock_bh(&sched->kss_lock);
2661                         nenomem_conns++;
2662                 }
2663
2664                 /* careful with the jiffy wrap... */
2665                 while ((timeout = deadline - ktime_get_seconds()) <= 0) {
2666                         const int n = 4;
2667                         const int p = 1;
2668                         int  chunk = HASH_SIZE(ksocknal_data.ksnd_peers);
2669                         unsigned int lnd_timeout;
2670
2671                         /* Time to check for timeouts on a few more peers: I
2672                          * do checks every 'p' seconds on a proportion of the
2673                          * peer_ni table and I need to check every connection
2674                          * 'n' times within a timeout interval, to ensure I
2675                          * detect a timeout on any connection within (n+1)/n
2676                          * times the timeout interval.
2677                          */
2678
2679                         lnd_timeout = lnet_get_lnd_timeout();
2680                         if (lnd_timeout > n * p)
2681                                 chunk = (chunk * n * p) / lnd_timeout;
2682                         if (chunk == 0)
2683                                 chunk = 1;
2684
2685                         for (i = 0; i < chunk; i++) {
2686                                 ksocknal_check_peer_timeouts(peer_index);
2687                                 peer_index = (peer_index + 1) %
2688                                         HASH_SIZE(ksocknal_data.ksnd_peers);
2689                         }
2690
2691                         deadline += p;
2692                 }
2693
2694                 if (nenomem_conns != 0) {
2695                         /* Reduce my timeout if I rescheduled ENOMEM conns.
2696                          * This also prevents me getting woken immediately
2697                          * if any go back on my enomem list. */
2698                         timeout = SOCKNAL_ENOMEM_RETRY;
2699                 }
2700                 ksocknal_data.ksnd_reaper_waketime = ktime_get_seconds() +
2701                                                      timeout;
2702
2703                 set_current_state(TASK_INTERRUPTIBLE);
2704                 add_wait_queue(&ksocknal_data.ksnd_reaper_waitq, &wait);
2705
2706                 if (!ksocknal_data.ksnd_shuttingdown &&
2707                     list_empty(&ksocknal_data.ksnd_deathrow_conns) &&
2708                     list_empty(&ksocknal_data.ksnd_zombie_conns))
2709                         schedule_timeout(cfs_time_seconds(timeout));
2710
2711                 set_current_state(TASK_RUNNING);
2712                 remove_wait_queue(&ksocknal_data.ksnd_reaper_waitq, &wait);
2713
2714                 spin_lock_bh(&ksocknal_data.ksnd_reaper_lock);
2715         }
2716
2717         spin_unlock_bh(&ksocknal_data.ksnd_reaper_lock);
2718
2719         ksocknal_thread_fini();
2720         return 0;
2721 }