Whamcloud - gitweb
c7368ca3895e9e8f0f6f1b9e0ae0919548d0b4ca
[fs/lustre-release.git] / lnet / lnet / router.c
1 /*
2  * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved.
3  *
4  * Copyright (c) 2011, 2017, Intel Corporation.
5  *
6  *   This file is part of Lustre, https://wiki.whamcloud.com/
7  *
8  *   Portals is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Portals is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Portals; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22
23 #define DEBUG_SUBSYSTEM S_LNET
24
25 #include <linux/random.h>
26 #include <lnet/lib-lnet.h>
27
28 #define LNET_NRB_TINY_MIN       512     /* min value for each CPT */
29 #define LNET_NRB_TINY           (LNET_NRB_TINY_MIN * 4)
30 #define LNET_NRB_SMALL_MIN      4096    /* min value for each CPT */
31 #define LNET_NRB_SMALL          (LNET_NRB_SMALL_MIN * 4)
32 #define LNET_NRB_SMALL_PAGES    1
33 #define LNET_NRB_LARGE_MIN      256     /* min value for each CPT */
34 #define LNET_NRB_LARGE          (LNET_NRB_LARGE_MIN * 4)
35 #define LNET_NRB_LARGE_PAGES    ((LNET_MTU + PAGE_SIZE - 1) >> \
36                                   PAGE_SHIFT)
37
38 extern unsigned int lnet_current_net_count;
39
40 static char *forwarding = "";
41 module_param(forwarding, charp, 0444);
42 MODULE_PARM_DESC(forwarding, "Explicitly enable/disable forwarding between networks");
43
44 static int tiny_router_buffers;
45 module_param(tiny_router_buffers, int, 0444);
46 MODULE_PARM_DESC(tiny_router_buffers, "# of 0 payload messages to buffer in the router");
47 static int small_router_buffers;
48 module_param(small_router_buffers, int, 0444);
49 MODULE_PARM_DESC(small_router_buffers, "# of small (1 page) messages to buffer in the router");
50 static int large_router_buffers;
51 module_param(large_router_buffers, int, 0444);
52 MODULE_PARM_DESC(large_router_buffers, "# of large messages to buffer in the router");
53 static int peer_buffer_credits;
54 module_param(peer_buffer_credits, int, 0444);
55 MODULE_PARM_DESC(peer_buffer_credits, "# router buffer credits per peer");
56
57 static int auto_down = 1;
58 module_param(auto_down, int, 0444);
59 MODULE_PARM_DESC(auto_down, "Automatically mark peers down on comms error");
60
61 int
62 lnet_peer_buffer_credits(struct lnet_net *net)
63 {
64         /* NI option overrides LNet default */
65         if (net->net_tunables.lct_peer_rtr_credits > 0)
66                 return net->net_tunables.lct_peer_rtr_credits;
67         if (peer_buffer_credits > 0)
68                 return peer_buffer_credits;
69
70         /* As an approximation, allow this peer the same number of router
71          * buffers as it is allowed outstanding sends */
72         return net->net_tunables.lct_peer_tx_credits;
73 }
74
75 static int check_routers_before_use;
76 module_param(check_routers_before_use, int, 0444);
77 MODULE_PARM_DESC(check_routers_before_use, "Assume routers are down and ping them before use");
78
79 int avoid_asym_router_failure = 1;
80 module_param(avoid_asym_router_failure, int, 0644);
81 MODULE_PARM_DESC(avoid_asym_router_failure, "Avoid asymmetrical router failures (0 to disable)");
82
83 int dead_router_check_interval = INT_MIN;
84 module_param(dead_router_check_interval, int, 0444);
85 MODULE_PARM_DESC(dead_router_check_interval, "(DEPRECATED - Use alive_router_check_interval)");
86
87 int live_router_check_interval = INT_MIN;
88 module_param(live_router_check_interval, int, 0444);
89 MODULE_PARM_DESC(live_router_check_interval, "(DEPRECATED - Use alive_router_check_interval)");
90
91 int alive_router_check_interval = 60;
92 module_param(alive_router_check_interval, int, 0644);
93 MODULE_PARM_DESC(alive_router_check_interval, "Seconds between live router health checks (<= 0 to disable)");
94
95 static int router_ping_timeout = 50;
96 module_param(router_ping_timeout, int, 0644);
97 MODULE_PARM_DESC(router_ping_timeout, "Seconds to wait for the reply to a router health query");
98
99 /*
100  * A value between 0 and 100. 0 meaning that even if router's interfaces
101  * have the worse health still consider the gateway usable.
102  * 100 means that at least one interface on the route's remote net is 100%
103  * healthy to consider the route alive.
104  * The default is set to 100 to ensure we maintain the original behavior.
105  */
106 unsigned int router_sensitivity_percentage = 100;
107 static int rtr_sensitivity_set(const char *val, cfs_kernel_param_arg_t *kp);
108 static struct kernel_param_ops param_ops_rtr_sensitivity = {
109         .set = rtr_sensitivity_set,
110         .get = param_get_int,
111 };
112 #define param_check_rtr_sensitivity(name, p) \
113                 __param_check(name, p, int)
114 #ifdef HAVE_KERNEL_PARAM_OPS
115 module_param(router_sensitivity_percentage, rtr_sensitivity, S_IRUGO|S_IWUSR);
116 #else
117 module_param_call(router_sensitivity_percentage, rtr_sensitivity_set, param_get_int,
118                   &router_sensitivity_percentage, S_IRUGO|S_IWUSR);
119 #endif
120 MODULE_PARM_DESC(router_sensitivity_percentage,
121                 "How healthy a gateway should be to be used in percent");
122
123 static int
124 rtr_sensitivity_set(const char *val, cfs_kernel_param_arg_t *kp)
125 {
126         int rc;
127         unsigned *sen = (unsigned *)kp->arg;
128         unsigned long value;
129
130         rc = kstrtoul(val, 0, &value);
131         if (rc) {
132                 CERROR("Invalid module parameter value for 'router_sensitivity_percentage'\n");
133                 return rc;
134         }
135
136         if (value < 0 || value > 100) {
137                 CERROR("Invalid value: %lu for 'router_sensitivity_percentage'\n", value);
138                 return -EINVAL;
139         }
140
141         /*
142          * The purpose of locking the api_mutex here is to ensure that
143          * the correct value ends up stored properly.
144          */
145         mutex_lock(&the_lnet.ln_api_mutex);
146
147         *sen = value;
148
149         mutex_unlock(&the_lnet.ln_api_mutex);
150
151         return 0;
152 }
153
154 void
155 lnet_rtr_transfer_to_peer(struct lnet_peer *src, struct lnet_peer *target)
156 {
157         struct lnet_route *route;
158
159         lnet_net_lock(LNET_LOCK_EX);
160         target->lp_rtr_refcount += src->lp_rtr_refcount;
161         /* move the list of queued messages to the new peer */
162         list_splice_init(&src->lp_rtrq, &target->lp_rtrq);
163         /* move all the routes that reference the peer */
164         list_splice_init(&src->lp_routes, &target->lp_routes);
165         /* update all the routes to point to the new peer */
166         list_for_each_entry(route, &target->lp_routes, lr_gwlist)
167                 route->lr_gateway = target;
168         /* remove the old peer from the ln_routers list */
169         list_del_init(&src->lp_rtr_list);
170         /* add the new peer to the ln_routers list */
171         if (list_empty(&target->lp_rtr_list)) {
172                 lnet_peer_addref_locked(target);
173                 list_add_tail(&target->lp_rtr_list, &the_lnet.ln_routers);
174         }
175         /* reset the ref count on the old peer and decrement its ref count */
176         src->lp_rtr_refcount = 0;
177         lnet_peer_decref_locked(src);
178         /* update the router version */
179         the_lnet.ln_routers_version++;
180         lnet_net_unlock(LNET_LOCK_EX);
181 }
182
183 int
184 lnet_peers_start_down(void)
185 {
186         return check_routers_before_use;
187 }
188
189 /*
190  * A net is alive if at least one gateway NI on the network is alive.
191  */
192 static bool
193 lnet_is_gateway_net_alive(struct lnet_peer_net *lpn)
194 {
195         struct lnet_peer_ni *lpni;
196
197         list_for_each_entry(lpni, &lpn->lpn_peer_nis, lpni_peer_nis) {
198                 if (lnet_is_peer_ni_alive(lpni))
199                         return true;
200         }
201
202         return false;
203 }
204
205 /*
206  * a gateway is alive only if all its nets are alive
207  * called with cpt lock held
208  */
209 bool lnet_is_gateway_alive(struct lnet_peer *gw)
210 {
211         struct lnet_peer_net *lpn;
212
213         list_for_each_entry(lpn, &gw->lp_peer_nets, lpn_peer_nets) {
214                 if (!lnet_is_gateway_net_alive(lpn))
215                         return false;
216         }
217
218         return true;
219 }
220
221 /*
222  * lnet_is_route_alive() needs to be called with cpt lock held
223  * A route is alive if the gateway can route between the local network and
224  * the remote network of the route.
225  * This means at least one NI is alive on each of the local and remote
226  * networks of the gateway.
227  */
228 bool lnet_is_route_alive(struct lnet_route *route)
229 {
230         struct lnet_peer *gw = route->lr_gateway;
231         struct lnet_peer_net *llpn;
232         struct lnet_peer_net *rlpn;
233         bool route_alive;
234
235         /*
236          * if discovery is disabled then rely on the cached aliveness
237          * information. This is handicapped information which we log when
238          * we receive the discovery ping response. The most uptodate
239          * aliveness information can only be obtained when discovery is
240          * enabled.
241          */
242         if (lnet_is_discovery_disabled(gw))
243                 return route->lr_alive;
244
245         /*
246          * check the gateway's interfaces on the route rnet to make sure
247          * that the gateway is viable.
248          */
249         llpn = lnet_peer_get_net_locked(gw, route->lr_lnet);
250         if (!llpn)
251                 return false;
252
253         route_alive = lnet_is_gateway_net_alive(llpn);
254
255         if (avoid_asym_router_failure) {
256                 rlpn = lnet_peer_get_net_locked(gw, route->lr_net);
257                 if (!rlpn)
258                         return false;
259                 route_alive = route_alive &&
260                               lnet_is_gateway_net_alive(rlpn);
261         }
262
263         if (!route_alive)
264                 return route_alive;
265
266         spin_lock(&gw->lp_lock);
267         if (!(gw->lp_state & LNET_PEER_ROUTER_ENABLED)) {
268                 if (gw->lp_rtr_refcount > 0)
269                         CERROR("peer %s is being used as a gateway but routing feature is not turned on\n",
270                                libcfs_nid2str(gw->lp_primary_nid));
271                 route_alive = false;
272         }
273         spin_unlock(&gw->lp_lock);
274
275         return route_alive;
276 }
277
278 void
279 lnet_consolidate_routes_locked(struct lnet_peer *orig_lp,
280                                struct lnet_peer *new_lp)
281 {
282         struct lnet_peer_ni *lpni;
283         struct lnet_route *route;
284
285         /*
286          * Although a route is correlated with a peer, but when it's added
287          * a specific NID is used. That NID refers to a peer_ni within
288          * a peer. There could be other peer_nis on the same net, which
289          * can be used to send to that gateway. However when we are
290          * consolidating gateways because of discovery, the nid used to
291          * add the route might've moved between gateway peers. In this
292          * case we want to move the route to the new gateway as well. The
293          * intent here is not to confuse the user who added the route.
294          */
295         list_for_each_entry(route, &orig_lp->lp_routes, lr_gwlist) {
296                 lpni = lnet_peer_get_ni_locked(orig_lp, route->lr_nid);
297                 if (!lpni) {
298                         lnet_net_lock(LNET_LOCK_EX);
299                         list_move(&route->lr_gwlist, &new_lp->lp_routes);
300                         lnet_net_unlock(LNET_LOCK_EX);
301                 }
302         }
303
304 }
305
306 static inline void
307 lnet_set_route_aliveness(struct lnet_route *route, bool alive)
308 {
309         /* Log when there's a state change */
310         if (route->lr_alive != alive) {
311                 CERROR("route to %s through %s has gone from %s to %s\n",
312                        libcfs_net2str(route->lr_net),
313                        libcfs_nid2str(route->lr_gateway->lp_primary_nid),
314                        (route->lr_alive) ? "up" : "down",
315                        alive ? "up" : "down");
316                 route->lr_alive = alive;
317         }
318 }
319
320 void
321 lnet_router_discovery_ping_reply(struct lnet_peer *lp)
322 {
323         struct lnet_ping_buffer *pbuf = lp->lp_data;
324         struct lnet_remotenet *rnet;
325         struct lnet_peer_net *llpn;
326         struct lnet_route *route;
327         bool net_up = false;
328         unsigned lp_state;
329         __u32 net, net2;
330         int i, j;
331
332
333         spin_lock(&lp->lp_lock);
334         lp_state = lp->lp_state;
335
336         /* only handle replies if discovery is disabled. */
337         if (!lnet_is_discovery_disabled_locked(lp)) {
338                 spin_unlock(&lp->lp_lock);
339                 return;
340         }
341
342         spin_unlock(&lp->lp_lock);
343
344         if (lp_state & LNET_PEER_PING_FAILED ||
345             pbuf->pb_info.pi_features & LNET_PING_FEAT_RTE_DISABLED) {
346                 CDEBUG(D_NET, "Set routes down for gw %s because %s %d\n",
347                        libcfs_nid2str(lp->lp_primary_nid),
348                        lp_state & LNET_PEER_PING_FAILED ? "ping failed" :
349                        "route feature is disabled", lp->lp_ping_error);
350                 /* If the ping failed or the peer has routing disabled then
351                  * mark the routes served by this peer down
352                  */
353                 list_for_each_entry(route, &lp->lp_routes, lr_gwlist)
354                         lnet_set_route_aliveness(route, false);
355                 return;
356         }
357
358         CDEBUG(D_NET, "Discovery is disabled. Processing reply for gw: %s\n",
359                libcfs_nid2str(lp->lp_primary_nid));
360
361         /*
362          * examine the ping response:
363          * For each NID in the ping response, extract the net
364          * if the net exists on our remote net list then
365          * iterate over the routes on the rnet and if:
366          *      The route's local net is healthy and
367          *      The remote net status is UP, then mark the route up
368          * otherwise mark the route down
369          */
370         for (i = 1; i < pbuf->pb_info.pi_nnis; i++) {
371                 net = LNET_NIDNET(pbuf->pb_info.pi_ni[i].ns_nid);
372                 rnet = lnet_find_rnet_locked(net);
373                 if (!rnet)
374                         continue;
375                 list_for_each_entry(route, &rnet->lrn_routes, lr_list) {
376                         /* check if this is the route's gateway */
377                         if (lp->lp_primary_nid !=
378                             route->lr_gateway->lp_primary_nid)
379                                 continue;
380
381                         llpn = lnet_peer_get_net_locked(lp, route->lr_lnet);
382                         if (!llpn) {
383                                 lnet_set_route_aliveness(route, false);
384                                 continue;
385                         }
386
387                         if (!lnet_is_gateway_net_alive(llpn)) {
388                                 lnet_set_route_aliveness(route, false);
389                                 continue;
390                         }
391
392                         if (avoid_asym_router_failure &&
393                             pbuf->pb_info.pi_ni[i].ns_status !=
394                                 LNET_NI_STATUS_UP) {
395                                 net_up = false;
396
397                                 /*
398                                  * revisit all previous NIDs and check if
399                                  * any on the network we're examining is
400                                  * up. If at least one is up then we consider
401                                  * the route to be alive.
402                                  */
403                                 for (j = 1; j < i; j++) {
404                                         net2 = LNET_NIDNET(pbuf->pb_info.
405                                                            pi_ni[j].ns_nid);
406                                         if (net2 == net &&
407                                             pbuf->pb_info.pi_ni[j].ns_status ==
408                                                 LNET_NI_STATUS_UP)
409                                                 net_up = true;
410                                 }
411                                 if (!net_up) {
412                                         lnet_set_route_aliveness(route, false);
413                                         continue;
414                                 }
415                         }
416
417                         lnet_set_route_aliveness(route, true);
418                 }
419         }
420 }
421
422 void
423 lnet_router_discovery_complete(struct lnet_peer *lp)
424 {
425         struct lnet_peer_ni *lpni = NULL;
426         struct lnet_route *route;
427
428         spin_lock(&lp->lp_lock);
429         lp->lp_state &= ~LNET_PEER_RTR_DISCOVERY;
430         spin_unlock(&lp->lp_lock);
431
432         /*
433          * Router discovery successful? All peer information would've been
434          * updated already. No need to do any more processing
435          */
436         if (!lp->lp_dc_error)
437                 return;
438         /*
439          * discovery failed? then we need to set the status of each lpni
440          * to DOWN. It will be updated the next time we discover the
441          * router. For router peer NIs not on local networks, we never send
442          * messages directly to them, so their health will always remain
443          * at maximum. We can only tell if they are up or down from the
444          * status returned in the PING response. If we fail to get that
445          * status in our scheduled router discovery, then we'll assume
446          * it's down until we're told otherwise.
447          */
448         CDEBUG(D_NET, "%s: Router discovery failed %d\n",
449                libcfs_nid2str(lp->lp_primary_nid), lp->lp_dc_error);
450         while ((lpni = lnet_get_next_peer_ni_locked(lp, NULL, lpni)) != NULL)
451                 lpni->lpni_ns_status = LNET_NI_STATUS_DOWN;
452
453         list_for_each_entry(route, &lp->lp_routes, lr_gwlist)
454                 lnet_set_route_aliveness(route, false);
455 }
456
457 static void
458 lnet_rtr_addref_locked(struct lnet_peer *lp)
459 {
460         LASSERT(lp->lp_rtr_refcount >= 0);
461
462         /* lnet_net_lock must be exclusively locked */
463         lp->lp_rtr_refcount++;
464         if (lp->lp_rtr_refcount == 1) {
465                 list_add_tail(&lp->lp_rtr_list, &the_lnet.ln_routers);
466                 /* addref for the_lnet.ln_routers */
467                 lnet_peer_addref_locked(lp);
468                 the_lnet.ln_routers_version++;
469         }
470 }
471
472 static void
473 lnet_rtr_decref_locked(struct lnet_peer *lp)
474 {
475         LASSERT(atomic_read(&lp->lp_refcount) > 0);
476         LASSERT(lp->lp_rtr_refcount > 0);
477
478         /* lnet_net_lock must be exclusively locked */
479         lp->lp_rtr_refcount--;
480         if (lp->lp_rtr_refcount == 0) {
481                 LASSERT(list_empty(&lp->lp_routes));
482
483                 list_del(&lp->lp_rtr_list);
484                 /* decref for the_lnet.ln_routers */
485                 lnet_peer_decref_locked(lp);
486                 the_lnet.ln_routers_version++;
487         }
488 }
489
490 struct lnet_remotenet *
491 lnet_find_rnet_locked(__u32 net)
492 {
493         struct lnet_remotenet *rnet;
494         struct list_head *tmp;
495         struct list_head *rn_list;
496
497         LASSERT(the_lnet.ln_state == LNET_STATE_RUNNING);
498
499         rn_list = lnet_net2rnethash(net);
500         list_for_each(tmp, rn_list) {
501                 rnet = list_entry(tmp, struct lnet_remotenet, lrn_list);
502
503                 if (rnet->lrn_net == net)
504                         return rnet;
505         }
506         return NULL;
507 }
508
509 static void lnet_shuffle_seed(void)
510 {
511         static int seeded;
512         struct lnet_ni *ni = NULL;
513
514         if (seeded)
515                 return;
516
517         /* Nodes with small feet have little entropy
518          * the NID for this node gives the most entropy in the low bits */
519         while ((ni = lnet_get_next_ni_locked(NULL, ni)))
520                 add_device_randomness(&ni->ni_nid, sizeof(ni->ni_nid));
521
522         seeded = 1;
523 }
524
525 /* NB expects LNET_LOCK held */
526 static void
527 lnet_add_route_to_rnet(struct lnet_remotenet *rnet, struct lnet_route *route)
528 {
529         struct lnet_peer_net *lpn;
530         unsigned int offset = 0;
531         unsigned int len = 0;
532         struct list_head *e;
533
534         lnet_shuffle_seed();
535
536         list_for_each(e, &rnet->lrn_routes)
537                 len++;
538
539         /*
540          * Randomly adding routes to the list is done to ensure that when
541          * different nodes are using the same list of routers, they end up
542          * preferring different routers.
543          */
544         offset = prandom_u32_max(len + 1);
545         list_for_each(e, &rnet->lrn_routes) {
546                 if (offset == 0)
547                         break;
548                 offset--;
549         }
550         list_add(&route->lr_list, e);
551         /*
552          * force a router check on the gateway to make sure the route is
553          * alive
554          */
555         list_for_each_entry(lpn, &route->lr_gateway->lp_peer_nets,
556                             lpn_peer_nets) {
557                 lpn->lpn_rtrcheck_timestamp = 0;
558         }
559
560         the_lnet.ln_remote_nets_version++;
561
562         /* add the route on the gateway list */
563         list_add(&route->lr_gwlist, &route->lr_gateway->lp_routes);
564
565         /* take a router reference count on the gateway */
566         lnet_rtr_addref_locked(route->lr_gateway);
567 }
568
569 int
570 lnet_add_route(__u32 net, __u32 hops, lnet_nid_t gateway,
571                __u32 priority, __u32 sensitivity)
572 {
573         struct list_head *route_entry;
574         struct lnet_remotenet *rnet;
575         struct lnet_remotenet *rnet2;
576         struct lnet_route *route;
577         struct lnet_peer_ni *lpni;
578         struct lnet_peer *gw;
579         int add_route;
580         int rc;
581
582         CDEBUG(D_NET, "Add route: remote net %s hops %d priority %u gw %s\n",
583                libcfs_net2str(net), hops, priority, libcfs_nid2str(gateway));
584
585         if (gateway == LNET_NID_ANY ||
586             LNET_NETTYP(LNET_NIDNET(gateway)) == LOLND ||
587             net == LNET_NIDNET(LNET_NID_ANY) ||
588             LNET_NETTYP(net) == LOLND ||
589             LNET_NIDNET(gateway) == net ||
590             (hops != LNET_UNDEFINED_HOPS && (hops < 1 || hops > 255)))
591                 return -EINVAL;
592
593         /* it's a local network */
594         if (lnet_islocalnet(net))
595                 return -EEXIST;
596
597         if (!lnet_islocalnet(LNET_NIDNET(gateway))) {
598                 CERROR("Cannot add route with gateway %s. There is no local interface configured on LNet %s\n",
599                        libcfs_nid2str(gateway),
600                        libcfs_net2str(LNET_NIDNET(gateway)));
601                 return -EHOSTUNREACH;
602         }
603
604         /* Assume net, route, all new */
605         LIBCFS_ALLOC(route, sizeof(*route));
606         LIBCFS_ALLOC(rnet, sizeof(*rnet));
607         if (route == NULL || rnet == NULL) {
608                 CERROR("Out of memory creating route %s %d %s\n",
609                        libcfs_net2str(net), hops, libcfs_nid2str(gateway));
610                 if (route != NULL)
611                         LIBCFS_FREE(route, sizeof(*route));
612                 if (rnet != NULL)
613                         LIBCFS_FREE(rnet, sizeof(*rnet));
614                 return -ENOMEM;
615         }
616
617         INIT_LIST_HEAD(&rnet->lrn_routes);
618         rnet->lrn_net = net;
619         /* store the local and remote net that the route represents */
620         route->lr_lnet = LNET_NIDNET(gateway);
621         route->lr_net = net;
622         route->lr_nid = gateway;
623         route->lr_priority = priority;
624         route->lr_hops = hops;
625
626         lnet_net_lock(LNET_LOCK_EX);
627
628         /*
629          * lnet_nid2peerni_ex() grabs a ref on the lpni. We will need to
630          * lose that once we're done
631          */
632         lpni = lnet_nid2peerni_ex(gateway, LNET_LOCK_EX);
633         if (IS_ERR(lpni)) {
634                 lnet_net_unlock(LNET_LOCK_EX);
635
636                 LIBCFS_FREE(route, sizeof(*route));
637                 LIBCFS_FREE(rnet, sizeof(*rnet));
638
639                 rc = PTR_ERR(lpni);
640                 CERROR("Error %d creating route %s %d %s\n", rc,
641                         libcfs_net2str(net), hops,
642                         libcfs_nid2str(gateway));
643                 return rc;
644         }
645
646         LASSERT(lpni->lpni_peer_net && lpni->lpni_peer_net->lpn_peer);
647         gw = lpni->lpni_peer_net->lpn_peer;
648
649         route->lr_gateway = gw;
650
651         rnet2 = lnet_find_rnet_locked(net);
652         if (rnet2 == NULL) {
653                 /* new network */
654                 list_add_tail(&rnet->lrn_list, lnet_net2rnethash(net));
655                 rnet2 = rnet;
656         }
657
658         /* Search for a duplicate route (it's a NOOP if it is) */
659         add_route = 1;
660         list_for_each(route_entry, &rnet2->lrn_routes) {
661                 struct lnet_route *route2;
662
663                 route2 = list_entry(route_entry, struct lnet_route, lr_list);
664                 if (route2->lr_gateway == route->lr_gateway) {
665                         add_route = 0;
666                         break;
667                 }
668
669                 /* our lookups must be true */
670                 LASSERT(route2->lr_gateway->lp_primary_nid != gateway);
671         }
672
673         /*
674          * It is possible to add multiple routes through the same peer,
675          * but it'll be using a different NID of that peer. When the
676          * gateway is discovered, discovery will consolidate the different
677          * peers into one peer. In this case the discovery code will have
678          * to move the routes from the peer that's being deleted to the
679          * consolidated peer lp_routes list
680          */
681         if (add_route) {
682                 gw->lp_health_sensitivity = sensitivity;
683                 lnet_add_route_to_rnet(rnet2, route);
684                 if (lnet_peer_discovery_disabled)
685                         CWARN("Consider turning discovery on to enable full "
686                               "Multi-Rail routing functionality\n");
687         }
688
689         /*
690          * get rid of the reference on the lpni.
691          */
692         lnet_peer_ni_decref_locked(lpni);
693         lnet_net_unlock(LNET_LOCK_EX);
694
695         rc = 0;
696
697         if (!add_route) {
698                 rc = -EEXIST;
699                 LIBCFS_FREE(route, sizeof(*route));
700         }
701
702         if (rnet != rnet2)
703                 LIBCFS_FREE(rnet, sizeof(*rnet));
704
705         /* kick start the monitor thread to handle the added route */
706         complete(&the_lnet.ln_mt_wait_complete);
707
708         return rc;
709 }
710
711 static void
712 lnet_del_route_from_rnet(lnet_nid_t gw_nid, struct list_head *route_list,
713                          struct list_head *zombies)
714 {
715         struct lnet_peer *gateway;
716         struct lnet_route *route;
717         struct lnet_route *tmp;
718
719         list_for_each_entry_safe(route, tmp, route_list, lr_list) {
720                 gateway = route->lr_gateway;
721                 if (gw_nid != LNET_NID_ANY &&
722                     gw_nid != gateway->lp_primary_nid)
723                         continue;
724
725                 /*
726                  * move to zombie to delete outside the lock
727                  * Note that this function is called with the
728                  * ln_api_mutex held as well as the exclusive net
729                  * lock. Adding to the remote net list happens
730                  * under the same conditions. Same goes for the
731                  * gateway router list
732                  */
733                 list_move(&route->lr_list, zombies);
734                 the_lnet.ln_remote_nets_version++;
735
736                 list_del(&route->lr_gwlist);
737                 lnet_rtr_decref_locked(gateway);
738         }
739 }
740
741 int
742 lnet_del_route(__u32 net, lnet_nid_t gw_nid)
743 {
744         struct list_head rnet_zombies;
745         struct lnet_remotenet *rnet;
746         struct lnet_remotenet *tmp;
747         struct list_head *rn_list;
748         struct lnet_peer_ni *lpni;
749         struct lnet_route *route;
750         struct list_head zombies;
751         struct lnet_peer *lp = NULL;
752         int i = 0;
753
754         INIT_LIST_HEAD(&rnet_zombies);
755         INIT_LIST_HEAD(&zombies);
756
757         CDEBUG(D_NET, "Del route: net %s : gw %s\n",
758                libcfs_net2str(net), libcfs_nid2str(gw_nid));
759
760         /* NB Caller may specify either all routes via the given gateway
761          * or a specific route entry actual NIDs) */
762
763         lnet_net_lock(LNET_LOCK_EX);
764
765         lpni = lnet_find_peer_ni_locked(gw_nid);
766         if (lpni) {
767                 lp = lpni->lpni_peer_net->lpn_peer;
768                 LASSERT(lp);
769                 gw_nid = lp->lp_primary_nid;
770                 lnet_peer_ni_decref_locked(lpni);
771         }
772
773         if (net != LNET_NIDNET(LNET_NID_ANY)) {
774                 rnet = lnet_find_rnet_locked(net);
775                 if (!rnet) {
776                         lnet_net_unlock(LNET_LOCK_EX);
777                         return -ENOENT;
778                 }
779                 lnet_del_route_from_rnet(gw_nid, &rnet->lrn_routes,
780                                          &zombies);
781                 if (list_empty(&rnet->lrn_routes))
782                         list_move(&rnet->lrn_list, &rnet_zombies);
783                 goto delete_zombies;
784         }
785
786         for (i = 0; i < LNET_REMOTE_NETS_HASH_SIZE; i++) {
787                 rn_list = &the_lnet.ln_remote_nets_hash[i];
788
789                 list_for_each_entry_safe(rnet, tmp, rn_list, lrn_list) {
790                         lnet_del_route_from_rnet(gw_nid, &rnet->lrn_routes,
791                                                  &zombies);
792                         if (list_empty(&rnet->lrn_routes))
793                                 list_move(&rnet->lrn_list, &rnet_zombies);
794                 }
795         }
796
797 delete_zombies:
798         /*
799          * check if there are any routes remaining on the gateway
800          * If there are no more routes make sure to set the peer's
801          * lp_disc_net_id to 0 (invalid), in case we add more routes in
802          * the future on that gateway, then we start our discovery process
803          * from scratch
804          */
805         if (lpni) {
806                 if (list_empty(&lp->lp_routes))
807                         lp->lp_disc_net_id = 0;
808         }
809
810         lnet_net_unlock(LNET_LOCK_EX);
811
812         while (!list_empty(&zombies)) {
813                 route = list_first_entry(&zombies, struct lnet_route, lr_list);
814                 list_del(&route->lr_list);
815                 LIBCFS_FREE(route, sizeof(*route));
816         }
817
818         while (!list_empty(&rnet_zombies)) {
819                 rnet = list_first_entry(&rnet_zombies, struct lnet_remotenet,
820                                         lrn_list);
821                 list_del(&rnet->lrn_list);
822                 LIBCFS_FREE(rnet, sizeof(*rnet));
823         }
824
825         return 0;
826 }
827
828 void
829 lnet_destroy_routes (void)
830 {
831         lnet_del_route(LNET_NIDNET(LNET_NID_ANY), LNET_NID_ANY);
832 }
833
834 int lnet_get_rtr_pool_cfg(int cpt, struct lnet_ioctl_pool_cfg *pool_cfg)
835 {
836         struct lnet_rtrbufpool *rbp;
837         int i, rc = -ENOENT, j;
838
839         if (the_lnet.ln_rtrpools == NULL)
840                 return rc;
841
842
843         cfs_percpt_for_each(rbp, i, the_lnet.ln_rtrpools) {
844                 if (i != cpt)
845                         continue;
846
847                 lnet_net_lock(i);
848                 for (j = 0; j < LNET_NRBPOOLS; j++) {
849                         pool_cfg->pl_pools[j].pl_npages = rbp[j].rbp_npages;
850                         pool_cfg->pl_pools[j].pl_nbuffers = rbp[j].rbp_nbuffers;
851                         pool_cfg->pl_pools[j].pl_credits = rbp[j].rbp_credits;
852                         pool_cfg->pl_pools[j].pl_mincredits = rbp[j].rbp_mincredits;
853                 }
854                 lnet_net_unlock(i);
855                 rc = 0;
856                 break;
857         }
858
859         lnet_net_lock(LNET_LOCK_EX);
860         pool_cfg->pl_routing = the_lnet.ln_routing;
861         lnet_net_unlock(LNET_LOCK_EX);
862
863         return rc;
864 }
865
866 int
867 lnet_get_route(int idx, __u32 *net, __u32 *hops,
868                lnet_nid_t *gateway, __u32 *alive, __u32 *priority, __u32 *sensitivity)
869 {
870         struct lnet_remotenet *rnet;
871         struct list_head *rn_list;
872         struct lnet_route *route;
873         struct list_head *e1;
874         struct list_head *e2;
875         int cpt;
876         int i;
877
878         cpt = lnet_net_lock_current();
879
880         for (i = 0; i < LNET_REMOTE_NETS_HASH_SIZE; i++) {
881                 rn_list = &the_lnet.ln_remote_nets_hash[i];
882                 list_for_each(e1, rn_list) {
883                         rnet = list_entry(e1, struct lnet_remotenet, lrn_list);
884
885                         list_for_each(e2, &rnet->lrn_routes) {
886                                 route = list_entry(e2, struct lnet_route,
887                                                    lr_list);
888
889                                 if (idx-- == 0) {
890                                         *net      = rnet->lrn_net;
891                                         *gateway  = route->lr_nid;
892                                         *hops     = route->lr_hops;
893                                         *priority = route->lr_priority;
894                                         *sensitivity = route->lr_gateway->
895                                                 lp_health_sensitivity;
896                                         *alive    = lnet_is_route_alive(route);
897                                         lnet_net_unlock(cpt);
898                                         return 0;
899                                 }
900                         }
901                 }
902         }
903
904         lnet_net_unlock(cpt);
905         return -ENOENT;
906 }
907
908 static void
909 lnet_wait_known_routerstate(void)
910 {
911         struct lnet_peer *rtr;
912         struct list_head *entry;
913         int all_known;
914
915         LASSERT(the_lnet.ln_mt_state == LNET_MT_STATE_RUNNING);
916
917         for (;;) {
918                 int cpt = lnet_net_lock_current();
919
920                 all_known = 1;
921                 list_for_each(entry, &the_lnet.ln_routers) {
922                         rtr = list_entry(entry, struct lnet_peer,
923                                          lp_rtr_list);
924
925                         spin_lock(&rtr->lp_lock);
926
927                         if ((rtr->lp_state & LNET_PEER_DISCOVERED) == 0) {
928                                 all_known = 0;
929                                 spin_unlock(&rtr->lp_lock);
930                                 break;
931                         }
932                         spin_unlock(&rtr->lp_lock);
933                 }
934
935                 lnet_net_unlock(cpt);
936
937                 if (all_known)
938                         return;
939
940                 set_current_state(TASK_UNINTERRUPTIBLE);
941                 schedule_timeout(cfs_time_seconds(1));
942         }
943 }
944
945 static inline bool
946 lnet_net_set_status_locked(struct lnet_net *net, __u32 status)
947 {
948         struct lnet_ni *ni;
949         bool update = false;
950
951         list_for_each_entry(ni, &net->net_ni_list, ni_netlist) {
952                 lnet_ni_lock(ni);
953                 if (ni->ni_status &&
954                     ni->ni_status->ns_status != status) {
955                     ni->ni_status->ns_status = status;
956                     update = true;
957                 }
958                 lnet_ni_unlock(ni);
959         }
960
961         return update;
962 }
963
964 static bool
965 lnet_update_ni_status_locked(void)
966 {
967         struct lnet_net *net;
968         bool push = false;
969         time64_t now;
970         time64_t timeout;
971
972         LASSERT(the_lnet.ln_routing);
973
974         timeout = router_ping_timeout + alive_router_check_interval;
975
976         now = ktime_get_real_seconds();
977         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
978                 if (net->net_lnd->lnd_type == LOLND)
979                         continue;
980
981                 if (now < net->net_last_alive + timeout)
982                         continue;
983
984                 spin_lock(&net->net_lock);
985                 /* re-check with lock */
986                 if (now < net->net_last_alive + timeout) {
987                         spin_unlock(&net->net_lock);
988                         continue;
989                 }
990                 spin_unlock(&net->net_lock);
991
992                 /*
993                  * if the net didn't receive any traffic for past the
994                  * timeout on any of its constituent NIs, then mark all
995                  * the NIs down.
996                  */
997                 push = lnet_net_set_status_locked(net, LNET_NI_STATUS_DOWN);
998         }
999
1000         return push;
1001 }
1002
1003 void lnet_wait_router_start(void)
1004 {
1005         if (check_routers_before_use) {
1006                 /* Note that a helpful side-effect of pinging all known routers
1007                  * at startup is that it makes them drop stale connections they
1008                  * may have to a previous instance of me. */
1009                 lnet_wait_known_routerstate();
1010         }
1011 }
1012
1013 /*
1014  * This function is called from the monitor thread to check if there are
1015  * any active routers that need to be checked.
1016  */
1017 inline bool
1018 lnet_router_checker_active(void)
1019 {
1020         /* Router Checker thread needs to run when routing is enabled in
1021          * order to call lnet_update_ni_status_locked() */
1022         if (the_lnet.ln_routing)
1023                 return true;
1024
1025         return !list_empty(&the_lnet.ln_routers) &&
1026                 alive_router_check_interval > 0;
1027 }
1028
1029 void
1030 lnet_check_routers(void)
1031 {
1032         struct lnet_peer_net *first_lpn = NULL;
1033         struct lnet_peer_net *lpn;
1034         struct lnet_peer_ni *lpni;
1035         struct list_head *entry;
1036         struct lnet_peer *rtr;
1037         bool push = false;
1038         bool found_lpn;
1039         __u64 version;
1040         __u32 net_id;
1041         time64_t now;
1042         int cpt;
1043         int rc;
1044
1045         cpt = lnet_net_lock_current();
1046 rescan:
1047         version = the_lnet.ln_routers_version;
1048
1049         list_for_each(entry, &the_lnet.ln_routers) {
1050                 rtr = list_entry(entry, struct lnet_peer,
1051                                  lp_rtr_list);
1052
1053                 now = ktime_get_real_seconds();
1054
1055                 /*
1056                  * only discover the router if we've passed
1057                  * alive_router_check_interval seconds. Some of the router
1058                  * interfaces could be down and in that case they would be
1059                  * undergoing recovery separately from this discovery.
1060                  */
1061                 /* find next peer net which is also local */
1062                 net_id = rtr->lp_disc_net_id;
1063                 do {
1064                         lpn = lnet_get_next_peer_net_locked(rtr, net_id);
1065                         if (!lpn) {
1066                                 CERROR("gateway %s has no networks\n",
1067                                 libcfs_nid2str(rtr->lp_primary_nid));
1068                                 break;
1069                         }
1070                         if (first_lpn == lpn)
1071                                 break;
1072                         if (!first_lpn)
1073                                 first_lpn = lpn;
1074                         found_lpn = lnet_islocalnet_locked(lpn->lpn_net_id);
1075                         net_id = lpn->lpn_net_id;
1076                 } while (!found_lpn);
1077
1078                 if (!found_lpn || !lpn) {
1079                         CERROR("no local network found for gateway %s\n",
1080                                libcfs_nid2str(rtr->lp_primary_nid));
1081                         continue;
1082                 }
1083
1084                 if (now - lpn->lpn_rtrcheck_timestamp <
1085                     alive_router_check_interval / lnet_current_net_count)
1086                        continue;
1087
1088                 /*
1089                  * If we're currently discovering the peer then don't
1090                  * issue another discovery
1091                  */
1092                 spin_lock(&rtr->lp_lock);
1093                 if (rtr->lp_state & LNET_PEER_RTR_DISCOVERY) {
1094                         spin_unlock(&rtr->lp_lock);
1095                         continue;
1096                 }
1097                 /* make sure we actively discover the router */
1098                 rtr->lp_state &= ~LNET_PEER_NIDS_UPTODATE;
1099                 rtr->lp_state |= LNET_PEER_RTR_DISCOVERY;
1100                 spin_unlock(&rtr->lp_lock);
1101
1102                 /* find the peer_ni associated with the primary NID */
1103                 lpni = lnet_peer_get_ni_locked(rtr, rtr->lp_primary_nid);
1104                 if (!lpni) {
1105                         CDEBUG(D_NET, "Expected to find an lpni for %s, but non found\n",
1106                                libcfs_nid2str(rtr->lp_primary_nid));
1107                         continue;
1108                 }
1109                 lnet_peer_ni_addref_locked(lpni);
1110
1111                 /* specify the net to use */
1112                 rtr->lp_disc_net_id = lpn->lpn_net_id;
1113
1114                 /* discover the router */
1115                 CDEBUG(D_NET, "discover %s, cpt = %d\n",
1116                        libcfs_nid2str(lpni->lpni_nid), cpt);
1117                 rc = lnet_discover_peer_locked(lpni, cpt, false);
1118
1119                 /* decrement ref count acquired by find_peer_ni_locked() */
1120                 lnet_peer_ni_decref_locked(lpni);
1121
1122                 if (!rc)
1123                         lpn->lpn_rtrcheck_timestamp = now;
1124                 else
1125                         CERROR("Failed to discover router %s\n",
1126                                libcfs_nid2str(rtr->lp_primary_nid));
1127
1128                 /* NB dropped lock */
1129                 if (version != the_lnet.ln_routers_version) {
1130                         /* the routers list has changed */
1131                         goto rescan;
1132                 }
1133         }
1134
1135         if (the_lnet.ln_routing)
1136                 push = lnet_update_ni_status_locked();
1137
1138         lnet_net_unlock(cpt);
1139
1140         /* if the status of the ni changed update the peers */
1141         if (push)
1142                 lnet_push_update_to_peers(1);
1143 }
1144
1145 void
1146 lnet_destroy_rtrbuf(struct lnet_rtrbuf *rb, int npages)
1147 {
1148         int sz = offsetof(struct lnet_rtrbuf, rb_kiov[npages]);
1149
1150         while (--npages >= 0)
1151                 __free_page(rb->rb_kiov[npages].kiov_page);
1152
1153         LIBCFS_FREE(rb, sz);
1154 }
1155
1156 static struct lnet_rtrbuf *
1157 lnet_new_rtrbuf(struct lnet_rtrbufpool *rbp, int cpt)
1158 {
1159         int            npages = rbp->rbp_npages;
1160         int            sz = offsetof(struct lnet_rtrbuf, rb_kiov[npages]);
1161         struct page   *page;
1162         struct lnet_rtrbuf *rb;
1163         int            i;
1164
1165         LIBCFS_CPT_ALLOC(rb, lnet_cpt_table(), cpt, sz);
1166         if (rb == NULL)
1167                 return NULL;
1168
1169         rb->rb_pool = rbp;
1170
1171         for (i = 0; i < npages; i++) {
1172                 page = cfs_page_cpt_alloc(lnet_cpt_table(), cpt,
1173                                           GFP_KERNEL | __GFP_ZERO);
1174                 if (page == NULL) {
1175                         while (--i >= 0)
1176                                 __free_page(rb->rb_kiov[i].kiov_page);
1177
1178                         LIBCFS_FREE(rb, sz);
1179                         return NULL;
1180                 }
1181
1182                 rb->rb_kiov[i].kiov_len = PAGE_SIZE;
1183                 rb->rb_kiov[i].kiov_offset = 0;
1184                 rb->rb_kiov[i].kiov_page = page;
1185         }
1186
1187         return rb;
1188 }
1189
1190 static void
1191 lnet_rtrpool_free_bufs(struct lnet_rtrbufpool *rbp, int cpt)
1192 {
1193         int npages = rbp->rbp_npages;
1194         struct lnet_rtrbuf *rb;
1195         struct list_head tmp;
1196
1197         if (rbp->rbp_nbuffers == 0) /* not initialized or already freed */
1198                 return;
1199
1200         INIT_LIST_HEAD(&tmp);
1201
1202         lnet_net_lock(cpt);
1203         list_splice_init(&rbp->rbp_msgs, &tmp);
1204         lnet_drop_routed_msgs_locked(&tmp, cpt);
1205         list_splice_init(&rbp->rbp_bufs, &tmp);
1206         rbp->rbp_req_nbuffers = 0;
1207         rbp->rbp_nbuffers = rbp->rbp_credits = 0;
1208         rbp->rbp_mincredits = 0;
1209         lnet_net_unlock(cpt);
1210
1211         /* Free buffers on the free list. */
1212         while (!list_empty(&tmp)) {
1213                 rb = list_entry(tmp.next, struct lnet_rtrbuf, rb_list);
1214                 list_del(&rb->rb_list);
1215                 lnet_destroy_rtrbuf(rb, npages);
1216         }
1217 }
1218
1219 static int
1220 lnet_rtrpool_adjust_bufs(struct lnet_rtrbufpool *rbp, int nbufs, int cpt)
1221 {
1222         struct list_head rb_list;
1223         struct lnet_rtrbuf *rb;
1224         int             num_rb;
1225         int             num_buffers = 0;
1226         int             old_req_nbufs;
1227         int             npages = rbp->rbp_npages;
1228
1229         lnet_net_lock(cpt);
1230         /* If we are called for less buffers than already in the pool, we
1231          * just lower the req_nbuffers number and excess buffers will be
1232          * thrown away as they are returned to the free list.  Credits
1233          * then get adjusted as well.
1234          * If we already have enough buffers allocated to serve the
1235          * increase requested, then we can treat that the same way as we
1236          * do the decrease. */
1237         num_rb = nbufs - rbp->rbp_nbuffers;
1238         if (nbufs <= rbp->rbp_req_nbuffers || num_rb <= 0) {
1239                 rbp->rbp_req_nbuffers = nbufs;
1240                 lnet_net_unlock(cpt);
1241                 return 0;
1242         }
1243         /* store the older value of rbp_req_nbuffers and then set it to
1244          * the new request to prevent lnet_return_rx_credits_locked() from
1245          * freeing buffers that we need to keep around */
1246         old_req_nbufs = rbp->rbp_req_nbuffers;
1247         rbp->rbp_req_nbuffers = nbufs;
1248         lnet_net_unlock(cpt);
1249
1250         INIT_LIST_HEAD(&rb_list);
1251
1252         /* allocate the buffers on a local list first.  If all buffers are
1253          * allocated successfully then join this list to the rbp buffer
1254          * list.  If not then free all allocated buffers. */
1255         while (num_rb-- > 0) {
1256                 rb = lnet_new_rtrbuf(rbp, cpt);
1257                 if (rb == NULL) {
1258                         CERROR("Failed to allocate %d route bufs of %d pages\n",
1259                                nbufs, npages);
1260
1261                         lnet_net_lock(cpt);
1262                         rbp->rbp_req_nbuffers = old_req_nbufs;
1263                         lnet_net_unlock(cpt);
1264
1265                         goto failed;
1266                 }
1267
1268                 list_add(&rb->rb_list, &rb_list);
1269                 num_buffers++;
1270         }
1271
1272         lnet_net_lock(cpt);
1273
1274         list_splice_tail(&rb_list, &rbp->rbp_bufs);
1275         rbp->rbp_nbuffers += num_buffers;
1276         rbp->rbp_credits += num_buffers;
1277         rbp->rbp_mincredits = rbp->rbp_credits;
1278         /* We need to schedule blocked msg using the newly
1279          * added buffers. */
1280         while (!list_empty(&rbp->rbp_bufs) &&
1281                !list_empty(&rbp->rbp_msgs))
1282                 lnet_schedule_blocked_locked(rbp);
1283
1284         lnet_net_unlock(cpt);
1285
1286         return 0;
1287
1288 failed:
1289         while (!list_empty(&rb_list)) {
1290                 rb = list_entry(rb_list.next, struct lnet_rtrbuf, rb_list);
1291                 list_del(&rb->rb_list);
1292                 lnet_destroy_rtrbuf(rb, npages);
1293         }
1294
1295         return -ENOMEM;
1296 }
1297
1298 static void
1299 lnet_rtrpool_init(struct lnet_rtrbufpool *rbp, int npages)
1300 {
1301         INIT_LIST_HEAD(&rbp->rbp_msgs);
1302         INIT_LIST_HEAD(&rbp->rbp_bufs);
1303
1304         rbp->rbp_npages = npages;
1305         rbp->rbp_credits = 0;
1306         rbp->rbp_mincredits = 0;
1307 }
1308
1309 void
1310 lnet_rtrpools_free(int keep_pools)
1311 {
1312         struct lnet_rtrbufpool *rtrp;
1313         int               i;
1314
1315         if (the_lnet.ln_rtrpools == NULL) /* uninitialized or freed */
1316                 return;
1317
1318         cfs_percpt_for_each(rtrp, i, the_lnet.ln_rtrpools) {
1319                 lnet_rtrpool_free_bufs(&rtrp[LNET_TINY_BUF_IDX], i);
1320                 lnet_rtrpool_free_bufs(&rtrp[LNET_SMALL_BUF_IDX], i);
1321                 lnet_rtrpool_free_bufs(&rtrp[LNET_LARGE_BUF_IDX], i);
1322         }
1323
1324         if (!keep_pools) {
1325                 cfs_percpt_free(the_lnet.ln_rtrpools);
1326                 the_lnet.ln_rtrpools = NULL;
1327         }
1328 }
1329
1330 static int
1331 lnet_nrb_tiny_calculate(void)
1332 {
1333         int     nrbs = LNET_NRB_TINY;
1334
1335         if (tiny_router_buffers < 0) {
1336                 LCONSOLE_ERROR_MSG(0x10c,
1337                                    "tiny_router_buffers=%d invalid when "
1338                                    "routing enabled\n", tiny_router_buffers);
1339                 return -EINVAL;
1340         }
1341
1342         if (tiny_router_buffers > 0)
1343                 nrbs = tiny_router_buffers;
1344
1345         nrbs /= LNET_CPT_NUMBER;
1346         return max(nrbs, LNET_NRB_TINY_MIN);
1347 }
1348
1349 static int
1350 lnet_nrb_small_calculate(void)
1351 {
1352         int     nrbs = LNET_NRB_SMALL;
1353
1354         if (small_router_buffers < 0) {
1355                 LCONSOLE_ERROR_MSG(0x10c,
1356                                    "small_router_buffers=%d invalid when "
1357                                    "routing enabled\n", small_router_buffers);
1358                 return -EINVAL;
1359         }
1360
1361         if (small_router_buffers > 0)
1362                 nrbs = small_router_buffers;
1363
1364         nrbs /= LNET_CPT_NUMBER;
1365         return max(nrbs, LNET_NRB_SMALL_MIN);
1366 }
1367
1368 static int
1369 lnet_nrb_large_calculate(void)
1370 {
1371         int     nrbs = LNET_NRB_LARGE;
1372
1373         if (large_router_buffers < 0) {
1374                 LCONSOLE_ERROR_MSG(0x10c,
1375                                    "large_router_buffers=%d invalid when "
1376                                    "routing enabled\n", large_router_buffers);
1377                 return -EINVAL;
1378         }
1379
1380         if (large_router_buffers > 0)
1381                 nrbs = large_router_buffers;
1382
1383         nrbs /= LNET_CPT_NUMBER;
1384         return max(nrbs, LNET_NRB_LARGE_MIN);
1385 }
1386
1387 int
1388 lnet_rtrpools_alloc(int im_a_router)
1389 {
1390         struct lnet_rtrbufpool *rtrp;
1391         int     nrb_tiny;
1392         int     nrb_small;
1393         int     nrb_large;
1394         int     rc;
1395         int     i;
1396
1397         if (!strcmp(forwarding, "")) {
1398                 /* not set either way */
1399                 if (!im_a_router)
1400                         return 0;
1401         } else if (!strcmp(forwarding, "disabled")) {
1402                 /* explicitly disabled */
1403                 return 0;
1404         } else if (!strcmp(forwarding, "enabled")) {
1405                 /* explicitly enabled */
1406         } else {
1407                 LCONSOLE_ERROR_MSG(0x10b, "'forwarding' not set to either "
1408                                    "'enabled' or 'disabled'\n");
1409                 return -EINVAL;
1410         }
1411
1412         nrb_tiny = lnet_nrb_tiny_calculate();
1413         if (nrb_tiny < 0)
1414                 return -EINVAL;
1415
1416         nrb_small = lnet_nrb_small_calculate();
1417         if (nrb_small < 0)
1418                 return -EINVAL;
1419
1420         nrb_large = lnet_nrb_large_calculate();
1421         if (nrb_large < 0)
1422                 return -EINVAL;
1423
1424         the_lnet.ln_rtrpools = cfs_percpt_alloc(lnet_cpt_table(),
1425                                                 LNET_NRBPOOLS *
1426                                                 sizeof(struct lnet_rtrbufpool));
1427         if (the_lnet.ln_rtrpools == NULL) {
1428                 LCONSOLE_ERROR_MSG(0x10c,
1429                                    "Failed to initialize router buffe pool\n");
1430                 return -ENOMEM;
1431         }
1432
1433         cfs_percpt_for_each(rtrp, i, the_lnet.ln_rtrpools) {
1434                 lnet_rtrpool_init(&rtrp[LNET_TINY_BUF_IDX], 0);
1435                 rc = lnet_rtrpool_adjust_bufs(&rtrp[LNET_TINY_BUF_IDX],
1436                                               nrb_tiny, i);
1437                 if (rc != 0)
1438                         goto failed;
1439
1440                 lnet_rtrpool_init(&rtrp[LNET_SMALL_BUF_IDX],
1441                                   LNET_NRB_SMALL_PAGES);
1442                 rc = lnet_rtrpool_adjust_bufs(&rtrp[LNET_SMALL_BUF_IDX],
1443                                               nrb_small, i);
1444                 if (rc != 0)
1445                         goto failed;
1446
1447                 lnet_rtrpool_init(&rtrp[LNET_LARGE_BUF_IDX],
1448                                   LNET_NRB_LARGE_PAGES);
1449                 rc = lnet_rtrpool_adjust_bufs(&rtrp[LNET_LARGE_BUF_IDX],
1450                                               nrb_large, i);
1451                 if (rc != 0)
1452                         goto failed;
1453         }
1454
1455         lnet_net_lock(LNET_LOCK_EX);
1456         the_lnet.ln_routing = 1;
1457         lnet_net_unlock(LNET_LOCK_EX);
1458         complete(&the_lnet.ln_mt_wait_complete);
1459         return 0;
1460
1461  failed:
1462         lnet_rtrpools_free(0);
1463         return rc;
1464 }
1465
1466 static int
1467 lnet_rtrpools_adjust_helper(int tiny, int small, int large)
1468 {
1469         int nrb = 0;
1470         int rc = 0;
1471         int i;
1472         struct lnet_rtrbufpool *rtrp;
1473
1474         /* If the provided values for each buffer pool are different than the
1475          * configured values, we need to take action. */
1476         if (tiny >= 0) {
1477                 tiny_router_buffers = tiny;
1478                 nrb = lnet_nrb_tiny_calculate();
1479                 cfs_percpt_for_each(rtrp, i, the_lnet.ln_rtrpools) {
1480                         rc = lnet_rtrpool_adjust_bufs(&rtrp[LNET_TINY_BUF_IDX],
1481                                                       nrb, i);
1482                         if (rc != 0)
1483                                 return rc;
1484                 }
1485         }
1486         if (small >= 0) {
1487                 small_router_buffers = small;
1488                 nrb = lnet_nrb_small_calculate();
1489                 cfs_percpt_for_each(rtrp, i, the_lnet.ln_rtrpools) {
1490                         rc = lnet_rtrpool_adjust_bufs(&rtrp[LNET_SMALL_BUF_IDX],
1491                                                       nrb, i);
1492                         if (rc != 0)
1493                                 return rc;
1494                 }
1495         }
1496         if (large >= 0) {
1497                 large_router_buffers = large;
1498                 nrb = lnet_nrb_large_calculate();
1499                 cfs_percpt_for_each(rtrp, i, the_lnet.ln_rtrpools) {
1500                         rc = lnet_rtrpool_adjust_bufs(&rtrp[LNET_LARGE_BUF_IDX],
1501                                                       nrb, i);
1502                         if (rc != 0)
1503                                 return rc;
1504                 }
1505         }
1506
1507         return 0;
1508 }
1509
1510 int
1511 lnet_rtrpools_adjust(int tiny, int small, int large)
1512 {
1513         /* this function doesn't revert the changes if adding new buffers
1514          * failed.  It's up to the user space caller to revert the
1515          * changes. */
1516
1517         if (!the_lnet.ln_routing)
1518                 return 0;
1519
1520         return lnet_rtrpools_adjust_helper(tiny, small, large);
1521 }
1522
1523 int
1524 lnet_rtrpools_enable(void)
1525 {
1526         int rc = 0;
1527
1528         if (the_lnet.ln_routing)
1529                 return 0;
1530
1531         if (the_lnet.ln_rtrpools == NULL)
1532                 /* If routing is turned off, and we have never
1533                  * initialized the pools before, just call the
1534                  * standard buffer pool allocation routine as
1535                  * if we are just configuring this for the first
1536                  * time. */
1537                 rc = lnet_rtrpools_alloc(1);
1538         else
1539                 rc = lnet_rtrpools_adjust_helper(0, 0, 0);
1540         if (rc != 0)
1541                 return rc;
1542
1543         lnet_net_lock(LNET_LOCK_EX);
1544         the_lnet.ln_routing = 1;
1545
1546         the_lnet.ln_ping_target->pb_info.pi_features &=
1547                 ~LNET_PING_FEAT_RTE_DISABLED;
1548         lnet_net_unlock(LNET_LOCK_EX);
1549
1550         if (lnet_peer_discovery_disabled)
1551                 CWARN("Consider turning discovery on to enable full "
1552                       "Multi-Rail routing functionality\n");
1553
1554         return rc;
1555 }
1556
1557 void
1558 lnet_rtrpools_disable(void)
1559 {
1560         if (!the_lnet.ln_routing)
1561                 return;
1562
1563         lnet_net_lock(LNET_LOCK_EX);
1564         the_lnet.ln_routing = 0;
1565         the_lnet.ln_ping_target->pb_info.pi_features |=
1566                 LNET_PING_FEAT_RTE_DISABLED;
1567
1568         tiny_router_buffers = 0;
1569         small_router_buffers = 0;
1570         large_router_buffers = 0;
1571         lnet_net_unlock(LNET_LOCK_EX);
1572         lnet_rtrpools_free(1);
1573 }
1574
1575 static inline void
1576 lnet_notify_peer_down(struct lnet_ni *ni, lnet_nid_t nid)
1577 {
1578         if (ni->ni_net->net_lnd->lnd_notify_peer_down != NULL)
1579                 (ni->ni_net->net_lnd->lnd_notify_peer_down)(nid);
1580 }
1581
1582 /*
1583  * ni: local NI used to communicate with the peer
1584  * nid: peer NID
1585  * alive: true if peer is alive, false otherwise
1586  * reset: reset health value. This is requested by the LND.
1587  * when: notificaiton time.
1588  */
1589 int
1590 lnet_notify(struct lnet_ni *ni, lnet_nid_t nid, bool alive, bool reset,
1591             time64_t when)
1592 {
1593         struct lnet_peer_ni *lpni = NULL;
1594         struct lnet_route *route;
1595         struct lnet_peer *lp;
1596         time64_t now = ktime_get_seconds();
1597         int cpt;
1598
1599         LASSERT (!in_interrupt ());
1600
1601         CDEBUG (D_NET, "%s notifying %s: %s\n",
1602                 (ni == NULL) ? "userspace" : libcfs_nid2str(ni->ni_nid),
1603                 libcfs_nid2str(nid),
1604                 alive ? "up" : "down");
1605
1606         if (ni != NULL &&
1607             LNET_NIDNET(ni->ni_nid) != LNET_NIDNET(nid)) {
1608                 CWARN("Ignoring notification of %s %s by %s (different net)\n",
1609                       libcfs_nid2str(nid), alive ? "birth" : "death",
1610                       libcfs_nid2str(ni->ni_nid));
1611                 return -EINVAL;
1612         }
1613
1614         /* can't do predictions... */
1615         if (when > now) {
1616                 CWARN("Ignoring prediction from %s of %s %s "
1617                       "%lld seconds in the future\n",
1618                       (ni == NULL) ? "userspace" : libcfs_nid2str(ni->ni_nid),
1619                       libcfs_nid2str(nid), alive ? "up" : "down", when - now);
1620                 return -EINVAL;
1621         }
1622
1623         if (ni != NULL && !alive &&             /* LND telling me she's down */
1624             !auto_down) {                       /* auto-down disabled */
1625                 CDEBUG(D_NET, "Auto-down disabled\n");
1626                 return 0;
1627         }
1628
1629         /* must lock 0 since this is used for synchronization */
1630         lnet_net_lock(0);
1631
1632         if (the_lnet.ln_state != LNET_STATE_RUNNING) {
1633                 lnet_net_unlock(0);
1634                 return -ESHUTDOWN;
1635         }
1636
1637         lpni = lnet_find_peer_ni_locked(nid);
1638         if (lpni == NULL) {
1639                 /* nid not found */
1640                 lnet_net_unlock(0);
1641                 CDEBUG(D_NET, "%s not found\n", libcfs_nid2str(nid));
1642                 return 0;
1643         }
1644
1645         if (alive) {
1646                 if (reset)
1647                         lnet_set_healthv(&lpni->lpni_healthv,
1648                                          LNET_MAX_HEALTH_VALUE);
1649                 else
1650                         lnet_inc_healthv(&lpni->lpni_healthv);
1651         } else {
1652                 lnet_handle_remote_failure_locked(lpni);
1653         }
1654
1655         /* recalculate aliveness */
1656         alive = lnet_is_peer_ni_alive(lpni);
1657         lnet_net_unlock(0);
1658
1659         if (ni != NULL && !alive)
1660                 lnet_notify_peer_down(ni, lpni->lpni_nid);
1661
1662         cpt = lpni->lpni_cpt;
1663         lnet_net_lock(cpt);
1664         lnet_peer_ni_decref_locked(lpni);
1665         if (lpni && lpni->lpni_peer_net && lpni->lpni_peer_net->lpn_peer) {
1666                 lp = lpni->lpni_peer_net->lpn_peer;
1667                 list_for_each_entry(route, &lp->lp_routes, lr_gwlist)
1668                         lnet_set_route_aliveness(route, alive);
1669         }
1670         lnet_net_unlock(cpt);
1671
1672         return 0;
1673 }
1674 EXPORT_SYMBOL(lnet_notify);