Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lnet / lnet / router.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
5  *
6  *   This file is part of Portals
7  *   http://sourceforge.net/projects/sandiaportals/
8  *
9  *   Portals is free software; you can redistribute it and/or
10  *   modify it under the terms of version 2 of the GNU General Public
11  *   License as published by the Free Software Foundation.
12  *
13  *   Portals is distributed in the hope that it will be useful,
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *   GNU General Public License for more details.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with Portals; if not, write to the Free Software
20  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  */
23
24 #define DEBUG_SUBSYSTEM S_LNET
25 #include <lnet/lib-lnet.h>
26
27 #if defined(__KERNEL__) && defined(LNET_ROUTER)
28
29 static char *forwarding = "";
30 CFS_MODULE_PARM(forwarding, "s", charp, 0444,
31                 "Explicitly enable/disable forwarding between networks");
32
33 static int tiny_router_buffers = 1024;
34 CFS_MODULE_PARM(tiny_router_buffers, "i", int, 0444,
35                 "# of 0 payload messages to buffer in the router");
36 static int small_router_buffers = 8192;
37 CFS_MODULE_PARM(small_router_buffers, "i", int, 0444,
38                 "# of small (1 page) messages to buffer in the router");
39 static int large_router_buffers = 512;
40 CFS_MODULE_PARM(large_router_buffers, "i", int, 0444,
41                 "# of large messages to buffer in the router");
42
43 static int auto_down = 1;
44 CFS_MODULE_PARM(auto_down, "i", int, 0444,
45                 "Automatically mark peers down on comms error");
46
47 static int check_routers_before_use = 0;
48 CFS_MODULE_PARM(check_routers_before_use, "i", int, 0444,
49                 "Assume routers are down and ping them before use");
50
51 static int dead_router_check_interval = 0;
52 CFS_MODULE_PARM(dead_router_check_interval, "i", int, 0444,
53                 "Seconds between dead router health checks (<= 0 to disable)");
54
55 static int live_router_check_interval = 0;
56 CFS_MODULE_PARM(live_router_check_interval, "i", int, 0444,
57                 "Seconds between live router health checks (<= 0 to disable)");
58
59 static int router_ping_timeout = 50;
60 CFS_MODULE_PARM(router_ping_timeout, "i", int, 0444,
61                 "Seconds to wait for the reply to a router health query");
62
63 int
64 lnet_peers_start_down(void)
65 {
66         return check_routers_before_use;
67 }
68
69 void
70 lnet_notify_locked(lnet_peer_t *lp, int notifylnd, int alive, time_t when)
71 {
72         if (when < lp->lp_timestamp) {          /* out of date information */
73                 CDEBUG(D_NET, "Out of date\n");
74                 return;
75         }
76
77         lp->lp_timestamp = when;                /* update timestamp */
78         lp->lp_ping_deadline = 0;               /* disable ping timeout */
79
80         if (lp->lp_alive_count != 0 &&          /* got old news */
81             (!lp->lp_alive) == (!alive)) {      /* new date for old news */
82                 CDEBUG(D_NET, "Old news\n");
83                 return;
84         }
85
86         /* Flag that notification is outstanding */
87
88         lp->lp_alive_count++;
89         lp->lp_alive = !(!alive);               /* 1 bit! */
90         lp->lp_notify = 1;
91         lp->lp_notifylnd |= notifylnd;
92
93         CDEBUG(D_NET, "set %s %d\n", libcfs_nid2str(lp->lp_nid), alive);
94 }
95
96 void
97 lnet_do_notify (lnet_peer_t *lp)
98 {
99         lnet_ni_t *ni = lp->lp_ni;
100         int        alive;
101         int        notifylnd;
102
103         LNET_LOCK();
104
105         /* Notify only in 1 thread at any time to ensure ordered notification.
106          * NB individual events can be missed; the only guarantee is that you
107          * always get the most recent news */
108
109         if (lp->lp_notifying) {
110                 LNET_UNLOCK();
111                 return;
112         }
113
114         lp->lp_notifying = 1;
115
116         while (lp->lp_notify) {
117                 alive     = lp->lp_alive;
118                 notifylnd = lp->lp_notifylnd;
119
120                 lp->lp_notifylnd = 0;
121                 lp->lp_notify    = 0;
122
123                 if (notifylnd && ni->ni_lnd->lnd_notify != NULL) {
124                         LNET_UNLOCK();
125
126                         /* A new notification could happen now; I'll handle it
127                          * when control returns to me */
128
129                         (ni->ni_lnd->lnd_notify)(ni, lp->lp_nid, alive);
130
131                         LNET_LOCK();
132                 }
133         }
134
135         lp->lp_notifying = 0;
136
137         LNET_UNLOCK();
138 }
139
140 int
141 lnet_notify (lnet_ni_t *ni, lnet_nid_t nid, int alive, time_t when)
142 {
143         lnet_peer_t         *lp = NULL;
144         time_t               now = cfs_time_current_sec();
145
146         LASSERT (!in_interrupt ());
147
148         CDEBUG (D_NET, "%s notifying %s: %s\n",
149                 (ni == NULL) ? "userspace" : libcfs_nid2str(ni->ni_nid),
150                 libcfs_nid2str(nid),
151                 alive ? "up" : "down");
152
153         if (ni != NULL &&
154             LNET_NIDNET(ni->ni_nid) != LNET_NIDNET(nid)) {
155                 CWARN ("Ignoring notification of %s %s by %s (different net)\n",
156                         libcfs_nid2str(nid), alive ? "birth" : "death",
157                         libcfs_nid2str(ni->ni_nid));
158                 return -EINVAL;
159         }
160
161         /* can't do predictions... */
162         if (when > now) {
163                 CWARN ("Ignoring prediction from %s of %s %s "
164                        "%ld seconds in the future\n",
165                        (ni == NULL) ? "userspace" : libcfs_nid2str(ni->ni_nid),
166                        libcfs_nid2str(nid), alive ? "up" : "down",
167                        when - now);
168                 return -EINVAL;
169         }
170
171         if (ni != NULL && !alive &&             /* LND telling me she's down */
172             !auto_down) {                       /* auto-down disabled */
173                 CDEBUG(D_NET, "Auto-down disabled\n");
174                 return 0;
175         }
176
177         LNET_LOCK();
178
179         lp = lnet_find_peer_locked(nid);
180         if (lp == NULL) {
181                 /* nid not found */
182                 LNET_UNLOCK();
183                 CDEBUG(D_NET, "%s not found\n", libcfs_nid2str(nid));
184                 return 0;
185         }
186
187         lnet_notify_locked(lp, ni == NULL, alive, when);
188
189         LNET_UNLOCK();
190
191         lnet_do_notify(lp);
192
193         LNET_LOCK();
194
195         lnet_peer_decref_locked(lp);
196
197         LNET_UNLOCK();
198         return 0;
199 }
200 EXPORT_SYMBOL(lnet_notify);
201
202 #else
203
204 int
205 lnet_notify (lnet_ni_t *ni, lnet_nid_t nid, int alive, time_t when)
206 {
207         return -EOPNOTSUPP;
208 }
209
210 #endif
211
212 static void
213 lnet_rtr_addref_locked(lnet_peer_t *lp)
214 {
215         LASSERT (lp->lp_refcount > 0);
216         LASSERT (lp->lp_rtr_refcount >= 0);
217
218         lp->lp_rtr_refcount++;
219         if (lp->lp_rtr_refcount == 1) {
220                 struct list_head *pos;
221
222                 /* a simple insertion sort */
223                 list_for_each_prev(pos, &the_lnet.ln_routers) {
224                         lnet_peer_t *rtr = list_entry(pos, lnet_peer_t, 
225                                                       lp_rtr_list);
226
227                         if (rtr->lp_nid < lp->lp_nid)
228                                 break;
229                 }
230
231                 list_add(&lp->lp_rtr_list, pos);
232                 /* addref for the_lnet.ln_routers */
233                 lnet_peer_addref_locked(lp);
234                 the_lnet.ln_routers_version++;
235         }
236 }
237
238 static void
239 lnet_rtr_decref_locked(lnet_peer_t *lp)
240 {
241         LASSERT (lp->lp_refcount > 0);
242         LASSERT (lp->lp_rtr_refcount > 0);
243
244         lp->lp_rtr_refcount--;
245         if (lp->lp_rtr_refcount == 0) {
246                 list_del(&lp->lp_rtr_list);
247                 /* decref for the_lnet.ln_routers */
248                 lnet_peer_decref_locked(lp);
249                 the_lnet.ln_routers_version++;
250         }
251 }
252
253 lnet_remotenet_t *
254 lnet_find_net_locked (__u32 net)
255 {
256         lnet_remotenet_t *rnet;
257         struct list_head *tmp;
258
259         LASSERT (!the_lnet.ln_shutdown);
260
261         list_for_each (tmp, &the_lnet.ln_remote_nets) {
262                 rnet = list_entry(tmp, lnet_remotenet_t, lrn_list);
263
264                 if (rnet->lrn_net == net)
265                         return rnet;
266         }
267         return NULL;
268 }
269
270 int
271 lnet_add_route (__u32 net, unsigned int hops, lnet_nid_t gateway)
272 {
273         struct list_head     zombies;
274         struct list_head    *e;
275         lnet_remotenet_t    *rnet;
276         lnet_remotenet_t    *rnet2;
277         lnet_route_t        *route;
278         lnet_route_t        *route2;
279         lnet_ni_t           *ni;
280         int                  add_route;
281         int                  rc;
282
283         CDEBUG(D_NET, "Add route: net %s hops %u gw %s\n",
284                libcfs_net2str(net), hops, libcfs_nid2str(gateway));
285
286         if (gateway == LNET_NID_ANY ||
287             LNET_NETTYP(LNET_NIDNET(gateway)) == LOLND ||
288             net == LNET_NIDNET(LNET_NID_ANY) ||
289             LNET_NETTYP(net) == LOLND ||
290             LNET_NIDNET(gateway) == net ||
291             hops < 1 || hops > 255)
292                 return (-EINVAL);
293
294         if (lnet_islocalnet(net))               /* it's a local network */
295                 return 0;                       /* ignore the route entry */
296
297         /* Assume net, route, all new */
298         LIBCFS_ALLOC(route, sizeof(*route));
299         LIBCFS_ALLOC(rnet, sizeof(*rnet));
300         if (route == NULL || rnet == NULL) {
301                 CERROR("Out of memory creating route %s %d %s\n",
302                        libcfs_net2str(net), hops, libcfs_nid2str(gateway));
303                 if (route != NULL)
304                         LIBCFS_FREE(route, sizeof(*route));
305                 if (rnet != NULL)
306                         LIBCFS_FREE(rnet, sizeof(*rnet));
307                 return -ENOMEM;
308         }
309
310         CFS_INIT_LIST_HEAD(&rnet->lrn_routes);
311         rnet->lrn_net = net;
312         rnet->lrn_hops = hops;
313
314         LNET_LOCK();
315
316         rc = lnet_nid2peer_locked(&route->lr_gateway, gateway);
317         if (rc != 0) {
318                 LNET_UNLOCK();
319
320                 LIBCFS_FREE(route, sizeof(*route));
321                 LIBCFS_FREE(rnet, sizeof(*rnet));
322
323                 if (rc == -EHOSTUNREACH)        /* gateway is not on a local net */
324                         return 0;               /* ignore the route entry */
325
326                 CERROR("Error %d creating route %s %d %s\n", rc,
327                        libcfs_net2str(net), hops, libcfs_nid2str(gateway));
328                 return rc;
329         }
330
331         LASSERT (!the_lnet.ln_shutdown);
332         CFS_INIT_LIST_HEAD(&zombies);
333
334         rnet2 = lnet_find_net_locked(net);
335         if (rnet2 == NULL) {
336                 /* new network */
337                 list_add_tail(&rnet->lrn_list, &the_lnet.ln_remote_nets);
338                 rnet2 = rnet;
339         }
340
341         if (hops > rnet2->lrn_hops) {
342                 /* New route is longer; ignore it */
343                 add_route = 0;
344         } else if (hops < rnet2->lrn_hops) {
345                 /* new route supercedes all currently known routes to this
346                  * net */
347                 list_add(&zombies, &rnet2->lrn_routes);
348                 list_del_init(&rnet2->lrn_routes);
349                 add_route = 1;
350         } else {
351                 add_route = 1;
352                 /* New route has the same hopcount as existing routes; search
353                  * for a duplicate route (it's a NOOP if it is) */
354                 list_for_each (e, &rnet2->lrn_routes) {
355                         route2 = list_entry(e, lnet_route_t, lr_list);
356
357                         if (route2->lr_gateway == route->lr_gateway) {
358                                 add_route = 0;
359                                 break;
360                         }
361
362                         /* our loopups must be true */
363                         LASSERT (route2->lr_gateway->lp_nid != gateway);
364                 }
365         }
366
367         if (add_route) {
368                 ni = route->lr_gateway->lp_ni;
369                 lnet_ni_addref_locked(ni);
370
371                 LASSERT (rc == 0);
372                 list_add_tail(&route->lr_list, &rnet2->lrn_routes);
373                 the_lnet.ln_remote_nets_version++;
374
375                 lnet_rtr_addref_locked(route->lr_gateway);
376
377                 LNET_UNLOCK();
378
379                 /* XXX Assume alive */
380                 if (ni->ni_lnd->lnd_notify != NULL)
381                         (ni->ni_lnd->lnd_notify)(ni, gateway, 1);
382
383                 lnet_ni_decref(ni);
384         } else {
385                 lnet_peer_decref_locked(route->lr_gateway);
386                 LNET_UNLOCK();
387                 LIBCFS_FREE(route, sizeof(*route));
388         }
389
390         if (rnet != rnet2)
391                 LIBCFS_FREE(rnet, sizeof(*rnet));
392
393         while (!list_empty(&zombies)) {
394                 route = list_entry(zombies.next, lnet_route_t, lr_list);
395                 list_del(&route->lr_list);
396
397                 LNET_LOCK();
398                 lnet_rtr_decref_locked(route->lr_gateway);
399                 lnet_peer_decref_locked(route->lr_gateway);
400                 LNET_UNLOCK();
401                 LIBCFS_FREE(route, sizeof(*route));
402         }
403
404         return rc;
405 }
406
407 int
408 lnet_check_routes (void)
409 {
410         lnet_remotenet_t    *rnet;
411         lnet_route_t        *route;
412         lnet_route_t        *route2;
413         struct list_head    *e1;
414         struct list_head    *e2;
415
416         LNET_LOCK();
417
418         list_for_each (e1, &the_lnet.ln_remote_nets) {
419                 rnet = list_entry(e1, lnet_remotenet_t, lrn_list);
420
421                 route2 = NULL;
422                 list_for_each (e2, &rnet->lrn_routes) {
423                         route = list_entry(e2, lnet_route_t, lr_list);
424
425                         if (route2 == NULL)
426                                 route2 = route;
427                         else if (route->lr_gateway->lp_ni !=
428                                  route2->lr_gateway->lp_ni) {
429                                 LNET_UNLOCK();
430
431                                 CERROR("Routes to %s via %s and %s not supported\n",
432                                        libcfs_net2str(rnet->lrn_net),
433                                        libcfs_nid2str(route->lr_gateway->lp_nid),
434                                        libcfs_nid2str(route2->lr_gateway->lp_nid));
435                                 return -EINVAL;
436                         }
437                 }
438         }
439
440         LNET_UNLOCK();
441         return 0;
442 }
443
444 int
445 lnet_del_route (__u32 net, lnet_nid_t gw_nid)
446 {
447         lnet_remotenet_t    *rnet;
448         lnet_route_t        *route;
449         struct list_head    *e1;
450         struct list_head    *e2;
451         int                  rc = -ENOENT;
452
453         CDEBUG(D_NET, "Del route: net %s : gw %s\n",
454                libcfs_net2str(net), libcfs_nid2str(gw_nid));
455
456         /* NB Caller may specify either all routes via the given gateway
457          * or a specific route entry actual NIDs) */
458
459  again:
460         LNET_LOCK();
461
462         list_for_each (e1, &the_lnet.ln_remote_nets) {
463                 rnet = list_entry(e1, lnet_remotenet_t, lrn_list);
464
465                 if (!(net == LNET_NIDNET(LNET_NID_ANY) ||
466                       net == rnet->lrn_net))
467                         continue;
468
469                 list_for_each (e2, &rnet->lrn_routes) {
470                         route = list_entry(e2, lnet_route_t, lr_list);
471
472                         if (!(gw_nid == LNET_NID_ANY ||
473                               gw_nid == route->lr_gateway->lp_nid))
474                                 continue;
475
476                         list_del(&route->lr_list);
477                         the_lnet.ln_remote_nets_version++;
478
479                         if (list_empty(&rnet->lrn_routes))
480                                 list_del(&rnet->lrn_list);
481                         else
482                                 rnet = NULL;
483
484                         lnet_rtr_decref_locked(route->lr_gateway);
485                         lnet_peer_decref_locked(route->lr_gateway);
486                         LNET_UNLOCK();
487
488                         LIBCFS_FREE(route, sizeof (*route));
489
490                         if (rnet != NULL)
491                                 LIBCFS_FREE(rnet, sizeof(*rnet));
492
493                         rc = 0;
494                         goto again;
495                 }
496         }
497
498         LNET_UNLOCK();
499         return rc;
500 }
501
502 void
503 lnet_destroy_routes (void)
504 {
505         lnet_del_route(LNET_NIDNET(LNET_NID_ANY), LNET_NID_ANY);
506 }
507
508 int
509 lnet_get_route (int idx, __u32 *net, __u32 *hops,
510                lnet_nid_t *gateway, __u32 *alive)
511 {
512         struct list_head    *e1;
513         struct list_head    *e2;
514         lnet_remotenet_t    *rnet;
515         lnet_route_t        *route;
516
517         LNET_LOCK();
518
519         list_for_each (e1, &the_lnet.ln_remote_nets) {
520                 rnet = list_entry(e1, lnet_remotenet_t, lrn_list);
521
522                 list_for_each (e2, &rnet->lrn_routes) {
523                         route = list_entry(e2, lnet_route_t, lr_list);
524
525                         if (idx-- == 0) {
526                                 *net     = rnet->lrn_net;
527                                 *hops    = rnet->lrn_hops;
528                                 *gateway = route->lr_gateway->lp_nid;
529                                 *alive   = route->lr_gateway->lp_alive;
530                                 LNET_UNLOCK();
531                                 return 0;
532                         }
533                 }
534         }
535
536         LNET_UNLOCK();
537         return -ENOENT;
538 }
539
540 #if defined(__KERNEL__) && defined(LNET_ROUTER)
541 static void
542 lnet_router_checker_event (lnet_event_t *event)
543 {
544         /* CAVEAT EMPTOR: I'm called with LNET_LOCKed and I'm not allowed to
545          * drop it (that's how come I see _every_ event, even ones that would
546          * overflow my EQ) */
547         lnet_peer_t   *lp;
548         lnet_nid_t     nid;
549
550         if (event->unlinked) {
551                 /* The router checker thread has unlinked the rc_md
552                  * and exited. */
553                 LASSERT (the_lnet.ln_rc_state == LNET_RC_STATE_UNLINKING);
554                 the_lnet.ln_rc_state = LNET_RC_STATE_UNLINKED;
555                 mutex_up(&the_lnet.ln_rc_signal);
556                 return;
557         }
558
559         LASSERT (event->type == LNET_EVENT_SEND ||
560                  event->type == LNET_EVENT_REPLY);
561
562         nid = (event->type == LNET_EVENT_SEND) ?
563               event->target.nid : event->initiator.nid;
564
565         lp = lnet_find_peer_locked(nid);
566         if (lp == NULL) {
567                 /* router may have been removed */
568                 CDEBUG(D_NET, "Router %s not found\n", libcfs_nid2str(nid));
569                 return;
570         }
571
572         if (event->type == LNET_EVENT_SEND)     /* re-enable another ping */
573                 lp->lp_ping_notsent = 0;
574
575         if (lnet_isrouter(lp) &&                /* ignore if no longer a router */
576             (event->status != 0 ||
577              event->type == LNET_EVENT_REPLY)) {
578
579                 /* A successful REPLY means the router is up.  If _any_ comms
580                  * to the router fail I assume it's down (this will happen if
581                  * we ping alive routers to try to detect router death before
582                  * apps get burned). */
583
584                 lnet_notify_locked(lp, 1, (event->status == 0),
585                                    cfs_time_current_sec());
586
587                 /* The router checker will wake up very shortly and do the
588                  * actual notification.  
589                  * XXX If 'lp' stops being a router before then, it will still
590                  * have the notification pending!!! */
591         }
592
593         /* This decref will NOT drop LNET_LOCK (it had to have 1 ref when it
594          * was in the peer table and I've not dropped the lock, so no-one else
595          * can have reduced the refcount) */
596         LASSERT(lp->lp_refcount > 1);
597
598         lnet_peer_decref_locked(lp);
599 }
600
601 static int
602 lnet_router_checker(void *arg)
603 {
604         static lnet_ping_info_t   pinginfo;
605
606         int                  rc;
607         lnet_handle_md_t     mdh;
608         lnet_peer_t         *rtr;
609         struct list_head    *entry;
610         time_t               now;
611         lnet_process_id_t    rtr_id;
612         int                  secs;
613
614         cfs_daemonize("router_checker");
615         cfs_block_allsigs();
616
617         rtr_id.pid = LUSTRE_SRV_LNET_PID;
618
619         LASSERT (the_lnet.ln_rc_state == LNET_RC_STATE_SHUTDOWN);
620
621         rc = LNetMDBind((lnet_md_t){.start     = &pinginfo,
622                                     .length    = sizeof(pinginfo),
623                                     .threshold = LNET_MD_THRESH_INF,
624                                     .options   = LNET_MD_TRUNCATE,
625                                     .eq_handle = the_lnet.ln_rc_eqh},
626                         LNET_UNLINK,
627                         &mdh);
628
629         if (rc < 0) {
630                 CERROR("Can't bind MD: %d\n", rc);
631                 the_lnet.ln_rc_state = rc;
632                 mutex_up(&the_lnet.ln_rc_signal);
633                 return rc;
634         }
635
636         LASSERT (rc == 0);
637
638         the_lnet.ln_rc_state = LNET_RC_STATE_RUNNING;
639         mutex_up(&the_lnet.ln_rc_signal);       /* let my parent go */
640
641         while (the_lnet.ln_rc_state == LNET_RC_STATE_RUNNING) {
642                 __u64 version;
643
644                 LNET_LOCK();
645 rescan:
646                 version = the_lnet.ln_routers_version;
647
648                 list_for_each (entry, &the_lnet.ln_routers) {
649                         rtr = list_entry(entry, lnet_peer_t, lp_rtr_list);
650
651                         lnet_peer_addref_locked(rtr);
652
653                         now = cfs_time_current_sec();
654
655                         if (rtr->lp_ping_deadline != 0 && /* ping timed out? */
656                             now > rtr->lp_ping_deadline)
657                                 lnet_notify_locked(rtr, 1, 0, now);
658
659                         LNET_UNLOCK();
660
661                         /* Run any outstanding notificiations */
662                         lnet_do_notify(rtr);
663
664                         if (rtr->lp_alive) {
665                                 secs = live_router_check_interval;
666                         } else {
667                                 secs = dead_router_check_interval;
668                         }
669                         if (secs <= 0)
670                                 secs = 0;
671
672                         if (secs != 0 &&
673                             !rtr->lp_ping_notsent &&
674                             now > rtr->lp_ping_timestamp + secs) {
675                                 CDEBUG(D_NET, "Check: %s\n",
676                                        libcfs_nid2str(rtr->lp_nid));
677
678                                 LNET_LOCK();
679                                 rtr_id.nid = rtr->lp_nid;
680                                 rtr->lp_ping_notsent = 1;
681                                 rtr->lp_ping_timestamp = now;
682
683                                 if (rtr->lp_ping_deadline == 0)
684                                         rtr->lp_ping_deadline = 
685                                                 now + router_ping_timeout;
686
687                                 LNET_UNLOCK();
688
689                                 LNetGet(LNET_NID_ANY, mdh, rtr_id,
690                                         LNET_RESERVED_PORTAL,
691                                         LNET_PROTO_PING_MATCHBITS, 0);
692                         }
693
694                         LNET_LOCK();
695                         lnet_peer_decref_locked(rtr);
696
697                         if (version != the_lnet.ln_routers_version) {
698                                 /* the routers list has changed */
699                                 goto rescan;
700                         }
701                 }
702
703                 LNET_UNLOCK();
704
705                 /* Call cfs_pause() here always adds 1 to load average 
706                  * because kernel counts # active tasks as nr_running 
707                  * + nr_uninterruptible. */
708                 set_current_state(CFS_TASK_INTERRUPTIBLE);
709                 cfs_schedule_timeout(CFS_TASK_INTERRUPTIBLE,
710                                      cfs_time_seconds(1));
711         }
712
713         LASSERT (the_lnet.ln_rc_state == LNET_RC_STATE_STOPTHREAD);
714         the_lnet.ln_rc_state = LNET_RC_STATE_UNLINKING;
715
716         rc = LNetMDUnlink(mdh);
717         LASSERT (rc == 0);
718
719         /* The unlink event callback will signal final completion */
720         return 0;
721 }
722
723
724 void
725 lnet_wait_known_routerstate(void)
726 {
727         lnet_peer_t         *rtr;
728         struct list_head    *entry;
729         int                  all_known;
730
731         for (;;) {
732                 LNET_LOCK();
733
734                 all_known = 1;
735                 list_for_each (entry, &the_lnet.ln_routers) {
736                         rtr = list_entry(entry, lnet_peer_t, lp_rtr_list);
737
738                         if (rtr->lp_alive_count == 0) {
739                                 all_known = 0;
740                                 break;
741                         }
742                 }
743
744                 LNET_UNLOCK();
745
746                 if (all_known)
747                         return;
748
749                 cfs_pause(cfs_time_seconds(1));
750         }
751 }
752
753 void
754 lnet_router_checker_stop(void)
755 {
756         int       rc;
757
758         LASSERT (the_lnet.ln_rc_state == LNET_RC_STATE_RUNNING ||
759                  the_lnet.ln_rc_state == LNET_RC_STATE_SHUTDOWN);
760
761         if (the_lnet.ln_rc_state == LNET_RC_STATE_SHUTDOWN)
762                 return;
763
764         the_lnet.ln_rc_state = LNET_RC_STATE_STOPTHREAD;
765         /* block until event callback signals exit */
766         mutex_down(&the_lnet.ln_rc_signal);
767
768         LASSERT (the_lnet.ln_rc_state == LNET_RC_STATE_UNLINKED);
769
770         rc = LNetEQFree(the_lnet.ln_rc_eqh);
771         LASSERT (rc == 0);
772
773         the_lnet.ln_rc_state = LNET_RC_STATE_SHUTDOWN;
774 }
775
776 int
777 lnet_router_checker_start(void)
778 {
779         int  rc;
780
781         LASSERT (the_lnet.ln_rc_state == LNET_RC_STATE_SHUTDOWN);
782
783         if (check_routers_before_use &&
784             dead_router_check_interval <= 0) {
785                 LCONSOLE_ERROR_MSG(0x10a, "'dead_router_check_interval' must be"
786                                    " set if 'check_routers_before_use' is set"
787                                    "\n");
788                 return -EINVAL;
789         }
790
791         if (live_router_check_interval <= 0 &&
792             dead_router_check_interval <= 0)
793                 return 0;
794
795         init_mutex_locked(&the_lnet.ln_rc_signal);
796
797         /* EQ size doesn't matter; the callback is guaranteed to get every
798          * event */
799         rc = LNetEQAlloc(1, lnet_router_checker_event,
800                          &the_lnet.ln_rc_eqh);
801         if (rc != 0) {
802                 CERROR("Can't allocate EQ: %d\n", rc);
803                 return -ENOMEM;
804         }
805
806         rc = (int)cfs_kernel_thread(lnet_router_checker, NULL, 0);
807         if (rc < 0) {
808                 CERROR("Can't start router checker thread: %d\n", rc);
809                 goto failed;
810         }
811
812         mutex_down(&the_lnet.ln_rc_signal);     /* wait for checker to startup */
813
814         rc = the_lnet.ln_rc_state;
815         if (rc < 0) {
816                 the_lnet.ln_rc_state = LNET_RC_STATE_SHUTDOWN;
817                 goto failed;
818         }
819
820         LASSERT (the_lnet.ln_rc_state == LNET_RC_STATE_RUNNING);
821
822         if (check_routers_before_use) {
823                 /* Note that a helpful side-effect of pinging all known routers
824                  * at startup is that it makes them drop stale connections they
825                  * may have to a previous instance of me. */
826                 lnet_wait_known_routerstate();
827         }
828
829         return 0;
830
831  failed:
832         rc = LNetEQFree(the_lnet.ln_rc_eqh);
833         LASSERT (rc == 0);
834         return rc;
835 }
836
837 void
838 lnet_destroy_rtrbuf(lnet_rtrbuf_t *rb, int npages)
839 {
840         int sz = offsetof(lnet_rtrbuf_t, rb_kiov[npages]);
841
842         while (--npages >= 0)
843                 cfs_free_page(rb->rb_kiov[npages].kiov_page);
844
845         LIBCFS_FREE(rb, sz);
846 }
847
848 lnet_rtrbuf_t *
849 lnet_new_rtrbuf(lnet_rtrbufpool_t *rbp)
850 {
851         int            npages = rbp->rbp_npages;
852         int            sz = offsetof(lnet_rtrbuf_t, rb_kiov[npages]);
853         struct page   *page;
854         lnet_rtrbuf_t *rb;
855         int            i;
856
857         LIBCFS_ALLOC(rb, sz);
858         if (rb == NULL)
859                 return NULL;
860
861         rb->rb_pool = rbp;
862
863         for (i = 0; i < npages; i++) {
864                 page = cfs_alloc_page(CFS_ALLOC_ZERO | CFS_ALLOC_STD);
865                 if (page == NULL) {
866                         while (--i >= 0)
867                                 cfs_free_page(rb->rb_kiov[i].kiov_page);
868
869                         LIBCFS_FREE(rb, sz);
870                         return NULL;
871                 }
872
873                 rb->rb_kiov[i].kiov_len = CFS_PAGE_SIZE;
874                 rb->rb_kiov[i].kiov_offset = 0;
875                 rb->rb_kiov[i].kiov_page = page;
876         }
877
878         return rb;
879 }
880
881 void
882 lnet_rtrpool_free_bufs(lnet_rtrbufpool_t *rbp)
883 {
884         int            npages = rbp->rbp_npages;
885         int            nbuffers = 0;
886         lnet_rtrbuf_t *rb;
887
888         LASSERT (list_empty(&rbp->rbp_msgs));
889         LASSERT (rbp->rbp_credits == rbp->rbp_nbuffers);
890
891         while (!list_empty(&rbp->rbp_bufs)) {
892                 LASSERT (rbp->rbp_credits > 0);
893
894                 rb = list_entry(rbp->rbp_bufs.next,
895                                 lnet_rtrbuf_t, rb_list);
896                 list_del(&rb->rb_list);
897                 lnet_destroy_rtrbuf(rb, npages);
898                 nbuffers++;
899         }
900
901         LASSERT (rbp->rbp_nbuffers == nbuffers);
902         LASSERT (rbp->rbp_credits == nbuffers);
903
904         rbp->rbp_nbuffers = rbp->rbp_credits = 0;
905 }
906
907 int
908 lnet_rtrpool_alloc_bufs(lnet_rtrbufpool_t *rbp, int nbufs)
909 {
910         lnet_rtrbuf_t *rb;
911         int            i;
912
913         if (rbp->rbp_nbuffers != 0) {
914                 LASSERT (rbp->rbp_nbuffers == nbufs);
915                 return 0;
916         }
917
918         for (i = 0; i < nbufs; i++) {
919                 rb = lnet_new_rtrbuf(rbp);
920
921                 if (rb == NULL) {
922                         CERROR("Failed to allocate %d router bufs of %d pages\n",
923                                nbufs, rbp->rbp_npages);
924                         return -ENOMEM;
925                 }
926
927                 rbp->rbp_nbuffers++;
928                 rbp->rbp_credits++;
929                 rbp->rbp_mincredits++;
930                 list_add(&rb->rb_list, &rbp->rbp_bufs);
931
932                 /* No allocation "under fire" */
933                 /* Otherwise we'd need code to schedule blocked msgs etc */
934                 LASSERT (!the_lnet.ln_routing);
935         }
936
937         LASSERT (rbp->rbp_credits == nbufs);
938         return 0;
939 }
940
941 void
942 lnet_rtrpool_init(lnet_rtrbufpool_t *rbp, int npages)
943 {
944         CFS_INIT_LIST_HEAD(&rbp->rbp_msgs);
945         CFS_INIT_LIST_HEAD(&rbp->rbp_bufs);
946
947         rbp->rbp_npages = npages;
948         rbp->rbp_credits = 0;
949         rbp->rbp_mincredits = 0;
950 }
951
952 void
953 lnet_free_rtrpools(void)
954 {
955         lnet_rtrpool_free_bufs(&the_lnet.ln_rtrpools[0]);
956         lnet_rtrpool_free_bufs(&the_lnet.ln_rtrpools[1]);
957         lnet_rtrpool_free_bufs(&the_lnet.ln_rtrpools[2]);
958 }
959
960 void
961 lnet_init_rtrpools(void)
962 {
963         int small_pages = 1;
964         int large_pages = (LNET_MTU + CFS_PAGE_SIZE - 1) >> CFS_PAGE_SHIFT;
965
966         lnet_rtrpool_init(&the_lnet.ln_rtrpools[0], 0);
967         lnet_rtrpool_init(&the_lnet.ln_rtrpools[1], small_pages);
968         lnet_rtrpool_init(&the_lnet.ln_rtrpools[2], large_pages);
969 }
970
971
972 int
973 lnet_alloc_rtrpools(int im_a_router)
974 {
975         int       rc;
976
977         if (!strcmp(forwarding, "")) {
978                 /* not set either way */
979                 if (!im_a_router)
980                         return 0;
981         } else if (!strcmp(forwarding, "disabled")) {
982                 /* explicitly disabled */
983                 return 0;
984         } else if (!strcmp(forwarding, "enabled")) {
985                 /* explicitly enabled */
986         } else {
987                 LCONSOLE_ERROR_MSG(0x10b, "'forwarding' not set to either "
988                                    "'enabled' or 'disabled'\n");
989                 return -EINVAL;
990         }
991
992         if (tiny_router_buffers <= 0) {
993                 LCONSOLE_ERROR_MSG(0x10c, "tiny_router_buffers=%d invalid when "
994                                    "routing enabled\n", tiny_router_buffers);
995                 rc = -EINVAL;
996                 goto failed;
997         }
998
999         rc = lnet_rtrpool_alloc_bufs(&the_lnet.ln_rtrpools[0],
1000                                      tiny_router_buffers);
1001         if (rc != 0)
1002                 goto failed;
1003
1004         if (small_router_buffers <= 0) {
1005                 LCONSOLE_ERROR_MSG(0x10d, "small_router_buffers=%d invalid when"
1006                                    " routing enabled\n", small_router_buffers);
1007                 rc = -EINVAL;
1008                 goto failed;
1009         }
1010
1011         rc = lnet_rtrpool_alloc_bufs(&the_lnet.ln_rtrpools[1],
1012                                      small_router_buffers);
1013         if (rc != 0)
1014                 goto failed;
1015
1016         if (large_router_buffers <= 0) {
1017                 LCONSOLE_ERROR_MSG(0x10e, "large_router_buffers=%d invalid when"
1018                                    " routing enabled\n", large_router_buffers);
1019                 rc = -EINVAL;
1020                 goto failed;
1021         }
1022
1023         rc = lnet_rtrpool_alloc_bufs(&the_lnet.ln_rtrpools[2],
1024                                      large_router_buffers);
1025         if (rc != 0)
1026                 goto failed;
1027
1028         LNET_LOCK();
1029         the_lnet.ln_routing = 1;
1030         LNET_UNLOCK();
1031
1032         return 0;
1033
1034  failed:
1035         lnet_free_rtrpools();
1036         return rc;
1037 }
1038
1039 #else
1040
1041 int
1042 lnet_peers_start_down(void)
1043 {
1044         return 0;
1045 }
1046
1047 void
1048 lnet_router_checker_stop(void)
1049 {
1050         return;
1051 }
1052
1053 int
1054 lnet_router_checker_start(void)
1055 {
1056         return 0;
1057 }
1058
1059 void
1060 lnet_free_rtrpools (void)
1061 {
1062 }
1063
1064 void
1065 lnet_init_rtrpools (void)
1066 {
1067 }
1068
1069 int
1070 lnet_alloc_rtrpools (int im_a_arouter)
1071 {
1072         return 0;
1073 }
1074
1075 #endif