Whamcloud - gitweb
LU-9859 lnet: move ioctl device to lnet
[fs/lustre-release.git] / lnet / lnet / api-ni.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2017, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  */
31
32 #define DEBUG_SUBSYSTEM S_LNET
33
34 #include <linux/ctype.h>
35 #include <linux/generic-radix-tree.h>
36 #include <linux/log2.h>
37 #include <linux/ktime.h>
38 #include <linux/moduleparam.h>
39 #include <linux/uaccess.h>
40 #ifdef HAVE_SCHED_HEADERS
41 #include <linux/sched/signal.h>
42 #endif
43 #include <net/genetlink.h>
44
45 #include <libcfs/linux/linux-net.h>
46 #include <lnet/udsp.h>
47 #include <lnet/lib-lnet.h>
48
49 #define D_LNI D_CONSOLE
50
51 /*
52  * initialize ln_api_mutex statically, since it needs to be used in
53  * discovery_set callback. That module parameter callback can be called
54  * before module init completes. The mutex needs to be ready for use then.
55  */
56 struct lnet the_lnet = {
57         .ln_api_mutex = __MUTEX_INITIALIZER(the_lnet.ln_api_mutex),
58 };              /* THE state of the network */
59 EXPORT_SYMBOL(the_lnet);
60
61 static char *ip2nets = "";
62 module_param(ip2nets, charp, 0444);
63 MODULE_PARM_DESC(ip2nets, "LNET network <- IP table");
64
65 static char *networks = "";
66 module_param(networks, charp, 0444);
67 MODULE_PARM_DESC(networks, "local networks");
68
69 static char *routes = "";
70 module_param(routes, charp, 0444);
71 MODULE_PARM_DESC(routes, "routes to non-local networks");
72
73 static int rnet_htable_size = LNET_REMOTE_NETS_HASH_DEFAULT;
74 module_param(rnet_htable_size, int, 0444);
75 MODULE_PARM_DESC(rnet_htable_size, "size of remote network hash table");
76
77 static int use_tcp_bonding;
78 module_param(use_tcp_bonding, int, 0444);
79 MODULE_PARM_DESC(use_tcp_bonding,
80                  "use_tcp_bonding parameter has been removed");
81
82 unsigned int lnet_numa_range = 0;
83 module_param(lnet_numa_range, uint, 0444);
84 MODULE_PARM_DESC(lnet_numa_range,
85                 "NUMA range to consider during Multi-Rail selection");
86
87 /*
88  * lnet_health_sensitivity determines by how much we decrement the health
89  * value on sending error. The value defaults to 100, which means health
90  * interface health is decremented by 100 points every failure.
91  */
92 unsigned int lnet_health_sensitivity = 100;
93 static int sensitivity_set(const char *val, cfs_kernel_param_arg_t *kp);
94 #ifdef HAVE_KERNEL_PARAM_OPS
95 static struct kernel_param_ops param_ops_health_sensitivity = {
96         .set = sensitivity_set,
97         .get = param_get_int,
98 };
99 #define param_check_health_sensitivity(name, p) \
100                 __param_check(name, p, int)
101 module_param(lnet_health_sensitivity, health_sensitivity, S_IRUGO|S_IWUSR);
102 #else
103 module_param_call(lnet_health_sensitivity, sensitivity_set, param_get_int,
104                   &lnet_health_sensitivity, S_IRUGO|S_IWUSR);
105 #endif
106 MODULE_PARM_DESC(lnet_health_sensitivity,
107                 "Value to decrement the health value by on error");
108
109 /*
110  * lnet_recovery_interval determines how often we should perform recovery
111  * on unhealthy interfaces.
112  */
113 unsigned int lnet_recovery_interval = 1;
114 static int recovery_interval_set(const char *val, cfs_kernel_param_arg_t *kp);
115 #ifdef HAVE_KERNEL_PARAM_OPS
116 static struct kernel_param_ops param_ops_recovery_interval = {
117         .set = recovery_interval_set,
118         .get = param_get_int,
119 };
120 #define param_check_recovery_interval(name, p) \
121                 __param_check(name, p, int)
122 module_param(lnet_recovery_interval, recovery_interval, S_IRUGO|S_IWUSR);
123 #else
124 module_param_call(lnet_recovery_interval, recovery_interval_set, param_get_int,
125                   &lnet_recovery_interval, S_IRUGO|S_IWUSR);
126 #endif
127 MODULE_PARM_DESC(lnet_recovery_interval,
128                 "DEPRECATED - Interval to recover unhealthy interfaces in seconds");
129
130 unsigned int lnet_recovery_limit;
131 module_param(lnet_recovery_limit, uint, 0644);
132 MODULE_PARM_DESC(lnet_recovery_limit,
133                  "How long to attempt recovery of unhealthy peer interfaces in seconds. Set to 0 to allow indefinite recovery");
134
135 unsigned int lnet_max_recovery_ping_interval = 900;
136 unsigned int lnet_max_recovery_ping_count = 9;
137 static int max_recovery_ping_interval_set(const char *val,
138                                           cfs_kernel_param_arg_t *kp);
139
140 #define param_check_max_recovery_ping_interval(name, p) \
141                 __param_check(name, p, int)
142
143 #ifdef HAVE_KERNEL_PARAM_OPS
144 static struct kernel_param_ops param_ops_max_recovery_ping_interval = {
145         .set = max_recovery_ping_interval_set,
146         .get = param_get_int,
147 };
148 module_param(lnet_max_recovery_ping_interval, max_recovery_ping_interval, 0644);
149 #else
150 module_param_call(lnet_max_recovery_ping_interval, max_recovery_ping_interval,
151                   param_get_int, &lnet_max_recovery_ping_interval, 0644);
152 #endif
153 MODULE_PARM_DESC(lnet_max_recovery_ping_interval,
154                  "The max interval between LNet recovery pings, in seconds");
155
156 static int lnet_interfaces_max = LNET_INTERFACES_MAX_DEFAULT;
157 static int intf_max_set(const char *val, cfs_kernel_param_arg_t *kp);
158
159 static struct kernel_param_ops param_ops_interfaces_max = {
160         .set = intf_max_set,
161         .get = param_get_int,
162 };
163
164 #define param_check_interfaces_max(name, p) \
165                 __param_check(name, p, int)
166
167 #ifdef HAVE_KERNEL_PARAM_OPS
168 module_param(lnet_interfaces_max, interfaces_max, 0644);
169 #else
170 module_param_call(lnet_interfaces_max, intf_max_set, param_get_int,
171                   &param_ops_interfaces_max, 0644);
172 #endif
173 MODULE_PARM_DESC(lnet_interfaces_max,
174                 "Maximum number of interfaces in a node.");
175
176 unsigned lnet_peer_discovery_disabled = 0;
177 static int discovery_set(const char *val, cfs_kernel_param_arg_t *kp);
178
179 static struct kernel_param_ops param_ops_discovery_disabled = {
180         .set = discovery_set,
181         .get = param_get_int,
182 };
183
184 #define param_check_discovery_disabled(name, p) \
185                 __param_check(name, p, int)
186 #ifdef HAVE_KERNEL_PARAM_OPS
187 module_param(lnet_peer_discovery_disabled, discovery_disabled, 0644);
188 #else
189 module_param_call(lnet_peer_discovery_disabled, discovery_set, param_get_int,
190                   &param_ops_discovery_disabled, 0644);
191 #endif
192 MODULE_PARM_DESC(lnet_peer_discovery_disabled,
193                 "Set to 1 to disable peer discovery on this node.");
194
195 unsigned int lnet_drop_asym_route;
196 static int drop_asym_route_set(const char *val, cfs_kernel_param_arg_t *kp);
197
198 static struct kernel_param_ops param_ops_drop_asym_route = {
199         .set = drop_asym_route_set,
200         .get = param_get_int,
201 };
202
203 #define param_check_drop_asym_route(name, p)    \
204         __param_check(name, p, int)
205 #ifdef HAVE_KERNEL_PARAM_OPS
206 module_param(lnet_drop_asym_route, drop_asym_route, 0644);
207 #else
208 module_param_call(lnet_drop_asym_route, drop_asym_route_set, param_get_int,
209                   &param_ops_drop_asym_route, 0644);
210 #endif
211 MODULE_PARM_DESC(lnet_drop_asym_route,
212                  "Set to 1 to drop asymmetrical route messages.");
213
214 #define LNET_TRANSACTION_TIMEOUT_DEFAULT 150
215 unsigned int lnet_transaction_timeout = LNET_TRANSACTION_TIMEOUT_DEFAULT;
216 static int transaction_to_set(const char *val, cfs_kernel_param_arg_t *kp);
217 #ifdef HAVE_KERNEL_PARAM_OPS
218 static struct kernel_param_ops param_ops_transaction_timeout = {
219         .set = transaction_to_set,
220         .get = param_get_int,
221 };
222
223 #define param_check_transaction_timeout(name, p) \
224                 __param_check(name, p, int)
225 module_param(lnet_transaction_timeout, transaction_timeout, S_IRUGO|S_IWUSR);
226 #else
227 module_param_call(lnet_transaction_timeout, transaction_to_set, param_get_int,
228                   &lnet_transaction_timeout, S_IRUGO|S_IWUSR);
229 #endif
230 MODULE_PARM_DESC(lnet_transaction_timeout,
231                 "Maximum number of seconds to wait for a peer response.");
232
233 #define LNET_RETRY_COUNT_DEFAULT 2
234 unsigned int lnet_retry_count = LNET_RETRY_COUNT_DEFAULT;
235 static int retry_count_set(const char *val, cfs_kernel_param_arg_t *kp);
236 #ifdef HAVE_KERNEL_PARAM_OPS
237 static struct kernel_param_ops param_ops_retry_count = {
238         .set = retry_count_set,
239         .get = param_get_int,
240 };
241
242 #define param_check_retry_count(name, p) \
243                 __param_check(name, p, int)
244 module_param(lnet_retry_count, retry_count, S_IRUGO|S_IWUSR);
245 #else
246 module_param_call(lnet_retry_count, retry_count_set, param_get_int,
247                   &lnet_retry_count, S_IRUGO|S_IWUSR);
248 #endif
249 MODULE_PARM_DESC(lnet_retry_count,
250                  "Maximum number of times to retry transmitting a message");
251
252 unsigned int lnet_response_tracking = 3;
253 static int response_tracking_set(const char *val, cfs_kernel_param_arg_t *kp);
254
255 #ifdef HAVE_KERNEL_PARAM_OPS
256 static struct kernel_param_ops param_ops_response_tracking = {
257         .set = response_tracking_set,
258         .get = param_get_int,
259 };
260
261 #define param_check_response_tracking(name, p)  \
262         __param_check(name, p, int)
263 module_param(lnet_response_tracking, response_tracking, 0644);
264 #else
265 module_param_call(lnet_response_tracking, response_tracking_set, param_get_int,
266                   &lnet_response_tracking, 0644);
267 #endif
268 MODULE_PARM_DESC(lnet_response_tracking,
269                  "(0|1|2|3) LNet Internal Only|GET Reply only|PUT ACK only|Full Tracking (default)");
270
271 int lock_prim_nid = 1;
272 module_param(lock_prim_nid, int, 0444);
273 MODULE_PARM_DESC(lock_prim_nid,
274                  "Whether nid passed down by Lustre is locked as primary");
275
276 #define LNET_LND_TIMEOUT_DEFAULT ((LNET_TRANSACTION_TIMEOUT_DEFAULT - 1) / \
277                                   (LNET_RETRY_COUNT_DEFAULT + 1))
278 unsigned int lnet_lnd_timeout = LNET_LND_TIMEOUT_DEFAULT;
279 static void lnet_set_lnd_timeout(void)
280 {
281         lnet_lnd_timeout = max((lnet_transaction_timeout - 1) /
282                                (lnet_retry_count + 1), 1U);
283 }
284
285 /*
286  * This sequence number keeps track of how many times DLC was used to
287  * update the local NIs. It is incremented when a NI is added or
288  * removed and checked when sending a message to determine if there is
289  * a need to re-run the selection algorithm. See lnet_select_pathway()
290  * for more details on its usage.
291  */
292 static atomic_t lnet_dlc_seq_no = ATOMIC_INIT(0);
293
294 struct lnet_fail_ping {
295         struct lnet_processid           lfp_id;
296         int                             lfp_errno;
297 };
298
299 struct lnet_genl_ping_list {
300         unsigned int                    lgpl_index;
301         unsigned int                    lgpl_list_count;
302         unsigned int                    lgpl_failed_count;
303         signed long                     lgpl_timeout;
304         struct lnet_nid                 lgpl_src_nid;
305         GENRADIX(struct lnet_fail_ping) lgpl_failed;
306         GENRADIX(struct lnet_processid) lgpl_list;
307 };
308
309 static int lnet_ping(struct lnet_processid *id, struct lnet_nid *src_nid,
310                      signed long timeout, struct lnet_genl_ping_list *plist,
311                      int n_ids);
312
313 static int lnet_discover(struct lnet_process_id id, __u32 force,
314                          struct lnet_process_id __user *ids, int n_ids);
315
316 static int
317 sensitivity_set(const char *val, cfs_kernel_param_arg_t *kp)
318 {
319         int rc;
320         unsigned *sensitivity = (unsigned *)kp->arg;
321         unsigned long value;
322
323         rc = kstrtoul(val, 0, &value);
324         if (rc) {
325                 CERROR("Invalid module parameter value for 'lnet_health_sensitivity'\n");
326                 return rc;
327         }
328
329         /*
330          * The purpose of locking the api_mutex here is to ensure that
331          * the correct value ends up stored properly.
332          */
333         mutex_lock(&the_lnet.ln_api_mutex);
334
335         if (value > LNET_MAX_HEALTH_VALUE) {
336                 mutex_unlock(&the_lnet.ln_api_mutex);
337                 CERROR("Invalid health value. Maximum: %d value = %lu\n",
338                        LNET_MAX_HEALTH_VALUE, value);
339                 return -EINVAL;
340         }
341
342         if (*sensitivity != 0 && value == 0 && lnet_retry_count != 0) {
343                 lnet_retry_count = 0;
344                 lnet_set_lnd_timeout();
345         }
346
347         *sensitivity = value;
348
349         mutex_unlock(&the_lnet.ln_api_mutex);
350
351         return 0;
352 }
353
354 static int
355 recovery_interval_set(const char *val, cfs_kernel_param_arg_t *kp)
356 {
357         CWARN("'lnet_recovery_interval' has been deprecated\n");
358
359         return 0;
360 }
361
362 static int
363 max_recovery_ping_interval_set(const char *val, cfs_kernel_param_arg_t *kp)
364 {
365         int rc;
366         unsigned long value;
367
368         rc = kstrtoul(val, 0, &value);
369         if (rc) {
370                 CERROR("Invalid module parameter value for 'lnet_max_recovery_ping_interval'\n");
371                 return rc;
372         }
373
374         if (!value) {
375                 CERROR("Invalid max ping timeout. Must be strictly positive\n");
376                 return -EINVAL;
377         }
378
379         /* The purpose of locking the api_mutex here is to ensure that
380          * the correct value ends up stored properly.
381          */
382         mutex_lock(&the_lnet.ln_api_mutex);
383         lnet_max_recovery_ping_interval = value;
384         lnet_max_recovery_ping_count = 0;
385         value >>= 1;
386         while (value) {
387                 lnet_max_recovery_ping_count++;
388                 value >>= 1;
389         }
390         mutex_unlock(&the_lnet.ln_api_mutex);
391
392         return 0;
393 }
394
395 static int
396 discovery_set(const char *val, cfs_kernel_param_arg_t *kp)
397 {
398         int rc;
399         unsigned *discovery_off = (unsigned *)kp->arg;
400         unsigned long value;
401         struct lnet_ping_buffer *pbuf;
402
403         rc = kstrtoul(val, 0, &value);
404         if (rc) {
405                 CERROR("Invalid module parameter value for 'lnet_peer_discovery_disabled'\n");
406                 return rc;
407         }
408
409         value = (value) ? 1 : 0;
410
411         /*
412          * The purpose of locking the api_mutex here is to ensure that
413          * the correct value ends up stored properly.
414          */
415         mutex_lock(&the_lnet.ln_api_mutex);
416
417         if (value == *discovery_off) {
418                 mutex_unlock(&the_lnet.ln_api_mutex);
419                 return 0;
420         }
421
422         /*
423          * We still want to set the discovery value even when LNet is not
424          * running. This is the case when LNet is being loaded and we want
425          * the module parameters to take effect. Otherwise if we're
426          * changing the value dynamically, we want to set it after
427          * updating the peers
428          */
429         if (the_lnet.ln_state != LNET_STATE_RUNNING) {
430                 *discovery_off = value;
431                 mutex_unlock(&the_lnet.ln_api_mutex);
432                 return 0;
433         }
434
435         /* tell peers that discovery setting has changed */
436         lnet_net_lock(LNET_LOCK_EX);
437         pbuf = the_lnet.ln_ping_target;
438         if (value)
439                 pbuf->pb_info.pi_features &= ~LNET_PING_FEAT_DISCOVERY;
440         else
441                 pbuf->pb_info.pi_features |= LNET_PING_FEAT_DISCOVERY;
442         lnet_net_unlock(LNET_LOCK_EX);
443
444         /* only send a push when we're turning off discovery */
445         if (*discovery_off <= 0 && value > 0)
446                 lnet_push_update_to_peers(1);
447         *discovery_off = value;
448
449         mutex_unlock(&the_lnet.ln_api_mutex);
450
451         return 0;
452 }
453
454 static int
455 drop_asym_route_set(const char *val, cfs_kernel_param_arg_t *kp)
456 {
457         int rc;
458         unsigned int *drop_asym_route = (unsigned int *)kp->arg;
459         unsigned long value;
460
461         rc = kstrtoul(val, 0, &value);
462         if (rc) {
463                 CERROR("Invalid module parameter value for "
464                        "'lnet_drop_asym_route'\n");
465                 return rc;
466         }
467
468         /*
469          * The purpose of locking the api_mutex here is to ensure that
470          * the correct value ends up stored properly.
471          */
472         mutex_lock(&the_lnet.ln_api_mutex);
473
474         if (value == *drop_asym_route) {
475                 mutex_unlock(&the_lnet.ln_api_mutex);
476                 return 0;
477         }
478
479         *drop_asym_route = value;
480
481         mutex_unlock(&the_lnet.ln_api_mutex);
482
483         return 0;
484 }
485
486 static int
487 transaction_to_set(const char *val, cfs_kernel_param_arg_t *kp)
488 {
489         int rc;
490         unsigned *transaction_to = (unsigned *)kp->arg;
491         unsigned long value;
492
493         rc = kstrtoul(val, 0, &value);
494         if (rc) {
495                 CERROR("Invalid module parameter value for 'lnet_transaction_timeout'\n");
496                 return rc;
497         }
498
499         /*
500          * The purpose of locking the api_mutex here is to ensure that
501          * the correct value ends up stored properly.
502          */
503         mutex_lock(&the_lnet.ln_api_mutex);
504
505         if (value <= lnet_retry_count || value == 0) {
506                 mutex_unlock(&the_lnet.ln_api_mutex);
507                 CERROR("Invalid value for lnet_transaction_timeout (%lu). "
508                        "Has to be greater than lnet_retry_count (%u)\n",
509                        value, lnet_retry_count);
510                 return -EINVAL;
511         }
512
513         if (value == *transaction_to) {
514                 mutex_unlock(&the_lnet.ln_api_mutex);
515                 return 0;
516         }
517
518         *transaction_to = value;
519         /* Update the lnet_lnd_timeout now that we've modified the
520          * transaction timeout
521          */
522         lnet_set_lnd_timeout();
523
524         mutex_unlock(&the_lnet.ln_api_mutex);
525
526         return 0;
527 }
528
529 static int
530 retry_count_set(const char *val, cfs_kernel_param_arg_t *kp)
531 {
532         int rc;
533         unsigned *retry_count = (unsigned *)kp->arg;
534         unsigned long value;
535
536         rc = kstrtoul(val, 0, &value);
537         if (rc) {
538                 CERROR("Invalid module parameter value for 'lnet_retry_count'\n");
539                 return rc;
540         }
541
542         /*
543          * The purpose of locking the api_mutex here is to ensure that
544          * the correct value ends up stored properly.
545          */
546         mutex_lock(&the_lnet.ln_api_mutex);
547
548         if (lnet_health_sensitivity == 0 && value > 0) {
549                 mutex_unlock(&the_lnet.ln_api_mutex);
550                 CERROR("Can not set lnet_retry_count when health feature is turned off\n");
551                 return -EINVAL;
552         }
553
554         if (value > lnet_transaction_timeout) {
555                 mutex_unlock(&the_lnet.ln_api_mutex);
556                 CERROR("Invalid value for lnet_retry_count (%lu). "
557                        "Has to be smaller than lnet_transaction_timeout (%u)\n",
558                        value, lnet_transaction_timeout);
559                 return -EINVAL;
560         }
561
562         *retry_count = value;
563
564         /* Update the lnet_lnd_timeout now that we've modified the
565          * retry count
566          */
567         lnet_set_lnd_timeout();
568
569         mutex_unlock(&the_lnet.ln_api_mutex);
570
571         return 0;
572 }
573
574 static int
575 intf_max_set(const char *val, cfs_kernel_param_arg_t *kp)
576 {
577         int value, rc;
578
579         rc = kstrtoint(val, 0, &value);
580         if (rc) {
581                 CERROR("Invalid module parameter value for 'lnet_interfaces_max'\n");
582                 return rc;
583         }
584
585         if (value < LNET_INTERFACES_MIN) {
586                 CWARN("max interfaces provided are too small, setting to %d\n",
587                       LNET_INTERFACES_MAX_DEFAULT);
588                 value = LNET_INTERFACES_MAX_DEFAULT;
589         }
590
591         *(int *)kp->arg = value;
592
593         return 0;
594 }
595
596 static int
597 response_tracking_set(const char *val, cfs_kernel_param_arg_t *kp)
598 {
599         int rc;
600         unsigned long new_value;
601
602         rc = kstrtoul(val, 0, &new_value);
603         if (rc) {
604                 CERROR("Invalid value for 'lnet_response_tracking'\n");
605                 return -EINVAL;
606         }
607
608         if (new_value < 0 || new_value > 3) {
609                 CWARN("Invalid value (%lu) for 'lnet_response_tracking'\n",
610                       new_value);
611                 return -EINVAL;
612         }
613
614         lnet_response_tracking = new_value;
615
616         return 0;
617 }
618
619 static const char *
620 lnet_get_routes(void)
621 {
622         return routes;
623 }
624
625 static const char *
626 lnet_get_networks(void)
627 {
628         const char *nets;
629         int rc;
630
631         if (*networks != 0 && *ip2nets != 0) {
632                 LCONSOLE_ERROR_MSG(0x101, "Please specify EITHER 'networks' or "
633                                    "'ip2nets' but not both at once\n");
634                 return NULL;
635         }
636
637         if (*ip2nets != 0) {
638                 rc = lnet_parse_ip2nets(&nets, ip2nets);
639                 return (rc == 0) ? nets : NULL;
640         }
641
642         if (*networks != 0)
643                 return networks;
644
645         return "tcp";
646 }
647
648 static void
649 lnet_init_locks(void)
650 {
651         spin_lock_init(&the_lnet.ln_eq_wait_lock);
652         spin_lock_init(&the_lnet.ln_msg_resend_lock);
653         init_completion(&the_lnet.ln_mt_wait_complete);
654         mutex_init(&the_lnet.ln_lnd_mutex);
655 }
656
657 struct kmem_cache *lnet_mes_cachep;        /* MEs kmem_cache */
658 struct kmem_cache *lnet_small_mds_cachep;  /* <= LNET_SMALL_MD_SIZE bytes
659                                             *  MDs kmem_cache */
660 struct kmem_cache *lnet_udsp_cachep;       /* udsp cache */
661 struct kmem_cache *lnet_rspt_cachep;       /* response tracker cache */
662 struct kmem_cache *lnet_msg_cachep;
663
664 static int
665 lnet_slab_setup(void)
666 {
667         /* create specific kmem_cache for MEs and small MDs (i.e., originally
668          * allocated in <size-xxx> kmem_cache).
669          */
670         lnet_mes_cachep = kmem_cache_create("lnet_MEs", sizeof(struct lnet_me),
671                                             0, 0, NULL);
672         if (!lnet_mes_cachep)
673                 return -ENOMEM;
674
675         lnet_small_mds_cachep = kmem_cache_create("lnet_small_MDs",
676                                                   LNET_SMALL_MD_SIZE, 0, 0,
677                                                   NULL);
678         if (!lnet_small_mds_cachep)
679                 return -ENOMEM;
680
681         lnet_udsp_cachep = kmem_cache_create("lnet_udsp",
682                                              sizeof(struct lnet_udsp),
683                                              0, 0, NULL);
684         if (!lnet_udsp_cachep)
685                 return -ENOMEM;
686
687         lnet_rspt_cachep = kmem_cache_create("lnet_rspt", sizeof(struct lnet_rsp_tracker),
688                                             0, 0, NULL);
689         if (!lnet_rspt_cachep)
690                 return -ENOMEM;
691
692         lnet_msg_cachep = kmem_cache_create("lnet_msg", sizeof(struct lnet_msg),
693                                             0, 0, NULL);
694         if (!lnet_msg_cachep)
695                 return -ENOMEM;
696
697         return 0;
698 }
699
700 static void
701 lnet_slab_cleanup(void)
702 {
703         if (lnet_msg_cachep) {
704                 kmem_cache_destroy(lnet_msg_cachep);
705                 lnet_msg_cachep = NULL;
706         }
707
708         if (lnet_rspt_cachep) {
709                 kmem_cache_destroy(lnet_rspt_cachep);
710                 lnet_rspt_cachep = NULL;
711         }
712
713         if (lnet_udsp_cachep) {
714                 kmem_cache_destroy(lnet_udsp_cachep);
715                 lnet_udsp_cachep = NULL;
716         }
717
718         if (lnet_small_mds_cachep) {
719                 kmem_cache_destroy(lnet_small_mds_cachep);
720                 lnet_small_mds_cachep = NULL;
721         }
722
723         if (lnet_mes_cachep) {
724                 kmem_cache_destroy(lnet_mes_cachep);
725                 lnet_mes_cachep = NULL;
726         }
727 }
728
729 static int
730 lnet_create_remote_nets_table(void)
731 {
732         int               i;
733         struct list_head *hash;
734
735         LASSERT(the_lnet.ln_remote_nets_hash == NULL);
736         LASSERT(the_lnet.ln_remote_nets_hbits > 0);
737         CFS_ALLOC_PTR_ARRAY(hash, LNET_REMOTE_NETS_HASH_SIZE);
738         if (hash == NULL) {
739                 CERROR("Failed to create remote nets hash table\n");
740                 return -ENOMEM;
741         }
742
743         for (i = 0; i < LNET_REMOTE_NETS_HASH_SIZE; i++)
744                 INIT_LIST_HEAD(&hash[i]);
745         the_lnet.ln_remote_nets_hash = hash;
746         return 0;
747 }
748
749 static void
750 lnet_destroy_remote_nets_table(void)
751 {
752         int i;
753
754         if (the_lnet.ln_remote_nets_hash == NULL)
755                 return;
756
757         for (i = 0; i < LNET_REMOTE_NETS_HASH_SIZE; i++)
758                 LASSERT(list_empty(&the_lnet.ln_remote_nets_hash[i]));
759
760         CFS_FREE_PTR_ARRAY(the_lnet.ln_remote_nets_hash,
761                            LNET_REMOTE_NETS_HASH_SIZE);
762         the_lnet.ln_remote_nets_hash = NULL;
763 }
764
765 static void
766 lnet_destroy_locks(void)
767 {
768         if (the_lnet.ln_res_lock != NULL) {
769                 cfs_percpt_lock_free(the_lnet.ln_res_lock);
770                 the_lnet.ln_res_lock = NULL;
771         }
772
773         if (the_lnet.ln_net_lock != NULL) {
774                 cfs_percpt_lock_free(the_lnet.ln_net_lock);
775                 the_lnet.ln_net_lock = NULL;
776         }
777 }
778
779 static int
780 lnet_create_locks(void)
781 {
782         lnet_init_locks();
783
784         the_lnet.ln_res_lock = cfs_percpt_lock_alloc(lnet_cpt_table());
785         if (the_lnet.ln_res_lock == NULL)
786                 goto failed;
787
788         the_lnet.ln_net_lock = cfs_percpt_lock_alloc(lnet_cpt_table());
789         if (the_lnet.ln_net_lock == NULL)
790                 goto failed;
791
792         return 0;
793
794  failed:
795         lnet_destroy_locks();
796         return -ENOMEM;
797 }
798
799 static void lnet_assert_wire_constants(void)
800 {
801         /* Wire protocol assertions generated by 'wirecheck'
802          * running on Linux robert.bartonsoftware.com 2.6.8-1.521
803          * #1 Mon Aug 16 09:01:18 EDT 2004 i686 athlon i386 GNU/Linux
804          * with gcc version 3.3.3 20040412 (Red Hat Linux 3.3.3-7)
805          */
806
807         /* Constants... */
808         BUILD_BUG_ON(LNET_PROTO_TCP_MAGIC != 0xeebc0ded);
809         BUILD_BUG_ON(LNET_PROTO_TCP_VERSION_MAJOR != 1);
810         BUILD_BUG_ON(LNET_PROTO_TCP_VERSION_MINOR != 0);
811         BUILD_BUG_ON(LNET_MSG_ACK != 0);
812         BUILD_BUG_ON(LNET_MSG_PUT != 1);
813         BUILD_BUG_ON(LNET_MSG_GET != 2);
814         BUILD_BUG_ON(LNET_MSG_REPLY != 3);
815         BUILD_BUG_ON(LNET_MSG_HELLO != 4);
816
817         BUILD_BUG_ON((int)sizeof(lnet_nid_t) != 8);
818         BUILD_BUG_ON((int)sizeof(lnet_pid_t) != 4);
819
820         /* Checks for struct lnet_nid */
821         BUILD_BUG_ON((int)sizeof(struct lnet_nid) != 20);
822         BUILD_BUG_ON((int)offsetof(struct lnet_nid, nid_size) != 0);
823         BUILD_BUG_ON((int)sizeof(((struct lnet_nid *)0)->nid_size) != 1);
824         BUILD_BUG_ON((int)offsetof(struct lnet_nid, nid_type) != 1);
825         BUILD_BUG_ON((int)sizeof(((struct lnet_nid *)0)->nid_type) != 1);
826         BUILD_BUG_ON((int)offsetof(struct lnet_nid, nid_num) != 2);
827         BUILD_BUG_ON((int)sizeof(((struct lnet_nid *)0)->nid_num) != 2);
828         BUILD_BUG_ON((int)offsetof(struct lnet_nid, nid_addr) != 4);
829         BUILD_BUG_ON((int)sizeof(((struct lnet_nid *)0)->nid_addr) != 16);
830
831         /* Checks for struct lnet_process_id_packed */
832         BUILD_BUG_ON((int)sizeof(struct lnet_process_id_packed) != 12);
833         BUILD_BUG_ON((int)offsetof(struct lnet_process_id_packed, nid) != 0);
834         BUILD_BUG_ON((int)sizeof(((struct lnet_process_id_packed *)0)->nid) != 8);
835         BUILD_BUG_ON((int)offsetof(struct lnet_process_id_packed, pid) != 8);
836         BUILD_BUG_ON((int)sizeof(((struct lnet_process_id_packed *)0)->pid) != 4);
837
838         /* Checks for struct lnet_handle_wire */
839         BUILD_BUG_ON((int)sizeof(struct lnet_handle_wire) != 16);
840         BUILD_BUG_ON((int)offsetof(struct lnet_handle_wire,
841                                    wh_interface_cookie) != 0);
842         BUILD_BUG_ON((int)sizeof(((struct lnet_handle_wire *)0)->wh_interface_cookie) != 8);
843         BUILD_BUG_ON((int)offsetof(struct lnet_handle_wire,
844                                    wh_object_cookie) != 8);
845         BUILD_BUG_ON((int)sizeof(((struct lnet_handle_wire *)0)->wh_object_cookie) != 8);
846
847         /* Checks for struct struct lnet_magicversion */
848         BUILD_BUG_ON((int)sizeof(struct lnet_magicversion) != 8);
849         BUILD_BUG_ON((int)offsetof(struct lnet_magicversion, magic) != 0);
850         BUILD_BUG_ON((int)sizeof(((struct lnet_magicversion *)0)->magic) != 4);
851         BUILD_BUG_ON((int)offsetof(struct lnet_magicversion, version_major) != 4);
852         BUILD_BUG_ON((int)sizeof(((struct lnet_magicversion *)0)->version_major) != 2);
853         BUILD_BUG_ON((int)offsetof(struct lnet_magicversion,
854                                    version_minor) != 6);
855         BUILD_BUG_ON((int)sizeof(((struct lnet_magicversion *)0)->version_minor) != 2);
856
857         /* Checks for struct _lnet_hdr_nid4 */
858         BUILD_BUG_ON((int)sizeof(struct _lnet_hdr_nid4) != 72);
859         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, dest_nid) != 0);
860         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->dest_nid) != 8);
861         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, src_nid) != 8);
862         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->src_nid) != 8);
863         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, dest_pid) != 16);
864         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->dest_pid) != 4);
865         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, src_pid) != 20);
866         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->src_pid) != 4);
867         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, type) != 24);
868         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->type) != 4);
869         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, payload_length) != 28);
870         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->payload_length) != 4);
871         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg) != 32);
872         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg) != 40);
873
874         /* Ack */
875         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.ack.dst_wmd) != 32);
876         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.ack.dst_wmd) != 16);
877         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.ack.match_bits) != 48);
878         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.ack.match_bits) != 8);
879         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.ack.mlength) != 56);
880         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.ack.mlength) != 4);
881
882         /* Put */
883         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.put.ack_wmd) != 32);
884         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.put.ack_wmd) != 16);
885         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.put.match_bits) != 48);
886         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.put.match_bits) != 8);
887         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.put.hdr_data) != 56);
888         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.put.hdr_data) != 8);
889         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.put.ptl_index) != 64);
890         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.put.ptl_index) != 4);
891         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.put.offset) != 68);
892         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.put.offset) != 4);
893
894         /* Get */
895         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.get.return_wmd) != 32);
896         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.get.return_wmd) != 16);
897         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.get.match_bits) != 48);
898         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.get.match_bits) != 8);
899         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.get.ptl_index) != 56);
900         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.get.ptl_index) != 4);
901         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.get.src_offset) != 60);
902         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.get.src_offset) != 4);
903         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.get.sink_length) != 64);
904         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.get.sink_length) != 4);
905
906         /* Reply */
907         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.reply.dst_wmd) != 32);
908         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.reply.dst_wmd) != 16);
909
910         /* Hello */
911         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.hello.incarnation) != 32);
912         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.hello.incarnation) != 8);
913         BUILD_BUG_ON((int)offsetof(struct _lnet_hdr_nid4, msg.hello.type) != 40);
914         BUILD_BUG_ON((int)sizeof(((struct _lnet_hdr_nid4 *)0)->msg.hello.type) != 4);
915
916         /* Checks for struct lnet_ni_status and related constants */
917         BUILD_BUG_ON(LNET_NI_STATUS_INVALID != 0x00000000);
918         BUILD_BUG_ON(LNET_NI_STATUS_UP != 0x15aac0de);
919         BUILD_BUG_ON(LNET_NI_STATUS_DOWN != 0xdeadface);
920
921         /* Checks for struct lnet_ni_status */
922         BUILD_BUG_ON((int)sizeof(struct lnet_ni_status) != 16);
923         BUILD_BUG_ON((int)offsetof(struct lnet_ni_status, ns_nid) != 0);
924         BUILD_BUG_ON((int)sizeof(((struct lnet_ni_status *)0)->ns_nid) != 8);
925         BUILD_BUG_ON((int)offsetof(struct lnet_ni_status, ns_status) != 8);
926         BUILD_BUG_ON((int)sizeof(((struct lnet_ni_status *)0)->ns_status) != 4);
927         BUILD_BUG_ON((int)offsetof(struct lnet_ni_status, ns_msg_size) != 12);
928         BUILD_BUG_ON((int)sizeof(((struct lnet_ni_status *)0)->ns_msg_size) != 4);
929
930         /* Checks for struct lnet_ni_large_status */
931         BUILD_BUG_ON((int)sizeof(struct lnet_ni_large_status) != 24);
932         BUILD_BUG_ON((int)offsetof(struct lnet_ni_large_status, ns_status) != 0);
933         BUILD_BUG_ON((int)sizeof(((struct lnet_ni_large_status *)0)->ns_status) != 4);
934         BUILD_BUG_ON((int)offsetof(struct lnet_ni_large_status, ns_nid) != 4);
935         BUILD_BUG_ON((int)sizeof(((struct lnet_ni_large_status *)0)->ns_nid) != 20);
936
937         /* Checks for struct lnet_ping_info and related constants */
938         BUILD_BUG_ON(LNET_PROTO_PING_MAGIC != 0x70696E67);
939         BUILD_BUG_ON(LNET_PING_FEAT_INVAL != 0);
940         BUILD_BUG_ON(LNET_PING_FEAT_BASE != 1);
941         BUILD_BUG_ON(LNET_PING_FEAT_NI_STATUS != 2);
942         BUILD_BUG_ON(LNET_PING_FEAT_RTE_DISABLED != 4);
943         BUILD_BUG_ON(LNET_PING_FEAT_MULTI_RAIL != 8);
944         BUILD_BUG_ON(LNET_PING_FEAT_DISCOVERY != 16);
945         BUILD_BUG_ON(LNET_PING_FEAT_LARGE_ADDR != 32);
946         BUILD_BUG_ON(LNET_PING_FEAT_PRIMARY_LARGE != 64);
947         BUILD_BUG_ON(LNET_PING_FEAT_BITS != 127);
948
949         /* Checks for struct lnet_ping_info */
950         BUILD_BUG_ON((int)sizeof(struct lnet_ping_info) != 16);
951         BUILD_BUG_ON((int)offsetof(struct lnet_ping_info, pi_magic) != 0);
952         BUILD_BUG_ON((int)sizeof(((struct lnet_ping_info *)0)->pi_magic) != 4);
953         BUILD_BUG_ON((int)offsetof(struct lnet_ping_info, pi_features) != 4);
954         BUILD_BUG_ON((int)sizeof(((struct lnet_ping_info *)0)->pi_features) != 4);
955         BUILD_BUG_ON((int)offsetof(struct lnet_ping_info, pi_pid) != 8);
956         BUILD_BUG_ON((int)sizeof(((struct lnet_ping_info *)0)->pi_pid) != 4);
957         BUILD_BUG_ON((int)offsetof(struct lnet_ping_info, pi_nnis) != 12);
958         BUILD_BUG_ON((int)sizeof(((struct lnet_ping_info *)0)->pi_nnis) != 4);
959         BUILD_BUG_ON((int)offsetof(struct lnet_ping_info, pi_ni) != 16);
960         BUILD_BUG_ON(offsetof(struct lnet_ping_info, pi_ni) != sizeof(struct lnet_ping_info));
961
962         /* Acceptor connection request */
963         BUILD_BUG_ON(LNET_PROTO_ACCEPTOR_VERSION != 1);
964
965         /* Checks for struct lnet_acceptor_connreq */
966         BUILD_BUG_ON((int)sizeof(struct lnet_acceptor_connreq) != 16);
967         BUILD_BUG_ON((int)offsetof(struct lnet_acceptor_connreq, acr_magic) != 0);
968         BUILD_BUG_ON((int)sizeof(((struct lnet_acceptor_connreq *)0)->acr_magic) != 4);
969         BUILD_BUG_ON((int)offsetof(struct lnet_acceptor_connreq, acr_version) != 4);
970         BUILD_BUG_ON((int)sizeof(((struct lnet_acceptor_connreq *)0)->acr_version) != 4);
971         BUILD_BUG_ON((int)offsetof(struct lnet_acceptor_connreq, acr_nid) != 8);
972         BUILD_BUG_ON((int)sizeof(((struct lnet_acceptor_connreq *)0)->acr_nid) != 8);
973
974         /* Checks for struct lnet_acceptor_connreq_v2 */
975         BUILD_BUG_ON((int)sizeof(struct lnet_acceptor_connreq_v2) != 28);
976         BUILD_BUG_ON((int)offsetof(struct lnet_acceptor_connreq_v2, acr_magic) != 0);
977         BUILD_BUG_ON((int)sizeof(((struct lnet_acceptor_connreq_v2 *)0)->acr_magic) != 4);
978         BUILD_BUG_ON((int)offsetof(struct lnet_acceptor_connreq_v2, acr_version) != 4);
979         BUILD_BUG_ON((int)sizeof(((struct lnet_acceptor_connreq_v2 *)0)->acr_version) != 4);
980         BUILD_BUG_ON((int)offsetof(struct lnet_acceptor_connreq_v2, acr_nid) != 8);
981         BUILD_BUG_ON((int)sizeof(((struct lnet_acceptor_connreq_v2 *)0)->acr_nid) != 20);
982
983         /* Checks for struct lnet_counters_common */
984         BUILD_BUG_ON((int)sizeof(struct lnet_counters_common) != 60);
985         BUILD_BUG_ON((int)offsetof(struct lnet_counters_common, lcc_msgs_alloc) != 0);
986         BUILD_BUG_ON((int)sizeof(((struct lnet_counters_common *)0)->lcc_msgs_alloc) != 4);
987         BUILD_BUG_ON((int)offsetof(struct lnet_counters_common, lcc_msgs_max) != 4);
988         BUILD_BUG_ON((int)sizeof(((struct lnet_counters_common *)0)->lcc_msgs_max) != 4);
989         BUILD_BUG_ON((int)offsetof(struct lnet_counters_common, lcc_errors) != 8);
990         BUILD_BUG_ON((int)sizeof(((struct lnet_counters_common *)0)->lcc_errors) != 4);
991         BUILD_BUG_ON((int)offsetof(struct lnet_counters_common, lcc_send_count) != 12);
992         BUILD_BUG_ON((int)sizeof(((struct lnet_counters_common *)0)->lcc_send_count) != 4);
993         BUILD_BUG_ON((int)offsetof(struct lnet_counters_common, lcc_recv_count) != 16);
994         BUILD_BUG_ON((int)sizeof(((struct lnet_counters_common *)0)->lcc_recv_count) != 4);
995         BUILD_BUG_ON((int)offsetof(struct lnet_counters_common, lcc_route_count) != 20);
996         BUILD_BUG_ON((int)sizeof(((struct lnet_counters_common *)0)->lcc_route_count) != 4);
997         BUILD_BUG_ON((int)offsetof(struct lnet_counters_common, lcc_drop_count) != 24);
998         BUILD_BUG_ON((int)sizeof(((struct lnet_counters_common *)0)->lcc_drop_count) != 4);
999         BUILD_BUG_ON((int)offsetof(struct lnet_counters_common, lcc_send_length) != 28);
1000         BUILD_BUG_ON((int)sizeof(((struct lnet_counters_common *)0)->lcc_send_length) != 8);
1001         BUILD_BUG_ON((int)offsetof(struct lnet_counters_common, lcc_recv_length) != 36);
1002         BUILD_BUG_ON((int)sizeof(((struct lnet_counters_common *)0)->lcc_recv_length) != 8);
1003         BUILD_BUG_ON((int)offsetof(struct lnet_counters_common, lcc_route_length) != 44);
1004         BUILD_BUG_ON((int)sizeof(((struct lnet_counters_common *)0)->lcc_route_length) != 8);
1005         BUILD_BUG_ON((int)offsetof(struct lnet_counters_common, lcc_drop_length) != 52);
1006         BUILD_BUG_ON((int)sizeof(((struct lnet_counters_common *)0)->lcc_drop_length) != 8);
1007 }
1008
1009 static const struct lnet_lnd *lnet_find_lnd_by_type(__u32 type)
1010 {
1011         const struct lnet_lnd *lnd;
1012
1013         /* holding lnd mutex */
1014         if (type >= NUM_LNDS)
1015                 return NULL;
1016         lnd = the_lnet.ln_lnds[type];
1017         LASSERT(!lnd || lnd->lnd_type == type);
1018
1019         return lnd;
1020 }
1021
1022 unsigned int
1023 lnet_get_lnd_timeout(void)
1024 {
1025         return lnet_lnd_timeout;
1026 }
1027 EXPORT_SYMBOL(lnet_get_lnd_timeout);
1028
1029 void
1030 lnet_register_lnd(const struct lnet_lnd *lnd)
1031 {
1032         mutex_lock(&the_lnet.ln_lnd_mutex);
1033
1034         LASSERT(libcfs_isknown_lnd(lnd->lnd_type));
1035         LASSERT(lnet_find_lnd_by_type(lnd->lnd_type) == NULL);
1036
1037         the_lnet.ln_lnds[lnd->lnd_type] = lnd;
1038
1039         CDEBUG(D_NET, "%s LND registered\n", libcfs_lnd2str(lnd->lnd_type));
1040
1041         mutex_unlock(&the_lnet.ln_lnd_mutex);
1042 }
1043 EXPORT_SYMBOL(lnet_register_lnd);
1044
1045 void
1046 lnet_unregister_lnd(const struct lnet_lnd *lnd)
1047 {
1048         mutex_lock(&the_lnet.ln_lnd_mutex);
1049
1050         LASSERT(lnet_find_lnd_by_type(lnd->lnd_type) == lnd);
1051
1052         the_lnet.ln_lnds[lnd->lnd_type] = NULL;
1053         CDEBUG(D_NET, "%s LND unregistered\n", libcfs_lnd2str(lnd->lnd_type));
1054
1055         mutex_unlock(&the_lnet.ln_lnd_mutex);
1056 }
1057 EXPORT_SYMBOL(lnet_unregister_lnd);
1058
1059 static void
1060 lnet_counters_get_common_locked(struct lnet_counters_common *common)
1061 {
1062         struct lnet_counters *ctr;
1063         int i;
1064
1065         /* FIXME !!! Their is no assert_lnet_net_locked() to ensure this
1066          * actually called under the protection of the lnet_net_lock.
1067          */
1068         memset(common, 0, sizeof(*common));
1069
1070         cfs_percpt_for_each(ctr, i, the_lnet.ln_counters) {
1071                 common->lcc_msgs_max     += ctr->lct_common.lcc_msgs_max;
1072                 common->lcc_msgs_alloc   += ctr->lct_common.lcc_msgs_alloc;
1073                 common->lcc_errors       += ctr->lct_common.lcc_errors;
1074                 common->lcc_send_count   += ctr->lct_common.lcc_send_count;
1075                 common->lcc_recv_count   += ctr->lct_common.lcc_recv_count;
1076                 common->lcc_route_count  += ctr->lct_common.lcc_route_count;
1077                 common->lcc_drop_count   += ctr->lct_common.lcc_drop_count;
1078                 common->lcc_send_length  += ctr->lct_common.lcc_send_length;
1079                 common->lcc_recv_length  += ctr->lct_common.lcc_recv_length;
1080                 common->lcc_route_length += ctr->lct_common.lcc_route_length;
1081                 common->lcc_drop_length  += ctr->lct_common.lcc_drop_length;
1082         }
1083 }
1084
1085 void
1086 lnet_counters_get_common(struct lnet_counters_common *common)
1087 {
1088         lnet_net_lock(LNET_LOCK_EX);
1089         lnet_counters_get_common_locked(common);
1090         lnet_net_unlock(LNET_LOCK_EX);
1091 }
1092 EXPORT_SYMBOL(lnet_counters_get_common);
1093
1094 int
1095 lnet_counters_get(struct lnet_counters *counters)
1096 {
1097         struct lnet_counters *ctr;
1098         struct lnet_counters_health *health = &counters->lct_health;
1099         int i, rc = 0;
1100
1101         memset(counters, 0, sizeof(*counters));
1102
1103         lnet_net_lock(LNET_LOCK_EX);
1104
1105         if (the_lnet.ln_state != LNET_STATE_RUNNING)
1106                 GOTO(out_unlock, rc = -ENODEV);
1107
1108         lnet_counters_get_common_locked(&counters->lct_common);
1109
1110         cfs_percpt_for_each(ctr, i, the_lnet.ln_counters) {
1111                 health->lch_rst_alloc    += ctr->lct_health.lch_rst_alloc;
1112                 health->lch_resend_count += ctr->lct_health.lch_resend_count;
1113                 health->lch_response_timeout_count +=
1114                                 ctr->lct_health.lch_response_timeout_count;
1115                 health->lch_local_interrupt_count +=
1116                                 ctr->lct_health.lch_local_interrupt_count;
1117                 health->lch_local_dropped_count +=
1118                                 ctr->lct_health.lch_local_dropped_count;
1119                 health->lch_local_aborted_count +=
1120                                 ctr->lct_health.lch_local_aborted_count;
1121                 health->lch_local_no_route_count +=
1122                                 ctr->lct_health.lch_local_no_route_count;
1123                 health->lch_local_timeout_count +=
1124                                 ctr->lct_health.lch_local_timeout_count;
1125                 health->lch_local_error_count +=
1126                                 ctr->lct_health.lch_local_error_count;
1127                 health->lch_remote_dropped_count +=
1128                                 ctr->lct_health.lch_remote_dropped_count;
1129                 health->lch_remote_error_count +=
1130                                 ctr->lct_health.lch_remote_error_count;
1131                 health->lch_remote_timeout_count +=
1132                                 ctr->lct_health.lch_remote_timeout_count;
1133                 health->lch_network_timeout_count +=
1134                                 ctr->lct_health.lch_network_timeout_count;
1135         }
1136 out_unlock:
1137         lnet_net_unlock(LNET_LOCK_EX);
1138         return rc;
1139 }
1140 EXPORT_SYMBOL(lnet_counters_get);
1141
1142 void
1143 lnet_counters_reset(void)
1144 {
1145         struct lnet_counters *counters;
1146         int             i;
1147
1148         lnet_net_lock(LNET_LOCK_EX);
1149
1150         if (the_lnet.ln_state != LNET_STATE_RUNNING)
1151                 goto avoid_reset;
1152
1153         cfs_percpt_for_each(counters, i, the_lnet.ln_counters)
1154                 memset(counters, 0, sizeof(struct lnet_counters));
1155 avoid_reset:
1156         lnet_net_unlock(LNET_LOCK_EX);
1157 }
1158
1159 static char *
1160 lnet_res_type2str(int type)
1161 {
1162         switch (type) {
1163         default:
1164                 LBUG();
1165         case LNET_COOKIE_TYPE_MD:
1166                 return "MD";
1167         case LNET_COOKIE_TYPE_ME:
1168                 return "ME";
1169         case LNET_COOKIE_TYPE_EQ:
1170                 return "EQ";
1171         }
1172 }
1173
1174 static void
1175 lnet_res_container_cleanup(struct lnet_res_container *rec)
1176 {
1177         int     count = 0;
1178
1179         if (rec->rec_type == 0) /* not set yet, it's uninitialized */
1180                 return;
1181
1182         while (!list_empty(&rec->rec_active)) {
1183                 struct list_head *e = rec->rec_active.next;
1184
1185                 list_del_init(e);
1186                 if (rec->rec_type == LNET_COOKIE_TYPE_MD) {
1187                         lnet_md_free(list_entry(e, struct lnet_libmd, md_list));
1188
1189                 } else { /* NB: Active MEs should be attached on portals */
1190                         LBUG();
1191                 }
1192                 count++;
1193         }
1194
1195         if (count > 0) {
1196                 /* Found alive MD/ME/EQ, user really should unlink/free
1197                  * all of them before finalize LNet, but if someone didn't,
1198                  * we have to recycle garbage for him */
1199                 CERROR("%d active elements on exit of %s container\n",
1200                        count, lnet_res_type2str(rec->rec_type));
1201         }
1202
1203         if (rec->rec_lh_hash != NULL) {
1204                 CFS_FREE_PTR_ARRAY(rec->rec_lh_hash, LNET_LH_HASH_SIZE);
1205                 rec->rec_lh_hash = NULL;
1206         }
1207
1208         rec->rec_type = 0; /* mark it as finalized */
1209 }
1210
1211 static int
1212 lnet_res_container_setup(struct lnet_res_container *rec, int cpt, int type)
1213 {
1214         int     rc = 0;
1215         int     i;
1216
1217         LASSERT(rec->rec_type == 0);
1218
1219         rec->rec_type = type;
1220         INIT_LIST_HEAD(&rec->rec_active);
1221
1222         rec->rec_lh_cookie = (cpt << LNET_COOKIE_TYPE_BITS) | type;
1223
1224         /* Arbitrary choice of hash table size */
1225         LIBCFS_CPT_ALLOC(rec->rec_lh_hash, lnet_cpt_table(), cpt,
1226                          LNET_LH_HASH_SIZE * sizeof(rec->rec_lh_hash[0]));
1227         if (rec->rec_lh_hash == NULL) {
1228                 rc = -ENOMEM;
1229                 goto out;
1230         }
1231
1232         for (i = 0; i < LNET_LH_HASH_SIZE; i++)
1233                 INIT_LIST_HEAD(&rec->rec_lh_hash[i]);
1234
1235         return 0;
1236
1237 out:
1238         CERROR("Failed to setup %s resource container\n",
1239                lnet_res_type2str(type));
1240         lnet_res_container_cleanup(rec);
1241         return rc;
1242 }
1243
1244 static void
1245 lnet_res_containers_destroy(struct lnet_res_container **recs)
1246 {
1247         struct lnet_res_container       *rec;
1248         int                             i;
1249
1250         cfs_percpt_for_each(rec, i, recs)
1251                 lnet_res_container_cleanup(rec);
1252
1253         cfs_percpt_free(recs);
1254 }
1255
1256 static struct lnet_res_container **
1257 lnet_res_containers_create(int type)
1258 {
1259         struct lnet_res_container       **recs;
1260         struct lnet_res_container       *rec;
1261         int                             rc;
1262         int                             i;
1263
1264         recs = cfs_percpt_alloc(lnet_cpt_table(), sizeof(*rec));
1265         if (recs == NULL) {
1266                 CERROR("Failed to allocate %s resource containers\n",
1267                        lnet_res_type2str(type));
1268                 return NULL;
1269         }
1270
1271         cfs_percpt_for_each(rec, i, recs) {
1272                 rc = lnet_res_container_setup(rec, i, type);
1273                 if (rc != 0) {
1274                         lnet_res_containers_destroy(recs);
1275                         return NULL;
1276                 }
1277         }
1278
1279         return recs;
1280 }
1281
1282 struct lnet_libhandle *
1283 lnet_res_lh_lookup(struct lnet_res_container *rec, __u64 cookie)
1284 {
1285         /* ALWAYS called with lnet_res_lock held */
1286         struct list_head        *head;
1287         struct lnet_libhandle   *lh;
1288         unsigned int            hash;
1289
1290         if ((cookie & LNET_COOKIE_MASK) != rec->rec_type)
1291                 return NULL;
1292
1293         hash = cookie >> (LNET_COOKIE_TYPE_BITS + LNET_CPT_BITS);
1294         head = &rec->rec_lh_hash[hash & LNET_LH_HASH_MASK];
1295
1296         list_for_each_entry(lh, head, lh_hash_chain) {
1297                 if (lh->lh_cookie == cookie)
1298                         return lh;
1299         }
1300
1301         return NULL;
1302 }
1303
1304 void
1305 lnet_res_lh_initialize(struct lnet_res_container *rec,
1306                        struct lnet_libhandle *lh)
1307 {
1308         /* ALWAYS called with lnet_res_lock held */
1309         unsigned int    ibits = LNET_COOKIE_TYPE_BITS + LNET_CPT_BITS;
1310         unsigned int    hash;
1311
1312         lh->lh_cookie = rec->rec_lh_cookie;
1313         rec->rec_lh_cookie += 1 << ibits;
1314
1315         hash = (lh->lh_cookie >> ibits) & LNET_LH_HASH_MASK;
1316
1317         list_add(&lh->lh_hash_chain, &rec->rec_lh_hash[hash]);
1318 }
1319
1320 struct list_head **
1321 lnet_create_array_of_queues(void)
1322 {
1323         struct list_head **qs;
1324         struct list_head *q;
1325         int i;
1326
1327         qs = cfs_percpt_alloc(lnet_cpt_table(),
1328                               sizeof(struct list_head));
1329         if (!qs) {
1330                 CERROR("Failed to allocate queues\n");
1331                 return NULL;
1332         }
1333
1334         cfs_percpt_for_each(q, i, qs)
1335                 INIT_LIST_HEAD(q);
1336
1337         return qs;
1338 }
1339
1340 static int lnet_unprepare(void);
1341
1342 static int
1343 lnet_prepare(lnet_pid_t requested_pid)
1344 {
1345         /* Prepare to bring up the network */
1346         struct lnet_res_container **recs;
1347         int                       rc = 0;
1348
1349         if (requested_pid == LNET_PID_ANY) {
1350                 /* Don't instantiate LNET just for me */
1351                 return -ENETDOWN;
1352         }
1353
1354         LASSERT(the_lnet.ln_refcount == 0);
1355
1356         the_lnet.ln_routing = 0;
1357
1358         LASSERT((requested_pid & LNET_PID_USERFLAG) == 0);
1359         the_lnet.ln_pid = requested_pid;
1360
1361         INIT_LIST_HEAD(&the_lnet.ln_test_peers);
1362         INIT_LIST_HEAD(&the_lnet.ln_remote_peer_ni_list);
1363         INIT_LIST_HEAD(&the_lnet.ln_nets);
1364         INIT_LIST_HEAD(&the_lnet.ln_routers);
1365         INIT_LIST_HEAD(&the_lnet.ln_drop_rules);
1366         INIT_LIST_HEAD(&the_lnet.ln_delay_rules);
1367         INIT_LIST_HEAD(&the_lnet.ln_dc_request);
1368         INIT_LIST_HEAD(&the_lnet.ln_dc_working);
1369         INIT_LIST_HEAD(&the_lnet.ln_dc_expired);
1370         INIT_LIST_HEAD(&the_lnet.ln_mt_localNIRecovq);
1371         INIT_LIST_HEAD(&the_lnet.ln_mt_peerNIRecovq);
1372         INIT_LIST_HEAD(&the_lnet.ln_udsp_list);
1373         init_waitqueue_head(&the_lnet.ln_dc_waitq);
1374         the_lnet.ln_mt_handler = NULL;
1375         init_completion(&the_lnet.ln_started);
1376         atomic_set(&the_lnet.ln_late_msg_count, 0);
1377         atomic64_set(&the_lnet.ln_late_msg_nsecs, 0);
1378
1379         rc = lnet_slab_setup();
1380         if (rc != 0)
1381                 goto failed;
1382
1383         rc = lnet_create_remote_nets_table();
1384         if (rc != 0)
1385                 goto failed;
1386
1387         /*
1388          * NB the interface cookie in wire handles guards against delayed
1389          * replies and ACKs appearing valid after reboot.
1390          */
1391         the_lnet.ln_interface_cookie = ktime_get_real_ns();
1392
1393         the_lnet.ln_counters = cfs_percpt_alloc(lnet_cpt_table(),
1394                                                 sizeof(struct lnet_counters));
1395         if (the_lnet.ln_counters == NULL) {
1396                 CERROR("Failed to allocate counters for LNet\n");
1397                 rc = -ENOMEM;
1398                 goto failed;
1399         }
1400
1401         rc = lnet_peer_tables_create();
1402         if (rc != 0)
1403                 goto failed;
1404
1405         rc = lnet_msg_containers_create();
1406         if (rc != 0)
1407                 goto failed;
1408
1409         rc = lnet_res_container_setup(&the_lnet.ln_eq_container, 0,
1410                                       LNET_COOKIE_TYPE_EQ);
1411         if (rc != 0)
1412                 goto failed;
1413
1414         recs = lnet_res_containers_create(LNET_COOKIE_TYPE_MD);
1415         if (recs == NULL) {
1416                 rc = -ENOMEM;
1417                 goto failed;
1418         }
1419
1420         the_lnet.ln_md_containers = recs;
1421
1422         rc = lnet_portals_create();
1423         if (rc != 0) {
1424                 CERROR("Failed to create portals for LNet: %d\n", rc);
1425                 goto failed;
1426         }
1427
1428         the_lnet.ln_mt_zombie_rstqs = lnet_create_array_of_queues();
1429         if (!the_lnet.ln_mt_zombie_rstqs) {
1430                 rc = -ENOMEM;
1431                 goto failed;
1432         }
1433
1434         return 0;
1435
1436  failed:
1437         lnet_unprepare();
1438         return rc;
1439 }
1440
1441 static int
1442 lnet_unprepare(void)
1443 {
1444         /* NB no LNET_LOCK since this is the last reference.  All LND instances
1445          * have shut down already, so it is safe to unlink and free all
1446          * descriptors, even those that appear committed to a network op (eg MD
1447          * with non-zero pending count) */
1448
1449         lnet_fail_nid(LNET_NID_ANY, 0);
1450
1451         LASSERT(the_lnet.ln_refcount == 0);
1452         LASSERT(list_empty(&the_lnet.ln_test_peers));
1453         LASSERT(list_empty(&the_lnet.ln_nets));
1454
1455         if (the_lnet.ln_mt_zombie_rstqs) {
1456                 lnet_clean_zombie_rstqs();
1457                 the_lnet.ln_mt_zombie_rstqs = NULL;
1458         }
1459
1460         lnet_assert_handler_unused(the_lnet.ln_mt_handler);
1461         the_lnet.ln_mt_handler = NULL;
1462
1463         lnet_portals_destroy();
1464
1465         if (the_lnet.ln_md_containers != NULL) {
1466                 lnet_res_containers_destroy(the_lnet.ln_md_containers);
1467                 the_lnet.ln_md_containers = NULL;
1468         }
1469
1470         lnet_res_container_cleanup(&the_lnet.ln_eq_container);
1471
1472         lnet_msg_containers_destroy();
1473         lnet_peer_uninit();
1474         lnet_rtrpools_free(0);
1475
1476         if (the_lnet.ln_counters != NULL) {
1477                 cfs_percpt_free(the_lnet.ln_counters);
1478                 the_lnet.ln_counters = NULL;
1479         }
1480         lnet_destroy_remote_nets_table();
1481         lnet_udsp_destroy(true);
1482         lnet_slab_cleanup();
1483
1484         return 0;
1485 }
1486
1487 struct lnet_ni  *
1488 lnet_net2ni_locked(__u32 net_id, int cpt)
1489 {
1490         struct lnet_ni   *ni;
1491         struct lnet_net  *net;
1492
1493         LASSERT(cpt != LNET_LOCK_EX);
1494
1495         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
1496                 if (net->net_id == net_id) {
1497                         ni = list_first_entry(&net->net_ni_list, struct lnet_ni,
1498                                               ni_netlist);
1499                         return ni;
1500                 }
1501         }
1502
1503         return NULL;
1504 }
1505
1506 struct lnet_ni *
1507 lnet_net2ni_addref(__u32 net)
1508 {
1509         struct lnet_ni *ni;
1510
1511         lnet_net_lock(0);
1512         ni = lnet_net2ni_locked(net, 0);
1513         if (ni)
1514                 lnet_ni_addref_locked(ni, 0);
1515         lnet_net_unlock(0);
1516
1517         return ni;
1518 }
1519 EXPORT_SYMBOL(lnet_net2ni_addref);
1520
1521 struct lnet_net *
1522 lnet_get_net_locked(__u32 net_id)
1523 {
1524         struct lnet_net  *net;
1525
1526         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
1527                 if (net->net_id == net_id)
1528                         return net;
1529         }
1530
1531         return NULL;
1532 }
1533
1534 void
1535 lnet_net_clr_pref_rtrs(struct lnet_net *net)
1536 {
1537         struct list_head zombies;
1538         struct lnet_nid_list *ne;
1539         struct lnet_nid_list *tmp;
1540
1541         INIT_LIST_HEAD(&zombies);
1542
1543         lnet_net_lock(LNET_LOCK_EX);
1544         list_splice_init(&net->net_rtr_pref_nids, &zombies);
1545         lnet_net_unlock(LNET_LOCK_EX);
1546
1547         list_for_each_entry_safe(ne, tmp, &zombies, nl_list) {
1548                 list_del_init(&ne->nl_list);
1549                 LIBCFS_FREE(ne, sizeof(*ne));
1550         }
1551 }
1552
1553 int
1554 lnet_net_add_pref_rtr(struct lnet_net *net,
1555                       struct lnet_nid *gw_nid)
1556 __must_hold(&the_lnet.ln_api_mutex)
1557 {
1558         struct lnet_nid_list *ne;
1559
1560         /* This function is called with api_mutex held. When the api_mutex
1561          * is held the list can not be modified, as it is only modified as
1562          * a result of applying a UDSP and that happens under api_mutex
1563          * lock.
1564          */
1565         list_for_each_entry(ne, &net->net_rtr_pref_nids, nl_list) {
1566                 if (nid_same(&ne->nl_nid, gw_nid))
1567                         return -EEXIST;
1568         }
1569
1570         LIBCFS_ALLOC(ne, sizeof(*ne));
1571         if (!ne)
1572                 return -ENOMEM;
1573
1574         ne->nl_nid = *gw_nid;
1575
1576         /* Lock the cpt to protect against addition and checks in the
1577          * selection algorithm
1578          */
1579         lnet_net_lock(LNET_LOCK_EX);
1580         list_add(&ne->nl_list, &net->net_rtr_pref_nids);
1581         lnet_net_unlock(LNET_LOCK_EX);
1582
1583         return 0;
1584 }
1585
1586 static unsigned int
1587 lnet_nid4_cpt_hash(lnet_nid_t nid, unsigned int number)
1588 {
1589         __u64 key = nid;
1590         __u16 lnd = LNET_NETTYP(LNET_NIDNET(nid));
1591         unsigned int cpt;
1592
1593         if (lnd == KFILND || lnd == GNILND) {
1594                 cpt = hash_long(key, LNET_CPT_BITS);
1595
1596                 /* NB: The number of CPTs needn't be a power of 2 */
1597                 if (cpt >= number)
1598                         cpt = (key + cpt + (cpt >> 1)) % number;
1599         } else {
1600                 __u64 pair_bits = 0x0001000100010001LLU;
1601                 __u64 mask = pair_bits * 0xFF;
1602                 __u64 pair_sum;
1603                 /* For ipv4 NIDs, use (sum-by-multiplication of nid bytes) mod
1604                  * (number of CPTs) to match nid to a CPT.
1605                  */
1606                 pair_sum = (key & mask) + ((key >> 8) & mask);
1607                 pair_sum = (pair_sum * pair_bits) >> 48;
1608                 cpt = (unsigned int)(pair_sum) % number;
1609         }
1610
1611         CDEBUG(D_NET, "Match nid %s to cpt %u\n",
1612                libcfs_nid2str(nid), cpt);
1613
1614         return cpt;
1615 }
1616
1617 unsigned int
1618 lnet_nid_cpt_hash(struct lnet_nid *nid, unsigned int number)
1619 {
1620         unsigned int val;
1621         u32 h = 0;
1622         int i;
1623
1624         LASSERT(number >= 1 && number <= LNET_CPT_NUMBER);
1625
1626         if (number == 1)
1627                 return 0;
1628
1629         if (nid_is_nid4(nid))
1630                 return lnet_nid4_cpt_hash(lnet_nid_to_nid4(nid), number);
1631
1632         for (i = 0; i < 4; i++)
1633                 h = cfs_hash_32(nid->nid_addr[i]^h, 32);
1634         val = cfs_hash_32(LNET_NID_NET(nid) ^ h, LNET_CPT_BITS);
1635         if (val < number)
1636                 return val;
1637         return (unsigned int)(h + val + (val >> 1)) % number;
1638 }
1639
1640 int
1641 lnet_cpt_of_nid_locked(struct lnet_nid *nid, struct lnet_ni *ni)
1642 {
1643         struct lnet_net *net;
1644
1645         /* must called with hold of lnet_net_lock */
1646         if (LNET_CPT_NUMBER == 1)
1647                 return 0; /* the only one */
1648
1649         /*
1650          * If NI is provided then use the CPT identified in the NI cpt
1651          * list if one exists. If one doesn't exist, then that NI is
1652          * associated with all CPTs and it follows that the net it belongs
1653          * to is implicitly associated with all CPTs, so just hash the nid
1654          * and return that.
1655          */
1656         if (ni != NULL) {
1657                 if (ni->ni_cpts != NULL)
1658                         return ni->ni_cpts[lnet_nid_cpt_hash(nid,
1659                                                              ni->ni_ncpts)];
1660                 else
1661                         return lnet_nid_cpt_hash(nid, LNET_CPT_NUMBER);
1662         }
1663
1664         /* no NI provided so look at the net */
1665         net = lnet_get_net_locked(LNET_NID_NET(nid));
1666
1667         if (net != NULL && net->net_cpts != NULL) {
1668                 return net->net_cpts[lnet_nid_cpt_hash(nid, net->net_ncpts)];
1669         }
1670
1671         return lnet_nid_cpt_hash(nid, LNET_CPT_NUMBER);
1672 }
1673
1674 int
1675 lnet_nid2cpt(struct lnet_nid *nid, struct lnet_ni *ni)
1676 {
1677         int     cpt;
1678         int     cpt2;
1679
1680         if (LNET_CPT_NUMBER == 1)
1681                 return 0; /* the only one */
1682
1683         cpt = lnet_net_lock_current();
1684
1685         cpt2 = lnet_cpt_of_nid_locked(nid, ni);
1686
1687         lnet_net_unlock(cpt);
1688
1689         return cpt2;
1690 }
1691 EXPORT_SYMBOL(lnet_nid2cpt);
1692
1693 int
1694 lnet_cpt_of_nid(lnet_nid_t nid4, struct lnet_ni *ni)
1695 {
1696         struct lnet_nid nid;
1697
1698         if (LNET_CPT_NUMBER == 1)
1699                 return 0; /* the only one */
1700
1701         lnet_nid4_to_nid(nid4, &nid);
1702         return lnet_nid2cpt(&nid, ni);
1703 }
1704 EXPORT_SYMBOL(lnet_cpt_of_nid);
1705
1706 int
1707 lnet_islocalnet_locked(__u32 net_id)
1708 {
1709         struct lnet_net *net;
1710         bool local;
1711
1712         net = lnet_get_net_locked(net_id);
1713
1714         local = net != NULL;
1715
1716         return local;
1717 }
1718
1719 int
1720 lnet_islocalnet(__u32 net_id)
1721 {
1722         int cpt;
1723         bool local;
1724
1725         cpt = lnet_net_lock_current();
1726
1727         local = lnet_islocalnet_locked(net_id);
1728
1729         lnet_net_unlock(cpt);
1730
1731         return local;
1732 }
1733
1734 struct lnet_ni  *
1735 lnet_nid_to_ni_locked(struct lnet_nid *nid, int cpt)
1736 {
1737         struct lnet_net  *net;
1738         struct lnet_ni *ni;
1739
1740         LASSERT(cpt != LNET_LOCK_EX);
1741
1742         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
1743                 list_for_each_entry(ni, &net->net_ni_list, ni_netlist) {
1744                         if (nid_same(&ni->ni_nid, nid))
1745                                 return ni;
1746                 }
1747         }
1748
1749         return NULL;
1750 }
1751
1752 struct lnet_ni *
1753 lnet_nid_to_ni_addref(struct lnet_nid *nid)
1754 {
1755         struct lnet_ni *ni;
1756
1757         lnet_net_lock(0);
1758         ni = lnet_nid_to_ni_locked(nid, 0);
1759         if (ni)
1760                 lnet_ni_addref_locked(ni, 0);
1761         lnet_net_unlock(0);
1762
1763         return ni;
1764 }
1765 EXPORT_SYMBOL(lnet_nid_to_ni_addref);
1766
1767 int
1768 lnet_islocalnid(struct lnet_nid *nid)
1769 {
1770         struct lnet_ni  *ni;
1771         int             cpt;
1772
1773         cpt = lnet_net_lock_current();
1774         ni = lnet_nid_to_ni_locked(nid, cpt);
1775         lnet_net_unlock(cpt);
1776
1777         return ni != NULL;
1778 }
1779
1780 int
1781 lnet_count_acceptor_nets(void)
1782 {
1783         /* Return the # of NIs that need the acceptor. */
1784         int              count = 0;
1785         struct lnet_net  *net;
1786         int              cpt;
1787
1788         cpt = lnet_net_lock_current();
1789         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
1790                 /* all socklnd type networks should have the acceptor
1791                  * thread started */
1792                 if (net->net_lnd->lnd_accept != NULL)
1793                         count++;
1794         }
1795
1796         lnet_net_unlock(cpt);
1797
1798         return count;
1799 }
1800
1801 struct lnet_ping_buffer *
1802 lnet_ping_buffer_alloc(int nbytes, gfp_t gfp)
1803 {
1804         struct lnet_ping_buffer *pbuf;
1805
1806         LIBCFS_ALLOC_GFP(pbuf, LNET_PING_BUFFER_SIZE(nbytes), gfp);
1807         if (pbuf) {
1808                 pbuf->pb_nbytes = nbytes;       /* sizeof of pb_info */
1809                 pbuf->pb_needs_post = false;
1810                 atomic_set(&pbuf->pb_refcnt, 1);
1811         }
1812
1813         return pbuf;
1814 }
1815
1816 void
1817 lnet_ping_buffer_free(struct lnet_ping_buffer *pbuf)
1818 {
1819         LASSERT(atomic_read(&pbuf->pb_refcnt) == 0);
1820         LIBCFS_FREE(pbuf, LNET_PING_BUFFER_SIZE(pbuf->pb_nbytes));
1821 }
1822
1823 static struct lnet_ping_buffer *
1824 lnet_ping_target_create(int nbytes)
1825 {
1826         struct lnet_ping_buffer *pbuf;
1827
1828         pbuf = lnet_ping_buffer_alloc(nbytes, GFP_NOFS);
1829         if (pbuf == NULL) {
1830                 CERROR("Can't allocate ping source [%d]\n", nbytes);
1831                 return NULL;
1832         }
1833
1834         pbuf->pb_info.pi_nnis = 0;
1835         pbuf->pb_info.pi_pid = the_lnet.ln_pid;
1836         pbuf->pb_info.pi_magic = LNET_PROTO_PING_MAGIC;
1837         pbuf->pb_info.pi_features =
1838                 LNET_PING_FEAT_NI_STATUS | LNET_PING_FEAT_MULTI_RAIL;
1839
1840         return pbuf;
1841 }
1842
1843 static inline int
1844 lnet_get_net_ni_bytes_locked(struct lnet_net *net)
1845 {
1846         struct lnet_ni *ni;
1847         int bytes = 0;
1848
1849         list_for_each_entry(ni, &net->net_ni_list, ni_netlist)
1850                 bytes += lnet_ping_sts_size(&ni->ni_nid);
1851
1852         return bytes;
1853 }
1854
1855 static inline int
1856 lnet_get_ni_bytes(void)
1857 {
1858         struct lnet_ni *ni;
1859         struct lnet_net *net;
1860         int bytes = 0;
1861
1862         lnet_net_lock(0);
1863
1864         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
1865                 list_for_each_entry(ni, &net->net_ni_list, ni_netlist)
1866                         bytes += lnet_ping_sts_size(&ni->ni_nid);
1867         }
1868
1869         lnet_net_unlock(0);
1870
1871         return bytes;
1872 }
1873
1874 void
1875 lnet_swap_pinginfo(struct lnet_ping_buffer *pbuf)
1876 {
1877         struct lnet_ni_large_status *lstat, *lend;
1878         struct lnet_ni_status *stat, *end;
1879         int nnis;
1880         int i;
1881
1882         __swab32s(&pbuf->pb_info.pi_magic);
1883         __swab32s(&pbuf->pb_info.pi_features);
1884         __swab32s(&pbuf->pb_info.pi_pid);
1885         __swab32s(&pbuf->pb_info.pi_nnis);
1886         nnis = pbuf->pb_info.pi_nnis;
1887         stat = &pbuf->pb_info.pi_ni[0];
1888         end = (void *)&pbuf->pb_info + pbuf->pb_nbytes;
1889         for (i = 0; i < nnis && stat + 1 <= end; i++, stat++) {
1890                 __swab64s(&stat->ns_nid);
1891                 __swab32s(&stat->ns_status);
1892                 if (i == 0)
1893                         /* Might be total size */
1894                         __swab32s(&stat->ns_msg_size);
1895         }
1896         if (!(pbuf->pb_info.pi_features & LNET_PING_FEAT_LARGE_ADDR))
1897                 return;
1898
1899         lstat = (struct lnet_ni_large_status *)stat;
1900         lend = (void *)end;
1901         while (lstat + 1 <= lend) {
1902                 __swab32s(&lstat->ns_status);
1903                 /* struct lnet_nid never needs to be swabed */
1904                 lstat = lnet_ping_sts_next(lstat);
1905         }
1906 }
1907
1908 int
1909 lnet_ping_info_validate(struct lnet_ping_info *pinfo)
1910 {
1911         if (!pinfo)
1912                 return -EINVAL;
1913         if (pinfo->pi_magic != LNET_PROTO_PING_MAGIC)
1914                 return -EPROTO;
1915         if (!(pinfo->pi_features & LNET_PING_FEAT_NI_STATUS))
1916                 return -EPROTO;
1917         /* Loopback is guaranteed to be present */
1918         if (pinfo->pi_nnis < 1 || pinfo->pi_nnis > lnet_interfaces_max)
1919                 return -ERANGE;
1920         if (LNET_PING_INFO_LONI(pinfo) != LNET_NID_LO_0)
1921                 return -EPROTO;
1922         return 0;
1923 }
1924
1925 static void
1926 lnet_ping_target_destroy(void)
1927 {
1928         struct lnet_net *net;
1929         struct lnet_ni  *ni;
1930
1931         lnet_net_lock(LNET_LOCK_EX);
1932
1933         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
1934                 list_for_each_entry(ni, &net->net_ni_list, ni_netlist) {
1935                         lnet_ni_lock(ni);
1936                         ni->ni_status = NULL;
1937                         lnet_ni_unlock(ni);
1938                 }
1939         }
1940
1941         lnet_ping_buffer_decref(the_lnet.ln_ping_target);
1942         the_lnet.ln_ping_target = NULL;
1943
1944         lnet_net_unlock(LNET_LOCK_EX);
1945 }
1946
1947 static void
1948 lnet_ping_target_event_handler(struct lnet_event *event)
1949 {
1950         struct lnet_ping_buffer *pbuf = event->md_user_ptr;
1951
1952         if (event->unlinked)
1953                 lnet_ping_buffer_decref(pbuf);
1954 }
1955
1956 static int
1957 lnet_ping_target_setup(struct lnet_ping_buffer **ppbuf,
1958                        struct lnet_handle_md *ping_mdh,
1959                        int ni_bytes, bool set_eq)
1960 {
1961         struct lnet_processid id = {
1962                 .nid = LNET_ANY_NID,
1963                 .pid = LNET_PID_ANY
1964         };
1965         struct lnet_me *me;
1966         struct lnet_md md = { NULL };
1967         int rc;
1968
1969         if (set_eq)
1970                 the_lnet.ln_ping_target_handler =
1971                         lnet_ping_target_event_handler;
1972
1973         *ppbuf = lnet_ping_target_create(ni_bytes);
1974         if (*ppbuf == NULL) {
1975                 rc = -ENOMEM;
1976                 goto fail_free_eq;
1977         }
1978
1979         /* Ping target ME/MD */
1980         me = LNetMEAttach(LNET_RESERVED_PORTAL, &id,
1981                           LNET_PROTO_PING_MATCHBITS, 0,
1982                           LNET_UNLINK, LNET_INS_AFTER);
1983         if (IS_ERR(me)) {
1984                 rc = PTR_ERR(me);
1985                 CERROR("Can't create ping target ME: %d\n", rc);
1986                 goto fail_decref_ping_buffer;
1987         }
1988
1989         /* initialize md content */
1990         md.start     = &(*ppbuf)->pb_info;
1991         md.length    = (*ppbuf)->pb_nbytes;
1992         md.threshold = LNET_MD_THRESH_INF;
1993         md.max_size  = 0;
1994         md.options   = LNET_MD_OP_GET | LNET_MD_TRUNCATE |
1995                        LNET_MD_MANAGE_REMOTE;
1996         md.handler   = the_lnet.ln_ping_target_handler;
1997         md.user_ptr  = *ppbuf;
1998
1999         rc = LNetMDAttach(me, &md, LNET_RETAIN, ping_mdh);
2000         if (rc != 0) {
2001                 CERROR("Can't attach ping target MD: %d\n", rc);
2002                 goto fail_decref_ping_buffer;
2003         }
2004         lnet_ping_buffer_addref(*ppbuf);
2005
2006         return 0;
2007
2008 fail_decref_ping_buffer:
2009         LASSERT(atomic_read(&(*ppbuf)->pb_refcnt) == 1);
2010         lnet_ping_buffer_decref(*ppbuf);
2011         *ppbuf = NULL;
2012 fail_free_eq:
2013         return rc;
2014 }
2015
2016 static void
2017 lnet_ping_md_unlink(struct lnet_ping_buffer *pbuf,
2018                     struct lnet_handle_md *ping_mdh)
2019 {
2020         LNetMDUnlink(*ping_mdh);
2021         LNetInvalidateMDHandle(ping_mdh);
2022
2023         /* NB the MD could be busy; this just starts the unlink */
2024         wait_var_event_warning(&pbuf->pb_refcnt,
2025                                atomic_read(&pbuf->pb_refcnt) <= 1,
2026                                "Still waiting for ping data MD to unlink\n");
2027 }
2028
2029 static void
2030 lnet_ping_target_install_locked(struct lnet_ping_buffer *pbuf)
2031 {
2032         struct lnet_ni *ni;
2033         struct lnet_net *net;
2034         struct lnet_ni_status *ns, *end;
2035         struct lnet_ni_large_status *lns, *lend;
2036         int rc;
2037
2038         pbuf->pb_info.pi_nnis = 0;
2039         ns = &pbuf->pb_info.pi_ni[0];
2040         end = (void *)&pbuf->pb_info + pbuf->pb_nbytes;
2041         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
2042                 list_for_each_entry(ni, &net->net_ni_list, ni_netlist) {
2043                         if (!nid_is_nid4(&ni->ni_nid)) {
2044                                 if (ns == &pbuf->pb_info.pi_ni[1]) {
2045                                         /* This is primary, and it is long */
2046                                         pbuf->pb_info.pi_features |=
2047                                                 LNET_PING_FEAT_PRIMARY_LARGE;
2048                                 }
2049                                 continue;
2050                         }
2051                         LASSERT(ns + 1 <= end);
2052                         ns->ns_nid = lnet_nid_to_nid4(&ni->ni_nid);
2053
2054                         lnet_ni_lock(ni);
2055                         ns->ns_status = lnet_ni_get_status_locked(ni);
2056                         ni->ni_status = &ns->ns_status;
2057                         lnet_ni_unlock(ni);
2058
2059                         pbuf->pb_info.pi_nnis++;
2060                         ns++;
2061                 }
2062         }
2063
2064         lns = (void *)ns;
2065         lend = (void *)end;
2066         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
2067                 list_for_each_entry(ni, &net->net_ni_list, ni_netlist) {
2068                         if (nid_is_nid4(&ni->ni_nid))
2069                                 continue;
2070                         LASSERT(lns + 1 <= lend);
2071
2072                         lns->ns_nid = ni->ni_nid;
2073
2074                         lnet_ni_lock(ni);
2075                         ns->ns_status = lnet_ni_get_status_locked(ni);
2076                         ni->ni_status = &lns->ns_status;
2077                         lnet_ni_unlock(ni);
2078
2079                         lns = lnet_ping_sts_next(lns);
2080                 }
2081         }
2082         if ((void *)lns > (void *)ns) {
2083                 /* Record total info size */
2084                 pbuf->pb_info.pi_ni[0].ns_msg_size =
2085                         (void *)lns - (void *)&pbuf->pb_info;
2086                 pbuf->pb_info.pi_features |= LNET_PING_FEAT_LARGE_ADDR;
2087         }
2088
2089         /* We (ab)use the ns_status of the loopback interface to
2090          * transmit the sequence number. The first interface listed
2091          * must be the loopback interface.
2092          */
2093         rc = lnet_ping_info_validate(&pbuf->pb_info);
2094         if (rc) {
2095                 LCONSOLE_EMERG("Invalid ping target: %d\n", rc);
2096                 LBUG();
2097         }
2098         LNET_PING_BUFFER_SEQNO(pbuf) =
2099                 atomic_inc_return(&the_lnet.ln_ping_target_seqno);
2100 }
2101
2102 static void
2103 lnet_ping_target_update(struct lnet_ping_buffer *pbuf,
2104                         struct lnet_handle_md ping_mdh)
2105 {
2106         struct lnet_ping_buffer *old_pbuf = NULL;
2107         struct lnet_handle_md old_ping_md;
2108
2109         /* switch the NIs to point to the new ping info created */
2110         lnet_net_lock(LNET_LOCK_EX);
2111
2112         if (!the_lnet.ln_routing)
2113                 pbuf->pb_info.pi_features |= LNET_PING_FEAT_RTE_DISABLED;
2114         if (!lnet_peer_discovery_disabled)
2115                 pbuf->pb_info.pi_features |= LNET_PING_FEAT_DISCOVERY;
2116
2117         /* Ensure only known feature bits have been set. */
2118         LASSERT(pbuf->pb_info.pi_features & LNET_PING_FEAT_BITS);
2119         LASSERT(!(pbuf->pb_info.pi_features & ~LNET_PING_FEAT_BITS));
2120
2121         lnet_ping_target_install_locked(pbuf);
2122
2123         if (the_lnet.ln_ping_target) {
2124                 old_pbuf = the_lnet.ln_ping_target;
2125                 old_ping_md = the_lnet.ln_ping_target_md;
2126         }
2127         the_lnet.ln_ping_target_md = ping_mdh;
2128         the_lnet.ln_ping_target = pbuf;
2129
2130         lnet_net_unlock(LNET_LOCK_EX);
2131
2132         if (old_pbuf) {
2133                 /* unlink and free the old ping info */
2134                 lnet_ping_md_unlink(old_pbuf, &old_ping_md);
2135                 lnet_ping_buffer_decref(old_pbuf);
2136         }
2137
2138         lnet_push_update_to_peers(0);
2139 }
2140
2141 static void
2142 lnet_ping_target_fini(void)
2143 {
2144         lnet_ping_md_unlink(the_lnet.ln_ping_target,
2145                             &the_lnet.ln_ping_target_md);
2146
2147         lnet_assert_handler_unused(the_lnet.ln_ping_target_handler);
2148         lnet_ping_target_destroy();
2149 }
2150
2151 /* Resize the push target. */
2152 int lnet_push_target_resize(void)
2153 {
2154         struct lnet_handle_md mdh;
2155         struct lnet_handle_md old_mdh;
2156         struct lnet_ping_buffer *pbuf;
2157         struct lnet_ping_buffer *old_pbuf;
2158         int nbytes;
2159         int rc;
2160
2161 again:
2162         nbytes = the_lnet.ln_push_target_nbytes;
2163         if (nbytes <= 0) {
2164                 CDEBUG(D_NET, "Invalid nbytes %d\n", nbytes);
2165                 return -EINVAL;
2166         }
2167
2168         /* NB: lnet_ping_buffer_alloc() sets pbuf refcount to 1. That ref is
2169          * dropped when we need to resize again (see "old_pbuf" below) or when
2170          * LNet is shutdown (see lnet_push_target_fini())
2171          */
2172         pbuf = lnet_ping_buffer_alloc(nbytes, GFP_NOFS);
2173         if (!pbuf) {
2174                 CDEBUG(D_NET, "Can't allocate pbuf for nbytes %d\n", nbytes);
2175                 return -ENOMEM;
2176         }
2177
2178         rc = lnet_push_target_post(pbuf, &mdh);
2179         if (rc) {
2180                 CDEBUG(D_NET, "Failed to post push target: %d\n", rc);
2181                 lnet_ping_buffer_decref(pbuf);
2182                 return rc;
2183         }
2184
2185         lnet_net_lock(LNET_LOCK_EX);
2186         old_pbuf = the_lnet.ln_push_target;
2187         old_mdh = the_lnet.ln_push_target_md;
2188         the_lnet.ln_push_target = pbuf;
2189         the_lnet.ln_push_target_md = mdh;
2190         lnet_net_unlock(LNET_LOCK_EX);
2191
2192         if (old_pbuf) {
2193                 LNetMDUnlink(old_mdh);
2194                 /* Drop ref set by lnet_ping_buffer_alloc() */
2195                 lnet_ping_buffer_decref(old_pbuf);
2196         }
2197
2198         /* Received another push or reply that requires a larger buffer */
2199         if (nbytes < the_lnet.ln_push_target_nbytes)
2200                 goto again;
2201
2202         CDEBUG(D_NET, "nbytes %d success\n", nbytes);
2203         return 0;
2204 }
2205
2206 int lnet_push_target_post(struct lnet_ping_buffer *pbuf,
2207                           struct lnet_handle_md *mdhp)
2208 {
2209         struct lnet_processid id = { LNET_ANY_NID, LNET_PID_ANY };
2210         struct lnet_md md = { NULL };
2211         struct lnet_me *me;
2212         int rc;
2213
2214         me = LNetMEAttach(LNET_RESERVED_PORTAL, &id,
2215                           LNET_PROTO_PING_MATCHBITS, 0,
2216                           LNET_UNLINK, LNET_INS_AFTER);
2217         if (IS_ERR(me)) {
2218                 rc = PTR_ERR(me);
2219                 CERROR("Can't create push target ME: %d\n", rc);
2220                 return rc;
2221         }
2222
2223         pbuf->pb_needs_post = false;
2224
2225         /* This reference is dropped by lnet_push_target_event_handler() */
2226         lnet_ping_buffer_addref(pbuf);
2227
2228         /* initialize md content */
2229         md.start     = &pbuf->pb_info;
2230         md.length    = pbuf->pb_nbytes;
2231         md.threshold = 1;
2232         md.max_size  = 0;
2233         md.options   = LNET_MD_OP_PUT | LNET_MD_TRUNCATE;
2234         md.user_ptr  = pbuf;
2235         md.handler   = the_lnet.ln_push_target_handler;
2236
2237         rc = LNetMDAttach(me, &md, LNET_UNLINK, mdhp);
2238         if (rc) {
2239                 CERROR("Can't attach push MD: %d\n", rc);
2240                 lnet_ping_buffer_decref(pbuf);
2241                 pbuf->pb_needs_post = true;
2242                 return rc;
2243         }
2244
2245         CDEBUG(D_NET, "posted push target %p\n", pbuf);
2246
2247         return 0;
2248 }
2249
2250 static void lnet_push_target_event_handler(struct lnet_event *ev)
2251 {
2252         struct lnet_ping_buffer *pbuf = ev->md_user_ptr;
2253
2254         CDEBUG(D_NET, "type %d status %d unlinked %d\n", ev->type, ev->status,
2255                ev->unlinked);
2256
2257         if (pbuf->pb_info.pi_magic == __swab32(LNET_PROTO_PING_MAGIC))
2258                 lnet_swap_pinginfo(pbuf);
2259
2260         if (ev->type == LNET_EVENT_UNLINK) {
2261                 /* Drop ref added by lnet_push_target_post() */
2262                 lnet_ping_buffer_decref(pbuf);
2263                 return;
2264         }
2265
2266         lnet_peer_push_event(ev);
2267         if (ev->unlinked)
2268                 /* Drop ref added by lnet_push_target_post */
2269                 lnet_ping_buffer_decref(pbuf);
2270 }
2271
2272 /* Initialize the push target. */
2273 static int lnet_push_target_init(void)
2274 {
2275         int rc;
2276
2277         if (the_lnet.ln_push_target)
2278                 return -EALREADY;
2279
2280         the_lnet.ln_push_target_handler =
2281                 lnet_push_target_event_handler;
2282
2283         rc = LNetSetLazyPortal(LNET_RESERVED_PORTAL);
2284         LASSERT(rc == 0);
2285
2286         /* Start at the required minimum, we'll enlarge if required. */
2287         the_lnet.ln_push_target_nbytes = LNET_PING_INFO_MIN_SIZE;
2288
2289         rc = lnet_push_target_resize();
2290         if (rc) {
2291                 LNetClearLazyPortal(LNET_RESERVED_PORTAL);
2292                 the_lnet.ln_push_target_handler = NULL;
2293         }
2294
2295         return rc;
2296 }
2297
2298 /* Clean up the push target. */
2299 static void lnet_push_target_fini(void)
2300 {
2301         if (!the_lnet.ln_push_target)
2302                 return;
2303
2304         /* Unlink and invalidate to prevent new references. */
2305         LNetMDUnlink(the_lnet.ln_push_target_md);
2306         LNetInvalidateMDHandle(&the_lnet.ln_push_target_md);
2307
2308         /* Wait for the unlink to complete. */
2309         wait_var_event_warning(&the_lnet.ln_push_target->pb_refcnt,
2310                                atomic_read(&the_lnet.ln_push_target->pb_refcnt) <= 1,
2311                                "Still waiting for ping data MD to unlink\n");
2312
2313         /* Drop ref set by lnet_ping_buffer_alloc() */
2314         lnet_ping_buffer_decref(the_lnet.ln_push_target);
2315         the_lnet.ln_push_target = NULL;
2316         the_lnet.ln_push_target_nbytes = 0;
2317
2318         LNetClearLazyPortal(LNET_RESERVED_PORTAL);
2319         lnet_assert_handler_unused(the_lnet.ln_push_target_handler);
2320         the_lnet.ln_push_target_handler = NULL;
2321 }
2322
2323 static int
2324 lnet_ni_tq_credits(struct lnet_ni *ni)
2325 {
2326         int     credits;
2327
2328         LASSERT(ni->ni_ncpts >= 1);
2329
2330         if (ni->ni_ncpts == 1)
2331                 return ni->ni_net->net_tunables.lct_max_tx_credits;
2332
2333         credits = ni->ni_net->net_tunables.lct_max_tx_credits / ni->ni_ncpts;
2334         credits = max(credits, 8 * ni->ni_net->net_tunables.lct_peer_tx_credits);
2335         credits = min(credits, ni->ni_net->net_tunables.lct_max_tx_credits);
2336
2337         return credits;
2338 }
2339
2340 static void
2341 lnet_ni_unlink_locked(struct lnet_ni *ni)
2342 {
2343         /* move it to zombie list and nobody can find it anymore */
2344         LASSERT(!list_empty(&ni->ni_netlist));
2345         list_move(&ni->ni_netlist, &ni->ni_net->net_ni_zombie);
2346         lnet_ni_decref_locked(ni, 0);
2347 }
2348
2349 static void
2350 lnet_clear_zombies_nis_locked(struct lnet_net *net)
2351 {
2352         int             i;
2353         int             islo;
2354         struct lnet_ni  *ni;
2355         struct list_head *zombie_list = &net->net_ni_zombie;
2356
2357         /*
2358          * Now wait for the NIs I just nuked to show up on the zombie
2359          * list and shut them down in guaranteed thread context
2360          */
2361         i = 2;
2362         while ((ni = list_first_entry_or_null(zombie_list,
2363                                               struct lnet_ni,
2364                                               ni_netlist)) != NULL) {
2365                 int *ref;
2366                 int j;
2367
2368                 list_del_init(&ni->ni_netlist);
2369                 /* the ni should be in deleting state. If it's not it's
2370                  * a bug */
2371                 LASSERT(ni->ni_state == LNET_NI_STATE_DELETING);
2372                 cfs_percpt_for_each(ref, j, ni->ni_refs) {
2373                         if (*ref == 0)
2374                                 continue;
2375                         /* still busy, add it back to zombie list */
2376                         list_add(&ni->ni_netlist, zombie_list);
2377                         break;
2378                 }
2379
2380                 if (!list_empty(&ni->ni_netlist)) {
2381                         /* Unlock mutex while waiting to allow other
2382                          * threads to read the LNet state and fall through
2383                          * to avoid deadlock
2384                          */
2385                         lnet_net_unlock(LNET_LOCK_EX);
2386                         mutex_unlock(&the_lnet.ln_api_mutex);
2387
2388                         ++i;
2389                         if ((i & (-i)) == i) {
2390                                 CDEBUG(D_WARNING,
2391                                        "Waiting for zombie LNI %s\n",
2392                                        libcfs_nidstr(&ni->ni_nid));
2393                         }
2394                         schedule_timeout_uninterruptible(cfs_time_seconds(1));
2395
2396                         mutex_lock(&the_lnet.ln_api_mutex);
2397                         lnet_net_lock(LNET_LOCK_EX);
2398                         continue;
2399                 }
2400
2401                 lnet_net_unlock(LNET_LOCK_EX);
2402
2403                 islo = ni->ni_net->net_lnd->lnd_type == LOLND;
2404
2405                 LASSERT(!in_interrupt());
2406                 /* Holding the LND mutex makes it safe for lnd_shutdown
2407                  * to call module_put(). Module unload cannot finish
2408                  * until lnet_unregister_lnd() completes, and that
2409                  * requires the LND mutex.
2410                  */
2411                 mutex_unlock(&the_lnet.ln_api_mutex);
2412                 mutex_lock(&the_lnet.ln_lnd_mutex);
2413                 (net->net_lnd->lnd_shutdown)(ni);
2414                 mutex_unlock(&the_lnet.ln_lnd_mutex);
2415                 mutex_lock(&the_lnet.ln_api_mutex);
2416
2417                 if (!islo)
2418                         CDEBUG(D_LNI, "Removed LNI %s\n",
2419                               libcfs_nidstr(&ni->ni_nid));
2420
2421                 lnet_ni_free(ni);
2422                 i = 2;
2423                 lnet_net_lock(LNET_LOCK_EX);
2424         }
2425 }
2426
2427 /* shutdown down the NI and release refcount */
2428 static void
2429 lnet_shutdown_lndni(struct lnet_ni *ni)
2430 {
2431         int i;
2432         struct lnet_net *net = ni->ni_net;
2433
2434         lnet_net_lock(LNET_LOCK_EX);
2435         lnet_ni_lock(ni);
2436         ni->ni_state = LNET_NI_STATE_DELETING;
2437         lnet_ni_unlock(ni);
2438         lnet_ni_unlink_locked(ni);
2439         lnet_incr_dlc_seq();
2440         lnet_net_unlock(LNET_LOCK_EX);
2441
2442         /* clear messages for this NI on the lazy portal */
2443         for (i = 0; i < the_lnet.ln_nportals; i++)
2444                 lnet_clear_lazy_portal(ni, i, "Shutting down NI");
2445
2446         lnet_net_lock(LNET_LOCK_EX);
2447         lnet_clear_zombies_nis_locked(net);
2448         lnet_net_unlock(LNET_LOCK_EX);
2449 }
2450
2451 static void
2452 lnet_shutdown_lndnet(struct lnet_net *net)
2453 {
2454         struct lnet_ni *ni;
2455
2456         lnet_net_lock(LNET_LOCK_EX);
2457
2458         list_del_init(&net->net_list);
2459
2460         while ((ni = list_first_entry_or_null(&net->net_ni_list,
2461                                               struct lnet_ni,
2462                                               ni_netlist)) != NULL) {
2463                 lnet_net_unlock(LNET_LOCK_EX);
2464                 lnet_shutdown_lndni(ni);
2465                 lnet_net_lock(LNET_LOCK_EX);
2466         }
2467
2468         lnet_net_unlock(LNET_LOCK_EX);
2469
2470         /* Do peer table cleanup for this net */
2471         lnet_peer_tables_cleanup(net);
2472
2473         lnet_net_free(net);
2474 }
2475
2476 static void
2477 lnet_shutdown_lndnets(void)
2478 {
2479         struct lnet_net *net;
2480         LIST_HEAD(resend);
2481         struct lnet_msg *msg, *tmp;
2482
2483         /* NB called holding the global mutex */
2484
2485         /* All quiet on the API front */
2486         LASSERT(the_lnet.ln_state == LNET_STATE_RUNNING ||
2487                 the_lnet.ln_state == LNET_STATE_STOPPING);
2488         LASSERT(the_lnet.ln_refcount == 0);
2489
2490         lnet_net_lock(LNET_LOCK_EX);
2491         the_lnet.ln_state = LNET_STATE_STOPPING;
2492
2493         /*
2494          * move the nets to the zombie list to avoid them being
2495          * picked up for new work. LONET is also included in the
2496          * Nets that will be moved to the zombie list
2497          */
2498         list_splice_init(&the_lnet.ln_nets, &the_lnet.ln_net_zombie);
2499
2500         /* Drop the cached loopback Net. */
2501         if (the_lnet.ln_loni != NULL) {
2502                 lnet_ni_decref_locked(the_lnet.ln_loni, 0);
2503                 the_lnet.ln_loni = NULL;
2504         }
2505         lnet_net_unlock(LNET_LOCK_EX);
2506
2507         /* iterate through the net zombie list and delete each net */
2508         while ((net = list_first_entry_or_null(&the_lnet.ln_net_zombie,
2509                                                struct lnet_net,
2510                                                net_list)) != NULL)
2511                 lnet_shutdown_lndnet(net);
2512
2513         spin_lock(&the_lnet.ln_msg_resend_lock);
2514         list_splice(&the_lnet.ln_msg_resend, &resend);
2515         spin_unlock(&the_lnet.ln_msg_resend_lock);
2516
2517         list_for_each_entry_safe(msg, tmp, &resend, msg_list) {
2518                 list_del_init(&msg->msg_list);
2519                 msg->msg_no_resend = true;
2520                 lnet_finalize(msg, -ECANCELED);
2521         }
2522
2523         lnet_net_lock(LNET_LOCK_EX);
2524         the_lnet.ln_state = LNET_STATE_SHUTDOWN;
2525         lnet_net_unlock(LNET_LOCK_EX);
2526 }
2527
2528 static int
2529 lnet_startup_lndni(struct lnet_ni *ni, struct lnet_lnd_tunables *tun)
2530 {
2531         int                     rc = -EINVAL;
2532         struct lnet_tx_queue    *tq;
2533         int                     i;
2534         struct lnet_net         *net = ni->ni_net;
2535
2536         mutex_lock(&the_lnet.ln_lnd_mutex);
2537
2538         if (tun) {
2539                 memcpy(&ni->ni_lnd_tunables, tun, sizeof(*tun));
2540                 ni->ni_lnd_tunables_set = true;
2541         }
2542
2543         rc = (net->net_lnd->lnd_startup)(ni);
2544
2545         mutex_unlock(&the_lnet.ln_lnd_mutex);
2546
2547         if (rc != 0) {
2548                 LCONSOLE_ERROR_MSG(0x105, "Error %d starting up LNI %s\n",
2549                                    rc, libcfs_lnd2str(net->net_lnd->lnd_type));
2550                 goto failed0;
2551         }
2552
2553         lnet_ni_lock(ni);
2554         ni->ni_state = LNET_NI_STATE_ACTIVE;
2555         lnet_ni_unlock(ni);
2556
2557         /* We keep a reference on the loopback net through the loopback NI */
2558         if (net->net_lnd->lnd_type == LOLND) {
2559                 lnet_ni_addref(ni);
2560                 LASSERT(the_lnet.ln_loni == NULL);
2561                 the_lnet.ln_loni = ni;
2562                 ni->ni_net->net_tunables.lct_peer_tx_credits = 0;
2563                 ni->ni_net->net_tunables.lct_peer_rtr_credits = 0;
2564                 ni->ni_net->net_tunables.lct_max_tx_credits = 0;
2565                 ni->ni_net->net_tunables.lct_peer_timeout = 0;
2566                 return 0;
2567         }
2568
2569         if (ni->ni_net->net_tunables.lct_peer_tx_credits == 0 ||
2570             ni->ni_net->net_tunables.lct_max_tx_credits == 0) {
2571                 LCONSOLE_ERROR_MSG(0x107, "LNI %s has no %scredits\n",
2572                                    libcfs_lnd2str(net->net_lnd->lnd_type),
2573                                    ni->ni_net->net_tunables.lct_peer_tx_credits == 0 ?
2574                                         "" : "per-peer ");
2575                 /* shutdown the NI since if we get here then it must've already
2576                  * been started
2577                  */
2578                 lnet_shutdown_lndni(ni);
2579                 return -EINVAL;
2580         }
2581
2582         cfs_percpt_for_each(tq, i, ni->ni_tx_queues) {
2583                 tq->tq_credits_min =
2584                 tq->tq_credits_max =
2585                 tq->tq_credits = lnet_ni_tq_credits(ni);
2586         }
2587
2588         atomic_set(&ni->ni_tx_credits,
2589                    lnet_ni_tq_credits(ni) * ni->ni_ncpts);
2590         atomic_set(&ni->ni_healthv, LNET_MAX_HEALTH_VALUE);
2591
2592         /* Nodes with small feet have little entropy. The NID for this
2593          * node gives the most entropy in the low bits.
2594          */
2595         add_device_randomness(&ni->ni_nid, sizeof(ni->ni_nid));
2596
2597         CDEBUG(D_LNI, "Added LNI %s [%d/%d/%d/%d]\n",
2598                 libcfs_nidstr(&ni->ni_nid),
2599                 ni->ni_net->net_tunables.lct_peer_tx_credits,
2600                 lnet_ni_tq_credits(ni) * LNET_CPT_NUMBER,
2601                 ni->ni_net->net_tunables.lct_peer_rtr_credits,
2602                 ni->ni_net->net_tunables.lct_peer_timeout);
2603
2604         return 0;
2605 failed0:
2606         lnet_ni_free(ni);
2607         return rc;
2608 }
2609
2610 static const struct lnet_lnd *lnet_load_lnd(u32 lnd_type)
2611 {
2612         const struct lnet_lnd *lnd;
2613         int rc = 0;
2614
2615         mutex_lock(&the_lnet.ln_lnd_mutex);
2616         lnd = lnet_find_lnd_by_type(lnd_type);
2617         if (!lnd) {
2618                 mutex_unlock(&the_lnet.ln_lnd_mutex);
2619                 rc = request_module("%s", libcfs_lnd2modname(lnd_type));
2620                 mutex_lock(&the_lnet.ln_lnd_mutex);
2621
2622                 lnd = lnet_find_lnd_by_type(lnd_type);
2623                 if (!lnd) {
2624                         mutex_unlock(&the_lnet.ln_lnd_mutex);
2625                         CERROR("Can't load LND %s, module %s, rc=%d\n",
2626                         libcfs_lnd2str(lnd_type),
2627                         libcfs_lnd2modname(lnd_type), rc);
2628 #ifndef HAVE_MODULE_LOADING_SUPPORT
2629                         LCONSOLE_ERROR_MSG(0x104,
2630                                            "Your kernel must be compiled with kernel module loading support.");
2631 #endif
2632                         return ERR_PTR(-EINVAL);
2633                 }
2634         }
2635         mutex_unlock(&the_lnet.ln_lnd_mutex);
2636
2637         return lnd;
2638 }
2639
2640 static int
2641 lnet_startup_lndnet(struct lnet_net *net, struct lnet_lnd_tunables *tun)
2642 {
2643         struct lnet_ni *ni;
2644         struct lnet_net *net_l = NULL;
2645         LIST_HEAD(local_ni_list);
2646         int rc;
2647         int ni_count = 0;
2648         __u32 lnd_type;
2649         const struct lnet_lnd  *lnd;
2650         int peer_timeout =
2651                 net->net_tunables.lct_peer_timeout;
2652         int maxtxcredits =
2653                 net->net_tunables.lct_max_tx_credits;
2654         int peerrtrcredits =
2655                 net->net_tunables.lct_peer_rtr_credits;
2656
2657         /*
2658          * make sure that this net is unique. If it isn't then
2659          * we are adding interfaces to an already existing network, and
2660          * 'net' is just a convenient way to pass in the list.
2661          * if it is unique we need to find the LND and load it if
2662          * necessary.
2663          */
2664         if (lnet_net_unique(net->net_id, &the_lnet.ln_nets, &net_l)) {
2665                 lnd_type = LNET_NETTYP(net->net_id);
2666
2667                 lnd = lnet_load_lnd(lnd_type);
2668                 if (IS_ERR(lnd)) {
2669                         rc = PTR_ERR(lnd);
2670                         goto failed0;
2671                 }
2672
2673                 mutex_lock(&the_lnet.ln_lnd_mutex);
2674                 net->net_lnd = lnd;
2675                 mutex_unlock(&the_lnet.ln_lnd_mutex);
2676
2677                 net_l = net;
2678         }
2679
2680         /*
2681          * net_l: if the network being added is unique then net_l
2682          *        will point to that network
2683          *        if the network being added is not unique then
2684          *        net_l points to the existing network.
2685          *
2686          * When we enter the loop below, we'll pick NIs off he
2687          * network beign added and start them up, then add them to
2688          * a local ni list. Once we've successfully started all
2689          * the NIs then we join the local NI list (of started up
2690          * networks) with the net_l->net_ni_list, which should
2691          * point to the correct network to add the new ni list to
2692          *
2693          * If any of the new NIs fail to start up, then we want to
2694          * iterate through the local ni list, which should include
2695          * any NIs which were successfully started up, and shut
2696          * them down.
2697          *
2698          * After than we want to delete the network being added,
2699          * to avoid a memory leak.
2700          */
2701         while ((ni = list_first_entry_or_null(&net->net_ni_added,
2702                                               struct lnet_ni,
2703                                               ni_netlist)) != NULL) {
2704                 list_del_init(&ni->ni_netlist);
2705
2706                 /* make sure that the the NI we're about to start
2707                  * up is actually unique. if it's not fail. */
2708                 if (!lnet_ni_unique_net(&net_l->net_ni_list,
2709                                         ni->ni_interface)) {
2710                         rc = -EEXIST;
2711                         goto failed1;
2712                 }
2713
2714                 /* adjust the pointer the parent network, just in case it
2715                  * the net is a duplicate */
2716                 ni->ni_net = net_l;
2717
2718                 rc = lnet_startup_lndni(ni, tun);
2719
2720                 if (rc < 0)
2721                         goto failed1;
2722
2723                 lnet_ni_addref(ni);
2724                 list_add_tail(&ni->ni_netlist, &local_ni_list);
2725
2726                 ni_count++;
2727         }
2728
2729         lnet_net_lock(LNET_LOCK_EX);
2730         list_splice_tail(&local_ni_list, &net_l->net_ni_list);
2731         lnet_incr_dlc_seq();
2732         lnet_net_unlock(LNET_LOCK_EX);
2733
2734         /* if the network is not unique then we don't want to keep
2735          * it around after we're done. Free it. Otherwise add that
2736          * net to the global the_lnet.ln_nets */
2737         if (net_l != net && net_l != NULL) {
2738                 /*
2739                  * TODO - note. currently the tunables can not be updated
2740                  * once added
2741                  */
2742                 lnet_net_free(net);
2743         } else {
2744                 /*
2745                  * restore tunables after it has been overwitten by the
2746                  * lnd
2747                  */
2748                 if (peer_timeout != -1)
2749                         net->net_tunables.lct_peer_timeout = peer_timeout;
2750                 if (maxtxcredits != -1)
2751                         net->net_tunables.lct_max_tx_credits = maxtxcredits;
2752                 if (peerrtrcredits != -1)
2753                         net->net_tunables.lct_peer_rtr_credits = peerrtrcredits;
2754
2755                 lnet_net_lock(LNET_LOCK_EX);
2756                 list_add_tail(&net->net_list, &the_lnet.ln_nets);
2757                 lnet_net_unlock(LNET_LOCK_EX);
2758         }
2759
2760         return ni_count;
2761
2762 failed1:
2763         /*
2764          * shutdown the new NIs that are being started up
2765          * free the NET being started
2766          */
2767         while ((ni = list_first_entry_or_null(&local_ni_list,
2768                                               struct lnet_ni,
2769                                               ni_netlist)) != NULL)
2770                 lnet_shutdown_lndni(ni);
2771
2772 failed0:
2773         lnet_net_free(net);
2774
2775         return rc;
2776 }
2777
2778 static int
2779 lnet_startup_lndnets(struct list_head *netlist)
2780 {
2781         struct lnet_net         *net;
2782         int                     rc;
2783         int                     ni_count = 0;
2784
2785         /*
2786          * Change to running state before bringing up the LNDs. This
2787          * allows lnet_shutdown_lndnets() to assert that we've passed
2788          * through here.
2789          */
2790         lnet_net_lock(LNET_LOCK_EX);
2791         the_lnet.ln_state = LNET_STATE_RUNNING;
2792         lnet_net_unlock(LNET_LOCK_EX);
2793
2794         while ((net = list_first_entry_or_null(netlist,
2795                                                struct lnet_net,
2796                                                net_list)) != NULL) {
2797                 list_del_init(&net->net_list);
2798
2799                 rc = lnet_startup_lndnet(net, NULL);
2800
2801                 if (rc < 0)
2802                         goto failed;
2803
2804                 ni_count += rc;
2805         }
2806
2807         return ni_count;
2808 failed:
2809         lnet_shutdown_lndnets();
2810
2811         return rc;
2812 }
2813
2814 static int lnet_genl_parse_list(struct sk_buff *msg,
2815                                 const struct ln_key_list *data[], u16 idx)
2816 {
2817         const struct ln_key_list *list = data[idx];
2818         const struct ln_key_props *props;
2819         struct nlattr *node;
2820         u16 count;
2821
2822         if (!list)
2823                 return 0;
2824
2825         if (!list->lkl_maxattr)
2826                 return -ERANGE;
2827
2828         props = list->lkl_list;
2829         if (!props)
2830                 return -EINVAL;
2831
2832         node = nla_nest_start(msg, LN_SCALAR_ATTR_LIST);
2833         if (!node)
2834                 return -ENOBUFS;
2835
2836         for (count = 1; count <= list->lkl_maxattr; count++) {
2837                 struct nlattr *key = nla_nest_start(msg, count);
2838
2839                 if (count == 1)
2840                         nla_put_u16(msg, LN_SCALAR_ATTR_LIST_SIZE,
2841                                     list->lkl_maxattr);
2842
2843                 nla_put_u16(msg, LN_SCALAR_ATTR_INDEX, count);
2844                 if (props[count].lkp_value)
2845                         nla_put_string(msg, LN_SCALAR_ATTR_VALUE,
2846                                        props[count].lkp_value);
2847                 if (props[count].lkp_key_format)
2848                         nla_put_u16(msg, LN_SCALAR_ATTR_KEY_FORMAT,
2849                                     props[count].lkp_key_format);
2850                 nla_put_u16(msg, LN_SCALAR_ATTR_NLA_TYPE,
2851                             props[count].lkp_data_type);
2852                 if (props[count].lkp_data_type == NLA_NESTED) {
2853                         int rc;
2854
2855                         rc = lnet_genl_parse_list(msg, data, ++idx);
2856                         if (rc < 0)
2857                                 return rc;
2858                         idx = rc;
2859                 }
2860
2861                 nla_nest_end(msg, key);
2862         }
2863
2864         nla_nest_end(msg, node);
2865         return idx;
2866 }
2867
2868 int lnet_genl_send_scalar_list(struct sk_buff *msg, u32 portid, u32 seq,
2869                                const struct genl_family *family, int flags,
2870                                u8 cmd, const struct ln_key_list *data[])
2871 {
2872         int rc = 0;
2873         void *hdr;
2874
2875         if (!data[0])
2876                 return -EINVAL;
2877
2878         hdr = genlmsg_put(msg, portid, seq, family, flags, cmd);
2879         if (!hdr)
2880                 GOTO(canceled, rc = -EMSGSIZE);
2881
2882         rc = lnet_genl_parse_list(msg, data, 0);
2883         if (rc < 0)
2884                 GOTO(canceled, rc);
2885
2886         genlmsg_end(msg, hdr);
2887 canceled:
2888         if (rc < 0)
2889                 genlmsg_cancel(msg, hdr);
2890         return rc > 0 ? 0 : rc;
2891 }
2892 EXPORT_SYMBOL(lnet_genl_send_scalar_list);
2893
2894 static struct genl_family lnet_family;
2895
2896 /**
2897  * Initialize LNet library.
2898  *
2899  * Automatically called at module loading time. Caller has to call
2900  * lnet_lib_exit() after a call to lnet_lib_init(), if and only if the
2901  * latter returned 0. It must be called exactly once.
2902  *
2903  * \retval 0 on success
2904  * \retval -ve on failures.
2905  */
2906 int lnet_lib_init(void)
2907 {
2908         int rc;
2909
2910         lnet_assert_wire_constants();
2911
2912         /* refer to global cfs_cpt_table for now */
2913         the_lnet.ln_cpt_table = cfs_cpt_tab;
2914         the_lnet.ln_cpt_number = cfs_cpt_number(cfs_cpt_tab);
2915
2916         LASSERT(the_lnet.ln_cpt_number > 0);
2917         if (the_lnet.ln_cpt_number > LNET_CPT_MAX) {
2918                 /* we are under risk of consuming all lh_cookie */
2919                 CERROR("Can't have %d CPTs for LNet (max allowed is %d), "
2920                        "please change setting of CPT-table and retry\n",
2921                        the_lnet.ln_cpt_number, LNET_CPT_MAX);
2922                 return -E2BIG;
2923         }
2924
2925         while ((1 << the_lnet.ln_cpt_bits) < the_lnet.ln_cpt_number)
2926                 the_lnet.ln_cpt_bits++;
2927
2928         rc = lnet_create_locks();
2929         if (rc != 0) {
2930                 CERROR("Can't create LNet global locks: %d\n", rc);
2931                 return rc;
2932         }
2933
2934         rc = genl_register_family(&lnet_family);
2935         if (rc != 0) {
2936                 lnet_destroy_locks();
2937                 CERROR("Can't register LNet netlink family: %d\n", rc);
2938                 return rc;
2939         }
2940
2941         the_lnet.ln_refcount = 0;
2942         INIT_LIST_HEAD(&the_lnet.ln_net_zombie);
2943         INIT_LIST_HEAD(&the_lnet.ln_msg_resend);
2944
2945         /* The hash table size is the number of bits it takes to express the set
2946          * ln_num_routes, minus 1 (better to under estimate than over so we
2947          * don't waste memory). */
2948         if (rnet_htable_size <= 0)
2949                 rnet_htable_size = LNET_REMOTE_NETS_HASH_DEFAULT;
2950         else if (rnet_htable_size > LNET_REMOTE_NETS_HASH_MAX)
2951                 rnet_htable_size = LNET_REMOTE_NETS_HASH_MAX;
2952         the_lnet.ln_remote_nets_hbits = max_t(int, 1,
2953                                            order_base_2(rnet_htable_size) - 1);
2954
2955         /* All LNDs apart from the LOLND are in separate modules.  They
2956          * register themselves when their module loads, and unregister
2957          * themselves when their module is unloaded. */
2958         lnet_register_lnd(&the_lolnd);
2959         return 0;
2960 }
2961
2962 /**
2963  * Finalize LNet library.
2964  *
2965  * \pre lnet_lib_init() called with success.
2966  * \pre All LNet users called LNetNIFini() for matching LNetNIInit() calls.
2967  *
2968  * As this happens at module-unload, all lnds must already be unloaded,
2969  * so they must already be unregistered.
2970  */
2971 void lnet_lib_exit(void)
2972 {
2973         int i;
2974
2975         LASSERT(the_lnet.ln_refcount == 0);
2976         lnet_unregister_lnd(&the_lolnd);
2977         for (i = 0; i < NUM_LNDS; i++)
2978                 LASSERT(!the_lnet.ln_lnds[i]);
2979         lnet_destroy_locks();
2980         genl_unregister_family(&lnet_family);
2981 }
2982
2983 /**
2984  * Set LNet PID and start LNet interfaces, routing, and forwarding.
2985  *
2986  * Users must call this function at least once before any other functions.
2987  * For each successful call there must be a corresponding call to
2988  * LNetNIFini(). For subsequent calls to LNetNIInit(), \a requested_pid is
2989  * ignored.
2990  *
2991  * The PID used by LNet may be different from the one requested.
2992  * See LNetGetId().
2993  *
2994  * \param requested_pid PID requested by the caller.
2995  *
2996  * \return >= 0 on success, and < 0 error code on failures.
2997  */
2998 int
2999 LNetNIInit(lnet_pid_t requested_pid)
3000 {
3001         int im_a_router = 0;
3002         int rc;
3003         int ni_bytes;
3004         struct lnet_ping_buffer *pbuf;
3005         struct lnet_handle_md ping_mdh;
3006         LIST_HEAD(net_head);
3007         struct lnet_net *net;
3008
3009         mutex_lock(&the_lnet.ln_api_mutex);
3010
3011         CDEBUG(D_OTHER, "refs %d\n", the_lnet.ln_refcount);
3012
3013         if (the_lnet.ln_state == LNET_STATE_STOPPING) {
3014                 mutex_unlock(&the_lnet.ln_api_mutex);
3015                 return -ESHUTDOWN;
3016         }
3017
3018         if (the_lnet.ln_refcount > 0) {
3019                 rc = the_lnet.ln_refcount++;
3020                 mutex_unlock(&the_lnet.ln_api_mutex);
3021                 return rc;
3022         }
3023
3024         rc = lnet_prepare(requested_pid);
3025         if (rc != 0) {
3026                 mutex_unlock(&the_lnet.ln_api_mutex);
3027                 return rc;
3028         }
3029
3030         /* create a network for Loopback network */
3031         net = lnet_net_alloc(LNET_MKNET(LOLND, 0), &net_head);
3032         if (net == NULL) {
3033                 rc = -ENOMEM;
3034                 goto err_empty_list;
3035         }
3036
3037         /* Add in the loopback NI */
3038         if (lnet_ni_alloc(net, NULL, NULL) == NULL) {
3039                 rc = -ENOMEM;
3040                 goto err_empty_list;
3041         }
3042
3043         if (use_tcp_bonding)
3044                 CWARN("use_tcp_bonding has been removed. Use Multi-Rail and Dynamic Discovery instead, see LU-13641\n");
3045
3046         /* If LNet is being initialized via DLC it is possible
3047          * that the user requests not to load module parameters (ones which
3048          * are supported by DLC) on initialization.  Therefore, make sure not
3049          * to load networks, routes and forwarding from module parameters
3050          * in this case.  On cleanup in case of failure only clean up
3051          * routes if it has been loaded */
3052         if (!the_lnet.ln_nis_from_mod_params) {
3053                 rc = lnet_parse_networks(&net_head, lnet_get_networks());
3054                 if (rc < 0)
3055                         goto err_empty_list;
3056         }
3057
3058         rc = lnet_startup_lndnets(&net_head);
3059         if (rc < 0)
3060                 goto err_empty_list;
3061
3062         if (!the_lnet.ln_nis_from_mod_params) {
3063                 rc = lnet_parse_routes(lnet_get_routes(), &im_a_router);
3064                 if (rc != 0)
3065                         goto err_shutdown_lndnis;
3066
3067                 rc = lnet_rtrpools_alloc(im_a_router);
3068                 if (rc != 0)
3069                         goto err_destroy_routes;
3070         }
3071
3072         rc = lnet_acceptor_start();
3073         if (rc != 0)
3074                 goto err_destroy_routes;
3075
3076         the_lnet.ln_refcount = 1;
3077         /* Now I may use my own API functions... */
3078
3079         ni_bytes = LNET_PING_INFO_HDR_SIZE;
3080         list_for_each_entry(net, &the_lnet.ln_nets, net_list)
3081                 ni_bytes += lnet_get_net_ni_bytes_locked(net);
3082
3083         rc = lnet_ping_target_setup(&pbuf, &ping_mdh, ni_bytes, true);
3084         if (rc != 0)
3085                 goto err_acceptor_stop;
3086
3087         lnet_ping_target_update(pbuf, ping_mdh);
3088
3089         the_lnet.ln_mt_handler = lnet_mt_event_handler;
3090
3091         rc = lnet_push_target_init();
3092         if (rc != 0)
3093                 goto err_stop_ping;
3094
3095         rc = lnet_peer_discovery_start();
3096         if (rc != 0)
3097                 goto err_destroy_push_target;
3098
3099         rc = lnet_monitor_thr_start();
3100         if (rc != 0)
3101                 goto err_stop_discovery_thr;
3102
3103         lnet_fault_init();
3104         lnet_router_debugfs_init();
3105
3106         mutex_unlock(&the_lnet.ln_api_mutex);
3107
3108         complete_all(&the_lnet.ln_started);
3109
3110         /* wait for all routers to start */
3111         lnet_wait_router_start();
3112
3113         return 0;
3114
3115 err_stop_discovery_thr:
3116         lnet_peer_discovery_stop();
3117 err_destroy_push_target:
3118         lnet_push_target_fini();
3119 err_stop_ping:
3120         lnet_ping_target_fini();
3121 err_acceptor_stop:
3122         the_lnet.ln_refcount = 0;
3123         lnet_acceptor_stop();
3124 err_destroy_routes:
3125         if (!the_lnet.ln_nis_from_mod_params)
3126                 lnet_destroy_routes();
3127 err_shutdown_lndnis:
3128         lnet_shutdown_lndnets();
3129 err_empty_list:
3130         lnet_unprepare();
3131         LASSERT(rc < 0);
3132         mutex_unlock(&the_lnet.ln_api_mutex);
3133         while ((net = list_first_entry_or_null(&net_head,
3134                                                struct lnet_net,
3135                                                net_list)) != NULL) {
3136                 list_del_init(&net->net_list);
3137                 lnet_net_free(net);
3138         }
3139         return rc;
3140 }
3141 EXPORT_SYMBOL(LNetNIInit);
3142
3143 /**
3144  * Stop LNet interfaces, routing, and forwarding.
3145  *
3146  * Users must call this function once for each successful call to LNetNIInit().
3147  * Once the LNetNIFini() operation has been started, the results of pending
3148  * API operations are undefined.
3149  *
3150  * \return always 0 for current implementation.
3151  */
3152 int
3153 LNetNIFini(void)
3154 {
3155         mutex_lock(&the_lnet.ln_api_mutex);
3156
3157         LASSERT(the_lnet.ln_refcount > 0);
3158
3159         if (the_lnet.ln_refcount != 1) {
3160                 the_lnet.ln_refcount--;
3161         } else {
3162                 LASSERT(!the_lnet.ln_niinit_self);
3163
3164                 lnet_net_lock(LNET_LOCK_EX);
3165                 the_lnet.ln_state = LNET_STATE_STOPPING;
3166                 lnet_net_unlock(LNET_LOCK_EX);
3167
3168                 lnet_fault_fini();
3169
3170                 lnet_router_debugfs_fini();
3171                 lnet_monitor_thr_stop();
3172                 lnet_peer_discovery_stop();
3173                 lnet_push_target_fini();
3174                 lnet_ping_target_fini();
3175
3176                 /* Teardown fns that use my own API functions BEFORE here */
3177                 the_lnet.ln_refcount = 0;
3178
3179                 lnet_acceptor_stop();
3180                 lnet_destroy_routes();
3181                 lnet_shutdown_lndnets();
3182                 lnet_unprepare();
3183         }
3184
3185         mutex_unlock(&the_lnet.ln_api_mutex);
3186         return 0;
3187 }
3188 EXPORT_SYMBOL(LNetNIFini);
3189
3190 /**
3191  * Grabs the ni data from the ni structure and fills the out
3192  * parameters
3193  *
3194  * \param[in] ni network        interface structure
3195  * \param[out] cfg_ni           NI config information
3196  * \param[out] tun              network and LND tunables
3197  */
3198 static void
3199 lnet_fill_ni_info(struct lnet_ni *ni, struct lnet_ioctl_config_ni *cfg_ni,
3200                    struct lnet_ioctl_config_lnd_tunables *tun,
3201                    struct lnet_ioctl_element_stats *stats,
3202                    __u32 tun_size)
3203 {
3204         size_t min_size = 0;
3205         int i;
3206
3207         if (!ni || !cfg_ni || !tun || !nid_is_nid4(&ni->ni_nid))
3208                 return;
3209
3210         if (ni->ni_interface != NULL) {
3211                 strncpy(cfg_ni->lic_ni_intf,
3212                         ni->ni_interface,
3213                         sizeof(cfg_ni->lic_ni_intf));
3214         }
3215
3216         cfg_ni->lic_nid = lnet_nid_to_nid4(&ni->ni_nid);
3217         cfg_ni->lic_status = lnet_ni_get_status_locked(ni);
3218         cfg_ni->lic_dev_cpt = ni->ni_dev_cpt;
3219
3220         memcpy(&tun->lt_cmn, &ni->ni_net->net_tunables, sizeof(tun->lt_cmn));
3221
3222         if (stats) {
3223                 stats->iel_send_count = lnet_sum_stats(&ni->ni_stats,
3224                                                        LNET_STATS_TYPE_SEND);
3225                 stats->iel_recv_count = lnet_sum_stats(&ni->ni_stats,
3226                                                        LNET_STATS_TYPE_RECV);
3227                 stats->iel_drop_count = lnet_sum_stats(&ni->ni_stats,
3228                                                        LNET_STATS_TYPE_DROP);
3229         }
3230
3231         /*
3232          * tun->lt_tun will always be present, but in order to be
3233          * backwards compatible, we need to deal with the cases when
3234          * tun->lt_tun is smaller than what the kernel has, because it
3235          * comes from an older version of a userspace program, then we'll
3236          * need to copy as much information as we have available space.
3237          */
3238         min_size = tun_size - sizeof(tun->lt_cmn);
3239         memcpy(&tun->lt_tun, &ni->ni_lnd_tunables, min_size);
3240
3241         /* copy over the cpts */
3242         if (ni->ni_ncpts == LNET_CPT_NUMBER &&
3243             ni->ni_cpts == NULL)  {
3244                 for (i = 0; i < ni->ni_ncpts; i++)
3245                         cfg_ni->lic_cpts[i] = i;
3246         } else {
3247                 for (i = 0;
3248                      ni->ni_cpts != NULL && i < ni->ni_ncpts &&
3249                      i < LNET_MAX_SHOW_NUM_CPT;
3250                      i++)
3251                         cfg_ni->lic_cpts[i] = ni->ni_cpts[i];
3252         }
3253         cfg_ni->lic_ncpts = ni->ni_ncpts;
3254 }
3255
3256 /**
3257  * NOTE: This is a legacy function left in the code to be backwards
3258  * compatible with older userspace programs. It should eventually be
3259  * removed.
3260  *
3261  * Grabs the ni data from the ni structure and fills the out
3262  * parameters
3263  *
3264  * \param[in] ni network        interface structure
3265  * \param[out] config           config information
3266  */
3267 static void
3268 lnet_fill_ni_info_legacy(struct lnet_ni *ni,
3269                          struct lnet_ioctl_config_data *config)
3270 {
3271         struct lnet_ioctl_net_config *net_config;
3272         struct lnet_ioctl_config_lnd_tunables *lnd_cfg = NULL;
3273         size_t min_size, tunable_size = 0;
3274         int i;
3275
3276         if (!ni || !config || !nid_is_nid4(&ni->ni_nid))
3277                 return;
3278
3279         net_config = (struct lnet_ioctl_net_config *) config->cfg_bulk;
3280         if (!net_config)
3281                 return;
3282
3283         if (!ni->ni_interface)
3284                 return;
3285
3286         strncpy(net_config->ni_interface,
3287                 ni->ni_interface,
3288                 sizeof(net_config->ni_interface));
3289
3290         config->cfg_nid = lnet_nid_to_nid4(&ni->ni_nid);
3291         config->cfg_config_u.cfg_net.net_peer_timeout =
3292                 ni->ni_net->net_tunables.lct_peer_timeout;
3293         config->cfg_config_u.cfg_net.net_max_tx_credits =
3294                 ni->ni_net->net_tunables.lct_max_tx_credits;
3295         config->cfg_config_u.cfg_net.net_peer_tx_credits =
3296                 ni->ni_net->net_tunables.lct_peer_tx_credits;
3297         config->cfg_config_u.cfg_net.net_peer_rtr_credits =
3298                 ni->ni_net->net_tunables.lct_peer_rtr_credits;
3299
3300         net_config->ni_status = lnet_ni_get_status_locked(ni);
3301
3302         if (ni->ni_cpts) {
3303                 int num_cpts = min(ni->ni_ncpts, LNET_MAX_SHOW_NUM_CPT);
3304
3305                 for (i = 0; i < num_cpts; i++)
3306                         net_config->ni_cpts[i] = ni->ni_cpts[i];
3307
3308                 config->cfg_ncpts = num_cpts;
3309         }
3310
3311         /*
3312          * See if user land tools sent in a newer and larger version
3313          * of struct lnet_tunables than what the kernel uses.
3314          */
3315         min_size = sizeof(*config) + sizeof(*net_config);
3316
3317         if (config->cfg_hdr.ioc_len > min_size)
3318                 tunable_size = config->cfg_hdr.ioc_len - min_size;
3319
3320         /* Don't copy too much data to user space */
3321         min_size = min(tunable_size, sizeof(ni->ni_lnd_tunables));
3322         lnd_cfg = (struct lnet_ioctl_config_lnd_tunables *)net_config->cfg_bulk;
3323
3324         if (lnd_cfg && min_size) {
3325                 memcpy(&lnd_cfg->lt_tun, &ni->ni_lnd_tunables, min_size);
3326                 config->cfg_config_u.cfg_net.net_interface_count = 1;
3327
3328                 /* Tell user land that kernel side has less data */
3329                 if (tunable_size > sizeof(ni->ni_lnd_tunables)) {
3330                         min_size = tunable_size - sizeof(ni->ni_lnd_tunables);
3331                         config->cfg_hdr.ioc_len -= min_size;
3332                 }
3333         }
3334 }
3335
3336 struct lnet_ni *
3337 lnet_get_ni_idx_locked(int idx)
3338 {
3339         struct lnet_ni          *ni;
3340         struct lnet_net         *net;
3341
3342         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
3343                 list_for_each_entry(ni, &net->net_ni_list, ni_netlist) {
3344                         if (idx-- == 0)
3345                                 return ni;
3346                 }
3347         }
3348
3349         return NULL;
3350 }
3351
3352 int lnet_get_net_healthv_locked(struct lnet_net *net)
3353 {
3354         struct lnet_ni *ni;
3355         int best_healthv = 0;
3356         int healthv, ni_fatal;
3357
3358         list_for_each_entry(ni, &net->net_ni_list, ni_netlist) {
3359                 healthv = atomic_read(&ni->ni_healthv);
3360                 ni_fatal = atomic_read(&ni->ni_fatal_error_on);
3361                 if (!ni_fatal && healthv > best_healthv)
3362                         best_healthv = healthv;
3363         }
3364
3365         return best_healthv;
3366 }
3367
3368 struct lnet_ni *
3369 lnet_get_next_ni_locked(struct lnet_net *mynet, struct lnet_ni *prev)
3370 {
3371         struct lnet_ni          *ni;
3372         struct lnet_net         *net = mynet;
3373
3374         /*
3375          * It is possible that the net has been cleaned out while there is
3376          * a message being sent. This function accessed the net without
3377          * checking if the list is empty
3378          */
3379         if (!prev) {
3380                 if (!net)
3381                         net = list_first_entry(&the_lnet.ln_nets,
3382                                                struct lnet_net,
3383                                                net_list);
3384                 if (list_empty(&net->net_ni_list))
3385                         return NULL;
3386                 ni = list_first_entry(&net->net_ni_list, struct lnet_ni,
3387                                       ni_netlist);
3388
3389                 return ni;
3390         }
3391
3392         if (prev->ni_netlist.next == &prev->ni_net->net_ni_list) {
3393                 /* if you reached the end of the ni list and the net is
3394                  * specified, then there are no more nis in that net */
3395                 if (net != NULL)
3396                         return NULL;
3397
3398                 /* we reached the end of this net ni list. move to the
3399                  * next net */
3400                 if (prev->ni_net->net_list.next == &the_lnet.ln_nets)
3401                         /* no more nets and no more NIs. */
3402                         return NULL;
3403
3404                 /* get the next net */
3405                 net = list_first_entry(&prev->ni_net->net_list, struct lnet_net,
3406                                        net_list);
3407                 if (list_empty(&net->net_ni_list))
3408                         return NULL;
3409                 /* get the ni on it */
3410                 ni = list_first_entry(&net->net_ni_list, struct lnet_ni,
3411                                       ni_netlist);
3412
3413                 return ni;
3414         }
3415
3416         if (list_empty(&prev->ni_netlist))
3417                 return NULL;
3418
3419         /* there are more nis left */
3420         ni = list_first_entry(&prev->ni_netlist, struct lnet_ni, ni_netlist);
3421
3422         return ni;
3423 }
3424
3425 static int
3426 lnet_get_net_config(struct lnet_ioctl_config_data *config)
3427 {
3428         struct lnet_ni *ni;
3429         int cpt;
3430         int rc = -ENOENT;
3431         int idx = config->cfg_count;
3432
3433         cpt = lnet_net_lock_current();
3434
3435         ni = lnet_get_ni_idx_locked(idx);
3436
3437         if (ni != NULL) {
3438                 rc = 0;
3439                 lnet_ni_lock(ni);
3440                 lnet_fill_ni_info_legacy(ni, config);
3441                 lnet_ni_unlock(ni);
3442         }
3443
3444         lnet_net_unlock(cpt);
3445         return rc;
3446 }
3447
3448 static int
3449 lnet_get_ni_config(struct lnet_ioctl_config_ni *cfg_ni,
3450                    struct lnet_ioctl_config_lnd_tunables *tun,
3451                    struct lnet_ioctl_element_stats *stats,
3452                    __u32 tun_size)
3453 {
3454         struct lnet_ni          *ni;
3455         int                     cpt;
3456         int                     rc = -ENOENT;
3457
3458         if (!cfg_ni || !tun || !stats)
3459                 return -EINVAL;
3460
3461         cpt = lnet_net_lock_current();
3462
3463         ni = lnet_get_ni_idx_locked(cfg_ni->lic_idx);
3464
3465         if (ni) {
3466                 rc = 0;
3467                 lnet_ni_lock(ni);
3468                 lnet_fill_ni_info(ni, cfg_ni, tun, stats, tun_size);
3469                 lnet_ni_unlock(ni);
3470         }
3471
3472         lnet_net_unlock(cpt);
3473         return rc;
3474 }
3475
3476 static int lnet_get_ni_stats(struct lnet_ioctl_element_msg_stats *msg_stats)
3477 {
3478         struct lnet_ni *ni;
3479         int cpt;
3480         int rc = -ENOENT;
3481
3482         if (!msg_stats)
3483                 return -EINVAL;
3484
3485         cpt = lnet_net_lock_current();
3486
3487         ni = lnet_get_ni_idx_locked(msg_stats->im_idx);
3488
3489         if (ni) {
3490                 lnet_usr_translate_stats(msg_stats, &ni->ni_stats);
3491                 rc = 0;
3492         }
3493
3494         lnet_net_unlock(cpt);
3495
3496         return rc;
3497 }
3498
3499 static int lnet_add_net_common(struct lnet_net *net,
3500                                struct lnet_ioctl_config_lnd_tunables *tun)
3501 {
3502         struct lnet_handle_md ping_mdh;
3503         struct lnet_ping_buffer *pbuf;
3504         struct lnet_remotenet *rnet;
3505         struct lnet_ni *ni;
3506         u32 net_id;
3507         int rc;
3508
3509         lnet_net_lock(LNET_LOCK_EX);
3510         rnet = lnet_find_rnet_locked(net->net_id);
3511         lnet_net_unlock(LNET_LOCK_EX);
3512         /*
3513          * make sure that the net added doesn't invalidate the current
3514          * configuration LNet is keeping
3515          */
3516         if (rnet) {
3517                 CERROR("Adding net %s will invalidate routing configuration\n",
3518                        libcfs_net2str(net->net_id));
3519                 lnet_net_free(net);
3520                 return -EUSERS;
3521         }
3522
3523         if (tun)
3524                 memcpy(&net->net_tunables,
3525                        &tun->lt_cmn, sizeof(net->net_tunables));
3526         else
3527                 memset(&net->net_tunables, -1, sizeof(net->net_tunables));
3528
3529         net_id = net->net_id;
3530
3531         rc = lnet_startup_lndnet(net,
3532                                  (tun) ? &tun->lt_tun : NULL);
3533         if (rc < 0)
3534                 return rc;
3535
3536         /* make sure you calculate the correct number of slots in the ping
3537          * buffer. Since the ping info is a flattened list of all the NIs,
3538          * we should allocate enough slots to accomodate the number of NIs
3539          * which will be added.
3540          */
3541         rc = lnet_ping_target_setup(&pbuf, &ping_mdh,
3542                                     LNET_PING_INFO_HDR_SIZE +
3543                                     lnet_get_ni_bytes(),
3544                                     false);
3545         if (rc < 0) {
3546                 lnet_shutdown_lndnet(net);
3547                 return rc;
3548         }
3549
3550         lnet_net_lock(LNET_LOCK_EX);
3551         net = lnet_get_net_locked(net_id);
3552         LASSERT(net);
3553
3554         /* apply the UDSPs */
3555         rc = lnet_udsp_apply_policies_on_net(net);
3556         if (rc)
3557                 CERROR("Failed to apply UDSPs on local net %s\n",
3558                        libcfs_net2str(net->net_id));
3559
3560         /* At this point we lost track of which NI was just added, so we
3561          * just re-apply the policies on all of the NIs on this net
3562          */
3563         list_for_each_entry(ni, &net->net_ni_list, ni_netlist) {
3564                 rc = lnet_udsp_apply_policies_on_ni(ni);
3565                 if (rc)
3566                         CERROR("Failed to apply UDSPs on ni %s\n",
3567                                libcfs_nidstr(&ni->ni_nid));
3568         }
3569         lnet_net_unlock(LNET_LOCK_EX);
3570
3571         /*
3572          * Start the acceptor thread if this is the first network
3573          * being added that requires the thread.
3574          */
3575         if (net->net_lnd->lnd_accept) {
3576                 rc = lnet_acceptor_start();
3577                 if (rc < 0) {
3578                         /* shutdown the net that we just started */
3579                         CERROR("Failed to start up acceptor thread\n");
3580                         lnet_shutdown_lndnet(net);
3581                         goto failed;
3582                 }
3583         }
3584
3585         lnet_net_lock(LNET_LOCK_EX);
3586         lnet_peer_net_added(net);
3587         lnet_net_unlock(LNET_LOCK_EX);
3588
3589         lnet_ping_target_update(pbuf, ping_mdh);
3590
3591         return 0;
3592
3593 failed:
3594         lnet_ping_md_unlink(pbuf, &ping_mdh);
3595         lnet_ping_buffer_decref(pbuf);
3596         return rc;
3597 }
3598
3599 static void
3600 lnet_set_tune_defaults(struct lnet_ioctl_config_lnd_tunables *tun)
3601 {
3602         if (tun) {
3603                 if (tun->lt_cmn.lct_peer_timeout < 0)
3604                         tun->lt_cmn.lct_peer_timeout = DEFAULT_PEER_TIMEOUT;
3605                 if (!tun->lt_cmn.lct_peer_tx_credits)
3606                         tun->lt_cmn.lct_peer_tx_credits = DEFAULT_PEER_CREDITS;
3607                 if (!tun->lt_cmn.lct_max_tx_credits)
3608                         tun->lt_cmn.lct_max_tx_credits = DEFAULT_CREDITS;
3609         }
3610 }
3611
3612 static int lnet_handle_legacy_ip2nets(char *ip2nets,
3613                                       struct lnet_ioctl_config_lnd_tunables *tun)
3614 {
3615         struct lnet_net *net;
3616         const char *nets;
3617         int rc;
3618         LIST_HEAD(net_head);
3619
3620         rc = lnet_parse_ip2nets(&nets, ip2nets);
3621         if (rc < 0)
3622                 return rc;
3623
3624         rc = lnet_parse_networks(&net_head, nets);
3625         if (rc < 0)
3626                 return rc;
3627
3628         lnet_set_tune_defaults(tun);
3629
3630         mutex_lock(&the_lnet.ln_api_mutex);
3631         if (the_lnet.ln_state != LNET_STATE_RUNNING) {
3632                 rc = -ESHUTDOWN;
3633                 goto out;
3634         }
3635
3636         while ((net = list_first_entry_or_null(&net_head,
3637                                                struct lnet_net,
3638                                                net_list)) != NULL) {
3639                 list_del_init(&net->net_list);
3640                 rc = lnet_add_net_common(net, tun);
3641                 if (rc < 0)
3642                         goto out;
3643         }
3644
3645 out:
3646         mutex_unlock(&the_lnet.ln_api_mutex);
3647
3648         while ((net = list_first_entry_or_null(&net_head,
3649                                                struct lnet_net,
3650                                                net_list)) != NULL) {
3651                 list_del_init(&net->net_list);
3652                 lnet_net_free(net);
3653         }
3654         return rc;
3655 }
3656
3657 int lnet_dyn_add_ni(struct lnet_ioctl_config_ni *conf, u32 net_id,
3658                     struct lnet_ioctl_config_lnd_tunables *tun)
3659 {
3660         struct lnet_net *net;
3661         struct lnet_ni *ni;
3662         int rc, i;
3663         u32 lnd_type;
3664
3665         /* handle legacy ip2nets from DLC */
3666         if (conf->lic_legacy_ip2nets[0] != '\0')
3667                 return lnet_handle_legacy_ip2nets(conf->lic_legacy_ip2nets,
3668                                                   tun);
3669
3670         lnd_type = LNET_NETTYP(net_id);
3671
3672         if (!libcfs_isknown_lnd(lnd_type)) {
3673                 CERROR("No valid net and lnd information provided\n");
3674                 return -ENOENT;
3675         }
3676
3677         net = lnet_net_alloc(net_id, NULL);
3678         if (!net)
3679                 return -ENOMEM;
3680
3681         for (i = 0; i < conf->lic_ncpts; i++) {
3682                 if (conf->lic_cpts[i] >= LNET_CPT_NUMBER) {
3683                         lnet_net_free(net);
3684                         return -ERANGE;
3685                 }
3686         }
3687
3688         ni = lnet_ni_alloc_w_cpt_array(net, conf->lic_cpts, conf->lic_ncpts,
3689                                        conf->lic_ni_intf);
3690         if (!ni) {
3691                 lnet_net_free(net);
3692                 return -ENOMEM;
3693         }
3694
3695         lnet_set_tune_defaults(tun);
3696
3697         mutex_lock(&the_lnet.ln_api_mutex);
3698         if (the_lnet.ln_state != LNET_STATE_RUNNING) {
3699                 lnet_net_free(net);
3700                 rc = -ESHUTDOWN;
3701         } else {
3702                 rc = lnet_add_net_common(net, tun);
3703         }
3704
3705         mutex_unlock(&the_lnet.ln_api_mutex);
3706
3707         /* If NI already exist delete this new unused copy */
3708         if (rc == -EEXIST)
3709                 lnet_ni_free(ni);
3710
3711         return rc;
3712 }
3713
3714 int lnet_dyn_del_ni(struct lnet_nid *nid)
3715 {
3716         struct lnet_net *net;
3717         struct lnet_ni *ni;
3718         u32 net_id = LNET_NID_NET(nid);
3719         struct lnet_ping_buffer *pbuf;
3720         struct lnet_handle_md ping_mdh;
3721         int net_bytes, rc;
3722         bool net_empty;
3723
3724         /* don't allow userspace to shutdown the LOLND */
3725         if (LNET_NETTYP(net_id) == LOLND)
3726                 return -EINVAL;
3727
3728         mutex_lock(&the_lnet.ln_api_mutex);
3729         if (the_lnet.ln_state != LNET_STATE_RUNNING) {
3730                 rc = -ESHUTDOWN;
3731                 goto unlock_api_mutex;
3732         }
3733
3734         lnet_net_lock(0);
3735
3736         net = lnet_get_net_locked(net_id);
3737         if (!net) {
3738                 CERROR("net %s not found\n",
3739                        libcfs_net2str(net_id));
3740                 rc = -ENOENT;
3741                 goto unlock_net;
3742         }
3743
3744         if (!nid_addr_is_set(nid)) {
3745                 /* remove the entire net */
3746                 net_bytes = lnet_get_net_ni_bytes_locked(net);
3747
3748                 lnet_net_unlock(0);
3749
3750                 /* create and link a new ping info, before removing the old one */
3751                 rc = lnet_ping_target_setup(&pbuf, &ping_mdh,
3752                                             LNET_PING_INFO_HDR_SIZE +
3753                                             lnet_get_ni_bytes() - net_bytes,
3754                                             false);
3755                 if (rc != 0)
3756                         goto unlock_api_mutex;
3757
3758                 lnet_shutdown_lndnet(net);
3759
3760                 lnet_acceptor_stop();
3761
3762                 lnet_ping_target_update(pbuf, ping_mdh);
3763
3764                 goto unlock_api_mutex;
3765         }
3766
3767         ni = lnet_nid_to_ni_locked(nid, 0);
3768         if (!ni) {
3769                 CERROR("nid %s not found\n", libcfs_nidstr(nid));
3770                 rc = -ENOENT;
3771                 goto unlock_net;
3772         }
3773
3774         net_bytes = lnet_get_net_ni_bytes_locked(net);
3775         net_empty = list_is_singular(&net->net_ni_list);
3776
3777         lnet_net_unlock(0);
3778
3779         /* create and link a new ping info, before removing the old one */
3780         rc = lnet_ping_target_setup(&pbuf, &ping_mdh,
3781                                     (LNET_PING_INFO_HDR_SIZE +
3782                                      lnet_get_ni_bytes() -
3783                                      lnet_ping_sts_size(&ni->ni_nid)),
3784                                     false);
3785         if (rc != 0)
3786                 goto unlock_api_mutex;
3787
3788         lnet_shutdown_lndni(ni);
3789
3790         lnet_acceptor_stop();
3791
3792         lnet_ping_target_update(pbuf, ping_mdh);
3793
3794         /* check if the net is empty and remove it if it is */
3795         if (net_empty)
3796                 lnet_shutdown_lndnet(net);
3797
3798         goto unlock_api_mutex;
3799
3800 unlock_net:
3801         lnet_net_unlock(0);
3802 unlock_api_mutex:
3803         mutex_unlock(&the_lnet.ln_api_mutex);
3804
3805         return rc;
3806 }
3807
3808 /*
3809  * lnet_dyn_add_net and lnet_dyn_del_net are now deprecated.
3810  * They are only expected to be called for unique networks.
3811  * That can be as a result of older DLC library
3812  * calls. Multi-Rail DLC and beyond no longer uses these APIs.
3813  */
3814 int
3815 lnet_dyn_add_net(struct lnet_ioctl_config_data *conf)
3816 {
3817         struct lnet_net *net;
3818         LIST_HEAD(net_head);
3819         int rc;
3820         struct lnet_ioctl_config_lnd_tunables tun;
3821         const char *nets = conf->cfg_config_u.cfg_net.net_intf;
3822
3823         /* Create a net/ni structures for the network string */
3824         rc = lnet_parse_networks(&net_head, nets);
3825         if (rc <= 0)
3826                 return rc == 0 ? -EINVAL : rc;
3827
3828         mutex_lock(&the_lnet.ln_api_mutex);
3829         if (the_lnet.ln_state != LNET_STATE_RUNNING) {
3830                 rc = -ESHUTDOWN;
3831                 goto out_unlock_clean;
3832         }
3833
3834         if (rc > 1) {
3835                 rc = -EINVAL; /* only add one network per call */
3836                 goto out_unlock_clean;
3837         }
3838
3839         net = list_first_entry(&net_head, struct lnet_net, net_list);
3840         list_del_init(&net->net_list);
3841
3842         LASSERT(lnet_net_unique(net->net_id, &the_lnet.ln_nets, NULL));
3843
3844         memset(&tun, 0, sizeof(tun));
3845
3846         tun.lt_cmn.lct_peer_timeout =
3847           (!conf->cfg_config_u.cfg_net.net_peer_timeout) ? DEFAULT_PEER_TIMEOUT :
3848                 conf->cfg_config_u.cfg_net.net_peer_timeout;
3849         tun.lt_cmn.lct_peer_tx_credits =
3850           (!conf->cfg_config_u.cfg_net.net_peer_tx_credits) ? DEFAULT_PEER_CREDITS :
3851                 conf->cfg_config_u.cfg_net.net_peer_tx_credits;
3852         tun.lt_cmn.lct_peer_rtr_credits =
3853           conf->cfg_config_u.cfg_net.net_peer_rtr_credits;
3854         tun.lt_cmn.lct_max_tx_credits =
3855           (!conf->cfg_config_u.cfg_net.net_max_tx_credits) ? DEFAULT_CREDITS :
3856                 conf->cfg_config_u.cfg_net.net_max_tx_credits;
3857
3858         rc = lnet_add_net_common(net, &tun);
3859
3860 out_unlock_clean:
3861         mutex_unlock(&the_lnet.ln_api_mutex);
3862         /* net_head list is empty in success case */
3863         while ((net = list_first_entry_or_null(&net_head,
3864                                                struct lnet_net,
3865                                                net_list)) != NULL) {
3866                 list_del_init(&net->net_list);
3867                 lnet_net_free(net);
3868         }
3869         return rc;
3870 }
3871
3872 int
3873 lnet_dyn_del_net(u32 net_id)
3874 {
3875         struct lnet_net *net;
3876         struct lnet_ping_buffer *pbuf;
3877         struct lnet_handle_md ping_mdh;
3878         int net_ni_bytes, rc;
3879
3880         /* don't allow userspace to shutdown the LOLND */
3881         if (LNET_NETTYP(net_id) == LOLND)
3882                 return -EINVAL;
3883
3884         mutex_lock(&the_lnet.ln_api_mutex);
3885         if (the_lnet.ln_state != LNET_STATE_RUNNING) {
3886                 rc = -ESHUTDOWN;
3887                 goto out;
3888         }
3889
3890         lnet_net_lock(0);
3891
3892         net = lnet_get_net_locked(net_id);
3893         if (net == NULL) {
3894                 lnet_net_unlock(0);
3895                 rc = -EINVAL;
3896                 goto out;
3897         }
3898
3899         net_ni_bytes = lnet_get_net_ni_bytes_locked(net);
3900
3901         lnet_net_unlock(0);
3902
3903         /* create and link a new ping info, before removing the old one */
3904         rc = lnet_ping_target_setup(&pbuf, &ping_mdh,
3905                                     LNET_PING_INFO_HDR_SIZE +
3906                                     lnet_get_ni_bytes() - net_ni_bytes,
3907                                     false);
3908         if (rc != 0)
3909                 goto out;
3910
3911         lnet_shutdown_lndnet(net);
3912
3913         lnet_acceptor_stop();
3914
3915         lnet_ping_target_update(pbuf, ping_mdh);
3916
3917 out:
3918         mutex_unlock(&the_lnet.ln_api_mutex);
3919
3920         return rc;
3921 }
3922
3923 void lnet_update_ping_buffer(void)
3924 {
3925         struct lnet_ping_buffer *pbuf;
3926         struct lnet_handle_md ping_mdh;
3927
3928         if (the_lnet.ln_routing)
3929                 return;
3930
3931         mutex_lock(&the_lnet.ln_api_mutex);
3932
3933         if (!lnet_ping_target_setup(&pbuf, &ping_mdh,
3934                                     LNET_PING_INFO_HDR_SIZE +
3935                                     lnet_get_ni_bytes(),
3936                                     false))
3937                 lnet_ping_target_update(pbuf, ping_mdh);
3938
3939         mutex_unlock(&the_lnet.ln_api_mutex);
3940 }
3941 EXPORT_SYMBOL(lnet_update_ping_buffer);
3942
3943 void lnet_incr_dlc_seq(void)
3944 {
3945         atomic_inc(&lnet_dlc_seq_no);
3946 }
3947
3948 __u32 lnet_get_dlc_seq_locked(void)
3949 {
3950         return atomic_read(&lnet_dlc_seq_no);
3951 }
3952
3953 static void
3954 lnet_ni_set_healthv(lnet_nid_t nid, int value, bool all)
3955 {
3956         struct lnet_net *net;
3957         struct lnet_ni *ni;
3958
3959         lnet_net_lock(LNET_LOCK_EX);
3960         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
3961                 list_for_each_entry(ni, &net->net_ni_list, ni_netlist) {
3962                         if (all || (nid_is_nid4(&ni->ni_nid) &&
3963                                     lnet_nid_to_nid4(&ni->ni_nid) == nid)) {
3964                                 atomic_set(&ni->ni_healthv, value);
3965                                 if (list_empty(&ni->ni_recovery) &&
3966                                     value < LNET_MAX_HEALTH_VALUE) {
3967                                         CERROR("manually adding local NI %s to recovery\n",
3968                                                libcfs_nidstr(&ni->ni_nid));
3969                                         list_add_tail(&ni->ni_recovery,
3970                                                       &the_lnet.ln_mt_localNIRecovq);
3971                                         lnet_ni_addref_locked(ni, 0);
3972                                 }
3973                                 if (!all) {
3974                                         lnet_net_unlock(LNET_LOCK_EX);
3975                                         return;
3976                                 }
3977                         }
3978                 }
3979         }
3980         lnet_net_unlock(LNET_LOCK_EX);
3981 }
3982
3983 static void
3984 lnet_ni_set_conns_per_peer(lnet_nid_t nid, int value, bool all)
3985 {
3986         struct lnet_net *net;
3987         struct lnet_ni *ni;
3988
3989         lnet_net_lock(LNET_LOCK_EX);
3990         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
3991                 list_for_each_entry(ni, &net->net_ni_list, ni_netlist) {
3992                         if (lnet_nid_to_nid4(&ni->ni_nid) != nid && !all)
3993                                 continue;
3994                         if (LNET_NETTYP(net->net_id) == SOCKLND)
3995                                 ni->ni_lnd_tunables.lnd_tun_u.lnd_sock.lnd_conns_per_peer = value;
3996                         else if (LNET_NETTYP(net->net_id) == O2IBLND)
3997                                 ni->ni_lnd_tunables.lnd_tun_u.lnd_o2ib.lnd_conns_per_peer = value;
3998                         if (!all) {
3999                                 lnet_net_unlock(LNET_LOCK_EX);
4000                                 return;
4001                         }
4002                 }
4003         }
4004         lnet_net_unlock(LNET_LOCK_EX);
4005 }
4006
4007 static int
4008 lnet_get_local_ni_hstats(struct lnet_ioctl_local_ni_hstats *stats)
4009 {
4010         int cpt, rc = 0;
4011         struct lnet_ni *ni;
4012         struct lnet_nid nid;
4013
4014         lnet_nid4_to_nid(stats->hlni_nid, &nid);
4015         cpt = lnet_net_lock_current();
4016         ni = lnet_nid_to_ni_locked(&nid, cpt);
4017         if (!ni) {
4018                 rc = -ENOENT;
4019                 goto unlock;
4020         }
4021
4022         stats->hlni_local_interrupt = atomic_read(&ni->ni_hstats.hlt_local_interrupt);
4023         stats->hlni_local_dropped = atomic_read(&ni->ni_hstats.hlt_local_dropped);
4024         stats->hlni_local_aborted = atomic_read(&ni->ni_hstats.hlt_local_aborted);
4025         stats->hlni_local_no_route = atomic_read(&ni->ni_hstats.hlt_local_no_route);
4026         stats->hlni_local_timeout = atomic_read(&ni->ni_hstats.hlt_local_timeout);
4027         stats->hlni_local_error = atomic_read(&ni->ni_hstats.hlt_local_error);
4028         stats->hlni_fatal_error = atomic_read(&ni->ni_fatal_error_on);
4029         stats->hlni_health_value = atomic_read(&ni->ni_healthv);
4030         stats->hlni_ping_count = ni->ni_ping_count;
4031         stats->hlni_next_ping = ni->ni_next_ping;
4032
4033 unlock:
4034         lnet_net_unlock(cpt);
4035
4036         return rc;
4037 }
4038
4039 static int
4040 lnet_get_local_ni_recovery_list(struct lnet_ioctl_recovery_list *list)
4041 {
4042         struct lnet_ni *ni;
4043         int i = 0;
4044
4045         lnet_net_lock(LNET_LOCK_EX);
4046         list_for_each_entry(ni, &the_lnet.ln_mt_localNIRecovq, ni_recovery) {
4047                 if (!nid_is_nid4(&ni->ni_nid))
4048                         continue;
4049                 list->rlst_nid_array[i] = lnet_nid_to_nid4(&ni->ni_nid);
4050                 i++;
4051                 if (i >= LNET_MAX_SHOW_NUM_NID)
4052                         break;
4053         }
4054         lnet_net_unlock(LNET_LOCK_EX);
4055         list->rlst_num_nids = i;
4056
4057         return 0;
4058 }
4059
4060 static int
4061 lnet_get_peer_ni_recovery_list(struct lnet_ioctl_recovery_list *list)
4062 {
4063         struct lnet_peer_ni *lpni;
4064         int i = 0;
4065
4066         lnet_net_lock(LNET_LOCK_EX);
4067         list_for_each_entry(lpni, &the_lnet.ln_mt_peerNIRecovq, lpni_recovery) {
4068                 list->rlst_nid_array[i] = lnet_nid_to_nid4(&lpni->lpni_nid);
4069                 i++;
4070                 if (i >= LNET_MAX_SHOW_NUM_NID)
4071                         break;
4072         }
4073         lnet_net_unlock(LNET_LOCK_EX);
4074         list->rlst_num_nids = i;
4075
4076         return 0;
4077 }
4078
4079 /**
4080  * LNet ioctl handler.
4081  *
4082  */
4083 int
4084 LNetCtl(unsigned int cmd, void *arg)
4085 {
4086         struct libcfs_ioctl_data *data = arg;
4087         struct lnet_ioctl_config_data *config;
4088         struct lnet_ni           *ni;
4089         struct lnet_nid           nid;
4090         int                       rc;
4091
4092         BUILD_BUG_ON(sizeof(struct lnet_ioctl_net_config) +
4093                      sizeof(struct lnet_ioctl_config_data) > LIBCFS_IOC_DATA_MAX);
4094
4095         switch (cmd) {
4096         case IOC_LIBCFS_GET_NI: {
4097                 struct lnet_processid id = {};
4098
4099                 rc = LNetGetId(data->ioc_count, &id);
4100                 data->ioc_nid = lnet_nid_to_nid4(&id.nid);
4101                 return rc;
4102         }
4103         case IOC_LIBCFS_FAIL_NID:
4104                 return lnet_fail_nid(data->ioc_nid, data->ioc_count);
4105
4106         case IOC_LIBCFS_ADD_ROUTE: {
4107                 /* default router sensitivity to 1 */
4108                 unsigned int sensitivity = 1;
4109                 config = arg;
4110
4111                 if (config->cfg_hdr.ioc_len < sizeof(*config))
4112                         return -EINVAL;
4113
4114                 if (config->cfg_config_u.cfg_route.rtr_sensitivity) {
4115                         sensitivity =
4116                           config->cfg_config_u.cfg_route.rtr_sensitivity;
4117                 }
4118
4119                 lnet_nid4_to_nid(config->cfg_nid, &nid);
4120                 mutex_lock(&the_lnet.ln_api_mutex);
4121                 rc = lnet_add_route(config->cfg_net,
4122                                     config->cfg_config_u.cfg_route.rtr_hop,
4123                                     &nid,
4124                                     config->cfg_config_u.cfg_route.
4125                                         rtr_priority, sensitivity);
4126                 mutex_unlock(&the_lnet.ln_api_mutex);
4127                 return rc;
4128         }
4129
4130         case IOC_LIBCFS_DEL_ROUTE:
4131                 config = arg;
4132
4133                 if (config->cfg_hdr.ioc_len < sizeof(*config))
4134                         return -EINVAL;
4135
4136                 lnet_nid4_to_nid(config->cfg_nid, &nid);
4137                 mutex_lock(&the_lnet.ln_api_mutex);
4138                 rc = lnet_del_route(config->cfg_net, &nid);
4139                 mutex_unlock(&the_lnet.ln_api_mutex);
4140                 return rc;
4141
4142         case IOC_LIBCFS_GET_ROUTE:
4143                 config = arg;
4144
4145                 if (config->cfg_hdr.ioc_len < sizeof(*config))
4146                         return -EINVAL;
4147
4148                 mutex_lock(&the_lnet.ln_api_mutex);
4149                 rc = lnet_get_route(config->cfg_count,
4150                                     &config->cfg_net,
4151                                     &config->cfg_config_u.cfg_route.rtr_hop,
4152                                     &config->cfg_nid,
4153                                     &config->cfg_config_u.cfg_route.rtr_flags,
4154                                     &config->cfg_config_u.cfg_route.
4155                                         rtr_priority,
4156                                     &config->cfg_config_u.cfg_route.
4157                                         rtr_sensitivity);
4158                 mutex_unlock(&the_lnet.ln_api_mutex);
4159                 return rc;
4160
4161         case IOC_LIBCFS_GET_LOCAL_NI: {
4162                 struct lnet_ioctl_config_ni *cfg_ni;
4163                 struct lnet_ioctl_config_lnd_tunables *tun = NULL;
4164                 struct lnet_ioctl_element_stats *stats;
4165                 __u32 tun_size;
4166
4167                 cfg_ni = arg;
4168
4169                 /* get the tunables if they are available */
4170                 if (cfg_ni->lic_cfg_hdr.ioc_len <
4171                     sizeof(*cfg_ni) + sizeof(*stats) + sizeof(*tun))
4172                         return -EINVAL;
4173
4174                 stats = (struct lnet_ioctl_element_stats *)
4175                         cfg_ni->lic_bulk;
4176                 tun = (struct lnet_ioctl_config_lnd_tunables *)
4177                                 (cfg_ni->lic_bulk + sizeof(*stats));
4178
4179                 tun_size = cfg_ni->lic_cfg_hdr.ioc_len - sizeof(*cfg_ni) -
4180                         sizeof(*stats);
4181
4182                 mutex_lock(&the_lnet.ln_api_mutex);
4183                 rc = lnet_get_ni_config(cfg_ni, tun, stats, tun_size);
4184                 mutex_unlock(&the_lnet.ln_api_mutex);
4185                 return rc;
4186         }
4187
4188         case IOC_LIBCFS_GET_LOCAL_NI_MSG_STATS: {
4189                 struct lnet_ioctl_element_msg_stats *msg_stats = arg;
4190
4191                 if (msg_stats->im_hdr.ioc_len != sizeof(*msg_stats))
4192                         return -EINVAL;
4193
4194                 mutex_lock(&the_lnet.ln_api_mutex);
4195                 rc = lnet_get_ni_stats(msg_stats);
4196                 mutex_unlock(&the_lnet.ln_api_mutex);
4197
4198                 return rc;
4199         }
4200
4201         case IOC_LIBCFS_GET_NET: {
4202                 size_t total = sizeof(*config) +
4203                                sizeof(struct lnet_ioctl_net_config);
4204                 config = arg;
4205
4206                 if (config->cfg_hdr.ioc_len < total)
4207                         return -EINVAL;
4208
4209                 mutex_lock(&the_lnet.ln_api_mutex);
4210                 rc = lnet_get_net_config(config);
4211                 mutex_unlock(&the_lnet.ln_api_mutex);
4212                 return rc;
4213         }
4214
4215         case IOC_LIBCFS_GET_LNET_STATS:
4216         {
4217                 struct lnet_ioctl_lnet_stats *lnet_stats = arg;
4218
4219                 if (lnet_stats->st_hdr.ioc_len < sizeof(*lnet_stats))
4220                         return -EINVAL;
4221
4222                 mutex_lock(&the_lnet.ln_api_mutex);
4223                 rc = lnet_counters_get(&lnet_stats->st_cntrs);
4224                 mutex_unlock(&the_lnet.ln_api_mutex);
4225                 return rc;
4226         }
4227
4228         case IOC_LIBCFS_RESET_LNET_STATS:
4229         {
4230                 mutex_lock(&the_lnet.ln_api_mutex);
4231                 lnet_counters_reset();
4232                 mutex_unlock(&the_lnet.ln_api_mutex);
4233                 return 0;
4234         }
4235
4236         case IOC_LIBCFS_CONFIG_RTR:
4237                 config = arg;
4238
4239                 if (config->cfg_hdr.ioc_len < sizeof(*config))
4240                         return -EINVAL;
4241
4242                 mutex_lock(&the_lnet.ln_api_mutex);
4243                 if (config->cfg_config_u.cfg_buffers.buf_enable) {
4244                         rc = lnet_rtrpools_enable();
4245                         mutex_unlock(&the_lnet.ln_api_mutex);
4246                         return rc;
4247                 }
4248                 lnet_rtrpools_disable();
4249                 mutex_unlock(&the_lnet.ln_api_mutex);
4250                 return 0;
4251
4252         case IOC_LIBCFS_ADD_BUF:
4253                 config = arg;
4254
4255                 if (config->cfg_hdr.ioc_len < sizeof(*config))
4256                         return -EINVAL;
4257
4258                 mutex_lock(&the_lnet.ln_api_mutex);
4259                 rc = lnet_rtrpools_adjust(config->cfg_config_u.cfg_buffers.
4260                                                 buf_tiny,
4261                                           config->cfg_config_u.cfg_buffers.
4262                                                 buf_small,
4263                                           config->cfg_config_u.cfg_buffers.
4264                                                 buf_large);
4265                 mutex_unlock(&the_lnet.ln_api_mutex);
4266                 return rc;
4267
4268         case IOC_LIBCFS_SET_NUMA_RANGE: {
4269                 struct lnet_ioctl_set_value *numa;
4270                 numa = arg;
4271                 if (numa->sv_hdr.ioc_len != sizeof(*numa))
4272                         return -EINVAL;
4273                 lnet_net_lock(LNET_LOCK_EX);
4274                 lnet_numa_range = numa->sv_value;
4275                 lnet_net_unlock(LNET_LOCK_EX);
4276                 return 0;
4277         }
4278
4279         case IOC_LIBCFS_GET_NUMA_RANGE: {
4280                 struct lnet_ioctl_set_value *numa;
4281                 numa = arg;
4282                 if (numa->sv_hdr.ioc_len != sizeof(*numa))
4283                         return -EINVAL;
4284                 numa->sv_value = lnet_numa_range;
4285                 return 0;
4286         }
4287
4288         case IOC_LIBCFS_GET_BUF: {
4289                 struct lnet_ioctl_pool_cfg *pool_cfg;
4290                 size_t total = sizeof(*config) + sizeof(*pool_cfg);
4291
4292                 config = arg;
4293
4294                 if (config->cfg_hdr.ioc_len < total)
4295                         return -EINVAL;
4296
4297                 pool_cfg = (struct lnet_ioctl_pool_cfg *)config->cfg_bulk;
4298
4299                 mutex_lock(&the_lnet.ln_api_mutex);
4300                 rc = lnet_get_rtr_pool_cfg(config->cfg_count, pool_cfg);
4301                 mutex_unlock(&the_lnet.ln_api_mutex);
4302                 return rc;
4303         }
4304
4305         case IOC_LIBCFS_GET_LOCAL_HSTATS: {
4306                 struct lnet_ioctl_local_ni_hstats *stats = arg;
4307
4308                 if (stats->hlni_hdr.ioc_len < sizeof(*stats))
4309                         return -EINVAL;
4310
4311                 mutex_lock(&the_lnet.ln_api_mutex);
4312                 rc = lnet_get_local_ni_hstats(stats);
4313                 mutex_unlock(&the_lnet.ln_api_mutex);
4314
4315                 return rc;
4316         }
4317
4318         case IOC_LIBCFS_GET_RECOVERY_QUEUE: {
4319                 struct lnet_ioctl_recovery_list *list = arg;
4320                 if (list->rlst_hdr.ioc_len < sizeof(*list))
4321                         return -EINVAL;
4322
4323                 mutex_lock(&the_lnet.ln_api_mutex);
4324                 if (list->rlst_type == LNET_HEALTH_TYPE_LOCAL_NI)
4325                         rc = lnet_get_local_ni_recovery_list(list);
4326                 else
4327                         rc = lnet_get_peer_ni_recovery_list(list);
4328                 mutex_unlock(&the_lnet.ln_api_mutex);
4329                 return rc;
4330         }
4331
4332         case IOC_LIBCFS_ADD_PEER_NI: {
4333                 struct lnet_ioctl_peer_cfg *cfg = arg;
4334                 struct lnet_nid prim_nid;
4335
4336                 if (cfg->prcfg_hdr.ioc_len < sizeof(*cfg))
4337                         return -EINVAL;
4338
4339                 mutex_lock(&the_lnet.ln_api_mutex);
4340                 lnet_nid4_to_nid(cfg->prcfg_prim_nid, &prim_nid);
4341                 lnet_nid4_to_nid(cfg->prcfg_cfg_nid, &nid);
4342                 rc = lnet_user_add_peer_ni(&prim_nid, &nid, cfg->prcfg_mr,
4343                                            cfg->prcfg_count == 1);
4344                 mutex_unlock(&the_lnet.ln_api_mutex);
4345                 return rc;
4346         }
4347
4348         case IOC_LIBCFS_DEL_PEER_NI: {
4349                 struct lnet_ioctl_peer_cfg *cfg = arg;
4350                 struct lnet_nid prim_nid;
4351
4352                 if (cfg->prcfg_hdr.ioc_len < sizeof(*cfg))
4353                         return -EINVAL;
4354
4355                 mutex_lock(&the_lnet.ln_api_mutex);
4356                 lnet_nid4_to_nid(cfg->prcfg_prim_nid, &prim_nid);
4357                 lnet_nid4_to_nid(cfg->prcfg_cfg_nid, &nid);
4358                 rc = lnet_del_peer_ni(&prim_nid,
4359                                       &nid,
4360                                       cfg->prcfg_count);
4361                 mutex_unlock(&the_lnet.ln_api_mutex);
4362                 return rc;
4363         }
4364
4365         case IOC_LIBCFS_GET_PEER_INFO: {
4366                 struct lnet_ioctl_peer *peer_info = arg;
4367
4368                 if (peer_info->pr_hdr.ioc_len < sizeof(*peer_info))
4369                         return -EINVAL;
4370
4371                 mutex_lock(&the_lnet.ln_api_mutex);
4372                 rc = lnet_get_peer_ni_info(
4373                    peer_info->pr_count,
4374                    &peer_info->pr_nid,
4375                    peer_info->pr_lnd_u.pr_peer_credits.cr_aliveness,
4376                    &peer_info->pr_lnd_u.pr_peer_credits.cr_ncpt,
4377                    &peer_info->pr_lnd_u.pr_peer_credits.cr_refcount,
4378                    &peer_info->pr_lnd_u.pr_peer_credits.cr_ni_peer_tx_credits,
4379                    &peer_info->pr_lnd_u.pr_peer_credits.cr_peer_tx_credits,
4380                    &peer_info->pr_lnd_u.pr_peer_credits.cr_peer_rtr_credits,
4381                    &peer_info->pr_lnd_u.pr_peer_credits.cr_peer_min_tx_credits,
4382                    &peer_info->pr_lnd_u.pr_peer_credits.cr_peer_tx_qnob);
4383                 mutex_unlock(&the_lnet.ln_api_mutex);
4384                 return rc;
4385         }
4386
4387         case IOC_LIBCFS_GET_PEER_NI: {
4388                 struct lnet_ioctl_peer_cfg *cfg = arg;
4389
4390                 if (cfg->prcfg_hdr.ioc_len < sizeof(*cfg))
4391                         return -EINVAL;
4392
4393                 mutex_lock(&the_lnet.ln_api_mutex);
4394                 rc = lnet_get_peer_info(cfg,
4395                                         (void __user *)cfg->prcfg_bulk);
4396                 mutex_unlock(&the_lnet.ln_api_mutex);
4397                 return rc;
4398         }
4399
4400         case IOC_LIBCFS_GET_PEER_LIST: {
4401                 struct lnet_ioctl_peer_cfg *cfg = arg;
4402
4403                 if (cfg->prcfg_hdr.ioc_len < sizeof(*cfg))
4404                         return -EINVAL;
4405
4406                 mutex_lock(&the_lnet.ln_api_mutex);
4407                 rc = lnet_get_peer_list(&cfg->prcfg_count, &cfg->prcfg_size,
4408                                 (struct lnet_process_id __user *)cfg->prcfg_bulk);
4409                 mutex_unlock(&the_lnet.ln_api_mutex);
4410                 return rc;
4411         }
4412
4413         case IOC_LIBCFS_SET_HEALHV: {
4414                 struct lnet_ioctl_reset_health_cfg *cfg = arg;
4415                 int value;
4416                 if (cfg->rh_hdr.ioc_len < sizeof(*cfg))
4417                         return -EINVAL;
4418                 if (cfg->rh_value < 0 ||
4419                     cfg->rh_value > LNET_MAX_HEALTH_VALUE)
4420                         value = LNET_MAX_HEALTH_VALUE;
4421                 else
4422                         value = cfg->rh_value;
4423                 CDEBUG(D_NET, "Manually setting healthv to %d for %s:%s. all = %d\n",
4424                        value, (cfg->rh_type == LNET_HEALTH_TYPE_LOCAL_NI) ?
4425                        "local" : "peer", libcfs_nid2str(cfg->rh_nid), cfg->rh_all);
4426                 mutex_lock(&the_lnet.ln_api_mutex);
4427                 if (cfg->rh_type == LNET_HEALTH_TYPE_LOCAL_NI)
4428                         lnet_ni_set_healthv(cfg->rh_nid, value,
4429                                              cfg->rh_all);
4430                 else
4431                         lnet_peer_ni_set_healthv(cfg->rh_nid, value,
4432                                                   cfg->rh_all);
4433                 mutex_unlock(&the_lnet.ln_api_mutex);
4434                 return 0;
4435         }
4436
4437         case IOC_LIBCFS_SET_PEER: {
4438                 struct lnet_ioctl_peer_cfg *cfg = arg;
4439                 struct lnet_peer *lp;
4440
4441                 if (cfg->prcfg_hdr.ioc_len < sizeof(*cfg))
4442                         return -EINVAL;
4443
4444                 mutex_lock(&the_lnet.ln_api_mutex);
4445                 lnet_nid4_to_nid(cfg->prcfg_prim_nid, &nid);
4446                 lp = lnet_find_peer(&nid);
4447                 if (!lp) {
4448                         mutex_unlock(&the_lnet.ln_api_mutex);
4449                         return -ENOENT;
4450                 }
4451                 spin_lock(&lp->lp_lock);
4452                 lp->lp_state = cfg->prcfg_state;
4453                 spin_unlock(&lp->lp_lock);
4454                 lnet_peer_decref_locked(lp);
4455                 mutex_unlock(&the_lnet.ln_api_mutex);
4456                 CDEBUG(D_NET, "Set peer %s state to %u\n",
4457                        libcfs_nid2str(cfg->prcfg_prim_nid), cfg->prcfg_state);
4458                 return 0;
4459         }
4460
4461         case IOC_LIBCFS_SET_CONNS_PER_PEER: {
4462                 struct lnet_ioctl_reset_conns_per_peer_cfg *cfg = arg;
4463                 int value;
4464
4465                 if (cfg->rcpp_hdr.ioc_len < sizeof(*cfg))
4466                         return -EINVAL;
4467                 if (cfg->rcpp_value < 0)
4468                         value = 1;
4469                 else
4470                         value = cfg->rcpp_value;
4471                 CDEBUG(D_NET,
4472                        "Setting conns_per_peer to %d for %s. all = %d\n",
4473                        value, libcfs_nid2str(cfg->rcpp_nid), cfg->rcpp_all);
4474                 mutex_lock(&the_lnet.ln_api_mutex);
4475                 lnet_ni_set_conns_per_peer(cfg->rcpp_nid, value, cfg->rcpp_all);
4476                 mutex_unlock(&the_lnet.ln_api_mutex);
4477                 return 0;
4478         }
4479
4480         case IOC_LIBCFS_NOTIFY_ROUTER: {
4481                 time64_t deadline = ktime_get_real_seconds() - data->ioc_u64[0];
4482
4483                 /* The deadline passed in by the user should be some time in
4484                  * seconds in the future since the UNIX epoch. We have to map
4485                  * that deadline to the wall clock.
4486                  */
4487                 deadline += ktime_get_seconds();
4488                 lnet_nid4_to_nid(data->ioc_nid, &nid);
4489                 return lnet_notify(NULL, &nid, data->ioc_flags, false,
4490                                    deadline);
4491         }
4492
4493         case IOC_LIBCFS_LNET_DIST:
4494                 lnet_nid4_to_nid(data->ioc_nid, &nid);
4495                 rc = LNetDist(&nid, &nid, &data->ioc_u32[1]);
4496                 if (rc < 0 && rc != -EHOSTUNREACH)
4497                         return rc;
4498
4499                 data->ioc_nid = lnet_nid_to_nid4(&nid);
4500                 data->ioc_u32[0] = rc;
4501                 return 0;
4502
4503         case IOC_LIBCFS_TESTPROTOCOMPAT:
4504                 the_lnet.ln_testprotocompat = data->ioc_flags;
4505                 return 0;
4506
4507         case IOC_LIBCFS_LNET_FAULT:
4508                 return lnet_fault_ctl(data->ioc_flags, data);
4509
4510         case IOC_LIBCFS_PING_PEER: {
4511                 struct lnet_ioctl_ping_data *ping = arg;
4512                 struct lnet_process_id __user *ids = ping->ping_buf;
4513                 struct lnet_nid src_nid = LNET_ANY_NID;
4514                 struct lnet_genl_ping_list plist;
4515                 struct lnet_processid id;
4516                 struct lnet_peer *lp;
4517                 signed long timeout;
4518                 int count, i;
4519
4520                 /* Check if the supplied ping data supports source nid
4521                  * NB: This check is sufficient if lnet_ioctl_ping_data has
4522                  * additional fields added, but if they are re-ordered or
4523                  * fields removed then this will break. It is expected that
4524                  * these ioctls will be replaced with netlink implementation, so
4525                  * it is probably not worth coming up with a more robust version
4526                  * compatibility scheme.
4527                  */
4528                 if (ping->ping_hdr.ioc_len >= sizeof(struct lnet_ioctl_ping_data))
4529                         lnet_nid4_to_nid(ping->ping_src, &src_nid);
4530
4531                 /* If timeout is negative then set default of 3 minutes */
4532                 if (((s32)ping->op_param) <= 0 ||
4533                     ping->op_param > (DEFAULT_PEER_TIMEOUT * MSEC_PER_SEC))
4534                         timeout = cfs_time_seconds(DEFAULT_PEER_TIMEOUT);
4535                 else
4536                         timeout = nsecs_to_jiffies(ping->op_param * NSEC_PER_MSEC);
4537
4538                 id.pid = ping->ping_id.pid;
4539                 lnet_nid4_to_nid(ping->ping_id.nid, &id.nid);
4540                 rc = lnet_ping(&id, &src_nid, timeout, &plist,
4541                                ping->ping_count);
4542                 if (rc < 0)
4543                         goto report_ping_err;
4544                 count = rc;
4545                 rc = 0;
4546
4547                 for (i = 0; i < count; i++) {
4548                         struct lnet_processid *result;
4549                         struct lnet_process_id tmpid;
4550
4551                         result = genradix_ptr(&plist.lgpl_list, i);
4552                         memset(&tmpid, 0, sizeof(tmpid));
4553                         tmpid.pid = result->pid;
4554                         tmpid.nid = lnet_nid_to_nid4(&result->nid);
4555                         if (copy_to_user(&ids[i], &tmpid, sizeof(tmpid))) {
4556                                 rc = -EFAULT;
4557                                 goto report_ping_err;
4558                         }
4559                 }
4560
4561                 mutex_lock(&the_lnet.ln_api_mutex);
4562                 lp = lnet_find_peer(&id.nid);
4563                 if (lp) {
4564                         ping->ping_id.nid =
4565                                 lnet_nid_to_nid4(&lp->lp_primary_nid);
4566                         ping->mr_info = lnet_peer_is_multi_rail(lp);
4567                         lnet_peer_decref_locked(lp);
4568                 }
4569                 mutex_unlock(&the_lnet.ln_api_mutex);
4570
4571                 ping->ping_count = count;
4572 report_ping_err:
4573                 genradix_free(&plist.lgpl_list);
4574                 return rc;
4575         }
4576
4577         case IOC_LIBCFS_DISCOVER: {
4578                 struct lnet_ioctl_ping_data *discover = arg;
4579                 struct lnet_peer *lp;
4580
4581                 rc = lnet_discover(discover->ping_id, discover->op_param,
4582                                    discover->ping_buf,
4583                                    discover->ping_count);
4584                 if (rc < 0)
4585                         return rc;
4586
4587                 mutex_lock(&the_lnet.ln_api_mutex);
4588                 lnet_nid4_to_nid(discover->ping_id.nid, &nid);
4589                 lp = lnet_find_peer(&nid);
4590                 if (lp) {
4591                         discover->ping_id.nid =
4592                                 lnet_nid_to_nid4(&lp->lp_primary_nid);
4593                         discover->mr_info = lnet_peer_is_multi_rail(lp);
4594                         lnet_peer_decref_locked(lp);
4595                 }
4596                 mutex_unlock(&the_lnet.ln_api_mutex);
4597
4598                 discover->ping_count = rc;
4599                 return 0;
4600         }
4601
4602         case IOC_LIBCFS_ADD_UDSP: {
4603                 struct lnet_ioctl_udsp *ioc_udsp = arg;
4604                 __u32 bulk_size = ioc_udsp->iou_hdr.ioc_len;
4605
4606                 mutex_lock(&the_lnet.ln_api_mutex);
4607                 rc = lnet_udsp_demarshal_add(arg, bulk_size);
4608                 if (!rc) {
4609                         rc = lnet_udsp_apply_policies(NULL, false);
4610                         CDEBUG(D_NET, "policy application returned %d\n", rc);
4611                         rc = 0;
4612                 }
4613                 mutex_unlock(&the_lnet.ln_api_mutex);
4614
4615                 return rc;
4616         }
4617
4618         case IOC_LIBCFS_DEL_UDSP: {
4619                 struct lnet_ioctl_udsp *ioc_udsp = arg;
4620                 int idx = ioc_udsp->iou_idx;
4621
4622                 if (ioc_udsp->iou_hdr.ioc_len < sizeof(*ioc_udsp))
4623                         return -EINVAL;
4624
4625                 mutex_lock(&the_lnet.ln_api_mutex);
4626                 rc = lnet_udsp_del_policy(idx);
4627                 mutex_unlock(&the_lnet.ln_api_mutex);
4628
4629                 return rc;
4630         }
4631
4632         case IOC_LIBCFS_GET_UDSP_SIZE: {
4633                 struct lnet_ioctl_udsp *ioc_udsp = arg;
4634                 struct lnet_udsp *udsp;
4635
4636                 if (ioc_udsp->iou_hdr.ioc_len < sizeof(*ioc_udsp))
4637                         return -EINVAL;
4638
4639                 rc = 0;
4640
4641                 mutex_lock(&the_lnet.ln_api_mutex);
4642                 udsp = lnet_udsp_get_policy(ioc_udsp->iou_idx);
4643                 if (!udsp) {
4644                         rc = -ENOENT;
4645                 } else {
4646                         /* coming in iou_idx will hold the idx of the udsp
4647                          * to get the size of. going out the iou_idx will
4648                          * hold the size of the UDSP found at the passed
4649                          * in index.
4650                          */
4651                         ioc_udsp->iou_idx = lnet_get_udsp_size(udsp);
4652                         if (ioc_udsp->iou_idx < 0)
4653                                 rc = -EINVAL;
4654                 }
4655                 mutex_unlock(&the_lnet.ln_api_mutex);
4656
4657                 return rc;
4658         }
4659
4660         case IOC_LIBCFS_GET_UDSP: {
4661                 struct lnet_ioctl_udsp *ioc_udsp = arg;
4662                 struct lnet_udsp *udsp;
4663
4664                 if (ioc_udsp->iou_hdr.ioc_len < sizeof(*ioc_udsp))
4665                         return -EINVAL;
4666
4667                 rc = 0;
4668
4669                 mutex_lock(&the_lnet.ln_api_mutex);
4670                 udsp = lnet_udsp_get_policy(ioc_udsp->iou_idx);
4671                 if (!udsp)
4672                         rc = -ENOENT;
4673                 else
4674                         rc = lnet_udsp_marshal(udsp, ioc_udsp);
4675                 mutex_unlock(&the_lnet.ln_api_mutex);
4676
4677                 return rc;
4678         }
4679
4680         case IOC_LIBCFS_GET_CONST_UDSP_INFO: {
4681                 struct lnet_ioctl_construct_udsp_info *info = arg;
4682
4683                 if (info->cud_hdr.ioc_len < sizeof(*info))
4684                         return -EINVAL;
4685
4686                 CDEBUG(D_NET, "GET_UDSP_INFO for %s\n",
4687                        libcfs_nid2str(info->cud_nid));
4688
4689                 mutex_lock(&the_lnet.ln_api_mutex);
4690                 lnet_udsp_get_construct_info(info);
4691                 mutex_unlock(&the_lnet.ln_api_mutex);
4692
4693                 return 0;
4694         }
4695
4696         default:
4697                 ni = lnet_net2ni_addref(data->ioc_net);
4698                 if (ni == NULL)
4699                         return -EINVAL;
4700
4701                 if (ni->ni_net->net_lnd->lnd_ctl == NULL)
4702                         rc = -EINVAL;
4703                 else
4704                         rc = ni->ni_net->net_lnd->lnd_ctl(ni, cmd, arg);
4705
4706                 lnet_ni_decref(ni);
4707                 return rc <= 0 ? rc : 0;
4708         }
4709         /* not reached */
4710 }
4711 EXPORT_SYMBOL(LNetCtl);
4712
4713 static const struct ln_key_list net_props_list = {
4714         .lkl_maxattr                    = LNET_NET_ATTR_MAX,
4715         .lkl_list                       = {
4716                 [LNET_NET_ATTR_HDR]             = {
4717                         .lkp_value              = "net",
4718                         .lkp_key_format         = LNKF_SEQUENCE | LNKF_MAPPING,
4719                         .lkp_data_type          = NLA_NUL_STRING,
4720                 },
4721                 [LNET_NET_ATTR_TYPE]            = {
4722                         .lkp_value              = "net type",
4723                         .lkp_data_type          = NLA_STRING
4724                 },
4725                 [LNET_NET_ATTR_LOCAL]           = {
4726                         .lkp_value              = "local NI(s)",
4727                         .lkp_key_format         = LNKF_SEQUENCE | LNKF_MAPPING,
4728                         .lkp_data_type          = NLA_NESTED
4729                 },
4730         },
4731 };
4732
4733 static struct ln_key_list local_ni_list = {
4734         .lkl_maxattr                    = LNET_NET_LOCAL_NI_ATTR_MAX,
4735         .lkl_list                       = {
4736                 [LNET_NET_LOCAL_NI_ATTR_NID]    = {
4737                         .lkp_value              = "nid",
4738                         .lkp_data_type          = NLA_STRING
4739                 },
4740                 [LNET_NET_LOCAL_NI_ATTR_STATUS] = {
4741                         .lkp_value              = "status",
4742                         .lkp_data_type          = NLA_STRING
4743                 },
4744                 [LNET_NET_LOCAL_NI_ATTR_INTERFACE] = {
4745                         .lkp_value              = "interfaces",
4746                         .lkp_key_format         = LNKF_MAPPING,
4747                         .lkp_data_type          = NLA_NESTED
4748                 },
4749         },
4750 };
4751
4752 static const struct ln_key_list local_ni_interfaces_list = {
4753         .lkl_maxattr                    = LNET_NET_LOCAL_NI_INTF_ATTR_MAX,
4754         .lkl_list                       = {
4755                 [LNET_NET_LOCAL_NI_INTF_ATTR_TYPE] = {
4756                         .lkp_value      = "0",
4757                         .lkp_data_type  = NLA_STRING
4758                 },
4759         },
4760 };
4761
4762 /* Use an index since the traversal is across LNet nets and ni collections */
4763 struct lnet_genl_net_list {
4764         unsigned int    lngl_net_id;
4765         unsigned int    lngl_idx;
4766 };
4767
4768 static inline struct lnet_genl_net_list *
4769 lnet_net_dump_ctx(struct netlink_callback *cb)
4770 {
4771         return (struct lnet_genl_net_list *)cb->args[0];
4772 }
4773
4774 static int lnet_net_show_done(struct netlink_callback *cb)
4775 {
4776         struct lnet_genl_net_list *nlist = lnet_net_dump_ctx(cb);
4777
4778         if (nlist) {
4779                 LIBCFS_FREE(nlist, sizeof(*nlist));
4780                 cb->args[0] = 0;
4781         }
4782
4783         return 0;
4784 }
4785
4786 /* LNet net ->start() handler for GET requests */
4787 static int lnet_net_show_start(struct netlink_callback *cb)
4788 {
4789         struct genlmsghdr *gnlh = nlmsg_data(cb->nlh);
4790 #ifdef HAVE_NL_PARSE_WITH_EXT_ACK
4791         struct netlink_ext_ack *extack = NULL;
4792 #endif
4793         struct lnet_genl_net_list *nlist;
4794         int msg_len = genlmsg_len(gnlh);
4795         struct nlattr *params, *top;
4796         int rem, rc = 0;
4797
4798 #ifdef HAVE_NL_DUMP_WITH_EXT_ACK
4799         extack = cb->extack;
4800 #endif
4801         if (the_lnet.ln_refcount == 0) {
4802                 NL_SET_ERR_MSG(extack, "LNet stack down");
4803                 return -ENETDOWN;
4804         }
4805
4806         LIBCFS_ALLOC(nlist, sizeof(*nlist));
4807         if (!nlist)
4808                 return -ENOMEM;
4809
4810         nlist->lngl_net_id = LNET_NET_ANY;
4811         nlist->lngl_idx = 0;
4812         cb->args[0] = (long)nlist;
4813
4814         if (!msg_len)
4815                 return 0;
4816
4817         params = genlmsg_data(gnlh);
4818         if (!(nla_type(params) & LN_SCALAR_ATTR_LIST)) {
4819                 NL_SET_ERR_MSG(extack, "invalid configuration");
4820                 return -EINVAL;
4821         }
4822
4823         nla_for_each_nested(top, params, rem) {
4824                 struct nlattr *net;
4825                 int rem2;
4826
4827                 nla_for_each_nested(net, top, rem2) {
4828                         char filter[LNET_NIDSTR_SIZE];
4829
4830                         if (nla_type(net) != LN_SCALAR_ATTR_VALUE ||
4831                             nla_strcmp(net, "net type") != 0)
4832                                 continue;
4833
4834                         net = nla_next(net, &rem2);
4835                         if (nla_type(net) != LN_SCALAR_ATTR_VALUE) {
4836                                 NL_SET_ERR_MSG(extack, "invalid config param");
4837                                 GOTO(report_err, rc = -EINVAL);
4838                         }
4839
4840                         rc = nla_strscpy(filter, net, sizeof(filter));
4841                         if (rc < 0) {
4842                                 NL_SET_ERR_MSG(extack, "failed to get param");
4843                                 GOTO(report_err, rc);
4844                         }
4845                         rc = 0;
4846
4847                         nlist->lngl_net_id = libcfs_str2net(filter);
4848                         if (nlist->lngl_net_id == LNET_NET_ANY) {
4849                                 NL_SET_ERR_MSG(extack, "cannot parse net");
4850                                 GOTO(report_err, rc = -ENOENT);
4851                         }
4852                 }
4853         }
4854 report_err:
4855         if (rc < 0)
4856                 lnet_net_show_done(cb);
4857
4858         return rc;
4859 }
4860
4861 static int lnet_net_show_dump(struct sk_buff *msg,
4862                               struct netlink_callback *cb)
4863 {
4864         struct lnet_genl_net_list *nlist = lnet_net_dump_ctx(cb);
4865 #ifdef HAVE_NL_PARSE_WITH_EXT_ACK
4866         struct netlink_ext_ack *extack = NULL;
4867 #endif
4868         int portid = NETLINK_CB(cb->skb).portid;
4869         int seq = cb->nlh->nlmsg_seq;
4870         struct lnet_net *net;
4871         int idx = 0, rc = 0;
4872         bool found = false;
4873         void *hdr = NULL;
4874
4875 #ifdef HAVE_NL_DUMP_WITH_EXT_ACK
4876         extack = cb->extack;
4877 #endif
4878         if (!nlist->lngl_idx) {
4879                 const struct ln_key_list *all[] = {
4880                         &net_props_list, &local_ni_list,
4881                         &local_ni_interfaces_list,
4882                         NULL
4883                 };
4884
4885                 rc = lnet_genl_send_scalar_list(msg, portid, seq,
4886                                                 &lnet_family,
4887                                                 NLM_F_CREATE | NLM_F_MULTI,
4888                                                 LNET_CMD_NETS, all);
4889                 if (rc < 0) {
4890                         NL_SET_ERR_MSG(extack, "failed to send key table");
4891                         GOTO(send_error, rc);
4892                 }
4893         }
4894
4895         lnet_net_lock(LNET_LOCK_EX);
4896
4897         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
4898                 struct lnet_ni *ni;
4899
4900                 if (nlist->lngl_net_id != LNET_NET_ANY &&
4901                     nlist->lngl_net_id != net->net_id)
4902                         continue;
4903
4904                 list_for_each_entry(ni, &net->net_ni_list, ni_netlist) {
4905                         struct nlattr *local_ni, *ni_attr;
4906                         char *status = "up";
4907
4908                         if (idx++ < nlist->lngl_idx)
4909                                 continue;
4910
4911                         hdr = genlmsg_put(msg, portid, seq, &lnet_family,
4912                                           NLM_F_MULTI, LNET_CMD_NETS);
4913                         if (!hdr) {
4914                                 NL_SET_ERR_MSG(extack, "failed to send values");
4915                                 GOTO(net_unlock, rc = -EMSGSIZE);
4916                         }
4917
4918                         if (idx == 1)
4919                                 nla_put_string(msg, LNET_NET_ATTR_HDR, "");
4920
4921                         nla_put_string(msg, LNET_NET_ATTR_TYPE,
4922                                        libcfs_net2str(net->net_id));
4923                         found = true;
4924
4925                         local_ni = nla_nest_start(msg, LNET_NET_ATTR_LOCAL);
4926                         ni_attr = nla_nest_start(msg, idx - 1);
4927
4928                         lnet_ni_lock(ni);
4929                         nla_put_string(msg, LNET_NET_LOCAL_NI_ATTR_NID,
4930                                        libcfs_nidstr(&ni->ni_nid));
4931                         if (nid_is_lo0(&ni->ni_nid) &&
4932                             *ni->ni_status != LNET_NI_STATUS_UP)
4933                                 status = "down";
4934                         nla_put_string(msg, LNET_NET_LOCAL_NI_ATTR_STATUS, "up");
4935
4936                         if (!nid_is_lo0(&ni->ni_nid) && ni->ni_interface) {
4937                                 struct nlattr *intf_nest, *intf_attr;
4938
4939                                 intf_nest = nla_nest_start(msg,
4940                                                            LNET_NET_LOCAL_NI_ATTR_INTERFACE);
4941                                 intf_attr = nla_nest_start(msg, 0);
4942                                 nla_put_string(msg,
4943                                                LNET_NET_LOCAL_NI_INTF_ATTR_TYPE,
4944                                                ni->ni_interface);
4945                                 nla_nest_end(msg, intf_attr);
4946                                 nla_nest_end(msg, intf_nest);
4947                         }
4948
4949                         lnet_ni_unlock(ni);
4950                         nla_nest_end(msg, ni_attr);
4951                         nla_nest_end(msg, local_ni);
4952
4953                         genlmsg_end(msg, hdr);
4954                 }
4955         }
4956
4957         if (!found) {
4958                 struct nlmsghdr *nlh = nlmsg_hdr(msg);
4959
4960                 nlmsg_cancel(msg, nlh);
4961                 NL_SET_ERR_MSG(extack, "Network is down");
4962                 rc = -ESRCH;
4963         }
4964 net_unlock:
4965         lnet_net_unlock(LNET_LOCK_EX);
4966 send_error:
4967         nlist->lngl_idx = idx;
4968
4969         return lnet_nl_send_error(cb->skb, portid, seq, rc);
4970 }
4971
4972 #ifndef HAVE_NETLINK_CALLBACK_START
4973 static int lnet_old_net_show_dump(struct sk_buff *msg,
4974                                    struct netlink_callback *cb)
4975 {
4976         if (!cb->args[0]) {
4977                 int rc = lnet_net_show_start(cb);
4978
4979                 if (rc < 0)
4980                         return rc;
4981         }
4982
4983         return lnet_net_show_dump(msg, cb);
4984 }
4985 #endif
4986
4987 static int lnet_genl_parse_tunables(struct nlattr *settings,
4988                                     struct lnet_ioctl_config_lnd_tunables *tun)
4989 {
4990         struct nlattr *param;
4991         int rem, rc = 0;
4992
4993         nla_for_each_nested(param, settings, rem) {
4994                 int type = LNET_NET_LOCAL_NI_TUNABLES_ATTR_UNSPEC;
4995                 s64 num;
4996
4997                 if (nla_type(param) != LN_SCALAR_ATTR_VALUE)
4998                         continue;
4999
5000                 if (nla_strcmp(param, "peer_timeout") == 0)
5001                         type = LNET_NET_LOCAL_NI_TUNABLES_ATTR_PEER_TIMEOUT;
5002                 else if (nla_strcmp(param, "peer_credits") == 0)
5003                         type = LNET_NET_LOCAL_NI_TUNABLES_ATTR_PEER_CREDITS;
5004                 else if (nla_strcmp(param, "peer_buffer_credits") == 0)
5005                         type = LNET_NET_LOCAL_NI_TUNABLES_ATTR_PEER_BUFFER_CREDITS;
5006                 else if (nla_strcmp(param, "credits") == 0)
5007                         type = LNET_NET_LOCAL_NI_TUNABLES_ATTR_CREDITS;
5008
5009                 param = nla_next(param, &rem);
5010                 if (nla_type(param) != LN_SCALAR_ATTR_INT_VALUE)
5011                         return -EINVAL;
5012
5013                 num = nla_get_s64(param);
5014                 switch (type) {
5015                 case LNET_NET_LOCAL_NI_TUNABLES_ATTR_PEER_TIMEOUT:
5016                         if (num >= 0)
5017                                 tun->lt_cmn.lct_peer_timeout = num;
5018                         break;
5019                 case LNET_NET_LOCAL_NI_TUNABLES_ATTR_PEER_CREDITS:
5020                         if (num > 0)
5021                                 tun->lt_cmn.lct_peer_tx_credits = num;
5022                         break;
5023                 case LNET_NET_LOCAL_NI_TUNABLES_ATTR_PEER_BUFFER_CREDITS:
5024                         if (num > 0)
5025                                 tun->lt_cmn.lct_peer_rtr_credits = num;
5026                         break;
5027                 case LNET_NET_LOCAL_NI_TUNABLES_ATTR_CREDITS:
5028                         if (num > 0)
5029                                 tun->lt_cmn.lct_max_tx_credits = num;
5030                         break;
5031                 default:
5032                         rc = -EINVAL;
5033                         break;
5034                 }
5035         }
5036         return rc;
5037 }
5038
5039 static int lnet_genl_parse_lnd_tunables(struct nlattr *settings,
5040                                         struct lnet_lnd_tunables *tun,
5041                                         const struct lnet_lnd *lnd)
5042 {
5043         const struct ln_key_list *list = lnd->lnd_keys;
5044         struct nlattr *param;
5045         int rem, rc = 0;
5046         int i = 1;
5047
5048         /* silently ignore these setting if the LND driver doesn't
5049          * support any LND tunables
5050          */
5051         if (!list || !lnd->lnd_nl_set || !list->lkl_maxattr)
5052                 return 0;
5053
5054         nla_for_each_nested(param, settings, rem) {
5055                 if (nla_type(param) != LN_SCALAR_ATTR_VALUE)
5056                         continue;
5057
5058                 for (i = 1; i <= list->lkl_maxattr; i++) {
5059                         if (!list->lkl_list[i].lkp_value ||
5060                             nla_strcmp(param, list->lkl_list[i].lkp_value) != 0)
5061                                 continue;
5062
5063                         param = nla_next(param, &rem);
5064                         rc = lnd->lnd_nl_set(LNET_CMD_NETS, param, i, tun);
5065                         if (rc < 0)
5066                                 return rc;
5067                 }
5068         }
5069
5070         return rc;
5071 }
5072
5073 static int
5074 lnet_genl_parse_local_ni(struct nlattr *entry, struct genl_info *info,
5075                          int net_id, struct lnet_ioctl_config_ni *conf,
5076                          bool *ni_list)
5077 {
5078         bool create = info->nlhdr->nlmsg_flags & NLM_F_CREATE;
5079         struct lnet_ioctl_config_lnd_tunables *tun;
5080         struct nlattr *settings;
5081         int rem3, rc = 0;
5082
5083         LIBCFS_ALLOC(tun, sizeof(struct lnet_ioctl_config_lnd_tunables));
5084         if (!tun) {
5085                 GENL_SET_ERR_MSG(info, "cannot allocate memory for tunables");
5086                 GOTO(out, rc = -ENOMEM);
5087         }
5088
5089         /* Use LND defaults */
5090         tun->lt_cmn.lct_peer_timeout = -1;
5091         tun->lt_cmn.lct_peer_tx_credits = -1;
5092         tun->lt_cmn.lct_peer_rtr_credits = -1;
5093         tun->lt_cmn.lct_max_tx_credits = -1;
5094         conf->lic_ncpts = 0;
5095
5096         nla_for_each_nested(settings, entry, rem3) {
5097                 if (nla_type(settings) != LN_SCALAR_ATTR_VALUE)
5098                         continue;
5099
5100                 if (nla_strcmp(settings, "interfaces") == 0) {
5101                         struct nlattr *intf;
5102                         int rem4;
5103
5104                         settings = nla_next(settings, &rem3);
5105                         if (nla_type(settings) !=
5106                             LN_SCALAR_ATTR_LIST) {
5107                                 GENL_SET_ERR_MSG(info,
5108                                                  "invalid interfaces");
5109                                 GOTO(out, rc = -EINVAL);
5110                         }
5111
5112                         nla_for_each_nested(intf, settings, rem4) {
5113                                 intf = nla_next(intf, &rem4);
5114                                 if (nla_type(intf) !=
5115                                     LN_SCALAR_ATTR_VALUE) {
5116                                         GENL_SET_ERR_MSG(info,
5117                                                          "0 key is invalid");
5118                                         GOTO(out, rc = -EINVAL);
5119                                 }
5120
5121                                 rc = nla_strscpy(conf->lic_ni_intf, intf,
5122                                                  sizeof(conf->lic_ni_intf));
5123                                 if (rc < 0) {
5124                                         GENL_SET_ERR_MSG(info,
5125                                                          "failed to parse interfaces");
5126                                         GOTO(out, rc);
5127                                 }
5128                         }
5129                         *ni_list = true;
5130                 } else if (nla_strcmp(settings, "tunables") == 0) {
5131                         settings = nla_next(settings, &rem3);
5132                         if (nla_type(settings) !=
5133                             LN_SCALAR_ATTR_LIST) {
5134                                 GENL_SET_ERR_MSG(info,
5135                                                  "invalid tunables");
5136                                 GOTO(out, rc = -EINVAL);
5137                         }
5138
5139                         rc = lnet_genl_parse_tunables(settings, tun);
5140                         if (rc < 0) {
5141                                 GENL_SET_ERR_MSG(info,
5142                                                  "failed to parse tunables");
5143                                 GOTO(out, rc);
5144                         }
5145                 } else if ((nla_strcmp(settings, "lnd tunables") == 0)) {
5146                         const struct lnet_lnd *lnd;
5147
5148                         lnd = lnet_load_lnd(LNET_NETTYP(net_id));
5149                         if (IS_ERR(lnd)) {
5150                                 GENL_SET_ERR_MSG(info,
5151                                                  "LND type not supported");
5152                                 GOTO(out, rc = PTR_ERR(lnd));
5153                         }
5154
5155                         settings = nla_next(settings, &rem3);
5156                         if (nla_type(settings) !=
5157                             LN_SCALAR_ATTR_LIST) {
5158                                 GENL_SET_ERR_MSG(info,
5159                                                  "lnd tunables should be list\n");
5160                                 GOTO(out, rc = -EINVAL);
5161                         }
5162
5163                         rc = lnet_genl_parse_lnd_tunables(settings,
5164                                                           &tun->lt_tun, lnd);
5165                         if (rc < 0) {
5166                                 GENL_SET_ERR_MSG(info,
5167                                                  "failed to parse lnd tunables");
5168                                 GOTO(out, rc);
5169                         }
5170                 } else if (nla_strcmp(settings, "CPT") == 0) {
5171                         struct nlattr *cpt;
5172                         int rem4;
5173
5174                         settings = nla_next(settings, &rem3);
5175                         if (nla_type(settings) != LN_SCALAR_ATTR_LIST) {
5176                                 GENL_SET_ERR_MSG(info,
5177                                                  "CPT should be list");
5178                                 GOTO(out, rc = -EINVAL);
5179                         }
5180
5181                         nla_for_each_nested(cpt, settings, rem4) {
5182                                 s64 core;
5183
5184                                 if (nla_type(cpt) !=
5185                                     LN_SCALAR_ATTR_INT_VALUE) {
5186                                         GENL_SET_ERR_MSG(info,
5187                                                          "invalid CPT config");
5188                                         GOTO(out, rc = -EINVAL);
5189                                 }
5190
5191                                 core = nla_get_s64(cpt);
5192                                 if (core >= LNET_CPT_NUMBER) {
5193                                         GENL_SET_ERR_MSG(info,
5194                                                          "invalid CPT value");
5195                                         GOTO(out, rc = -ERANGE);
5196                                 }
5197
5198                                 conf->lic_cpts[conf->lic_ncpts] = core;
5199                                 conf->lic_ncpts++;
5200                         }
5201                 }
5202         }
5203
5204         if (!create) {
5205                 struct lnet_net *net;
5206                 struct lnet_ni *ni;
5207
5208                 rc = -ENODEV;
5209                 if (!strlen(conf->lic_ni_intf)) {
5210                         GENL_SET_ERR_MSG(info,
5211                                          "interface is missing");
5212                         GOTO(out, rc);
5213                 }
5214
5215                 lnet_net_lock(LNET_LOCK_EX);
5216                 net = lnet_get_net_locked(net_id);
5217                 if (!net) {
5218                         GENL_SET_ERR_MSG(info,
5219                                          "LNet net doesn't exist");
5220                         lnet_net_unlock(LNET_LOCK_EX);
5221                         GOTO(out, rc);
5222                 }
5223
5224                 list_for_each_entry(ni, &net->net_ni_list,
5225                                     ni_netlist) {
5226                         if (!ni->ni_interface ||
5227                             strcmp(ni->ni_interface,
5228                                   conf->lic_ni_intf) != 0)
5229                                 continue;
5230
5231                         lnet_net_unlock(LNET_LOCK_EX);
5232                         rc = lnet_dyn_del_ni(&ni->ni_nid);
5233                         if (rc < 0) {
5234                                 GENL_SET_ERR_MSG(info,
5235                                                  "cannot del LNet NI");
5236                                 GOTO(out, rc);
5237                         }
5238                         break;
5239                 }
5240
5241                 if (rc < 0) { /* will be -ENODEV */
5242                         GENL_SET_ERR_MSG(info,
5243                                          "interface invalid for deleting LNet NI");
5244                         lnet_net_unlock(LNET_LOCK_EX);
5245                 }
5246         } else {
5247                 if (!strlen(conf->lic_ni_intf)) {
5248                         GENL_SET_ERR_MSG(info,
5249                                          "interface is missing");
5250                         GOTO(out, rc);
5251                 }
5252
5253                 rc = lnet_dyn_add_ni(conf, net_id, tun);
5254                 switch (rc) {
5255                 case -ENOENT:
5256                         GENL_SET_ERR_MSG(info,
5257                                          "cannot parse net");
5258                         break;
5259                 case -ERANGE:
5260                         GENL_SET_ERR_MSG(info,
5261                                          "invalid CPT set");
5262                         break;
5263                 default:
5264                         GENL_SET_ERR_MSG(info,
5265                                          "cannot add LNet NI");
5266                 case 0:
5267                         break;
5268                 }
5269         }
5270 out:
5271         if (tun)
5272                 LIBCFS_FREE(tun, sizeof(struct lnet_ioctl_config_lnd_tunables));
5273
5274         return rc;
5275 }
5276
5277 static int lnet_net_cmd(struct sk_buff *skb, struct genl_info *info)
5278 {
5279         struct nlmsghdr *nlh = nlmsg_hdr(skb);
5280         struct genlmsghdr *gnlh = nlmsg_data(nlh);
5281         struct nlattr *params = genlmsg_data(gnlh);
5282         int msg_len, rem, rc = 0;
5283         struct nlattr *attr;
5284
5285         msg_len = genlmsg_len(gnlh);
5286         if (!msg_len) {
5287                 GENL_SET_ERR_MSG(info, "no configuration");
5288                 return -ENOMSG;
5289         }
5290
5291         if (!(nla_type(params) & LN_SCALAR_ATTR_LIST)) {
5292                 GENL_SET_ERR_MSG(info, "invalid configuration");
5293                 return -EINVAL;
5294         }
5295
5296         nla_for_each_nested(attr, params, rem) {
5297                 struct lnet_ioctl_config_ni conf;
5298                 u32 net_id = LNET_NET_ANY;
5299                 struct nlattr *entry;
5300                 bool ni_list = false;
5301                 int rem2;
5302
5303                 if (nla_type(attr) != LN_SCALAR_ATTR_LIST)
5304                         continue;
5305
5306                 nla_for_each_nested(entry, attr, rem2) {
5307                         switch (nla_type(entry)) {
5308                         case LN_SCALAR_ATTR_VALUE: {
5309                                 ssize_t len;
5310
5311                                 memset(&conf, 0, sizeof(conf));
5312                                 if (nla_strcmp(entry, "ip2net") == 0) {
5313                                         entry = nla_next(entry, &rem2);
5314                                         if (nla_type(entry) !=
5315                                             LN_SCALAR_ATTR_VALUE) {
5316                                                 GENL_SET_ERR_MSG(info,
5317                                                                  "ip2net has invalid key");
5318                                                 GOTO(out, rc = -EINVAL);
5319                                         }
5320
5321                                         len = nla_strscpy(conf.lic_legacy_ip2nets,
5322                                                           entry,
5323                                                           sizeof(conf.lic_legacy_ip2nets));
5324                                         if (len < 0) {
5325                                                 GENL_SET_ERR_MSG(info,
5326                                                                  "ip2net key string is invalid");
5327                                                 GOTO(out, rc = len);
5328                                         }
5329                                         ni_list = true;
5330                                 } else if (nla_strcmp(entry, "net type") == 0) {
5331                                         char tmp[LNET_NIDSTR_SIZE];
5332
5333                                         entry = nla_next(entry, &rem2);
5334                                         if (nla_type(entry) !=
5335                                             LN_SCALAR_ATTR_VALUE) {
5336                                                 GENL_SET_ERR_MSG(info,
5337                                                                  "net type has invalid key");
5338                                                 GOTO(out, rc = -EINVAL);
5339                                         }
5340
5341                                         len = nla_strscpy(tmp, entry,
5342                                                           sizeof(tmp));
5343                                         if (len < 0) {
5344                                                 GENL_SET_ERR_MSG(info,
5345                                                                  "net type key string is invalid");
5346                                                 GOTO(out, rc = len);
5347                                         }
5348
5349                                         net_id = libcfs_str2net(tmp);
5350                                         if (!net_id) {
5351                                                 GENL_SET_ERR_MSG(info,
5352                                                                  "cannot parse net");
5353                                                 GOTO(out, rc = -ENODEV);
5354                                         }
5355                                         if (LNET_NETTYP(net_id) == LOLND) {
5356                                                 GENL_SET_ERR_MSG(info,
5357                                                                  "setting @lo not allowed");
5358                                                 GOTO(out, rc = -ENODEV);
5359                                         }
5360                                         conf.lic_legacy_ip2nets[0] = '\0';
5361                                         conf.lic_ni_intf[0] = '\0';
5362                                         ni_list = false;
5363                                 }
5364                                 if (rc < 0)
5365                                         GOTO(out, rc);
5366                                 break;
5367                         }
5368                         case LN_SCALAR_ATTR_LIST: {
5369                                 struct nlattr *interface;
5370                                 int rem3;
5371
5372                                 nla_for_each_nested(interface, entry, rem3) {
5373                                         rc = lnet_genl_parse_local_ni(interface, info,
5374                                                                       net_id, &conf,
5375                                                                       &ni_list);
5376                                         if (rc < 0)
5377                                                 GOTO(out, rc);
5378                                 }
5379                                 break;
5380                         }
5381                         /* it is possible a newer version of the user land send
5382                          * values older kernels doesn't handle. So silently
5383                          * ignore these values
5384                          */
5385                         default:
5386                                 break;
5387                         }
5388                 }
5389
5390                 /* Handle case of just sent NET with no list of NIDs */
5391                 if (!(info->nlhdr->nlmsg_flags & NLM_F_CREATE) && !ni_list) {
5392                         rc = lnet_dyn_del_net(net_id);
5393                         if (rc < 0) {
5394                                 GENL_SET_ERR_MSG(info,
5395                                                  "cannot del network");
5396                         }
5397                 }
5398         }
5399 out:
5400         return rc;
5401 }
5402
5403 /** LNet route handling */
5404
5405 /* We can't use struct lnet_ioctl_config_data since it lacks
5406  * support for large NIDS
5407  */
5408 struct lnet_route_properties {
5409         struct lnet_nid         lrp_gateway;
5410         u32                     lrp_net;
5411         s32                     lrp_hop;
5412         u32                     lrp_flags;
5413         u32                     lrp_priority;
5414         u32                     lrp_sensitivity;
5415 };
5416
5417 struct lnet_genl_route_list {
5418         unsigned int                            lgrl_index;
5419         unsigned int                            lgrl_count;
5420         GENRADIX(struct lnet_route_properties)  lgrl_list;
5421 };
5422
5423 static inline struct lnet_genl_route_list *
5424 lnet_route_dump_ctx(struct netlink_callback *cb)
5425 {
5426         return (struct lnet_genl_route_list *)cb->args[0];
5427 }
5428
5429 static int lnet_route_show_done(struct netlink_callback *cb)
5430 {
5431         struct lnet_genl_route_list *rlist = lnet_route_dump_ctx(cb);
5432
5433         if (rlist) {
5434                 genradix_free(&rlist->lgrl_list);
5435                 CFS_FREE_PTR(rlist);
5436         }
5437         cb->args[0] = 0;
5438
5439         return 0;
5440 }
5441
5442 static int lnet_scan_route(struct lnet_genl_route_list *rlist,
5443                     struct lnet_route_properties *settings)
5444 {
5445         struct lnet_remotenet *rnet;
5446         struct list_head *rn_list;
5447         struct lnet_route *route;
5448         int cpt, i, rc = 0;
5449
5450         cpt = lnet_net_lock_current();
5451
5452         for (i = 0; i < LNET_REMOTE_NETS_HASH_SIZE; i++) {
5453                 rn_list = &the_lnet.ln_remote_nets_hash[i];
5454                 list_for_each_entry(rnet, rn_list, lrn_list) {
5455                         if (settings->lrp_net != LNET_NET_ANY &&
5456                             settings->lrp_net != rnet->lrn_net)
5457                                 continue;
5458
5459                         list_for_each_entry(route, &rnet->lrn_routes,
5460                                             lr_list) {
5461                                 struct lnet_route_properties *prop;
5462
5463                                 if (!LNET_NID_IS_ANY(&settings->lrp_gateway) &&
5464                                     !nid_same(&settings->lrp_gateway,
5465                                               &route->lr_nid)) {
5466                                         continue;
5467                                 }
5468
5469                                 if (settings->lrp_hop != -1 &&
5470                                     settings->lrp_hop != route->lr_hops)
5471                                         continue;
5472
5473                                 if (settings->lrp_priority != -1 &&
5474                                     settings->lrp_priority != route->lr_priority)
5475                                         continue;
5476
5477                                 if (settings->lrp_sensitivity != -1 &&
5478                                     settings->lrp_sensitivity !=
5479                                     route->lr_gateway->lp_health_sensitivity)
5480                                         continue;
5481
5482                                 prop = genradix_ptr_alloc(&rlist->lgrl_list,
5483                                                           rlist->lgrl_count++,
5484                                                           GFP_KERNEL);
5485                                 if (!prop)
5486                                         GOTO(failed_alloc, rc = -ENOMEM);
5487
5488                                 prop->lrp_net = rnet->lrn_net;
5489                                 prop->lrp_gateway = route->lr_nid;
5490                                 prop->lrp_hop = route->lr_hops;
5491                                 prop->lrp_priority = route->lr_priority;
5492                                 prop->lrp_sensitivity =
5493                                         route->lr_gateway->lp_health_sensitivity;
5494                                 if (lnet_is_route_alive(route))
5495                                         prop->lrp_flags |= LNET_RT_ALIVE;
5496                                 else
5497                                         prop->lrp_flags &= ~LNET_RT_ALIVE;
5498                                 if (route->lr_single_hop)
5499                                         prop->lrp_flags &= ~LNET_RT_MULTI_HOP;
5500                                 else
5501                                         prop->lrp_flags |= LNET_RT_MULTI_HOP;
5502                         }
5503                 }
5504         }
5505
5506 failed_alloc:
5507         lnet_net_unlock(cpt);
5508         return rc;
5509 }
5510
5511 /* LNet route ->start() handler for GET requests */
5512 static int lnet_route_show_start(struct netlink_callback *cb)
5513 {
5514         struct genlmsghdr *gnlh = nlmsg_data(cb->nlh);
5515 #ifdef HAVE_NL_PARSE_WITH_EXT_ACK
5516         struct netlink_ext_ack *extack = NULL;
5517 #endif
5518         struct lnet_genl_route_list *rlist;
5519         int msg_len = genlmsg_len(gnlh);
5520         int rc = 0;
5521
5522 #ifdef HAVE_NL_DUMP_WITH_EXT_ACK
5523         extack = cb->extack;
5524 #endif
5525         if (the_lnet.ln_refcount == 0 ||
5526             the_lnet.ln_state != LNET_STATE_RUNNING) {
5527                 NL_SET_ERR_MSG(extack, "Network is down");
5528                 return -ENETDOWN;
5529         }
5530
5531         CFS_ALLOC_PTR(rlist);
5532         if (!rlist) {
5533                 NL_SET_ERR_MSG(extack, "No memory for route list");
5534                 return -ENOMEM;
5535         }
5536
5537         genradix_init(&rlist->lgrl_list);
5538         rlist->lgrl_count = 0;
5539         rlist->lgrl_index = 0;
5540         cb->args[0] = (long)rlist;
5541
5542         mutex_lock(&the_lnet.ln_api_mutex);
5543         if (!msg_len) {
5544                 struct lnet_route_properties tmp = {
5545                         .lrp_gateway            = LNET_ANY_NID,
5546                         .lrp_net                = LNET_NET_ANY,
5547                         .lrp_hop                = -1,
5548                         .lrp_priority           = -1,
5549                         .lrp_sensitivity        = -1,
5550                 };
5551
5552                 rc = lnet_scan_route(rlist, &tmp);
5553                 if (rc < 0) {
5554                         NL_SET_ERR_MSG(extack,
5555                                        "failed to allocate router data");
5556                         GOTO(report_err, rc);
5557                 }
5558         } else {
5559                 struct nlattr *params = genlmsg_data(gnlh);
5560                 struct nlattr *attr;
5561                 int rem;
5562
5563                 nla_for_each_nested(attr, params, rem) {
5564                         struct lnet_route_properties tmp = {
5565                                 .lrp_gateway            = LNET_ANY_NID,
5566                                 .lrp_net                = LNET_NET_ANY,
5567                                 .lrp_hop                = -1,
5568                                 .lrp_priority           = -1,
5569                                 .lrp_sensitivity        = -1,
5570                         };
5571                         struct nlattr *route;
5572                         int rem2;
5573
5574                         if (nla_type(attr) != LN_SCALAR_ATTR_LIST)
5575                                 continue;
5576
5577                         nla_for_each_nested(route, attr, rem2) {
5578                                 if (nla_type(route) != LN_SCALAR_ATTR_VALUE)
5579                                         continue;
5580
5581                                 if (nla_strcmp(route, "net") == 0) {
5582                                         char nw[LNET_NIDSTR_SIZE];
5583
5584                                         route = nla_next(route, &rem2);
5585                                         if (nla_type(route) !=
5586                                             LN_SCALAR_ATTR_VALUE) {
5587                                                 NL_SET_ERR_MSG(extack,
5588                                                                "invalid net param");
5589                                                 GOTO(report_err, rc = -EINVAL);
5590                                         }
5591
5592                                         rc = nla_strscpy(nw, route, sizeof(nw));
5593                                         if (rc < 0) {
5594                                                 NL_SET_ERR_MSG(extack,
5595                                                                "failed to get route param");
5596                                                 GOTO(report_err, rc);
5597                                         }
5598                                         rc = 0;
5599                                         tmp.lrp_net = libcfs_str2net(strim(nw));
5600                                 } else if (nla_strcmp(route, "gateway") == 0) {
5601                                         char gw[LNET_NIDSTR_SIZE];
5602
5603                                         route = nla_next(route, &rem2);
5604                                         if (nla_type(route) !=
5605                                             LN_SCALAR_ATTR_VALUE) {
5606                                                 NL_SET_ERR_MSG(extack,
5607                                                                "invalid gateway param");
5608                                                 GOTO(report_err, rc = -EINVAL);
5609                                         }
5610
5611                                         rc = nla_strscpy(gw, route, sizeof(gw));
5612                                         if (rc < 0) {
5613                                                 NL_SET_ERR_MSG(extack,
5614                                                                "failed to get route param");
5615                                                 GOTO(report_err, rc);
5616                                         }
5617                                         rc = 0;
5618                                         libcfs_strnid(&tmp.lrp_gateway, strim(gw));
5619                                 } else if (nla_strcmp(route, "hop") == 0) {
5620                                         route = nla_next(route, &rem2);
5621                                         if (nla_type(route) !=
5622                                             LN_SCALAR_ATTR_INT_VALUE) {
5623                                                 NL_SET_ERR_MSG(extack,
5624                                                                "invalid hop param");
5625                                                 GOTO(report_err, rc = -EINVAL);
5626                                         }
5627
5628                                         tmp.lrp_hop = nla_get_s64(route);
5629                                         if (tmp.lrp_hop != -1)
5630                                                 clamp_t(s32, tmp.lrp_hop, 1, 127);
5631                                 } else if (nla_strcmp(route, "priority") == 0) {
5632                                         route = nla_next(route, &rem2);
5633                                         if (nla_type(route) !=
5634                                             LN_SCALAR_ATTR_INT_VALUE) {
5635                                                 NL_SET_ERR_MSG(extack,
5636                                                                "invalid priority param");
5637                                                 GOTO(report_err, rc = -EINVAL);
5638                                         }
5639
5640                                         tmp.lrp_priority = nla_get_s64(route);
5641                                 }
5642                         }
5643
5644                         rc = lnet_scan_route(rlist, &tmp);
5645                         if (rc < 0) {
5646                                 NL_SET_ERR_MSG(extack,
5647                                                "failed to allocate router data");
5648                                 GOTO(report_err, rc);
5649                         }
5650                 }
5651         }
5652 report_err:
5653         mutex_unlock(&the_lnet.ln_api_mutex);
5654
5655         if (rc < 0)
5656                 lnet_route_show_done(cb);
5657
5658         return rc;
5659 }
5660
5661 static const struct ln_key_list route_props_list = {
5662         .lkl_maxattr                    = LNET_ROUTE_ATTR_MAX,
5663         .lkl_list                       = {
5664                 [LNET_ROUTE_ATTR_HDR]                   = {
5665                         .lkp_value                      = "route",
5666                         .lkp_key_format                 = LNKF_SEQUENCE | LNKF_MAPPING,
5667                         .lkp_data_type                  = NLA_NUL_STRING,
5668                 },
5669                 [LNET_ROUTE_ATTR_NET]                   = {
5670                         .lkp_value                      = "net",
5671                         .lkp_data_type                  = NLA_STRING
5672                 },
5673                 [LNET_ROUTE_ATTR_GATEWAY]               = {
5674                         .lkp_value                      = "gateway",
5675                         .lkp_data_type                  = NLA_STRING
5676                 },
5677                 [LNET_ROUTE_ATTR_HOP]                   = {
5678                         .lkp_value                      = "hop",
5679                         .lkp_data_type                  = NLA_S32
5680                 },
5681                 [LNET_ROUTE_ATTR_PRIORITY]              = {
5682                         .lkp_value                      = "priority",
5683                         .lkp_data_type                  = NLA_U32
5684                 },
5685                 [LNET_ROUTE_ATTR_HEALTH_SENSITIVITY]    = {
5686                         .lkp_value                      = "health_sensitivity",
5687                         .lkp_data_type                  = NLA_U32
5688                 },
5689                 [LNET_ROUTE_ATTR_STATE] = {
5690                         .lkp_value                      = "state",
5691                         .lkp_data_type                  = NLA_STRING,
5692                 },
5693                 [LNET_ROUTE_ATTR_TYPE]  = {
5694                         .lkp_value                      = "type",
5695                         .lkp_data_type                  = NLA_STRING,
5696                 },
5697         },
5698 };
5699
5700
5701 static int lnet_route_show_dump(struct sk_buff *msg,
5702                                 struct netlink_callback *cb)
5703 {
5704         struct lnet_genl_route_list *rlist = lnet_route_dump_ctx(cb);
5705         struct genlmsghdr *gnlh = nlmsg_data(cb->nlh);
5706 #ifdef HAVE_NL_PARSE_WITH_EXT_ACK
5707         struct netlink_ext_ack *extack = NULL;
5708 #endif
5709         int portid = NETLINK_CB(cb->skb).portid;
5710         int seq = cb->nlh->nlmsg_seq;
5711         int idx = rlist->lgrl_index;
5712         int rc = 0;
5713
5714 #ifdef HAVE_NL_DUMP_WITH_EXT_ACK
5715         extack = cb->extack;
5716 #endif
5717         if (!rlist->lgrl_count) {
5718                 NL_SET_ERR_MSG(extack, "No routes found");
5719                 GOTO(send_error, rc = -ENOENT);
5720         }
5721
5722         if (!idx) {
5723                 const struct ln_key_list *all[] = {
5724                         &route_props_list, NULL
5725                 };
5726
5727                 rc = lnet_genl_send_scalar_list(msg, portid, seq,
5728                                                 &lnet_family,
5729                                                 NLM_F_CREATE | NLM_F_MULTI,
5730                                                 LNET_CMD_ROUTES, all);
5731                 if (rc < 0) {
5732                         NL_SET_ERR_MSG(extack, "failed to send key table");
5733                         GOTO(send_error, rc);
5734                 }
5735         }
5736
5737         /* If not routes found send an empty message and not an error */
5738         if (!rlist->lgrl_count) {
5739                 void *hdr;
5740
5741                 hdr = genlmsg_put(msg, portid, seq, &lnet_family,
5742                                   NLM_F_MULTI, LNET_CMD_ROUTES);
5743                 if (!hdr) {
5744                         NL_SET_ERR_MSG(extack, "failed to send values");
5745                         genlmsg_cancel(msg, hdr);
5746                         GOTO(send_error, rc = -EMSGSIZE);
5747                 }
5748                 genlmsg_end(msg, hdr);
5749
5750                 goto send_error;
5751         }
5752
5753         while (idx < rlist->lgrl_count) {
5754                 struct lnet_route_properties *prop;
5755                 void *hdr;
5756
5757                 prop = genradix_ptr(&rlist->lgrl_list, idx++);
5758
5759                 hdr = genlmsg_put(msg, portid, seq, &lnet_family,
5760                                   NLM_F_MULTI, LNET_CMD_ROUTES);
5761                 if (!hdr) {
5762                         NL_SET_ERR_MSG(extack, "failed to send values");
5763                         genlmsg_cancel(msg, hdr);
5764                         GOTO(send_error, rc = -EMSGSIZE);
5765                 }
5766
5767                 if (idx == 1)
5768                         nla_put_string(msg, LNET_ROUTE_ATTR_HDR, "");
5769
5770                 nla_put_string(msg, LNET_ROUTE_ATTR_NET,
5771                                libcfs_net2str(prop->lrp_net));
5772                 nla_put_string(msg, LNET_ROUTE_ATTR_GATEWAY,
5773                                libcfs_nidstr(&prop->lrp_gateway));
5774                 if (gnlh->version) {
5775                         nla_put_s32(msg, LNET_ROUTE_ATTR_HOP, prop->lrp_hop);
5776                         nla_put_u32(msg, LNET_ROUTE_ATTR_PRIORITY, prop->lrp_priority);
5777                         nla_put_u32(msg, LNET_ROUTE_ATTR_HEALTH_SENSITIVITY,
5778                                     prop->lrp_sensitivity);
5779
5780                         nla_put_string(msg, LNET_ROUTE_ATTR_STATE,
5781                                        prop->lrp_flags & LNET_RT_ALIVE ?
5782                                        "up" : "down");
5783                         nla_put_string(msg, LNET_ROUTE_ATTR_TYPE,
5784                                        prop->lrp_flags & LNET_RT_MULTI_HOP ?
5785                                        "multi-hop" : "single-hop");
5786                 }
5787                 genlmsg_end(msg, hdr);
5788         }
5789         rlist->lgrl_index = idx;
5790 send_error:
5791         return lnet_nl_send_error(cb->skb, portid, seq, rc);
5792 };
5793
5794 #ifndef HAVE_NETLINK_CALLBACK_START
5795 static int lnet_old_route_show_dump(struct sk_buff *msg,
5796                                     struct netlink_callback *cb)
5797 {
5798         if (!cb->args[0]) {
5799                 int rc = lnet_route_show_start(cb);
5800
5801                 if (rc < 0)
5802                         return rc;
5803         }
5804
5805         return lnet_route_show_dump(msg, cb);
5806 }
5807 #endif /* !HAVE_NETLINK_CALLBACK_START */
5808
5809 static inline struct lnet_genl_ping_list *
5810 lnet_ping_dump_ctx(struct netlink_callback *cb)
5811 {
5812         return (struct lnet_genl_ping_list *)cb->args[0];
5813 }
5814
5815 static int lnet_ping_show_done(struct netlink_callback *cb)
5816 {
5817         struct lnet_genl_ping_list *plist = lnet_ping_dump_ctx(cb);
5818
5819         if (plist) {
5820                 genradix_free(&plist->lgpl_failed);
5821                 genradix_free(&plist->lgpl_list);
5822                 LIBCFS_FREE(plist, sizeof(*plist));
5823                 cb->args[0] = 0;
5824         }
5825
5826         return 0;
5827 }
5828
5829 /* LNet ping ->start() handler for GET requests */
5830 static int lnet_ping_show_start(struct netlink_callback *cb)
5831 {
5832         struct genlmsghdr *gnlh = nlmsg_data(cb->nlh);
5833 #ifdef HAVE_NL_PARSE_WITH_EXT_ACK
5834         struct netlink_ext_ack *extack = NULL;
5835 #endif
5836         struct lnet_genl_ping_list *plist;
5837         int msg_len = genlmsg_len(gnlh);
5838         struct nlattr *params, *top;
5839         int rem, rc = 0;
5840
5841 #ifdef HAVE_NL_DUMP_WITH_EXT_ACK
5842         extack = cb->extack;
5843 #endif
5844         if (the_lnet.ln_refcount == 0) {
5845                 NL_SET_ERR_MSG(extack, "Network is down");
5846                 return -ENETDOWN;
5847         }
5848
5849         if (!msg_len) {
5850                 NL_SET_ERR_MSG(extack, "Ping needs NID targets");
5851                 return -ENOENT;
5852         }
5853
5854         LIBCFS_ALLOC(plist, sizeof(*plist));
5855         if (!plist) {
5856                 NL_SET_ERR_MSG(extack, "failed to setup ping list");
5857                 return -ENOMEM;
5858         }
5859         genradix_init(&plist->lgpl_list);
5860         plist->lgpl_timeout = cfs_time_seconds(DEFAULT_PEER_TIMEOUT);
5861         plist->lgpl_src_nid = LNET_ANY_NID;
5862         plist->lgpl_index = 0;
5863         plist->lgpl_list_count = 0;
5864         cb->args[0] = (long)plist;
5865
5866         params = genlmsg_data(gnlh);
5867         nla_for_each_attr(top, params, msg_len, rem) {
5868                 struct nlattr *nids;
5869                 int rem2;
5870
5871                 switch (nla_type(top)) {
5872                 case LN_SCALAR_ATTR_VALUE:
5873                         if (nla_strcmp(top, "timeout") == 0) {
5874                                 s64 timeout;
5875
5876                                 top = nla_next(top, &rem);
5877                                 if (nla_type(top) != LN_SCALAR_ATTR_INT_VALUE) {
5878                                         NL_SET_ERR_MSG(extack,
5879                                                        "invalid timeout param");
5880                                         GOTO(report_err, rc = -EINVAL);
5881                                 }
5882
5883                                 /* If timeout is negative then set default of
5884                                  * 3 minutes
5885                                  */
5886                                 timeout = nla_get_s64(top);
5887                                 if (timeout > 0 &&
5888                                     timeout < (DEFAULT_PEER_TIMEOUT * MSEC_PER_SEC))
5889                                         plist->lgpl_timeout =
5890                                                 nsecs_to_jiffies(timeout * NSEC_PER_MSEC);
5891                         } else if (nla_strcmp(top, "source") == 0) {
5892                                 char nidstr[LNET_NIDSTR_SIZE + 1];
5893
5894                                 top = nla_next(top, &rem);
5895                                 if (nla_type(top) != LN_SCALAR_ATTR_VALUE) {
5896                                         NL_SET_ERR_MSG(extack,
5897                                                        "invalid source param");
5898                                         GOTO(report_err, rc = -EINVAL);
5899                                 }
5900
5901                                 rc = nla_strscpy(nidstr, top, sizeof(nidstr));
5902                                 if (rc < 0) {
5903                                         NL_SET_ERR_MSG(extack,
5904                                                        "failed to parse source nid");
5905                                         GOTO(report_err, rc);
5906                                 }
5907
5908                                 rc = libcfs_strnid(&plist->lgpl_src_nid,
5909                                                    strim(nidstr));
5910                                 if (rc < 0) {
5911                                         NL_SET_ERR_MSG(extack,
5912                                                        "invalid source nid");
5913                                         GOTO(report_err, rc);
5914                                 }
5915                                 rc = 0;
5916                         }
5917                         break;
5918                 case LN_SCALAR_ATTR_LIST:
5919                         nla_for_each_nested(nids, top, rem2) {
5920                                 char nid[LNET_NIDSTR_SIZE + 1];
5921                                 struct lnet_processid *id;
5922
5923                                 if (nla_type(nids) != LN_SCALAR_ATTR_VALUE)
5924                                         continue;
5925
5926                                 memset(nid, 0, sizeof(nid));
5927                                 rc = nla_strscpy(nid, nids, sizeof(nid));
5928                                 if (rc < 0) {
5929                                         NL_SET_ERR_MSG(extack,
5930                                                        "failed to get NID");
5931                                         GOTO(report_err, rc);
5932                                 }
5933
5934                                 id = genradix_ptr_alloc(&plist->lgpl_list,
5935                                                         plist->lgpl_list_count++,
5936                                                         GFP_ATOMIC);
5937                                 if (!id) {
5938                                         NL_SET_ERR_MSG(extack,
5939                                                        "failed to allocate NID");
5940                                         GOTO(report_err, rc = -ENOMEM);
5941                                 }
5942
5943                                 rc = libcfs_strid(id, strim(nid));
5944                                 if (rc < 0) {
5945                                         NL_SET_ERR_MSG(extack, "invalid NID");
5946                                         GOTO(report_err, rc);
5947                                 }
5948                                 rc = 0;
5949                         }
5950                         fallthrough;
5951                 default:
5952                         break;
5953                 }
5954         }
5955 report_err:
5956         if (rc < 0)
5957                 lnet_ping_show_done(cb);
5958
5959         return rc;
5960 }
5961
5962 static const struct ln_key_list ping_props_list = {
5963         .lkl_maxattr                    = LNET_PING_ATTR_MAX,
5964         .lkl_list                       = {
5965                 [LNET_PING_ATTR_HDR]            = {
5966                         .lkp_value              = "ping",
5967                         .lkp_key_format         = LNKF_SEQUENCE | LNKF_MAPPING,
5968                         .lkp_data_type          = NLA_NUL_STRING,
5969                 },
5970                 [LNET_PING_ATTR_PRIMARY_NID]    = {
5971                         .lkp_value              = "primary nid",
5972                         .lkp_data_type          = NLA_STRING
5973                 },
5974                 [LNET_PING_ATTR_ERRNO]          = {
5975                         .lkp_value              = "errno",
5976                         .lkp_data_type          = NLA_S16
5977                 },
5978                 [LNET_PING_ATTR_MULTIRAIL]      = {
5979                         .lkp_value              = "Multi-Rail",
5980                         .lkp_data_type          = NLA_FLAG
5981                 },
5982                 [LNET_PING_ATTR_PEER_NI_LIST]   = {
5983                         .lkp_value              = "peer_ni",
5984                         .lkp_key_format         = LNKF_SEQUENCE | LNKF_MAPPING,
5985                         .lkp_data_type          = NLA_NESTED
5986                 },
5987         },
5988 };
5989
5990 static struct ln_key_list ping_peer_ni_list = {
5991         .lkl_maxattr                    = LNET_PING_PEER_NI_ATTR_MAX,
5992         .lkl_list                       = {
5993                 [LNET_PING_PEER_NI_ATTR_NID]    = {
5994                         .lkp_value              = "nid",
5995                         .lkp_data_type          = NLA_STRING
5996                 },
5997         },
5998 };
5999
6000 static int lnet_ping_show_dump(struct sk_buff *msg,
6001                                struct netlink_callback *cb)
6002 {
6003         struct lnet_genl_ping_list *plist = lnet_ping_dump_ctx(cb);
6004         struct genlmsghdr *gnlh = nlmsg_data(cb->nlh);
6005 #ifdef HAVE_NL_PARSE_WITH_EXT_ACK
6006         struct netlink_ext_ack *extack = NULL;
6007 #endif
6008         int portid = NETLINK_CB(cb->skb).portid;
6009         int seq = cb->nlh->nlmsg_seq;
6010         int idx = plist->lgpl_index;
6011         int rc = 0, i = 0;
6012
6013 #ifdef HAVE_NL_DUMP_WITH_EXT_ACK
6014         extack = cb->extack;
6015 #endif
6016         if (!plist->lgpl_index) {
6017                 const struct ln_key_list *all[] = {
6018                         &ping_props_list, &ping_peer_ni_list, NULL
6019                 };
6020
6021                 rc = lnet_genl_send_scalar_list(msg, portid, seq,
6022                                                 &lnet_family,
6023                                                 NLM_F_CREATE | NLM_F_MULTI,
6024                                                 LNET_CMD_PING, all);
6025                 if (rc < 0) {
6026                         NL_SET_ERR_MSG(extack, "failed to send key table");
6027                         GOTO(send_error, rc);
6028                 }
6029
6030                 genradix_init(&plist->lgpl_failed);
6031         }
6032
6033         while (idx < plist->lgpl_list_count) {
6034                 struct lnet_nid primary_nid = LNET_ANY_NID;
6035                 struct lnet_genl_ping_list peers;
6036                 struct lnet_processid *id;
6037                 struct nlattr *nid_list;
6038                 struct lnet_peer *lp;
6039                 bool mr_flag = false;
6040                 unsigned int count;
6041                 void *hdr = NULL;
6042
6043                 id = genradix_ptr(&plist->lgpl_list, idx++);
6044                 if (nid_is_lo0(&id->nid))
6045                         continue;
6046
6047                 rc = lnet_ping(id, &plist->lgpl_src_nid, plist->lgpl_timeout,
6048                                &peers, lnet_interfaces_max);
6049                 if (rc < 0) {
6050                         struct lnet_fail_ping *fail;
6051
6052                         fail = genradix_ptr_alloc(&plist->lgpl_failed,
6053                                                   plist->lgpl_failed_count++,
6054                                                   GFP_ATOMIC);
6055                         if (!fail) {
6056                                 NL_SET_ERR_MSG(extack,
6057                                                "failed to allocate failed NID");
6058                                 GOTO(send_error, rc);
6059                         }
6060                         fail->lfp_id = *id;
6061                         fail->lfp_errno = rc;
6062                         goto cant_reach;
6063                 }
6064
6065                 mutex_lock(&the_lnet.ln_api_mutex);
6066                 lp = lnet_find_peer(&id->nid);
6067                 if (lp) {
6068                         primary_nid = lp->lp_primary_nid;
6069                         mr_flag = lnet_peer_is_multi_rail(lp);
6070                         lnet_peer_decref_locked(lp);
6071                 }
6072                 mutex_unlock(&the_lnet.ln_api_mutex);
6073
6074                 hdr = genlmsg_put(msg, portid, seq, &lnet_family,
6075                                   NLM_F_MULTI, LNET_CMD_PING);
6076                 if (!hdr) {
6077                         NL_SET_ERR_MSG(extack, "failed to send values");
6078                         genlmsg_cancel(msg, hdr);
6079                         GOTO(send_error, rc = -EMSGSIZE);
6080                 }
6081
6082                 if (i++ == 0)
6083                         nla_put_string(msg, LNET_PING_ATTR_HDR, "");
6084
6085                 nla_put_string(msg, LNET_PING_ATTR_PRIMARY_NID,
6086                                libcfs_nidstr(&primary_nid));
6087                 if (mr_flag)
6088                         nla_put_flag(msg, LNET_PING_ATTR_MULTIRAIL);
6089
6090                 nid_list = nla_nest_start(msg, LNET_PING_ATTR_PEER_NI_LIST);
6091                 for (count = 0; count < rc; count++) {
6092                         struct lnet_processid *result;
6093                         struct nlattr *nid_attr;
6094                         char *idstr;
6095
6096                         result = genradix_ptr(&peers.lgpl_list, count);
6097                         if (nid_is_lo0(&result->nid))
6098                                 continue;
6099
6100                         nid_attr = nla_nest_start(msg, count + 1);
6101                         if (gnlh->version == 1)
6102                                 idstr = libcfs_nidstr(&result->nid);
6103                         else
6104                                 idstr = libcfs_idstr(result);
6105                         nla_put_string(msg, LNET_PING_PEER_NI_ATTR_NID, idstr);
6106                         nla_nest_end(msg, nid_attr);
6107                 }
6108                 nla_nest_end(msg, nid_list);
6109                 genlmsg_end(msg, hdr);
6110 cant_reach:
6111                 genradix_free(&peers.lgpl_list);
6112         }
6113
6114         for (i = 0; i < plist->lgpl_failed_count; i++) {
6115                 struct lnet_fail_ping *fail;
6116                 void *hdr;
6117
6118                 fail = genradix_ptr(&plist->lgpl_failed, i);
6119
6120                 hdr = genlmsg_put(msg, portid, seq, &lnet_family,
6121                                   NLM_F_MULTI, LNET_CMD_PING);
6122                 if (!hdr) {
6123                         NL_SET_ERR_MSG(extack, "failed to send failed values");
6124                         genlmsg_cancel(msg, hdr);
6125                         GOTO(send_error, rc = -EMSGSIZE);
6126                 }
6127
6128                 if (i == 0)
6129                         nla_put_string(msg, LNET_PING_ATTR_HDR, "");
6130
6131                 nla_put_string(msg, LNET_PING_ATTR_PRIMARY_NID,
6132                                libcfs_nidstr(&fail->lfp_id.nid));
6133                 nla_put_s16(msg, LNET_PING_ATTR_ERRNO, fail->lfp_errno);
6134                 genlmsg_end(msg, hdr);
6135         }
6136         rc = 0; /* don't treat it as an error */
6137
6138         plist->lgpl_index = idx;
6139 send_error:
6140         return lnet_nl_send_error(cb->skb, portid, seq, rc);
6141 }
6142
6143 #ifndef HAVE_NETLINK_CALLBACK_START
6144 static int lnet_old_ping_show_dump(struct sk_buff *msg,
6145                                    struct netlink_callback *cb)
6146 {
6147         if (!cb->args[0]) {
6148                 int rc = lnet_ping_show_start(cb);
6149
6150                 if (rc < 0)
6151                         return rc;
6152         }
6153
6154         return lnet_ping_show_dump(msg, cb);
6155 }
6156 #endif
6157
6158 static const struct genl_multicast_group lnet_mcast_grps[] = {
6159         { .name =       "ip2net",       },
6160         { .name =       "net",          },
6161         { .name =       "route",        },
6162         { .name =       "ping",         },
6163 };
6164
6165 static const struct genl_ops lnet_genl_ops[] = {
6166         {
6167                 .cmd            = LNET_CMD_NETS,
6168                 .flags          = GENL_ADMIN_PERM,
6169 #ifdef HAVE_NETLINK_CALLBACK_START
6170                 .start          = lnet_net_show_start,
6171                 .dumpit         = lnet_net_show_dump,
6172 #else
6173                 .dumpit         = lnet_old_net_show_dump,
6174 #endif
6175                 .done           = lnet_net_show_done,
6176                 .doit           = lnet_net_cmd,
6177         },
6178         {
6179                 .cmd            = LNET_CMD_ROUTES,
6180 #ifdef HAVE_NETLINK_CALLBACK_START
6181                 .start          = lnet_route_show_start,
6182                 .dumpit         = lnet_route_show_dump,
6183 #else
6184                 .dumpit         = lnet_old_route_show_dump,
6185 #endif
6186                 .done           = lnet_route_show_done,
6187         },
6188         {
6189                 .cmd            = LNET_CMD_PING,
6190 #ifdef HAVE_NETLINK_CALLBACK_START
6191                 .start          = lnet_ping_show_start,
6192                 .dumpit         = lnet_ping_show_dump,
6193 #else
6194                 .dumpit         = lnet_old_ping_show_dump,
6195 #endif
6196                 .done           = lnet_ping_show_done,
6197         },
6198 };
6199
6200 static struct genl_family lnet_family = {
6201         .name           = LNET_GENL_NAME,
6202         .version        = LNET_GENL_VERSION,
6203         .module         = THIS_MODULE,
6204         .netnsok        = true,
6205         .ops            = lnet_genl_ops,
6206         .n_ops          = ARRAY_SIZE(lnet_genl_ops),
6207         .mcgrps         = lnet_mcast_grps,
6208         .n_mcgrps       = ARRAY_SIZE(lnet_mcast_grps),
6209 #ifdef GENL_FAMILY_HAS_RESV_START_OP
6210         .resv_start_op  = __LNET_CMD_MAX_PLUS_ONE,
6211 #endif
6212 };
6213
6214 void LNetDebugPeer(struct lnet_processid *id)
6215 {
6216         lnet_debug_peer(&id->nid);
6217 }
6218 EXPORT_SYMBOL(LNetDebugPeer);
6219
6220 /**
6221  * Determine if the specified peer \a nid is on the local node.
6222  *
6223  * \param nid   peer nid to check
6224  *
6225  * \retval true         If peer NID is on the local node.
6226  * \retval false        If peer NID is not on the local node.
6227  */
6228 bool LNetIsPeerLocal(struct lnet_nid *nid)
6229 {
6230         struct lnet_net *net;
6231         struct lnet_ni *ni;
6232         int cpt;
6233
6234         cpt = lnet_net_lock_current();
6235         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
6236                 list_for_each_entry(ni, &net->net_ni_list, ni_netlist) {
6237                         if (nid_same(&ni->ni_nid, nid)) {
6238                                 lnet_net_unlock(cpt);
6239                                 return true;
6240                         }
6241                 }
6242         }
6243         lnet_net_unlock(cpt);
6244
6245         return false;
6246 }
6247 EXPORT_SYMBOL(LNetIsPeerLocal);
6248
6249 /**
6250  * Retrieve the struct lnet_process_id ID of LNet interface at \a index.
6251  * Note that all interfaces share a same PID, as requested by LNetNIInit().
6252  *
6253  * \param index Index of the interface to look up.
6254  * \param id On successful return, this location will hold the
6255  * struct lnet_process_id ID of the interface.
6256  *
6257  * \retval 0 If an interface exists at \a index.
6258  * \retval -ENOENT If no interface has been found.
6259  */
6260 int
6261 LNetGetId(unsigned int index, struct lnet_processid *id)
6262 {
6263         struct lnet_ni   *ni;
6264         struct lnet_net  *net;
6265         int               cpt;
6266         int               rc = -ENOENT;
6267
6268         LASSERT(the_lnet.ln_refcount > 0);
6269
6270         cpt = lnet_net_lock_current();
6271
6272         list_for_each_entry(net, &the_lnet.ln_nets, net_list) {
6273                 list_for_each_entry(ni, &net->net_ni_list, ni_netlist) {
6274                         if (!nid_is_nid4(&ni->ni_nid))
6275                                 /* FIXME this needs to be handled */
6276                                 continue;
6277                         if (index-- != 0)
6278                                 continue;
6279
6280                         id->nid = ni->ni_nid;
6281                         id->pid = the_lnet.ln_pid;
6282                         rc = 0;
6283                         break;
6284                 }
6285         }
6286
6287         lnet_net_unlock(cpt);
6288         return rc;
6289 }
6290 EXPORT_SYMBOL(LNetGetId);
6291
6292 struct ping_data {
6293         int rc;
6294         int replied;
6295         int pd_unlinked;
6296         struct lnet_handle_md mdh;
6297         struct completion completion;
6298 };
6299
6300 static void
6301 lnet_ping_event_handler(struct lnet_event *event)
6302 {
6303         struct ping_data *pd = event->md_user_ptr;
6304
6305         CDEBUG(D_NET, "ping event (%d %d)%s\n",
6306                event->type, event->status,
6307                event->unlinked ? " unlinked" : "");
6308
6309         if (event->status) {
6310                 if (!pd->rc)
6311                         pd->rc = event->status;
6312         } else if (event->type == LNET_EVENT_REPLY) {
6313                 pd->replied = 1;
6314                 pd->rc = event->mlength;
6315         }
6316
6317         if (event->unlinked)
6318                 pd->pd_unlinked = 1;
6319
6320         if (event->unlinked ||
6321             (event->type == LNET_EVENT_SEND && event->status))
6322                 complete(&pd->completion);
6323 }
6324
6325 static int lnet_ping(struct lnet_processid *id, struct lnet_nid *src_nid,
6326                      signed long timeout, struct lnet_genl_ping_list *plist,
6327                      int n_ids)
6328 {
6329         int id_bytes = sizeof(struct lnet_ni_status); /* For 0@lo */
6330         struct lnet_md md = { NULL };
6331         struct ping_data pd = { 0 };
6332         struct lnet_ping_buffer *pbuf;
6333         struct lnet_processid pid;
6334         struct lnet_ping_iter pi;
6335         int i = 0;
6336         u32 *st;
6337         int nob;
6338         int rc;
6339         int rc2;
6340
6341         genradix_init(&plist->lgpl_list);
6342
6343         /* n_ids limit is arbitrary */
6344         if (n_ids <= 0 || LNET_NID_IS_ANY(&id->nid))
6345                 return -EINVAL;
6346
6347         /* if the user buffer has more space than the lnet_interfaces_max
6348          * then only fill it up to lnet_interfaces_max
6349          */
6350         if (n_ids > lnet_interfaces_max)
6351                 n_ids = lnet_interfaces_max;
6352
6353         if (id->pid == LNET_PID_ANY)
6354                 id->pid = LNET_PID_LUSTRE;
6355
6356         id_bytes += lnet_ping_sts_size(&id->nid) * n_ids;
6357         pbuf = lnet_ping_buffer_alloc(id_bytes, GFP_NOFS);
6358         if (!pbuf)
6359                 return -ENOMEM;
6360
6361         /* initialize md content */
6362         md.start     = &pbuf->pb_info;
6363         md.length    = id_bytes;
6364         md.threshold = 2; /* GET/REPLY */
6365         md.max_size  = 0;
6366         md.options   = LNET_MD_TRUNCATE;
6367         md.user_ptr  = &pd;
6368         md.handler   = lnet_ping_event_handler;
6369
6370         init_completion(&pd.completion);
6371
6372         rc = LNetMDBind(&md, LNET_UNLINK, &pd.mdh);
6373         if (rc != 0) {
6374                 CERROR("Can't bind MD: %d\n", rc);
6375                 goto fail_ping_buffer_decref;
6376         }
6377
6378         rc = LNetGet(src_nid, pd.mdh, id, LNET_RESERVED_PORTAL,
6379                      LNET_PROTO_PING_MATCHBITS, 0, false);
6380         if (rc != 0) {
6381                 /* Don't CERROR; this could be deliberate! */
6382                 rc2 = LNetMDUnlink(pd.mdh);
6383                 LASSERT(rc2 == 0);
6384
6385                 /* NB must wait for the UNLINK event below... */
6386         }
6387
6388         /* Ensure completion in finite time... */
6389         wait_for_completion_timeout(&pd.completion, timeout);
6390         if (!pd.pd_unlinked) {
6391                 LNetMDUnlink(pd.mdh);
6392                 wait_for_completion(&pd.completion);
6393         }
6394
6395         if (!pd.replied) {
6396                 rc = pd.rc ?: -EIO;
6397                 goto fail_ping_buffer_decref;
6398         }
6399
6400         nob = pd.rc;
6401         LASSERT(nob >= 0 && nob <= id_bytes);
6402
6403         rc = -EPROTO;           /* if I can't parse... */
6404
6405         if (nob < LNET_PING_INFO_HDR_SIZE) {
6406                 CERROR("%s: ping info too short %d\n",
6407                        libcfs_idstr(id), nob);
6408                 goto fail_ping_buffer_decref;
6409         }
6410
6411         if (pbuf->pb_info.pi_magic == __swab32(LNET_PROTO_PING_MAGIC)) {
6412                 lnet_swap_pinginfo(pbuf);
6413         } else if (pbuf->pb_info.pi_magic != LNET_PROTO_PING_MAGIC) {
6414                 CERROR("%s: Unexpected magic %08x\n",
6415                        libcfs_idstr(id), pbuf->pb_info.pi_magic);
6416                 goto fail_ping_buffer_decref;
6417         }
6418
6419         if ((pbuf->pb_info.pi_features & LNET_PING_FEAT_NI_STATUS) == 0) {
6420                 CERROR("%s: ping w/o NI status: 0x%x\n",
6421                        libcfs_idstr(id), pbuf->pb_info.pi_features);
6422                 goto fail_ping_buffer_decref;
6423         }
6424
6425         /* Test if smaller than lnet_pinginfo with just one pi_ni status info.
6426          * That one might contain size when large nids are used.
6427          */
6428         if (nob < offsetof(struct lnet_ping_info, pi_ni[1])) {
6429                 CERROR("%s: Short reply %d(%lu min)\n",
6430                        libcfs_idstr(id), nob,
6431                        offsetof(struct lnet_ping_info, pi_ni[1]));
6432                 goto fail_ping_buffer_decref;
6433         }
6434
6435         if (ping_info_count_entries(pbuf) < n_ids) {
6436                 n_ids = ping_info_count_entries(pbuf);
6437                 id_bytes = lnet_ping_info_size(&pbuf->pb_info);
6438         }
6439
6440         if (nob < id_bytes) {
6441                 CERROR("%s: Short reply %d(%d expected)\n",
6442                        libcfs_idstr(id), nob, id_bytes);
6443                 goto fail_ping_buffer_decref;
6444         }
6445
6446         for (st = ping_iter_first(&pi, pbuf, &pid.nid);
6447              st;
6448              st = ping_iter_next(&pi, &pid.nid)) {
6449                 id = genradix_ptr_alloc(&plist->lgpl_list, i++, GFP_ATOMIC);
6450                 if (!id) {
6451                         rc = -ENOMEM;
6452                         goto fail_ping_buffer_decref;
6453                 }
6454
6455                 id->pid = pbuf->pb_info.pi_pid;
6456                 id->nid = pid.nid;
6457         }
6458         rc = i;
6459 fail_ping_buffer_decref:
6460         lnet_ping_buffer_decref(pbuf);
6461         return rc;
6462 }
6463
6464 static int
6465 lnet_discover(struct lnet_process_id id4, __u32 force,
6466               struct lnet_process_id __user *ids, int n_ids)
6467 {
6468         struct lnet_peer_ni *lpni;
6469         struct lnet_peer_ni *p;
6470         struct lnet_peer *lp;
6471         struct lnet_process_id *buf;
6472         struct lnet_processid id;
6473         int cpt;
6474         int i;
6475         int rc;
6476
6477         if (n_ids <= 0 ||
6478             id4.nid == LNET_NID_ANY)
6479                 return -EINVAL;
6480
6481         lnet_pid4_to_pid(id4, &id);
6482         if (id.pid == LNET_PID_ANY)
6483                 id.pid = LNET_PID_LUSTRE;
6484
6485         /*
6486          * If the user buffer has more space than the lnet_interfaces_max,
6487          * then only fill it up to lnet_interfaces_max.
6488          */
6489         if (n_ids > lnet_interfaces_max)
6490                 n_ids = lnet_interfaces_max;
6491
6492         CFS_ALLOC_PTR_ARRAY(buf, n_ids);
6493         if (!buf)
6494                 return -ENOMEM;
6495
6496         cpt = lnet_net_lock_current();
6497         lpni = lnet_peerni_by_nid_locked(&id.nid, NULL, cpt);
6498         if (IS_ERR(lpni)) {
6499                 rc = PTR_ERR(lpni);
6500                 goto out;
6501         }
6502
6503         /*
6504          * Clearing the NIDS_UPTODATE flag ensures the peer will
6505          * be discovered, provided discovery has not been disabled.
6506          */
6507         lp = lpni->lpni_peer_net->lpn_peer;
6508         spin_lock(&lp->lp_lock);
6509         lp->lp_state &= ~LNET_PEER_NIDS_UPTODATE;
6510         /* If the force flag is set, force a PING and PUSH as well. */
6511         if (force)
6512                 lp->lp_state |= LNET_PEER_FORCE_PING | LNET_PEER_FORCE_PUSH;
6513         spin_unlock(&lp->lp_lock);
6514         rc = lnet_discover_peer_locked(lpni, cpt, true);
6515         if (rc)
6516                 goto out_decref;
6517
6518         /* The lpni (or lp) for this NID may have changed and our ref is
6519          * the only thing keeping the old one around. Release the ref
6520          * and lookup the lpni again
6521          */
6522         lnet_peer_ni_decref_locked(lpni);
6523         lpni = lnet_peer_ni_find_locked(&id.nid);
6524         if (!lpni) {
6525                 rc = -ENOENT;
6526                 goto out;
6527         }
6528         lp = lpni->lpni_peer_net->lpn_peer;
6529
6530         i = 0;
6531         p = NULL;
6532         while ((p = lnet_get_next_peer_ni_locked(lp, NULL, p)) != NULL) {
6533                 buf[i].pid = id.pid;
6534                 buf[i].nid = lnet_nid_to_nid4(&p->lpni_nid);
6535                 if (++i >= n_ids)
6536                         break;
6537         }
6538         rc = i;
6539
6540 out_decref:
6541         lnet_peer_ni_decref_locked(lpni);
6542 out:
6543         lnet_net_unlock(cpt);
6544
6545         if (rc >= 0)
6546                 if (copy_to_user(ids, buf, rc * sizeof(*buf)))
6547                         rc = -EFAULT;
6548         CFS_FREE_PTR_ARRAY(buf, n_ids);
6549
6550         return rc;
6551 }
6552
6553 /**
6554  * Retrieve peer discovery status.
6555  *
6556  * \retval 1 if lnet_peer_discovery_disabled is 0
6557  * \retval 0 if lnet_peer_discovery_disabled is 1
6558  */
6559 int
6560 LNetGetPeerDiscoveryStatus(void)
6561 {
6562         return !lnet_peer_discovery_disabled;
6563 }
6564 EXPORT_SYMBOL(LNetGetPeerDiscoveryStatus);