Whamcloud - gitweb
LU-56 lnet: Partitioned LNet networks
[fs/lustre-release.git] / lnet / lnet / api-ni.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  *
30  * Copyright (c) 2011, Whamcloud, Inc.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #define DEBUG_SUBSYSTEM S_LNET
38 #include <lnet/lib-lnet.h>
39
40 #ifdef __KERNEL__
41 #define D_LNI D_CONSOLE
42 #else
43 #define D_LNI D_CONFIG
44 #endif
45
46 lnet_t      the_lnet;                           /* THE state of the network */
47
48 #ifdef __KERNEL__
49
50 static char *ip2nets = "";
51 CFS_MODULE_PARM(ip2nets, "s", charp, 0444,
52                 "LNET network <- IP table");
53
54 static char *networks = "";
55 CFS_MODULE_PARM(networks, "s", charp, 0444,
56                 "local networks");
57
58 static char *routes = "";
59 CFS_MODULE_PARM(routes, "s", charp, 0444,
60                 "routes to non-local networks");
61
62 char *
63 lnet_get_routes(void)
64 {
65         return routes;
66 }
67
68 char *
69 lnet_get_networks(void)
70 {
71         char   *nets;
72         int     rc;
73
74         if (*networks != 0 && *ip2nets != 0) {
75                 LCONSOLE_ERROR_MSG(0x101, "Please specify EITHER 'networks' or "
76                                    "'ip2nets' but not both at once\n");
77                 return NULL;
78         }
79
80         if (*ip2nets != 0) {
81                 rc = lnet_parse_ip2nets(&nets, ip2nets);
82                 return (rc == 0) ? nets : NULL;
83         }
84
85         if (*networks != 0)
86                 return networks;
87
88         return "tcp";
89 }
90
91 void
92 lnet_init_locks(void)
93 {
94         cfs_spin_lock_init(&the_lnet.ln_eq_wait_lock);
95         cfs_waitq_init(&the_lnet.ln_eq_waitq);
96         cfs_mutex_init(&the_lnet.ln_lnd_mutex);
97         cfs_mutex_init(&the_lnet.ln_api_mutex);
98 }
99
100 void
101 lnet_fini_locks(void)
102 {
103 }
104
105 #else
106
107 char *
108 lnet_get_routes(void)
109 {
110         char *str = getenv("LNET_ROUTES");
111
112         return (str == NULL) ? "" : str;
113 }
114
115 char *
116 lnet_get_networks (void)
117 {
118         static char       default_networks[256];
119         char             *networks = getenv ("LNET_NETWORKS");
120         char             *ip2nets  = getenv ("LNET_IP2NETS");
121         char             *str;
122         char             *sep;
123         int               len;
124         int               nob;
125         int               rc;
126         cfs_list_t       *tmp;
127
128 #ifdef NOT_YET
129         if (networks != NULL && ip2nets != NULL) {
130                 LCONSOLE_ERROR_MSG(0x103, "Please set EITHER 'LNET_NETWORKS' or"
131                                    " 'LNET_IP2NETS' but not both at once\n");
132                 return NULL;
133         }
134
135         if (ip2nets != NULL) {
136                 rc = lnet_parse_ip2nets(&networks, ip2nets);
137                 return (rc == 0) ? networks : NULL;
138         }
139 #else
140         SET_BUT_UNUSED(ip2nets);
141         SET_BUT_UNUSED(rc);
142 #endif
143         if (networks != NULL)
144                 return networks;
145
146         /* In userland, the default 'networks=' is the list of known net types */
147
148         len = sizeof(default_networks);
149         str = default_networks;
150         *str = 0;
151         sep = "";
152
153         cfs_list_for_each (tmp, &the_lnet.ln_lnds) {
154                 lnd_t *lnd = cfs_list_entry(tmp, lnd_t, lnd_list);
155
156                 nob = snprintf(str, len, "%s%s", sep,
157                                libcfs_lnd2str(lnd->lnd_type));
158                 len -= nob;
159                 if (len < 0) {
160                         /* overflowed the string; leave it where it was */
161                         *str = 0;
162                         break;
163                 }
164
165                 str += nob;
166                 sep = ",";
167         }
168
169         return default_networks;
170 }
171
172 # ifndef HAVE_LIBPTHREAD
173
174 void lnet_init_locks(void)
175 {
176         the_lnet.ln_eq_wait_lock = 0;
177         the_lnet.ln_lnd_mutex = 0;
178         the_lnet.ln_api_mutex = 0;
179 }
180
181 void lnet_fini_locks(void)
182 {
183         LASSERT(the_lnet.ln_api_mutex == 0);
184         LASSERT(the_lnet.ln_lnd_mutex == 0);
185         LASSERT(the_lnet.ln_eq_wait_lock == 0);
186 }
187
188 # else
189
190 void lnet_init_locks(void)
191 {
192         pthread_cond_init(&the_lnet.ln_eq_cond, NULL);
193         pthread_mutex_init(&the_lnet.ln_eq_wait_lock, NULL);
194         pthread_mutex_init(&the_lnet.ln_lnd_mutex, NULL);
195         pthread_mutex_init(&the_lnet.ln_api_mutex, NULL);
196 }
197
198 void lnet_fini_locks(void)
199 {
200         pthread_mutex_destroy(&the_lnet.ln_api_mutex);
201         pthread_mutex_destroy(&the_lnet.ln_lnd_mutex);
202         pthread_mutex_destroy(&the_lnet.ln_eq_wait_lock);
203         pthread_cond_destroy(&the_lnet.ln_eq_cond);
204 }
205
206 # endif
207 #endif
208
209 static int
210 lnet_create_locks(void)
211 {
212         lnet_init_locks();
213
214         the_lnet.ln_res_lock = cfs_percpt_lock_alloc(lnet_cpt_table());
215         if (the_lnet.ln_res_lock == NULL)
216                 goto failed;
217
218         the_lnet.ln_net_lock = cfs_percpt_lock_alloc(lnet_cpt_table());
219         if (the_lnet.ln_net_lock == NULL)
220                 goto failed;
221
222         return 0;
223
224  failed:
225         lnet_fini_locks();
226         return -ENOMEM;
227 }
228
229 static void
230 lnet_destroy_locks(void)
231 {
232         if (the_lnet.ln_res_lock != NULL) {
233                 cfs_percpt_lock_free(the_lnet.ln_res_lock);
234                 the_lnet.ln_res_lock = NULL;
235         }
236
237         if (the_lnet.ln_net_lock != NULL) {
238                 cfs_percpt_lock_free(the_lnet.ln_net_lock);
239                 the_lnet.ln_net_lock = NULL;
240         }
241
242         lnet_fini_locks();
243 }
244
245 void lnet_assert_wire_constants (void)
246 {
247         /* Wire protocol assertions generated by 'wirecheck'
248          * running on Linux robert.bartonsoftware.com 2.6.8-1.521
249          * #1 Mon Aug 16 09:01:18 EDT 2004 i686 athlon i386 GNU/Linux
250          * with gcc version 3.3.3 20040412 (Red Hat Linux 3.3.3-7) */
251
252         /* Constants... */
253         CLASSERT (LNET_PROTO_TCP_MAGIC == 0xeebc0ded);
254         CLASSERT (LNET_PROTO_TCP_VERSION_MAJOR == 1);
255         CLASSERT (LNET_PROTO_TCP_VERSION_MINOR == 0);
256         CLASSERT (LNET_MSG_ACK == 0);
257         CLASSERT (LNET_MSG_PUT == 1);
258         CLASSERT (LNET_MSG_GET == 2);
259         CLASSERT (LNET_MSG_REPLY == 3);
260         CLASSERT (LNET_MSG_HELLO == 4);
261
262         /* Checks for struct ptl_handle_wire_t */
263         CLASSERT ((int)sizeof(lnet_handle_wire_t) == 16);
264         CLASSERT ((int)offsetof(lnet_handle_wire_t, wh_interface_cookie) == 0);
265         CLASSERT ((int)sizeof(((lnet_handle_wire_t *)0)->wh_interface_cookie) == 8);
266         CLASSERT ((int)offsetof(lnet_handle_wire_t, wh_object_cookie) == 8);
267         CLASSERT ((int)sizeof(((lnet_handle_wire_t *)0)->wh_object_cookie) == 8);
268
269         /* Checks for struct lnet_magicversion_t */
270         CLASSERT ((int)sizeof(lnet_magicversion_t) == 8);
271         CLASSERT ((int)offsetof(lnet_magicversion_t, magic) == 0);
272         CLASSERT ((int)sizeof(((lnet_magicversion_t *)0)->magic) == 4);
273         CLASSERT ((int)offsetof(lnet_magicversion_t, version_major) == 4);
274         CLASSERT ((int)sizeof(((lnet_magicversion_t *)0)->version_major) == 2);
275         CLASSERT ((int)offsetof(lnet_magicversion_t, version_minor) == 6);
276         CLASSERT ((int)sizeof(((lnet_magicversion_t *)0)->version_minor) == 2);
277
278         /* Checks for struct lnet_hdr_t */
279         CLASSERT ((int)sizeof(lnet_hdr_t) == 72);
280         CLASSERT ((int)offsetof(lnet_hdr_t, dest_nid) == 0);
281         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->dest_nid) == 8);
282         CLASSERT ((int)offsetof(lnet_hdr_t, src_nid) == 8);
283         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->src_nid) == 8);
284         CLASSERT ((int)offsetof(lnet_hdr_t, dest_pid) == 16);
285         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->dest_pid) == 4);
286         CLASSERT ((int)offsetof(lnet_hdr_t, src_pid) == 20);
287         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->src_pid) == 4);
288         CLASSERT ((int)offsetof(lnet_hdr_t, type) == 24);
289         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->type) == 4);
290         CLASSERT ((int)offsetof(lnet_hdr_t, payload_length) == 28);
291         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->payload_length) == 4);
292         CLASSERT ((int)offsetof(lnet_hdr_t, msg) == 32);
293         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg) == 40);
294
295         /* Ack */
296         CLASSERT ((int)offsetof(lnet_hdr_t, msg.ack.dst_wmd) == 32);
297         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.ack.dst_wmd) == 16);
298         CLASSERT ((int)offsetof(lnet_hdr_t, msg.ack.match_bits) == 48);
299         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.ack.match_bits) == 8);
300         CLASSERT ((int)offsetof(lnet_hdr_t, msg.ack.mlength) == 56);
301         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.ack.mlength) == 4);
302
303         /* Put */
304         CLASSERT ((int)offsetof(lnet_hdr_t, msg.put.ack_wmd) == 32);
305         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.put.ack_wmd) == 16);
306         CLASSERT ((int)offsetof(lnet_hdr_t, msg.put.match_bits) == 48);
307         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.put.match_bits) == 8);
308         CLASSERT ((int)offsetof(lnet_hdr_t, msg.put.hdr_data) == 56);
309         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.put.hdr_data) == 8);
310         CLASSERT ((int)offsetof(lnet_hdr_t, msg.put.ptl_index) == 64);
311         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.put.ptl_index) == 4);
312         CLASSERT ((int)offsetof(lnet_hdr_t, msg.put.offset) == 68);
313         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.put.offset) == 4);
314
315         /* Get */
316         CLASSERT ((int)offsetof(lnet_hdr_t, msg.get.return_wmd) == 32);
317         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.get.return_wmd) == 16);
318         CLASSERT ((int)offsetof(lnet_hdr_t, msg.get.match_bits) == 48);
319         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.get.match_bits) == 8);
320         CLASSERT ((int)offsetof(lnet_hdr_t, msg.get.ptl_index) == 56);
321         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.get.ptl_index) == 4);
322         CLASSERT ((int)offsetof(lnet_hdr_t, msg.get.src_offset) == 60);
323         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.get.src_offset) == 4);
324         CLASSERT ((int)offsetof(lnet_hdr_t, msg.get.sink_length) == 64);
325         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.get.sink_length) == 4);
326
327         /* Reply */
328         CLASSERT ((int)offsetof(lnet_hdr_t, msg.reply.dst_wmd) == 32);
329         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.reply.dst_wmd) == 16);
330
331         /* Hello */
332         CLASSERT ((int)offsetof(lnet_hdr_t, msg.hello.incarnation) == 32);
333         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.hello.incarnation) == 8);
334         CLASSERT ((int)offsetof(lnet_hdr_t, msg.hello.type) == 40);
335         CLASSERT ((int)sizeof(((lnet_hdr_t *)0)->msg.hello.type) == 4);
336 }
337
338 lnd_t *
339 lnet_find_lnd_by_type (int type)
340 {
341         lnd_t              *lnd;
342         cfs_list_t         *tmp;
343
344         /* holding lnd mutex */
345         cfs_list_for_each (tmp, &the_lnet.ln_lnds) {
346                 lnd = cfs_list_entry(tmp, lnd_t, lnd_list);
347
348                 if ((int)lnd->lnd_type == type)
349                         return lnd;
350         }
351
352         return NULL;
353 }
354
355 void
356 lnet_register_lnd (lnd_t *lnd)
357 {
358         LNET_MUTEX_LOCK(&the_lnet.ln_lnd_mutex);
359
360         LASSERT (the_lnet.ln_init);
361         LASSERT (libcfs_isknown_lnd(lnd->lnd_type));
362         LASSERT (lnet_find_lnd_by_type(lnd->lnd_type) == NULL);
363
364         cfs_list_add_tail (&lnd->lnd_list, &the_lnet.ln_lnds);
365         lnd->lnd_refcount = 0;
366
367         CDEBUG(D_NET, "%s LND registered\n", libcfs_lnd2str(lnd->lnd_type));
368
369         LNET_MUTEX_UNLOCK(&the_lnet.ln_lnd_mutex);
370 }
371
372 void
373 lnet_unregister_lnd (lnd_t *lnd)
374 {
375         LNET_MUTEX_LOCK(&the_lnet.ln_lnd_mutex);
376
377         LASSERT (the_lnet.ln_init);
378         LASSERT (lnet_find_lnd_by_type(lnd->lnd_type) == lnd);
379         LASSERT (lnd->lnd_refcount == 0);
380
381         cfs_list_del (&lnd->lnd_list);
382         CDEBUG(D_NET, "%s LND unregistered\n", libcfs_lnd2str(lnd->lnd_type));
383
384         LNET_MUTEX_UNLOCK(&the_lnet.ln_lnd_mutex);
385 }
386
387 void
388 lnet_counters_get(lnet_counters_t *counters)
389 {
390         lnet_counters_t *ctr;
391         int             i;
392
393         memset(counters, 0, sizeof(*counters));
394
395         lnet_net_lock(LNET_LOCK_EX);
396
397         cfs_percpt_for_each(ctr, i, the_lnet.ln_counters) {
398                 counters->msgs_max     += ctr->msgs_max;
399                 counters->msgs_alloc   += ctr->msgs_alloc;
400                 counters->errors       += ctr->errors;
401                 counters->send_count   += ctr->send_count;
402                 counters->recv_count   += ctr->recv_count;
403                 counters->route_count  += ctr->route_count;
404                 counters->drop_length  += ctr->drop_length;
405                 counters->send_length  += ctr->send_length;
406                 counters->recv_length  += ctr->recv_length;
407                 counters->route_length += ctr->route_length;
408                 counters->drop_length  += ctr->drop_length;
409
410         }
411         lnet_net_unlock(LNET_LOCK_EX);
412 }
413 EXPORT_SYMBOL(lnet_counters_get);
414
415 void
416 lnet_counters_reset(void)
417 {
418         lnet_counters_t *counters;
419         int             i;
420
421         lnet_net_lock(LNET_LOCK_EX);
422
423         cfs_percpt_for_each(counters, i, the_lnet.ln_counters)
424                 memset(counters, 0, sizeof(lnet_counters_t));
425
426         lnet_net_unlock(LNET_LOCK_EX);
427 }
428 EXPORT_SYMBOL(lnet_counters_reset);
429
430 #ifdef LNET_USE_LIB_FREELIST
431
432 int
433 lnet_freelist_init (lnet_freelist_t *fl, int n, int size)
434 {
435         char *space;
436
437         LASSERT (n > 0);
438
439         size += offsetof (lnet_freeobj_t, fo_contents);
440
441         LIBCFS_ALLOC(space, n * size);
442         if (space == NULL)
443                 return (-ENOMEM);
444
445         CFS_INIT_LIST_HEAD (&fl->fl_list);
446         fl->fl_objs = space;
447         fl->fl_nobjs = n;
448         fl->fl_objsize = size;
449
450         do
451         {
452                 memset (space, 0, size);
453                 cfs_list_add ((cfs_list_t *)space, &fl->fl_list);
454                 space += size;
455         } while (--n != 0);
456
457         return (0);
458 }
459
460 void
461 lnet_freelist_fini (lnet_freelist_t *fl)
462 {
463         cfs_list_t       *el;
464         int               count;
465
466         if (fl->fl_nobjs == 0)
467                 return;
468
469         count = 0;
470         for (el = fl->fl_list.next; el != &fl->fl_list; el = el->next)
471                 count++;
472
473         LASSERT (count == fl->fl_nobjs);
474
475         LIBCFS_FREE(fl->fl_objs, fl->fl_nobjs * fl->fl_objsize);
476         memset (fl, 0, sizeof (*fl));
477 }
478
479 #endif /* LNET_USE_LIB_FREELIST */
480
481 __u64
482 lnet_create_interface_cookie (void)
483 {
484         /* NB the interface cookie in wire handles guards against delayed
485          * replies and ACKs appearing valid after reboot. Initialisation time,
486          * even if it's only implemented to millisecond resolution is probably
487          * easily good enough. */
488         struct timeval tv;
489         __u64          cookie;
490 #ifndef __KERNEL__
491         int            rc = gettimeofday (&tv, NULL);
492         LASSERT (rc == 0);
493 #else
494         cfs_gettimeofday(&tv);
495 #endif
496         cookie = tv.tv_sec;
497         cookie *= 1000000;
498         cookie += tv.tv_usec;
499         return cookie;
500 }
501
502 static char *
503 lnet_res_type2str(int type)
504 {
505         switch (type) {
506         default:
507                 LBUG();
508         case LNET_COOKIE_TYPE_MD:
509                 return "MD";
510         case LNET_COOKIE_TYPE_ME:
511                 return "ME";
512         case LNET_COOKIE_TYPE_EQ:
513                 return "EQ";
514         }
515 }
516
517 void
518 lnet_res_container_cleanup(struct lnet_res_container *rec)
519 {
520         int     count = 0;
521
522         if (rec->rec_type == 0) /* not set yet, it's a uninitialized */
523                 return;
524
525         while (!cfs_list_empty(&rec->rec_active)) {
526                 cfs_list_t *e = rec->rec_active.next;
527
528                 cfs_list_del_init(e);
529                 if (rec->rec_type == LNET_COOKIE_TYPE_EQ) {
530                         lnet_eq_free(cfs_list_entry(e, lnet_eq_t, eq_list));
531
532                 } else if (rec->rec_type == LNET_COOKIE_TYPE_MD) {
533                         lnet_md_free(cfs_list_entry(e, lnet_libmd_t, md_list));
534
535                 } else { /* NB: Active MEs should be attached on portals */
536                         LBUG();
537                 }
538                 count++;
539         }
540
541         if (count > 0) {
542                 /* Found alive MD/ME/EQ, user really should unlink/free
543                  * all of them before finalize LNet, but if someone didn't,
544                  * we have to recycle garbage for him */
545                 CERROR("%d active elements on exit of %s container\n",
546                        count, lnet_res_type2str(rec->rec_type));
547         }
548
549 #ifdef LNET_USE_LIB_FREELIST
550         lnet_freelist_fini(&rec->rec_freelist);
551 #endif
552         if (rec->rec_lh_hash != NULL) {
553                 LIBCFS_FREE(rec->rec_lh_hash,
554                             LNET_LH_HASH_SIZE * sizeof(rec->rec_lh_hash[0]));
555                 rec->rec_lh_hash = NULL;
556         }
557
558         rec->rec_type = 0; /* mark it as finalized */
559 }
560
561 int
562 lnet_res_container_setup(struct lnet_res_container *rec,
563                          int cpt, int type, int objnum, int objsz)
564 {
565         int     rc = 0;
566         int     i;
567
568         LASSERT(rec->rec_type == 0);
569
570         rec->rec_type = type;
571         CFS_INIT_LIST_HEAD(&rec->rec_active);
572
573 #ifdef LNET_USE_LIB_FREELIST
574         memset(&rec->rec_freelist, 0, sizeof(rec->rec_freelist));
575         rc = lnet_freelist_init(&rec->rec_freelist, objnum, objsz);
576         if (rc != 0)
577                 goto out;
578 #endif
579         rec->rec_lh_cookie = (cpt << LNET_COOKIE_TYPE_BITS) | type;
580
581         /* Arbitrary choice of hash table size */
582         LIBCFS_CPT_ALLOC(rec->rec_lh_hash, lnet_cpt_table(), cpt,
583                          LNET_LH_HASH_SIZE * sizeof(rec->rec_lh_hash[0]));
584         if (rec->rec_lh_hash == NULL) {
585                 rc = -ENOMEM;
586                 goto out;
587         }
588
589         for (i = 0; i < LNET_LH_HASH_SIZE; i++)
590                 CFS_INIT_LIST_HEAD(&rec->rec_lh_hash[i]);
591
592         return 0;
593
594 out:
595         CERROR("Failed to setup %s resource container\n",
596                lnet_res_type2str(type));
597         lnet_res_container_cleanup(rec);
598         return rc;
599 }
600
601 static void
602 lnet_res_containers_destroy(struct lnet_res_container **recs)
603 {
604         struct lnet_res_container       *rec;
605         int                             i;
606
607         cfs_percpt_for_each(rec, i, recs)
608                 lnet_res_container_cleanup(rec);
609
610         cfs_percpt_free(recs);
611 }
612
613 static struct lnet_res_container **
614 lnet_res_containers_create(int type, int objnum, int objsz)
615 {
616         struct lnet_res_container       **recs;
617         struct lnet_res_container       *rec;
618         int                             rc;
619         int                             i;
620
621         recs = cfs_percpt_alloc(lnet_cpt_table(), sizeof(*rec));
622         if (recs == NULL) {
623                 CERROR("Failed to allocate %s resource containers\n",
624                        lnet_res_type2str(type));
625                 return NULL;
626         }
627
628         cfs_percpt_for_each(rec, i, recs) {
629                 rc = lnet_res_container_setup(rec, i, type, objnum, objsz);
630                 if (rc != 0) {
631                         lnet_res_containers_destroy(recs);
632                         return NULL;
633                 }
634         }
635
636         return recs;
637 }
638
639 lnet_libhandle_t *
640 lnet_res_lh_lookup(struct lnet_res_container *rec, __u64 cookie)
641 {
642         /* ALWAYS called with lnet_res_lock held */
643         cfs_list_t              *head;
644         lnet_libhandle_t        *lh;
645         unsigned int            hash;
646
647         if ((cookie & (LNET_COOKIE_TYPES - 1)) != rec->rec_type)
648                 return NULL;
649
650         hash = cookie >> (LNET_COOKIE_TYPE_BITS + LNET_CPT_BITS);
651         head = &rec->rec_lh_hash[hash & LNET_LH_HASH_MASK];
652
653         cfs_list_for_each_entry(lh, head, lh_hash_chain) {
654                 if (lh->lh_cookie == cookie)
655                         return lh;
656         }
657
658         return NULL;
659 }
660
661 void
662 lnet_res_lh_initialize(struct lnet_res_container *rec, lnet_libhandle_t *lh)
663 {
664         /* ALWAYS called with lnet_res_lock held */
665         unsigned int    ibits = LNET_COOKIE_TYPE_BITS + LNET_CPT_BITS;
666         unsigned int    hash;
667
668         lh->lh_cookie = rec->rec_lh_cookie;
669         rec->rec_lh_cookie += 1 << ibits;
670
671         hash = (lh->lh_cookie >> ibits) & LNET_LH_HASH_MASK;
672
673         cfs_list_add(&lh->lh_hash_chain, &rec->rec_lh_hash[hash]);
674 }
675
676 #ifndef __KERNEL__
677 /**
678  * Reserved API - do not use.
679  * Temporary workaround to allow uOSS and test programs force server
680  * mode in userspace. See comments near ln_server_mode_flag in
681  * lnet/lib-types.h */
682
683 void
684 lnet_server_mode() {
685         the_lnet.ln_server_mode_flag = 1;
686 }
687 #endif
688
689 int lnet_unprepare(void);
690
691 int
692 lnet_prepare(lnet_pid_t requested_pid)
693 {
694         /* Prepare to bring up the network */
695         struct lnet_res_container **recs;
696         int                       rc = 0;
697
698         LASSERT (the_lnet.ln_refcount == 0);
699
700         the_lnet.ln_routing = 0;
701
702 #ifdef __KERNEL__
703         LASSERT ((requested_pid & LNET_PID_USERFLAG) == 0);
704         the_lnet.ln_pid = requested_pid;
705 #else
706         if (the_lnet.ln_server_mode_flag) {/* server case (uOSS) */
707                 LASSERT ((requested_pid & LNET_PID_USERFLAG) == 0);
708
709                 if (cfs_curproc_uid())/* Only root can run user-space server */
710                         return -EPERM;
711                 the_lnet.ln_pid = requested_pid;
712
713         } else {/* client case (liblustre) */
714
715                 /* My PID must be unique on this node and flag I'm userspace */
716                 the_lnet.ln_pid = getpid() | LNET_PID_USERFLAG;
717         }
718 #endif
719
720         CFS_INIT_LIST_HEAD(&the_lnet.ln_test_peers);
721         CFS_INIT_LIST_HEAD(&the_lnet.ln_nis);
722         CFS_INIT_LIST_HEAD(&the_lnet.ln_nis_zombie);
723         CFS_INIT_LIST_HEAD(&the_lnet.ln_remote_nets);
724         CFS_INIT_LIST_HEAD(&the_lnet.ln_routers);
725
726         the_lnet.ln_interface_cookie = lnet_create_interface_cookie();
727
728         the_lnet.ln_counters = cfs_percpt_alloc(lnet_cpt_table(),
729                                                 sizeof(lnet_counters_t));
730         if (the_lnet.ln_counters == NULL) {
731                 CERROR("Failed to allocate counters for LNet\n");
732                 rc = -ENOMEM;
733                 goto failed;
734         }
735
736         rc = lnet_peer_tables_create();
737         if (rc != 0)
738                 goto failed;
739
740         /* NB: we will have instance of message container per CPT soon */
741         rc = lnet_msg_containers_create();
742         if (rc != 0)
743                 goto failed;
744
745         rc = lnet_res_container_setup(&the_lnet.ln_eq_container, 0,
746                                       LNET_COOKIE_TYPE_EQ, LNET_FL_MAX_EQS,
747                                       sizeof(lnet_eq_t));
748         if (rc != 0)
749                 goto failed;
750
751         recs = lnet_res_containers_create(LNET_COOKIE_TYPE_ME, LNET_FL_MAX_MES,
752                                           sizeof(lnet_me_t));
753         if (recs == NULL)
754                 goto failed;
755
756         the_lnet.ln_me_containers = recs;
757
758         /* NB: we will have instance of MD container per CPT soon */
759         recs = lnet_res_containers_create(LNET_COOKIE_TYPE_MD, LNET_FL_MAX_MDS,
760                                           sizeof(lnet_libmd_t));
761         if (recs == NULL)
762                 goto failed;
763
764         the_lnet.ln_md_containers = recs;
765
766         rc = lnet_portals_create();
767         if (rc != 0) {
768                 CERROR("Failed to create portals for LNet: %d\n", rc);
769                 goto failed;
770         }
771
772         return 0;
773
774  failed:
775         lnet_unprepare();
776         return rc;
777 }
778
779 int
780 lnet_unprepare (void)
781 {
782         /* NB no LNET_LOCK since this is the last reference.  All LND instances
783          * have shut down already, so it is safe to unlink and free all
784          * descriptors, even those that appear committed to a network op (eg MD
785          * with non-zero pending count) */
786
787         lnet_fail_nid(LNET_NID_ANY, 0);
788
789         LASSERT(the_lnet.ln_refcount == 0);
790         LASSERT(cfs_list_empty(&the_lnet.ln_test_peers));
791         LASSERT(cfs_list_empty(&the_lnet.ln_nis));
792         LASSERT(cfs_list_empty(&the_lnet.ln_nis_zombie));
793
794         lnet_portals_destroy();
795
796         if (the_lnet.ln_md_containers != NULL) {
797                 lnet_res_containers_destroy(the_lnet.ln_md_containers);
798                 the_lnet.ln_md_containers = NULL;
799         }
800
801         if (the_lnet.ln_me_containers != NULL) {
802                 lnet_res_containers_destroy(the_lnet.ln_me_containers);
803                 the_lnet.ln_me_containers = NULL;
804         }
805
806         lnet_res_container_cleanup(&the_lnet.ln_eq_container);
807
808         lnet_msg_containers_destroy();
809         lnet_peer_tables_destroy();
810         lnet_rtrpools_free();
811
812         if (the_lnet.ln_counters != NULL) {
813                 cfs_percpt_free(the_lnet.ln_counters);
814                 the_lnet.ln_counters = NULL;
815         }
816
817         return 0;
818 }
819
820 lnet_ni_t  *
821 lnet_net2ni_locked(__u32 net, int cpt)
822 {
823         cfs_list_t      *tmp;
824         lnet_ni_t       *ni;
825
826         LASSERT(cpt != LNET_LOCK_EX);
827
828         cfs_list_for_each(tmp, &the_lnet.ln_nis) {
829                 ni = cfs_list_entry(tmp, lnet_ni_t, ni_list);
830
831                 if (LNET_NIDNET(ni->ni_nid) == net) {
832                         lnet_ni_addref_locked(ni, cpt);
833                         return ni;
834                 }
835         }
836
837         return NULL;
838 }
839
840 unsigned int
841 lnet_nid_cpt_hash(lnet_nid_t nid)
842 {
843         __u64           key = nid;
844         unsigned int    val;
845
846         val = cfs_hash_long(key, LNET_CPT_BITS);
847         /* NB: LNET_CP_NUMBER doesn't have to be PO2 */
848         if (val < LNET_CPT_NUMBER)
849                 return val;
850
851         return (unsigned int)((key + val + (val >> 1)) % LNET_CPT_NUMBER);
852 }
853
854 int
855 lnet_cpt_of_nid(lnet_nid_t nid)
856 {
857         if (LNET_CPT_NUMBER == 1)
858                 return 0; /* the only one */
859
860         return lnet_nid_cpt_hash(nid);
861 }
862 EXPORT_SYMBOL(lnet_cpt_of_nid);
863
864 int
865 lnet_islocalnet(__u32 net)
866 {
867         struct lnet_ni  *ni;
868         int             cpt;
869
870         cpt = lnet_net_lock_current();
871
872         ni = lnet_net2ni_locked(net, cpt);
873         if (ni != NULL)
874                 lnet_ni_decref_locked(ni, cpt);
875
876         lnet_net_unlock(cpt);
877
878         return ni != NULL;
879 }
880
881 lnet_ni_t  *
882 lnet_nid2ni_locked(lnet_nid_t nid, int cpt)
883 {
884         struct lnet_ni  *ni;
885         cfs_list_t      *tmp;
886
887         LASSERT(cpt != LNET_LOCK_EX);
888
889         cfs_list_for_each(tmp, &the_lnet.ln_nis) {
890                 ni = cfs_list_entry(tmp, lnet_ni_t, ni_list);
891
892                 if (ni->ni_nid == nid) {
893                         lnet_ni_addref_locked(ni, cpt);
894                         return ni;
895                 }
896         }
897
898         return NULL;
899 }
900
901 int
902 lnet_islocalnid(lnet_nid_t nid)
903 {
904         struct lnet_ni  *ni;
905         int             cpt;
906
907         cpt = lnet_net_lock_current();
908         ni = lnet_nid2ni_locked(nid, cpt);
909         if (ni != NULL)
910                 lnet_ni_decref_locked(ni, cpt);
911         lnet_net_unlock(cpt);
912
913         return ni != NULL;
914 }
915
916 int
917 lnet_count_acceptor_nis (void)
918 {
919         /* Return the # of NIs that need the acceptor. */
920         int             count = 0;
921 #if defined(__KERNEL__) || defined(HAVE_LIBPTHREAD)
922         cfs_list_t      *tmp;
923         struct lnet_ni  *ni;
924         int             cpt;
925
926         cpt = lnet_net_lock_current();
927         cfs_list_for_each(tmp, &the_lnet.ln_nis) {
928                 ni = cfs_list_entry(tmp, lnet_ni_t, ni_list);
929
930                 if (ni->ni_lnd->lnd_accept != NULL)
931                         count++;
932         }
933
934         lnet_net_unlock(cpt);
935
936 #endif /* defined(__KERNEL__) || defined(HAVE_LIBPTHREAD) */
937         return count;
938 }
939
940 static int
941 lnet_ni_tq_credits(lnet_ni_t *ni)
942 {
943         int     credits;
944
945         credits = ni->ni_maxtxcredits / LNET_CPT_NUMBER;
946         credits = max(credits, 8 * ni->ni_peertxcredits);
947         credits = min(credits, ni->ni_maxtxcredits);
948
949         return credits;
950 }
951
952 void
953 lnet_shutdown_lndnis (void)
954 {
955         int                i;
956         int                islo;
957         lnet_ni_t         *ni;
958
959         /* NB called holding the global mutex */
960
961         /* All quiet on the API front */
962         LASSERT(!the_lnet.ln_shutdown);
963         LASSERT(the_lnet.ln_refcount == 0);
964         LASSERT(cfs_list_empty(&the_lnet.ln_nis_zombie));
965         LASSERT(cfs_list_empty(&the_lnet.ln_remote_nets));
966
967         lnet_net_lock(LNET_LOCK_EX);
968         the_lnet.ln_shutdown = 1;       /* flag shutdown */
969
970         /* Unlink NIs from the global table */
971         while (!cfs_list_empty(&the_lnet.ln_nis)) {
972                 ni = cfs_list_entry(the_lnet.ln_nis.next,
973                                     lnet_ni_t, ni_list);
974                 /* move it to zombie list and nobody can find it anymore */
975                 cfs_list_move(&ni->ni_list, &the_lnet.ln_nis_zombie);
976                 lnet_ni_decref_locked(ni, 0);   /* drop ln_nis' ref */
977         }
978
979         /* Drop the cached eqwait NI. */
980         if (the_lnet.ln_eq_waitni != NULL) {
981                 lnet_ni_decref_locked(the_lnet.ln_eq_waitni, 0);
982                 the_lnet.ln_eq_waitni = NULL;
983         }
984
985         /* Drop the cached loopback NI. */
986         if (the_lnet.ln_loni != NULL) {
987                 lnet_ni_decref_locked(the_lnet.ln_loni, 0);
988                 the_lnet.ln_loni = NULL;
989         }
990
991         lnet_net_unlock(LNET_LOCK_EX);
992
993         /* Clear lazy portals and drop delayed messages which hold refs
994          * on their lnet_msg_t::msg_rxpeer */
995         for (i = 0; i < the_lnet.ln_nportals; i++)
996                 LNetClearLazyPortal(i);
997
998         /* Clear the peer table and wait for all peers to go (they hold refs on
999          * their NIs) */
1000         lnet_peer_tables_cleanup();
1001
1002         lnet_net_lock(LNET_LOCK_EX);
1003         /* Now wait for the NI's I just nuked to show up on ln_zombie_nis
1004          * and shut them down in guaranteed thread context */
1005         i = 2;
1006         while (!cfs_list_empty(&the_lnet.ln_nis_zombie)) {
1007                 int     *ref;
1008                 int     j;
1009
1010                 ni = cfs_list_entry(the_lnet.ln_nis_zombie.next,
1011                                     lnet_ni_t, ni_list);
1012                 cfs_list_del_init(&ni->ni_list);
1013                 cfs_percpt_for_each(ref, j, ni->ni_refs) {
1014                         if (*ref == 0)
1015                                 continue;
1016                         /* still busy, add it back to zombie list */
1017                         cfs_list_add(&ni->ni_list, &the_lnet.ln_nis_zombie);
1018                         break;
1019                 }
1020
1021                 while (!cfs_list_empty(&ni->ni_list)) {
1022                         lnet_net_unlock(LNET_LOCK_EX);
1023                         ++i;
1024                         if ((i & (-i)) == i) {
1025                                 CDEBUG(D_WARNING,
1026                                        "Waiting for zombie LNI %s\n",
1027                                        libcfs_nid2str(ni->ni_nid));
1028                         }
1029                         cfs_pause(cfs_time_seconds(1));
1030                         lnet_net_lock(LNET_LOCK_EX);
1031                         continue;
1032                 }
1033
1034                 ni->ni_lnd->lnd_refcount--;
1035                 lnet_net_unlock(LNET_LOCK_EX);
1036
1037                 islo = ni->ni_lnd->lnd_type == LOLND;
1038
1039                 LASSERT (!cfs_in_interrupt ());
1040                 (ni->ni_lnd->lnd_shutdown)(ni);
1041
1042                 /* can't deref lnd anymore now; it might have unregistered
1043                  * itself...  */
1044
1045                 if (!islo)
1046                         CDEBUG(D_LNI, "Removed LNI %s\n",
1047                                libcfs_nid2str(ni->ni_nid));
1048
1049                 lnet_ni_free(ni);
1050                 lnet_net_lock(LNET_LOCK_EX);
1051         }
1052
1053         the_lnet.ln_shutdown = 0;
1054         lnet_net_unlock(LNET_LOCK_EX);
1055
1056         if (the_lnet.ln_network_tokens != NULL) {
1057                 LIBCFS_FREE(the_lnet.ln_network_tokens,
1058                             the_lnet.ln_network_tokens_nob);
1059                 the_lnet.ln_network_tokens = NULL;
1060         }
1061 }
1062
1063 int
1064 lnet_startup_lndnis (void)
1065 {
1066         lnd_t                   *lnd;
1067         struct lnet_ni          *ni;
1068         struct lnet_tx_queue    *tq;
1069         cfs_list_t              nilist;
1070         int                     i;
1071         int                rc = 0;
1072         int                lnd_type;
1073         int                nicount = 0;
1074         char              *nets = lnet_get_networks();
1075
1076         CFS_INIT_LIST_HEAD(&nilist);
1077
1078         if (nets == NULL)
1079                 goto failed;
1080
1081         rc = lnet_parse_networks(&nilist, nets);
1082         if (rc != 0)
1083                 goto failed;
1084
1085         while (!cfs_list_empty(&nilist)) {
1086                 ni = cfs_list_entry(nilist.next, lnet_ni_t, ni_list);
1087                 lnd_type = LNET_NETTYP(LNET_NIDNET(ni->ni_nid));
1088
1089                 LASSERT (libcfs_isknown_lnd(lnd_type));
1090
1091                 if (lnd_type == CIBLND    ||
1092                     lnd_type == OPENIBLND ||
1093                     lnd_type == IIBLND    ||
1094                     lnd_type == VIBLND) {
1095                         CERROR("LND %s obsoleted\n",
1096                                libcfs_lnd2str(lnd_type));
1097                         goto failed;
1098                 }
1099
1100                 LNET_MUTEX_LOCK(&the_lnet.ln_lnd_mutex);
1101                 lnd = lnet_find_lnd_by_type(lnd_type);
1102
1103 #ifdef __KERNEL__
1104                 if (lnd == NULL) {
1105                         LNET_MUTEX_UNLOCK(&the_lnet.ln_lnd_mutex);
1106                         rc = cfs_request_module("%s",
1107                                                 libcfs_lnd2modname(lnd_type));
1108                         LNET_MUTEX_LOCK(&the_lnet.ln_lnd_mutex);
1109
1110                         lnd = lnet_find_lnd_by_type(lnd_type);
1111                         if (lnd == NULL) {
1112                                 LNET_MUTEX_UNLOCK(&the_lnet.ln_lnd_mutex);
1113                                 CERROR("Can't load LND %s, module %s, rc=%d\n",
1114                                        libcfs_lnd2str(lnd_type),
1115                                        libcfs_lnd2modname(lnd_type), rc);
1116 #ifndef HAVE_MODULE_LOADING_SUPPORT
1117                                 LCONSOLE_ERROR_MSG(0x104, "Your kernel must be "
1118                                          "compiled with kernel module "
1119                                          "loading support.");
1120 #endif
1121                                 goto failed;
1122                         }
1123                 }
1124 #else
1125                 if (lnd == NULL) {
1126                         LNET_MUTEX_UNLOCK(&the_lnet.ln_lnd_mutex);
1127                         CERROR("LND %s not supported\n",
1128                                libcfs_lnd2str(lnd_type));
1129                         goto failed;
1130                 }
1131 #endif
1132
1133                 lnet_net_lock(LNET_LOCK_EX);
1134                 lnd->lnd_refcount++;
1135                 lnet_net_unlock(LNET_LOCK_EX);
1136
1137                 ni->ni_lnd = lnd;
1138
1139                 rc = (lnd->lnd_startup)(ni);
1140
1141                 LNET_MUTEX_UNLOCK(&the_lnet.ln_lnd_mutex);
1142
1143                 if (rc != 0) {
1144                         LCONSOLE_ERROR_MSG(0x105, "Error %d starting up LNI %s"
1145                                            "\n",
1146                                            rc, libcfs_lnd2str(lnd->lnd_type));
1147                         lnet_net_lock(LNET_LOCK_EX);
1148                         lnd->lnd_refcount--;
1149                         lnet_net_unlock(LNET_LOCK_EX);
1150                         goto failed;
1151                 }
1152
1153                 LASSERT (ni->ni_peertimeout <= 0 || lnd->lnd_query != NULL);
1154
1155                 cfs_list_del(&ni->ni_list);
1156
1157                 lnet_net_lock(LNET_LOCK_EX);
1158                 /* refcount for ln_nis */
1159                 lnet_ni_addref_locked(ni, 0);
1160                 cfs_list_add_tail(&ni->ni_list, &the_lnet.ln_nis);
1161
1162                 lnet_net_unlock(LNET_LOCK_EX);
1163
1164                 if (lnd->lnd_type == LOLND) {
1165                         lnet_ni_addref(ni);
1166                         LASSERT (the_lnet.ln_loni == NULL);
1167                         the_lnet.ln_loni = ni;
1168                         continue;
1169                 }
1170
1171 #ifndef __KERNEL__
1172                 if (lnd->lnd_wait != NULL) {
1173                         if (the_lnet.ln_eq_waitni == NULL) {
1174                                 lnet_ni_addref(ni);
1175                                 the_lnet.ln_eq_waitni = ni;
1176                         }
1177                 } else {
1178 # ifndef HAVE_LIBPTHREAD
1179                         LCONSOLE_ERROR_MSG(0x106, "LND %s not supported in a "
1180                                            "single-threaded runtime\n",
1181                                            libcfs_lnd2str(lnd_type));
1182                         goto failed;
1183 # endif
1184                 }
1185 #endif
1186                 if (ni->ni_peertxcredits == 0 ||
1187                     ni->ni_maxtxcredits == 0) {
1188                         LCONSOLE_ERROR_MSG(0x107, "LNI %s has no %scredits\n",
1189                                            libcfs_lnd2str(lnd->lnd_type),
1190                                            ni->ni_peertxcredits == 0 ?
1191                                            "" : "per-peer ");
1192                         goto failed;
1193                 }
1194
1195                 cfs_percpt_for_each(tq, i, ni->ni_tx_queues) {
1196                         tq->tq_credits_min =
1197                         tq->tq_credits_max =
1198                         tq->tq_credits = lnet_ni_tq_credits(ni);
1199                 }
1200
1201                 CDEBUG(D_LNI, "Added LNI %s [%d/%d/%d/%d]\n",
1202                        libcfs_nid2str(ni->ni_nid), ni->ni_peertxcredits,
1203                        lnet_ni_tq_credits(ni) * LNET_CPT_NUMBER,
1204                        ni->ni_peerrtrcredits, ni->ni_peertimeout);
1205
1206                 nicount++;
1207         }
1208
1209         if (the_lnet.ln_eq_waitni != NULL && nicount > 1) {
1210                 lnd_type = the_lnet.ln_eq_waitni->ni_lnd->lnd_type;
1211                 LCONSOLE_ERROR_MSG(0x109, "LND %s can only run single-network"
1212                                    "\n",
1213                                    libcfs_lnd2str(lnd_type));
1214                 goto failed;
1215         }
1216
1217         return 0;
1218
1219  failed:
1220         lnet_shutdown_lndnis();
1221
1222         while (!cfs_list_empty(&nilist)) {
1223                 ni = cfs_list_entry(nilist.next, lnet_ni_t, ni_list);
1224                 cfs_list_del(&ni->ni_list);
1225                 lnet_ni_free(ni);
1226         }
1227
1228         return -ENETDOWN;
1229 }
1230
1231 /**
1232  * Initialize LNet library.
1233  *
1234  * Only userspace program needs to call this function - it's automatically
1235  * called in the kernel at module loading time. Caller has to call LNetFini()
1236  * after a call to LNetInit(), if and only if the latter returned 0. It must
1237  * be called exactly once.
1238  *
1239  * \return 0 on success, and -ve on failures.
1240  */
1241 int
1242 LNetInit(void)
1243 {
1244         int     rc;
1245
1246         lnet_assert_wire_constants ();
1247         LASSERT (!the_lnet.ln_init);
1248
1249         memset(&the_lnet, 0, sizeof(the_lnet));
1250
1251         /* refer to global cfs_cpt_table for now */
1252         the_lnet.ln_cpt_table   = cfs_cpt_table;
1253         the_lnet.ln_cpt_number  = cfs_cpt_number(cfs_cpt_table);
1254
1255         LASSERT(the_lnet.ln_cpt_number > 0);
1256         if (the_lnet.ln_cpt_number > LNET_CPT_MAX) {
1257                 /* we are under risk of consuming all lh_cookie */
1258                 CERROR("Can't have %d CPTs for LNet (max allowed is %d), "
1259                        "please change setting of CPT-table and retry\n",
1260                        the_lnet.ln_cpt_number, LNET_CPT_MAX);
1261                 return -1;
1262         }
1263
1264         while ((1 << the_lnet.ln_cpt_bits) < the_lnet.ln_cpt_number)
1265                 the_lnet.ln_cpt_bits++;
1266
1267         rc = lnet_create_locks();
1268         if (rc != 0) {
1269                 CERROR("Can't create LNet global locks: %d\n", rc);
1270                 return -1;
1271         }
1272
1273         the_lnet.ln_refcount = 0;
1274         the_lnet.ln_init = 1;
1275         LNetInvalidateHandle(&the_lnet.ln_rc_eqh);
1276         CFS_INIT_LIST_HEAD(&the_lnet.ln_lnds);
1277         CFS_INIT_LIST_HEAD(&the_lnet.ln_rcd_zombie);
1278         CFS_INIT_LIST_HEAD(&the_lnet.ln_rcd_deathrow);
1279
1280 #ifdef __KERNEL__
1281         /* All LNDs apart from the LOLND are in separate modules.  They
1282          * register themselves when their module loads, and unregister
1283          * themselves when their module is unloaded. */
1284 #else
1285         /* Register LNDs
1286          * NB the order here determines default 'networks=' order */
1287 # ifdef CRAY_XT3
1288         LNET_REGISTER_ULND(the_ptllnd);
1289 # endif
1290 # ifdef HAVE_LIBPTHREAD
1291         LNET_REGISTER_ULND(the_tcplnd);
1292 # endif
1293 #endif
1294         lnet_register_lnd(&the_lolnd);
1295         return 0;
1296 }
1297
1298 /**
1299  * Finalize LNet library.
1300  *
1301  * Only userspace program needs to call this function. It can be called
1302  * at most once.
1303  *
1304  * \pre LNetInit() called with success.
1305  * \pre All LNet users called LNetNIFini() for matching LNetNIInit() calls.
1306  */
1307 void
1308 LNetFini(void)
1309 {
1310         LASSERT(the_lnet.ln_init);
1311         LASSERT(the_lnet.ln_refcount == 0);
1312
1313         while (!cfs_list_empty(&the_lnet.ln_lnds))
1314                 lnet_unregister_lnd(cfs_list_entry(the_lnet.ln_lnds.next,
1315                                                    lnd_t, lnd_list));
1316         lnet_destroy_locks();
1317
1318         the_lnet.ln_init = 0;
1319 }
1320
1321 /**
1322  * Set LNet PID and start LNet interfaces, routing, and forwarding.
1323  *
1324  * Userspace program should call this after a successful call to LNetInit().
1325  * Users must call this function at least once before any other functions.
1326  * For each successful call there must be a corresponding call to
1327  * LNetNIFini(). For subsequent calls to LNetNIInit(), \a requested_pid is
1328  * ignored.
1329  *
1330  * The PID used by LNet may be different from the one requested.
1331  * See LNetGetId().
1332  *
1333  * \param requested_pid PID requested by the caller.
1334  *
1335  * \return >= 0 on success, and < 0 error code on failures.
1336  */
1337 int
1338 LNetNIInit(lnet_pid_t requested_pid)
1339 {
1340         int         im_a_router = 0;
1341         int         rc;
1342
1343         LNET_MUTEX_LOCK(&the_lnet.ln_api_mutex);
1344
1345         LASSERT (the_lnet.ln_init);
1346         CDEBUG(D_OTHER, "refs %d\n", the_lnet.ln_refcount);
1347
1348         if (the_lnet.ln_refcount > 0) {
1349                 rc = the_lnet.ln_refcount++;
1350                 goto out;
1351         }
1352
1353         lnet_get_tunables();
1354
1355         if (requested_pid == LNET_PID_ANY) {
1356                 /* Don't instantiate LNET just for me */
1357                 rc = -ENETDOWN;
1358                 goto failed0;
1359         }
1360
1361         rc = lnet_prepare(requested_pid);
1362         if (rc != 0)
1363                 goto failed0;
1364
1365         rc = lnet_startup_lndnis();
1366         if (rc != 0)
1367                 goto failed1;
1368
1369         rc = lnet_parse_routes(lnet_get_routes(), &im_a_router);
1370         if (rc != 0)
1371                 goto failed2;
1372
1373         rc = lnet_check_routes();
1374         if (rc != 0)
1375                 goto failed2;
1376
1377         rc = lnet_rtrpools_alloc(im_a_router);
1378         if (rc != 0)
1379                 goto failed2;
1380
1381         rc = lnet_acceptor_start();
1382         if (rc != 0)
1383                 goto failed2;
1384
1385         the_lnet.ln_refcount = 1;
1386         /* Now I may use my own API functions... */
1387
1388         /* NB router checker needs the_lnet.ln_ping_info in
1389          * lnet_router_checker -> lnet_update_ni_status_locked */
1390         rc = lnet_ping_target_init();
1391         if (rc != 0)
1392                 goto failed3;
1393
1394         rc = lnet_router_checker_start();
1395         if (rc != 0)
1396                 goto failed4;
1397
1398         lnet_proc_init();
1399         goto out;
1400
1401  failed4:
1402         lnet_ping_target_fini();
1403  failed3:
1404         the_lnet.ln_refcount = 0;
1405         lnet_acceptor_stop();
1406  failed2:
1407         lnet_destroy_routes();
1408         lnet_shutdown_lndnis();
1409  failed1:
1410         lnet_unprepare();
1411  failed0:
1412         LASSERT (rc < 0);
1413  out:
1414         LNET_MUTEX_UNLOCK(&the_lnet.ln_api_mutex);
1415         return rc;
1416 }
1417
1418 /**
1419  * Stop LNet interfaces, routing, and forwarding.
1420  *
1421  * Users must call this function once for each successful call to LNetNIInit().
1422  * Once the LNetNIFini() operation has been started, the results of pending
1423  * API operations are undefined.
1424  *
1425  * \return always 0 for current implementation.
1426  */
1427 int
1428 LNetNIFini()
1429 {
1430         LNET_MUTEX_LOCK(&the_lnet.ln_api_mutex);
1431
1432         LASSERT (the_lnet.ln_init);
1433         LASSERT (the_lnet.ln_refcount > 0);
1434
1435         if (the_lnet.ln_refcount != 1) {
1436                 the_lnet.ln_refcount--;
1437         } else {
1438                 LASSERT (!the_lnet.ln_niinit_self);
1439
1440                 lnet_proc_fini();
1441                 lnet_router_checker_stop();
1442                 lnet_ping_target_fini();
1443
1444                 /* Teardown fns that use my own API functions BEFORE here */
1445                 the_lnet.ln_refcount = 0;
1446
1447                 lnet_acceptor_stop();
1448                 lnet_destroy_routes();
1449                 lnet_shutdown_lndnis();
1450                 lnet_unprepare();
1451         }
1452
1453         LNET_MUTEX_UNLOCK(&the_lnet.ln_api_mutex);
1454         return 0;
1455 }
1456
1457 /**
1458  * This is an ugly hack to export IOC_LIBCFS_DEBUG_PEER and
1459  * IOC_LIBCFS_PORTALS_COMPATIBILITY commands to users, by tweaking the LNet
1460  * internal ioctl handler.
1461  *
1462  * IOC_LIBCFS_PORTALS_COMPATIBILITY is now deprecated, don't use it.
1463  *
1464  * \param cmd IOC_LIBCFS_DEBUG_PEER to print debugging data about a peer.
1465  * The data will be printed to system console. Don't use it excessively.
1466  * \param arg A pointer to lnet_process_id_t, process ID of the peer.
1467  *
1468  * \return Always return 0 when called by users directly (i.e., not via ioctl).
1469  */
1470 int
1471 LNetCtl(unsigned int cmd, void *arg)
1472 {
1473         struct libcfs_ioctl_data *data = arg;
1474         lnet_process_id_t         id = {0};
1475         lnet_ni_t                *ni;
1476         int                       rc;
1477
1478         LASSERT (the_lnet.ln_init);
1479         LASSERT (the_lnet.ln_refcount > 0);
1480
1481         switch (cmd) {
1482         case IOC_LIBCFS_GET_NI:
1483                 rc = LNetGetId(data->ioc_count, &id);
1484                 data->ioc_nid = id.nid;
1485                 return rc;
1486
1487         case IOC_LIBCFS_FAIL_NID:
1488                 return lnet_fail_nid(data->ioc_nid, data->ioc_count);
1489
1490         case IOC_LIBCFS_ADD_ROUTE:
1491                 rc = lnet_add_route(data->ioc_net, data->ioc_count,
1492                                     data->ioc_nid);
1493                 return (rc != 0) ? rc : lnet_check_routes();
1494
1495         case IOC_LIBCFS_DEL_ROUTE:
1496                 return lnet_del_route(data->ioc_net, data->ioc_nid);
1497
1498         case IOC_LIBCFS_GET_ROUTE:
1499                 return lnet_get_route(data->ioc_count,
1500                                       &data->ioc_net, &data->ioc_count,
1501                                       &data->ioc_nid, &data->ioc_flags);
1502         case IOC_LIBCFS_NOTIFY_ROUTER:
1503                 return lnet_notify(NULL, data->ioc_nid, data->ioc_flags,
1504                                    cfs_time_current() -
1505                                    cfs_time_seconds(cfs_time_current_sec() -
1506                                                     (time_t)data->ioc_u64[0]));
1507
1508         case IOC_LIBCFS_PORTALS_COMPATIBILITY:
1509                 /* This can be removed once lustre stops calling it */
1510                 return 0;
1511
1512         case IOC_LIBCFS_LNET_DIST:
1513                 rc = LNetDist(data->ioc_nid, &data->ioc_nid, &data->ioc_u32[1]);
1514                 if (rc < 0 && rc != -EHOSTUNREACH)
1515                         return rc;
1516
1517                 data->ioc_u32[0] = rc;
1518                 return 0;
1519
1520         case IOC_LIBCFS_TESTPROTOCOMPAT:
1521                 lnet_net_lock(LNET_LOCK_EX);
1522                 the_lnet.ln_testprotocompat = data->ioc_flags;
1523                 lnet_net_unlock(LNET_LOCK_EX);
1524                 return 0;
1525
1526         case IOC_LIBCFS_PING:
1527                 id.nid = data->ioc_nid;
1528                 id.pid = data->ioc_u32[0];
1529                 rc = lnet_ping(id, data->ioc_u32[1], /* timeout */
1530                                (lnet_process_id_t *)data->ioc_pbuf1,
1531                                data->ioc_plen1/sizeof(lnet_process_id_t));
1532                 if (rc < 0)
1533                         return rc;
1534                 data->ioc_count = rc;
1535                 return 0;
1536
1537         case IOC_LIBCFS_DEBUG_PEER: {
1538                 /* CAVEAT EMPTOR: this one designed for calling directly; not
1539                  * via an ioctl */
1540                 id = *((lnet_process_id_t *) arg);
1541
1542                 lnet_debug_peer(id.nid);
1543
1544                 ni = lnet_net2ni(LNET_NIDNET(id.nid));
1545                 if (ni == NULL) {
1546                         CDEBUG(D_WARNING, "No NI for %s\n", libcfs_id2str(id));
1547                 } else {
1548                         if (ni->ni_lnd->lnd_ctl == NULL) {
1549                                 CDEBUG(D_WARNING, "No ctl for %s\n",
1550                                        libcfs_id2str(id));
1551                         } else {
1552                                 (void)ni->ni_lnd->lnd_ctl(ni, cmd, arg);
1553                         }
1554
1555                         lnet_ni_decref(ni);
1556                 }
1557                 return 0;
1558         }
1559
1560         default:
1561                 ni = lnet_net2ni(data->ioc_net);
1562                 if (ni == NULL)
1563                         return -EINVAL;
1564
1565                 if (ni->ni_lnd->lnd_ctl == NULL)
1566                         rc = -EINVAL;
1567                 else
1568                         rc = ni->ni_lnd->lnd_ctl(ni, cmd, arg);
1569
1570                 lnet_ni_decref(ni);
1571                 return rc;
1572         }
1573         /* not reached */
1574 }
1575
1576 /**
1577  * Retrieve the lnet_process_id_t ID of LNet interface at \a index. Note that
1578  * all interfaces share a same PID, as requested by LNetNIInit().
1579  *
1580  * \param index Index of the interface to look up.
1581  * \param id On successful return, this location will hold the
1582  * lnet_process_id_t ID of the interface.
1583  *
1584  * \retval 0 If an interface exists at \a index.
1585  * \retval -ENOENT If no interface has been found.
1586  */
1587 int
1588 LNetGetId(unsigned int index, lnet_process_id_t *id)
1589 {
1590         struct lnet_ni  *ni;
1591         cfs_list_t      *tmp;
1592         int             cpt;
1593         int             rc = -ENOENT;
1594
1595         LASSERT(the_lnet.ln_init);
1596         LASSERT(the_lnet.ln_refcount > 0);
1597
1598         cpt = lnet_net_lock_current();
1599
1600         cfs_list_for_each(tmp, &the_lnet.ln_nis) {
1601                 if (index-- != 0)
1602                         continue;
1603
1604                 ni = cfs_list_entry(tmp, lnet_ni_t, ni_list);
1605
1606                 id->nid = ni->ni_nid;
1607                 id->pid = the_lnet.ln_pid;
1608                 rc = 0;
1609                 break;
1610         }
1611
1612         lnet_net_unlock(cpt);
1613         return rc;
1614 }
1615
1616 /**
1617  * Print a string representation of handle \a h into buffer \a str of
1618  * \a len bytes.
1619  */
1620 void
1621 LNetSnprintHandle(char *str, int len, lnet_handle_any_t h)
1622 {
1623         snprintf(str, len, LPX64, h.cookie);
1624 }
1625
1626 static int
1627 lnet_create_ping_info(void)
1628 {
1629         int               i;
1630         int               n;
1631         int               rc;
1632         unsigned int      infosz;
1633         lnet_ni_t        *ni;
1634         lnet_process_id_t id;
1635         lnet_ping_info_t *pinfo;
1636
1637         for (n = 0; ; n++) {
1638                 rc = LNetGetId(n, &id);
1639                 if (rc == -ENOENT)
1640                         break;
1641
1642                 LASSERT (rc == 0);
1643         }
1644
1645         infosz = offsetof(lnet_ping_info_t, pi_ni[n]);
1646         LIBCFS_ALLOC(pinfo, infosz);
1647         if (pinfo == NULL) {
1648                 CERROR("Can't allocate ping info[%d]\n", n);
1649                 return -ENOMEM;
1650         }
1651
1652         pinfo->pi_nnis    = n;
1653         pinfo->pi_pid     = the_lnet.ln_pid;
1654         pinfo->pi_magic   = LNET_PROTO_PING_MAGIC;
1655         pinfo->pi_version = LNET_PROTO_PING_VERSION;
1656
1657         for (i = 0; i < n; i++) {
1658                 lnet_ni_status_t *ns = &pinfo->pi_ni[i];
1659
1660                 rc = LNetGetId(i, &id);
1661                 LASSERT (rc == 0);
1662
1663                 ns->ns_nid    = id.nid;
1664                 ns->ns_status = LNET_NI_STATUS_UP;
1665
1666                 lnet_net_lock(0);
1667
1668                 ni = lnet_nid2ni_locked(id.nid, 0);
1669                 LASSERT(ni != NULL);
1670
1671                 lnet_ni_lock(ni);
1672                 LASSERT(ni->ni_status == NULL);
1673                 ni->ni_status = ns;
1674                 lnet_ni_unlock(ni);
1675
1676                 lnet_ni_decref_locked(ni, 0);
1677                 lnet_net_unlock(0);
1678         }
1679
1680         the_lnet.ln_ping_info = pinfo;
1681         return 0;
1682 }
1683
1684 static void
1685 lnet_destroy_ping_info(void)
1686 {
1687         struct lnet_ni  *ni;
1688
1689         lnet_net_lock(0);
1690
1691         cfs_list_for_each_entry(ni, &the_lnet.ln_nis, ni_list) {
1692                 lnet_ni_lock(ni);
1693                 ni->ni_status = NULL;
1694                 lnet_ni_unlock(ni);
1695         }
1696
1697         lnet_net_unlock(0);
1698
1699         LIBCFS_FREE(the_lnet.ln_ping_info,
1700                     offsetof(lnet_ping_info_t,
1701                              pi_ni[the_lnet.ln_ping_info->pi_nnis]));
1702         the_lnet.ln_ping_info = NULL;
1703         return;
1704 }
1705
1706 int
1707 lnet_ping_target_init(void)
1708 {
1709         lnet_md_t         md = {0};
1710         lnet_handle_me_t  meh;
1711         lnet_process_id_t id;
1712         int               rc;
1713         int               rc2;
1714         int               infosz;
1715
1716         rc = lnet_create_ping_info();
1717         if (rc != 0)
1718                 return rc;
1719
1720         /* We can have a tiny EQ since we only need to see the unlink event on
1721          * teardown, which by definition is the last one! */
1722         rc = LNetEQAlloc(2, LNET_EQ_HANDLER_NONE, &the_lnet.ln_ping_target_eq);
1723         if (rc != 0) {
1724                 CERROR("Can't allocate ping EQ: %d\n", rc);
1725                 goto failed_0;
1726         }
1727
1728         memset(&id, 0, sizeof(lnet_process_id_t));
1729         id.nid = LNET_NID_ANY;
1730         id.pid = LNET_PID_ANY;
1731
1732         rc = LNetMEAttach(LNET_RESERVED_PORTAL, id,
1733                           LNET_PROTO_PING_MATCHBITS, 0,
1734                           LNET_UNLINK, LNET_INS_AFTER,
1735                           &meh);
1736         if (rc != 0) {
1737                 CERROR("Can't create ping ME: %d\n", rc);
1738                 goto failed_1;
1739         }
1740
1741         /* initialize md content */
1742         infosz = offsetof(lnet_ping_info_t,
1743                           pi_ni[the_lnet.ln_ping_info->pi_nnis]);
1744         md.start     = the_lnet.ln_ping_info;
1745         md.length    = infosz;
1746         md.threshold = LNET_MD_THRESH_INF;
1747         md.max_size  = 0;
1748         md.options   = LNET_MD_OP_GET | LNET_MD_TRUNCATE |
1749                        LNET_MD_MANAGE_REMOTE;
1750         md.user_ptr  = NULL;
1751         md.eq_handle = the_lnet.ln_ping_target_eq;
1752
1753         rc = LNetMDAttach(meh, md,
1754                           LNET_RETAIN,
1755                           &the_lnet.ln_ping_target_md);
1756         if (rc != 0) {
1757                 CERROR("Can't attach ping MD: %d\n", rc);
1758                 goto failed_2;
1759         }
1760
1761         return 0;
1762
1763  failed_2:
1764         rc2 = LNetMEUnlink(meh);
1765         LASSERT (rc2 == 0);
1766  failed_1:
1767         rc2 = LNetEQFree(the_lnet.ln_ping_target_eq);
1768         LASSERT (rc2 == 0);
1769  failed_0:
1770         lnet_destroy_ping_info();
1771         return rc;
1772 }
1773
1774 void
1775 lnet_ping_target_fini(void)
1776 {
1777         lnet_event_t    event;
1778         int             rc;
1779         int             which;
1780         int             timeout_ms = 1000;
1781         cfs_sigset_t    blocked = cfs_block_allsigs();
1782
1783         LNetMDUnlink(the_lnet.ln_ping_target_md);
1784         /* NB md could be busy; this just starts the unlink */
1785
1786         for (;;) {
1787                 rc = LNetEQPoll(&the_lnet.ln_ping_target_eq, 1,
1788                                 timeout_ms, &event, &which);
1789
1790                 /* I expect overflow... */
1791                 LASSERT (rc >= 0 || rc == -EOVERFLOW);
1792
1793                 if (rc == 0) {
1794                         /* timed out: provide a diagnostic */
1795                         CWARN("Still waiting for ping MD to unlink\n");
1796                         timeout_ms *= 2;
1797                         continue;
1798                 }
1799
1800                 /* Got a valid event */
1801                 if (event.unlinked)
1802                         break;
1803         }
1804
1805         rc = LNetEQFree(the_lnet.ln_ping_target_eq);
1806         LASSERT (rc == 0);
1807         lnet_destroy_ping_info();
1808         cfs_restore_sigs(blocked);
1809 }
1810
1811 int
1812 lnet_ping (lnet_process_id_t id, int timeout_ms, lnet_process_id_t *ids, int n_ids)
1813 {
1814         lnet_handle_eq_t     eqh;
1815         lnet_handle_md_t     mdh;
1816         lnet_event_t         event;
1817         lnet_md_t            md = {0};
1818         int                  which;
1819         int                  unlinked = 0;
1820         int                  replied = 0;
1821         const int            a_long_time = 60000; /* mS */
1822         int                  infosz = offsetof(lnet_ping_info_t, pi_ni[n_ids]);
1823         lnet_ping_info_t    *info;
1824         lnet_process_id_t    tmpid;
1825         int                  i;
1826         int                  nob;
1827         int                  rc;
1828         int                  rc2;
1829         cfs_sigset_t         blocked;
1830
1831         if (n_ids <= 0 ||
1832             id.nid == LNET_NID_ANY ||
1833             timeout_ms > 500000 ||              /* arbitrary limit! */
1834             n_ids > 20)                         /* arbitrary limit! */
1835                 return -EINVAL;
1836
1837         if (id.pid == LNET_PID_ANY)
1838                 id.pid = LUSTRE_SRV_LNET_PID;
1839
1840         LIBCFS_ALLOC(info, infosz);
1841         if (info == NULL)
1842                 return -ENOMEM;
1843
1844         /* NB 2 events max (including any unlink event) */
1845         rc = LNetEQAlloc(2, LNET_EQ_HANDLER_NONE, &eqh);
1846         if (rc != 0) {
1847                 CERROR("Can't allocate EQ: %d\n", rc);
1848                 goto out_0;
1849         }
1850
1851         /* initialize md content */
1852         md.start     = info;
1853         md.length    = infosz;
1854         md.threshold = 2; /*GET/REPLY*/
1855         md.max_size  = 0;
1856         md.options   = LNET_MD_TRUNCATE;
1857         md.user_ptr  = NULL;
1858         md.eq_handle = eqh;
1859
1860         rc = LNetMDBind(md, LNET_UNLINK, &mdh);
1861         if (rc != 0) {
1862                 CERROR("Can't bind MD: %d\n", rc);
1863                 goto out_1;
1864         }
1865
1866         rc = LNetGet(LNET_NID_ANY, mdh, id,
1867                      LNET_RESERVED_PORTAL,
1868                      LNET_PROTO_PING_MATCHBITS, 0);
1869
1870         if (rc != 0) {
1871                 /* Don't CERROR; this could be deliberate! */
1872
1873                 rc2 = LNetMDUnlink(mdh);
1874                 LASSERT (rc2 == 0);
1875
1876                 /* NB must wait for the UNLINK event below... */
1877                 unlinked = 1;
1878                 timeout_ms = a_long_time;
1879         }
1880
1881         do {
1882                 /* MUST block for unlink to complete */
1883                 if (unlinked)
1884                         blocked = cfs_block_allsigs();
1885
1886                 rc2 = LNetEQPoll(&eqh, 1, timeout_ms, &event, &which);
1887
1888                 if (unlinked)
1889                         cfs_restore_sigs(blocked);
1890
1891                 CDEBUG(D_NET, "poll %d(%d %d)%s\n", rc2,
1892                        (rc2 <= 0) ? -1 : event.type,
1893                        (rc2 <= 0) ? -1 : event.status,
1894                        (rc2 > 0 && event.unlinked) ? " unlinked" : "");
1895
1896                 LASSERT (rc2 != -EOVERFLOW);     /* can't miss anything */
1897
1898                 if (rc2 <= 0 || event.status != 0) {
1899                         /* timeout or error */
1900                         if (!replied && rc == 0)
1901                                 rc = (rc2 < 0) ? rc2 :
1902                                      (rc2 == 0) ? -ETIMEDOUT :
1903                                      event.status;
1904
1905                         if (!unlinked) {
1906                                 /* Ensure completion in finite time... */
1907                                 LNetMDUnlink(mdh);
1908                                 /* No assertion (racing with network) */
1909                                 unlinked = 1;
1910                                 timeout_ms = a_long_time;
1911                         } else if (rc2 == 0) {
1912                                 /* timed out waiting for unlink */
1913                                 CWARN("ping %s: late network completion\n",
1914                                       libcfs_id2str(id));
1915                         }
1916                 } else if (event.type == LNET_EVENT_REPLY) {
1917                         replied = 1;
1918                         rc = event.mlength;
1919                 }
1920
1921         } while (rc2 <= 0 || !event.unlinked);
1922
1923         if (!replied) {
1924                 if (rc >= 0)
1925                         CWARN("%s: Unexpected rc >= 0 but no reply!\n",
1926                               libcfs_id2str(id));
1927                 rc = -EIO;
1928                 goto out_1;
1929         }
1930
1931         nob = rc;
1932         LASSERT (nob >= 0 && nob <= infosz);
1933
1934         rc = -EPROTO;                           /* if I can't parse... */
1935
1936         if (nob < 8) {
1937                 /* can't check magic/version */
1938                 CERROR("%s: ping info too short %d\n",
1939                        libcfs_id2str(id), nob);
1940                 goto out_1;
1941         }
1942
1943         if (info->pi_magic == __swab32(LNET_PROTO_PING_MAGIC)) {
1944                 lnet_swap_pinginfo(info);
1945         } else if (info->pi_magic != LNET_PROTO_PING_MAGIC) {
1946                 CERROR("%s: Unexpected magic %08x\n", 
1947                        libcfs_id2str(id), info->pi_magic);
1948                 goto out_1;
1949         }
1950
1951         if (info->pi_version != LNET_PROTO_PING_VERSION) {
1952                 CERROR("%s: Unexpected version 0x%x\n",
1953                        libcfs_id2str(id), info->pi_version);
1954                 goto out_1;
1955         }
1956
1957         if (nob < offsetof(lnet_ping_info_t, pi_ni[0])) {
1958                 CERROR("%s: Short reply %d(%d min)\n", libcfs_id2str(id),
1959                        nob, (int)offsetof(lnet_ping_info_t, pi_ni[0]));
1960                 goto out_1;
1961         }
1962
1963         if (info->pi_nnis < n_ids)
1964                 n_ids = info->pi_nnis;
1965
1966         if (nob < offsetof(lnet_ping_info_t, pi_ni[n_ids])) {
1967                 CERROR("%s: Short reply %d(%d expected)\n", libcfs_id2str(id),
1968                        nob, (int)offsetof(lnet_ping_info_t, pi_ni[n_ids]));
1969                 goto out_1;
1970         }
1971
1972         rc = -EFAULT;                           /* If I SEGV... */
1973
1974         for (i = 0; i < n_ids; i++) {
1975                 tmpid.pid = info->pi_pid;
1976                 tmpid.nid = info->pi_ni[i].ns_nid;
1977 #ifdef __KERNEL__
1978                 if (cfs_copy_to_user(&ids[i], &tmpid, sizeof(tmpid)))
1979                         goto out_1;
1980 #else
1981                 ids[i] = tmpid;
1982 #endif
1983         }
1984         rc = info->pi_nnis;
1985
1986  out_1:
1987         rc2 = LNetEQFree(eqh);
1988         if (rc2 != 0)
1989                 CERROR("rc2 %d\n", rc2);
1990         LASSERT (rc2 == 0);
1991
1992  out_0:
1993         LIBCFS_FREE(info, infosz);
1994         return rc;
1995 }