Whamcloud - gitweb
New tag 2.15.63
[fs/lustre-release.git] / lnet / klnds / gnilnd / gnilnd_cb.c
1 /*
2  * Copyright (C) 2004 Cluster File Systems, Inc.
3  *
4  * Copyright (C) 2009-2012 Cray, Inc.
5  *
6  *   Derived from work by Eric Barton <eric@bartonsoftware.com>
7  *   Author: James Shimek <jshimek@cray.com>
8  *   Author: Nic Henke <nic@cray.com>
9  *
10  *   This file is part of Lustre, http://www.lustre.org.
11  *
12  *   Lustre is free software; you can redistribute it and/or
13  *   modify it under the terms of version 2 of the GNU General Public
14  *   License as published by the Free Software Foundation.
15  *
16  *   Lustre is distributed in the hope that it will be useful,
17  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *   GNU General Public License for more details.
20  *
21  *   You should have received a copy of the GNU General Public License
22  *   along with Lustre; if not, write to the Free Software
23  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  *
25  */
26
27 #include <asm/page.h>
28 #include <linux/nmi.h>
29 #include <linux/pagemap.h>
30
31 #include <libcfs/linux/linux-mem.h>
32
33 #include "gnilnd.h"
34
35 /* this is useful when needed to debug wire corruption. */
36 static void
37 kgnilnd_dump_blob(int level, char *prefix, void *buf, int len) {
38         __u64 *ptr;
39
40         ptr = (__u64 *) buf;
41
42         while (len > 0) {
43                 if (len >= 32) {
44                         CDEBUG(level,
45                                "%s 0x%p: 0x%16.16llx 0x%16.16llx 0x%16.16llx 0x%16.16llx\n",
46                                prefix, ptr, *(ptr), *(ptr + 1), *(ptr + 2), *(ptr + 3));
47                         ptr += 4;
48                         len -= 32;
49                 } else if (len >= 16) {
50                         CDEBUG(level,
51                                "%s 0x%p: 0x%16.16llx 0x%16.16llx\n",
52                                prefix, ptr, *(ptr), *(ptr + 1));
53                         ptr += 2;
54                         len -= 16;
55                 } else {
56                         CDEBUG(level, "%s 0x%p: 0x%16.16llx\n",
57                                prefix, ptr, *(ptr));
58                         ptr++;
59                         len -= 8;
60                 }
61         }
62 }
63
64 static void
65 kgnilnd_dump_msg(int mask, kgn_msg_t *msg)
66 {
67         CDEBUG(mask, "0x%8.8x 0x%4.4x 0x%4.4x 0x%16.16llx"
68                 " 0x%16.16llx 0x%8.8x 0x%4.4x 0x%4.4x 0x%8.8x\n",
69                 msg->gnm_magic, msg->gnm_version,
70                 msg->gnm_type, msg->gnm_srcnid,
71                 msg->gnm_connstamp, msg->gnm_seq,
72                 msg->gnm_cksum, msg->gnm_payload_cksum,
73                 msg->gnm_payload_len);
74 }
75
76 void
77 kgnilnd_schedule_device(kgn_device_t *dev)
78 {
79         short         already_live = 0;
80
81         /* we'll only want to wake if the scheduler thread
82          * has come around and set ready to zero */
83         already_live = cmpxchg(&dev->gnd_ready, GNILND_DEV_IDLE, GNILND_DEV_IRQ);
84
85         if (!already_live)
86                 wake_up(&dev->gnd_waitq);
87 }
88
89 void kgnilnd_schedule_device_timer(cfs_timer_cb_arg_t data)
90 {
91         kgn_device_t *dev = cfs_from_timer(dev, data, gnd_map_timer);
92
93         kgnilnd_schedule_device(dev);
94 }
95
96 void kgnilnd_schedule_device_timer_rd(cfs_timer_cb_arg_t data)
97 {
98         kgn_device_t *dev = cfs_from_timer(dev, data, gnd_rdmaq_timer);
99
100         kgnilnd_schedule_device(dev);
101 }
102
103 void
104 kgnilnd_device_callback(__u32 devid, __u64 arg)
105 {
106         kgn_device_t *dev;
107         int           index = (int) arg;
108
109         if (index >= kgnilnd_data.kgn_ndevs) {
110                 /* use _EMERG instead of an LBUG to prevent LBUG'ing in
111                  * interrupt context. */
112                 LCONSOLE_EMERG("callback for unknown device %d->%d\n",
113                                 devid, index);
114                 return;
115         }
116
117         dev = &kgnilnd_data.kgn_devices[index];
118         /* just basic sanity */
119         if (dev->gnd_id == devid) {
120                 kgnilnd_schedule_device(dev);
121         } else {
122                 LCONSOLE_EMERG("callback for bad device %d devid %d\n",
123                                 dev->gnd_id, devid);
124         }
125 }
126
127 /* sched_intent values:
128  * < 0 : do not reschedule under any circumstances
129  * == 0: reschedule if someone marked him WANTS_SCHED
130  * > 0 : force a reschedule */
131 /* Return code 0 means it did not schedule the conn, 1
132  * means it successfully scheduled the conn.
133  */
134
135 int
136 kgnilnd_schedule_process_conn(kgn_conn_t *conn, int sched_intent)
137 {
138         int     conn_sched;
139
140         /* move back to IDLE but save previous state.
141          * if we see WANTS_SCHED, we'll call kgnilnd_schedule_conn and
142          * let the xchg there handle any racing callers to get it
143          * onto gnd_ready_conns */
144
145         conn_sched = xchg(&conn->gnc_scheduled, GNILND_CONN_IDLE);
146         LASSERTF(conn_sched == GNILND_CONN_WANTS_SCHED ||
147                  conn_sched == GNILND_CONN_PROCESS,
148                  "conn %px after process in bad state: %d\n",
149                  conn, conn_sched);
150
151         if (sched_intent >= 0) {
152                 if ((sched_intent > 0 || (conn_sched == GNILND_CONN_WANTS_SCHED))) {
153                         return kgnilnd_schedule_conn_refheld(conn, 1);
154                 }
155         }
156         return 0;
157 }
158
159 /* Return of 0 for conn not scheduled, 1 returned if conn was scheduled or marked
160  * as scheduled */
161
162 int
163 _kgnilnd_schedule_conn(kgn_conn_t *conn, const char *caller, int line, int refheld, int lock_held)
164 {
165         kgn_device_t        *dev = conn->gnc_device;
166         int                  sched;
167         int                  rc;
168
169         sched = xchg(&conn->gnc_scheduled, GNILND_CONN_WANTS_SCHED);
170         /* we only care about the last person who marked want_sched since they
171          * are most likely the culprit
172          */
173         memcpy(conn->gnc_sched_caller, caller, sizeof(conn->gnc_sched_caller));
174         conn->gnc_sched_line = line;
175         /* if we are IDLE, add to list - only one guy sees IDLE and "wins"
176          * the chance to put it onto gnd_ready_conns.
177          * otherwise, leave marked as WANTS_SCHED and the thread that "owns"
178          *  the conn in process_conns will take care of moving it back to
179          *  SCHED when it is done processing */
180
181         if (sched == GNILND_CONN_IDLE) {
182                 /* if the conn is already scheduled, we've already requested
183                  * the scheduler thread wakeup */
184                 if (!refheld) {
185                         /* Add a reference to the conn if we are not holding a reference
186                          * already from the exisiting scheduler. We now use the same
187                          * reference if we need to reschedule a conn while in a scheduler
188                          * thread.
189                          */
190                         kgnilnd_conn_addref(conn);
191                 }
192                 LASSERTF(list_empty(&conn->gnc_schedlist),
193                         "conn %px already sched state %d\n",
194                          conn, sched);
195
196                 CDEBUG(D_INFO, "scheduling conn 0x%p caller %s:%d\n", conn, caller, line);
197                 if (!lock_held)
198                         spin_lock(&dev->gnd_lock);
199                 list_add_tail(&conn->gnc_schedlist, &dev->gnd_ready_conns);
200                 if (!lock_held)
201                         spin_unlock(&dev->gnd_lock);
202                 set_mb(conn->gnc_last_sched_ask, jiffies);
203                 rc = 1;
204         } else {
205                 CDEBUG(D_INFO, "not scheduling conn 0x%p: %d caller %s:%d\n", conn, sched, caller, line);
206                 rc = 0;
207         }
208
209         /* make sure thread(s) going to process conns - but let it make
210          * separate decision from conn schedule */
211         if (!lock_held)
212                 kgnilnd_schedule_device(dev);
213         return rc;
214 }
215
216 int
217 _kgnilnd_schedule_delay_conn(kgn_conn_t *conn)
218 {
219         kgn_device_t    *dev = conn->gnc_device;
220         int rc = 0;
221         spin_lock(&dev->gnd_lock);
222         if (list_empty(&conn->gnc_delaylist)) {
223                 list_add_tail(&conn->gnc_delaylist, &dev->gnd_delay_conns);
224                 rc = 1;
225         }
226         spin_unlock(&dev->gnd_lock);
227
228         kgnilnd_schedule_device(dev);
229         return rc;
230 }
231
232 void
233 kgnilnd_schedule_dgram(kgn_device_t *dev)
234 {
235         int                  wake;
236
237         wake = xchg(&dev->gnd_dgram_ready, GNILND_DGRAM_SCHED);
238         if (wake != GNILND_DGRAM_SCHED)  {
239                 wake_up(&dev->gnd_dgram_waitq);
240         } else {
241                 CDEBUG(D_NETTRACE, "not waking: %d\n", wake);
242         }
243 }
244
245 void
246 kgnilnd_free_tx(kgn_tx_t *tx)
247 {
248         /* taken from kgnilnd_tx_add_state_locked */
249
250         LASSERTF((tx->tx_list_p == NULL &&
251                   tx->tx_list_state == GNILND_TX_ALLOCD) &&
252                 list_empty(&tx->tx_list),
253                 "tx %px with bad state %s (list_p %px) tx_list %s\n",
254                 tx, kgnilnd_tx_state2str(tx->tx_list_state), tx->tx_list_p,
255                 list_empty(&tx->tx_list) ? "empty" : "not empty");
256
257         atomic_dec(&kgnilnd_data.kgn_ntx);
258
259         /* we only allocate this if we need to */
260         if (tx->tx_phys != NULL) {
261                 kmem_cache_free(kgnilnd_data.kgn_tx_phys_cache, tx->tx_phys);
262                 LIBCFS_MEM_MSG(tx->tx_phys,
263                                GNILND_MAX_IOV * sizeof(gni_mem_segment_t),
264                                "slab-freed");
265         }
266
267         /* Only free the buffer if we used it */
268         if (tx->tx_buffer_copy != NULL) {
269                 LIBCFS_MEM_MSG(tx->tx_buffer_copy, tx->tx_rdma_desc.length,
270                                "vfreed");
271                 kgnilnd_vfree(tx->tx_buffer_copy, tx->tx_rdma_desc.length);
272                 tx->tx_buffer_copy = NULL;
273         }
274 #if 0
275         KGNILND_POISON(tx, 0x5a, sizeof(kgn_tx_t));
276 #endif
277         LIBCFS_MEM_MSG(tx, sizeof(*tx), "slab-freed");
278         kmem_cache_free(kgnilnd_data.kgn_tx_cache, tx);
279 }
280
281 kgn_tx_t *
282 kgnilnd_alloc_tx (void)
283 {
284         kgn_tx_t        *tx = NULL;
285
286         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_ALLOC_TX))
287                 return tx;
288
289         tx = kmem_cache_zalloc(kgnilnd_data.kgn_tx_cache, GFP_ATOMIC);
290         if (tx == NULL) {
291                 CERROR("failed to allocate tx\n");
292                 return NULL;
293         }
294         LIBCFS_MEM_MSG(tx, sizeof(*tx), "slab-alloced");
295
296         /* setup everything here to minimize time under the lock */
297         tx->tx_buftype = GNILND_BUF_NONE;
298         tx->tx_msg.gnm_type = GNILND_MSG_NONE;
299         INIT_LIST_HEAD(&tx->tx_list);
300         INIT_LIST_HEAD(&tx->tx_map_list);
301         tx->tx_list_state = GNILND_TX_ALLOCD;
302
303         atomic_inc(&kgnilnd_data.kgn_ntx);
304
305         return tx;
306 }
307
308 /* csum_fold needs to be run on the return value before shipping over the wire */
309 #define _kgnilnd_cksum(seed, ptr, nob)  csum_partial(ptr, nob, seed)
310
311 /* we don't use offset as every one is passing a buffer reference that already
312  * includes the offset into the base address.
313  */
314 static inline __u16
315 kgnilnd_cksum(void *ptr, size_t nob)
316 {
317         __u16   sum;
318
319         sum = csum_fold(_kgnilnd_cksum(0, ptr, nob));
320
321         /* don't use magic 'no checksum' value */
322         if (sum == 0)
323                 sum = 1;
324
325         CDEBUG(D_INFO, "cksum 0x%x for ptr 0x%p sz %zu\n",
326                sum, ptr, nob);
327
328         return sum;
329 }
330
331 __u16
332 kgnilnd_cksum_kiov(unsigned int nkiov, struct bio_vec *kiov,
333                    unsigned int offset, unsigned int nob, int dump_blob)
334 {
335         __wsum             cksum = 0;
336         __wsum             tmpck;
337         __u16              retsum;
338         void              *addr;
339         unsigned int       fraglen;
340         int                i, odd;
341
342         LASSERT(nkiov > 0);
343         LASSERT(nob > 0);
344
345         CDEBUG(D_BUFFS, "calc cksum for kiov 0x%p nkiov %u offset %u nob %u, dump %d\n",
346                kiov, nkiov, offset, nob, dump_blob);
347
348         /* if loops changes, please change kgnilnd_setup_phys_buffer */
349
350         while (offset >= kiov->bv_len) {
351                 offset -= kiov->bv_len;
352                 nkiov--;
353                 kiov++;
354                 LASSERT(nkiov > 0);
355         }
356
357         /* ignore nob here, if nob < (bv_len - offset), kiov == 1 */
358         odd = (unsigned long) (kiov[0].bv_len - offset) & 1;
359
360         if ((odd || *kgnilnd_tunables.kgn_vmap_cksum) && nkiov > 1) {
361                 struct page **pages = kgnilnd_data.kgn_cksum_map_pages[get_cpu()];
362
363                 LASSERTF(pages != NULL, "NULL pages for cpu %d map_pages 0x%p\n",
364                          get_cpu(), kgnilnd_data.kgn_cksum_map_pages);
365
366                 CDEBUG(D_BUFFS, "odd %d len %u offset %u nob %u\n",
367                        odd, kiov[0].bv_len, offset, nob);
368
369                 for (i = 0; i < nkiov; i++) {
370                         pages[i] = kiov[i].bv_page;
371                 }
372
373                 addr = vmap(pages, nkiov, VM_MAP, PAGE_KERNEL);
374                 if (addr == NULL) {
375                         CNETERR("Couldn't vmap %d frags on %d bytes to avoid odd length fragment in cksum\n",
376                                 nkiov, nob);
377                         /* return zero to avoid killing tx - we'll just get warning on console
378                          * when remote end sees zero checksum */
379                         RETURN(0);
380                 }
381                 atomic_inc(&kgnilnd_data.kgn_nvmap_cksum);
382
383                 tmpck = _kgnilnd_cksum(0, ((void *) addr + kiov[0].bv_offset +
384                                            offset), nob);
385                 cksum = tmpck;
386
387                 if (dump_blob) {
388                         kgnilnd_dump_blob(D_BUFFS, "flat kiov RDMA payload",
389                                           (void *)addr + kiov[0].bv_offset +
390                                           offset, nob);
391                 }
392                 CDEBUG(D_BUFFS, "cksum 0x%x (+0x%x) for addr 0x%p+%u len %u offset %u\n",
393                        cksum, tmpck, addr, kiov[0].bv_offset, nob, offset);
394                 vunmap(addr);
395         } else {
396                 do {
397                         fraglen = min(kiov->bv_len - offset, nob);
398
399                         /* make dang sure we don't send a bogus checksum if somehow we get
400                          * an odd length fragment on anything but the last entry in a kiov  -
401                          * we know from kgnilnd_setup_rdma_buffer that we can't have non
402                          * PAGE_SIZE pages in the middle, so if nob < PAGE_SIZE, it is the last one */
403                         LASSERTF(!(fraglen&1) || (nob < PAGE_SIZE),
404                                  "odd fraglen %u on nkiov %d, nob %u bv_len %u offset %u kiov 0x%p\n",
405                                  fraglen, nkiov, nob, kiov->bv_len,
406                                  offset, kiov);
407
408                         addr = (void *)kmap(kiov->bv_page) + kiov->bv_offset +
409                                 offset;
410                         tmpck = _kgnilnd_cksum(cksum, addr, fraglen);
411
412                         CDEBUG(D_BUFFS,
413                                "cksum 0x%x (+0x%x) for page 0x%p+%u (0x%p) len %u offset %u\n",
414                                cksum, tmpck, kiov->bv_page, kiov->bv_offset,
415                                addr, fraglen, offset);
416
417                         cksum = tmpck;
418
419                         if (dump_blob)
420                                 kgnilnd_dump_blob(D_BUFFS, "kiov cksum", addr, fraglen);
421
422                         kunmap(kiov->bv_page);
423
424                         kiov++;
425                         nkiov--;
426                         nob -= fraglen;
427                         offset = 0;
428
429                         /* iov must not run out before end of data */
430                         LASSERTF(nob == 0 || nkiov > 0, "nob %u nkiov %u\n", nob, nkiov);
431
432                 } while (nob > 0);
433         }
434
435         retsum = csum_fold(cksum);
436
437         /* don't use magic 'no checksum' value */
438         if (retsum == 0)
439                 retsum = 1;
440
441         CDEBUG(D_BUFFS, "retsum 0x%x from cksum 0x%x\n", retsum, cksum);
442
443         return retsum;
444 }
445
446 void
447 kgnilnd_init_msg(kgn_msg_t *msg, int type, lnet_nid_t source)
448 {
449         msg->gnm_magic = GNILND_MSG_MAGIC;
450         msg->gnm_version = GNILND_MSG_VERSION;
451         msg->gnm_type = type;
452         msg->gnm_payload_len = 0;
453         msg->gnm_srcnid = source;
454         /* gnm_connstamp gets set when FMA is sent */
455         /* gnm_srcnid is set on creation via function argument
456          * The right interface/net and nid is passed in when the message
457          * is created.
458          */
459 }
460
461 kgn_tx_t *
462 kgnilnd_new_tx_msg(int type, lnet_nid_t source)
463 {
464         kgn_tx_t *tx = kgnilnd_alloc_tx();
465
466         if (tx != NULL) {
467                 kgnilnd_init_msg(&tx->tx_msg, type, source);
468         } else {
469                 CERROR("couldn't allocate new tx type %s!\n",
470                        kgnilnd_msgtype2str(type));
471         }
472
473         return tx;
474 }
475
476 static void
477 kgnilnd_nak_rdma(kgn_conn_t *conn, int rx_type, int error, __u64 cookie, lnet_nid_t source) {
478         kgn_tx_t        *tx;
479
480         int             nak_type;
481
482         switch (rx_type) {
483         case GNILND_MSG_GET_REQ:
484         case GNILND_MSG_GET_DONE:
485                 nak_type = GNILND_MSG_GET_NAK;
486                 break;
487         case GNILND_MSG_PUT_REQ:
488         case GNILND_MSG_PUT_ACK:
489         case GNILND_MSG_PUT_DONE:
490                 nak_type = GNILND_MSG_PUT_NAK;
491                 break;
492         case GNILND_MSG_PUT_REQ_REV:
493         case GNILND_MSG_PUT_DONE_REV:
494                 nak_type = GNILND_MSG_PUT_NAK_REV;
495                 break;
496         case GNILND_MSG_GET_REQ_REV:
497         case GNILND_MSG_GET_ACK_REV:
498         case GNILND_MSG_GET_DONE_REV:
499                 nak_type = GNILND_MSG_GET_NAK_REV;
500                 break;
501         default:
502                 CERROR("invalid msg type %s (%d)\n",
503                         kgnilnd_msgtype2str(rx_type), rx_type);
504                 LBUG();
505         }
506         /* only allow NAK on error and truncate to zero */
507         LASSERTF(error <= 0, "error %d conn 0x%p, cookie %llu\n",
508                  error, conn, cookie);
509
510         tx = kgnilnd_new_tx_msg(nak_type, source);
511         if (tx == NULL) {
512                 CNETERR("can't get TX to NAK RDMA to %s\n",
513                         libcfs_nid2str(conn->gnc_peer->gnp_nid));
514                 return;
515         }
516
517         tx->tx_msg.gnm_u.completion.gncm_retval = error;
518         tx->tx_msg.gnm_u.completion.gncm_cookie = cookie;
519         kgnilnd_queue_tx(conn, tx);
520 }
521
522 static int
523 kgnilnd_setup_immediate_buffer(kgn_tx_t *tx, unsigned int niov,
524                                struct bio_vec *kiov,
525                                unsigned int offset, unsigned int nob)
526 {
527         kgn_msg_t       *msg = &tx->tx_msg;
528         int              i;
529
530         /* To help save on MDDs for short messages, we'll vmap a kiov to allow
531          * gni_smsg_send to send that as the payload */
532
533         LASSERT(tx->tx_buftype == GNILND_BUF_NONE);
534
535         if (nob == 0) {
536                 tx->tx_buffer = NULL;
537         } else {
538
539                 if (niov && niov > (nob >> PAGE_SHIFT))
540                         niov = DIV_ROUND_UP(nob + offset + kiov->bv_offset,
541                                             PAGE_SIZE);
542
543                 while (offset >= kiov->bv_len) {
544                         offset -= kiov->bv_len;
545                         niov--;
546                         kiov++;
547                         LASSERT(niov > 0);
548                 }
549
550                 LASSERTF(niov > 0 && niov < GNILND_MAX_IMMEDIATE/PAGE_SIZE,
551                         "bad niov %d msg %px kiov %px offset %d nob%d\n",
552                         niov, msg, kiov, offset, nob);
553
554                 for (i = 0; i < niov; i++) {
555                         /* We can't have a bv_offset on anything but the first
556                          * entry, otherwise we'll have a hole at the end of the
557                          * mapping as we only map whole pages.
558                          * Also, if we have a bv_len < PAGE_SIZE but we need to
559                          * map more than bv_len, we will also have a whole at
560                          * the end of that page which isn't allowed
561                          */
562                         if ((kiov[i].bv_offset != 0 && i > 0) ||
563                             (kiov[i].bv_offset + kiov[i].bv_len != PAGE_SIZE &&
564                              i < niov - 1)) {
565                                 CNETERR("Can't make payload contiguous in I/O VM:page %d, offset %u, nob %u, bv_offset %u bv_len %u\n",
566                                        i, offset, nob, kiov->bv_offset,
567                                         kiov->bv_len);
568                                 RETURN(-EINVAL);
569                         }
570                         tx->tx_imm_pages[i] = kiov[i].bv_page;
571                 }
572
573                 /* hijack tx_phys for the later unmap */
574                 if (niov == 1) {
575                         /* tx->phyx being equal to NULL is the signal for unmap to discern between kmap and vmap */
576                         tx->tx_phys = NULL;
577                         tx->tx_buffer = (void *)kmap(tx->tx_imm_pages[0]) +
578                                 kiov[0].bv_offset + offset;
579                         atomic_inc(&kgnilnd_data.kgn_nkmap_short);
580                         GNIDBG_TX(D_NET, tx, "kmapped page for %d bytes for kiov 0x%p, buffer 0x%p",
581                                 nob, kiov, tx->tx_buffer);
582                 } else {
583                         tx->tx_phys = vmap(tx->tx_imm_pages, niov, VM_MAP, PAGE_KERNEL);
584                         if (tx->tx_phys == NULL) {
585                                 CNETERR("Couldn't vmap %d frags on %d bytes\n", niov, nob);
586                                 RETURN(-ENOMEM);
587
588                         }
589                         atomic_inc(&kgnilnd_data.kgn_nvmap_short);
590                         /* make sure we take into account the kiov offset as the
591                          * start of the buffer
592                          */
593                         tx->tx_buffer = (void *)tx->tx_phys + kiov[0].bv_offset
594                                 + offset;
595                         GNIDBG_TX(D_NET, tx,
596                                   "mapped %d pages for %d bytes from kiov 0x%p to 0x%p, buffer 0x%p",
597                                   niov, nob, kiov, tx->tx_phys, tx->tx_buffer);
598                 }
599                 tx->tx_buftype = GNILND_BUF_IMMEDIATE_KIOV;
600                 tx->tx_nob = nob;
601
602         }
603
604         /* checksum payload early - it shouldn't be changing after lnd_send */
605         if (*kgnilnd_tunables.kgn_checksum >= 2) {
606                 msg->gnm_payload_cksum = kgnilnd_cksum(tx->tx_buffer, nob);
607                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_SMSG_CKSUM2)) {
608                         msg->gnm_payload_cksum += 0xe00e;
609                 }
610                 if (*kgnilnd_tunables.kgn_checksum_dump > 1) {
611                         kgnilnd_dump_blob(D_BUFFS, "payload checksum",
612                                           tx->tx_buffer, nob);
613                 }
614         } else {
615                 msg->gnm_payload_cksum = 0;
616         }
617
618         return 0;
619 }
620
621 int
622 kgnilnd_setup_phys_buffer(kgn_tx_t *tx, int nkiov, struct bio_vec *kiov,
623                           unsigned int offset, unsigned int nob)
624 {
625         gni_mem_segment_t *phys;
626         int             rc = 0;
627         unsigned int    fraglen;
628
629         GNIDBG_TX(D_NET, tx, "niov %d kiov 0x%p offset %u nob %u", nkiov, kiov, offset, nob);
630
631         LASSERT(nob > 0);
632         LASSERT(nkiov > 0);
633         LASSERT(tx->tx_buftype == GNILND_BUF_NONE);
634
635         /* only allocate this if we are going to use it */
636         tx->tx_phys = kmem_cache_alloc(kgnilnd_data.kgn_tx_phys_cache,
637                                               GFP_ATOMIC);
638         if (tx->tx_phys == NULL) {
639                 CERROR("failed to allocate tx_phys\n");
640                 rc = -ENOMEM;
641                 GOTO(error, rc);
642         }
643
644         LIBCFS_MEM_MSG(tx->tx_phys,
645                        GNILND_MAX_IOV * sizeof(gni_mem_segment_t),
646                        "slab-alloced");
647
648         /* if loops changes, please change kgnilnd_cksum_kiov
649          *   and kgnilnd_setup_immediate_buffer */
650
651         while (offset >= kiov->bv_len) {
652                 offset -= kiov->bv_len;
653                 nkiov--;
654                 kiov++;
655                 LASSERT(nkiov > 0);
656         }
657
658         /* at this point, kiov points to the first page that we'll actually map
659          * now that we've seeked into the koiv for offset and dropped any
660          * leading pages that fall entirely within the offset */
661         tx->tx_buftype = GNILND_BUF_PHYS_UNMAPPED;
662         tx->tx_nob = nob;
663
664         /* bv_offset is start of 'valid' buffer, so index offset past that */
665         tx->tx_buffer = (void *)((unsigned long)(kiov->bv_offset + offset));
666         phys = tx->tx_phys;
667
668         CDEBUG(D_NET, "tx 0x%p buffer 0x%p map start kiov 0x%p+%u niov %d offset %u\n",
669                tx, tx->tx_buffer, kiov, kiov->bv_offset, nkiov, offset);
670
671         do {
672                 fraglen = min(kiov->bv_len - offset, nob);
673
674                 /* We can't have a bv_offset on anything but the first entry,
675                  * otherwise we'll have a hole at the end of the mapping as we
676                  * only map whole pages.  Only the first page is allowed to
677                  * have an offset - we'll add that into tx->tx_buffer and that
678                  * will get used when we map in the segments (see
679                  * kgnilnd_map_buffer).  Also, if we have a bv_len < PAGE_SIZE
680                  * but we need to map more than bv_len, we will also have a
681                  * whole at the end of that page which isn't allowed
682                  */
683                 if ((phys != tx->tx_phys) &&
684                     ((kiov->bv_offset != 0) ||
685                      ((kiov->bv_len < PAGE_SIZE) && (nob > kiov->bv_len)))) {
686                         CERROR("Can't make payload contiguous in I/O VM:page %d, offset %u, nob %u, bv_offset %u bv_len %u\n",
687                                (int)(phys - tx->tx_phys),
688                                offset, nob, kiov->bv_offset, kiov->bv_len);
689                         rc = -EINVAL;
690                         GOTO(error, rc);
691                 }
692
693                 if ((phys - tx->tx_phys) == GNILND_MAX_IOV) {
694                         CERROR ("payload too big (%d)\n", (int)(phys - tx->tx_phys));
695                         rc = -EMSGSIZE;
696                         GOTO(error, rc);
697                 }
698
699                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_PHYS_SETUP)) {
700                         rc = -EINVAL;
701                         GOTO(error, rc);
702                 }
703
704                 CDEBUG(D_BUFFS,
705                        "page 0x%p bv_offset %u bv_len %u nob %u nkiov %u offset %u\n",
706                        kiov->bv_page, kiov->bv_offset, kiov->bv_len, nob, nkiov,
707                        offset);
708
709                 phys->address = page_to_phys(kiov->bv_page);
710                 phys++;
711                 kiov++;
712                 nkiov--;
713                 nob -= fraglen;
714                 offset = 0;
715
716                 /* iov must not run out before end of data */
717                 LASSERTF(nob == 0 || nkiov > 0, "nob %u nkiov %u\n", nob, nkiov);
718
719         } while (nob > 0);
720
721         tx->tx_phys_npages = phys - tx->tx_phys;
722
723         return 0;
724
725 error:
726         if (tx->tx_phys != NULL) {
727                 kmem_cache_free(kgnilnd_data.kgn_tx_phys_cache, tx->tx_phys);
728                 LIBCFS_MEM_MSG(tx->tx_phys, sizeof(*tx->tx_phys), "slab-freed");
729                 tx->tx_phys = NULL;
730         }
731         return rc;
732 }
733
734 static inline int
735 kgnilnd_setup_rdma_buffer(kgn_tx_t *tx, unsigned int niov,
736                           struct bio_vec *kiov,
737                           unsigned int offset, unsigned int nob)
738 {
739         return kgnilnd_setup_phys_buffer(tx, niov, kiov, offset, nob);
740 }
741
742 /* kgnilnd_parse_lnet_rdma()
743  * lntmsg - message passed in from lnet.
744  * niov, kiov, offset - see lnd_t in lib-types.h for descriptions.
745  * nob - actual number of bytes to in this message.
746  * put_len - It is possible for PUTs to have a different length than the
747  *           length stored in lntmsg->msg_len since LNET can adjust this
748  *           length based on it's buffer size and offset.
749  *           lnet_try_match_md() sets the mlength that we use to do the RDMA
750  *           transfer.
751  */
752 static void
753 kgnilnd_parse_lnet_rdma(struct lnet_msg *lntmsg, unsigned int *niov,
754                         unsigned int *offset, unsigned int *nob,
755                         struct bio_vec **kiov, int put_len)
756 {
757         /* GETs are weird, see kgnilnd_send */
758         if (lntmsg->msg_type == LNET_MSG_GET) {
759                 if ((lntmsg->msg_md->md_options & LNET_MD_KIOV) == 0) {
760                         *kiov = NULL;
761                 } else {
762                         *kiov = lntmsg->msg_md->md_kiov;
763                 }
764                 *niov = lntmsg->msg_md->md_niov;
765                 *nob = lntmsg->msg_md->md_length;
766                 *offset = 0;
767         } else {
768                 *kiov = lntmsg->msg_kiov;
769                 *niov = lntmsg->msg_niov;
770                 *nob = put_len;
771                 *offset = lntmsg->msg_offset;
772         }
773 }
774
775 static inline void
776 kgnilnd_compute_rdma_cksum(kgn_tx_t *tx, int put_len)
777 {
778         unsigned int niov, offset, nob;
779         struct bio_vec *kiov;
780         struct lnet_msg *lntmsg = tx->tx_lntmsg[0];
781         int dump_cksum = (*kgnilnd_tunables.kgn_checksum_dump > 1);
782
783         GNITX_ASSERTF(tx, ((tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE) ||
784                            (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE) ||
785                            (tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV) ||
786                            (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV) ||
787                            (tx->tx_msg.gnm_type == GNILND_MSG_GET_ACK_REV) ||
788                            (tx->tx_msg.gnm_type == GNILND_MSG_PUT_REQ_REV)),
789                       "bad type %s", kgnilnd_msgtype2str(tx->tx_msg.gnm_type));
790
791         if ((tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV) ||
792             (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV)) {
793                 tx->tx_msg.gnm_payload_cksum = 0;
794                 return;
795         }
796         if (*kgnilnd_tunables.kgn_checksum < 3) {
797                 tx->tx_msg.gnm_payload_cksum = 0;
798                 return;
799         }
800
801         GNITX_ASSERTF(tx, lntmsg, "no LNet message!", NULL);
802
803         kgnilnd_parse_lnet_rdma(lntmsg, &niov, &offset, &nob, &kiov,
804                                 put_len);
805
806         if (kiov != NULL) {
807                 tx->tx_msg.gnm_payload_cksum = kgnilnd_cksum_kiov(niov, kiov, offset, nob, dump_cksum);
808         } else {
809                 tx->tx_msg.gnm_payload_cksum = kgnilnd_cksum(tx->tx_buffer, nob);
810                 if (dump_cksum) {
811                         kgnilnd_dump_blob(D_BUFFS, "peer RDMA payload", tx->tx_buffer, nob);
812                 }
813         }
814
815         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_SMSG_CKSUM3)) {
816                 tx->tx_msg.gnm_payload_cksum += 0xd00d;
817         }
818 }
819
820 /* kgnilnd_verify_rdma_cksum()
821  * tx - PUT_DONE/GET_DONE matched tx.
822  * rx_cksum - received checksum to compare against.
823  * put_len - see kgnilnd_parse_lnet_rdma comments.
824  */
825 static inline int
826 kgnilnd_verify_rdma_cksum(kgn_tx_t *tx, __u16 rx_cksum, int put_len)
827 {
828         int              rc = 0;
829         __u16            cksum;
830         unsigned int     niov, offset, nob;
831         struct bio_vec  *kiov;
832         struct lnet_msg *lntmsg = tx->tx_lntmsg[0];
833         int dump_on_err = *kgnilnd_tunables.kgn_checksum_dump;
834
835         /* we can only match certain requests */
836         GNITX_ASSERTF(tx, ((tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ) ||
837                            (tx->tx_msg.gnm_type == GNILND_MSG_PUT_ACK) ||
838                            (tx->tx_msg.gnm_type == GNILND_MSG_PUT_REQ_REV) ||
839                            (tx->tx_msg.gnm_type == GNILND_MSG_GET_ACK_REV) ||
840                            (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV) ||
841                            (tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV)),
842                       "bad type %s", kgnilnd_msgtype2str(tx->tx_msg.gnm_type));
843
844         if ((tx->tx_msg.gnm_type == GNILND_MSG_PUT_REQ_REV) ||
845             (tx->tx_msg.gnm_type == GNILND_MSG_GET_ACK_REV)) {
846                 return 0;
847         }
848
849         if (rx_cksum == 0)  {
850                 if (*kgnilnd_tunables.kgn_checksum >= 3) {
851                         GNIDBG_MSG(D_WARNING, &tx->tx_msg,
852                                    "no RDMA payload checksum when enabled");
853                 }
854                 return 0;
855         }
856
857         GNITX_ASSERTF(tx, lntmsg, "no LNet message!", NULL);
858
859         kgnilnd_parse_lnet_rdma(lntmsg, &niov, &offset, &nob, &kiov, put_len);
860
861         if (kiov != NULL) {
862                 cksum = kgnilnd_cksum_kiov(niov, kiov, offset, nob, 0);
863         } else {
864                 cksum = kgnilnd_cksum(tx->tx_buffer, nob);
865         }
866
867         if (cksum != rx_cksum) {
868                 GNIDBG_MSG(D_NETERROR, &tx->tx_msg,
869                            "Bad RDMA payload checksum (%x expected %x); "
870                            "kiov 0x%p niov %d nob %u offset %u",
871                             cksum, rx_cksum, kiov, niov, nob, offset);
872                 switch (dump_on_err) {
873                 case 2:
874                         if (kiov != NULL) {
875                                 kgnilnd_cksum_kiov(niov, kiov, offset, nob, 1);
876                         } else {
877                                 kgnilnd_dump_blob(D_BUFFS, "RDMA payload",
878                                                   tx->tx_buffer, nob);
879                         }
880                         fallthrough;
881                 case 1:
882                         libcfs_debug_dumplog();
883                         break;
884                 default:
885                         break;
886                 }
887                 rc = -ENOKEY;
888                 /* kgnilnd_check_fma_rx will close conn, kill tx with error */
889         }
890         return rc;
891 }
892
893 void
894 kgnilnd_mem_add_map_list(kgn_device_t *dev, kgn_tx_t *tx)
895 {
896         int     bytes;
897
898         GNITX_ASSERTF(tx, list_empty(&tx->tx_map_list),
899                 "already mapped!", NULL);
900
901         spin_lock(&dev->gnd_map_lock);
902         switch (tx->tx_buftype) {
903         default:
904                 GNIDBG_TX(D_EMERG, tx,
905                         "SOFTWARE BUG: invalid mapping %d", tx->tx_buftype);
906                 spin_unlock(&dev->gnd_map_lock);
907                 LBUG();
908                 break;
909
910         case GNILND_BUF_PHYS_MAPPED:
911                 bytes = tx->tx_phys_npages * PAGE_SIZE;
912                 dev->gnd_map_nphys++;
913                 dev->gnd_map_physnop += tx->tx_phys_npages;
914                 break;
915         }
916
917         if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_ACK ||
918             tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ) {
919                 atomic64_add(bytes, &dev->gnd_rdmaq_bytes_out);
920                 GNIDBG_TX(D_NETTRACE, tx, "rdma ++ %d to %lld",
921                           bytes, atomic64_read(&dev->gnd_rdmaq_bytes_out));
922         }
923
924         atomic_inc(&dev->gnd_n_mdd);
925         atomic64_add(bytes, &dev->gnd_nbytes_map);
926
927         /* clear retrans to prevent any SMSG goofiness as that code uses the same counter */
928         tx->tx_retrans = 0;
929
930         /* we only get here in the valid cases */
931         list_add_tail(&tx->tx_map_list, &dev->gnd_map_list);
932         dev->gnd_map_version++;
933         spin_unlock(&dev->gnd_map_lock);
934 }
935
936 void
937 kgnilnd_mem_del_map_list(kgn_device_t *dev, kgn_tx_t *tx)
938 {
939         int     bytes;
940
941         GNITX_ASSERTF(tx, !list_empty(&tx->tx_map_list),
942                 "not mapped!", NULL);
943         spin_lock(&dev->gnd_map_lock);
944
945         switch (tx->tx_buftype) {
946         default:
947                 GNIDBG_TX(D_EMERG, tx,
948                         "SOFTWARE BUG: invalid mapping %d", tx->tx_buftype);
949                 spin_unlock(&dev->gnd_map_lock);
950                 LBUG();
951                 break;
952
953         case GNILND_BUF_PHYS_UNMAPPED:
954                 bytes = tx->tx_phys_npages * PAGE_SIZE;
955                 dev->gnd_map_nphys--;
956                 dev->gnd_map_physnop -= tx->tx_phys_npages;
957                 break;
958         }
959
960         if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_ACK ||
961             tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ) {
962                 atomic64_sub(bytes, &dev->gnd_rdmaq_bytes_out);
963                 LASSERTF(atomic64_read(&dev->gnd_rdmaq_bytes_out) >= 0,
964                          "bytes_out negative! %lld\n",
965                          (s64)atomic64_read(&dev->gnd_rdmaq_bytes_out));
966                 GNIDBG_TX(D_NETTRACE, tx, "rdma -- %d to %lld",
967                           bytes, (s64)atomic64_read(&dev->gnd_rdmaq_bytes_out));
968         }
969
970         atomic_dec(&dev->gnd_n_mdd);
971         atomic64_sub(bytes, &dev->gnd_nbytes_map);
972
973         /* we only get here in the valid cases */
974         list_del_init(&tx->tx_map_list);
975         dev->gnd_map_version++;
976         spin_unlock(&dev->gnd_map_lock);
977 }
978
979 int
980 kgnilnd_map_buffer(kgn_tx_t *tx)
981 {
982         kgn_conn_t       *conn = tx->tx_conn;
983         kgn_device_t     *dev = conn->gnc_device;
984         __u32             flags = GNI_MEM_READWRITE;
985         gni_return_t      rrc;
986
987         /* The kgnilnd_mem_register(_segments) Gemini Driver functions can
988          * be called concurrently as there are internal locks that protect
989          * any data structures or HW resources. We just need to ensure
990          * that our concurrency doesn't result in the kgn_device_t
991          * getting nuked while we are in here */
992
993         LASSERTF(conn != NULL, "tx %px with NULL conn, someone forgot"
994                 " to set tx_conn before calling %s\n", tx, __FUNCTION__);
995
996         if (unlikely(CFS_FAIL_CHECK(CFS_FAIL_GNI_MAP_TX)))
997                 RETURN(-ENOMEM);
998
999         if (*kgnilnd_tunables.kgn_bte_relaxed_ordering) {
1000                 flags |= GNI_MEM_RELAXED_PI_ORDERING;
1001         }
1002
1003         switch (tx->tx_buftype) {
1004         default:
1005                 LBUG();
1006
1007         case GNILND_BUF_NONE:
1008         case GNILND_BUF_IMMEDIATE:
1009         case GNILND_BUF_IMMEDIATE_KIOV:
1010         case GNILND_BUF_PHYS_MAPPED:
1011                 return 0;
1012
1013         case GNILND_BUF_PHYS_UNMAPPED:
1014                 GNITX_ASSERTF(tx, tx->tx_phys != NULL, "physical buffer not there!", NULL);
1015                 rrc = kgnilnd_mem_register_segments(dev->gnd_handle,
1016                         tx->tx_phys, tx->tx_phys_npages, NULL,
1017                         GNI_MEM_PHYS_SEGMENTS | flags,
1018                         &tx->tx_map_key);
1019                 /* could race with other uses of the map counts, but this is ok
1020                  * - this needs to turn into a non-fatal error soon to allow
1021                  *  GART resource, etc starvation handling */
1022                 if (rrc != GNI_RC_SUCCESS) {
1023                         GNIDBG_TX(D_NET, tx,
1024                                   "Can't map %d pages: dev %d phys %u pp %u",
1025                                 tx->tx_phys_npages, dev->gnd_id,
1026                                 dev->gnd_map_nphys, dev->gnd_map_physnop);
1027                         RETURN(rrc == GNI_RC_ERROR_RESOURCE ? -ENOMEM : -EINVAL);
1028                 }
1029
1030                 tx->tx_buftype = GNILND_BUF_PHYS_MAPPED;
1031                 kgnilnd_mem_add_map_list(dev, tx);
1032                 return 0;
1033         }
1034 }
1035
1036 void
1037 kgnilnd_add_purgatory_tx(kgn_tx_t *tx)
1038 {
1039         kgn_conn_t              *conn = tx->tx_conn;
1040         kgn_mdd_purgatory_t     *gmp;
1041
1042         LIBCFS_ALLOC(gmp, sizeof(*gmp));
1043         LASSERTF(gmp != NULL, "couldn't allocate MDD purgatory member;"
1044                 " asserting to avoid data corruption\n");
1045         if (tx->tx_buffer_copy)
1046                 gmp->gmp_map_key = tx->tx_buffer_copy_map_key;
1047         else
1048                 gmp->gmp_map_key = tx->tx_map_key;
1049
1050         atomic_inc(&conn->gnc_device->gnd_n_mdd_held);
1051
1052         /* ensure that we don't have a blank purgatory - indicating the
1053          * conn is not already on purgatory lists - we'd never recover these
1054          * MDD if that were the case */
1055         GNITX_ASSERTF(tx, conn->gnc_in_purgatory,
1056                 "conn 0x%p->%s with NULL purgatory",
1057                 conn, libcfs_nid2str(conn->gnc_peer->gnp_nid));
1058
1059         /* link 'er up! - only place we really need to lock for
1060          * concurrent access */
1061         spin_lock(&conn->gnc_list_lock);
1062         list_add_tail(&gmp->gmp_list, &conn->gnc_mdd_list);
1063         spin_unlock(&conn->gnc_list_lock);
1064 }
1065
1066 void
1067 kgnilnd_unmap_buffer(kgn_tx_t *tx, int error)
1068 {
1069         kgn_device_t     *dev;
1070         gni_return_t      rrc;
1071         int               hold_timeout = 0;
1072
1073         /* code below relies on +1 relationship ... */
1074         BUILD_BUG_ON(GNILND_BUF_PHYS_MAPPED !=
1075                      (GNILND_BUF_PHYS_UNMAPPED + 1));
1076
1077         switch (tx->tx_buftype) {
1078         default:
1079                 LBUG();
1080
1081         case GNILND_BUF_NONE:
1082         case GNILND_BUF_IMMEDIATE:
1083         case GNILND_BUF_PHYS_UNMAPPED:
1084                 break;
1085         case GNILND_BUF_IMMEDIATE_KIOV:
1086                 if (tx->tx_phys != NULL) {
1087                         vunmap(tx->tx_phys);
1088                 } else if (tx->tx_phys == NULL && tx->tx_buffer != NULL) {
1089                         kunmap(tx->tx_imm_pages[0]);
1090                 }
1091                 /* clear to prevent kgnilnd_free_tx from thinking
1092                  * this is a RDMA descriptor */
1093                 tx->tx_phys = NULL;
1094                 break;
1095
1096         case GNILND_BUF_PHYS_MAPPED:
1097                 LASSERT(tx->tx_conn != NULL);
1098
1099                 dev = tx->tx_conn->gnc_device;
1100
1101                 /* only want to hold if we are closing conn without
1102                  * verified peer notification  - the theory is that
1103                  * a TX error can be communicated in all other cases */
1104                 if (tx->tx_conn->gnc_state != GNILND_CONN_ESTABLISHED &&
1105                     error != -GNILND_NOPURG &&
1106                     kgnilnd_check_purgatory_conn(tx->tx_conn)) {
1107                         kgnilnd_add_purgatory_tx(tx);
1108
1109                         /* The timeout we give to kgni is a deadman stop only.
1110                          *  we are setting high to ensure we don't have the kgni timer
1111                          *  fire before ours fires _and_ is handled */
1112                         hold_timeout = GNILND_TIMEOUT2DEADMAN;
1113
1114                         GNIDBG_TX(D_NET, tx,
1115                                  "dev %p delaying MDD release for %dms key %#llx.%#llx",
1116                                  tx->tx_conn->gnc_device, hold_timeout,
1117                                  tx->tx_map_key.qword1, tx->tx_map_key.qword2);
1118                 }
1119                 if (tx->tx_buffer_copy != NULL) {
1120                         rrc = kgnilnd_mem_deregister(dev->gnd_handle, &tx->tx_buffer_copy_map_key, hold_timeout);
1121                         LASSERTF(rrc == GNI_RC_SUCCESS, "rrc %d\n", rrc);
1122                         rrc = kgnilnd_mem_deregister(dev->gnd_handle, &tx->tx_map_key, 0);
1123                         LASSERTF(rrc == GNI_RC_SUCCESS, "rrc %d\n", rrc);
1124                 } else {
1125                         rrc = kgnilnd_mem_deregister(dev->gnd_handle, &tx->tx_map_key, hold_timeout);
1126                         LASSERTF(rrc == GNI_RC_SUCCESS, "rrc %d\n", rrc);
1127                 }
1128
1129                 tx->tx_buftype--;
1130                 kgnilnd_mem_del_map_list(dev, tx);
1131                 break;
1132         }
1133 }
1134
1135 void
1136 kgnilnd_tx_done(kgn_tx_t *tx, int completion)
1137 {
1138         struct lnet_msg      *lntmsg0, *lntmsg1;
1139         int             status0, status1;
1140         struct lnet_ni       *ni = NULL;
1141         kgn_conn_t      *conn = tx->tx_conn;
1142
1143         LASSERT(!in_interrupt());
1144
1145         lntmsg0 = tx->tx_lntmsg[0]; tx->tx_lntmsg[0] = NULL;
1146         lntmsg1 = tx->tx_lntmsg[1]; tx->tx_lntmsg[1] = NULL;
1147
1148         if (completion &&
1149             !(tx->tx_state & GNILND_TX_QUIET_ERROR) &&
1150             !kgnilnd_conn_clean_errno(completion)) {
1151                 GNIDBG_TOMSG(D_NETERROR, &tx->tx_msg,
1152                        "error %d on tx 0x%p->%s id %u/%d state %s age %ds",
1153                        completion, tx, conn ?
1154                        libcfs_nid2str(conn->gnc_peer->gnp_nid) : "<?>",
1155                        tx->tx_id.txe_smsg_id, tx->tx_id.txe_idx,
1156                        kgnilnd_tx_state2str(tx->tx_list_state),
1157                        cfs_duration_sec((unsigned long)jiffies - tx->tx_qtime));
1158         }
1159
1160         /* The error codes determine if we hold onto the MDD */
1161         kgnilnd_unmap_buffer(tx, completion);
1162
1163         /* we have to deliver a reply on lntmsg[1] for the GET, so make sure
1164          * we play nice with the error codes to avoid delivering a failed
1165          * REQUEST and then a REPLY event as well */
1166
1167         /* return -EIO to lnet - it is the magic value for failed sends */
1168         if (tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ) {
1169                 status0 = 0;
1170                 status1 = completion;
1171         } else {
1172                 status0 = status1 = completion;
1173         }
1174
1175         tx->tx_buftype = GNILND_BUF_NONE;
1176         tx->tx_msg.gnm_type = GNILND_MSG_NONE;
1177
1178         /* lnet_finalize doesn't do anything with the *ni, so ok for us to
1179          * set NULL when we are a tx without a conn */
1180         if (conn != NULL) {
1181                 ni = conn->gnc_peer->gnp_net->gnn_ni;
1182
1183                 spin_lock(&conn->gnc_tx_lock);
1184
1185                 LASSERTF(test_and_clear_bit(tx->tx_id.txe_idx,
1186                         (volatile unsigned long *)&conn->gnc_tx_bits),
1187                         "conn %px tx %px bit %d already cleared\n",
1188                         conn, tx, tx->tx_id.txe_idx);
1189
1190                 LASSERTF(conn->gnc_tx_ref_table[tx->tx_id.txe_idx] != NULL,
1191                          "msg_id %d already NULL\n", tx->tx_id.txe_idx);
1192
1193                 conn->gnc_tx_ref_table[tx->tx_id.txe_idx] = NULL;
1194                 spin_unlock(&conn->gnc_tx_lock);
1195         }
1196
1197         kgnilnd_free_tx(tx);
1198
1199         /* finalize AFTER freeing lnet msgs */
1200
1201         /* warning - we should hold no locks here - calling lnet_finalize
1202          * could free up lnet credits, resulting in a call chain back into
1203          * the LND via kgnilnd_send and friends */
1204
1205         lnet_finalize(lntmsg0, status0);
1206
1207         if (lntmsg1 != NULL) {
1208                 lnet_finalize(lntmsg1, status1);
1209         }
1210 }
1211
1212 void
1213 kgnilnd_txlist_done(struct list_head *txlist, int error)
1214 {
1215         kgn_tx_t        *tx, *txn;
1216         int              err_printed = 0;
1217
1218         if (list_empty(txlist))
1219                 return;
1220
1221         list_for_each_entry_safe(tx, txn, txlist, tx_list) {
1222                 /* only print the first error */
1223                 if (err_printed)
1224                         tx->tx_state |= GNILND_TX_QUIET_ERROR;
1225                 list_del_init(&tx->tx_list);
1226                 kgnilnd_tx_done(tx, error);
1227                 err_printed++;
1228         }
1229 }
1230 int
1231 kgnilnd_set_tx_id(kgn_tx_t *tx, kgn_conn_t *conn)
1232 {
1233         int     id;
1234
1235         spin_lock(&conn->gnc_tx_lock);
1236
1237         /* ID zero is NOT ALLOWED!!! */
1238
1239 search_again:
1240         id = find_next_zero_bit((unsigned long *)&conn->gnc_tx_bits,
1241                                  GNILND_MAX_MSG_ID, conn->gnc_next_tx);
1242         if (id == GNILND_MAX_MSG_ID) {
1243                 if (conn->gnc_next_tx != 1) {
1244                         /* we only searched from next_tx to end and didn't find
1245                          * one, so search again from start */
1246                         conn->gnc_next_tx = 1;
1247                         goto search_again;
1248                 }
1249                 /* couldn't find one! */
1250                 spin_unlock(&conn->gnc_tx_lock);
1251                 return -E2BIG;
1252         }
1253
1254         /* bump next_tx to prevent immediate reuse */
1255         conn->gnc_next_tx = id + 1;
1256
1257         set_bit(id, (volatile unsigned long *)&conn->gnc_tx_bits);
1258         LASSERTF(conn->gnc_tx_ref_table[id] == NULL,
1259                  "tx 0x%p already at id %d\n",
1260                  conn->gnc_tx_ref_table[id], id);
1261
1262         /* delay these until we have a valid ID - prevents bad clear of the bit
1263          * in kgnilnd_tx_done */
1264         tx->tx_conn = conn;
1265         tx->tx_id.txe_cqid = conn->gnc_cqid;
1266
1267         tx->tx_id.txe_idx = id;
1268         conn->gnc_tx_ref_table[id] = tx;
1269
1270         /* Using jiffies to help differentiate against TX reuse - with
1271          * the usual minimum of a 250HZ clock, we wrap jiffies on the same TX
1272          * if we are sending to the same node faster than 256000/sec.
1273          * To help guard against this, we OR in the tx_seq - that is 32 bits */
1274
1275         tx->tx_id.txe_chips = (__u32)(jiffies | atomic_read(&conn->gnc_tx_seq));
1276
1277         GNIDBG_TX(D_NET, tx, "set cookie/id/bits", NULL);
1278
1279         spin_unlock(&conn->gnc_tx_lock);
1280         return 0;
1281 }
1282
1283 static inline void
1284 kgnilnd_tx_log_retrans(kgn_conn_t *conn, kgn_tx_t *tx)
1285 {
1286         int             log_retrans;
1287
1288         log_retrans = ((tx->tx_retrans < 25) || ((tx->tx_retrans % 25) == 0));
1289
1290         /* we don't care about TX timeout - it could be that the network is slower
1291          * or throttled. We'll keep retranmitting - so if the network is so slow
1292          * that we fill up our mailbox, we'll keep trying to resend that msg
1293          * until we exceed the max_retrans _or_ gnc_last_rx expires, indicating
1294          * that he hasn't send us any traffic in return */
1295
1296         /* some reasonable throttling of the debug message */
1297         if (log_retrans) {
1298                 unsigned long now = jiffies;
1299                 /* XXX Nic: Mystical TX debug here... */
1300                 /* We expect retransmissions so only log when D_NET is enabled */
1301                 GNIDBG_SMSG_CREDS(D_NET, conn);
1302                 GNIDBG_TOMSG(D_NET, &tx->tx_msg,
1303                         "NOT_DONE on conn 0x%p->%s id %x retrans %d wait %dus"
1304                         " last_msg %uus/%uus last_cq %uus/%uus",
1305                         conn, libcfs_nid2str(conn->gnc_peer->gnp_nid),
1306                         tx->tx_id, tx->tx_retrans,
1307                         jiffies_to_usecs(now - tx->tx_cred_wait),
1308                         jiffies_to_usecs(now - conn->gnc_last_tx),
1309                         jiffies_to_usecs(now - conn->gnc_last_rx),
1310                         jiffies_to_usecs(now - conn->gnc_last_tx_cq),
1311                         jiffies_to_usecs(now - conn->gnc_last_rx_cq));
1312         }
1313 }
1314
1315 /* caller must be holding gnd_cq_mutex and not unlock it afterwards, as we need to drop it
1316  * to avoid bad ordering with state_lock */
1317
1318 static inline int
1319 kgnilnd_sendmsg_nolock(kgn_tx_t *tx, void *immediate, unsigned int immediatenob,
1320                 spinlock_t *state_lock, kgn_tx_list_state_t state)
1321 {
1322         kgn_conn_t      *conn = tx->tx_conn;
1323         kgn_msg_t       *msg = &tx->tx_msg;
1324         gni_return_t     rrc;
1325         unsigned long    newest_last_rx, timeout;
1326         unsigned long    now;
1327
1328         LASSERTF((msg->gnm_type == GNILND_MSG_IMMEDIATE) ?
1329                 immediatenob <= *kgnilnd_tunables.kgn_max_immediate :
1330                 immediatenob == 0,
1331                 "msg 0x%p type %d wrong payload size %d\n",
1332                 msg, msg->gnm_type, immediatenob);
1333
1334         /* make sure we catch all the cases where we'd send on a dirty old mbox
1335          * but allow case for sending CLOSE. Since this check is within the CQ
1336          * mutex barrier and the close message is only sent through
1337          * kgnilnd_send_conn_close the last message out the door will be the
1338          * close message.
1339          */
1340         if (atomic_read(&conn->gnc_peer->gnp_dirty_eps) != 0 && msg->gnm_type != GNILND_MSG_CLOSE) {
1341                 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1342                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1343                 /* Return -ETIME, we are closing the connection already so we dont want to
1344                  * have this tx hit the wire. The tx will be killed by the calling function.
1345                  * Once the EP is marked dirty the close message will be the last
1346                  * thing to hit the wire */
1347                 return -ETIME;
1348         }
1349
1350         now = jiffies;
1351         timeout = cfs_time_seconds(conn->gnc_timeout);
1352
1353         newest_last_rx = GNILND_LASTRX(conn);
1354
1355         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_SEND_TIMEOUT)) {
1356                 now = now + (GNILND_TIMEOUTRX(timeout) * 2);
1357         }
1358
1359         if (time_after_eq(now, newest_last_rx + GNILND_TIMEOUTRX(timeout))) {
1360                 GNIDBG_CONN(D_NETERROR|D_CONSOLE, conn,
1361                             "Cant send to %s after timeout lapse of %lu; TO %lu\n",
1362                 libcfs_nid2str(conn->gnc_peer->gnp_nid),
1363                 cfs_duration_sec(now - newest_last_rx),
1364                 cfs_duration_sec(GNILND_TIMEOUTRX(timeout)));
1365                 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1366                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1367                 return -ETIME;
1368         }
1369
1370         GNITX_ASSERTF(tx, (conn != NULL) && (tx->tx_id.txe_idx != 0), "tx id unset!", NULL);
1371         /* msg->gnm_srcnid is set when the message is initialized by whatever function is
1372          * creating the message this allows the message to contain the correct LNET NID/NET needed
1373          * instead of the one that the peer/conn uses for sending the data.
1374          */
1375         msg->gnm_connstamp = conn->gnc_my_connstamp;
1376         msg->gnm_payload_len = immediatenob;
1377         msg->gnm_seq = atomic_read(&conn->gnc_tx_seq);
1378
1379         /* always init here - kgn_checksum is a /sys module tunable
1380          * and can be flipped at any point, even between msg init and sending */
1381         msg->gnm_cksum = 0;
1382         if (*kgnilnd_tunables.kgn_checksum) {
1383                 /* We must set here and not in kgnilnd_init_msg,
1384                  * we could resend this msg many times
1385                  * (NOT_DONE from gni_smsg_send below) and wouldn't pass
1386                  * through init_msg again */
1387                 msg->gnm_cksum = kgnilnd_cksum(msg, sizeof(kgn_msg_t));
1388                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_SMSG_CKSUM1)) {
1389                         msg->gnm_cksum += 0xf00f;
1390                 }
1391         }
1392
1393         GNIDBG_TOMSG(D_NET, msg, "tx 0x%p conn 0x%p->%s sending SMSG sz %u id %x/%d [%p for %u]",
1394                tx, conn, libcfs_nid2str(conn->gnc_peer->gnp_nid),
1395                sizeof(kgn_msg_t), tx->tx_id.txe_smsg_id,
1396                tx->tx_id.txe_idx, immediate, immediatenob);
1397
1398         if (unlikely(tx->tx_state & GNILND_TX_FAIL_SMSG)) {
1399                 rrc = cfs_fail_val ? cfs_fail_val : GNI_RC_NOT_DONE;
1400         } else {
1401                 rrc = kgnilnd_smsg_send(conn->gnc_ephandle,
1402                                         msg, sizeof(*msg), immediate,
1403                                         immediatenob,
1404                                         tx->tx_id.txe_smsg_id);
1405         }
1406
1407         switch (rrc) {
1408         case GNI_RC_SUCCESS:
1409                 atomic_inc(&conn->gnc_tx_seq);
1410                 conn->gnc_last_tx = jiffies;
1411                 /* no locking here as LIVE isn't a list */
1412                 kgnilnd_tx_add_state_locked(tx, NULL, conn, GNILND_TX_LIVE_FMAQ, 1);
1413
1414                 /* this needs to be checked under lock as it might be freed from a completion
1415                  * event.
1416                  */
1417                 if (msg->gnm_type == GNILND_MSG_NOOP) {
1418                         set_mb(conn->gnc_last_noop_sent, jiffies);
1419                 }
1420
1421                 /* serialize with seeing CQ events for completion on this, as well as
1422                  * tx_seq */
1423                 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1424                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1425
1426                 atomic_inc(&conn->gnc_device->gnd_short_ntx);
1427                 atomic64_add(immediatenob, &conn->gnc_device->gnd_short_txbytes);
1428                 kgnilnd_peer_alive(conn->gnc_peer);
1429                 GNIDBG_SMSG_CREDS(D_NET, conn);
1430                 return 0;
1431
1432         case GNI_RC_NOT_DONE:
1433                 /* Jshimek: We can get GNI_RC_NOT_DONE for 3 reasons currently
1434                  * 1: out of mbox credits
1435                  * 2: out of mbox payload credits
1436                  * 3: On Aries out of dla credits
1437                  */
1438                 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1439                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1440                 /* We'll handle this error inline - makes the calling logic much more
1441                  * clean */
1442
1443                 /* If no lock, caller doesn't want us to retry */
1444                 if (state_lock == NULL) {
1445                         return -EAGAIN;
1446                 }
1447
1448                 /* I need kgni credits to send this.  Replace tx at the head of the
1449                  * fmaq and I'll get rescheduled when credits appear. Reset the tx_state
1450                  * and bump retrans counts since we are requeueing the tx.
1451                  */
1452                 tx->tx_state = 0;
1453                 tx->tx_retrans++;
1454                 conn->gnc_tx_retrans++;
1455
1456                 kgnilnd_tx_log_retrans(conn, tx);
1457                 /* add to head of list for the state and retries */
1458                 spin_lock(state_lock);
1459                 kgnilnd_tx_add_state_locked(tx, conn->gnc_peer, conn, state, 0);
1460                 spin_unlock(state_lock);
1461
1462                 /* We only reschedule for a certain number of retries, then
1463                  * we will wait for the CQ events indicating a release of SMSG
1464                  * credits */
1465                 if (tx->tx_retrans < *kgnilnd_tunables.kgn_max_retransmits) {
1466                         kgnilnd_schedule_conn(conn);
1467                         return 0;
1468                 } else {
1469                         /* CQ event coming in signifies either TX completed or
1470                          * RX receive. Either of these *could* free up credits
1471                          * in the SMSG mbox and we should try sending again */
1472                         GNIDBG_TX(D_NET, tx, "waiting for CQID %u event to resend",
1473                                  tx->tx_conn->gnc_cqid);
1474                         kgnilnd_schedule_delay_conn(conn);
1475                         /* use +ve return code to let upper layers know they
1476                          * should stop looping on sends */
1477                         return EAGAIN;
1478                 }
1479         default:
1480                 /* handle bad retcode gracefully */
1481                 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
1482                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1483                 return -EIO;
1484         }
1485 }
1486
1487 /* kgnilnd_sendmsg has hard wait on gnd_cq_mutex */
1488 static inline int
1489 kgnilnd_sendmsg(kgn_tx_t *tx, void *immediate, unsigned int immediatenob,
1490                 spinlock_t *state_lock, kgn_tx_list_state_t state)
1491 {
1492         kgn_device_t    *dev = tx->tx_conn->gnc_device;
1493         unsigned long    timestamp;
1494         int              rc;
1495
1496         timestamp = jiffies;
1497         kgnilnd_gl_mutex_lock(&dev->gnd_cq_mutex);
1498         kgnilnd_conn_mutex_lock(&tx->tx_conn->gnc_smsg_mutex);
1499         /* delay in jiffies - we are really concerned only with things that
1500          * result in a schedule() or really holding this off for long times .
1501          * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
1502         dev->gnd_mutex_delay += (long) jiffies - timestamp;
1503
1504         rc = kgnilnd_sendmsg_nolock(tx, immediate, immediatenob, state_lock, state);
1505
1506         RETURN(rc);
1507 }
1508
1509
1510 /* returns -EAGAIN for lock miss, anything else < 0 is hard error, >=0 for success */
1511 static inline int
1512 kgnilnd_sendmsg_trylock(kgn_tx_t *tx, void *immediate, unsigned int immediatenob,
1513                 spinlock_t *state_lock, kgn_tx_list_state_t state)
1514 {
1515         kgn_conn_t      *conn = tx->tx_conn;
1516         kgn_device_t    *dev = conn->gnc_device;
1517         unsigned long    timestamp;
1518         int              rc;
1519
1520         timestamp = jiffies;
1521
1522         /* technically we are doing bad things with the read_lock on the peer_conn
1523          * table, but we shouldn't be sleeping inside here - and we don't sleep/block
1524          * for the mutex. I bet lockdep is gonna flag this one though... */
1525
1526         /* there are a few cases where we don't want the immediate send - like
1527          * when we are in the scheduler thread and it'd harm the latency of
1528          * getting messages up to LNet */
1529
1530         /* rmb for gnd_ready */
1531         smp_rmb();
1532         if (conn->gnc_device->gnd_ready == GNILND_DEV_LOOP) {
1533                 rc = 0;
1534                 atomic_inc(&conn->gnc_device->gnd_fast_block);
1535         } else if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
1536                /* dont hit HW during quiesce */
1537                 rc = 0;
1538         } else if (unlikely(atomic_read(&conn->gnc_peer->gnp_dirty_eps))) {
1539                /* dont hit HW if stale EPs and conns left to close */
1540                 rc = 0;
1541         } else {
1542                 atomic_inc(&conn->gnc_device->gnd_fast_try);
1543                 rc = kgnilnd_trylock(&conn->gnc_device->gnd_cq_mutex,
1544                                      &conn->gnc_smsg_mutex);
1545         }
1546         if (!rc) {
1547                 rc = -EAGAIN;
1548         } else {
1549                 /* we got the mutex and weren't blocked */
1550
1551                 /* delay in jiffies - we are really concerned only with things that
1552                  * result in a schedule() or really holding this off for long times .
1553                  * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
1554                 dev->gnd_mutex_delay += (long) jiffies - timestamp;
1555
1556                 atomic_inc(&conn->gnc_device->gnd_fast_ok);
1557                 tx->tx_qtime = jiffies;
1558                 tx->tx_state = GNILND_TX_WAITING_COMPLETION;
1559                 rc = kgnilnd_sendmsg_nolock(tx, tx->tx_buffer, tx->tx_nob, &conn->gnc_list_lock, GNILND_TX_FMAQ);
1560                 /* _nolock unlocks the mutex for us */
1561         }
1562
1563         RETURN(rc);
1564 }
1565
1566 /* lets us know if we can push this RDMA through now */
1567 static int
1568 kgnilnd_auth_rdma_bytes(kgn_device_t *dev, kgn_tx_t *tx)
1569 {
1570         long    bytes_left;
1571
1572         bytes_left = atomic64_sub_return(tx->tx_nob, &dev->gnd_rdmaq_bytes_ok);
1573
1574         if (bytes_left < 0) {
1575                 atomic64_add(tx->tx_nob, &dev->gnd_rdmaq_bytes_ok);
1576                 atomic_inc(&dev->gnd_rdmaq_nstalls);
1577                 smp_wmb();
1578
1579                 CDEBUG(D_NET, "no bytes to send, turning on timer for %lu\n",
1580                        dev->gnd_rdmaq_deadline);
1581                 mod_timer(&dev->gnd_rdmaq_timer, dev->gnd_rdmaq_deadline);
1582                 /* we never del this timer - at worst it schedules us.. */
1583                 return -EAGAIN;
1584         } else {
1585                 return 0;
1586         }
1587 }
1588
1589 /* this adds a TX to the queue pending throttling authorization before
1590  * we allow our remote peer to launch a PUT at us */
1591 void
1592 kgnilnd_queue_rdma(kgn_conn_t *conn, kgn_tx_t *tx)
1593 {
1594         int     rc;
1595
1596         /* we cannot go into send_mapped_tx from here as we are holding locks
1597          * and mem registration might end up allocating memory in kgni.
1598          * That said, we'll push this as far as we can into the queue process */
1599         rc = kgnilnd_auth_rdma_bytes(conn->gnc_device, tx);
1600
1601         if (rc < 0) {
1602                 spin_lock(&conn->gnc_device->gnd_rdmaq_lock);
1603                 kgnilnd_tx_add_state_locked(tx, NULL, conn, GNILND_TX_RDMAQ, 0);
1604                 /* lets us know how delayed RDMA is */
1605                 tx->tx_qtime = jiffies;
1606                 spin_unlock(&conn->gnc_device->gnd_rdmaq_lock);
1607         } else {
1608                 /* we have RDMA authorized, now it just needs a MDD and to hit the wire */
1609                 spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
1610                 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 0);
1611                 /* lets us know how delayed mapping is */
1612                 tx->tx_qtime = jiffies;
1613                 spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
1614         }
1615
1616         /* make sure we wake up sched to run this */
1617         kgnilnd_schedule_device(tx->tx_conn->gnc_device);
1618 }
1619
1620 /* push TX through state machine */
1621 void
1622 kgnilnd_queue_tx(kgn_conn_t *conn, kgn_tx_t *tx)
1623 {
1624         int            rc = 0;
1625         int            add_tail = 1;
1626
1627         /* set the tx_id here, we delay it until we have an actual conn
1628          * to fiddle with
1629          * in some cases, the tx_id is already set to provide for things
1630          * like RDMA completion cookies, etc */
1631         if (tx->tx_id.txe_idx == 0) {
1632                 rc = kgnilnd_set_tx_id(tx, conn);
1633                 if (rc != 0) {
1634                         kgnilnd_tx_done(tx, rc);
1635                         return;
1636                 }
1637         }
1638
1639         CDEBUG(D_NET, "%s to conn %p for %s\n", kgnilnd_msgtype2str(tx->tx_msg.gnm_type),
1640                 conn, libcfs_nid2str(conn->gnc_peer->gnp_nid));
1641
1642         /* Only let NOOPs to be sent while fail loc is set, otherwise kill the tx.
1643          */
1644         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_ONLY_NOOP) && (tx->tx_msg.gnm_type != GNILND_MSG_NOOP)) {
1645                 kgnilnd_tx_done(tx, rc);
1646                 return;
1647         }
1648
1649         switch (tx->tx_msg.gnm_type) {
1650         case GNILND_MSG_PUT_ACK:
1651         case GNILND_MSG_GET_REQ:
1652         case GNILND_MSG_PUT_REQ_REV:
1653         case GNILND_MSG_GET_ACK_REV:
1654                 /* hijacking time! If this messages will authorize our peer to
1655                  * send his dirty little bytes in an RDMA, we need to get permission */
1656                 kgnilnd_queue_rdma(conn, tx);
1657                 break;
1658         case GNILND_MSG_IMMEDIATE:
1659                 /* try to send right now, can help reduce latency */
1660                 rc = kgnilnd_sendmsg_trylock(tx, tx->tx_buffer, tx->tx_nob, &conn->gnc_list_lock, GNILND_TX_FMAQ);
1661
1662                 if (rc >= 0) {
1663                         /* it was sent, break out of switch to avoid default case of queueing */
1664                         break;
1665                 }
1666                 /* needs to queue to try again, so... */
1667                 fallthrough;
1668         case GNILND_MSG_NOOP:
1669                 /* Just make sure this goes out first for this conn */
1670                 add_tail = 0;
1671                 fallthrough;
1672         default:
1673                 spin_lock(&conn->gnc_list_lock);
1674                 kgnilnd_tx_add_state_locked(tx, conn->gnc_peer, conn, GNILND_TX_FMAQ, add_tail);
1675                 tx->tx_qtime = jiffies;
1676                 spin_unlock(&conn->gnc_list_lock);
1677                 kgnilnd_schedule_conn(conn);
1678         }
1679 }
1680
1681 void
1682 kgnilnd_launch_tx(kgn_tx_t *tx, kgn_net_t *net, struct lnet_processid *target)
1683 {
1684         kgn_peer_t      *peer;
1685         kgn_peer_t      *new_peer = NULL;
1686         kgn_conn_t      *conn = NULL;
1687         int              rc;
1688         int              node_state;
1689
1690         ENTRY;
1691
1692         /* If I get here, I've committed to send, so I complete the tx with
1693          * failure on any problems */
1694
1695         GNITX_ASSERTF(tx, tx->tx_conn == NULL,
1696                       "tx already has connection %px", tx->tx_conn);
1697
1698         /* do all of the peer & conn searching in one swoop - this avoids
1699          * nastiness when dropping locks and needing to maintain a sane state
1700          * in the face of stack reset or something else nuking peers & conns */
1701
1702         /* I expect to find him, so only take a read lock */
1703         read_lock(&kgnilnd_data.kgn_peer_conn_lock);
1704
1705         peer = kgnilnd_find_peer_locked(lnet_nid_to_nid4(&target->nid));
1706         if (peer != NULL) {
1707                 conn = kgnilnd_find_conn_locked(peer);
1708                 /* this could be NULL during quiesce */
1709                 if (conn != NULL)  {
1710                         /* Connection exists; queue message on it */
1711                         kgnilnd_queue_tx(conn, tx);
1712                         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1713                         RETURN_EXIT;
1714                 }
1715
1716                 /* don't create a connection if the peer is marked down */
1717                 if (peer->gnp_state != GNILND_PEER_UP) {
1718                         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1719                         rc = -ENETRESET;
1720                         GOTO(no_peer, rc);
1721                 }
1722         }
1723
1724         /* creating peer or conn; I'll need a write lock... */
1725         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1726
1727         CFS_RACE(CFS_FAIL_GNI_FIND_TARGET);
1728
1729         node_state = kgnilnd_get_node_state(ntohl(target->nid.nid_addr[0]));
1730
1731         /* NB - this will not block during normal operations -
1732          * the only writer of this is in the startup/shutdown path. */
1733         rc = down_read_trylock(&kgnilnd_data.kgn_net_rw_sem);
1734         if (!rc) {
1735                 rc = -ESHUTDOWN;
1736                 GOTO(no_peer, rc);
1737         }
1738
1739         /* ignore previous peer entirely - we cycled the lock, so we
1740          * will create new peer and at worst drop it if peer is still
1741          * in the tables */
1742         rc = kgnilnd_create_peer_safe(&new_peer, lnet_nid_to_nid4(&target->nid),
1743                                       net, node_state);
1744         if (rc != 0) {
1745                 up_read(&kgnilnd_data.kgn_net_rw_sem);
1746                 GOTO(no_peer, rc);
1747         }
1748
1749         write_lock(&kgnilnd_data.kgn_peer_conn_lock);
1750         up_read(&kgnilnd_data.kgn_net_rw_sem);
1751
1752         /* search for peer again now that we have the lock
1753          * if we don't find it, add our new one to the list */
1754         kgnilnd_add_peer_locked(lnet_nid_to_nid4(&target->nid), new_peer,
1755                                 &peer);
1756
1757         /* don't create a connection if the peer is not up */
1758         if (peer->gnp_state != GNILND_PEER_UP) {
1759                 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1760                 rc = -ENETRESET;
1761                 GOTO(no_peer, rc);
1762         }
1763
1764         conn = kgnilnd_find_or_create_conn_locked(peer);
1765
1766         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DGRAM_DROP_TX)) {
1767                 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1768                 GOTO(no_peer, rc);
1769         }
1770
1771         if (conn != NULL) {
1772                 /* oh hey, found a conn now... magical */
1773                 kgnilnd_queue_tx(conn, tx);
1774         } else {
1775                 /* no conn, must be trying to connect - so we queue for now */
1776                 tx->tx_qtime = jiffies;
1777                 kgnilnd_tx_add_state_locked(tx, peer, NULL, GNILND_TX_PEERQ, 1);
1778         }
1779         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
1780         RETURN_EXIT;
1781 no_peer:
1782         kgnilnd_tx_done(tx, rc);
1783         RETURN_EXIT;
1784 }
1785
1786 int
1787 kgnilnd_rdma(kgn_tx_t *tx, int type,
1788             kgn_rdma_desc_t *sink, unsigned int nob, __u64 cookie)
1789 {
1790         kgn_conn_t   *conn = tx->tx_conn;
1791         unsigned long timestamp;
1792         gni_post_type_t post_type;
1793         gni_return_t  rrc;
1794         int rc = 0;
1795         unsigned int desc_nob = nob;
1796         void *desc_buffer = tx->tx_buffer;
1797         gni_mem_handle_t desc_map_key = tx->tx_map_key;
1798         LASSERTF(kgnilnd_tx_mapped(tx),
1799                 "unmapped tx %px\n", tx);
1800         LASSERTF(conn != NULL,
1801                 "NULL conn on tx %px, naughty, naughty\n", tx);
1802         LASSERTF(nob <= sink->gnrd_nob,
1803                 "nob %u > sink->gnrd_nob %d (%px)\n",
1804                 nob, sink->gnrd_nob, sink);
1805         LASSERTF(nob <= tx->tx_nob,
1806                 "nob %d > tx(%px)->tx_nob %d\n",
1807                 nob, tx, tx->tx_nob);
1808
1809         switch (type) {
1810         case GNILND_MSG_GET_DONE:
1811         case GNILND_MSG_PUT_DONE:
1812                 post_type = GNI_POST_RDMA_PUT;
1813                 break;
1814         case GNILND_MSG_GET_DONE_REV:
1815         case GNILND_MSG_PUT_DONE_REV:
1816                 post_type = GNI_POST_RDMA_GET;
1817                 break;
1818         default:
1819                 CERROR("invalid msg type %s (%d)\n",
1820                         kgnilnd_msgtype2str(type), type);
1821                 LBUG();
1822         }
1823         if (post_type == GNI_POST_RDMA_GET) {
1824                 /* Check for remote buffer / local buffer / length alignment. All must be 4 byte
1825                  * aligned. If the local buffer is not aligned correctly using the copy buffer
1826                  * will fix that issue. If length is misaligned copy buffer will also fix the issue, we end
1827                  * up transferring extra bytes into the buffer but only copy the correct nob into the original
1828                  * buffer.  Remote offset correction is done through a combination of adjusting the offset,
1829                  * making sure the length and addr are aligned and copying the data into the correct location
1830                  * once the transfer has completed.
1831                  */
1832                 if ((((__u64)((unsigned long)tx->tx_buffer)) & 3) ||
1833                       (sink->gnrd_addr & 3) ||
1834                       (nob & 3)) {
1835
1836                         tx->tx_offset = ((__u64)((unsigned long)sink->gnrd_addr)) & 3;
1837                         if (tx->tx_offset)
1838                                 atomic_inc(&kgnilnd_data.kgn_rev_offset);
1839
1840                         if ((nob + tx->tx_offset) & 3) {
1841                                 desc_nob = ((nob + tx->tx_offset) + (4 - ((nob + tx->tx_offset) & 3)));
1842                                 atomic_inc(&kgnilnd_data.kgn_rev_length);
1843                         } else {
1844                                 desc_nob = (nob + tx->tx_offset);
1845                         }
1846
1847                         if (tx->tx_buffer_copy == NULL) {
1848                                 /* Allocate the largest copy buffer we will need, this will prevent us from overwriting data
1849                                  * and require at most we allocate a few extra bytes. */
1850                                 tx->tx_buffer_copy = kgnilnd_vzalloc(desc_nob);
1851
1852                                 if (!tx->tx_buffer_copy) {
1853                                         /* allocation of buffer failed nak the rdma */
1854                                         kgnilnd_nak_rdma(tx->tx_conn, tx->tx_msg.gnm_type, -EFAULT, cookie, tx->tx_msg.gnm_srcnid);
1855                                         kgnilnd_tx_done(tx, -EFAULT);
1856                                         return 0;
1857                                 }
1858                                 atomic_inc(&kgnilnd_data.kgn_rev_copy_buff);
1859                                 rc = kgnilnd_mem_register(conn->gnc_device->gnd_handle, (__u64)tx->tx_buffer_copy, desc_nob, NULL, GNI_MEM_READWRITE, &tx->tx_buffer_copy_map_key);
1860                                 if (rc != GNI_RC_SUCCESS) {
1861                                         /* Registration Failed nak rdma and kill the tx. */
1862                                         kgnilnd_vfree(tx->tx_buffer_copy,
1863                                                       desc_nob);
1864                                         tx->tx_buffer_copy = NULL;
1865                                         kgnilnd_nak_rdma(tx->tx_conn, tx->tx_msg.gnm_type, -EFAULT, cookie, tx->tx_msg.gnm_srcnid);
1866                                         kgnilnd_tx_done(tx, -EFAULT);
1867                                         return 0;
1868                                 }
1869                         }
1870                         desc_map_key = tx->tx_buffer_copy_map_key;
1871                         desc_buffer = tx->tx_buffer_copy;
1872                 }
1873         }
1874
1875         memset(&tx->tx_rdma_desc, 0, sizeof(tx->tx_rdma_desc));
1876         tx->tx_rdma_desc.post_id = tx->tx_id.txe_cookie;
1877         tx->tx_rdma_desc.type = post_type;
1878         tx->tx_rdma_desc.cq_mode = GNI_CQMODE_GLOBAL_EVENT;
1879         tx->tx_rdma_desc.local_addr = (__u64)((unsigned long)desc_buffer);
1880         tx->tx_rdma_desc.local_mem_hndl = desc_map_key;
1881         tx->tx_rdma_desc.remote_addr = sink->gnrd_addr - tx->tx_offset;
1882         tx->tx_rdma_desc.remote_mem_hndl = sink->gnrd_key;
1883         tx->tx_rdma_desc.length = desc_nob;
1884         tx->tx_nob_rdma = nob;
1885         if (post_type == GNI_POST_RDMA_PUT && *kgnilnd_tunables.kgn_bte_put_dlvr_mode)
1886                 tx->tx_rdma_desc.dlvr_mode = *kgnilnd_tunables.kgn_bte_put_dlvr_mode;
1887         if (post_type == GNI_POST_RDMA_GET && *kgnilnd_tunables.kgn_bte_get_dlvr_mode)
1888                 tx->tx_rdma_desc.dlvr_mode = *kgnilnd_tunables.kgn_bte_get_dlvr_mode;
1889         /* prep final completion message */
1890         kgnilnd_init_msg(&tx->tx_msg, type, tx->tx_msg.gnm_srcnid);
1891         tx->tx_msg.gnm_u.completion.gncm_cookie = cookie;
1892         /* send actual size RDMA'd in retval */
1893         tx->tx_msg.gnm_u.completion.gncm_retval = nob;
1894
1895         kgnilnd_compute_rdma_cksum(tx, nob);
1896
1897         if (nob == 0) {
1898                 kgnilnd_queue_tx(conn, tx);
1899                 return 0;
1900         }
1901
1902         /* Don't lie (CLOSE == RDMA idle) */
1903         LASSERTF(!conn->gnc_close_sent,
1904                 "tx %px on conn %px after close sent %d\n",
1905                  tx, conn, conn->gnc_close_sent);
1906
1907         GNIDBG_TX(D_NET, tx, "Post RDMA type 0x%02x conn %p dlvr_mode "
1908                 "0x%x cookie:%#llx",
1909                 type, conn, tx->tx_rdma_desc.dlvr_mode, cookie);
1910
1911         /* set CQ dedicated for RDMA */
1912         tx->tx_rdma_desc.src_cq_hndl = conn->gnc_device->gnd_snd_rdma_cqh;
1913
1914         timestamp = jiffies;
1915         kgnilnd_conn_mutex_lock(&conn->gnc_rdma_mutex);
1916         kgnilnd_gl_mutex_lock(&conn->gnc_device->gnd_cq_mutex);
1917         /* delay in jiffies - we are really concerned only with things that
1918          * result in a schedule() or really holding this off for long times .
1919          * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
1920         conn->gnc_device->gnd_mutex_delay += (long) jiffies - timestamp;
1921
1922         rrc = kgnilnd_post_rdma(conn->gnc_ephandle, &tx->tx_rdma_desc);
1923
1924         if (rrc == GNI_RC_ERROR_RESOURCE) {
1925                 kgnilnd_conn_mutex_unlock(&conn->gnc_rdma_mutex);
1926                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1927                 kgnilnd_unmap_buffer(tx, 0);
1928
1929                 if (tx->tx_buffer_copy != NULL) {
1930                         kgnilnd_vfree(tx->tx_buffer_copy, desc_nob);
1931                         tx->tx_buffer_copy = NULL;
1932                 }
1933
1934                 spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
1935                 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn,
1936                                             GNILND_TX_MAPQ, 0);
1937                 spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
1938                 kgnilnd_schedule_device(tx->tx_conn->gnc_device);
1939                 return -EAGAIN;
1940         }
1941
1942         spin_lock(&conn->gnc_list_lock);
1943         kgnilnd_tx_add_state_locked(tx, conn->gnc_peer, conn, GNILND_TX_LIVE_RDMAQ, 1);
1944         tx->tx_qtime = jiffies;
1945         spin_unlock(&conn->gnc_list_lock);
1946         kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1947         kgnilnd_conn_mutex_unlock(&conn->gnc_rdma_mutex);
1948
1949         /* XXX Nic: is this a place we should handle more errors for
1950          * robustness sake */
1951         LASSERT(rrc == GNI_RC_SUCCESS);
1952         return 0;
1953 }
1954
1955 kgn_rx_t *
1956 kgnilnd_alloc_rx(void)
1957 {
1958         kgn_rx_t        *rx;
1959
1960         rx = kmem_cache_alloc(kgnilnd_data.kgn_rx_cache, GFP_ATOMIC);
1961         if (rx == NULL) {
1962                 CERROR("failed to allocate rx\n");
1963                 return NULL;
1964         }
1965         LIBCFS_MEM_MSG(rx, sizeof(*rx), "slab-alloced");
1966
1967         /* no memset to zero, we'll always fill all members */
1968         return rx;
1969 }
1970
1971 /* release is to just free connection resources
1972  * we use this for the eager path after copying */
1973 void
1974 kgnilnd_release_msg(kgn_conn_t *conn)
1975 {
1976         gni_return_t    rrc;
1977         unsigned long   timestamp;
1978
1979         CDEBUG(D_NET, "consuming %p\n", conn);
1980
1981         timestamp = jiffies;
1982         kgnilnd_gl_mutex_lock(&conn->gnc_device->gnd_cq_mutex);
1983         /* delay in jiffies - we are really concerned only with things that
1984          * result in a schedule() or really holding this off for long times .
1985          * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
1986         conn->gnc_device->gnd_mutex_delay += (long) jiffies - timestamp;
1987
1988         rrc = kgnilnd_smsg_release(conn->gnc_ephandle);
1989         kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
1990
1991         LASSERTF(rrc == GNI_RC_SUCCESS, "bad rrc %d\n", rrc);
1992         GNIDBG_SMSG_CREDS(D_NET, conn);
1993
1994         kgnilnd_schedule_conn(conn);
1995 }
1996
1997 void
1998 kgnilnd_consume_rx(kgn_rx_t *rx)
1999 {
2000         kgn_conn_t      *conn = rx->grx_conn;
2001         kgn_msg_t       *rxmsg = rx->grx_msg;
2002
2003         /* if we are eager, free the cache alloc'd msg */
2004         if (unlikely(rx->grx_eager)) {
2005                 LIBCFS_FREE(rxmsg, sizeof(*rxmsg) + *kgnilnd_tunables.kgn_max_immediate);
2006                 atomic_dec(&kgnilnd_data.kgn_neager_allocs);
2007
2008                 /* release ref from eager_recv */
2009                 kgnilnd_conn_decref(conn);
2010         } else {
2011                 GNIDBG_MSG(D_NET, rxmsg, "rx %p processed", rx);
2012                 kgnilnd_release_msg(conn);
2013         }
2014
2015         LIBCFS_MEM_MSG(rx, sizeof(*rx), "slab-freed");
2016         kmem_cache_free(kgnilnd_data.kgn_rx_cache, rx);
2017 }
2018
2019 int
2020 kgnilnd_send(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg)
2021 {
2022         struct lnet_hdr  *hdr = &lntmsg->msg_hdr;
2023         int               type = lntmsg->msg_type;
2024         struct lnet_processid *target = &lntmsg->msg_target;
2025         int               target_is_router = lntmsg->msg_target_is_router;
2026         int               routing = lntmsg->msg_routing;
2027         unsigned int      niov = lntmsg->msg_niov;
2028         struct bio_vec   *kiov = lntmsg->msg_kiov;
2029         unsigned int      offset = lntmsg->msg_offset;
2030         unsigned int      nob = lntmsg->msg_len;
2031         unsigned int      msg_vmflush = lntmsg->msg_vmflush;
2032         kgn_net_t        *net = ni->ni_data;
2033         kgn_tx_t         *tx;
2034         int               rc = 0;
2035         /* '1' for consistency with code that checks !mpflag to restore */
2036         unsigned int mpflag = 1;
2037         int               reverse_rdma_flag = *kgnilnd_tunables.kgn_reverse_rdma;
2038
2039         /* NB 'private' is different depending on what we're sending.... */
2040         LASSERT(!in_interrupt());
2041
2042         CDEBUG(D_NET, "sending msg type %d with %d bytes in %d frags to %s\n",
2043                type, nob, niov, libcfs_idstr(target));
2044
2045         LASSERTF(nob == 0 || niov > 0,
2046                 "lntmsg %px nob %d niov %d\n", lntmsg, nob, niov);
2047
2048         if (msg_vmflush)
2049                 mpflag = memalloc_noreclaim_save();
2050
2051         switch (type) {
2052         default:
2053                 CERROR("lntmsg %p with unexpected type %d\n",
2054                         lntmsg, type);
2055                 LBUG();
2056
2057         case LNET_MSG_ACK:
2058                 LASSERTF(nob == 0, "lntmsg %px nob %d\n",
2059                         lntmsg, nob);
2060                 break;
2061
2062         case LNET_MSG_GET:
2063                 LASSERT(niov == 0);
2064                 LASSERT(nob == 0);
2065
2066                 if (routing || target_is_router)
2067                         break;                  /* send IMMEDIATE */
2068
2069                 /* it is safe to do direct GET with out mapping buffer for RDMA as we
2070                  * check the eventual sink buffer here - if small enough, remote
2071                  * end is perfectly capable of returning data in short message -
2072                  * The magic is that we call lnet_parse in kgnilnd_recv with rdma_req=0
2073                  * for IMMEDIATE messages which will have it send a real reply instead
2074                  * of doing kgnilnd_recv to have the RDMA continued */
2075                 if (lntmsg->msg_md->md_length <= *kgnilnd_tunables.kgn_max_immediate)
2076                        break;
2077
2078                 if ((reverse_rdma_flag & GNILND_REVERSE_GET) == 0)
2079                         tx = kgnilnd_new_tx_msg(GNILND_MSG_GET_REQ,
2080                                                 lnet_nid_to_nid4(&ni->ni_nid));
2081                 else
2082                         tx = kgnilnd_new_tx_msg(GNILND_MSG_GET_REQ_REV,
2083                                                 lnet_nid_to_nid4(&ni->ni_nid));
2084
2085                 if (tx == NULL) {
2086                         rc = -ENOMEM;
2087                         goto out;
2088                 }
2089                 rc = kgnilnd_setup_rdma_buffer(tx, lntmsg->msg_md->md_niov,
2090                                                lntmsg->msg_md->md_kiov,
2091                                                0, lntmsg->msg_md->md_length);
2092                 if (rc != 0) {
2093                         CERROR("unable to setup buffer: %d\n", rc);
2094                         kgnilnd_tx_done(tx, rc);
2095                         rc = -EIO;
2096                         goto out;
2097                 }
2098
2099                 tx->tx_lntmsg[1] = lnet_create_reply_msg(ni, lntmsg);
2100                 if (tx->tx_lntmsg[1] == NULL) {
2101                         CERROR("Can't create reply for GET to %s\n",
2102                                libcfs_nidstr(&target->nid));
2103                         kgnilnd_tx_done(tx, rc);
2104                         rc = -EIO;
2105                         goto out;
2106                 }
2107
2108                 tx->tx_lntmsg[0] = lntmsg;
2109                 if ((reverse_rdma_flag & GNILND_REVERSE_GET) == 0)
2110                         lnet_hdr_to_nid4(hdr, &tx->tx_msg.gnm_u.get.gngm_hdr);
2111                 else
2112                         lnet_hdr_to_nid4(hdr,
2113                                            &tx->tx_msg.gnm_u.putreq.gnprm_hdr);
2114
2115                 /* rest of tx_msg is setup just before it is sent */
2116                 kgnilnd_launch_tx(tx, net, target);
2117                 goto out;
2118         case LNET_MSG_REPLY:
2119         case LNET_MSG_PUT:
2120                 /* to save on MDDs, we'll handle short kiov by vmap'ing
2121                  * and sending via SMSG */
2122                 if (nob <= *kgnilnd_tunables.kgn_max_immediate)
2123                        break;
2124
2125                 if ((reverse_rdma_flag & GNILND_REVERSE_PUT) == 0)
2126                         tx = kgnilnd_new_tx_msg(GNILND_MSG_PUT_REQ,
2127                                                 lnet_nid_to_nid4(&ni->ni_nid));
2128                 else
2129                         tx = kgnilnd_new_tx_msg(GNILND_MSG_PUT_REQ_REV,
2130                                                 lnet_nid_to_nid4(&ni->ni_nid));
2131
2132                 if (tx == NULL) {
2133                         rc = -ENOMEM;
2134                         goto out;
2135                 }
2136
2137                 rc = kgnilnd_setup_rdma_buffer(tx, niov,
2138                                                kiov, offset, nob);
2139                 if (rc != 0) {
2140                         kgnilnd_tx_done(tx, rc);
2141                         rc = -EIO;
2142                         goto out;
2143                 }
2144
2145                 tx->tx_lntmsg[0] = lntmsg;
2146                 if ((reverse_rdma_flag & GNILND_REVERSE_PUT) == 0)
2147                         lnet_hdr_to_nid4(hdr,
2148                                            &tx->tx_msg.gnm_u.putreq.gnprm_hdr);
2149                 else
2150                         lnet_hdr_to_nid4(hdr, &tx->tx_msg.gnm_u.get.gngm_hdr);
2151
2152                 /* rest of tx_msg is setup just before it is sent */
2153                 kgnilnd_launch_tx(tx, net, target);
2154                 goto out;
2155         }
2156
2157         /* send IMMEDIATE */
2158
2159         LASSERTF(nob <= *kgnilnd_tunables.kgn_max_immediate,
2160                 "lntmsg 0x%p too large %d\n", lntmsg, nob);
2161
2162         tx = kgnilnd_new_tx_msg(GNILND_MSG_IMMEDIATE,
2163                                 lnet_nid_to_nid4(&ni->ni_nid));
2164         if (tx == NULL) {
2165                 rc = -ENOMEM;
2166                 goto out;
2167         }
2168
2169         rc = kgnilnd_setup_immediate_buffer(tx, niov, kiov, offset, nob);
2170         if (rc != 0) {
2171                 kgnilnd_tx_done(tx, rc);
2172                 goto out;
2173         }
2174
2175         lnet_hdr_to_nid4(hdr, &tx->tx_msg.gnm_u.immediate.gnim_hdr);
2176         tx->tx_lntmsg[0] = lntmsg;
2177         kgnilnd_launch_tx(tx, net, target);
2178
2179 out:
2180         /* use stored value as we could have already finalized lntmsg here from a failed launch */
2181         if (msg_vmflush)
2182                 memalloc_noreclaim_restore(mpflag);
2183         return rc;
2184 }
2185
2186 void
2187 kgnilnd_setup_rdma(struct lnet_ni *ni, kgn_rx_t *rx, struct lnet_msg *lntmsg, int mlen)
2188 {
2189         kgn_conn_t    *conn = rx->grx_conn;
2190         kgn_msg_t     *rxmsg = rx->grx_msg;
2191         unsigned int   niov = lntmsg->msg_niov;
2192         struct bio_vec *kiov = lntmsg->msg_kiov;
2193         unsigned int   offset = lntmsg->msg_offset;
2194         unsigned int   nob = lntmsg->msg_len;
2195         int            done_type;
2196         kgn_tx_t      *tx;
2197         int            rc = 0;
2198
2199         switch (rxmsg->gnm_type) {
2200         case GNILND_MSG_PUT_REQ_REV:
2201                 done_type = GNILND_MSG_PUT_DONE_REV;
2202                 nob = mlen;
2203                 break;
2204         case GNILND_MSG_GET_REQ:
2205                 done_type = GNILND_MSG_GET_DONE;
2206                 break;
2207         default:
2208                 CERROR("invalid msg type %s (%d)\n",
2209                         kgnilnd_msgtype2str(rxmsg->gnm_type),
2210                         rxmsg->gnm_type);
2211                 LBUG();
2212         }
2213
2214         tx = kgnilnd_new_tx_msg(done_type, lnet_nid_to_nid4(&ni->ni_nid));
2215         if (tx == NULL)
2216                 goto failed_0;
2217
2218         rc = kgnilnd_set_tx_id(tx, conn);
2219         if (rc != 0)
2220                 goto failed_1;
2221
2222         rc = kgnilnd_setup_rdma_buffer(tx, niov, kiov, offset, nob);
2223         if (rc != 0)
2224                 goto failed_1;
2225
2226         tx->tx_lntmsg[0] = lntmsg;
2227         tx->tx_getinfo = rxmsg->gnm_u.get;
2228
2229         /* we only queue from kgnilnd_recv - we might get called from other contexts
2230          * and we don't want to block the mutex in those cases */
2231
2232         spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
2233         kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 1);
2234         spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
2235         kgnilnd_schedule_device(tx->tx_conn->gnc_device);
2236
2237         return;
2238
2239  failed_1:
2240         kgnilnd_tx_done(tx, rc);
2241         kgnilnd_nak_rdma(conn, done_type, rc, rxmsg->gnm_u.get.gngm_cookie,
2242                          lnet_nid_to_nid4(&ni->ni_nid));
2243  failed_0:
2244         lnet_finalize(lntmsg, rc);
2245 }
2246
2247 int
2248 kgnilnd_eager_recv(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg,
2249                    void **new_private)
2250 {
2251         kgn_rx_t        *rx = private;
2252         kgn_conn_t      *conn = rx->grx_conn;
2253         kgn_msg_t       *rxmsg = rx->grx_msg;
2254         kgn_msg_t       *eagermsg = NULL;
2255         kgn_peer_t      *peer = NULL;
2256         kgn_conn_t      *found_conn = NULL;
2257
2258         GNIDBG_MSG(D_NET, rxmsg, "eager recv for conn %p, rxmsg %p, lntmsg %p",
2259                 conn, rxmsg, lntmsg);
2260
2261         if (rxmsg->gnm_payload_len > *kgnilnd_tunables.kgn_max_immediate) {
2262                 GNIDBG_MSG(D_ERROR, rxmsg, "payload too large %d",
2263                         rxmsg->gnm_payload_len);
2264                 return -EPROTO;
2265         }
2266         /* Grab a read lock so the connection doesnt disappear on us
2267          * while we look it up
2268          */
2269         read_lock(&kgnilnd_data.kgn_peer_conn_lock);
2270
2271         peer = kgnilnd_find_peer_locked(rxmsg->gnm_srcnid);
2272         if (peer != NULL)
2273                 found_conn = kgnilnd_find_conn_locked(peer);
2274
2275
2276         /* Verify the connection found is the same one that the message
2277          * is supposed to be using, if it is not output an error message
2278          * and return.
2279          */
2280         if (!peer || !found_conn
2281             || found_conn->gnc_peer_connstamp != rxmsg->gnm_connstamp) {
2282                 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2283                 CERROR("Couldnt find matching peer %p or conn %p / %p\n",
2284                         peer, conn, found_conn);
2285                 if (found_conn) {
2286                         CERROR("Unexpected connstamp %#llx(%#llx expected) from %s\n",
2287                                 rxmsg->gnm_connstamp,
2288                                 found_conn->gnc_peer_connstamp,
2289                                 libcfs_nid2str(peer->gnp_nid));
2290                 }
2291                 return -ENOTCONN;
2292         }
2293
2294         /* add conn ref to ensure it doesn't go away until all eager
2295          * messages processed */
2296         kgnilnd_conn_addref(conn);
2297
2298         /* Now that we have verified the connection is valid and added a
2299          * reference we can remove the read_lock on the peer_conn_lock */
2300         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2301
2302         /* we have no credits or buffers for this message, so copy it
2303          * somewhere for a later kgnilnd_recv */
2304         if (atomic_read(&kgnilnd_data.kgn_neager_allocs) >=
2305                         *kgnilnd_tunables.kgn_eager_credits) {
2306                 CERROR("Out of eager credits to %s\n",
2307                         libcfs_nid2str(conn->gnc_peer->gnp_nid));
2308                 return -ENOMEM;
2309         }
2310
2311         atomic_inc(&kgnilnd_data.kgn_neager_allocs);
2312
2313         LIBCFS_ALLOC(eagermsg, sizeof(*eagermsg) + *kgnilnd_tunables.kgn_max_immediate);
2314         if (eagermsg == NULL) {
2315                 kgnilnd_conn_decref(conn);
2316                 CERROR("couldn't allocate eager rx message for conn %p to %s\n",
2317                         conn, libcfs_nid2str(conn->gnc_peer->gnp_nid));
2318                 return -ENOMEM;
2319         }
2320
2321         /* copy msg and payload */
2322         memcpy(eagermsg, rxmsg, sizeof(*rxmsg) + rxmsg->gnm_payload_len);
2323         rx->grx_msg = eagermsg;
2324         rx->grx_eager = 1;
2325
2326         /* stash this for lnet_finalize on cancel-on-conn-close */
2327         rx->grx_lntmsg = lntmsg;
2328
2329         /* keep the same rx_t, it just has a new grx_msg now */
2330         *new_private = private;
2331
2332         /* release SMSG buffer */
2333         kgnilnd_release_msg(conn);
2334
2335         return 0;
2336 }
2337
2338 int
2339 kgnilnd_recv(struct lnet_ni *ni, void *private, struct lnet_msg *lntmsg,
2340              int delayed, unsigned int niov,
2341              struct bio_vec *kiov,
2342              unsigned int offset, unsigned int mlen, unsigned int rlen)
2343 {
2344         kgn_rx_t    *rx = private;
2345         kgn_conn_t  *conn = rx->grx_conn;
2346         kgn_msg_t   *rxmsg = rx->grx_msg;
2347         kgn_tx_t    *tx;
2348         int          rc = 0;
2349         __u32        pload_cksum;
2350         ENTRY;
2351
2352         LASSERT(!in_interrupt());
2353         LASSERTF(mlen <= rlen, "%d <= %d\n", mlen, rlen);
2354
2355         GNIDBG_MSG(D_NET, rxmsg, "conn %p, rxmsg %p, lntmsg %p"
2356                 " niov=%d kiov=%p offset=%d mlen=%d rlen=%d",
2357                 conn, rxmsg, lntmsg,
2358                 niov, kiov, offset, mlen, rlen);
2359
2360         /* we need to lock here as recv can be called from any context */
2361         read_lock(&kgnilnd_data.kgn_peer_conn_lock);
2362         if (rx->grx_eager && conn->gnc_state != GNILND_CONN_ESTABLISHED) {
2363                 read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2364
2365                 /* someone closed the conn after we copied this out, nuke it */
2366                 kgnilnd_consume_rx(rx);
2367                 lnet_finalize(lntmsg, conn->gnc_error);
2368                 RETURN(0);
2369         }
2370         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2371
2372         switch (rxmsg->gnm_type) {
2373         default:
2374                 GNIDBG_MSG(D_NETERROR, rxmsg, "conn %p, rx %p, rxmsg %p, lntmsg %p"
2375                 " niov=%d kiov=%p offset=%d mlen=%d rlen=%d",
2376                 conn, rx, rxmsg, lntmsg, niov, kiov, offset, mlen, rlen);
2377                 LBUG();
2378
2379         case GNILND_MSG_IMMEDIATE:
2380                 if (mlen > rxmsg->gnm_payload_len) {
2381                         GNIDBG_MSG(D_ERROR, rxmsg,
2382                                 "Immediate message from %s too big: %d > %d",
2383                                 libcfs_nid2str(conn->gnc_peer->gnp_nid), mlen,
2384                                 rxmsg->gnm_payload_len);
2385                         rc = -EINVAL;
2386                         kgnilnd_consume_rx(rx);
2387                         RETURN(rc);
2388                 }
2389
2390                 /* rxmsg[1] is a pointer to the payload, sitting in the buffer
2391                  * right after the kgn_msg_t header - so just 'cute' way of saying
2392                  * rxmsg + sizeof(kgn_msg_t) */
2393
2394                 /* check payload checksum if sent */
2395
2396                 if (*kgnilnd_tunables.kgn_checksum >= 2 &&
2397                         !rxmsg->gnm_payload_cksum &&
2398                         rxmsg->gnm_payload_len != 0)
2399                         GNIDBG_MSG(D_WARNING, rxmsg, "no msg payload checksum when enabled");
2400
2401                 if (rxmsg->gnm_payload_cksum != 0) {
2402                         /* gnm_payload_len set in kgnilnd_sendmsg from tx->tx_nob,
2403                          * which is what is used to calculate the cksum on the TX side */
2404                         pload_cksum = kgnilnd_cksum(&rxmsg[1], rxmsg->gnm_payload_len);
2405
2406                         if (rxmsg->gnm_payload_cksum != pload_cksum) {
2407                                 GNIDBG_MSG(D_NETERROR, rxmsg,
2408                                            "Bad payload checksum (%x expected %x)",
2409                                             pload_cksum, rxmsg->gnm_payload_cksum);
2410                                 switch (*kgnilnd_tunables.kgn_checksum_dump) {
2411                                 case 2:
2412                                         kgnilnd_dump_blob(D_BUFFS, "bad payload checksum",
2413                                                           &rxmsg[1], rxmsg->gnm_payload_len);
2414                                         fallthrough;
2415                                 case 1:
2416                                         libcfs_debug_dumplog();
2417                                         break;
2418                                 default:
2419                                         break;
2420                                 }
2421                                 rc = -ENOKEY;
2422                                 /* checksum problems are fatal, kill the conn */
2423                                 kgnilnd_consume_rx(rx);
2424                                 kgnilnd_close_conn(conn, rc);
2425                                 RETURN(rc);
2426                         }
2427                 }
2428
2429                 lnet_copy_flat2kiov(
2430                         niov, kiov, offset,
2431                         *kgnilnd_tunables.kgn_max_immediate,
2432                         &rxmsg[1], 0, mlen);
2433
2434                 kgnilnd_consume_rx(rx);
2435                 lnet_finalize(lntmsg, 0);
2436                 RETURN(0);
2437
2438         case GNILND_MSG_PUT_REQ:
2439                 /* LNET wants to truncate or drop transaction, sending NAK */
2440                 if (mlen == 0) {
2441                         kgnilnd_consume_rx(rx);
2442                         lnet_finalize(lntmsg, 0);
2443
2444                         /* only error if lntmsg == NULL, otherwise we are just
2445                          * short circuiting the rdma process of 0 bytes */
2446                         kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2447                                          lntmsg == NULL ? -ENOENT : 0,
2448                                          rxmsg->gnm_u.get.gngm_cookie,
2449                                          lnet_nid_to_nid4(&ni->ni_nid));
2450                         RETURN(0);
2451                 }
2452                 /* sending ACK with sink buff. info */
2453                 tx = kgnilnd_new_tx_msg(GNILND_MSG_PUT_ACK,
2454                                         lnet_nid_to_nid4(&ni->ni_nid));
2455                 if (tx == NULL) {
2456                         kgnilnd_consume_rx(rx);
2457                         RETURN(-ENOMEM);
2458                 }
2459
2460                 rc = kgnilnd_set_tx_id(tx, conn);
2461                 if (rc != 0) {
2462                         GOTO(nak_put_req, rc);
2463                 }
2464
2465                 rc = kgnilnd_setup_rdma_buffer(tx, niov,
2466                                                kiov, offset, mlen);
2467                 if (rc != 0) {
2468                         GOTO(nak_put_req, rc);
2469                 }
2470
2471                 tx->tx_msg.gnm_u.putack.gnpam_src_cookie =
2472                         rxmsg->gnm_u.putreq.gnprm_cookie;
2473                 tx->tx_msg.gnm_u.putack.gnpam_dst_cookie = tx->tx_id.txe_cookie;
2474                 tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_addr =
2475                         (__u64)((unsigned long)tx->tx_buffer);
2476                 tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_nob = mlen;
2477
2478                 tx->tx_lntmsg[0] = lntmsg; /* finalize this on RDMA_DONE */
2479                 tx->tx_qtime = jiffies;
2480                 /* we only queue from kgnilnd_recv - we might get called from other contexts
2481                  * and we don't want to block the mutex in those cases */
2482
2483                 spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
2484                 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 1);
2485                 spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
2486                 kgnilnd_schedule_device(tx->tx_conn->gnc_device);
2487
2488                 kgnilnd_consume_rx(rx);
2489                 RETURN(0);
2490
2491 nak_put_req:
2492                 /* make sure we send an error back when the PUT fails */
2493                 kgnilnd_nak_rdma(conn, rxmsg->gnm_type, rc,
2494                                  rxmsg->gnm_u.get.gngm_cookie,
2495                                  lnet_nid_to_nid4(&ni->ni_nid));
2496                 kgnilnd_tx_done(tx, rc);
2497                 kgnilnd_consume_rx(rx);
2498
2499                 /* return magic LNet network error */
2500                 RETURN(-EIO);
2501         case GNILND_MSG_GET_REQ_REV:
2502                 /* LNET wants to truncate or drop transaction, sending NAK */
2503                 if (mlen == 0) {
2504                         kgnilnd_consume_rx(rx);
2505                         lnet_finalize(lntmsg, 0);
2506
2507                         /* only error if lntmsg == NULL, otherwise we are just
2508                          * short circuiting the rdma process of 0 bytes */
2509                         kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2510                                          lntmsg == NULL ? -ENOENT : 0,
2511                                          rxmsg->gnm_u.get.gngm_cookie,
2512                                          lnet_nid_to_nid4(&ni->ni_nid));
2513                         RETURN(0);
2514                 }
2515                 /* lntmsg can be null when parsing a LNET_GET */
2516                 if (lntmsg != NULL) {
2517                         /* sending ACK with sink buff. info */
2518                         tx = kgnilnd_new_tx_msg(GNILND_MSG_GET_ACK_REV,
2519                                                 lnet_nid_to_nid4(&ni->ni_nid));
2520                         if (tx == NULL) {
2521                                 kgnilnd_consume_rx(rx);
2522                                 RETURN(-ENOMEM);
2523                         }
2524
2525                         rc = kgnilnd_set_tx_id(tx, conn);
2526                         if (rc != 0)
2527                                 GOTO(nak_get_req_rev, rc);
2528
2529                         rc = kgnilnd_setup_rdma_buffer(tx, niov,
2530                                                        kiov, offset, mlen);
2531                         if (rc != 0)
2532                                 GOTO(nak_get_req_rev, rc);
2533
2534                         tx->tx_msg.gnm_u.putack.gnpam_src_cookie =
2535                                 rxmsg->gnm_u.putreq.gnprm_cookie;
2536                         tx->tx_msg.gnm_u.putack.gnpam_dst_cookie = tx->tx_id.txe_cookie;
2537                         tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_addr =
2538                                 (__u64)((unsigned long)tx->tx_buffer);
2539                         tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_nob = mlen;
2540
2541                         tx->tx_lntmsg[0] = lntmsg; /* finalize this on RDMA_DONE */
2542
2543                         /* we only queue from kgnilnd_recv - we might get called from other contexts
2544                          * and we don't want to block the mutex in those cases */
2545
2546                         spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
2547                         kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 1);
2548                         spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
2549                         kgnilnd_schedule_device(tx->tx_conn->gnc_device);
2550                 } else {
2551                         /* No match */
2552                         kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2553                                          -ENOENT,
2554                                          rxmsg->gnm_u.get.gngm_cookie,
2555                                          lnet_nid_to_nid4(&ni->ni_nid));
2556                 }
2557
2558                 kgnilnd_consume_rx(rx);
2559                 RETURN(0);
2560
2561 nak_get_req_rev:
2562                 /* make sure we send an error back when the GET fails */
2563                 kgnilnd_nak_rdma(conn, rxmsg->gnm_type, rc,
2564                                  rxmsg->gnm_u.get.gngm_cookie,
2565                                  lnet_nid_to_nid4(&ni->ni_nid));
2566                 kgnilnd_tx_done(tx, rc);
2567                 kgnilnd_consume_rx(rx);
2568
2569                 /* return magic LNet network error */
2570                 RETURN(-EIO);
2571
2572
2573         case GNILND_MSG_PUT_REQ_REV:
2574                 /* LNET wants to truncate or drop transaction, sending NAK */
2575                 if (mlen == 0) {
2576                         kgnilnd_consume_rx(rx);
2577                         lnet_finalize(lntmsg, 0);
2578
2579                         /* only error if lntmsg == NULL, otherwise we are just
2580                          * short circuiting the rdma process of 0 bytes */
2581                         kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2582                                          lntmsg == NULL ? -ENOENT : 0,
2583                                          rxmsg->gnm_u.get.gngm_cookie,
2584                                          lnet_nid_to_nid4(&ni->ni_nid));
2585                         RETURN(0);
2586                 }
2587
2588                 if (lntmsg != NULL) {
2589                         /* Matched! */
2590                         kgnilnd_setup_rdma(ni, rx, lntmsg, mlen);
2591                 } else {
2592                         /* No match */
2593                         kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2594                                          -ENOENT,
2595                                          rxmsg->gnm_u.get.gngm_cookie,
2596                                          lnet_nid_to_nid4(&ni->ni_nid));
2597                 }
2598                 kgnilnd_consume_rx(rx);
2599                 RETURN(0);
2600         case GNILND_MSG_GET_REQ:
2601                 if (lntmsg != NULL) {
2602                         /* Matched! */
2603                         kgnilnd_setup_rdma(ni, rx, lntmsg, mlen);
2604                 } else {
2605                         /* No match */
2606                         kgnilnd_nak_rdma(conn, rxmsg->gnm_type,
2607                                          -ENOENT,
2608                                          rxmsg->gnm_u.get.gngm_cookie,
2609                                          lnet_nid_to_nid4(&ni->ni_nid));
2610                 }
2611                 kgnilnd_consume_rx(rx);
2612                 RETURN(0);
2613         }
2614         RETURN(0);
2615 }
2616
2617 /* needs write_lock on kgn_peer_conn_lock held */
2618 int
2619 kgnilnd_check_conn_timeouts_locked(kgn_conn_t *conn)
2620 {
2621         unsigned long      timeout, keepalive;
2622         unsigned long      now = jiffies;
2623         unsigned long      newest_last_rx;
2624         kgn_tx_t          *tx;
2625
2626         /* given that we found this conn hanging off a peer, it better damned
2627          * well be connected */
2628         LASSERTF(conn->gnc_state == GNILND_CONN_ESTABLISHED,
2629                  "conn 0x%p->%s with bad state%s\n", conn,
2630                  conn->gnc_peer ? libcfs_nid2str(conn->gnc_peer->gnp_nid)
2631                                : "<?>",
2632                  kgnilnd_conn_state2str(conn));
2633
2634         CDEBUG(D_NET, "checking conn %p->%s timeout %d keepalive %d "
2635                       "rx_diff %lu tx_diff %lu\n",
2636                 conn, libcfs_nid2str(conn->gnc_peer->gnp_nid),
2637                 conn->gnc_timeout, GNILND_TO2KA(conn->gnc_timeout),
2638                 cfs_duration_sec(now - conn->gnc_last_rx_cq),
2639                 cfs_duration_sec(now - conn->gnc_last_tx));
2640
2641         timeout = cfs_time_seconds(conn->gnc_timeout);
2642         keepalive = cfs_time_seconds(GNILND_TO2KA(conn->gnc_timeout));
2643
2644         /* just in case our lack of RX msg processing is gumming up the works - give the
2645          * remove an extra chance */
2646
2647         newest_last_rx = GNILND_LASTRX(conn);
2648
2649         if (time_after_eq(now, newest_last_rx + timeout)) {
2650                 uint32_t level = D_CONSOLE|D_NETERROR;
2651
2652                 if (conn->gnc_peer->gnp_state == GNILND_PEER_DOWN) {
2653                         level = D_NET;
2654                 }
2655                         GNIDBG_CONN(level, conn,
2656                         "No gnilnd traffic received from %s for %lu "
2657                         "seconds, terminating connection. Is node down? ",
2658                         libcfs_nid2str(conn->gnc_peer->gnp_nid),
2659                         cfs_duration_sec(now - newest_last_rx));
2660                 return -ETIMEDOUT;
2661         }
2662
2663         /* we don't timeout on last_tx stalls - we are going to trust the
2664          * underlying network to let us know when sends are failing.
2665          * At worst, the peer will timeout our RX stamp and drop the connection
2666          * at that point. We'll then see his CLOSE or at worst his RX
2667          * stamp stop and drop the connection on our end */
2668
2669         if (time_after_eq(now, conn->gnc_last_tx + keepalive)) {
2670                 CDEBUG(D_NET, "sending NOOP -> %s (%p idle %lu(%lu)) "
2671                        "last %lu/%lu/%lu %lus/%lus/%lus\n",
2672                        libcfs_nid2str(conn->gnc_peer->gnp_nid), conn,
2673                        cfs_duration_sec(jiffies - conn->gnc_last_tx),
2674                        keepalive,
2675                        conn->gnc_last_noop_want, conn->gnc_last_noop_sent,
2676                        conn->gnc_last_noop_cq,
2677                        cfs_duration_sec(jiffies - conn->gnc_last_noop_want),
2678                        cfs_duration_sec(jiffies - conn->gnc_last_noop_sent),
2679                        cfs_duration_sec(jiffies - conn->gnc_last_noop_cq));
2680                 set_mb(conn->gnc_last_noop_want, jiffies);
2681                 atomic_inc(&conn->gnc_reaper_noop);
2682                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_NOOP_SEND))
2683                         return 0;
2684
2685                 tx = kgnilnd_new_tx_msg(GNILND_MSG_NOOP,
2686                                         lnet_nid_to_nid4(&conn->gnc_peer->gnp_net->gnn_ni->ni_nid));
2687                 if (tx == NULL)
2688                         return 0;
2689                 kgnilnd_queue_tx(conn, tx);
2690         }
2691
2692         return 0;
2693 }
2694
2695 /* needs write_lock on kgn_peer_conn_lock held */
2696 void
2697 kgnilnd_check_peer_timeouts_locked(kgn_peer_t *peer, struct list_head *todie,
2698                                     struct list_head *souls)
2699 {
2700         unsigned long           timeout;
2701         kgn_conn_t             *conn, *connN = NULL;
2702         kgn_tx_t               *tx, *txN;
2703         int                     rc = 0;
2704         int                     count = 0;
2705         int                     reconnect;
2706         int                     to_reconn;
2707         short                   releaseconn = 0;
2708         unsigned long           first_rx = 0;
2709         int                     purgatory_conn_cnt = 0;
2710
2711         CDEBUG(D_NET, "checking peer 0x%p->%s for timeouts; interval %lus\n",
2712                 peer, libcfs_nid2str(peer->gnp_nid),
2713                 peer->gnp_reconnect_interval);
2714
2715         timeout = cfs_time_seconds(max(*kgnilnd_tunables.kgn_timeout,
2716                                        GNILND_MIN_TIMEOUT));
2717
2718         conn = kgnilnd_find_conn_locked(peer);
2719         if (conn) {
2720                 /* if there is a valid conn, check the queues for timeouts */
2721                 rc = kgnilnd_check_conn_timeouts_locked(conn);
2722                 if (rc) {
2723                         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_RX_CLOSE_CLOSING)) {
2724                                 /* simulate a RX CLOSE after the timeout but before
2725                                  * the scheduler thread gets it */
2726                                 conn->gnc_close_recvd = GNILND_CLOSE_INJECT1;
2727                                 conn->gnc_peer_error = -ETIMEDOUT;
2728                         }
2729
2730                         if (*kgnilnd_tunables.kgn_to_reconn_disable &&
2731                             rc == -ETIMEDOUT) {
2732                                 peer->gnp_state = GNILND_PEER_TIMED_OUT;
2733                                 CDEBUG(D_WARNING, "%s conn timed out, will "
2734                                        "reconnect upon request from peer\n",
2735                                        libcfs_nid2str(conn->gnc_peer->gnp_nid));
2736                         }
2737                         /* Once we mark closed, any of the scheduler threads could
2738                          * get it and move through before we hit the fail loc code */
2739                         kgnilnd_close_conn_locked(conn, rc);
2740                 } else {
2741                         /* first_rx is used to decide when to release a conn from purgatory.
2742                          */
2743                         first_rx = conn->gnc_first_rx;
2744                 }
2745         }
2746
2747         /* now regardless of starting new conn, find tx on peer queue that
2748          * are old and smell bad - do this first so we don't trigger
2749          * reconnect on empty queue if we timeout all */
2750         list_for_each_entry_safe(tx, txN, &peer->gnp_tx_queue, tx_list) {
2751                 if (time_after_eq(jiffies, tx->tx_qtime + timeout)) {
2752                         if (count == 0) {
2753                                 LCONSOLE_INFO("could not send to %s due to connection"
2754                                        " setup failure after %lu seconds\n",
2755                                        libcfs_nid2str(peer->gnp_nid),
2756                                        cfs_duration_sec(jiffies - tx->tx_qtime));
2757                         }
2758                         kgnilnd_tx_del_state_locked(tx, peer, NULL,
2759                                                    GNILND_TX_ALLOCD);
2760                         list_add_tail(&tx->tx_list, todie);
2761                         count++;
2762                 }
2763         }
2764
2765         if (count || peer->gnp_connecting == GNILND_PEER_KILL) {
2766                 CDEBUG(D_NET, "canceling %d tx for peer 0x%p->%s\n",
2767                         count, peer, libcfs_nid2str(peer->gnp_nid));
2768                 /* if we nuked all the TX, stop peer connection attempt (if there is one..) */
2769                 if (list_empty(&peer->gnp_tx_queue) ||
2770                         peer->gnp_connecting == GNILND_PEER_KILL) {
2771                         /* we pass down todie to use a common function - but we know there are
2772                          * no TX to add */
2773                         kgnilnd_cancel_peer_connect_locked(peer, todie);
2774                 }
2775         }
2776
2777         /* Don't reconnect if we are still trying to clear out old conns.
2778          * This prevents us sending traffic on the new mbox before ensuring we are done
2779          * with the old one */
2780         reconnect = (peer->gnp_state == GNILND_PEER_UP) &&
2781                     (atomic_read(&peer->gnp_dirty_eps) == 0);
2782
2783         /* fast reconnect after a timeout */
2784         to_reconn = !conn &&
2785                     (peer->gnp_last_errno == -ETIMEDOUT) &&
2786                     *kgnilnd_tunables.kgn_fast_reconn;
2787
2788         /* if we are not connected and there are tx on the gnp_tx_queue waiting
2789          * to be sent, we'll check the reconnect interval and fire up a new
2790          * connection request */
2791
2792         if (reconnect &&
2793             (peer->gnp_connecting == GNILND_PEER_IDLE) &&
2794             (time_after_eq(jiffies, peer->gnp_reconnect_time)) &&
2795             (!list_empty(&peer->gnp_tx_queue) || to_reconn)) {
2796
2797                 CDEBUG(D_NET, "starting connect to %s\n",
2798                         libcfs_nid2str(peer->gnp_nid));
2799                 LASSERTF(peer->gnp_connecting == GNILND_PEER_IDLE,
2800                          "Peer was idle and we have a write_lock, state issue %d\n",
2801                          peer->gnp_connecting);
2802
2803                 peer->gnp_connecting = GNILND_PEER_CONNECT;
2804                 kgnilnd_peer_addref(peer); /* extra ref for connd */
2805
2806                 spin_lock(&peer->gnp_net->gnn_dev->gnd_connd_lock);
2807                 list_add_tail(&peer->gnp_connd_list,
2808                               &peer->gnp_net->gnn_dev->gnd_connd_peers);
2809                 spin_unlock(&peer->gnp_net->gnn_dev->gnd_connd_lock);
2810
2811                 kgnilnd_schedule_dgram(peer->gnp_net->gnn_dev);
2812         }
2813
2814         /* fail_loc to allow us to delay release of purgatory */
2815         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_PURG_REL_DELAY))
2816                 return;
2817
2818         /* This check allows us to verify that the new conn is actually being used. This allows us to
2819          * pull the old conns out of purgatory if they have actually seen traffic.
2820          * We only release a conn from purgatory during stack reset, admin command, or when a peer reconnects
2821          */
2822         if (first_rx &&
2823                 time_after(jiffies, first_rx + cfs_time_seconds(*kgnilnd_tunables.kgn_hardware_timeout))) {
2824                 CDEBUG(D_INFO, "We can release peer %s conn's from purgatory %lu\n",
2825                         libcfs_nid2str(peer->gnp_nid), first_rx + cfs_time_seconds(*kgnilnd_tunables.kgn_hardware_timeout));
2826                 releaseconn = 1;
2827         }
2828
2829         list_for_each_entry_safe (conn, connN, &peer->gnp_conns, gnc_list) {
2830         /* check for purgatory timeouts */
2831                 if (conn->gnc_in_purgatory) {
2832                         /* We cannot detach this conn from purgatory if it has not been closed so we reschedule it
2833                          * that way the next time we check it we can detach it from purgatory
2834                          */
2835
2836                         if (conn->gnc_state != GNILND_CONN_DONE) {
2837                                 /* Skip over conns that are currently not DONE. If they arent already scheduled
2838                                  * for completion something in the state machine is broken.
2839                                  */
2840                                 continue;
2841                         }
2842
2843                         /* We only detach a conn that is in purgatory if we have received a close message,
2844                          * we have a new valid connection that has successfully received data, or an admin
2845                          * command tells us we need to detach.
2846                          */
2847
2848                         if (conn->gnc_close_recvd || releaseconn || conn->gnc_needs_detach) {
2849                                 unsigned long   waiting;
2850
2851                                 waiting = (long) jiffies - conn->gnc_last_rx_cq;
2852
2853                                 /* C.E: The remote peer is expected to close the
2854                                  * connection (see kgnilnd_check_conn_timeouts)
2855                                  * via the reaper thread and nuke out the MDD and
2856                                  * FMA resources after conn->gnc_timeout has expired
2857                                  * without an FMA RX */
2858                                 CDEBUG(D_NET, "Reconnected to %s in %lds or admin forced detach, dropping "
2859                                         " held resources\n",
2860                                         libcfs_nid2str(conn->gnc_peer->gnp_nid),
2861                                         cfs_duration_sec(waiting));
2862
2863                                 kgnilnd_detach_purgatory_locked(conn, souls);
2864                         } else {
2865                                 purgatory_conn_cnt++;
2866                         }
2867                 }
2868         }
2869
2870         /* If we have too many connections in purgatory we could run out of
2871          * resources. Limit the number of connections to a tunable number,
2872          * clean up to the minimum all in one fell swoop... there are
2873          * situations where dvs will retry tx's and we can eat up several
2874          * hundread connection requests at once.
2875          */
2876         if (purgatory_conn_cnt > *kgnilnd_tunables.kgn_max_purgatory) {
2877                 list_for_each_entry_safe(conn, connN, &peer->gnp_conns,
2878                                          gnc_list) {
2879                         if (conn->gnc_in_purgatory &&
2880                             conn->gnc_state == GNILND_CONN_DONE) {
2881                                 CDEBUG(D_NET, "Dropping Held resource due to"
2882                                               " resource limits being hit\n");
2883                                 kgnilnd_detach_purgatory_locked(conn, souls);
2884
2885                                 if (purgatory_conn_cnt-- <
2886                                     *kgnilnd_tunables.kgn_max_purgatory)
2887                                         break;
2888                         }
2889                 }
2890         }
2891 }
2892
2893 void
2894 kgnilnd_reaper_check(int idx)
2895 {
2896         struct list_head  *peers = &kgnilnd_data.kgn_peers[idx];
2897         struct list_head  *ctmp, *ctmpN;
2898         LIST_HEAD(geriatrics);
2899         LIST_HEAD(souls);
2900
2901         write_lock(&kgnilnd_data.kgn_peer_conn_lock);
2902
2903         list_for_each_safe(ctmp, ctmpN, peers) {
2904                 kgn_peer_t        *peer = NULL;
2905
2906                 /* don't timeout stuff if the network is mucked or shutting down */
2907                 if (kgnilnd_check_hw_quiesce()) {
2908                         break;
2909                 }
2910                 peer = list_entry(ctmp, kgn_peer_t, gnp_list);
2911
2912                 kgnilnd_check_peer_timeouts_locked(peer, &geriatrics, &souls);
2913         }
2914
2915         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
2916
2917         kgnilnd_txlist_done(&geriatrics, -EHOSTUNREACH);
2918         kgnilnd_release_purgatory_list(&souls);
2919 }
2920
2921 void
2922 kgnilnd_update_reaper_timeout(long timeout)
2923 {
2924         LASSERT(timeout > 0);
2925
2926         spin_lock(&kgnilnd_data.kgn_reaper_lock);
2927
2928         if (timeout < kgnilnd_data.kgn_new_min_timeout)
2929                 kgnilnd_data.kgn_new_min_timeout = timeout;
2930
2931         spin_unlock(&kgnilnd_data.kgn_reaper_lock);
2932 }
2933
2934 static void
2935 kgnilnd_reaper_poke_with_stick(cfs_timer_cb_arg_t arg)
2936 {
2937         wake_up(&kgnilnd_data.kgn_reaper_waitq);
2938 }
2939
2940 int
2941 kgnilnd_reaper(void *arg)
2942 {
2943         long               timeout;
2944         int                i;
2945         int                hash_index = 0;
2946         unsigned long      next_check_time = jiffies;
2947         long               current_min_timeout = MAX_SCHEDULE_TIMEOUT;
2948         struct timer_list  timer;
2949         DEFINE_WAIT(wait);
2950
2951         /* all gnilnd threads need to run fairly urgently */
2952         set_user_nice(current, *kgnilnd_tunables.kgn_nice);
2953         spin_lock(&kgnilnd_data.kgn_reaper_lock);
2954
2955         while (!kgnilnd_data.kgn_shutdown) {
2956                 /* I wake up every 'p' seconds to check for timeouts on some
2957                  * more peers.  I try to check every connection 'n' times
2958                  * within the global minimum of all keepalive and timeout
2959                  * intervals, to ensure I attend to every connection within
2960                  * (n+1)/n times its timeout intervals. */
2961                 const int     p = GNILND_REAPER_THREAD_WAKE;
2962                 const int     n = GNILND_REAPER_NCHECKS;
2963                 int           chunk;
2964                 /* to quiesce or to not quiesce, that is the question */
2965                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
2966                         spin_unlock(&kgnilnd_data.kgn_reaper_lock);
2967                         KGNILND_SPIN_QUIESCE;
2968                         spin_lock(&kgnilnd_data.kgn_reaper_lock);
2969                 }
2970
2971                 /* careful with the jiffy wrap... */
2972                 timeout = (long)(next_check_time - jiffies);
2973
2974                 if (timeout > 0) {
2975                         prepare_to_wait(&kgnilnd_data.kgn_reaper_waitq, &wait,
2976                                         TASK_INTERRUPTIBLE);
2977                         spin_unlock(&kgnilnd_data.kgn_reaper_lock);
2978                         cfs_timer_setup(&timer, kgnilnd_reaper_poke_with_stick,
2979                                         next_check_time, 0);
2980                         mod_timer(&timer, (long) jiffies + timeout);
2981
2982                         /* check flag variables before committing */
2983                         if (!kgnilnd_data.kgn_shutdown &&
2984                             !kgnilnd_data.kgn_quiesce_trigger) {
2985                                 CDEBUG(D_INFO, "schedule timeout %ld (%lu sec)\n",
2986                                        timeout, cfs_duration_sec(timeout));
2987                                 schedule();
2988                                 CDEBUG(D_INFO, "awake after schedule\n");
2989                         }
2990
2991                         timer_delete_sync(&timer);
2992                         spin_lock(&kgnilnd_data.kgn_reaper_lock);
2993                         finish_wait(&kgnilnd_data.kgn_reaper_waitq, &wait);
2994                         continue;
2995                 }
2996
2997                 /* new_min_timeout is set from the conn timeouts and keepalive
2998                  * this should end up with a min timeout of
2999                  * GNILND_TIMEOUT2KEEPALIVE(t) or roughly LND_TIMEOUT/2 */
3000                 if (kgnilnd_data.kgn_new_min_timeout < current_min_timeout) {
3001                         current_min_timeout = kgnilnd_data.kgn_new_min_timeout;
3002                         CDEBUG(D_NET, "Set new min timeout %ld\n",
3003                                current_min_timeout);
3004                 }
3005
3006                 spin_unlock(&kgnilnd_data.kgn_reaper_lock);
3007
3008                 /* Compute how many table entries to check now so I get round
3009                  * the whole table fast enough given that I do this at fixed
3010                  * intervals of 'p' seconds) */
3011                 chunk = *kgnilnd_tunables.kgn_peer_hash_size;
3012                 if (kgnilnd_data.kgn_new_min_timeout > n * p)
3013                         chunk = (chunk * n * p) /
3014                                 kgnilnd_data.kgn_new_min_timeout;
3015                 if (chunk == 0)
3016                         chunk = 1;
3017                 for (i = 0; i < chunk; i++) {
3018                         kgnilnd_reaper_check(hash_index);
3019                         hash_index = (hash_index + 1) %
3020                                 *kgnilnd_tunables.kgn_peer_hash_size;
3021                 }
3022                 next_check_time = (long) jiffies + cfs_time_seconds(p);
3023                 CDEBUG(D_INFO, "next check at %lu or in %d sec\n", next_check_time, p);
3024
3025                 spin_lock(&kgnilnd_data.kgn_reaper_lock);
3026         }
3027
3028         spin_unlock(&kgnilnd_data.kgn_reaper_lock);
3029
3030         kgnilnd_thread_fini();
3031         return 0;
3032 }
3033
3034 int
3035 kgnilnd_recv_bte_get(kgn_tx_t *tx) {
3036         unsigned niov, offset, nob;
3037         struct bio_vec *kiov;
3038         struct lnet_msg *lntmsg = tx->tx_lntmsg[0];
3039         kgnilnd_parse_lnet_rdma(lntmsg, &niov, &offset, &nob, &kiov, tx->tx_nob_rdma);
3040
3041         if (kiov != NULL) {
3042                 lnet_copy_flat2kiov(
3043                         niov, kiov, offset,
3044                         nob,
3045                         tx->tx_buffer_copy + tx->tx_offset, 0, nob);
3046         } else {
3047                 memcpy(tx->tx_buffer, tx->tx_buffer_copy + tx->tx_offset, nob);
3048         }
3049         return 0;
3050 }
3051
3052
3053 int
3054 kgnilnd_check_rdma_cq(kgn_device_t *dev)
3055 {
3056         gni_return_t           rrc;
3057         gni_post_descriptor_t *desc;
3058         __u64                  event_data;
3059         kgn_tx_ev_id_t         ev_id;
3060         char                   err_str[256];
3061         int                    should_retry, rc;
3062         long                   num_processed = 0;
3063         kgn_conn_t            *conn = NULL;
3064         kgn_tx_t              *tx = NULL;
3065         kgn_rdma_desc_t       *rdesc;
3066         unsigned int           rnob;
3067         __u64                  rcookie;
3068
3069         for (;;) {
3070                 /* make sure we don't keep looping if we need to reset */
3071                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
3072                         return num_processed;
3073                 }
3074                 rc = kgnilnd_mutex_trylock(&dev->gnd_cq_mutex);
3075                 if (!rc) {
3076                         /* we didn't get the mutex, so return that there is still work
3077                          * to be done */
3078                         return 1;
3079                 }
3080                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DELAY_RDMA)) {
3081                         /* a bit gross - but we need a good way to test for
3082                          * delayed RDMA completions and the easiest way to do
3083                          * that is to delay the RDMA CQ events */
3084                         rrc = GNI_RC_NOT_DONE;
3085                 } else {
3086                         rrc = kgnilnd_cq_get_event(dev->gnd_snd_rdma_cqh, &event_data);
3087                 }
3088
3089                 if (rrc == GNI_RC_NOT_DONE) {
3090                         kgnilnd_gl_mutex_unlock(&dev->gnd_cq_mutex);
3091                         CDEBUG(D_INFO, "SEND RDMA CQ %d empty processed %ld\n",
3092                                dev->gnd_id, num_processed);
3093                         return num_processed;
3094                 }
3095                 dev->gnd_sched_alive = jiffies;
3096                 num_processed++;
3097
3098                 LASSERTF(!GNI_CQ_OVERRUN(event_data),
3099                         "this is bad, somehow our credits didn't protect us"
3100                         " from CQ overrun\n");
3101                 LASSERTF(GNI_CQ_GET_TYPE(event_data) == GNI_CQ_EVENT_TYPE_POST,
3102                         "rrc %d, GNI_CQ_GET_TYPE(%#llx) = %#llx\n", rrc,
3103                         event_data, GNI_CQ_GET_TYPE(event_data));
3104
3105                 rrc = kgnilnd_get_completed(dev->gnd_snd_rdma_cqh, event_data,
3106                                             &desc);
3107                 kgnilnd_gl_mutex_unlock(&dev->gnd_cq_mutex);
3108
3109                 /* XXX Nic: Need better error handling here... */
3110                 LASSERTF((rrc == GNI_RC_SUCCESS) ||
3111                           (rrc == GNI_RC_TRANSACTION_ERROR),
3112                          "rrc %d\n", rrc);
3113
3114                 ev_id.txe_cookie = desc->post_id;
3115
3116                 kgnilnd_validate_tx_ev_id(&ev_id, &tx, &conn);
3117
3118                 if (conn == NULL || tx == NULL) {
3119                         /* either conn or tx was already nuked and this is a "late"
3120                          * completion, so drop it */
3121                         continue;
3122                 }
3123
3124                 GNITX_ASSERTF(tx, tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE ||
3125                         tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE ||
3126                         tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV ||
3127                         tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV,
3128                         "tx %px with type %d\n", tx, tx->tx_msg.gnm_type);
3129
3130                 GNIDBG_TX(D_NET, tx, "RDMA completion for %d bytes", tx->tx_nob);
3131
3132                 if (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV) {
3133                         lnet_set_reply_msg_len(NULL, tx->tx_lntmsg[1],
3134                                                tx->tx_msg.gnm_u.completion.gncm_retval);
3135                 }
3136
3137                 rc = 0;
3138                 if (tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV && desc->status == GNI_RC_SUCCESS) {
3139                         if (tx->tx_buffer_copy != NULL)
3140                                 kgnilnd_recv_bte_get(tx);
3141                         rc = kgnilnd_verify_rdma_cksum(tx, tx->tx_putinfo.gnpam_payload_cksum, tx->tx_nob_rdma);
3142                 }
3143
3144                 if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE_REV && desc->status == GNI_RC_SUCCESS) {
3145                         if (tx->tx_buffer_copy != NULL)
3146                                 kgnilnd_recv_bte_get(tx);
3147                         rc = kgnilnd_verify_rdma_cksum(tx, tx->tx_getinfo.gngm_payload_cksum, tx->tx_nob_rdma);
3148                 }
3149
3150                 /* remove from rdmaq */
3151                 kgnilnd_conn_mutex_lock(&conn->gnc_rdma_mutex);
3152                 spin_lock(&conn->gnc_list_lock);
3153                 kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
3154                 spin_unlock(&conn->gnc_list_lock);
3155                 kgnilnd_conn_mutex_unlock(&conn->gnc_rdma_mutex);
3156
3157                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_RDMA_CQ_ERROR)) {
3158                         event_data = 1LL << 48;
3159                         rc = 1;
3160                 }
3161
3162                 if (likely(desc->status == GNI_RC_SUCCESS) && rc == 0) {
3163                         atomic_inc(&dev->gnd_rdma_ntx);
3164                         atomic64_add(tx->tx_nob, &dev->gnd_rdma_txbytes);
3165                         /* transaction succeeded, add into fmaq */
3166                         kgnilnd_queue_tx(conn, tx);
3167                         kgnilnd_peer_alive(conn->gnc_peer);
3168
3169                         /* drop ref from kgnilnd_validate_tx_ev_id */
3170                         kgnilnd_admin_decref(conn->gnc_tx_in_use);
3171                         kgnilnd_conn_decref(conn);
3172
3173                         continue;
3174                 }
3175
3176                 /* fall through to the TRANSACTION_ERROR case */
3177                 tx->tx_retrans++;
3178
3179                 /* get stringified version for log messages */
3180                 kgnilnd_cq_error_str(event_data, &err_str, 256);
3181                 kgnilnd_cq_error_recoverable(event_data, &should_retry);
3182
3183                 /* make sure we are not off in the weeds with this tx */
3184                 if (tx->tx_retrans >
3185                         *kgnilnd_tunables.kgn_max_retransmits) {
3186                         GNIDBG_TX(D_NETERROR, tx,
3187                                "giving up on TX, too many retries", NULL);
3188                         should_retry = 0;
3189                 }
3190
3191                 GNIDBG_TX(D_NETERROR, tx, "RDMA %s error (%s)",
3192                         should_retry ? "transient" : "unrecoverable", err_str);
3193
3194                 if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_DONE ||
3195                     tx->tx_msg.gnm_type == GNILND_MSG_GET_DONE_REV) {
3196                         rdesc    = &tx->tx_putinfo.gnpam_desc;
3197                         rnob     = tx->tx_putinfo.gnpam_desc.gnrd_nob;
3198                         rcookie  = tx->tx_putinfo.gnpam_dst_cookie;
3199                 } else {
3200                         rdesc    = &tx->tx_getinfo.gngm_desc;
3201                         rnob     = tx->tx_lntmsg[0]->msg_len;
3202                         rcookie  = tx->tx_getinfo.gngm_cookie;
3203                 }
3204
3205                 if (should_retry) {
3206                         kgnilnd_rdma(tx,
3207                                      tx->tx_msg.gnm_type,
3208                                      rdesc,
3209                                      rnob, rcookie);
3210                 } else {
3211                         kgnilnd_nak_rdma(conn,
3212                                          tx->tx_msg.gnm_type,
3213                                          -EFAULT,
3214                                          rcookie,
3215                                          tx->tx_msg.gnm_srcnid);
3216                         kgnilnd_tx_done(tx, -GNILND_NOPURG);
3217                         kgnilnd_close_conn(conn, -ECOMM);
3218                 }
3219
3220                 /* drop ref from kgnilnd_validate_tx_ev_id */
3221                 kgnilnd_admin_decref(conn->gnc_tx_in_use);
3222                 kgnilnd_conn_decref(conn);
3223         }
3224 }
3225
3226 int
3227 kgnilnd_check_fma_send_cq(kgn_device_t *dev)
3228 {
3229         gni_return_t           rrc;
3230         __u64                  event_data;
3231         kgn_tx_ev_id_t         ev_id;
3232         kgn_tx_t              *tx = NULL;
3233         kgn_conn_t            *conn = NULL;
3234         int                    queued_fma, saw_reply, rc;
3235         long                   num_processed = 0;
3236         struct list_head      *ctmp, *ctmpN;
3237
3238         for (;;) {
3239                 /* make sure we don't keep looping if we need to reset */
3240                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
3241                         return num_processed;
3242                 }
3243
3244                 rc = kgnilnd_mutex_trylock(&dev->gnd_cq_mutex);
3245                 if (!rc) {
3246                         /* we didn't get the mutex, so return that there is still work
3247                          * to be done */
3248                         return 1;
3249                 }
3250
3251                 rrc = kgnilnd_cq_get_event(dev->gnd_snd_fma_cqh, &event_data);
3252                 kgnilnd_gl_mutex_unlock(&dev->gnd_cq_mutex);
3253
3254                 if (rrc == GNI_RC_NOT_DONE) {
3255                         CDEBUG(D_INFO,
3256                                "SMSG send CQ %d not ready (data %#llx) "
3257                                "processed %ld\n", dev->gnd_id, event_data,
3258                                num_processed);
3259
3260                         if (num_processed > 0) {
3261                                 spin_lock(&dev->gnd_lock);
3262                                 if (!list_empty(&dev->gnd_delay_conns)) {
3263                                         list_for_each_safe(ctmp, ctmpN, &dev->gnd_delay_conns) {
3264                                                 conn = list_entry(ctmp, kgn_conn_t, gnc_delaylist);
3265                                                 list_del_init(&conn->gnc_delaylist);
3266                                                 CDEBUG(D_NET, "Moving Conn %p from delay queue to ready_queue\n", conn);
3267                                                 kgnilnd_schedule_conn_nolock(conn);
3268                                         }
3269                                         spin_unlock(&dev->gnd_lock);
3270                                         kgnilnd_schedule_device(dev);
3271                                 } else {
3272                                         spin_unlock(&dev->gnd_lock);
3273                                 }
3274                         }
3275                         return num_processed;
3276                 }
3277
3278                 dev->gnd_sched_alive = jiffies;
3279                 num_processed++;
3280
3281                 LASSERTF(!GNI_CQ_OVERRUN(event_data),
3282                         "this is bad, somehow our credits didn't "
3283                         "protect us from CQ overrun\n");
3284                 LASSERTF(GNI_CQ_GET_TYPE(event_data) == GNI_CQ_EVENT_TYPE_SMSG,
3285                         "rrc %d, GNI_CQ_GET_TYPE(%#llx) = %#llx\n", rrc,
3286                         event_data, GNI_CQ_GET_TYPE(event_data));
3287
3288                 /* if SMSG couldn't handle an error, time for conn to die */
3289                 if (unlikely(rrc == GNI_RC_TRANSACTION_ERROR)) {
3290                         char            err_str[256];
3291
3292                         /* need to take the write_lock to ensure atomicity
3293                          * on the conn state if we need to close it */
3294                         write_lock(&kgnilnd_data.kgn_peer_conn_lock);
3295                         conn = kgnilnd_cqid2conn_locked(GNI_CQ_GET_INST_ID(event_data));
3296                         if (conn == NULL) {
3297                                 /* Conn was destroyed? */
3298                                 CDEBUG(D_NET,
3299                                         "SMSG CQID lookup %#llx failed\n",
3300                                         GNI_CQ_GET_INST_ID(event_data));
3301                                 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
3302                                 continue;
3303                         }
3304
3305                         kgnilnd_cq_error_str(event_data, &err_str, 256);
3306                         CNETERR("SMSG send error to %s: rc %d (%s)\n",
3307                                libcfs_nid2str(conn->gnc_peer->gnp_nid),
3308                                rrc, err_str);
3309                         kgnilnd_close_conn_locked(conn, -ECOMM);
3310
3311                         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
3312
3313                         /* no need to process rest of this tx -
3314                          * it is getting canceled */
3315                         continue;
3316                 }
3317
3318                 /* fall through to GNI_RC_SUCCESS case */
3319                 ev_id.txe_smsg_id = GNI_CQ_GET_MSG_ID(event_data);
3320
3321                 kgnilnd_validate_tx_ev_id(&ev_id, &tx, &conn);
3322                 if (conn == NULL || tx == NULL) {
3323                         /* either conn or tx was already nuked and this is a "late"
3324                          * completion, so drop it */
3325                         continue;
3326                 }
3327
3328                 tx->tx_conn->gnc_last_tx_cq = jiffies;
3329                 if (tx->tx_msg.gnm_type == GNILND_MSG_NOOP) {
3330                         set_mb(conn->gnc_last_noop_cq, jiffies);
3331                 }
3332
3333                 /* lock tx_list_state and tx_state */
3334                 kgnilnd_conn_mutex_lock(&conn->gnc_smsg_mutex);
3335                 spin_lock(&tx->tx_conn->gnc_list_lock);
3336
3337                 GNITX_ASSERTF(tx, tx->tx_list_state == GNILND_TX_LIVE_FMAQ,
3338                                 "state not GNILND_TX_LIVE_FMAQ", NULL);
3339                 GNITX_ASSERTF(tx, tx->tx_state & GNILND_TX_WAITING_COMPLETION,
3340                         "not waiting for completion", NULL);
3341
3342                 GNIDBG_TX(D_NET, tx, "SMSG complete tx_state %x rc %d",
3343                         tx->tx_state, rrc);
3344
3345                 tx->tx_state &= ~GNILND_TX_WAITING_COMPLETION;
3346
3347                 /* This will trigger other FMA sends that were
3348                  * pending this completion */
3349                 queued_fma = !list_empty(&tx->tx_conn->gnc_fmaq);
3350
3351                 /* we either did not expect reply or we already got it */
3352                 saw_reply = !(tx->tx_state & GNILND_TX_WAITING_REPLY);
3353
3354                 spin_unlock(&tx->tx_conn->gnc_list_lock);
3355                 kgnilnd_conn_mutex_unlock(&conn->gnc_smsg_mutex);
3356
3357                 if (queued_fma) {
3358                         CDEBUG(D_NET, "scheduling conn 0x%p->%s for fmaq\n",
3359                                conn,
3360                                libcfs_nid2str(conn->gnc_peer->gnp_nid));
3361                         kgnilnd_schedule_conn(conn);
3362                 }
3363
3364                 /* If saw_reply is false as soon as gnc_list_lock is dropped the tx could be nuked
3365                  * If saw_reply is true we know that the tx is safe to use as the other thread
3366                  * is already finished with it.
3367                  */
3368
3369                 if (saw_reply) {
3370                         /* no longer need to track on the live_fmaq */
3371                         kgnilnd_tx_del_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_ALLOCD);
3372
3373                         if (tx->tx_state & GNILND_TX_PENDING_RDMA) {
3374                                 /* we already got reply & were waiting for
3375                                  * completion of initial send */
3376                                 /* to initiate RDMA transaction */
3377                                 GNIDBG_TX(D_NET, tx,
3378                                          "Pending RDMA 0x%p type 0x%02x",
3379                                          tx->tx_msg.gnm_type);
3380                                 tx->tx_state &= ~GNILND_TX_PENDING_RDMA;
3381                                 rc = kgnilnd_send_mapped_tx(tx, 0);
3382                                 GNITX_ASSERTF(tx, rc == 0, "RDMA send failed: %d\n", rc);
3383                         } else {
3384                                 /* we are done with this tx */
3385                                 GNIDBG_TX(D_NET, tx,
3386                                          "Done with tx type 0x%02x",
3387                                          tx->tx_msg.gnm_type);
3388                                 kgnilnd_tx_done(tx, tx->tx_rc);
3389                         }
3390                 }
3391
3392                 /* drop ref from kgnilnd_validate_tx_ev_id */
3393                 kgnilnd_admin_decref(conn->gnc_tx_in_use);
3394                 kgnilnd_conn_decref(conn);
3395
3396                 /* if we are waiting for a REPLY, we'll handle the tx then */
3397         } /* end for loop */
3398 }
3399
3400 int
3401 kgnilnd_check_fma_rcv_cq(kgn_device_t *dev)
3402 {
3403         kgn_conn_t         *conn;
3404         gni_return_t        rrc;
3405         __u64               event_data;
3406         long                num_processed = 0;
3407         struct list_head   *conns;
3408         struct list_head   *tmp;
3409         int                 rc;
3410
3411         for (;;) {
3412                 /* make sure we don't keep looping if we need to reset */
3413                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
3414                         return num_processed;
3415                 }
3416
3417                 rc = kgnilnd_mutex_trylock(&dev->gnd_cq_mutex);
3418                 if (!rc) {
3419                         /* we didn't get the mutex, so return that there is still work
3420                          * to be done */
3421                         return 1;
3422                 }
3423                 rrc = kgnilnd_cq_get_event(dev->gnd_rcv_fma_cqh, &event_data);
3424                 kgnilnd_gl_mutex_unlock(&dev->gnd_cq_mutex);
3425
3426                 if (rrc == GNI_RC_NOT_DONE) {
3427                         CDEBUG(D_INFO, "SMSG RX CQ %d empty data %#llx "
3428                                 "processed %ld\n",
3429                                 dev->gnd_id, event_data, num_processed);
3430                         return num_processed;
3431                 }
3432                 dev->gnd_sched_alive = jiffies;
3433                 num_processed++;
3434
3435                 /* this is the only CQ that can really handle transient
3436                  * CQ errors */
3437                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_CQ_GET_EVENT)) {
3438                         rrc = cfs_fail_val ? cfs_fail_val
3439                                            : GNI_RC_ERROR_RESOURCE;
3440                         if (rrc == GNI_RC_ERROR_RESOURCE) {
3441                                 /* set overrun too */
3442                                 event_data |= (1UL << 63);
3443                                 LASSERTF(GNI_CQ_OVERRUN(event_data),
3444                                          "(1UL << 63) is no longer the bit to set to indicate CQ_OVERRUN\n");
3445                         }
3446                 }
3447                 /* sender should get error event too and take care
3448                 of failed transaction by re-transmitting */
3449                 if (rrc == GNI_RC_TRANSACTION_ERROR) {
3450                         CDEBUG(D_NET, "SMSG RX CQ error %#llx\n", event_data);
3451                         continue;
3452                 }
3453
3454                 if (likely(!GNI_CQ_OVERRUN(event_data))) {
3455                         read_lock(&kgnilnd_data.kgn_peer_conn_lock);
3456                         conn = kgnilnd_cqid2conn_locked(
3457                                                  GNI_CQ_GET_INST_ID(event_data));
3458                         if (conn == NULL) {
3459                                 CDEBUG(D_NET, "SMSG RX CQID lookup %llu "
3460                                         "failed, dropping event %#llx\n",
3461                                         GNI_CQ_GET_INST_ID(event_data),
3462                                         event_data);
3463                         } else {
3464                                 CDEBUG(D_NET, "SMSG RX: CQID %llu "
3465                                        "conn %p->%s\n",
3466                                         GNI_CQ_GET_INST_ID(event_data),
3467                                         conn, conn->gnc_peer ?
3468                                         libcfs_nid2str(conn->gnc_peer->gnp_nid) :
3469                                         "<?>");
3470
3471                                 conn->gnc_last_rx_cq = jiffies;
3472
3473                                 /* stash first rx so we can clear out purgatory.
3474                                  */
3475                                 if (conn->gnc_first_rx == 0) {
3476                                         conn->gnc_first_rx = jiffies;
3477                                 }
3478                                 kgnilnd_peer_alive(conn->gnc_peer);
3479                                 kgnilnd_schedule_conn(conn);
3480                         }
3481                         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
3482                         continue;
3483                 }
3484
3485                 /* FMA CQ has overflowed: check ALL conns */
3486                 CNETERR("SMSG RX CQ overflow: scheduling ALL "
3487                        "conns on device %d\n", dev->gnd_id);
3488
3489                 for (rc = 0; rc < *kgnilnd_tunables.kgn_peer_hash_size; rc++) {
3490
3491                         read_lock(&kgnilnd_data.kgn_peer_conn_lock);
3492                         conns = &kgnilnd_data.kgn_conns[rc];
3493
3494                         list_for_each(tmp, conns) {
3495                                 conn = list_entry(tmp, kgn_conn_t,
3496                                                   gnc_hashlist);
3497
3498                                 if (conn->gnc_device == dev) {
3499                                         kgnilnd_schedule_conn(conn);
3500                                         conn->gnc_last_rx_cq = jiffies;
3501                                 }
3502                         }
3503
3504                         /* don't block write lockers for too long... */
3505                         read_unlock(&kgnilnd_data.kgn_peer_conn_lock);
3506                 }
3507         }
3508 }
3509
3510 /* try_map_if_full should only be used when processing TX from list of
3511  * backlog TX waiting on mappings to free up
3512  *
3513  * Return Codes:
3514  *  try_map_if_full = 0: 0 (sent or queued), (-|+)errno failure of kgnilnd_sendmsg
3515  *  try_map_if_full = 1: 0 (sent), -ENOMEM for caller to requeue, (-|+)errno failure of kgnilnd_sendmsg */
3516
3517 int
3518 kgnilnd_send_mapped_tx(kgn_tx_t *tx, int try_map_if_full)
3519 {
3520         /* slight bit of race if multiple people calling, but at worst we'll have
3521          * order altered just a bit... which would not be determenistic anyways */
3522         int     rc = atomic_read(&tx->tx_conn->gnc_device->gnd_nq_map);
3523
3524         GNIDBG_TX(D_NET, tx, "try %d nq_map %d", try_map_if_full, rc);
3525
3526         /* We know that we have a GART reservation that should guarantee forward progress.
3527          * This means we don't need to take any extraordinary efforts if we are failing
3528          * mappings here - even if we are holding a very small number of these. */
3529
3530         if (try_map_if_full || (rc == 0)) {
3531                 rc = kgnilnd_map_buffer(tx);
3532         }
3533
3534         /* rc should be 0 if we mapped successfully here, if non-zero
3535          * we are queueing */
3536         if (rc != 0) {
3537                 /* if try_map_if_full set, they handle requeuing */
3538                 if (unlikely(try_map_if_full)) {
3539                         RETURN(rc);
3540                 } else {
3541                         spin_lock(&tx->tx_conn->gnc_device->gnd_lock);
3542                         kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 1);
3543                         spin_unlock(&tx->tx_conn->gnc_device->gnd_lock);
3544                         /* make sure we wake up sched to run this */
3545                         kgnilnd_schedule_device(tx->tx_conn->gnc_device);
3546                         /* return 0 as this is now queued for later sending */
3547                         RETURN(0);
3548                 }
3549         }
3550
3551         switch (tx->tx_msg.gnm_type) {
3552         default:
3553                 LBUG();
3554                 break;
3555         /* GET_REQ and PUT_ACK are outbound messages sending our mapping key to
3556          * remote node where the RDMA will be started
3557          * Special case -EAGAIN logic - this should just queued as if the mapping couldn't
3558          * be satisified. The rest of the errors are "hard" errors that require
3559          * upper layers to handle themselves.
3560          * If kgnilnd_post_rdma returns a resource error, kgnilnd_rdma will put
3561          * the tx back on the TX_MAPQ. When this tx is pulled back off the MAPQ,
3562          * it's gnm_type will now be GNILND_MSG_PUT_DONE or
3563          * GNILND_MSG_GET_DONE_REV.
3564          */
3565         case GNILND_MSG_GET_REQ:
3566                 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_key = tx->tx_map_key;
3567                 tx->tx_msg.gnm_u.get.gngm_cookie = tx->tx_id.txe_cookie;
3568                 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_addr = (__u64)((unsigned long)tx->tx_buffer);
3569                 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_nob = tx->tx_nob;
3570                 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3571                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_GET_REQ_AGAIN)) {
3572                         tx->tx_state |= GNILND_TX_FAIL_SMSG;
3573                 }
3574                 /* redirect to FMAQ on failure, no need to infinite loop here in MAPQ */
3575                 rc = kgnilnd_sendmsg(tx, NULL, 0, &tx->tx_conn->gnc_list_lock, GNILND_TX_FMAQ);
3576                 break;
3577         case GNILND_MSG_PUT_ACK:
3578                 tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_key = tx->tx_map_key;
3579                 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3580                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_PUT_ACK_AGAIN)) {
3581                         tx->tx_state |= GNILND_TX_FAIL_SMSG;
3582                 }
3583                 /* redirect to FMAQ on failure, no need to infinite loop here in MAPQ */
3584                 rc = kgnilnd_sendmsg(tx, NULL, 0, &tx->tx_conn->gnc_list_lock, GNILND_TX_FMAQ);
3585                 break;
3586
3587         /* PUT_REQ and GET_DONE are where we do the actual RDMA */
3588         case GNILND_MSG_PUT_DONE:
3589         case GNILND_MSG_PUT_REQ:
3590                 rc = kgnilnd_rdma(tx, GNILND_MSG_PUT_DONE,
3591                              &tx->tx_putinfo.gnpam_desc,
3592                              tx->tx_putinfo.gnpam_desc.gnrd_nob,
3593                              tx->tx_putinfo.gnpam_dst_cookie);
3594                 RETURN(try_map_if_full ? rc : 0);
3595                 break;
3596         case GNILND_MSG_GET_DONE:
3597                 rc = kgnilnd_rdma(tx, GNILND_MSG_GET_DONE,
3598                              &tx->tx_getinfo.gngm_desc,
3599                              tx->tx_lntmsg[0]->msg_len,
3600                              tx->tx_getinfo.gngm_cookie);
3601                 RETURN(try_map_if_full ? rc : 0);
3602                 break;
3603         case GNILND_MSG_PUT_REQ_REV:
3604                 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_key = tx->tx_map_key;
3605                 tx->tx_msg.gnm_u.get.gngm_cookie = tx->tx_id.txe_cookie;
3606                 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_addr = (__u64)((unsigned long)tx->tx_buffer);
3607                 tx->tx_msg.gnm_u.get.gngm_desc.gnrd_nob = tx->tx_nob;
3608                 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3609                 kgnilnd_compute_rdma_cksum(tx, tx->tx_nob);
3610                 tx->tx_msg.gnm_u.get.gngm_payload_cksum = tx->tx_msg.gnm_payload_cksum;
3611
3612                 rc = kgnilnd_sendmsg(tx, NULL, 0, &tx->tx_conn->gnc_list_lock, GNILND_TX_FMAQ);
3613                 break;
3614         case GNILND_MSG_PUT_DONE_REV:
3615                 rc = kgnilnd_rdma(tx, GNILND_MSG_PUT_DONE_REV,
3616                              &tx->tx_getinfo.gngm_desc,
3617                              tx->tx_nob,
3618                              tx->tx_getinfo.gngm_cookie);
3619                 RETURN(try_map_if_full ? rc : 0);
3620                 break;
3621         case GNILND_MSG_GET_ACK_REV:
3622                 tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_key = tx->tx_map_key;
3623                 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3624                 /* LNET_GETS are a special case for parse */
3625                 kgnilnd_compute_rdma_cksum(tx, tx->tx_msg.gnm_u.putack.gnpam_desc.gnrd_nob);
3626                 tx->tx_msg.gnm_u.putack.gnpam_payload_cksum = tx->tx_msg.gnm_payload_cksum;
3627
3628                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_PUT_ACK_AGAIN))
3629                         tx->tx_state |= GNILND_TX_FAIL_SMSG;
3630
3631                 /* redirect to FMAQ on failure, no need to infinite loop here in MAPQ */
3632                 rc = kgnilnd_sendmsg(tx, NULL, 0, &tx->tx_conn->gnc_list_lock, GNILND_TX_FMAQ);
3633                 break;
3634         case GNILND_MSG_GET_DONE_REV:
3635         case GNILND_MSG_GET_REQ_REV:
3636                 rc = kgnilnd_rdma(tx, GNILND_MSG_GET_DONE_REV,
3637                                 &tx->tx_putinfo.gnpam_desc,
3638                                 tx->tx_putinfo.gnpam_desc.gnrd_nob,
3639                                 tx->tx_putinfo.gnpam_dst_cookie);
3640                 RETURN(try_map_if_full ? rc : 0);
3641                 break;
3642         }
3643
3644         RETURN(rc);
3645 }
3646
3647 void
3648 kgnilnd_process_fmaq(kgn_conn_t *conn)
3649 {
3650         int           more_to_do = 0;
3651         kgn_tx_t     *tx = NULL;
3652         void         *buffer = NULL;
3653         unsigned int  nob = 0;
3654         int           rc;
3655
3656         /* NB 1. kgnilnd_sendmsg() may fail if I'm out of credits right now.
3657          *       However I will be rescheduled by an FMA completion event
3658          *       when I eventually get some.
3659          * NB 2. Sampling gnc_state here races with setting it elsewhere.
3660          *       But it doesn't matter if I try to send a "real" message just
3661          *       as I start closing because I'll get scheduled to send the
3662          *       close anyway. */
3663
3664         /* Short circuit if the ep_handle is null we cant send anyway. */
3665         if (conn->gnc_ephandle == NULL)
3666                 return;
3667
3668         LASSERTF(!conn->gnc_close_sent, "Conn %px close was sent\n", conn);
3669
3670         spin_lock(&conn->gnc_list_lock);
3671
3672         if (list_empty(&conn->gnc_fmaq)) {
3673                 int     keepalive = GNILND_TO2KA(conn->gnc_timeout);
3674
3675                 spin_unlock(&conn->gnc_list_lock);
3676
3677                 if (time_after_eq(jiffies, conn->gnc_last_tx + cfs_time_seconds(keepalive))) {
3678                         CDEBUG(D_NET, "sending NOOP -> %s (%p idle %lu(%d)) "
3679                                "last %lu/%lu/%lu %lus/%lus/%lus\n",
3680                                libcfs_nid2str(conn->gnc_peer->gnp_nid), conn,
3681                                cfs_duration_sec(jiffies - conn->gnc_last_tx),
3682                                keepalive,
3683                                conn->gnc_last_noop_want, conn->gnc_last_noop_sent,
3684                                conn->gnc_last_noop_cq,
3685                                cfs_duration_sec(jiffies - conn->gnc_last_noop_want),
3686                                cfs_duration_sec(jiffies - conn->gnc_last_noop_sent),
3687                                cfs_duration_sec(jiffies - conn->gnc_last_noop_cq));
3688                         atomic_inc(&conn->gnc_sched_noop);
3689                         set_mb(conn->gnc_last_noop_want, jiffies);
3690
3691                         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_NOOP_SEND))
3692                                 return;
3693
3694                         tx = kgnilnd_new_tx_msg(GNILND_MSG_NOOP,
3695                                                 lnet_nid_to_nid4(&conn->gnc_peer->gnp_net->gnn_ni->ni_nid));
3696                         if (tx != NULL) {
3697                                 int     rc;
3698
3699                                 rc = kgnilnd_set_tx_id(tx, conn);
3700                                 if (rc != 0) {
3701                                         kgnilnd_tx_done(tx, rc);
3702                                         return;
3703                                 }
3704                         }
3705                 }
3706         } else {
3707                 tx = list_first_entry(&conn->gnc_fmaq, kgn_tx_t, tx_list);
3708                 /* move from fmaq to allocd, kgnilnd_sendmsg will move to live_fmaq */
3709                 kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
3710                 more_to_do = !list_empty(&conn->gnc_fmaq);
3711                 spin_unlock(&conn->gnc_list_lock);
3712         }
3713
3714         /* if there is no real TX or no NOOP to send, bail */
3715         if (tx == NULL) {
3716                 return;
3717         }
3718
3719         if (!tx->tx_retrans)
3720                 tx->tx_cred_wait = jiffies;
3721
3722         GNITX_ASSERTF(tx, tx->tx_id.txe_smsg_id != 0,
3723                       "tx with zero id", NULL);
3724
3725         CDEBUG(D_NET, "sending regular msg: %p, type %s(0x%02x), cookie %#llx\n",
3726                tx, kgnilnd_msgtype2str(tx->tx_msg.gnm_type),
3727                tx->tx_msg.gnm_type, tx->tx_id.txe_cookie);
3728
3729         rc = 0;
3730
3731         switch (tx->tx_msg.gnm_type) {
3732         default:
3733                 LBUG();
3734
3735         case GNILND_MSG_NOOP:
3736         case GNILND_MSG_CLOSE:
3737         case GNILND_MSG_IMMEDIATE:
3738                 tx->tx_state = GNILND_TX_WAITING_COMPLETION;
3739                 buffer = tx->tx_buffer;
3740                 nob = tx->tx_nob;
3741                 break;
3742
3743         case GNILND_MSG_GET_DONE:
3744         case GNILND_MSG_PUT_DONE:
3745         case GNILND_MSG_PUT_DONE_REV:
3746         case GNILND_MSG_GET_DONE_REV:
3747         case GNILND_MSG_PUT_NAK:
3748         case GNILND_MSG_GET_NAK:
3749         case GNILND_MSG_GET_NAK_REV:
3750         case GNILND_MSG_PUT_NAK_REV:
3751                 tx->tx_state = GNILND_TX_WAITING_COMPLETION;
3752                 break;
3753
3754         case GNILND_MSG_PUT_REQ:
3755         case GNILND_MSG_GET_REQ_REV:
3756                 tx->tx_msg.gnm_u.putreq.gnprm_cookie = tx->tx_id.txe_cookie;
3757                 fallthrough;
3758         case GNILND_MSG_PUT_ACK:
3759         case GNILND_MSG_PUT_REQ_REV:
3760         case GNILND_MSG_GET_ACK_REV:
3761         case GNILND_MSG_GET_REQ:
3762                 /* This is really only to handle the retransmit of SMSG once these
3763                  * two messages are setup in send_mapped_tx */
3764                 tx->tx_state = GNILND_TX_WAITING_COMPLETION | GNILND_TX_WAITING_REPLY;
3765                 break;
3766         }
3767
3768         if (likely(rc == 0)) {
3769                 rc = kgnilnd_sendmsg(tx, buffer, nob, &conn->gnc_list_lock, GNILND_TX_FMAQ);
3770         }
3771
3772         if (rc > 0) {
3773                 /* don't explicitly reschedule here - we are short credits and will rely on
3774                  * kgnilnd_sendmsg to resched the conn if need be */
3775                 more_to_do = 0;
3776         } else if (rc < 0) {
3777                 /* bail: it wasn't sent and we didn't get EAGAIN indicating we should retrans
3778                  * almost certainly a software bug, but lets play nice with the other kids */
3779                 kgnilnd_tx_done(tx, rc);
3780                 /* just for fun, kick peer in arse - resetting conn might help to correct
3781                  * this almost certainly buggy software caused return code */
3782                 kgnilnd_close_conn(conn, rc);
3783         }
3784
3785         if (more_to_do) {
3786                 CDEBUG(D_NET, "Rescheduling %p (more to do)\n", conn);
3787                 kgnilnd_schedule_conn(conn);
3788         }
3789 }
3790
3791 int
3792 kgnilnd_process_rdmaq(kgn_device_t *dev)
3793 {
3794         int               found_work = 0;
3795         kgn_tx_t         *tx;
3796
3797         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DELAY_RDMAQ)) {
3798                 RETURN(found_work);
3799         }
3800
3801         if (time_after_eq(jiffies, dev->gnd_rdmaq_deadline)) {
3802                 unsigned long           dead_bump;
3803                 long                    new_ok;
3804
3805                 /* if we think we need to adjust, take lock to serialize and recheck */
3806                 spin_lock(&dev->gnd_rdmaq_lock);
3807                 if (time_after_eq(jiffies, dev->gnd_rdmaq_deadline)) {
3808                         timer_delete_sync(&dev->gnd_rdmaq_timer);
3809
3810                         dead_bump = cfs_time_seconds(1) / *kgnilnd_tunables.kgn_rdmaq_intervals;
3811
3812                         /* roll the bucket forward */
3813                         dev->gnd_rdmaq_deadline = jiffies + dead_bump;
3814
3815                         if (kgnilnd_data.kgn_rdmaq_override &&
3816                                 (*kgnilnd_tunables.kgn_rdmaq_intervals != 0)) {
3817                                 new_ok = kgnilnd_data.kgn_rdmaq_override / *kgnilnd_tunables.kgn_rdmaq_intervals;
3818                         }  else {
3819                                 new_ok = ~0UL >> 1;
3820                         }
3821
3822                         /* roll current outstanding forward to make sure we carry outstanding
3823                          * committment forward
3824                          * new_ok starts out as the whole interval value
3825                          *  - first subtract bytes_out from last interval, as that would push us over
3826                          *    strict limits for this interval
3827                          *  - second, set bytes_ok to new_ok to ensure it doesn't exceed the current auth
3828                          *
3829                          * there is a small race here if someone is actively processing mappings and
3830                          * adding to rdmaq_bytes_out, but it should be small as the mappings are triggered
3831                          * quite quickly after kgnilnd_auth_rdma_bytes gives us the go-ahead
3832                          * - if this gives us problems in the future, we could use a read/write lock
3833                          * to protect the resetting of these values */
3834                         new_ok -= atomic64_read(&dev->gnd_rdmaq_bytes_out);
3835                         atomic64_set(&dev->gnd_rdmaq_bytes_ok, new_ok);
3836
3837                         CDEBUG(D_NET, "resetting rdmaq bytes to %lld, deadline +%lu -> %lu, current out %lld\n",
3838                                (s64)atomic64_read(&dev->gnd_rdmaq_bytes_ok), dead_bump, dev->gnd_rdmaq_deadline,
3839                                (s64)atomic64_read(&dev->gnd_rdmaq_bytes_out));
3840                 }
3841                 spin_unlock(&dev->gnd_rdmaq_lock);
3842         }
3843
3844         spin_lock(&dev->gnd_rdmaq_lock);
3845         while (!list_empty(&dev->gnd_rdmaq)) {
3846                 int     rc;
3847
3848                 /* make sure we break out early on quiesce */
3849                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
3850                         /* always break with lock held - we unlock outside loop */
3851                         break;
3852                 }
3853
3854                 tx = list_first_entry(&dev->gnd_rdmaq, kgn_tx_t, tx_list);
3855                 kgnilnd_tx_del_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_ALLOCD);
3856                 found_work++;
3857
3858                 /* sample with lock held, serializing with kgnilnd_complete_closed_conn */
3859                 if (tx->tx_conn->gnc_state != GNILND_CONN_ESTABLISHED) {
3860                         /* if conn is dying, mark tx in tx_ref_table for
3861                          * kgnilnd_complete_closed_conn to finish up */
3862                         kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_DYING, 1);
3863
3864                         /* tx was moved to DYING, get next */
3865                         continue;
3866                 }
3867                 spin_unlock(&dev->gnd_rdmaq_lock);
3868
3869                 rc = kgnilnd_auth_rdma_bytes(dev, tx);
3870                 spin_lock(&dev->gnd_rdmaq_lock);
3871
3872                 if (rc < 0) {
3873                         /* no ticket! add back to head */
3874                         kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_RDMAQ, 0);
3875                         /* clear found_work so scheduler threads wait for timer */
3876                         found_work = 0;
3877                         break;
3878                 } else {
3879                         /* TX is GO for launch */
3880                         tx->tx_qtime = jiffies;
3881                         kgnilnd_send_mapped_tx(tx, 0);
3882                         found_work++;
3883                 }
3884         }
3885         spin_unlock(&dev->gnd_rdmaq_lock);
3886
3887         RETURN(found_work);
3888 }
3889
3890 static inline void
3891 kgnilnd_swab_rdma_desc(kgn_rdma_desc_t *d)
3892 {
3893         __swab64s(&d->gnrd_key.qword1);
3894         __swab64s(&d->gnrd_key.qword2);
3895         __swab64s(&d->gnrd_addr);
3896         __swab32s(&d->gnrd_nob);
3897 }
3898
3899 #define kgnilnd_match_reply_either(w, x, y, z) _kgnilnd_match_reply(w, x, y, z)
3900 #define kgnilnd_match_reply(x, y, z) _kgnilnd_match_reply(x, y, GNILND_MSG_NONE, z)
3901
3902 kgn_tx_t *
3903 _kgnilnd_match_reply(kgn_conn_t *conn, int type1, int type2, __u64 cookie)
3904 {
3905         kgn_tx_ev_id_t    ev_id;
3906         kgn_tx_t         *tx;
3907
3908         /* we use the cookie from the original TX, so we can find the match
3909          * by parsing that and using the txe_idx */
3910         ev_id.txe_cookie = cookie;
3911
3912         tx = conn->gnc_tx_ref_table[ev_id.txe_idx];
3913
3914         if (tx != NULL) {
3915                 /* check tx to make sure kgni didn't eat it */
3916                 GNITX_ASSERTF(tx, tx->tx_msg.gnm_magic == GNILND_MSG_MAGIC,
3917                               "came back from kgni with bad magic %x\n", tx->tx_msg.gnm_magic);
3918
3919                 GNITX_ASSERTF(tx, ((tx->tx_id.txe_idx == ev_id.txe_idx) &&
3920                                   (tx->tx_id.txe_cookie = cookie)),
3921                              "conn 0x%p->%s tx_ref_table hosed: wanted txe_cookie %#llx txe_idx %d found tx %px cookie %#llx txe_idx %d\n",
3922                               conn, libcfs_nid2str(conn->gnc_peer->gnp_nid),
3923                               cookie, ev_id.txe_idx,
3924                               tx, tx->tx_id.txe_cookie, tx->tx_id.txe_idx);
3925
3926                 LASSERTF((((tx->tx_msg.gnm_type == type1) || (tx->tx_msg.gnm_type == type2)) &&
3927                         (tx->tx_state & GNILND_TX_WAITING_REPLY)),
3928                         "Unexpected TX type (%x, %x or %x) "
3929                         "or state (%x, expected +%x) "
3930                         "matched reply from %s\n",
3931                         tx->tx_msg.gnm_type, type1, type2,
3932                         tx->tx_state, GNILND_TX_WAITING_REPLY,
3933                         libcfs_nid2str(conn->gnc_peer->gnp_nid));
3934         } else {
3935                 CWARN("Unmatched reply %02x, or %02x/%#llx from %s\n",
3936                       type1, type2, cookie, libcfs_nid2str(conn->gnc_peer->gnp_nid));
3937         }
3938         return tx;
3939 }
3940
3941 static inline void
3942 kgnilnd_complete_tx(kgn_tx_t *tx, int rc)
3943 {
3944         int             complete = 0;
3945         kgn_conn_t      *conn = tx->tx_conn;
3946         __u64 nob = tx->tx_nob;
3947         __u32 physnop = tx->tx_phys_npages;
3948         int   id = tx->tx_id.txe_smsg_id;
3949         int buftype = tx->tx_buftype;
3950         gni_mem_handle_t hndl;
3951         hndl.qword1 = tx->tx_map_key.qword1;
3952         hndl.qword2 = tx->tx_map_key.qword2;
3953
3954         spin_lock(&conn->gnc_list_lock);
3955
3956         GNITX_ASSERTF(tx, tx->tx_state & GNILND_TX_WAITING_REPLY,
3957                 "not waiting for reply", NULL);
3958
3959         tx->tx_rc = rc;
3960         tx->tx_state &= ~GNILND_TX_WAITING_REPLY;
3961
3962         if (rc == -EFAULT) {
3963                 CDEBUG(D_NETERROR, "Error %d TX data: TX %p tx_id %x nob %16llu physnop %8d buffertype %#8x MemHandle %#llx.%#llxx\n",
3964                         rc, tx, id, nob, physnop, buftype, hndl.qword1, hndl.qword2);
3965
3966                 if(*kgnilnd_tunables.kgn_efault_lbug) {
3967                         GNIDBG_TOMSG(D_NETERROR, &tx->tx_msg,
3968                         "error %d on tx 0x%p->%s id %u/%d state %s age %ds",
3969                         rc, tx, conn ?
3970                         libcfs_nid2str(conn->gnc_peer->gnp_nid) : "<?>",
3971                         tx->tx_id.txe_smsg_id, tx->tx_id.txe_idx,
3972                         kgnilnd_tx_state2str(tx->tx_list_state),
3973                         cfs_duration_sec((unsigned long) jiffies - tx->tx_qtime));
3974                         LBUG();
3975                 }
3976         }
3977
3978         if (!(tx->tx_state & GNILND_TX_WAITING_COMPLETION)) {
3979                 kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
3980                 /* sample under lock as follow on steps require gnc_list_lock
3981                  * - or call kgnilnd_tx_done which requires no locks held over
3982                  *   call to lnet_finalize */
3983                 complete = 1;
3984         }
3985         spin_unlock(&conn->gnc_list_lock);
3986
3987         if (complete) {
3988                 kgnilnd_tx_done(tx, tx->tx_rc);
3989         }
3990 }
3991
3992 static inline void
3993 kgnilnd_finalize_rx_done(kgn_tx_t *tx, kgn_msg_t *msg)
3994 {
3995         int              rc;
3996         kgn_conn_t      *conn = tx->tx_conn;
3997
3998         atomic_inc(&conn->gnc_device->gnd_rdma_nrx);
3999         atomic64_add(tx->tx_nob, &conn->gnc_device->gnd_rdma_rxbytes);
4000
4001         /* the gncm_retval is passed in for PUTs */
4002         rc = kgnilnd_verify_rdma_cksum(tx, msg->gnm_payload_cksum,
4003                                        msg->gnm_u.completion.gncm_retval);
4004
4005         kgnilnd_complete_tx(tx, rc);
4006 }
4007
4008 void
4009 kgnilnd_check_fma_rx(kgn_conn_t *conn)
4010 {
4011         __u32         seq;
4012         kgn_tx_t     *tx;
4013         kgn_rx_t     *rx;
4014         kgn_msg_t    *msg;
4015         void         *prefix;
4016         gni_return_t  rrc;
4017         kgn_peer_t   *peer = conn->gnc_peer;
4018         kgn_net_t    *net;
4019         int           rc = 0;
4020         __u16         tmp_cksum = 0, msg_cksum = 0;
4021         int           repost = 1, saw_complete;
4022         unsigned long timestamp, newest_last_rx, timeout;
4023         int           last_seq;
4024         struct lnet_hdr hdr;
4025         struct lnet_nid srcnid;
4026         ENTRY;
4027
4028         /* Short circuit if the ep_handle is null.
4029          * It's likely that its about to be closed as stale.
4030          */
4031         if (conn->gnc_ephandle == NULL)
4032                 RETURN_EXIT;
4033
4034         timestamp = jiffies;
4035         kgnilnd_gl_mutex_lock(&conn->gnc_device->gnd_cq_mutex);
4036         /* delay in jiffies - we are really concerned only with things that
4037          * result in a schedule() or really holding this off for long times .
4038          * NB - mutex_lock could spin for 2 jiffies before going to sleep to wait */
4039         conn->gnc_device->gnd_mutex_delay += (long) jiffies - timestamp;
4040
4041         /* Resample current time as we have no idea how long it took to get the mutex */
4042         timestamp = jiffies;
4043
4044         /* We check here when the last time we received an rx, we do this before
4045          * we call getnext in case the thread has been blocked for a while. If we
4046          * havent received an rx since our timeout value we close the connection
4047          * as we should assume the other side has closed the connection. This will
4048          * stop us from sending replies to a mailbox that is already in purgatory.
4049          */
4050
4051         timeout = cfs_time_seconds(conn->gnc_timeout);
4052         newest_last_rx = GNILND_LASTRX(conn);
4053
4054         /* Error injection to validate that timestamp checking works and closing the conn */
4055         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_RECV_TIMEOUT)) {
4056                 timestamp = timestamp + (GNILND_TIMEOUTRX(timeout) * 2);
4057         }
4058
4059         if (time_after_eq(timestamp, newest_last_rx + (GNILND_TIMEOUTRX(timeout)))) {
4060                 GNIDBG_CONN(D_NETERROR|D_CONSOLE, conn, "Cant receive from %s after timeout lapse of %lu; TO %lu",
4061                 libcfs_nid2str(conn->gnc_peer->gnp_nid),
4062                 cfs_duration_sec(timestamp - newest_last_rx),
4063                 cfs_duration_sec(GNILND_TIMEOUTRX(timeout)));
4064                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4065                 rc = -ETIME;
4066                 kgnilnd_close_conn(conn, rc);
4067                 RETURN_EXIT;
4068         }
4069
4070         rrc = kgnilnd_smsg_getnext(conn->gnc_ephandle, &prefix);
4071
4072         if (rrc == GNI_RC_NOT_DONE) {
4073                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4074                 CDEBUG(D_INFO, "SMSG RX empty conn 0x%p\n", conn);
4075                 RETURN_EXIT;
4076         }
4077
4078         /* Instead of asserting when we get mailbox corruption lets attempt to
4079          * close the conn and recover. We can put the conn/mailbox into
4080          * purgatory and let purgatory deal with the problem. If we see
4081          * this NETTERROR reported on production systems in large amounts
4082          * we will need to revisit the state machine to see if we can tighten
4083          * it up further to improve data protection.
4084          */
4085
4086         if (rrc == GNI_RC_INVALID_STATE) {
4087                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4088                 GNIDBG_CONN(D_NETERROR | D_CONSOLE, conn, "Mailbox corruption "
4089                         "detected closing conn %p from peer %s\n", conn,
4090                         libcfs_nid2str(conn->gnc_peer->gnp_nid));
4091                 rc = -EIO;
4092                 kgnilnd_close_conn(conn, rc);
4093                 RETURN_EXIT;
4094         }
4095
4096         LASSERTF(rrc == GNI_RC_SUCCESS,
4097                 "bad rc %d on conn %px from peer %s\n",
4098                 rrc, conn, libcfs_nid2str(peer->gnp_nid));
4099
4100         msg = (kgn_msg_t *)prefix;
4101
4102         rx = kgnilnd_alloc_rx();
4103         if (rx == NULL) {
4104                 kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4105                 kgnilnd_release_msg(conn);
4106                 GNIDBG_MSG(D_NETERROR, msg, "Dropping SMSG RX from 0x%p->%s, no RX memory",
4107                            conn, libcfs_nid2str(peer->gnp_nid));
4108                 RETURN_EXIT;
4109         }
4110
4111         GNIDBG_MSG(D_INFO, msg, "SMSG RX on %p", conn);
4112
4113         timestamp = conn->gnc_last_rx;
4114         seq = last_seq = atomic_read(&conn->gnc_rx_seq);
4115         atomic_inc(&conn->gnc_rx_seq);
4116
4117         conn->gnc_last_rx = jiffies;
4118         /* stash first rx so we can clear out purgatory
4119          */
4120         if (conn->gnc_first_rx == 0)
4121                 conn->gnc_first_rx = jiffies;
4122
4123         /* needs to linger to protect gnc_rx_seq like we do with gnc_tx_seq */
4124         kgnilnd_gl_mutex_unlock(&conn->gnc_device->gnd_cq_mutex);
4125         kgnilnd_peer_alive(conn->gnc_peer);
4126
4127         rx->grx_msg = msg;
4128         rx->grx_conn = conn;
4129         rx->grx_eager = 0;
4130         ktime_get_ts64(&rx->grx_received);
4131
4132         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_NET_LOOKUP)) {
4133                 rc = -ENONET;
4134         } else {
4135                 rc = kgnilnd_find_net(msg->gnm_srcnid, &net);
4136         }
4137
4138         if (rc < 0) {
4139                 GOTO(out, rc);
4140         } else {
4141                 kgnilnd_net_decref(net);
4142         }
4143
4144         if (*kgnilnd_tunables.kgn_checksum && !msg->gnm_cksum)
4145                 GNIDBG_MSG(D_WARNING, msg, "no msg header checksum when enabled");
4146
4147         /* XXX Nic: Do we need to swab cksum */
4148         if (msg->gnm_cksum != 0) {
4149                 msg_cksum = msg->gnm_cksum;
4150                 msg->gnm_cksum = 0;
4151                 tmp_cksum = kgnilnd_cksum(msg, sizeof(kgn_msg_t));
4152
4153                 if (tmp_cksum != msg_cksum) {
4154                         GNIDBG_MSG(D_NETERROR, msg, "Bad hdr checksum (%x expected %x)",
4155                                         tmp_cksum, msg_cksum);
4156                         kgnilnd_dump_msg(D_BUFFS, msg);
4157                         rc = -ENOKEY;
4158                         GOTO(out, rc);
4159                 }
4160         }
4161         /* restore checksum for future debug messages */
4162         msg->gnm_cksum = tmp_cksum;
4163
4164         if (msg->gnm_magic != GNILND_MSG_MAGIC) {
4165                 if (__swab32(msg->gnm_magic) != GNILND_MSG_MAGIC) {
4166                         GNIDBG_MSG(D_NETERROR, msg, "Unexpected magic %08x from %s",
4167                                msg->gnm_magic, libcfs_nid2str(peer->gnp_nid));
4168                         rc = -EPROTO;
4169                         GOTO(out, rc);
4170                 }
4171
4172                 __swab32s(&msg->gnm_magic);
4173                 __swab16s(&msg->gnm_version);
4174                 __swab16s(&msg->gnm_type);
4175                 __swab64s(&msg->gnm_srcnid);
4176                 __swab64s(&msg->gnm_connstamp);
4177                 __swab32s(&msg->gnm_seq);
4178
4179                 /* NB message type checked below; NOT here... */
4180                 switch (msg->gnm_type) {
4181                 case GNILND_MSG_GET_ACK_REV:
4182                 case GNILND_MSG_PUT_ACK:
4183                         kgnilnd_swab_rdma_desc(&msg->gnm_u.putack.gnpam_desc);
4184                         break;
4185
4186                 case GNILND_MSG_PUT_REQ_REV:
4187                 case GNILND_MSG_GET_REQ:
4188                         kgnilnd_swab_rdma_desc(&msg->gnm_u.get.gngm_desc);
4189                         break;
4190
4191                 default:
4192                         break;
4193                 }
4194         }
4195
4196         if (msg->gnm_version != GNILND_MSG_VERSION) {
4197                 GNIDBG_MSG(D_NETERROR, msg, "Unexpected protocol version %d from %s",
4198                        msg->gnm_version, libcfs_nid2str(peer->gnp_nid));
4199                 rc = -EPROTO;
4200                 GOTO(out, rc);
4201         }
4202
4203         if (LNET_NIDADDR(msg->gnm_srcnid) != LNET_NIDADDR(peer->gnp_nid)) {
4204                 GNIDBG_MSG(D_NETERROR, msg, "Unexpected peer %s from %s",
4205                        libcfs_nid2str(msg->gnm_srcnid),
4206                        libcfs_nid2str(peer->gnp_nid));
4207                 rc = -EPROTO;
4208                 GOTO(out, rc);
4209         }
4210
4211         if (msg->gnm_connstamp != conn->gnc_peer_connstamp) {
4212                 GNIDBG_MSG(D_NETERROR, msg, "Unexpected connstamp %#llx(%#llx"
4213                        " expected) from %s",
4214                        msg->gnm_connstamp, conn->gnc_peer_connstamp,
4215                        libcfs_nid2str(peer->gnp_nid));
4216                 rc = -EPROTO;
4217                 GOTO(out, rc);
4218         }
4219
4220         if (msg->gnm_seq != seq) {
4221                 GNIDBG_MSG(D_NETERROR, msg, "Unexpected sequence number %d(%d expected) from %s",
4222                        msg->gnm_seq, seq, libcfs_nid2str(peer->gnp_nid));
4223                 rc = -EPROTO;
4224                 GOTO(out, rc);
4225         }
4226
4227         atomic_inc(&conn->gnc_device->gnd_short_nrx);
4228
4229         if (msg->gnm_type == GNILND_MSG_CLOSE) {
4230                 CDEBUG(D_NETTRACE, "%s sent us CLOSE msg\n",
4231                               libcfs_nid2str(conn->gnc_peer->gnp_nid));
4232                 write_lock(&kgnilnd_data.kgn_peer_conn_lock);
4233                 conn->gnc_close_recvd = GNILND_CLOSE_RX;
4234                 conn->gnc_peer_error = msg->gnm_u.completion.gncm_retval;
4235                 /* double check state with lock held */
4236                 if (conn->gnc_state == GNILND_CONN_ESTABLISHED) {
4237                         /* only error if we are not already closing */
4238                         if (conn->gnc_peer_error == -ETIMEDOUT) {
4239                                 unsigned long           now = jiffies;
4240                                 CNETERR("peer 0x%p->%s closed connection 0x%p due to timeout. "
4241                                        "Is node down? "
4242                                        "RX %d @ %lus/%lus; TX %d @ %lus/%lus; "
4243                                        "NOOP %lus/%lus/%lus; sched %lus/%lus/%lus ago\n",
4244                                        conn->gnc_peer, libcfs_nid2str(conn->gnc_peer->gnp_nid),
4245                                        conn, last_seq,
4246                                        cfs_duration_sec(now - timestamp),
4247                                        cfs_duration_sec(now - conn->gnc_last_rx_cq),
4248                                        atomic_read(&conn->gnc_tx_seq),
4249                                        cfs_duration_sec(now - conn->gnc_last_tx),
4250                                        cfs_duration_sec(now - conn->gnc_last_tx_cq),
4251                                        cfs_duration_sec(now - conn->gnc_last_noop_want),
4252                                        cfs_duration_sec(now - conn->gnc_last_noop_sent),
4253                                        cfs_duration_sec(now - conn->gnc_last_noop_cq),
4254                                        cfs_duration_sec(now - conn->gnc_last_sched_ask),
4255                                        cfs_duration_sec(now - conn->gnc_last_sched_do),
4256                                        cfs_duration_sec(now - conn->gnc_device->gnd_sched_alive));
4257                         }
4258                         kgnilnd_close_conn_locked(conn, -ECONNRESET);
4259                 }
4260                 write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
4261                 GOTO(out, rc);
4262         }
4263
4264         if (conn->gnc_close_recvd) {
4265                 GNIDBG_MSG(D_NETERROR, msg, "Unexpected message %s(%d/%d) after CLOSE from %s",
4266                        kgnilnd_msgtype2str(msg->gnm_type),
4267                        msg->gnm_type, conn->gnc_close_recvd,
4268                        libcfs_nid2str(conn->gnc_peer->gnp_nid));
4269                 rc = -EPROTO;
4270                 GOTO(out, rc);
4271         }
4272
4273         if (conn->gnc_state != GNILND_CONN_ESTABLISHED) {
4274                 /* XXX Nic: log message received on bad connection state */
4275                 GOTO(out, rc);
4276         }
4277
4278         switch (msg->gnm_type) {
4279         case GNILND_MSG_NOOP:
4280                 /* Nothing to do; just a keepalive */
4281                 break;
4282
4283         case GNILND_MSG_IMMEDIATE:
4284                 /* only get SMSG payload for IMMEDIATE */
4285                 atomic64_add(msg->gnm_payload_len, &conn->gnc_device->gnd_short_rxbytes);
4286                 lnet_hdr_from_nid4(&hdr, &msg->gnm_u.immediate.gnim_hdr);
4287                 lnet_nid4_to_nid(msg->gnm_srcnid, &srcnid);
4288                 rc = lnet_parse(net->gnn_ni, &hdr, &srcnid, rx, 0);
4289                 repost = rc < 0;
4290                 break;
4291         case GNILND_MSG_GET_REQ_REV:
4292         case GNILND_MSG_PUT_REQ:
4293                 lnet_hdr_from_nid4(&hdr, &msg->gnm_u.putreq.gnprm_hdr);
4294                 lnet_nid4_to_nid(msg->gnm_srcnid, &srcnid);
4295                 rc = lnet_parse(net->gnn_ni, &hdr, &srcnid, rx, 1);
4296                 repost = rc < 0;
4297                 break;
4298         case GNILND_MSG_GET_NAK_REV:
4299                 tx = kgnilnd_match_reply_either(conn, GNILND_MSG_GET_REQ_REV, GNILND_MSG_GET_ACK_REV,
4300                                         msg->gnm_u.completion.gncm_cookie);
4301                 if (tx == NULL)
4302                         break;
4303
4304                 kgnilnd_complete_tx(tx, msg->gnm_u.completion.gncm_retval);
4305                 break;
4306         case GNILND_MSG_PUT_NAK:
4307                 tx = kgnilnd_match_reply_either(conn, GNILND_MSG_PUT_REQ, GNILND_MSG_PUT_ACK,
4308                                         msg->gnm_u.completion.gncm_cookie);
4309                 if (tx == NULL)
4310                         break;
4311
4312                 kgnilnd_complete_tx(tx, msg->gnm_u.completion.gncm_retval);
4313                 break;
4314         case GNILND_MSG_PUT_ACK:
4315                 tx = kgnilnd_match_reply(conn, GNILND_MSG_PUT_REQ,
4316                                         msg->gnm_u.putack.gnpam_src_cookie);
4317                 if (tx == NULL)
4318                         break;
4319
4320                 /* store putack data for later: deferred rdma or re-try */
4321                 tx->tx_putinfo = msg->gnm_u.putack;
4322
4323                 saw_complete = 0;
4324                 spin_lock(&tx->tx_conn->gnc_list_lock);
4325
4326                 GNITX_ASSERTF(tx, tx->tx_state & GNILND_TX_WAITING_REPLY,
4327                         "not waiting for reply", NULL);
4328
4329                 tx->tx_state &= ~GNILND_TX_WAITING_REPLY;
4330
4331                 if (likely(!(tx->tx_state & GNILND_TX_WAITING_COMPLETION))) {
4332                         kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
4333                         /* sample under lock as follow on steps require gnc_list_lock
4334                          * - or call kgnilnd_tx_done which requires no locks held over
4335                          *   call to lnet_finalize */
4336                         saw_complete = 1;
4337                 } else {
4338                         /* cannot launch rdma if still waiting for fma-msg completion */
4339                         CDEBUG(D_NET, "tx 0x%p type 0x%02x will need to "
4340                                        "wait for SMSG completion\n", tx, tx->tx_msg.gnm_type);
4341                         tx->tx_state |= GNILND_TX_PENDING_RDMA;
4342                 }
4343                 spin_unlock(&tx->tx_conn->gnc_list_lock);
4344
4345                 if (saw_complete) {
4346                         rc = kgnilnd_send_mapped_tx(tx, 0);
4347                         if (rc < 0)
4348                                 kgnilnd_tx_done(tx, rc);
4349                 }
4350                 break;
4351         case GNILND_MSG_GET_ACK_REV:
4352                 tx = kgnilnd_match_reply(conn, GNILND_MSG_GET_REQ_REV,
4353                                         msg->gnm_u.putack.gnpam_src_cookie);
4354                 if (tx == NULL)
4355                         break;
4356
4357                 /* store putack data for later: deferred rdma or re-try */
4358                 tx->tx_putinfo = msg->gnm_u.putack;
4359                 saw_complete = 0;
4360                 spin_lock(&tx->tx_conn->gnc_list_lock);
4361
4362                 GNITX_ASSERTF(tx, tx->tx_state & GNILND_TX_WAITING_REPLY,
4363                         "not waiting for reply", NULL);
4364
4365                 tx->tx_state &= ~GNILND_TX_WAITING_REPLY;
4366
4367                 if (likely(!(tx->tx_state & GNILND_TX_WAITING_COMPLETION))) {
4368                         kgnilnd_tx_del_state_locked(tx, NULL, conn, GNILND_TX_ALLOCD);
4369                         /* sample under lock as follow on steps require gnc_list_lock
4370                          * - or call kgnilnd_tx_done which requires no locks held over
4371                          *   call to lnet_finalize */
4372                         saw_complete = 1;
4373                 } else {
4374                         /* cannot launch rdma if still waiting for fma-msg completion */
4375                         CDEBUG(D_NET, "tx 0x%p type 0x%02x will need to "
4376                                         "wait for SMSG completion\n", tx, tx->tx_msg.gnm_type);
4377                         tx->tx_state |= GNILND_TX_PENDING_RDMA;
4378                 }
4379                 spin_unlock(&tx->tx_conn->gnc_list_lock);
4380
4381                 if (saw_complete) {
4382                         rc = kgnilnd_send_mapped_tx(tx, 0);
4383                         if (rc < 0)
4384                                 kgnilnd_tx_done(tx, rc);
4385                 }
4386                 break;
4387         case GNILND_MSG_PUT_DONE:
4388                 tx = kgnilnd_match_reply(conn, GNILND_MSG_PUT_ACK,
4389                                         msg->gnm_u.completion.gncm_cookie);
4390                 if (tx == NULL)
4391                         break;
4392
4393                 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4394                                "bad tx buftype %d", tx->tx_buftype);
4395
4396                 kgnilnd_finalize_rx_done(tx, msg);
4397                 break;
4398         case GNILND_MSG_PUT_REQ_REV:
4399         case GNILND_MSG_GET_REQ:
4400                 lnet_hdr_from_nid4(&hdr, &msg->gnm_u.get.gngm_hdr);
4401                 lnet_nid4_to_nid(msg->gnm_srcnid, &srcnid);
4402                 rc = lnet_parse(net->gnn_ni, &hdr, &srcnid, rx, 1);
4403                 repost = rc < 0;
4404                 break;
4405
4406         case GNILND_MSG_GET_NAK:
4407                 tx = kgnilnd_match_reply(conn, GNILND_MSG_GET_REQ,
4408                                         msg->gnm_u.completion.gncm_cookie);
4409                 if (tx == NULL)
4410                         break;
4411
4412                 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4413                                "bad tx buftype %d", tx->tx_buftype);
4414
4415                 kgnilnd_complete_tx(tx, msg->gnm_u.completion.gncm_retval);
4416                 break;
4417
4418         case GNILND_MSG_GET_DONE:
4419                 tx = kgnilnd_match_reply(conn, GNILND_MSG_GET_REQ,
4420                                         msg->gnm_u.completion.gncm_cookie);
4421                 if (tx == NULL)
4422                         break;
4423
4424                 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4425                                "bad tx buftype %d", tx->tx_buftype);
4426
4427                 lnet_set_reply_msg_len(net->gnn_ni, tx->tx_lntmsg[1],
4428                                        msg->gnm_u.completion.gncm_retval);
4429
4430                 kgnilnd_finalize_rx_done(tx, msg);
4431                 break;
4432         case GNILND_MSG_GET_DONE_REV:
4433                 tx = kgnilnd_match_reply(conn, GNILND_MSG_GET_ACK_REV,
4434                                         msg->gnm_u.completion.gncm_cookie);
4435                 if (tx == NULL)
4436                         break;
4437
4438                 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4439                                 "bad tx buftype %d", tx->tx_buftype);
4440
4441                 kgnilnd_finalize_rx_done(tx, msg);
4442                 break;
4443
4444         case GNILND_MSG_PUT_DONE_REV:
4445                 tx = kgnilnd_match_reply(conn, GNILND_MSG_PUT_REQ_REV,
4446                                         msg->gnm_u.completion.gncm_cookie);
4447
4448                 if (tx == NULL)
4449                         break;
4450
4451                 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4452                                "bad tx buftype %d", tx->tx_buftype);
4453
4454                 kgnilnd_finalize_rx_done(tx, msg);
4455                 break;
4456         case GNILND_MSG_PUT_NAK_REV:
4457                 tx = kgnilnd_match_reply(conn, GNILND_MSG_PUT_REQ_REV,
4458                                         msg->gnm_u.completion.gncm_cookie);
4459
4460                 if (tx == NULL)
4461                         break;
4462
4463                 GNITX_ASSERTF(tx, tx->tx_buftype == GNILND_BUF_PHYS_MAPPED,
4464                                 "bad tx buftype %d", tx->tx_buftype);
4465
4466                 kgnilnd_complete_tx(tx, msg->gnm_u.completion.gncm_retval);
4467                 break;
4468         }
4469
4470  out:
4471         if (rc < 0)                             /* protocol/comms error */
4472                 kgnilnd_close_conn(conn, rc);
4473
4474         if (repost && rx != NULL) {
4475                 kgnilnd_consume_rx(rx);
4476         }
4477
4478         /* we got an event so assume more there and call for reschedule */
4479         if (rc >= 0)
4480                 kgnilnd_schedule_conn(conn);
4481         EXIT;
4482 }
4483
4484 /* Do the failure injections that we need to affect conn processing in the following function.
4485  * When writing tests that use this function make sure to use a fail_loc with a fail mask.
4486  * If you dont you can cause the scheduler threads to spin on the conn without it leaving
4487  * process_conns.
4488  *
4489  * intent is used to signal the calling function whether or not the conn needs to be rescheduled.
4490  */
4491
4492 static inline int
4493 kgnilnd_check_conn_fail_loc(kgn_device_t *dev, kgn_conn_t *conn, int *intent)
4494 {
4495         int     rc = 0;
4496
4497         /* short circuit out when not set */
4498         if (likely(!cfs_fail_loc)) {
4499                 RETURN(rc);
4500         }
4501
4502         /* failure injection to test for stack reset clean ups */
4503         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DROP_CLOSING)) {
4504                 /* we can't rely on busy loops being nice enough to get the
4505                  *  stack reset triggered - it'd just spin on this conn */
4506                 CFS_RACE(CFS_FAIL_GNI_DROP_CLOSING);
4507                 rc = 1;
4508                 *intent = 1;
4509                 GOTO(did_fail_loc, rc);
4510         }
4511
4512         if (conn->gnc_state == GNILND_CONN_DESTROY_EP) {
4513                 /* DESTROY_EP set in kgnilnd_conn_decref on gnc_refcount = 1 */
4514
4515                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_DROP_DESTROY_EP)) {
4516                         CFS_RACE(CFS_FAIL_GNI_DROP_DESTROY_EP);
4517                         rc = 1;
4518                         *intent = 1;
4519                         GOTO(did_fail_loc, rc);
4520                 }
4521         }
4522
4523         /* CFS_FAIL_GNI_FINISH_PURG2 is used to stop a connection from fully closing. This scheduler
4524          * will spin on the CFS_FAIL_TIMEOUT until the fail_loc is cleared at which time the connection
4525          * will be closed by kgnilnd_complete_closed_conn.
4526          */
4527         if ((conn->gnc_state == GNILND_CONN_CLOSED) && CFS_FAIL_CHECK(CFS_FAIL_GNI_FINISH_PURG2)) {
4528                 while (CFS_FAIL_TIMEOUT(CFS_FAIL_GNI_FINISH_PURG2, 1)) {};
4529                 rc = 1;
4530                 *intent = 1;
4531                 GOTO(did_fail_loc, rc);
4532         }
4533
4534         /* this one is a bit gross - we can't hold the mutex from process_conns
4535          * across a CFS_RACE here - it'd block the conn threads from doing an ep_bind
4536          * and moving onto finish_connect
4537          * so, we'll just set the rc - kgnilnd_process_conns will clear
4538          * found_work on a fail_loc, getting the scheduler thread to call schedule()
4539          * and effectively getting this thread to sleep */
4540         if ((conn->gnc_state == GNILND_CONN_CLOSED) && CFS_FAIL_CHECK(CFS_FAIL_GNI_FINISH_PURG)) {
4541                 rc = 1;
4542                 *intent = 1;
4543                 GOTO(did_fail_loc, rc);
4544         }
4545
4546 did_fail_loc:
4547         RETURN(rc);
4548 }
4549
4550 static inline void
4551 kgnilnd_send_conn_close(kgn_conn_t *conn)
4552 {
4553         kgn_tx_t        *tx;
4554
4555         /* we are closing the conn - we will try to send the CLOSE msg
4556          * but will not wait for anything else to flush */
4557
4558         /* send the close if not already done so or received one */
4559         if (!conn->gnc_close_sent && !conn->gnc_close_recvd) {
4560                 /* set close_sent regardless of the success of the
4561                  * CLOSE message. We are going to try once and then
4562                  * kick him out of the sandbox */
4563                 conn->gnc_close_sent = 1;
4564                 mb();
4565
4566                 /* EP might be null already if remote side initiated a new connection.
4567                  * kgnilnd_finish_connect destroys existing ep_handles before wiring up the new connection,
4568                  * so this check is here to make sure we dont attempt to send with a null ep_handle.
4569                  */
4570                 if (conn->gnc_ephandle != NULL) {
4571                         int rc = 0;
4572
4573                         tx = kgnilnd_new_tx_msg(GNILND_MSG_CLOSE,
4574                                                 lnet_nid_to_nid4(&conn->gnc_peer->gnp_net->gnn_ni->ni_nid));
4575                         if (tx != NULL) {
4576                                 tx->tx_msg.gnm_u.completion.gncm_retval = conn->gnc_error;
4577                                 tx->tx_state = GNILND_TX_WAITING_COMPLETION;
4578                                 tx->tx_qtime = jiffies;
4579
4580                                 if (tx->tx_id.txe_idx == 0) {
4581                                         rc = kgnilnd_set_tx_id(tx, conn);
4582                                         if (rc != 0) {
4583                                                 kgnilnd_tx_done(tx, rc);
4584                                         }
4585                                 }
4586
4587                                 CDEBUG(D_NETTRACE, "sending close with errno %d\n",
4588                                                 conn->gnc_error);
4589
4590                                 if (CFS_FAIL_CHECK(CFS_FAIL_GNI_CLOSE_SEND)) {
4591                                         kgnilnd_tx_done(tx, -EAGAIN);
4592                                 } else if (!rc) {
4593                                         rc = kgnilnd_sendmsg(tx, NULL, 0, NULL, GNILND_TX_FMAQ);
4594                                         if (rc) {
4595                                                 /* It wasnt sent and we dont care. */
4596                                                 kgnilnd_tx_done(tx, rc);
4597                                         }
4598                                 }
4599
4600                         }
4601                 }
4602         }
4603
4604         /* When changing gnc_state we need to take the kgn_peer_conn_lock */
4605         write_lock(&kgnilnd_data.kgn_peer_conn_lock);
4606         conn->gnc_state = GNILND_CONN_CLOSED;
4607         write_unlock(&kgnilnd_data.kgn_peer_conn_lock);
4608         /* mark this conn as CLOSED now that we processed it
4609          * do after TX, so we can use CLOSING in asserts */
4610
4611         mb();
4612
4613         if (CFS_FAIL_CHECK(CFS_FAIL_GNI_RX_CLOSE_CLOSED)) {
4614                 /* simulate a RX CLOSE after the timeout but before
4615                  * the scheduler thread gets it */
4616                 conn->gnc_close_recvd = GNILND_CLOSE_INJECT2;
4617                 conn->gnc_peer_error = -ETIMEDOUT;
4618         }
4619         /* schedule to allow potential CLOSE and get the complete phase run */
4620         kgnilnd_schedule_conn(conn);
4621 }
4622
4623 int
4624 kgnilnd_process_mapped_tx(kgn_device_t *dev)
4625 {
4626         int             found_work = 0;
4627         int             rc = 0;
4628         kgn_tx_t        *tx;
4629         int              fast_remaps = GNILND_FAST_MAPPING_TRY;
4630         int             log_retrans, log_retrans_level;
4631         static int      last_map_version;
4632         ENTRY;
4633
4634         spin_lock(&dev->gnd_lock);
4635         if (list_empty(&dev->gnd_map_tx)) {
4636                 /* if the list is empty make sure we dont have a timer running */
4637                 timer_delete_sync(&dev->gnd_map_timer);
4638                 spin_unlock(&dev->gnd_lock);
4639                 RETURN(0);
4640         }
4641
4642         dev->gnd_sched_alive = jiffies;
4643
4644         /* we'll retry as fast as possible up to 25% of the limit, then we start
4645          * backing off until our map version changes - indicating we unmapped
4646          * something */
4647         tx = list_first_entry(&dev->gnd_map_tx, kgn_tx_t, tx_list);
4648         if (likely(dev->gnd_map_attempt == 0) ||
4649                 time_after_eq(jiffies, dev->gnd_next_map) ||
4650                 last_map_version != dev->gnd_map_version) {
4651
4652                 /* if this is our first attempt at mapping set last mapped to current
4653                  * jiffies so we can timeout our attempt correctly.
4654                  */
4655                 if (dev->gnd_map_attempt == 0)
4656                         dev->gnd_last_map = jiffies;
4657         } else {
4658                 GNIDBG_TX(D_NET, tx, "waiting for mapping event event to retry", NULL);
4659                 spin_unlock(&dev->gnd_lock);
4660                 RETURN(0);
4661         }
4662
4663         /* delete the previous timer if it exists */
4664         timer_delete_sync(&dev->gnd_map_timer);
4665         /* stash the last map version to let us know when a good one was seen */
4666         last_map_version = dev->gnd_map_version;
4667
4668         /* we need to to take the lock and continually refresh the head of the list as
4669          * kgnilnd_complete_closed_conn might be nuking stuff and we are cycling the lock
4670          * allowing them to squeeze in */
4671
4672         while (!list_empty(&dev->gnd_map_tx)) {
4673                 /* make sure we break out early on quiesce */
4674                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
4675                         /* always break with lock held - we unlock outside loop */
4676                         break;
4677                 }
4678
4679                 tx = list_first_entry(&dev->gnd_map_tx, kgn_tx_t, tx_list);
4680
4681                 kgnilnd_tx_del_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_ALLOCD);
4682                 found_work++;
4683
4684                 /* sample with lock held, serializing with kgnilnd_complete_closed_conn */
4685                 if (tx->tx_conn->gnc_state != GNILND_CONN_ESTABLISHED) {
4686                         /* if conn is dying, mark tx in tx_ref_table for
4687                          * kgnilnd_complete_closed_conn to finish up */
4688                         kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_DYING, 1);
4689                         found_work++;
4690
4691                         /* tx was moved to DYING, get next */
4692                         continue;
4693                 }
4694
4695                 spin_unlock(&dev->gnd_lock);
4696                 rc = kgnilnd_send_mapped_tx(tx, 1);
4697
4698                 /* We made it! skip error handling.. */
4699                 if (rc >= 0) {
4700                         /* OK to continue on +ve errors as it won't get seen until
4701                          * this function is called again - we operate on a copy of the original
4702                          * list and not the live list */
4703                         spin_lock(&dev->gnd_lock);
4704                         /* reset map attempts back to zero we successfully
4705                          * mapped so we can reset our timers */
4706                         dev->gnd_map_attempt = 0;
4707                         continue;
4708                 } else if (rc == -EAGAIN) {
4709                         spin_lock(&dev->gnd_lock);
4710                         mod_timer(&dev->gnd_map_timer, dev->gnd_next_map);
4711                         spin_unlock(&dev->gnd_lock);
4712                         GOTO(get_out_mapped, rc);
4713                 } else if (rc != -ENOMEM) {
4714                         /* carp, failure we can't handle */
4715                         kgnilnd_tx_done(tx, rc);
4716                         spin_lock(&dev->gnd_lock);
4717                         /* reset map attempts back to zero we dont know what happened but it
4718                          * wasnt a failed mapping
4719                          */
4720                         dev->gnd_map_attempt = 0;
4721                         continue;
4722                 }
4723
4724                 /* time to handle the retry cases..  lock so we dont have 2 threads
4725                  * mucking with gnd_map_attempt, or gnd_next_map at the same time.
4726                  */
4727                 spin_lock(&dev->gnd_lock);
4728                 dev->gnd_map_attempt++;
4729                 if (dev->gnd_map_attempt < fast_remaps) {
4730                         /* do nothing we just want it to go as fast as possible.
4731                          * just set gnd_next_map to current jiffies so it will process
4732                          * as fast as possible.
4733                          */
4734                         dev->gnd_next_map = jiffies;
4735                 } else {
4736                         /* Retry based on GNILND_MAP_RETRY_RATE */
4737                         dev->gnd_next_map = jiffies + GNILND_MAP_RETRY_RATE;
4738                 }
4739
4740                 /* only log occasionally once we've retried fast_remaps */
4741                 log_retrans = (dev->gnd_map_attempt >= fast_remaps) &&
4742                               ((dev->gnd_map_attempt % fast_remaps) == 0);
4743                 log_retrans_level = log_retrans ? D_NETERROR : D_NET;
4744
4745                 /* make sure we are not off in the weeds with this tx */
4746                 if (time_after(jiffies, dev->gnd_last_map + GNILND_MAP_TIMEOUT)) {
4747                        GNIDBG_TX(D_NETERROR, tx,
4748                                "giving up on TX, too many retries", NULL);
4749                        spin_unlock(&dev->gnd_lock);
4750                        if (tx->tx_msg.gnm_type == GNILND_MSG_PUT_REQ ||
4751                            tx->tx_msg.gnm_type == GNILND_MSG_GET_REQ_REV) {
4752                                kgnilnd_nak_rdma(tx->tx_conn, tx->tx_msg.gnm_type,
4753                                                 -ENOMEM,
4754                                                 tx->tx_putinfo.gnpam_dst_cookie,
4755                                                 tx->tx_msg.gnm_srcnid);
4756                         } else {
4757                                 kgnilnd_nak_rdma(tx->tx_conn, tx->tx_msg.gnm_type,
4758                                                 -ENOMEM,
4759                                                 tx->tx_getinfo.gngm_cookie,
4760                                                 tx->tx_msg.gnm_srcnid);
4761                         }
4762                        kgnilnd_tx_done(tx, -ENOMEM);
4763                        GOTO(get_out_mapped, rc);
4764                 } else {
4765                        GNIDBG_TX(log_retrans_level, tx,
4766                                 "transient map failure #%d %d pages/%d bytes phys %u@%u "
4767                                 "nq_map %d mdd# %d/%d GART %ld",
4768                                 dev->gnd_map_attempt, tx->tx_phys_npages, tx->tx_nob,
4769                                 dev->gnd_map_nphys, dev->gnd_map_physnop * PAGE_SIZE,
4770                                 atomic_read(&dev->gnd_nq_map),
4771                                 atomic_read(&dev->gnd_n_mdd), atomic_read(&dev->gnd_n_mdd_held),
4772                                 atomic64_read(&dev->gnd_nbytes_map));
4773                 }
4774
4775                 /* we need to stop processing the rest of the list, so add it back in */
4776                 /* set timer to wake device when we need to schedule this tx */
4777                 mod_timer(&dev->gnd_map_timer, dev->gnd_next_map);
4778                 kgnilnd_tx_add_state_locked(tx, NULL, tx->tx_conn, GNILND_TX_MAPQ, 0);
4779                 spin_unlock(&dev->gnd_lock);
4780                 GOTO(get_out_mapped, rc);
4781         }
4782         spin_unlock(&dev->gnd_lock);
4783 get_out_mapped:
4784         RETURN(found_work);
4785 }
4786
4787 int
4788 kgnilnd_process_conns(kgn_device_t *dev, unsigned long deadline)
4789 {
4790         int              found_work = 0;
4791         int              conn_sched;
4792         int              intent = 0;
4793         int              error_inject = 0;
4794         int              rc = 0;
4795         kgn_conn_t      *conn;
4796
4797         spin_lock(&dev->gnd_lock);
4798         while (!list_empty(&dev->gnd_ready_conns) && time_before(jiffies, deadline)) {
4799                 dev->gnd_sched_alive = jiffies;
4800                 error_inject = 0;
4801                 rc = 0;
4802
4803                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
4804                         /* break with lock held */
4805                         break;
4806                 }
4807
4808                 conn = list_first_entry(&dev->gnd_ready_conns, kgn_conn_t, gnc_schedlist);
4809                 list_del_init(&conn->gnc_schedlist);
4810                 /*
4811                  * Since we are processing conn now, we don't need to be on the delaylist any longer.
4812                  */
4813
4814                 if (!list_empty(&conn->gnc_delaylist))
4815                         list_del_init(&conn->gnc_delaylist);
4816                 spin_unlock(&dev->gnd_lock);
4817
4818                 conn_sched = xchg(&conn->gnc_scheduled, GNILND_CONN_PROCESS);
4819
4820                 LASSERTF(conn_sched != GNILND_CONN_IDLE &&
4821                          conn_sched != GNILND_CONN_PROCESS,
4822                          "conn %px on ready list but in bad state: %d\n",
4823                          conn, conn_sched);
4824
4825                 CDEBUG(D_INFO, "conn %p@%s for processing\n",
4826                         conn, kgnilnd_conn_state2str(conn));
4827
4828                 found_work++;
4829                 set_mb(conn->gnc_last_sched_do, jiffies);
4830
4831                 if (kgnilnd_check_conn_fail_loc(dev, conn, &intent)) {
4832
4833                         /* based on intent see if we should run again. */
4834                         rc = kgnilnd_schedule_process_conn(conn, intent);
4835                         error_inject = 1;
4836                         /* drop ref from gnd_ready_conns */
4837                         if (atomic_read(&conn->gnc_refcount) == 1 && rc != 1) {
4838                                 down_write(&dev->gnd_conn_sem);
4839                                 kgnilnd_conn_decref(conn);
4840                                 up_write(&dev->gnd_conn_sem);
4841                         } else if (rc != 1) {
4842                                 kgnilnd_conn_decref(conn);
4843                         }
4844                         /* clear this so that scheduler thread doesn't spin */
4845                         found_work = 0;
4846                         /* break with lock held... */
4847                         spin_lock(&dev->gnd_lock);
4848                         break;
4849                 }
4850
4851                 if (unlikely(conn->gnc_state == GNILND_CONN_CLOSED)) {
4852                         down_write(&dev->gnd_conn_sem);
4853
4854                         /* CONN_CLOSED set in procces_fmaq when CLOSE is sent */
4855                         if (unlikely(atomic_read(&conn->gnc_tx_in_use))) {
4856                                 /* If there are tx's currently in use in another
4857                                  * thread we dont want to complete the close
4858                                  * yet. Cycle this conn back through
4859                                  * the scheduler. */
4860                                 kgnilnd_schedule_conn(conn);
4861                         } else {
4862                                 kgnilnd_complete_closed_conn(conn);
4863                         }
4864                         up_write(&dev->gnd_conn_sem);
4865                 } else if (unlikely(conn->gnc_state == GNILND_CONN_DESTROY_EP)) {
4866                         /* DESTROY_EP set in kgnilnd_conn_decref on gnc_refcount = 1 */
4867                         /* serialize SMSG CQs with ep_bind and smsg_release */
4868                         down_write(&dev->gnd_conn_sem);
4869                         kgnilnd_destroy_conn_ep(conn);
4870                         up_write(&dev->gnd_conn_sem);
4871                 } else if (unlikely(conn->gnc_state == GNILND_CONN_CLOSING)) {
4872                        /* if we need to do some CLOSE sending, etc done here do it */
4873                         down_write(&dev->gnd_conn_sem);
4874                         kgnilnd_send_conn_close(conn);
4875                         kgnilnd_check_fma_rx(conn);
4876                         up_write(&dev->gnd_conn_sem);
4877                 } else if (atomic_read(&conn->gnc_peer->gnp_dirty_eps) == 0) {
4878                         /* start moving traffic if the old conns are cleared out */
4879                         down_read(&dev->gnd_conn_sem);
4880                         kgnilnd_check_fma_rx(conn);
4881                         kgnilnd_process_fmaq(conn);
4882                         up_read(&dev->gnd_conn_sem);
4883                 }
4884
4885                 rc = kgnilnd_schedule_process_conn(conn, 0);
4886
4887                 /* drop ref from gnd_ready_conns */
4888                 if (atomic_read(&conn->gnc_refcount) == 1 && rc != 1) {
4889                         down_write(&dev->gnd_conn_sem);
4890                         kgnilnd_conn_decref(conn);
4891                         up_write(&dev->gnd_conn_sem);
4892                 } else if (rc != 1) {
4893                         kgnilnd_conn_decref(conn);
4894                 }
4895
4896                 /* check list again with lock held */
4897                 spin_lock(&dev->gnd_lock);
4898         }
4899
4900         /* If we are short circuiting due to timing we want to be scheduled
4901          * as soon as possible.
4902          */
4903         if (!list_empty(&dev->gnd_ready_conns) && !error_inject)
4904                 found_work++;
4905
4906         spin_unlock(&dev->gnd_lock);
4907
4908         RETURN(found_work);
4909 }
4910
4911 int
4912 kgnilnd_scheduler(void *arg)
4913 {
4914         int               threadno = (long)arg;
4915         kgn_device_t            *dev;
4916         int                     busy_loops = 0;
4917         unsigned long     deadline = 0;
4918         DEFINE_WAIT(wait);
4919
4920         dev = &kgnilnd_data.kgn_devices[(threadno + 1) % kgnilnd_data.kgn_ndevs];
4921
4922         /* all gnilnd threads need to run fairly urgently */
4923         set_user_nice(current, *kgnilnd_tunables.kgn_sched_nice);
4924         deadline = jiffies + cfs_time_seconds(*kgnilnd_tunables.kgn_sched_timeout);
4925         while (!kgnilnd_data.kgn_shutdown) {
4926                 int     found_work = 0;
4927                 /* Safe: kgn_shutdown only set when quiescent */
4928
4929                 /* to quiesce or to not quiesce, that is the question */
4930
4931                 if (unlikely(kgnilnd_data.kgn_quiesce_trigger)) {
4932                         KGNILND_SPIN_QUIESCE;
4933                 }
4934
4935                 /* tracking for when thread goes AWOL */
4936                 dev->gnd_sched_alive = jiffies;
4937
4938                 CFS_FAIL_TIMEOUT(CFS_FAIL_GNI_SCHED_DEADLINE,
4939                         (*kgnilnd_tunables.kgn_sched_timeout + 1));
4940                 /* let folks know we are up and kicking
4941                  * - they can use this for latency savings, etc
4942                  * - only change if IRQ, if IDLE leave alone as that
4943                  *   schedule_device calls to put us back to IRQ */
4944                 (void)cmpxchg(&dev->gnd_ready, GNILND_DEV_IRQ, GNILND_DEV_LOOP);
4945
4946                 down_read(&dev->gnd_conn_sem);
4947                 /* always check these - they are super low cost  */
4948                 found_work += kgnilnd_check_fma_send_cq(dev);
4949                 found_work += kgnilnd_check_fma_rcv_cq(dev);
4950
4951                 /* rdma CQ doesn't care about eps */
4952                 found_work += kgnilnd_check_rdma_cq(dev);
4953
4954                 /* move some RDMA ? */
4955                 found_work += kgnilnd_process_rdmaq(dev);
4956
4957                 /* map some pending RDMA requests ? */
4958                 found_work += kgnilnd_process_mapped_tx(dev);
4959
4960                 /* the EP for a conn is not destroyed until all the references
4961                  * to it are gone, so these checks should be safe
4962                  * even if run in parallel with the CQ checking functions
4963                  * _AND_ a thread that processes the CLOSED->DONE
4964                  * transistion
4965                  * ...should.... */
4966
4967                 up_read(&dev->gnd_conn_sem);
4968
4969                 /* process all conns ready now */
4970                 found_work += kgnilnd_process_conns(dev, deadline);
4971
4972                 /* do an eager check to avoid the IRQ disabling in
4973                  * prepare_to_wait and friends */
4974
4975                 if (found_work &&
4976                    (busy_loops++ < *kgnilnd_tunables.kgn_loops) &&
4977                    time_before(jiffies, deadline)) {
4978                         found_work = 0;
4979                         if ((busy_loops % 10) == 0) {
4980                                 /* tickle heartbeat and watchdog to ensure our
4981                                  * piggishness doesn't turn into heartbeat failure */
4982                                 touch_nmi_watchdog();
4983                                 kgnilnd_hw_hb();
4984                         }
4985                         continue;
4986                 }
4987
4988                 /* if we got here, found_work was zero or busy_loops means we
4989                  * need to take a break. We'll clear gnd_ready but we'll check
4990                  * one last time if there is an IRQ that needs processing */
4991
4992                 prepare_to_wait(&dev->gnd_waitq, &wait, TASK_INTERRUPTIBLE);
4993
4994                 /* the first time this will go LOOP -> IDLE and let us do one final check
4995                  * during which we might get an IRQ, then IDLE->IDLE and schedule()
4996                  * - this might allow other threads to block us for a bit if they
4997                  *   try to get the mutex, but that is good as we'd need to wake
4998                  *   up soon to handle the CQ or other processing anyways */
4999
5000                 found_work += xchg(&dev->gnd_ready, GNILND_DEV_IDLE);
5001
5002                 if ((busy_loops >= *kgnilnd_tunables.kgn_loops) ||
5003                    time_after_eq(jiffies, deadline)) {
5004                         CDEBUG(D_INFO,
5005                                "yeilding: found_work %d busy_loops %d\n",
5006                                found_work, busy_loops);
5007                         busy_loops = 0;
5008                         /* use yield if we are bailing due to busy_loops
5009                          * - this will ensure we wake up soonish. This closes
5010                          * a race with kgnilnd_device_callback - where it'd
5011                          * not call wake_up() because gnd_ready == 1, but then
5012                          * we come down and schedule() because of busy_loops.
5013                          * We'd not be woken up until something poked our waitq
5014                          * again. yield() ensures we wake up without another
5015                          * waitq poke in that case */
5016                         atomic_inc(&dev->gnd_n_yield);
5017                         kgnilnd_data.kgn_last_condresched = jiffies;
5018                         yield();
5019                         CDEBUG(D_INFO, "awake after yeild\n");
5020                         deadline = jiffies + cfs_time_seconds(*kgnilnd_tunables.kgn_sched_timeout);
5021                 } else if (found_work == GNILND_DEV_IDLE) {
5022                         /* busy_loops is low and there is nothing to do,
5023                          * go to sleep and wait for a waitq poke */
5024                         CDEBUG(D_INFO,
5025                                "scheduling: found_work %d busy_loops %d\n",
5026                                found_work, busy_loops);
5027                         atomic_inc(&dev->gnd_n_schedule);
5028                         kgnilnd_data.kgn_last_scheduled = jiffies;
5029                         schedule();
5030                         CDEBUG(D_INFO, "awake after schedule\n");
5031                         deadline = jiffies + cfs_time_seconds(*kgnilnd_tunables.kgn_sched_timeout);
5032                 }
5033                 finish_wait(&dev->gnd_waitq, &wait);
5034         }
5035
5036         kgnilnd_thread_fini();
5037         return 0;
5038 }