Whamcloud - gitweb
b=13490,i=maxim:
[fs/lustre-release.git] / lnet / ulnds / ptllnd / ptllnd.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  *
36  * lnet/ulnds/ptllnd/ptllnd.c
37  *
38  * Author: Eric Barton <eeb@bartonsoftware.com>
39  */
40
41 #include "ptllnd.h"
42
43 lnd_t               the_ptllnd = {
44         .lnd_type       = PTLLND,
45         .lnd_startup    = ptllnd_startup,
46         .lnd_shutdown   = ptllnd_shutdown,
47         .lnd_ctl        = ptllnd_ctl,
48         .lnd_send       = ptllnd_send,
49         .lnd_recv       = ptllnd_recv,
50         .lnd_eager_recv = ptllnd_eager_recv,
51         .lnd_notify     = ptllnd_notify,
52         .lnd_wait       = ptllnd_wait,
53         .lnd_setasync   = ptllnd_setasync,
54 };
55
56 static int ptllnd_ni_count = 0;
57
58 static struct list_head ptllnd_idle_history;
59 static struct list_head ptllnd_history_list;
60
61 void
62 ptllnd_history_fini(void)
63 {
64         ptllnd_he_t *he;
65
66         while (!list_empty(&ptllnd_idle_history)) {
67                 he = list_entry(ptllnd_idle_history.next,
68                                 ptllnd_he_t, he_list);
69
70                 list_del(&he->he_list);
71                 LIBCFS_FREE(he, sizeof(*he));
72         }
73
74         while (!list_empty(&ptllnd_history_list)) {
75                 he = list_entry(ptllnd_history_list.next,
76                                 ptllnd_he_t, he_list);
77
78                 list_del(&he->he_list);
79                 LIBCFS_FREE(he, sizeof(*he));
80         }
81 }
82
83 int
84 ptllnd_history_init(void)
85 {
86         int          i;
87         ptllnd_he_t *he;
88         int          n;
89         int          rc;
90
91         CFS_INIT_LIST_HEAD(&ptllnd_idle_history);
92         CFS_INIT_LIST_HEAD(&ptllnd_history_list);
93
94         rc = ptllnd_parse_int_tunable(&n, "PTLLND_HISTORY", 0);
95         if (rc != 0)
96                 return rc;
97
98         for (i = 0; i < n; i++) {
99                 LIBCFS_ALLOC(he, sizeof(*he));
100                 if (he == NULL) {
101                         ptllnd_history_fini();
102                         return -ENOMEM;
103                 }
104
105                 list_add(&he->he_list, &ptllnd_idle_history);
106         }
107
108         PTLLND_HISTORY("Init");
109
110         return 0;
111 }
112
113 void
114 ptllnd_history(const char *fn, const char *file, const int line,
115                const char *fmt, ...)
116 {
117         static int     seq;
118
119         va_list        ap;
120         ptllnd_he_t   *he;
121
122         if (!list_empty(&ptllnd_idle_history)) {
123                 he = list_entry(ptllnd_idle_history.next,
124                                 ptllnd_he_t, he_list);
125         } else if (!list_empty(&ptllnd_history_list)) {
126                 he = list_entry(ptllnd_history_list.next,
127                                 ptllnd_he_t, he_list);
128         } else {
129                 return;
130         }
131
132         list_del(&he->he_list);
133         list_add_tail(&he->he_list, &ptllnd_history_list);
134
135         he->he_seq = seq++;
136         he->he_fn = fn;
137         he->he_file = file;
138         he->he_line = line;
139         gettimeofday(&he->he_time, NULL);
140
141         va_start(ap, fmt);
142         vsnprintf(he->he_msg, sizeof(he->he_msg), fmt, ap);
143         va_end(ap);
144 }
145
146 void
147 ptllnd_dump_history(void)
148 {
149         ptllnd_he_t    *he;
150
151         PTLLND_HISTORY("dumping...");
152
153         while (!list_empty(&ptllnd_history_list)) {
154                 he = list_entry(ptllnd_history_list.next,
155                                 ptllnd_he_t, he_list);
156
157                 list_del(&he->he_list);
158
159                 CDEBUG(D_WARNING, "%d %d.%06d (%s:%d:%s()) %s\n", he->he_seq,
160                        (int)he->he_time.tv_sec, (int)he->he_time.tv_usec,
161                        he->he_file, he->he_line, he->he_fn, he->he_msg);
162
163                 list_add_tail(&he->he_list, &ptllnd_idle_history);
164         }
165
166         PTLLND_HISTORY("complete");
167 }
168
169 void
170 ptllnd_assert_wire_constants (void)
171 {
172         /* Wire protocol assertions generated by 'wirecheck'
173          * running on Linux fedora 2.6.11-co-0.6.4 #1 Mon Jun 19 05:36:13 UTC 2006 i686 i686 i386 GNU
174          * with gcc version 4.1.1 20060525 (Red Hat 4.1.1-1) */
175
176
177         /* Constants... */
178         CLASSERT (PTL_RESERVED_MATCHBITS == 0x100);
179         CLASSERT (LNET_MSG_MATCHBITS == 0);
180         CLASSERT (PTLLND_MSG_MAGIC == 0x50746C4E);
181         CLASSERT (PTLLND_MSG_VERSION == 0x04);
182         CLASSERT (PTLLND_RDMA_OK == 0x00);
183         CLASSERT (PTLLND_RDMA_FAIL == 0x01);
184         CLASSERT (PTLLND_MSG_TYPE_INVALID == 0x00);
185         CLASSERT (PTLLND_MSG_TYPE_PUT == 0x01);
186         CLASSERT (PTLLND_MSG_TYPE_GET == 0x02);
187         CLASSERT (PTLLND_MSG_TYPE_IMMEDIATE == 0x03);
188         CLASSERT (PTLLND_MSG_TYPE_NOOP == 0x04);
189         CLASSERT (PTLLND_MSG_TYPE_HELLO == 0x05);
190         CLASSERT (PTLLND_MSG_TYPE_NAK == 0x06);
191
192         /* Checks for struct kptl_msg_t */
193         CLASSERT ((int)sizeof(kptl_msg_t) == 136);
194         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_magic) == 0);
195         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_magic) == 4);
196         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_version) == 4);
197         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_version) == 2);
198         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_type) == 6);
199         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_type) == 1);
200         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_credits) == 7);
201         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_credits) == 1);
202         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_nob) == 8);
203         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_nob) == 4);
204         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_cksum) == 12);
205         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_cksum) == 4);
206         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_srcnid) == 16);
207         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_srcnid) == 8);
208         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_srcstamp) == 24);
209         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_srcstamp) == 8);
210         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_dstnid) == 32);
211         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_dstnid) == 8);
212         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_dststamp) == 40);
213         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_dststamp) == 8);
214         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_srcpid) == 48);
215         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_srcpid) == 4);
216         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_dstpid) == 52);
217         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_dstpid) == 4);
218         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_u.immediate) == 56);
219         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_u.immediate) == 72);
220         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_u.rdma) == 56);
221         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_u.rdma) == 80);
222         CLASSERT ((int)offsetof(kptl_msg_t, ptlm_u.hello) == 56);
223         CLASSERT ((int)sizeof(((kptl_msg_t *)0)->ptlm_u.hello) == 12);
224
225         /* Checks for struct kptl_immediate_msg_t */
226         CLASSERT ((int)sizeof(kptl_immediate_msg_t) == 72);
227         CLASSERT ((int)offsetof(kptl_immediate_msg_t, kptlim_hdr) == 0);
228         CLASSERT ((int)sizeof(((kptl_immediate_msg_t *)0)->kptlim_hdr) == 72);
229         CLASSERT ((int)offsetof(kptl_immediate_msg_t, kptlim_payload[13]) == 85);
230         CLASSERT ((int)sizeof(((kptl_immediate_msg_t *)0)->kptlim_payload[13]) == 1);
231
232         /* Checks for struct kptl_rdma_msg_t */
233         CLASSERT ((int)sizeof(kptl_rdma_msg_t) == 80);
234         CLASSERT ((int)offsetof(kptl_rdma_msg_t, kptlrm_hdr) == 0);
235         CLASSERT ((int)sizeof(((kptl_rdma_msg_t *)0)->kptlrm_hdr) == 72);
236         CLASSERT ((int)offsetof(kptl_rdma_msg_t, kptlrm_matchbits) == 72);
237         CLASSERT ((int)sizeof(((kptl_rdma_msg_t *)0)->kptlrm_matchbits) == 8);
238
239         /* Checks for struct kptl_hello_msg_t */
240         CLASSERT ((int)sizeof(kptl_hello_msg_t) == 12);
241         CLASSERT ((int)offsetof(kptl_hello_msg_t, kptlhm_matchbits) == 0);
242         CLASSERT ((int)sizeof(((kptl_hello_msg_t *)0)->kptlhm_matchbits) == 8);
243         CLASSERT ((int)offsetof(kptl_hello_msg_t, kptlhm_max_msg_size) == 8);
244         CLASSERT ((int)sizeof(((kptl_hello_msg_t *)0)->kptlhm_max_msg_size) == 4);
245 }
246
247 int
248 ptllnd_parse_int_tunable(int *value, char *name, int dflt)
249 {
250         char    *env = getenv(name);
251         char    *end;
252
253         if (env == NULL) {
254                 *value = dflt;
255                 return 0;
256         }
257
258         *value = strtoull(env, &end, 0);
259         if (*end == 0)
260                 return 0;
261
262         CERROR("Can't parse tunable %s=%s\n", name, env);
263         return -EINVAL;
264 }
265
266 int
267 ptllnd_get_tunables(lnet_ni_t *ni)
268 {
269         ptllnd_ni_t *plni = ni->ni_data;
270         int          max_msg_size;
271         int          msgs_per_buffer;
272         int          rc;
273         int          temp;
274
275         /*  Other tunable defaults depend on this */
276         rc = ptllnd_parse_int_tunable(&plni->plni_debug, "PTLLND_DEBUG", 0);
277         if (rc != 0)
278                 return rc;
279
280         rc = ptllnd_parse_int_tunable(&plni->plni_portal,
281                                       "PTLLND_PORTAL", PTLLND_PORTAL);
282         if (rc != 0)
283                 return rc;
284
285         rc = ptllnd_parse_int_tunable(&temp,
286                                       "PTLLND_PID", PTLLND_PID);
287         if (rc != 0)
288                 return rc;
289         plni->plni_ptllnd_pid = (ptl_pid_t)temp;
290
291         rc = ptllnd_parse_int_tunable(&plni->plni_peer_credits,
292                                       "PTLLND_PEERCREDITS", PTLLND_PEERCREDITS);
293         if (rc != 0)
294                 return rc;
295         /* kptl_msg_t::ptlm_credits is only a __u8 */
296         if (plni->plni_peer_credits > 255) {
297                 CERROR("PTLLND_PEERCREDITS must be <= 255\n");
298                 return -EINVAL;
299         }
300
301         rc = ptllnd_parse_int_tunable(&max_msg_size,
302                                       "PTLLND_MAX_MSG_SIZE",
303                                       PTLLND_MAX_ULND_MSG_SIZE);
304         if (rc != 0)
305                 return rc;
306
307         rc = ptllnd_parse_int_tunable(&msgs_per_buffer,
308                                       "PTLLND_MSGS_PER_BUFFER", 64);
309         if (rc != 0)
310                 return rc;
311
312         rc = ptllnd_parse_int_tunable(&plni->plni_msgs_spare,
313                                       "PTLLND_MSGS_SPARE", 256);
314         if (rc != 0)
315                 return rc;
316
317         rc = ptllnd_parse_int_tunable(&plni->plni_peer_hash_size,
318                                       "PTLLND_PEER_HASH_SIZE", 101);
319         if (rc != 0)
320                 return rc;
321
322
323         rc = ptllnd_parse_int_tunable(&plni->plni_eq_size,
324                                       "PTLLND_EQ_SIZE", 1024);
325         if (rc != 0)
326                 return rc;
327
328         rc = ptllnd_parse_int_tunable(&plni->plni_checksum,
329                                       "PTLLND_CHECKSUM", 0);
330         if (rc != 0)
331                 return rc;
332
333         rc = ptllnd_parse_int_tunable(&plni->plni_max_tx_history,
334                                       "PTLLND_TX_HISTORY",
335                                       plni->plni_debug ? 1024 : 0);
336         if (rc != 0)
337                 return rc;
338
339         rc = ptllnd_parse_int_tunable(&plni->plni_abort_on_protocol_mismatch,
340                                       "PTLLND_ABORT_ON_PROTOCOL_MISMATCH", 1);
341         if (rc != 0)
342                 return rc;
343
344         rc = ptllnd_parse_int_tunable(&plni->plni_abort_on_nak,
345                                       "PTLLND_ABORT_ON_NAK", 0);
346         if (rc != 0)
347                 return rc;
348
349         rc = ptllnd_parse_int_tunable(&plni->plni_dump_on_nak,
350                                       "PTLLND_DUMP_ON_NAK", plni->plni_debug);
351         if (rc != 0)
352                 return rc;
353
354         rc = ptllnd_parse_int_tunable(&plni->plni_watchdog_interval,
355                                       "PTLLND_WATCHDOG_INTERVAL", 1);
356         if (rc != 0)
357                 return rc;
358         if (plni->plni_watchdog_interval <= 0)
359                 plni->plni_watchdog_interval = 1;
360
361         rc = ptllnd_parse_int_tunable(&plni->plni_timeout,
362                                       "PTLLND_TIMEOUT", 50);
363         if (rc != 0)
364                 return rc;
365
366         rc = ptllnd_parse_int_tunable(&plni->plni_long_wait,
367                                       "PTLLND_LONG_WAIT",
368                                       plni->plni_debug ? 5 : plni->plni_timeout);
369         if (rc != 0)
370                 return rc;
371         plni->plni_long_wait *= 1000;           /* convert to mS */
372
373         plni->plni_max_msg_size = max_msg_size & ~7;
374         if (plni->plni_max_msg_size < PTLLND_MIN_BUFFER_SIZE)
375                 plni->plni_max_msg_size = PTLLND_MIN_BUFFER_SIZE;
376         CLASSERT ((PTLLND_MIN_BUFFER_SIZE & 7) == 0);
377         CLASSERT (sizeof(kptl_msg_t) <= PTLLND_MIN_BUFFER_SIZE);
378
379         plni->plni_buffer_size = plni->plni_max_msg_size * msgs_per_buffer;
380
381         CDEBUG(D_NET, "portal          = %d\n",plni->plni_portal);
382         CDEBUG(D_NET, "ptllnd_pid      = %d\n",plni->plni_ptllnd_pid);
383         CDEBUG(D_NET, "max_msg_size    = %d\n",max_msg_size);
384         CDEBUG(D_NET, "msgs_per_buffer = %d\n",msgs_per_buffer);
385         CDEBUG(D_NET, "msgs_spare      = %d\n",plni->plni_msgs_spare);
386         CDEBUG(D_NET, "peer_hash_size  = %d\n",plni->plni_peer_hash_size);
387         CDEBUG(D_NET, "eq_size         = %d\n",plni->plni_eq_size);
388         CDEBUG(D_NET, "max_msg_size    = %d\n",plni->plni_max_msg_size);
389         CDEBUG(D_NET, "buffer_size     = %d\n",plni->plni_buffer_size);
390
391         return 0;
392 }
393
394 ptllnd_buffer_t *
395 ptllnd_create_buffer (lnet_ni_t *ni)
396 {
397         ptllnd_ni_t     *plni = ni->ni_data;
398         ptllnd_buffer_t *buf;
399
400         LIBCFS_ALLOC(buf, sizeof(*buf));
401         if (buf == NULL) {
402                 CERROR("Can't allocate buffer descriptor\n");
403                 return NULL;
404         }
405
406         buf->plb_ni = ni;
407         buf->plb_posted = 0;
408         CFS_INIT_LIST_HEAD(&buf->plb_list);
409
410         LIBCFS_ALLOC(buf->plb_buffer, plni->plni_buffer_size);
411         if (buf->plb_buffer == NULL) {
412                 CERROR("Can't allocate buffer size %d\n",
413                        plni->plni_buffer_size);
414                 LIBCFS_FREE(buf, sizeof(*buf));
415                 return NULL;
416         }
417
418         list_add(&buf->plb_list, &plni->plni_buffers);
419         plni->plni_nbuffers++;
420
421         return buf;
422 }
423
424 void
425 ptllnd_destroy_buffer (ptllnd_buffer_t *buf)
426 {
427         ptllnd_ni_t     *plni = buf->plb_ni->ni_data;
428
429         LASSERT (!buf->plb_posted);
430
431         plni->plni_nbuffers--;
432         list_del(&buf->plb_list);
433         LIBCFS_FREE(buf->plb_buffer, plni->plni_buffer_size);
434         LIBCFS_FREE(buf, sizeof(*buf));
435 }
436
437 int
438 ptllnd_size_buffers (lnet_ni_t *ni, int delta)
439 {
440         ptllnd_ni_t     *plni = ni->ni_data;
441         ptllnd_buffer_t *buf;
442         int              nmsgs;
443         int              nbufs;
444         int              rc;
445
446         CDEBUG(D_NET, "nposted_buffers = %d (before)\n",plni->plni_nposted_buffers);
447         CDEBUG(D_NET, "nbuffers = %d (before)\n",plni->plni_nbuffers);
448
449         plni->plni_nmsgs += delta;
450         LASSERT(plni->plni_nmsgs >= 0);
451
452         nmsgs = plni->plni_nmsgs + plni->plni_msgs_spare;
453
454         nbufs = (nmsgs * plni->plni_max_msg_size + plni->plni_buffer_size - 1) /
455                 plni->plni_buffer_size;
456
457         while (nbufs > plni->plni_nbuffers) {
458                 buf = ptllnd_create_buffer(ni);
459
460                 if (buf == NULL)
461                         return -ENOMEM;
462
463                 rc = ptllnd_post_buffer(buf);
464                 if (rc != 0) {
465                         /* TODO - this path seems to orpahn the buffer
466                          * in a state where its not posted and will never be
467                          * However it does not leak the buffer as it's
468                          * already been put onto the global buffer list
469                          * and will be cleaned up
470                          */
471                         return rc;
472                 }
473         }
474
475         CDEBUG(D_NET, "nposted_buffers = %d (after)\n",plni->plni_nposted_buffers);
476         CDEBUG(D_NET, "nbuffers = %d (after)\n",plni->plni_nbuffers);
477         return 0;
478 }
479
480 void
481 ptllnd_destroy_buffers (lnet_ni_t *ni)
482 {
483         ptllnd_ni_t       *plni = ni->ni_data;
484         ptllnd_buffer_t   *buf;
485         struct list_head  *tmp;
486         struct list_head  *nxt;
487
488         CDEBUG(D_NET, "nposted_buffers = %d (before)\n",plni->plni_nposted_buffers);
489         CDEBUG(D_NET, "nbuffers = %d (before)\n",plni->plni_nbuffers);
490
491         list_for_each_safe(tmp, nxt, &plni->plni_buffers) {
492                 buf = list_entry(tmp, ptllnd_buffer_t, plb_list);
493
494                 //CDEBUG(D_NET, "buf=%p posted=%d\n",buf,buf->plb_posted);
495
496                 LASSERT (plni->plni_nbuffers > 0);
497                 if (buf->plb_posted) {
498                         time_t   start = cfs_time_current_sec();
499                         int      w = plni->plni_long_wait;
500
501                         LASSERT (plni->plni_nposted_buffers > 0);
502
503 #ifdef LUSTRE_PORTALS_UNLINK_SEMANTICS
504                         (void) PtlMDUnlink(buf->plb_md);
505
506                         while (buf->plb_posted) {
507                                 if (w > 0 && cfs_time_current_sec() > start + w/1000) {
508                                         CWARN("Waited %ds to unlink buffer\n",
509                                               (int)(cfs_time_current_sec() - start));
510                                         w *= 2;
511                                 }
512                                 ptllnd_wait(ni, w);
513                         }
514 #else
515                         while (buf->plb_posted) {
516                                 rc = PtlMDUnlink(buf->plb_md);
517                                 if (rc == PTL_OK) {
518                                         buf->plb_posted = 0;
519                                         plni->plni_nposted_buffers--;
520                                         break;
521                                 }
522                                 LASSERT (rc == PTL_MD_IN_USE);
523                                 if (w > 0 && cfs_time_current_sec() > start + w/1000) {
524                                         CWARN("Waited %ds to unlink buffer\n",
525                                               cfs_time_current_sec() - start);
526                                         w *= 2;
527                                 }
528                                 ptllnd_wait(ni, w);
529                         }
530 #endif
531                 }
532                 ptllnd_destroy_buffer(buf);
533         }
534
535         CDEBUG(D_NET, "nposted_buffers = %d (after)\n",plni->plni_nposted_buffers);
536         CDEBUG(D_NET, "nbuffers = %d (after)\n",plni->plni_nbuffers);
537
538         LASSERT (plni->plni_nposted_buffers == 0);
539         LASSERT (plni->plni_nbuffers == 0);
540 }
541
542 int
543 ptllnd_create_peer_hash (lnet_ni_t *ni)
544 {
545         ptllnd_ni_t *plni = ni->ni_data;
546         int          i;
547
548         plni->plni_npeers = 0;
549
550         LIBCFS_ALLOC(plni->plni_peer_hash,
551                      plni->plni_peer_hash_size * sizeof(*plni->plni_peer_hash));
552         if (plni->plni_peer_hash == NULL) {
553                 CERROR("Can't allocate ptllnd peer hash (size %d)\n",
554                        plni->plni_peer_hash_size);
555                 return -ENOMEM;
556         }
557
558         for (i = 0; i < plni->plni_peer_hash_size; i++)
559                 CFS_INIT_LIST_HEAD(&plni->plni_peer_hash[i]);
560
561         return 0;
562 }
563
564 void
565 ptllnd_destroy_peer_hash (lnet_ni_t *ni)
566 {
567         ptllnd_ni_t    *plni = ni->ni_data;
568         int             i;
569
570         LASSERT( plni->plni_npeers == 0);
571
572         for (i = 0; i < plni->plni_peer_hash_size; i++)
573                 LASSERT (list_empty(&plni->plni_peer_hash[i]));
574
575         LIBCFS_FREE(plni->plni_peer_hash,
576                     plni->plni_peer_hash_size * sizeof(*plni->plni_peer_hash));
577 }
578
579 void
580 ptllnd_close_peers (lnet_ni_t *ni)
581 {
582         ptllnd_ni_t    *plni = ni->ni_data;
583         ptllnd_peer_t  *plp;
584         int             i;
585
586         for (i = 0; i < plni->plni_peer_hash_size; i++)
587                 while (!list_empty(&plni->plni_peer_hash[i])) {
588                         plp = list_entry(plni->plni_peer_hash[i].next,
589                                          ptllnd_peer_t, plp_list);
590
591                         ptllnd_close_peer(plp, 0);
592                 }
593 }
594
595 int
596 ptllnd_ctl(lnet_ni_t *ni, unsigned int cmd, void *arg)
597 {
598         switch (cmd) {
599         case IOC_LIBCFS_DEBUG_PEER:
600                 ptllnd_dump_debug(ni, *((lnet_process_id_t *)arg));
601                 return 0;
602
603         default:
604                 return -EINVAL;
605         }
606 }
607
608 __u64
609 ptllnd_get_timestamp(void)
610 {
611         struct timeval  tv;
612         int             rc = gettimeofday(&tv, NULL);
613
614         LASSERT (rc == 0);
615         return ((__u64)tv.tv_sec) * 1000000 + tv.tv_usec;
616 }
617
618 void
619 ptllnd_shutdown (lnet_ni_t *ni)
620 {
621         ptllnd_ni_t *plni = ni->ni_data;
622         int          rc;
623         time_t       start = cfs_time_current_sec();
624         int          w = plni->plni_long_wait;
625
626         LASSERT (ptllnd_ni_count == 1);
627         plni->plni_max_tx_history = 0;
628
629         ptllnd_cull_tx_history(plni);
630
631         ptllnd_close_peers(ni);
632         ptllnd_destroy_buffers(ni);
633
634         while (plni->plni_npeers > 0) {
635                 if (w > 0 && cfs_time_current_sec() > start + w/1000) {
636                         CWARN("Waited %ds for peers to shutdown\n",
637                               (int)(cfs_time_current_sec() - start));
638                         w *= 2;
639                 }
640                 ptllnd_wait(ni, w);
641         }
642
643         LASSERT (plni->plni_ntxs == 0);
644         LASSERT (plni->plni_nrxs == 0);
645
646         rc = PtlEQFree(plni->plni_eqh);
647         LASSERT (rc == PTL_OK);
648
649         rc = PtlNIFini(plni->plni_nih);
650         LASSERT (rc == PTL_OK);
651
652         ptllnd_destroy_peer_hash(ni);
653         LIBCFS_FREE(plni, sizeof(*plni));
654         ptllnd_ni_count--;
655 }
656
657 int
658 ptllnd_startup (lnet_ni_t *ni)
659 {
660         ptllnd_ni_t *plni;
661         int          rc;
662
663         /* could get limits from portals I guess... */
664         ni->ni_maxtxcredits =
665         ni->ni_peertxcredits = 1000;
666
667         if (ptllnd_ni_count != 0) {
668                 CERROR("Can't have > 1 instance of ptllnd\n");
669                 return -EPERM;
670         }
671
672         ptllnd_ni_count++;
673
674         rc = ptllnd_history_init();
675         if (rc != 0) {
676                 CERROR("Can't init history\n");
677                 goto failed0;
678         }
679
680         LIBCFS_ALLOC(plni, sizeof(*plni));
681         if (plni == NULL) {
682                 CERROR("Can't allocate ptllnd state\n");
683                 rc = -ENOMEM;
684                 goto failed0;
685         }
686
687         ni->ni_data = plni;
688
689         plni->plni_stamp = ptllnd_get_timestamp();
690         plni->plni_nrxs = 0;
691         plni->plni_ntxs = 0;
692         plni->plni_ntx_history = 0;
693         plni->plni_watchdog_peeridx = 0;
694         plni->plni_watchdog_nextt = cfs_time_current_sec();
695         CFS_INIT_LIST_HEAD(&plni->plni_zombie_txs);
696         CFS_INIT_LIST_HEAD(&plni->plni_tx_history);
697
698         /*
699          *  Initilize buffer related data structures
700          */
701         CFS_INIT_LIST_HEAD(&plni->plni_buffers);
702         plni->plni_nbuffers = 0;
703         plni->plni_nposted_buffers = 0;
704
705         rc = ptllnd_get_tunables(ni);
706         if (rc != 0)
707                 goto failed1;
708
709         rc = ptllnd_create_peer_hash(ni);
710         if (rc != 0)
711                 goto failed1;
712
713         /* NB I most probably won't get the PID I requested here.  It doesn't
714          * matter because I don't need a fixed PID (only connection acceptors
715          * need a "well known" PID). */
716
717         rc = PtlNIInit(PTL_IFACE_DEFAULT, plni->plni_ptllnd_pid,
718                        NULL, NULL, &plni->plni_nih);
719         if (rc != PTL_OK && rc != PTL_IFACE_DUP) {
720                 CERROR("PtlNIInit failed: %s(%d)\n",
721                        ptllnd_errtype2str(rc), rc);
722                 rc = -ENODEV;
723                 goto failed2;
724         }
725
726         rc = PtlEQAlloc(plni->plni_nih, plni->plni_eq_size,
727                         PTL_EQ_HANDLER_NONE, &plni->plni_eqh);
728         if (rc != PTL_OK) {
729                 CERROR("PtlEQAlloc failed: %s(%d)\n",
730                        ptllnd_errtype2str(rc), rc);
731                 rc = -ENODEV;
732                 goto failed3;
733         }
734
735         /*
736          * Fetch the Portals NID
737          */
738         rc = PtlGetId(plni->plni_nih, &plni->plni_portals_id);
739         if (rc != PTL_OK) {
740                 CERROR ("PtlGetID failed : %s(%d)\n",
741                         ptllnd_errtype2str(rc), rc);
742                 rc = -EINVAL;
743                 goto failed4;
744         }
745
746         /*
747          * Create the new NID.  Based on the LND network type
748          * and the lower ni's address data.
749          */
750         ni->ni_nid = ptllnd_ptl2lnetnid(ni, plni->plni_portals_id.nid);
751
752         CDEBUG(D_NET, "ptl id  =%s\n", ptllnd_ptlid2str(plni->plni_portals_id));
753         CDEBUG(D_NET, "lnet id =%s (passed back)\n",
754                libcfs_id2str((lnet_process_id_t) {
755                        .nid = ni->ni_nid, .pid = the_lnet.ln_pid}));
756
757         rc = ptllnd_size_buffers(ni, 0);
758         if (rc != 0)
759                 goto failed4;
760
761         return 0;
762
763  failed4:
764         ptllnd_destroy_buffers(ni);
765         PtlEQFree(plni->plni_eqh);
766  failed3:
767         PtlNIFini(plni->plni_nih);
768  failed2:
769         ptllnd_destroy_peer_hash(ni);
770  failed1:
771         LIBCFS_FREE(plni, sizeof(*plni));
772  failed0:
773         ptllnd_history_fini();
774         ptllnd_ni_count--;
775         CDEBUG(D_NET, "<<< rc=%d\n",rc);
776         return rc;
777 }
778
779 const char *ptllnd_evtype2str(int type)
780 {
781 #define DO_TYPE(x) case x: return #x;
782         switch(type)
783         {
784                 DO_TYPE(PTL_EVENT_GET_START);
785                 DO_TYPE(PTL_EVENT_GET_END);
786                 DO_TYPE(PTL_EVENT_PUT_START);
787                 DO_TYPE(PTL_EVENT_PUT_END);
788                 DO_TYPE(PTL_EVENT_REPLY_START);
789                 DO_TYPE(PTL_EVENT_REPLY_END);
790                 DO_TYPE(PTL_EVENT_ACK);
791                 DO_TYPE(PTL_EVENT_SEND_START);
792                 DO_TYPE(PTL_EVENT_SEND_END);
793                 DO_TYPE(PTL_EVENT_UNLINK);
794         default:
795                 return "<unknown event type>";
796         }
797 #undef DO_TYPE
798 }
799
800 const char *ptllnd_msgtype2str(int type)
801 {
802 #define DO_TYPE(x) case x: return #x;
803         switch(type)
804         {
805                 DO_TYPE(PTLLND_MSG_TYPE_INVALID);
806                 DO_TYPE(PTLLND_MSG_TYPE_PUT);
807                 DO_TYPE(PTLLND_MSG_TYPE_GET);
808                 DO_TYPE(PTLLND_MSG_TYPE_IMMEDIATE);
809                 DO_TYPE(PTLLND_MSG_TYPE_HELLO);
810                 DO_TYPE(PTLLND_MSG_TYPE_NOOP);
811                 DO_TYPE(PTLLND_MSG_TYPE_NAK);
812         default:
813                 return "<unknown msg type>";
814         }
815 #undef DO_TYPE
816 }
817
818 const char *ptllnd_errtype2str(int type)
819 {
820 #define DO_TYPE(x) case x: return #x;
821         switch(type)
822         {
823                 DO_TYPE(PTL_OK);
824                 DO_TYPE(PTL_SEGV);
825                 DO_TYPE(PTL_NO_SPACE);
826                 DO_TYPE(PTL_ME_IN_USE);
827                 DO_TYPE(PTL_NAL_FAILED);
828                 DO_TYPE(PTL_NO_INIT);
829                 DO_TYPE(PTL_IFACE_DUP);
830                 DO_TYPE(PTL_IFACE_INVALID);
831                 DO_TYPE(PTL_HANDLE_INVALID);
832                 DO_TYPE(PTL_MD_INVALID);
833                 DO_TYPE(PTL_ME_INVALID);
834                 DO_TYPE(PTL_PROCESS_INVALID);
835                 DO_TYPE(PTL_PT_INDEX_INVALID);
836                 DO_TYPE(PTL_SR_INDEX_INVALID);
837                 DO_TYPE(PTL_EQ_INVALID);
838                 DO_TYPE(PTL_EQ_DROPPED);
839                 DO_TYPE(PTL_EQ_EMPTY);
840                 DO_TYPE(PTL_MD_NO_UPDATE);
841                 DO_TYPE(PTL_FAIL);
842                 DO_TYPE(PTL_AC_INDEX_INVALID);
843                 DO_TYPE(PTL_MD_ILLEGAL);
844                 DO_TYPE(PTL_ME_LIST_TOO_LONG);
845                 DO_TYPE(PTL_MD_IN_USE);
846                 DO_TYPE(PTL_NI_INVALID);
847                 DO_TYPE(PTL_PID_INVALID);
848                 DO_TYPE(PTL_PT_FULL);
849                 DO_TYPE(PTL_VAL_FAILED);
850                 DO_TYPE(PTL_NOT_IMPLEMENTED);
851                 DO_TYPE(PTL_NO_ACK);
852                 DO_TYPE(PTL_EQ_IN_USE);
853                 DO_TYPE(PTL_PID_IN_USE);
854                 DO_TYPE(PTL_INV_EQ_SIZE);
855                 DO_TYPE(PTL_AGAIN);
856         default:
857                 return "<unknown error type>";
858         }
859 #undef DO_TYPE
860 }