Whamcloud - gitweb
LU-13837 lnet: Introduce constant for net ID of LNET_NID_ANY
[fs/lustre-release.git] / lnet / utils / lnetconfig / liblnetconfig.c
1 /*
2  * LGPL 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 Lesser General Public License as
8  * published by the Free Software Foundation; either version 2.1 of the
9  * License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
18  *
19  * LGPL HEADER END
20  *
21  * Copyright (c) 2014, 2017, Intel Corporation.
22  *
23  * Author:
24  *   Amir Shehata <amir.shehata@intel.com>
25  */
26
27 /*
28  * There are two APIs:
29  *  1. APIs that take the actual parameters expanded.  This is for other
30  *  entities that would like to link against the library and call the APIs
31  *  directly without having to form an intermediate representation.
32  *  2. APIs that take a YAML file and parses out the information there and
33  *  calls the APIs mentioned in 1
34  */
35
36 #include <errno.h>
37 #include <limits.h>
38 #include <byteswap.h>
39 #include <netdb.h>
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>
43 #include <unistd.h>
44 #include <sys/ioctl.h>
45 #include <net/if.h>
46 #include <libcfs/util/ioctl.h>
47 #include <linux/lnet/lnetctl.h>
48 #include "liblnd.h"
49 #include <sys/types.h>
50 #include <sys/stat.h>
51 #include <fcntl.h>
52 #include <ifaddrs.h>
53 #include <rdma/rdma_user_cm.h>
54 #include "liblnetconfig.h"
55 #include <glob.h>
56 #include <libcfs/util/param.h>
57
58 #define CONFIG_CMD              "configure"
59 #define UNCONFIG_CMD            "unconfigure"
60 #define ADD_CMD                 "add"
61 #define DEL_CMD                 "del"
62 #define SHOW_CMD                "show"
63 #define DBG_CMD                 "dbg"
64 #define MANAGE_CMD              "manage"
65
66 #define MAX_NUM_IPS             128
67
68 #define modparam_path "/sys/module/lnet/parameters/"
69 #define o2ib_modparam_path "/sys/module/ko2iblnd/parameters/"
70 #define gni_nid_path "/proc/cray_xt/"
71
72 #ifndef HAVE_USRSPC_RDMA_PS_TCP
73 #define RDMA_PS_TCP 0x0106
74 #endif
75
76 const char *gmsg_stat_names[] = {"sent_stats", "received_stats",
77                                  "dropped_stats"};
78
79 /*
80  * lustre_lnet_ip_range_descr
81  *      Describes an IP range.
82  *      Each octect is an expression
83  */
84 struct lustre_lnet_ip_range_descr {
85         struct list_head ipr_entry;
86         struct list_head ipr_expr;
87 };
88
89 /*
90  * lustre_lnet_ip2nets
91  *      Describes an ip2nets rule. This can be on a list of rules.
92  */
93 struct lustre_lnet_ip2nets {
94         struct lnet_dlc_network_descr ip2nets_net;
95         struct list_head ip2nets_ip_ranges;
96 };
97
98 int open_sysfs_file(const char *path, const char *attr, const int mode)
99 {
100         int fd;
101         char filename[LNET_MAX_STR_LEN];
102
103         if (strlen(path) + strlen(attr) >= LNET_MAX_STR_LEN)
104                 return -1;
105
106         snprintf(filename, sizeof(filename), "%s%s",
107                  path, attr);
108
109         fd = open(filename, mode);
110
111         return fd;
112 }
113
114 static int read_sysfs_file(const char *path, const char *attr,
115                            void *val, const size_t size, const int nelem)
116 {
117         int fd;
118         int rc = LUSTRE_CFG_RC_GENERIC_ERR;
119
120         fd = open_sysfs_file(path, attr, O_RDONLY);
121         if (fd == -1)
122                 return LUSTRE_CFG_RC_NO_MATCH;
123
124         if (read(fd, val, size * nelem) == -1)
125                 goto close_fd;
126
127         rc = LUSTRE_CFG_RC_NO_ERR;
128
129 close_fd:
130         close(fd);
131         return rc;
132 }
133
134 static int write_sysfs_file(const char *path, const char *attr,
135                             void *val, const size_t size, const int nelem)
136 {
137         int fd;
138         int rc = LUSTRE_CFG_RC_GENERIC_ERR;
139
140         fd = open_sysfs_file(path, attr, O_WRONLY | O_TRUNC);
141         if (fd == -1)
142                 return LUSTRE_CFG_RC_NO_MATCH;
143
144         if (write(fd, val, size * nelem) == -1)
145                 goto close_fd;
146
147         rc = LUSTRE_CFG_RC_NO_ERR;
148
149 close_fd:
150         close(fd);
151         return rc;
152 }
153
154 /*
155  * free_intf_descr
156  *      frees the memory allocated for an intf descriptor.
157  */
158 void free_intf_descr(struct lnet_dlc_intf_descr *intf_descr)
159 {
160         if (!intf_descr)
161                 return;
162
163         if (intf_descr->cpt_expr != NULL)
164                 cfs_expr_list_free(intf_descr->cpt_expr);
165         free(intf_descr);
166 }
167
168 /*
169  * lustre_lnet_add_ip_range
170  * Formatting:
171  *      given a string of the format:
172  *      <expr.expr.expr.expr> parse each expr into
173  *      a lustre_lnet_ip_range_descr structure and insert on the list.
174  *
175  *      This function is called from
176  *              YAML on each ip-range.
177  *              As a result of lnetctl command
178  *              When building a NID or P2P selection rules
179  */
180 int lustre_lnet_add_ip_range(struct list_head *list, char *str_ip_range)
181 {
182         struct lustre_lnet_ip_range_descr *ip_range;
183         int rc;
184
185         ip_range = calloc(1, sizeof(*ip_range));
186         if (ip_range == NULL)
187                 return LUSTRE_CFG_RC_OUT_OF_MEM;
188
189         INIT_LIST_HEAD(&ip_range->ipr_entry);
190         INIT_LIST_HEAD(&ip_range->ipr_expr);
191
192         rc = cfs_ip_addr_parse(str_ip_range, strlen(str_ip_range),
193                                &ip_range->ipr_expr);
194         if (rc != 0)
195                 return LUSTRE_CFG_RC_BAD_PARAM;
196
197         list_add_tail(&ip_range->ipr_entry, list);
198
199         return LUSTRE_CFG_RC_NO_ERR;
200 }
201
202 int lustre_lnet_add_intf_descr(struct list_head *list, char *intf, int len)
203 {
204         char *open_sq_bracket = NULL, *close_sq_bracket = NULL,
205              *intf_name;
206         struct lnet_dlc_intf_descr *intf_descr = NULL;
207         int rc;
208         char intf_string[LNET_MAX_STR_LEN];
209
210         if (len >= LNET_MAX_STR_LEN)
211                 return LUSTRE_CFG_RC_BAD_PARAM;
212
213         strncpy(intf_string, intf, len);
214         intf_string[len] = '\0';
215
216         intf_descr = calloc(1, sizeof(*intf_descr));
217         if (intf_descr == NULL)
218                 return LUSTRE_CFG_RC_OUT_OF_MEM;
219
220         INIT_LIST_HEAD(&intf_descr->intf_on_network);
221
222         intf_name = intf_string;
223         open_sq_bracket = strchr(intf_string, '[');
224         if (open_sq_bracket != NULL) {
225                 close_sq_bracket = strchr(intf_string, ']');
226                 if (close_sq_bracket == NULL) {
227                         free(intf_descr);
228                         return LUSTRE_CFG_RC_BAD_PARAM;
229                 }
230                 rc = cfs_expr_list_parse(open_sq_bracket,
231                                          strlen(open_sq_bracket), 0, UINT_MAX,
232                                          &intf_descr->cpt_expr);
233                 if (rc < 0) {
234                         free(intf_descr);
235                         return LUSTRE_CFG_RC_BAD_PARAM;
236                 }
237                 strncpy(intf_descr->intf_name, intf_name,
238                         open_sq_bracket - intf_name);
239                 intf_descr->intf_name[open_sq_bracket - intf_name] = '\0';
240         } else {
241                 strcpy(intf_descr->intf_name, intf_name);
242                 intf_descr->cpt_expr = NULL;
243         }
244
245         list_add_tail(&intf_descr->intf_on_network, list);
246
247         return LUSTRE_CFG_RC_NO_ERR;
248 }
249
250 void lustre_lnet_init_nw_descr(struct lnet_dlc_network_descr *nw_descr)
251 {
252         if (nw_descr != NULL) {
253                 nw_descr->nw_id = 0;
254                 INIT_LIST_HEAD(&nw_descr->network_on_rule);
255                 INIT_LIST_HEAD(&nw_descr->nw_intflist);
256         }
257 }
258
259 int lustre_lnet_parse_nidstr(char *nidstr, lnet_nid_t *lnet_nidlist,
260                              int max_nids, char *err_str)
261 {
262         int rc, num_nids = 0;
263         struct list_head nidlist;
264
265         if (!nidstr) {
266                 snprintf(err_str, LNET_MAX_STR_LEN, "supplied nidstr is NULL");
267                 return LUSTRE_CFG_RC_BAD_PARAM;
268         }
269
270         if (strchr(nidstr, '*')) {
271                 snprintf(err_str, LNET_MAX_STR_LEN,
272                          "asterisk not allowed in nidstring \"%s\"", nidstr);
273                 return LUSTRE_CFG_RC_BAD_PARAM;
274         }
275
276         INIT_LIST_HEAD(&nidlist);
277         rc = cfs_parse_nidlist(nidstr, strlen(nidstr), &nidlist);
278         if (rc == 0) {
279                 snprintf(err_str, LNET_MAX_STR_LEN,
280                          "Unable to parse nidlist from: %s\n", nidstr);
281                 return LUSTRE_CFG_RC_BAD_PARAM;
282         }
283
284         if (list_empty(&nidlist)) {
285                 snprintf(err_str, LNET_MAX_STR_LEN,
286                          "\"%s\" does not specify any valid nid lists", nidstr);
287                 return LUSTRE_CFG_RC_BAD_PARAM;
288         }
289
290         num_nids = cfs_expand_nidlist(&nidlist, lnet_nidlist, max_nids);
291         cfs_free_nidlist(&nidlist);
292
293         if (num_nids == -1) {
294                 snprintf(err_str, LNET_MAX_STR_LEN,
295                          "\"%s\" specifies more than the %d NIDs allowed by this operation.",
296                          nidstr, max_nids);
297                 return LUSTRE_CFG_RC_BAD_PARAM;
298         }
299
300         if (num_nids < 0) {
301                 snprintf(err_str, LNET_MAX_STR_LEN,
302                          "Failed to expand nidstr: %s", strerror(num_nids));
303                 return LUSTRE_CFG_RC_OUT_OF_MEM;
304         }
305
306         if (num_nids == 0) {
307                 snprintf(err_str, LNET_MAX_STR_LEN,
308                          "\"%s\" did not expand to any nids", nidstr);
309                 return LUSTRE_CFG_RC_BAD_PARAM;
310         }
311
312         return num_nids;
313 }
314
315 /*
316  * format expected:
317  *      <intf>[<expr>], <intf>[<expr>],..
318  */
319 int lustre_lnet_parse_interfaces(char *intf_str,
320                                  struct lnet_dlc_network_descr *nw_descr)
321 {
322         char *open_square;
323         char *close_square;
324         char *comma;
325         char *cur = intf_str, *next = NULL;
326         char *end = intf_str + strlen(intf_str);
327         int rc, len;
328         struct lnet_dlc_intf_descr *intf_descr, *tmp;
329
330         if (nw_descr == NULL)
331                 return LUSTRE_CFG_RC_BAD_PARAM;
332
333         while (cur < end) {
334                 open_square = strchr(cur, '[');
335                 if (open_square != NULL) {
336                         close_square = strchr(cur, ']');
337                         if (close_square == NULL) {
338                                 rc = LUSTRE_CFG_RC_BAD_PARAM;
339                                 goto failed;
340                         }
341
342                         comma = strchr(cur, ',');
343                         if (comma != NULL && comma > close_square) {
344                                 next = comma + 1;
345                                 len = next - close_square;
346                         } else {
347                                 len = strlen(cur);
348                                 next = cur + len;
349                         }
350                 } else {
351                         comma = strchr(cur, ',');
352                         if (comma != NULL) {
353                                 next = comma + 1;
354                                 len = comma - cur;
355                         } else {
356                                 len = strlen(cur);
357                                 next = cur + len;
358                         }
359                 }
360
361                 rc = lustre_lnet_add_intf_descr(&nw_descr->nw_intflist, cur, len);
362                 if (rc != LUSTRE_CFG_RC_NO_ERR)
363                         goto failed;
364
365                 cur = next;
366         }
367
368         return LUSTRE_CFG_RC_NO_ERR;
369
370 failed:
371         list_for_each_entry_safe(intf_descr, tmp, &nw_descr->nw_intflist,
372                                  intf_on_network) {
373                 list_del(&intf_descr->intf_on_network);
374                 free_intf_descr(intf_descr);
375         }
376
377         return rc;
378 }
379
380 int lustre_lnet_config_lib_init(void)
381 {
382         return register_ioc_dev(LNET_DEV_ID, LNET_DEV_PATH);
383 }
384
385 void lustre_lnet_config_lib_uninit(void)
386 {
387         unregister_ioc_dev(LNET_DEV_ID);
388 }
389
390 int lustre_lnet_config_ni_system(bool up, bool load_ni_from_mod,
391                                  int seq_no, struct cYAML **err_rc)
392 {
393         struct libcfs_ioctl_data data;
394         unsigned int opc;
395         int rc;
396         char err_str[LNET_MAX_STR_LEN] = "\"Success\"";
397
398         LIBCFS_IOC_INIT(data);
399
400         /* Reverse logic is used here in order not to change
401          * the lctl utility */
402         data.ioc_flags = load_ni_from_mod ? 0 : 1;
403
404         opc = up ? IOC_LIBCFS_CONFIGURE : IOC_LIBCFS_UNCONFIGURE;
405
406         rc = l_ioctl(LNET_DEV_ID, opc, &data);
407         if (rc != 0) {
408                 snprintf(err_str,
409                         sizeof(err_str),
410                         "\"LNet %s error: %s\"", (up) ? "configure" :
411                         "unconfigure", strerror(errno));
412                 rc = -errno;
413         }
414
415         cYAML_build_error(rc, seq_no, (up) ? CONFIG_CMD : UNCONFIG_CMD,
416                           "lnet", err_str, err_rc);
417
418         return rc;
419 }
420
421 static int dispatch_peer_ni_cmd(__u32 cmd, struct lnet_ioctl_peer_cfg *data,
422                                 char *err_str, char *cmd_str)
423 {
424         int rc;
425
426         rc = l_ioctl(LNET_DEV_ID, cmd, data);
427         if (rc) {
428                 rc = -errno;
429                 snprintf(err_str, LNET_MAX_STR_LEN,
430                          "\"%s peer ni operation failed: %s\"",
431                          cmd_str, strerror(errno));
432         }
433
434         return rc;
435 }
436
437 static int infra_ping_nid(char *ping_nids, char *oper, int param, int ioc_call,
438                           int seq_no, struct cYAML **show_rc,
439                           struct cYAML **err_rc)
440 {
441         void *data = NULL;
442         struct lnet_ioctl_ping_data ping;
443         struct cYAML *root = NULL, *ping_node = NULL, *item = NULL,
444                      *first_seq = NULL, *tmp = NULL, *peer_ni = NULL;
445         struct lnet_process_id id;
446         char err_str[LNET_MAX_STR_LEN] = {0};
447         char *sep, *token, *end;
448         char buf[6];
449         size_t len;
450         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
451         int i;
452         bool flag = false;
453
454         len = (sizeof(struct lnet_process_id) * LNET_INTERFACES_MAX_DEFAULT);
455
456         data = calloc(1, len);
457         if (data == NULL)
458                 goto out;
459
460         /* create struct cYAML root object */
461         root = cYAML_create_object(NULL, NULL);
462         if (root == NULL)
463                 goto out;
464
465         ping_node = cYAML_create_seq(root, oper);
466         if (ping_node == NULL)
467                 goto out;
468
469         /* tokenise each nid in string ping_nids */
470         token = strtok(ping_nids, ",");
471
472         do {
473                 item = cYAML_create_seq_item(ping_node);
474                 if (item == NULL)
475                         goto out;
476
477                 if (first_seq == NULL)
478                         first_seq = item;
479
480                 /* check if '-' is a part of NID, token */
481                 sep = strchr(token, '-');
482                 if (sep == NULL) {
483                         id.pid = LNET_PID_ANY;
484                         /* if no net is specified, libcfs_str2nid() will assume tcp */
485                         id.nid = libcfs_str2nid(token);
486                         if (id.nid == LNET_NID_ANY) {
487                                 snprintf(err_str, sizeof(err_str),
488                                          "\"cannot parse NID '%s'\"",
489                                          token);
490                                 rc = LUSTRE_CFG_RC_BAD_PARAM;
491                                 cYAML_build_error(rc, seq_no, MANAGE_CMD,
492                                                   oper, err_str, err_rc);
493                                 continue;
494                         }
495                 } else {
496                         if (token[0] == 'u' || token[0] == 'U')
497                                 id.pid = (strtoul(&token[1], &end, 0) |
498                                           (LNET_PID_USERFLAG));
499                         else
500                                 id.pid = strtoul(token, &end, 0);
501
502                         /* assuming '-' is part of hostname */
503                         if (end != sep) {
504                                 id.pid = LNET_PID_ANY;
505                                 id.nid = libcfs_str2nid(token);
506                                 if (id.nid == LNET_NID_ANY) {
507                                         snprintf(err_str, sizeof(err_str),
508                                                  "\"cannot parse NID '%s'\"",
509                                                  token);
510                                         rc = LUSTRE_CFG_RC_BAD_PARAM;
511                                         cYAML_build_error(rc, seq_no, MANAGE_CMD,
512                                                           oper, err_str,
513                                                           err_rc);
514                                         continue;
515                                 }
516                         } else {
517                                 id.nid = libcfs_str2nid(sep + 1);
518                                 if (id.nid == LNET_NID_ANY) {
519                                         snprintf(err_str, sizeof(err_str),
520                                                  "\"cannot parse NID '%s'\"",
521                                                  token);
522                                         rc = LUSTRE_CFG_RC_BAD_PARAM;
523                                         cYAML_build_error(rc, seq_no, MANAGE_CMD,
524                                                           oper, err_str,
525                                                           err_rc);
526                                         continue;
527                                 }
528                         }
529                 }
530                 LIBCFS_IOC_INIT_V2(ping, ping_hdr);
531                 ping.ping_hdr.ioc_len = sizeof(ping);
532                 ping.ping_id          = id;
533                 ping.op_param         = param;
534                 ping.ping_count       = LNET_INTERFACES_MAX_DEFAULT;
535                 ping.ping_buf         = data;
536
537                 rc = l_ioctl(LNET_DEV_ID, ioc_call, &ping);
538                 if (rc != 0) {
539                         snprintf(err_str,
540                                  sizeof(err_str), "failed to %s %s: %s\n", oper,
541                                  id.pid == LNET_PID_ANY ?
542                                  libcfs_nid2str(id.nid) :
543                                  libcfs_id2str(id), strerror(errno));
544                         rc = LUSTRE_CFG_RC_BAD_PARAM;
545                         cYAML_build_error(rc, seq_no, MANAGE_CMD,
546                                           oper, err_str, err_rc);
547                         continue;
548                 }
549
550                 if (cYAML_create_string(item, "primary nid",
551                                         libcfs_nid2str(ping.ping_id.nid)) == NULL)
552                         goto out;
553
554                 if (cYAML_create_string(item, "Multi-Rail", ping.mr_info ?
555                                         "True" : "False") == NULL)
556                         goto out;
557
558                 tmp = cYAML_create_seq(item, "peer ni");
559                 if (tmp == NULL)
560                         goto out;
561
562                 for (i = 0; i < ping.ping_count; i++) {
563                         if (ping.ping_buf[i].nid == LNET_NID_LO_0)
564                                 continue;
565                         peer_ni = cYAML_create_seq_item(tmp);
566                         if (peer_ni == NULL)
567                                 goto out;
568                         memset(buf, 0, sizeof buf);
569                         snprintf(buf, sizeof buf, "nid");
570                         if (cYAML_create_string(peer_ni, buf,
571                                                 libcfs_nid2str(ping.ping_buf[i].nid)) == NULL)
572                                 goto out;
573                 }
574
575                 flag = true;
576
577         } while ((token = strtok(NULL, ",")) != NULL);
578
579         if (flag)
580                 rc = LUSTRE_CFG_RC_NO_ERR;
581
582 out:
583         if (data)
584                 free(data);
585         if (show_rc == NULL || rc != LUSTRE_CFG_RC_NO_ERR) {
586                 cYAML_free_tree(root);
587         } else if (show_rc != NULL && *show_rc != NULL) {
588                 struct cYAML *show_node;
589                 show_node = cYAML_get_object_item(*show_rc, oper);
590                 if (show_node != NULL && cYAML_is_sequence(show_node)) {
591                         cYAML_insert_child(show_node, first_seq);
592                         free(ping_node);
593                         free(root);
594                 } else if (show_node == NULL) {
595                         cYAML_insert_sibling((*show_rc)->cy_child,
596                                              ping_node);
597                         free(root);
598                 } else {
599                         cYAML_free_tree(root);
600                 }
601         } else {
602                 *show_rc = root;
603         }
604
605         return rc;
606 }
607
608 int lustre_lnet_ping_nid(char *ping_nids, int timeout, int seq_no,
609                          struct cYAML **show_rc, struct cYAML **err_rc)
610 {
611         int rc;
612
613         rc = infra_ping_nid(ping_nids, "ping", timeout, IOC_LIBCFS_PING_PEER,
614                             seq_no, show_rc, err_rc);
615         return rc;
616 }
617
618 int lustre_lnet_discover_nid(char *ping_nids, int force, int seq_no,
619                          struct cYAML **show_rc, struct cYAML **err_rc)
620 {
621         int rc;
622
623         rc = infra_ping_nid(ping_nids, "discover", force, IOC_LIBCFS_DISCOVER,
624                             seq_no, show_rc, err_rc);
625         return rc;
626 }
627
628 static int lustre_lnet_handle_peer_nidlist(lnet_nid_t *nidlist, int num_nids,
629                                            bool is_mr, __u32 cmd,
630                                            char *cmd_type, char *err_str)
631 {
632         struct lnet_ioctl_peer_cfg data;
633         int rc, nid_idx;
634
635         if (cmd == IOC_LIBCFS_ADD_PEER_NI) {
636                 /* When adding a peer we first need to create the peer using the
637                  * specified (or implied) primary nid. Then we can add
638                  * additional nids to this peer using the primary nid as a key
639                  */
640                 LIBCFS_IOC_INIT_V2(data, prcfg_hdr);
641                 data.prcfg_mr = is_mr;
642                 data.prcfg_prim_nid = nidlist[0];
643                 data.prcfg_cfg_nid = LNET_NID_ANY;
644
645                 rc = dispatch_peer_ni_cmd(cmd, &data, err_str, cmd_type);
646
647                 if (rc)
648                         return rc;
649         }
650
651         /* Add or delete any specified NIs associated with the specified
652          * (or implied) primary nid
653          */
654         for (nid_idx = 1; nid_idx < num_nids; nid_idx++) {
655                 LIBCFS_IOC_INIT_V2(data, prcfg_hdr);
656                 data.prcfg_mr = is_mr;
657                 data.prcfg_prim_nid = nidlist[0];
658                 data.prcfg_cfg_nid = nidlist[nid_idx];
659
660                 rc = dispatch_peer_ni_cmd(cmd, &data, err_str, cmd_type);
661
662                 if (rc)
663                         return rc;
664         }
665
666         if (cmd == IOC_LIBCFS_DEL_PEER_NI && num_nids == 1) {
667                 /* In the delete case we may have been given just the
668                  * primary nid of the peer. This tells us to delete the peer
669                  * completely (rather than just delete some of its NIs)
670                  */
671                 LIBCFS_IOC_INIT_V2(data, prcfg_hdr);
672                 data.prcfg_prim_nid = nidlist[0];
673                 data.prcfg_cfg_nid = LNET_NID_ANY;
674
675                 rc = dispatch_peer_ni_cmd(cmd, &data, err_str, cmd_type);
676         }
677
678         return rc;
679 }
680
681 static int
682 lustre_lnet_mod_peer_nidlist(lnet_nid_t pnid, lnet_nid_t *lnet_nidlist,
683                              int cmd, int num_nids, bool is_mr, int seq_no,
684                              struct cYAML **err_rc)
685 {
686         int rc = LUSTRE_CFG_RC_NO_ERR;
687         char err_str[LNET_MAX_STR_LEN];
688         lnet_nid_t *lnet_nidlist2 = NULL;
689         int ioc_cmd = (cmd == LNETCTL_ADD_CMD) ? IOC_LIBCFS_ADD_PEER_NI :
690                 IOC_LIBCFS_DEL_PEER_NI;
691         char *cmd_str = (cmd == LNETCTL_ADD_CMD) ? ADD_CMD : DEL_CMD;
692
693         num_nids++;
694         lnet_nidlist2 = calloc(sizeof(*lnet_nidlist2), num_nids);
695         if (!lnet_nidlist2) {
696                 snprintf(err_str, LNET_MAX_STR_LEN, "out of memory");
697                 rc = LUSTRE_CFG_RC_OUT_OF_MEM;
698                 goto out;
699         }
700         lnet_nidlist2[0] = pnid;
701         memcpy(&lnet_nidlist2[1], lnet_nidlist, sizeof(*lnet_nidlist) *
702                                                 (num_nids - 1));
703
704         rc = lustre_lnet_handle_peer_nidlist(lnet_nidlist2,
705                                              num_nids, is_mr, ioc_cmd,
706                                              cmd_str, err_str);
707 out:
708         if (lnet_nidlist2)
709                 free(lnet_nidlist2);
710
711         cYAML_build_error(rc, seq_no, cmd_str, "peer_ni", err_str, err_rc);
712         return rc;
713 }
714
715 static void
716 replace_sep(char *str, char sep, char newsep)
717 {
718         int bracket = 0;
719         int i;
720         if (!str)
721                 return;
722         for (i = 0; i < strlen(str); i++) {
723                 /* don't replace ',' within [] */
724                 if (str[i] == '[')
725                         bracket++;
726                 else if (str[i] == ']')
727                         bracket--;
728                 else if (str[i] == sep && bracket == 0)
729                         str[i] = newsep;
730         }
731 }
732
733 int lustre_lnet_modify_peer(char *prim_nid, char *nids, bool is_mr,
734                             int cmd, int seq_no, struct cYAML **err_rc)
735 {
736         int num_nids, rc;
737         char err_str[LNET_MAX_STR_LEN] = "Error";
738         lnet_nid_t lnet_nidlist[LNET_MAX_NIDS_PER_PEER];
739         lnet_nid_t pnid = LNET_NID_ANY;
740
741         if (!prim_nid) {
742                 rc = LUSTRE_CFG_RC_BAD_PARAM;
743                 snprintf(err_str, LNET_MAX_STR_LEN,
744                          "--prim_nid must be specified");
745                 goto out;
746         }
747
748         pnid = libcfs_str2nid(prim_nid);
749         if (pnid == LNET_NID_ANY) {
750                 rc = LUSTRE_CFG_RC_BAD_PARAM;
751                 snprintf(err_str, LNET_MAX_STR_LEN,
752                         "badly formatted primary NID: %s", prim_nid);
753                 goto out;
754         }
755
756         num_nids = 0;
757         if (nids) {
758                 /*
759                 * if there is no primary nid we need to make the first nid in the
760                 * nids list the primary nid
761                 */
762                 replace_sep(nids, ',', ' ');
763                 rc = lustre_lnet_parse_nidstr(nids, lnet_nidlist,
764                                         LNET_MAX_NIDS_PER_PEER, err_str);
765                 if (rc < 0)
766                         goto out;
767
768                 num_nids = rc;
769         }
770
771         rc = lustre_lnet_mod_peer_nidlist(pnid, lnet_nidlist,
772                                           cmd, num_nids, is_mr,
773                                           -1, err_rc);
774
775 out:
776         if (rc != LUSTRE_CFG_RC_NO_ERR)
777                 cYAML_build_error(rc, -1, "peer",
778                                 cmd == LNETCTL_ADD_CMD ? "add" : "del",
779                                 err_str, err_rc);
780
781         return rc;
782 }
783
784 int lustre_lnet_route_common(char *nw, char *nidstr, int hops, int prio,
785                              int sen, int seq_no, struct cYAML **err_rc,
786                              int cmd)
787 {
788         int rc, num_nids, idx;
789         __u32 rnet;
790         char err_str[LNET_MAX_STR_LEN] = "\"generic error\"";
791         struct lnet_ioctl_config_data data;
792         lnet_nid_t lnet_nidlist[LNET_MAX_NIDS_PER_PEER];
793
794         if (nw == NULL || nidstr == NULL) {
795                 snprintf(err_str, LNET_MAX_STR_LEN,
796                          "\"missing mandatory parameter:'%s'\"",
797                          (nw == NULL && nidstr == NULL) ? "network, gateway" :
798                          (nw == NULL) ? "network" : "gateway");
799                 rc = LUSTRE_CFG_RC_MISSING_PARAM;
800                 goto out;
801         }
802
803         rnet = libcfs_str2net(nw);
804         if (rnet == LNET_NET_ANY) {
805                 snprintf(err_str, LNET_MAX_STR_LEN,
806                          "\"cannot parse remote net %s\"", nw);
807                 rc = LUSTRE_CFG_RC_BAD_PARAM;
808                 goto out;
809         }
810
811         replace_sep(nidstr, ',', ' ');
812         rc = lustre_lnet_parse_nidstr(nidstr, lnet_nidlist,
813                                       LNET_MAX_NIDS_PER_PEER, err_str);
814         if (rc < 0)
815                 goto out;
816
817         num_nids = rc;
818
819         for (idx = 0; idx < num_nids; idx++) {
820                 LIBCFS_IOC_INIT_V2(data, cfg_hdr);
821                 data.cfg_net = rnet;
822                 if (cmd == LNETCTL_ADD_CMD) {
823                         data.cfg_config_u.cfg_route.rtr_hop = hops;
824                         data.cfg_config_u.cfg_route.rtr_priority = prio;
825                         data.cfg_config_u.cfg_route.rtr_sensitivity = sen;
826                 }
827
828                 data.cfg_nid = lnet_nidlist[idx];
829
830                 if (cmd == LNETCTL_ADD_CMD)
831                         rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_ADD_ROUTE,
832                                         &data);
833                 else
834                         rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_DEL_ROUTE,
835                                         &data);
836
837                 if (rc != 0 && errno != EEXIST &&
838                         errno != EHOSTUNREACH) {
839                         rc = -errno;
840                         snprintf(err_str, LNET_MAX_STR_LEN,
841                                         "route operation failed: %s",
842                                         strerror(errno));
843                         goto out;
844                 } else if (errno == EEXIST) {
845                         /*
846                          * continue chugging along if one of the
847                          * routes already exists
848                          */
849                         rc = 0;
850                 }
851         }
852
853 out:
854         cYAML_build_error(rc, seq_no,
855                           cmd == LNETCTL_ADD_CMD ? ADD_CMD : DEL_CMD, "route",
856                           err_str, err_rc);
857
858         return rc;
859 }
860
861 int lustre_lnet_config_route(char *nw, char *nidstr, int hops, int prio,
862                              int sen, int seq_no, struct cYAML **err_rc)
863 {
864         int rc;
865         char err_str[LNET_MAX_STR_LEN] = "\"generic error\"";
866
867         if (hops == -1) {
868                 hops = LNET_UNDEFINED_HOPS;
869         } else if (hops < 1 || hops > 255) {
870                 snprintf(err_str, LNET_MAX_STR_LEN,
871                          "\"invalid hop count %d, must be between 1 and 255\"",
872                          hops);
873                 rc = LUSTRE_CFG_RC_OUT_OF_RANGE_PARAM;
874                 goto out;
875         }
876
877         if (prio == -1) {
878                 prio = 0;
879         } else if (prio < 0) {
880                 snprintf(err_str, LNET_MAX_STR_LEN,
881                          "\"invalid priority %d, must be greater than 0\"",
882                          prio);
883                 rc = LUSTRE_CFG_RC_OUT_OF_RANGE_PARAM;
884                 goto out;
885         }
886
887         if (sen == -1) {
888                 sen = 1;
889         } else if (sen < 1) {
890                 snprintf(err_str, LNET_MAX_STR_LEN,
891                          "\"invalid health sensitivity %d, must be 1 or greater\"",
892                          sen);
893                 rc = LUSTRE_CFG_RC_OUT_OF_RANGE_PARAM;
894                 goto out;
895         }
896
897         rc = lustre_lnet_route_common(nw, nidstr, hops, prio, sen, seq_no,
898                                       err_rc, LNETCTL_ADD_CMD);
899         return rc;
900 out:
901         cYAML_build_error(rc, seq_no, ADD_CMD, "route", err_str, err_rc);
902
903         return rc;
904 }
905
906 int lustre_lnet_del_route(char *nw, char *nidstr, int seq_no,
907                           struct cYAML **err_rc)
908 {
909         return lustre_lnet_route_common(nw, nidstr, 0, 0, 0, seq_no, err_rc,
910                                         LNETCTL_DEL_CMD);
911 }
912
913 int lustre_lnet_show_route(char *nw, char *gw, int hops, int prio, int detail,
914                            int seq_no, struct cYAML **show_rc,
915                            struct cYAML **err_rc, bool backup)
916 {
917         struct lnet_ioctl_config_data data;
918         lnet_nid_t gateway_nid;
919         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
920         int l_errno = 0;
921         __u32 net = LNET_NET_ANY;
922         int i;
923         struct cYAML *root = NULL, *route = NULL, *item = NULL;
924         struct cYAML *first_seq = NULL;
925         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
926         bool exist = false;
927
928         if (nw != NULL) {
929                 net = libcfs_str2net(nw);
930                 if (net == LNET_NET_ANY) {
931                         snprintf(err_str,
932                                  sizeof(err_str),
933                                  "\"cannot parse net '%s'\"", nw);
934                         rc = LUSTRE_CFG_RC_BAD_PARAM;
935                         goto out;
936                 }
937
938         } else {
939                 /* show all routes without filtering on net */
940                 net = LNET_NET_ANY;
941         }
942
943         if (gw != NULL) {
944                 gateway_nid = libcfs_str2nid(gw);
945                 if (gateway_nid == LNET_NID_ANY) {
946                         snprintf(err_str,
947                                  sizeof(err_str),
948                                  "\"cannot parse gateway NID '%s'\"", gw);
949                         rc = LUSTRE_CFG_RC_BAD_PARAM;
950                         goto out;
951                 }
952         } else
953                 /* show all routes with out filtering on gateway */
954                 gateway_nid = LNET_NID_ANY;
955
956         if ((hops < 1 && hops != -1) || hops > 255) {
957                 snprintf(err_str,
958                          sizeof(err_str),
959                          "\"invalid hop count %d, must be between 0 and 256\"",
960                          hops);
961                 rc = LUSTRE_CFG_RC_OUT_OF_RANGE_PARAM;
962                 goto out;
963         }
964
965         /* create struct cYAML root object */
966         root = cYAML_create_object(NULL, NULL);
967         if (root == NULL)
968                 goto out;
969
970         route = cYAML_create_seq(root, "route");
971         if (route == NULL)
972                 goto out;
973
974         for (i = 0;; i++) {
975                 __u32 rt_alive;
976                 __u32 rt_multi_hop;
977
978                 LIBCFS_IOC_INIT_V2(data, cfg_hdr);
979                 data.cfg_count = i;
980
981                 rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_GET_ROUTE, &data);
982                 if (rc != 0) {
983                         l_errno = errno;
984                         break;
985                 }
986
987                 /* filter on provided data */
988                 if (net != LNET_NET_ANY &&
989                     net != data.cfg_net)
990                         continue;
991
992                 if (gateway_nid != LNET_NID_ANY &&
993                     gateway_nid != data.cfg_nid)
994                         continue;
995
996                 if (hops != -1 &&
997                     hops != data.cfg_config_u.cfg_route.rtr_hop)
998                         continue;
999
1000                 if (prio != -1 &&
1001                     prio != data.cfg_config_u.cfg_route.rtr_priority)
1002                         continue;
1003
1004                 /* default rc to -1 incase we hit the goto */
1005                 rc = -1;
1006                 exist = true;
1007
1008                 item = cYAML_create_seq_item(route);
1009                 if (item == NULL)
1010                         goto out;
1011
1012                 if (first_seq == NULL)
1013                         first_seq = item;
1014
1015                 if (cYAML_create_string(item, "net",
1016                                         libcfs_net2str(data.cfg_net)) == NULL)
1017                         goto out;
1018
1019                 if (cYAML_create_string(item, "gateway",
1020                                         libcfs_nid2str(data.cfg_nid)) == NULL)
1021                         goto out;
1022
1023                 if (detail) {
1024                         if (cYAML_create_number(item, "hop",
1025                                                 (int) data.cfg_config_u.
1026                                                 cfg_route.rtr_hop) ==
1027                             NULL)
1028                                 goto out;
1029
1030                         if (cYAML_create_number(item, "priority",
1031                                                 data.cfg_config_u.
1032                                                 cfg_route.rtr_priority) == NULL)
1033                                 goto out;
1034
1035                         if (cYAML_create_number(item, "health_sensitivity",
1036                                                 data.cfg_config_u.
1037                                                 cfg_route.rtr_sensitivity) == NULL)
1038                                 goto out;
1039
1040                         rt_alive = data.cfg_config_u.cfg_route.rtr_flags &
1041                                         LNET_RT_ALIVE;
1042                         rt_multi_hop = data.cfg_config_u.cfg_route.rtr_flags &
1043                                         LNET_RT_MULTI_HOP;
1044
1045                         if (!backup &&
1046                             cYAML_create_string(item, "state",
1047                                                 rt_alive ?
1048                                                 "up" : "down") == NULL)
1049                                 goto out;
1050
1051                         if (!backup &&
1052                             cYAML_create_string(item, "type",
1053                                                 rt_multi_hop?
1054                                                 "multi-hop" : "single-hop") == NULL)
1055                                 goto out;
1056                 }
1057         }
1058
1059         /* print output iff show_rc is not provided */
1060         if (show_rc == NULL)
1061                 cYAML_print_tree(root);
1062
1063         if (l_errno != ENOENT) {
1064                 snprintf(err_str,
1065                          sizeof(err_str),
1066                          "\"cannot get routes: %s\"",
1067                          strerror(l_errno));
1068                 rc = -l_errno;
1069                 goto out;
1070         } else
1071                 rc = LUSTRE_CFG_RC_NO_ERR;
1072
1073         snprintf(err_str, sizeof(err_str), "\"success\"");
1074 out:
1075         if (show_rc == NULL || rc != LUSTRE_CFG_RC_NO_ERR || !exist) {
1076                 cYAML_free_tree(root);
1077         } else if (show_rc != NULL && *show_rc != NULL) {
1078                 struct cYAML *show_node;
1079                 /* find the route node, if one doesn't exist then
1080                  * insert one.  Otherwise add to the one there
1081                  */
1082                 show_node = cYAML_get_object_item(*show_rc, "route");
1083                 if (show_node != NULL && cYAML_is_sequence(show_node)) {
1084                         cYAML_insert_child(show_node, first_seq);
1085                         free(route);
1086                         free(root);
1087                 } else if (show_node == NULL) {
1088                         cYAML_insert_sibling((*show_rc)->cy_child,
1089                                                 route);
1090                         free(root);
1091                 } else {
1092                         cYAML_free_tree(root);
1093                 }
1094         } else {
1095                 *show_rc = root;
1096         }
1097
1098         cYAML_build_error(rc, seq_no, SHOW_CMD, "route", err_str, err_rc);
1099
1100         return rc;
1101 }
1102
1103 static int socket_intf_query(int request, char *intf,
1104                              struct ifreq *ifr)
1105 {
1106         int rc = 0;
1107         int sockfd;
1108
1109         if (strlen(intf) >= IFNAMSIZ || ifr == NULL)
1110                 return LUSTRE_CFG_RC_BAD_PARAM;
1111
1112         sockfd = socket(AF_INET, SOCK_DGRAM, 0);
1113         if (sockfd < 0)
1114                 return LUSTRE_CFG_RC_BAD_PARAM;
1115
1116         strcpy(ifr->ifr_name, intf);
1117         rc = ioctl(sockfd, request, ifr);
1118         if (rc != 0)
1119                 rc = LUSTRE_CFG_RC_BAD_PARAM;
1120
1121         close(sockfd);
1122
1123         return rc;
1124 }
1125
1126 static int lustre_lnet_queryip(struct lnet_dlc_intf_descr *intf, __u32 *ip)
1127 {
1128         struct ifreq ifr;
1129         int rc;
1130
1131         memset(&ifr, 0, sizeof(ifr));
1132         rc = socket_intf_query(SIOCGIFFLAGS, intf->intf_name, &ifr);
1133         if (rc != 0)
1134                 return LUSTRE_CFG_RC_BAD_PARAM;
1135
1136         if ((ifr.ifr_flags & IFF_UP) == 0)
1137                 return LUSTRE_CFG_RC_BAD_PARAM;
1138
1139         memset(&ifr, 0, sizeof(ifr));
1140         rc = socket_intf_query(SIOCGIFADDR, intf->intf_name, &ifr);
1141         if (rc != 0)
1142                 return LUSTRE_CFG_RC_BAD_PARAM;
1143
1144         *ip = ((struct sockaddr_in *)&ifr.ifr_addr)->sin_addr.s_addr;
1145         *ip = bswap_32(*ip);
1146
1147         return LUSTRE_CFG_RC_NO_ERR;
1148 }
1149
1150 /*
1151  * for each interface in the array of interfaces find the IP address of
1152  * that interface, create its nid and add it to an array of NIDs.
1153  * Stop if any of the interfaces is down
1154  */
1155 static int lustre_lnet_intf2nids(struct lnet_dlc_network_descr *nw,
1156                                  lnet_nid_t **nids, __u32 *nnids,
1157                                  char *err_str, size_t str_len)
1158 {
1159         int i = 0, count = 0, rc;
1160         struct lnet_dlc_intf_descr *intf;
1161         char val[LNET_MAX_STR_LEN];
1162         __u32 ip;
1163         int gni_num;
1164         char *endp;
1165         unsigned int num;
1166
1167
1168         if (nw == NULL || nids == NULL) {
1169                 snprintf(err_str, str_len,
1170                          "\"unexpected parameters to lustre_lnet_intf2nids()\"");
1171                 return LUSTRE_CFG_RC_BAD_PARAM;
1172         }
1173
1174         if (LNET_NETTYP(nw->nw_id) == GNILND) {
1175                 count = 1;
1176         } else {
1177                 list_for_each_entry(intf, &nw->nw_intflist, intf_on_network)
1178                         count++;
1179         }
1180
1181         *nids = calloc(count, sizeof(lnet_nid_t));
1182         if (*nids == NULL) {
1183                 snprintf(err_str, str_len,
1184                          "\"out of memory\"");
1185                 return LUSTRE_CFG_RC_OUT_OF_MEM;
1186         }
1187         /*
1188          * special case the GNI interface since it doesn't have an IP
1189          * address. The assumption is that there can only be one GNI
1190          * interface in the system. No interface name is provided.
1191          */
1192         if (LNET_NETTYP(nw->nw_id) == GNILND) {
1193                 rc = read_sysfs_file(gni_nid_path, "nid", val,
1194                                 1, sizeof(val));
1195                 if (rc) {
1196                         snprintf(err_str, str_len,
1197                                  "\"cannot read gni nid\"");
1198                         goto failed;
1199                 }
1200                 gni_num = atoi(val);
1201
1202                 (*nids)[i] = LNET_MKNID(nw->nw_id, gni_num);
1203
1204                 goto out;
1205         }
1206
1207         /* look at the other interfaces */
1208         list_for_each_entry(intf, &nw->nw_intflist, intf_on_network) {
1209                 if (LNET_NETTYP(nw->nw_id) == PTL4LND) {
1210                         /* handle LNDs with numeric interface name */
1211                         num = strtoul(intf->intf_name, &endp, 0);
1212                         if (endp == intf->intf_name || *endp != '\0') {
1213                                 rc = LUSTRE_CFG_RC_BAD_PARAM;
1214                                 snprintf(err_str, str_len,
1215                                          "\"couldn't query intf %s\"",
1216                                          intf->intf_name);
1217                                 goto failed;
1218                         }
1219                         (*nids)[i] = LNET_MKNID(nw->nw_id, num);
1220                         i++;
1221                 } else {
1222                         /* handle LNDs with ip interface name */
1223                         rc = lustre_lnet_queryip(intf, &ip);
1224                         if (rc != LUSTRE_CFG_RC_NO_ERR) {
1225                                 snprintf(err_str, str_len,
1226                                          "\"couldn't query intf %s\"",
1227                                          intf->intf_name);
1228                                 goto failed;
1229                         }
1230                         (*nids)[i] = LNET_MKNID(nw->nw_id, ip);
1231                         i++;
1232                 }
1233         }
1234
1235 out:
1236         *nnids = count;
1237
1238         return 0;
1239
1240 failed:
1241         free(*nids);
1242         *nids = NULL;
1243         return rc;
1244 }
1245
1246 /*
1247  * called repeatedly until a match or no more ip range
1248  * What do you have?
1249  *      ip_range expression
1250  *      interface list with all the interface names.
1251  *      all the interfaces in the system.
1252  *
1253  *      try to match the ip_range expr to one of the interfaces' IPs in
1254  *      the system. If we hit a patch for an interface. Check if that
1255  *      interface name is in the list.
1256  *
1257  *      If there are more than one interface in the list, then make sure
1258  *      that the IPs for all of these interfaces match the ip ranges
1259  *      given.
1260  *
1261  *      for each interface in intf_list
1262  *              look up the intf name in ifa
1263  *              if not there then no match
1264  *              check ip obtained from ifa against a match to any of the
1265  *              ip_ranges given.
1266  *              If no match, then fail
1267  *
1268  *      The result is that all the interfaces have to match.
1269  */
1270 int lustre_lnet_match_ip_to_intf(struct ifaddrs *ifa,
1271                                  struct list_head *intf_list,
1272                                  struct list_head *ip_ranges)
1273 {
1274         int rc;
1275         __u32 ip;
1276         struct lnet_dlc_intf_descr *intf_descr, *tmp;
1277         struct ifaddrs *ifaddr = ifa;
1278         struct lustre_lnet_ip_range_descr *ip_range;
1279         int family;
1280
1281         /*
1282          * if there are no explicit interfaces, and no ip ranges, then
1283          * configure the first tcp interface we encounter.
1284          */
1285         if (list_empty(intf_list) && list_empty(ip_ranges)) {
1286                 for (ifaddr = ifa; ifaddr != NULL; ifaddr = ifaddr->ifa_next) {
1287                         if (ifaddr->ifa_addr == NULL)
1288                                 continue;
1289
1290                         if ((ifaddr->ifa_flags & IFF_UP) == 0)
1291                                 continue;
1292
1293                         family = ifaddr->ifa_addr->sa_family;
1294                         if (family == AF_INET &&
1295                             strcmp(ifaddr->ifa_name, "lo") != 0) {
1296                                 rc = lustre_lnet_add_intf_descr
1297                                         (intf_list, ifaddr->ifa_name,
1298                                         strlen(ifaddr->ifa_name));
1299
1300                                 if (rc != LUSTRE_CFG_RC_NO_ERR)
1301                                         return rc;
1302
1303                                 return LUSTRE_CFG_RC_MATCH;
1304                         }
1305                 }
1306                 return LUSTRE_CFG_RC_NO_MATCH;
1307         }
1308
1309         /*
1310          * First interface which matches an IP pattern will be used
1311          */
1312         if (list_empty(intf_list)) {
1313                 /*
1314                  * no interfaces provided in the rule, but an ip range is
1315                  * provided, so try and match an interface to the ip
1316                  * range.
1317                  */
1318                 for (ifaddr = ifa; ifaddr != NULL; ifaddr = ifaddr->ifa_next) {
1319                         if (ifaddr->ifa_addr == NULL)
1320                                 continue;
1321
1322                         if ((ifaddr->ifa_flags & IFF_UP) == 0)
1323                                 continue;
1324
1325                         family = ifaddr->ifa_addr->sa_family;
1326                         if (family == AF_INET) {
1327                                 ip = ((struct sockaddr_in *)ifaddr->ifa_addr)->
1328                                         sin_addr.s_addr;
1329
1330                                 list_for_each_entry(ip_range, ip_ranges,
1331                                                     ipr_entry) {
1332                                         rc = cfs_ip_addr_match(bswap_32(ip),
1333                                                         &ip_range->ipr_expr);
1334                                         if (!rc)
1335                                                 continue;
1336
1337                                         rc = lustre_lnet_add_intf_descr
1338                                           (intf_list, ifaddr->ifa_name,
1339                                            strlen(ifaddr->ifa_name));
1340
1341                                         if (rc != LUSTRE_CFG_RC_NO_ERR)
1342                                                 return rc;
1343                                 }
1344                         }
1345                 }
1346
1347                 if (!list_empty(intf_list))
1348                         return LUSTRE_CFG_RC_MATCH;
1349
1350                 return LUSTRE_CFG_RC_NO_MATCH;
1351         }
1352
1353         /*
1354          * If an interface is explicitly specified the ip-range might or
1355          * might not be specified. if specified the interface needs to match the
1356          * ip-range. If no ip-range then the interfaces are
1357          * automatically matched if they are all up.
1358          * If > 1 interfaces all the interfaces must match for the NI to
1359          * be configured.
1360          */
1361         list_for_each_entry_safe(intf_descr, tmp, intf_list, intf_on_network) {
1362                 for (ifaddr = ifa; ifaddr != NULL; ifaddr = ifaddr->ifa_next) {
1363                         if (ifaddr->ifa_addr == NULL)
1364                                 continue;
1365
1366                         family = ifaddr->ifa_addr->sa_family;
1367                         if (family == AF_INET &&
1368                             strcmp(intf_descr->intf_name,
1369                                    ifaddr->ifa_name) == 0)
1370                                 break;
1371                 }
1372
1373                 if (ifaddr == NULL) {
1374                         list_del(&intf_descr->intf_on_network);
1375                         free_intf_descr(intf_descr);
1376                         continue;
1377                 }
1378
1379                 if ((ifaddr->ifa_flags & IFF_UP) == 0) {
1380                         list_del(&intf_descr->intf_on_network);
1381                         free_intf_descr(intf_descr);
1382                         continue;
1383                 }
1384
1385                 ip = ((struct sockaddr_in *)ifaddr->ifa_addr)->sin_addr.s_addr;
1386
1387                 rc = 1;
1388                 list_for_each_entry(ip_range, ip_ranges, ipr_entry) {
1389                         rc = cfs_ip_addr_match(bswap_32(ip), &ip_range->ipr_expr);
1390                         if (rc)
1391                                 break;
1392                 }
1393
1394                 if (!rc) {
1395                         /* no match for this interface */
1396                         list_del(&intf_descr->intf_on_network);
1397                         free_intf_descr(intf_descr);
1398                 }
1399         }
1400
1401         return LUSTRE_CFG_RC_MATCH;
1402 }
1403
1404 static int lustre_lnet_resolve_ip2nets_rule(struct lustre_lnet_ip2nets *ip2nets,
1405                                             lnet_nid_t **nids, __u32 *nnids,
1406                                             char *err_str, size_t str_len)
1407 {
1408         struct ifaddrs *ifa;
1409         int rc = LUSTRE_CFG_RC_NO_ERR;
1410
1411         rc = getifaddrs(&ifa);
1412         if (rc < 0) {
1413                 snprintf(err_str, str_len,
1414                          "\"failed to get interface addresses: %d\"", -errno);
1415                 return -errno;
1416         }
1417
1418         rc = lustre_lnet_match_ip_to_intf(ifa,
1419                                           &ip2nets->ip2nets_net.nw_intflist,
1420                                           &ip2nets->ip2nets_ip_ranges);
1421         if (rc != LUSTRE_CFG_RC_MATCH) {
1422                 snprintf(err_str, str_len,
1423                          "\"couldn't match ip to existing interfaces\"");
1424                 freeifaddrs(ifa);
1425                 return rc;
1426         }
1427
1428         rc = lustre_lnet_intf2nids(&ip2nets->ip2nets_net, nids, nnids,
1429                                    err_str, str_len);
1430         if (rc != LUSTRE_CFG_RC_NO_ERR) {
1431                 *nids = NULL;
1432                 *nnids = 0;
1433         }
1434
1435         freeifaddrs(ifa);
1436
1437         return rc;
1438 }
1439
1440 static int
1441 lustre_lnet_ioctl_config_ni(struct list_head *intf_list,
1442                             struct lnet_ioctl_config_lnd_tunables *tunables,
1443                             struct cfs_expr_list *global_cpts,
1444                             lnet_nid_t *nids, char *err_str)
1445 {
1446         char *data;
1447         struct lnet_ioctl_config_ni *conf;
1448         struct lnet_ioctl_config_lnd_tunables *tun = NULL;
1449         int rc = LUSTRE_CFG_RC_NO_ERR, i = 0;
1450         size_t len;
1451         int count;
1452         struct lnet_dlc_intf_descr *intf_descr;
1453         __u32 *cpt_array;
1454         struct cfs_expr_list *cpt_expr;
1455
1456         list_for_each_entry(intf_descr, intf_list,
1457                             intf_on_network) {
1458                 if (tunables != NULL)
1459                         len = sizeof(struct lnet_ioctl_config_ni) +
1460                               sizeof(struct lnet_ioctl_config_lnd_tunables);
1461                 else
1462                         len = sizeof(struct lnet_ioctl_config_ni);
1463
1464                 data = calloc(1, len);
1465                 if (!data)
1466                         return LUSTRE_CFG_RC_OUT_OF_MEM;
1467                 conf = (struct lnet_ioctl_config_ni*) data;
1468                 if (tunables != NULL)
1469                         tun = (struct lnet_ioctl_config_lnd_tunables*)
1470                                 conf->lic_bulk;
1471
1472                 LIBCFS_IOC_INIT_V2(*conf, lic_cfg_hdr);
1473                 conf->lic_cfg_hdr.ioc_len = len;
1474                 conf->lic_nid = nids[i];
1475                 strncpy(conf->lic_ni_intf[0], intf_descr->intf_name,
1476                         LNET_MAX_STR_LEN);
1477
1478                 if (intf_descr->cpt_expr != NULL)
1479                         cpt_expr = intf_descr->cpt_expr;
1480                 else if (global_cpts != NULL)
1481                         cpt_expr = global_cpts;
1482                 else
1483                         cpt_expr = NULL;
1484
1485                 if (cpt_expr != NULL) {
1486                         count = cfs_expr_list_values(cpt_expr,
1487                                                      LNET_MAX_SHOW_NUM_CPT,
1488                                                      &cpt_array);
1489                         if (count > 0) {
1490                                 memcpy(conf->lic_cpts, cpt_array,
1491                                        sizeof(cpt_array[0]) * LNET_MAX_STR_LEN);
1492                                 free(cpt_array);
1493                         } else {
1494                                 count = 0;
1495                         }
1496                 } else {
1497                         count = 0;
1498                 }
1499
1500                 conf->lic_ncpts = count;
1501
1502                 if (tunables != NULL)
1503                         memcpy(tun, tunables, sizeof(*tunables));
1504
1505                 rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_ADD_LOCAL_NI, data);
1506                 if (rc < 0) {
1507                         rc = -errno;
1508                         snprintf(err_str,
1509                                  LNET_MAX_STR_LEN,
1510                                  "\"cannot add network: %s\"", strerror(errno));
1511                         free(data);
1512                         return rc;
1513                 }
1514                 free(data);
1515                 i++;
1516         }
1517
1518         return LUSTRE_CFG_RC_NO_ERR;
1519 }
1520
1521 int
1522 lustre_lnet_config_ip2nets(struct lustre_lnet_ip2nets *ip2nets,
1523                            struct lnet_ioctl_config_lnd_tunables *tunables,
1524                            struct cfs_expr_list *global_cpts,
1525                            int seq_no, struct cYAML **err_rc)
1526 {
1527         lnet_nid_t *nids = NULL;
1528         __u32 nnids = 0;
1529         int rc;
1530         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
1531
1532         if (!ip2nets) {
1533                 snprintf(err_str,
1534                          sizeof(err_str),
1535                          "\"incomplete ip2nets information\"");
1536                 rc = LUSTRE_CFG_RC_BAD_PARAM;
1537                 goto out;
1538         }
1539
1540         /*
1541          * call below function to resolve the rules into a list of nids.
1542          * The memory is allocated in that function then freed here when
1543          * it's no longer needed.
1544          */
1545         rc = lustre_lnet_resolve_ip2nets_rule(ip2nets, &nids, &nnids, err_str,
1546                                               sizeof(err_str));
1547         if (rc != LUSTRE_CFG_RC_NO_ERR && rc != LUSTRE_CFG_RC_MATCH)
1548                 goto out;
1549
1550         if (list_empty(&ip2nets->ip2nets_net.nw_intflist)) {
1551                 snprintf(err_str, sizeof(err_str),
1552                          "\"no interfaces match ip2nets rules\"");
1553                 goto free_nids_out;
1554         }
1555
1556         rc = lustre_lnet_ioctl_config_ni(&ip2nets->ip2nets_net.nw_intflist,
1557                                          tunables, global_cpts, nids,
1558                                          err_str);
1559
1560 free_nids_out:
1561         free(nids);
1562
1563 out:
1564         cYAML_build_error(rc, seq_no, ADD_CMD, "ip2nets", err_str, err_rc);
1565         return rc;
1566 }
1567
1568 int lustre_lnet_config_ni(struct lnet_dlc_network_descr *nw_descr,
1569                           struct cfs_expr_list *global_cpts,
1570                           char *ip2net,
1571                           struct lnet_ioctl_config_lnd_tunables *tunables,
1572                           int seq_no, struct cYAML **err_rc)
1573 {
1574         char *data = NULL;
1575         struct lnet_ioctl_config_ni *conf;
1576         struct lnet_ioctl_config_lnd_tunables *tun = NULL;
1577         char buf[LNET_MAX_STR_LEN];
1578         int rc = LUSTRE_CFG_RC_NO_ERR;
1579         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
1580         lnet_nid_t *nids = NULL;
1581         __u32 nnids = 0;
1582         size_t len;
1583         int count;
1584         struct lnet_dlc_intf_descr *intf_descr, *tmp;
1585         __u32 *cpt_array;
1586
1587         if (ip2net == NULL && (nw_descr == NULL || nw_descr->nw_id == 0 ||
1588             (list_empty(&nw_descr->nw_intflist) &&
1589              LNET_NETTYP(nw_descr->nw_id) != GNILND))) {
1590                 snprintf(err_str,
1591                          sizeof(err_str),
1592                          "\"missing mandatory parameters in NI config: '%s'\"",
1593                          (nw_descr == NULL) ? "network , interface" :
1594                          (nw_descr->nw_id == 0) ? "network" : "interface");
1595                 rc = LUSTRE_CFG_RC_MISSING_PARAM;
1596                 goto out;
1597         }
1598
1599         if (ip2net != NULL && strlen(ip2net) >= sizeof(buf)) {
1600                 snprintf(err_str,
1601                          sizeof(err_str),
1602                          "\"ip2net string too long %d\"",
1603                                 (int)strlen(ip2net));
1604                 rc = LUSTRE_CFG_RC_OUT_OF_RANGE_PARAM;
1605                 goto out;
1606         }
1607
1608         if (ip2net != NULL) {
1609                 if (tunables != NULL)
1610                         len = sizeof(struct lnet_ioctl_config_ni) +
1611                               sizeof(struct lnet_ioctl_config_lnd_tunables);
1612                 else
1613                         len = sizeof(struct lnet_ioctl_config_ni);
1614                 data = calloc(1, len);
1615                 if (!data) {
1616                         rc = LUSTRE_CFG_RC_OUT_OF_MEM;
1617                         goto out;
1618                 }
1619                 conf = (struct lnet_ioctl_config_ni*) data;
1620                 if (tunables != NULL)
1621                         tun = (struct lnet_ioctl_config_lnd_tunables*)
1622                                 (data + sizeof(*conf));
1623
1624                 LIBCFS_IOC_INIT_V2(*conf, lic_cfg_hdr);
1625                 conf->lic_cfg_hdr.ioc_len = len;
1626                 strncpy(conf->lic_legacy_ip2nets, ip2net,
1627                         LNET_MAX_STR_LEN);
1628
1629                 if (global_cpts != NULL) {
1630                         count = cfs_expr_list_values(global_cpts,
1631                                                      LNET_MAX_SHOW_NUM_CPT,
1632                                                      &cpt_array);
1633                         if (count > 0) {
1634                                 memcpy(conf->lic_cpts, cpt_array,
1635                                        sizeof(cpt_array[0]) * LNET_MAX_STR_LEN);
1636                                 free(cpt_array);
1637                         } else {
1638                                 count = 0;
1639                         }
1640                 } else {
1641                         count = 0;
1642                 }
1643
1644                 conf->lic_ncpts = count;
1645
1646                 if (tunables != NULL)
1647                         memcpy(tun, tunables, sizeof(*tunables));
1648
1649                 rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_ADD_LOCAL_NI, data);
1650                 if (rc < 0) {
1651                         rc = -errno;
1652                         snprintf(err_str,
1653                                 sizeof(err_str),
1654                                 "\"cannot add network: %s\"", strerror(errno));
1655                         goto out;
1656                 }
1657
1658                 goto out;
1659         }
1660
1661         if (LNET_NETTYP(nw_descr->nw_id) == LOLND) {
1662                 rc = LUSTRE_CFG_RC_NO_ERR;
1663                 goto out;
1664         }
1665
1666         if (nw_descr->nw_id == LNET_NET_ANY) {
1667                 snprintf(err_str,
1668                         sizeof(err_str),
1669                         "\"cannot parse net '%s'\"",
1670                         libcfs_net2str(nw_descr->nw_id));
1671                 rc = LUSTRE_CFG_RC_BAD_PARAM;
1672                 goto out;
1673         }
1674
1675         /*
1676          * special case the GNI since no interface name is expected
1677          */
1678         if (list_empty(&nw_descr->nw_intflist) &&
1679             (LNET_NETTYP(nw_descr->nw_id) != GNILND)) {
1680                 snprintf(err_str,
1681                         sizeof(err_str),
1682                         "\"no interface name provided\"");
1683                 rc = LUSTRE_CFG_RC_BAD_PARAM;
1684                 goto out;
1685         }
1686
1687         rc = lustre_lnet_intf2nids(nw_descr, &nids, &nnids,
1688                                    err_str, sizeof(err_str));
1689         if (rc != 0) {
1690                 rc = LUSTRE_CFG_RC_BAD_PARAM;
1691                 goto out;
1692         }
1693
1694         rc = lustre_lnet_ioctl_config_ni(&nw_descr->nw_intflist,
1695                                          tunables, global_cpts, nids,
1696                                          err_str);
1697
1698 out:
1699         if (nw_descr != NULL) {
1700                 list_for_each_entry_safe(intf_descr, tmp,
1701                                          &nw_descr->nw_intflist,
1702                                          intf_on_network) {
1703                         list_del(&intf_descr->intf_on_network);
1704                         free_intf_descr(intf_descr);
1705                 }
1706         }
1707
1708         cYAML_build_error(rc, seq_no, ADD_CMD, "net", err_str, err_rc);
1709
1710         if (nids)
1711                 free(nids);
1712
1713         if (data)
1714                 free(data);
1715
1716         return rc;
1717 }
1718
1719 int lustre_lnet_del_ni(struct lnet_dlc_network_descr *nw_descr,
1720                        int seq_no, struct cYAML **err_rc)
1721 {
1722         struct lnet_ioctl_config_ni data;
1723         int rc = LUSTRE_CFG_RC_NO_ERR, i;
1724         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
1725         lnet_nid_t *nids = NULL;
1726         __u32 nnids = 0;
1727         struct lnet_dlc_intf_descr *intf_descr, *tmp;
1728
1729         if (nw_descr == NULL || nw_descr->nw_id == 0) {
1730                 snprintf(err_str,
1731                          sizeof(err_str),
1732                          "\"missing mandatory parameter in deleting NI: '%s'\"",
1733                          (nw_descr == NULL) ? "network , interface" :
1734                          (nw_descr->nw_id == 0) ? "network" : "interface");
1735                 rc = LUSTRE_CFG_RC_MISSING_PARAM;
1736                 goto out;
1737         }
1738
1739         if (LNET_NETTYP(nw_descr->nw_id) == LOLND)
1740                 return LUSTRE_CFG_RC_NO_ERR;
1741
1742         if (nw_descr->nw_id == LNET_NET_ANY) {
1743                 snprintf(err_str,
1744                          sizeof(err_str),
1745                          "\"cannot parse net '%s'\"",
1746                          libcfs_net2str(nw_descr->nw_id));
1747                 rc = LUSTRE_CFG_RC_BAD_PARAM;
1748                 goto out;
1749         }
1750
1751         rc = lustre_lnet_intf2nids(nw_descr, &nids, &nnids,
1752                                    err_str, sizeof(err_str));
1753         if (rc != 0) {
1754                 rc = LUSTRE_CFG_RC_BAD_PARAM;
1755                 goto out;
1756         }
1757
1758         /*
1759          * no interfaces just the nw_id is specified
1760          */
1761         if (nnids == 0) {
1762                 nids = calloc(1, sizeof(*nids));
1763                 if (nids == NULL) {
1764                         snprintf(err_str, sizeof(err_str),
1765                                 "\"out of memory\"");
1766                         rc = LUSTRE_CFG_RC_OUT_OF_MEM;
1767                         goto out;
1768                 }
1769                 nids[0] = LNET_MKNID(nw_descr->nw_id, 0);
1770                 nnids = 1;
1771         }
1772
1773         for (i = 0; i < nnids; i++) {
1774                 LIBCFS_IOC_INIT_V2(data, lic_cfg_hdr);
1775                 data.lic_nid = nids[i];
1776
1777                 rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_DEL_LOCAL_NI, &data);
1778                 if (rc < 0) {
1779                         rc = -errno;
1780                         snprintf(err_str,
1781                                 sizeof(err_str),
1782                                 "\"cannot del network: %s\"", strerror(errno));
1783                 }
1784         }
1785
1786         list_for_each_entry_safe(intf_descr, tmp, &nw_descr->nw_intflist,
1787                                  intf_on_network) {
1788                 list_del(&intf_descr->intf_on_network);
1789                 free_intf_descr(intf_descr);
1790         }
1791
1792 out:
1793         cYAML_build_error(rc, seq_no, DEL_CMD, "net", err_str, err_rc);
1794
1795         if (nids != NULL)
1796                 free(nids);
1797
1798         return rc;
1799 }
1800
1801 static int
1802 lustre_lnet_config_healthv(int value, bool all, lnet_nid_t nid,
1803                            enum lnet_health_type type, char *name,
1804                            int seq_no, struct cYAML **err_rc)
1805 {
1806         struct lnet_ioctl_reset_health_cfg data;
1807         int rc = LUSTRE_CFG_RC_NO_ERR;
1808         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
1809
1810         LIBCFS_IOC_INIT_V2(data, rh_hdr);
1811         data.rh_type = type;
1812         data.rh_all = all;
1813         data.rh_value = value;
1814         data.rh_nid = nid;
1815
1816         rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_SET_HEALHV, &data);
1817         if (rc != 0) {
1818                 rc = -errno;
1819                 snprintf(err_str,
1820                          sizeof(err_str), "Can not configure health value: %s",
1821                          strerror(errno));
1822         }
1823
1824         cYAML_build_error(rc, seq_no, ADD_CMD, name, err_str, err_rc);
1825
1826         return rc;
1827 }
1828
1829 int lustre_lnet_config_ni_healthv(int value, bool all, char *ni_nid, int seq_no,
1830                                   struct cYAML **err_rc)
1831 {
1832         lnet_nid_t nid;
1833         if (ni_nid)
1834                 nid = libcfs_str2nid(ni_nid);
1835         else
1836                 nid = LNET_NID_ANY;
1837         return lustre_lnet_config_healthv(value, all, nid,
1838                                           LNET_HEALTH_TYPE_LOCAL_NI,
1839                                           "ni healthv", seq_no, err_rc);
1840 }
1841
1842 int lustre_lnet_config_peer_ni_healthv(int value, bool all, char *lpni_nid,
1843                                        int seq_no, struct cYAML **err_rc)
1844 {
1845         lnet_nid_t nid;
1846         if (lpni_nid)
1847                 nid = libcfs_str2nid(lpni_nid);
1848         else
1849                 nid = LNET_NID_ANY;
1850         return lustre_lnet_config_healthv(value, all, nid,
1851                                           LNET_HEALTH_TYPE_PEER_NI,
1852                                           "peer_ni healthv", seq_no, err_rc);
1853 }
1854
1855 static bool
1856 add_msg_stats_to_yaml_blk(struct cYAML *yaml,
1857                           struct lnet_ioctl_comm_count *counts)
1858 {
1859         if (cYAML_create_number(yaml, "put",
1860                                 counts->ico_put_count)
1861                                         == NULL)
1862                 return false;
1863         if (cYAML_create_number(yaml, "get",
1864                                 counts->ico_get_count)
1865                                         == NULL)
1866                 return false;
1867         if (cYAML_create_number(yaml, "reply",
1868                                 counts->ico_reply_count)
1869                                         == NULL)
1870                 return false;
1871         if (cYAML_create_number(yaml, "ack",
1872                                 counts->ico_ack_count)
1873                                         == NULL)
1874                 return false;
1875         if (cYAML_create_number(yaml, "hello",
1876                                 counts->ico_hello_count)
1877                                         == NULL)
1878                 return false;
1879
1880         return true;
1881 }
1882
1883 static struct lnet_ioctl_comm_count *
1884 get_counts(struct lnet_ioctl_element_msg_stats *msg_stats, int idx)
1885 {
1886         if (idx == 0)
1887                 return &msg_stats->im_send_stats;
1888         if (idx == 1)
1889                 return &msg_stats->im_recv_stats;
1890         if (idx == 2)
1891                 return &msg_stats->im_drop_stats;
1892
1893         return NULL;
1894 }
1895
1896 int lustre_lnet_show_net(char *nw, int detail, int seq_no,
1897                          struct cYAML **show_rc, struct cYAML **err_rc,
1898                          bool backup)
1899 {
1900         char *buf;
1901         struct lnet_ioctl_config_ni *ni_data;
1902         struct lnet_ioctl_config_lnd_tunables *lnd;
1903         struct lnet_ioctl_element_stats *stats;
1904         struct lnet_ioctl_element_msg_stats msg_stats;
1905         struct lnet_ioctl_local_ni_hstats hstats;
1906         __u32 net = LNET_NET_ANY;
1907         __u32 prev_net = LNET_NET_ANY;
1908         int rc = LUSTRE_CFG_RC_OUT_OF_MEM, i, j;
1909         int l_errno = 0;
1910         struct cYAML *root = NULL, *tunables = NULL,
1911                 *net_node = NULL, *interfaces = NULL,
1912                 *item = NULL, *first_seq = NULL,
1913                 *tmp = NULL, *statistics = NULL,
1914                 *yhstats = NULL;
1915         int str_buf_len = LNET_MAX_SHOW_NUM_CPT * 2;
1916         char str_buf[str_buf_len];
1917         char *pos;
1918         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
1919         bool exist = false, new_net = true;
1920         int net_num = 0;
1921         size_t buf_size = sizeof(*ni_data) + sizeof(*lnd) + sizeof(*stats);
1922
1923         buf = calloc(1, buf_size);
1924         if (buf == NULL)
1925                 goto out;
1926
1927         ni_data = (struct lnet_ioctl_config_ni *)buf;
1928
1929         if (nw != NULL) {
1930                 net = libcfs_str2net(nw);
1931                 if (net == LNET_NET_ANY) {
1932                         snprintf(err_str,
1933                                  sizeof(err_str),
1934                                  "\"cannot parse net '%s'\"", nw);
1935                         rc = LUSTRE_CFG_RC_BAD_PARAM;
1936                         goto out;
1937                 }
1938         }
1939
1940         root = cYAML_create_object(NULL, NULL);
1941         if (root == NULL)
1942                 goto out;
1943
1944         net_node = cYAML_create_seq(root, "net");
1945         if (net_node == NULL)
1946                 goto out;
1947
1948         for (i = 0;; i++) {
1949                 __u32 rc_net;
1950
1951                 memset(buf, 0, buf_size);
1952
1953                 LIBCFS_IOC_INIT_V2(*ni_data, lic_cfg_hdr);
1954                 /*
1955                  * set the ioc_len to the proper value since INIT assumes
1956                  * size of data
1957                  */
1958                 ni_data->lic_cfg_hdr.ioc_len = buf_size;
1959                 ni_data->lic_idx = i;
1960
1961                 rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_GET_LOCAL_NI, ni_data);
1962                 if (rc != 0) {
1963                         l_errno = errno;
1964                         break;
1965                 }
1966
1967                 rc_net = LNET_NIDNET(ni_data->lic_nid);
1968
1969                 /* filter on provided data */
1970                 if (net != LNET_NET_ANY &&
1971                     net != rc_net)
1972                         continue;
1973
1974                 /* if we're backing up don't store lo */
1975                 if (backup && LNET_NETTYP(rc_net) == LOLND)
1976                         continue;
1977
1978                 /* default rc to -1 in case we hit the goto */
1979                 rc = -1;
1980                 exist = true;
1981
1982                 stats = (struct lnet_ioctl_element_stats *)ni_data->lic_bulk;
1983                 lnd = (struct lnet_ioctl_config_lnd_tunables *)
1984                         (ni_data->lic_bulk + sizeof(*stats));
1985
1986                 if (rc_net != prev_net) {
1987                         prev_net = rc_net;
1988                         new_net = true;
1989                         net_num++;
1990                 }
1991
1992                 if (new_net) {
1993                         if (!cYAML_create_string(net_node, "net type",
1994                                                  libcfs_net2str(rc_net)))
1995                                 goto out;
1996
1997                         tmp = cYAML_create_seq(net_node, "local NI(s)");
1998                         if (tmp == NULL)
1999                                 goto out;
2000                         new_net = false;
2001                 }
2002
2003                 /* create the tree to be printed. */
2004                 item = cYAML_create_seq_item(tmp);
2005                 if (item == NULL)
2006                         goto out;
2007
2008                 if (first_seq == NULL)
2009                         first_seq = item;
2010
2011                 if (!backup &&
2012                     cYAML_create_string(item, "nid",
2013                                         libcfs_nid2str(ni_data->lic_nid)) == NULL)
2014                         goto out;
2015
2016                 if (!backup &&
2017                     cYAML_create_string(item,
2018                                         "status",
2019                                         (ni_data->lic_status ==
2020                                           LNET_NI_STATUS_UP) ?
2021                                             "up" : "down") == NULL)
2022                         goto out;
2023
2024                 /* don't add interfaces unless there is at least one
2025                  * interface */
2026                 if (strlen(ni_data->lic_ni_intf[0]) > 0) {
2027                         interfaces = cYAML_create_object(item, "interfaces");
2028                         if (interfaces == NULL)
2029                                 goto out;
2030
2031                         for (j = 0; j < LNET_INTERFACES_NUM; j++) {
2032                                 if (strlen(ni_data->lic_ni_intf[j]) > 0) {
2033                                         snprintf(str_buf,
2034                                                  sizeof(str_buf), "%d", j);
2035                                         if (cYAML_create_string(interfaces,
2036                                                 str_buf,
2037                                                 ni_data->lic_ni_intf[j]) ==
2038                                                         NULL)
2039                                                 goto out;
2040                                 }
2041                         }
2042                 }
2043
2044                 if (detail) {
2045                         char *limit;
2046                         int k;
2047
2048                         if (backup)
2049                                 goto continue_without_msg_stats;
2050
2051                         statistics = cYAML_create_object(item, "statistics");
2052                         if (statistics == NULL)
2053                                 goto out;
2054
2055                         if (cYAML_create_number(statistics, "send_count",
2056                                                 stats->iel_send_count)
2057                                                         == NULL)
2058                                 goto out;
2059
2060                         if (cYAML_create_number(statistics, "recv_count",
2061                                                 stats->iel_recv_count)
2062                                                         == NULL)
2063                                 goto out;
2064
2065                         if (cYAML_create_number(statistics, "drop_count",
2066                                                 stats->iel_drop_count)
2067                                                         == NULL)
2068                                 goto out;
2069
2070                         if (detail < 2)
2071                                 goto continue_without_msg_stats;
2072
2073                         LIBCFS_IOC_INIT_V2(msg_stats, im_hdr);
2074                         msg_stats.im_hdr.ioc_len = sizeof(msg_stats);
2075                         msg_stats.im_idx = i;
2076
2077                         rc = l_ioctl(LNET_DEV_ID,
2078                                      IOC_LIBCFS_GET_LOCAL_NI_MSG_STATS,
2079                                      &msg_stats);
2080                         if (rc != 0) {
2081                                 l_errno = errno;
2082                                 goto continue_without_msg_stats;
2083                         }
2084
2085                         for (k = 0; k < 3; k++) {
2086                                 struct lnet_ioctl_comm_count *counts;
2087                                 struct cYAML *msg_statistics = NULL;
2088
2089                                 msg_statistics = cYAML_create_object(item,
2090                                                  (char *)gmsg_stat_names[k]);
2091                                 if (msg_statistics == NULL)
2092                                         goto out;
2093
2094                                 counts = get_counts(&msg_stats, k);
2095                                 if (counts == NULL)
2096                                         goto out;
2097
2098                                 if (!add_msg_stats_to_yaml_blk(msg_statistics,
2099                                                                counts))
2100                                         goto out;
2101                         }
2102
2103                         LIBCFS_IOC_INIT_V2(hstats, hlni_hdr);
2104                         hstats.hlni_nid = ni_data->lic_nid;
2105                         /* grab health stats */
2106                         rc = l_ioctl(LNET_DEV_ID,
2107                                      IOC_LIBCFS_GET_LOCAL_HSTATS,
2108                                      &hstats);
2109                         if (rc != 0) {
2110                                 l_errno = errno;
2111                                 goto continue_without_msg_stats;
2112                         }
2113                         yhstats = cYAML_create_object(item, "health stats");
2114                         if (!yhstats)
2115                                 goto out;
2116                         if (cYAML_create_number(yhstats, "health value",
2117                                                 hstats.hlni_health_value)
2118                                                         == NULL)
2119                                 goto out;
2120                         if (cYAML_create_number(yhstats, "interrupts",
2121                                                 hstats.hlni_local_interrupt)
2122                                                         == NULL)
2123                                 goto out;
2124                         if (cYAML_create_number(yhstats, "dropped",
2125                                                 hstats.hlni_local_dropped)
2126                                                         == NULL)
2127                                 goto out;
2128                         if (cYAML_create_number(yhstats, "aborted",
2129                                                 hstats.hlni_local_aborted)
2130                                                         == NULL)
2131                                 goto out;
2132                         if (cYAML_create_number(yhstats, "no route",
2133                                                 hstats.hlni_local_no_route)
2134                                                         == NULL)
2135                                 goto out;
2136                         if (cYAML_create_number(yhstats, "timeouts",
2137                                                 hstats.hlni_local_timeout)
2138                                                         == NULL)
2139                                 goto out;
2140                         if (cYAML_create_number(yhstats, "error",
2141                                                 hstats.hlni_local_error)
2142                                                         == NULL)
2143                                 goto out;
2144
2145 continue_without_msg_stats:
2146                         tunables = cYAML_create_object(item, "tunables");
2147                         if (!tunables)
2148                                 goto out;
2149
2150                         rc = lustre_net_show_tunables(tunables, &lnd->lt_cmn);
2151                         if (rc != LUSTRE_CFG_RC_NO_ERR)
2152                                 goto out;
2153
2154                         rc = lustre_ni_show_tunables(tunables, LNET_NETTYP(rc_net),
2155                                                      &lnd->lt_tun);
2156                         if (rc != LUSTRE_CFG_RC_NO_ERR &&
2157                             rc != LUSTRE_CFG_RC_NO_MATCH)
2158                                 goto out;
2159
2160                         if (rc != LUSTRE_CFG_RC_NO_MATCH) {
2161                                 tunables = cYAML_create_object(item,
2162                                                                "lnd tunables");
2163                                 if (tunables == NULL)
2164                                         goto out;
2165                         }
2166
2167                         if (!backup &&
2168                             cYAML_create_number(item, "dev cpt",
2169                                                 ni_data->lic_dev_cpt) == NULL)
2170                                 goto out;
2171
2172                         if (!backup &&
2173                             cYAML_create_number(item, "tcp bonding",
2174                                                 ni_data->lic_tcp_bonding)
2175                                                         == NULL)
2176                                 goto out;
2177
2178                         /* out put the CPTs in the format: "[x,x,x,...]" */
2179                         pos = str_buf;
2180                         limit = str_buf + str_buf_len - 3;
2181                         pos += scnprintf(pos, limit - pos, "\"[");
2182                         for (j = 0 ; ni_data->lic_ncpts >= 1 &&
2183                                 j < ni_data->lic_ncpts &&
2184                                 pos < limit; j++) {
2185                                 pos += scnprintf(pos, limit - pos,
2186                                                  "%d", ni_data->lic_cpts[j]);
2187                                 if ((j + 1) < ni_data->lic_ncpts)
2188                                         pos += scnprintf(pos, limit - pos, ",");
2189                         }
2190                         snprintf(pos, 3, "]\"");
2191
2192                         if (ni_data->lic_ncpts >= 1 &&
2193                             cYAML_create_string(item, "CPT",
2194                                                 str_buf) == NULL)
2195                                 goto out;
2196                 }
2197         }
2198
2199         /* Print out the net information only if show_rc is not provided */
2200         if (show_rc == NULL)
2201                 cYAML_print_tree(root);
2202
2203         if (l_errno != ENOENT) {
2204                 snprintf(err_str,
2205                          sizeof(err_str),
2206                          "\"cannot get networks: %s\"",
2207                          strerror(l_errno));
2208                 rc = -l_errno;
2209                 goto out;
2210         } else
2211                 rc = LUSTRE_CFG_RC_NO_ERR;
2212
2213         snprintf(err_str, sizeof(err_str), "\"success\"");
2214 out:
2215         if (show_rc == NULL || rc != LUSTRE_CFG_RC_NO_ERR || !exist) {
2216                 cYAML_free_tree(root);
2217         } else if (show_rc != NULL && *show_rc != NULL) {
2218                 struct cYAML *show_node;
2219                 /* find the net node, if one doesn't exist
2220                  * then insert one.  Otherwise add to the one there
2221                  */
2222                 show_node = cYAML_get_object_item(*show_rc, "net");
2223                 if (show_node != NULL && cYAML_is_sequence(show_node)) {
2224                         cYAML_insert_child(show_node, first_seq);
2225                         free(net_node);
2226                         free(root);
2227                 } else if (show_node == NULL) {
2228                         cYAML_insert_sibling((*show_rc)->cy_child,
2229                                                 net_node);
2230                         free(root);
2231                 } else {
2232                         cYAML_free_tree(root);
2233                 }
2234         } else {
2235                 *show_rc = root;
2236         }
2237
2238         cYAML_build_error(rc, seq_no, SHOW_CMD, "net", err_str, err_rc);
2239
2240         return rc;
2241 }
2242
2243 int lustre_lnet_enable_routing(int enable, int seq_no, struct cYAML **err_rc)
2244 {
2245         struct lnet_ioctl_config_data data;
2246         int rc = LUSTRE_CFG_RC_NO_ERR;
2247         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
2248
2249         LIBCFS_IOC_INIT_V2(data, cfg_hdr);
2250         data.cfg_config_u.cfg_buffers.buf_enable = (enable) ? 1 : 0;
2251
2252         rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_CONFIG_RTR, &data);
2253         if (rc != 0) {
2254                 rc = -errno;
2255                 snprintf(err_str,
2256                          sizeof(err_str),
2257                          "\"cannot %s routing %s\"",
2258                          (enable) ? "enable" : "disable", strerror(errno));
2259                 goto out;
2260         }
2261
2262 out:
2263         cYAML_build_error(rc, seq_no,
2264                          (enable) ? ADD_CMD : DEL_CMD,
2265                          "routing", err_str, err_rc);
2266
2267         return rc;
2268 }
2269
2270 int ioctl_set_value(__u32 val, int ioc, char *name,
2271                     int seq_no, struct cYAML **err_rc)
2272 {
2273         struct lnet_ioctl_set_value data;
2274         int rc = LUSTRE_CFG_RC_NO_ERR;
2275         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
2276
2277         LIBCFS_IOC_INIT_V2(data, sv_hdr);
2278         data.sv_value = val;
2279
2280         rc = l_ioctl(LNET_DEV_ID, ioc , &data);
2281         if (rc != 0) {
2282                 rc = -errno;
2283                 snprintf(err_str,
2284                          sizeof(err_str),
2285                          "\"cannot configure %s to %d: %s\"", name,
2286                          val, strerror(errno));
2287         }
2288
2289         cYAML_build_error(rc, seq_no, ADD_CMD, name, err_str, err_rc);
2290
2291         return rc;
2292 }
2293
2294 int lustre_lnet_config_recov_intrv(int intrv, int seq_no, struct cYAML **err_rc)
2295 {
2296         int rc = LUSTRE_CFG_RC_NO_ERR;
2297         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
2298         char val[LNET_MAX_STR_LEN];
2299
2300         snprintf(val, sizeof(val), "%d", intrv);
2301
2302         rc = write_sysfs_file(modparam_path, "lnet_recovery_interval", val,
2303                               1, strlen(val) + 1);
2304         if (rc)
2305                 snprintf(err_str, sizeof(err_str),
2306                          "\"cannot configure recovery interval: %s\"",
2307                          strerror(errno));
2308
2309         cYAML_build_error(rc, seq_no, ADD_CMD, "recovery_interval", err_str, err_rc);
2310
2311         return rc;
2312 }
2313
2314 int lustre_lnet_config_rtr_sensitivity(int sen, int seq_no, struct cYAML **err_rc)
2315 {
2316         int rc = LUSTRE_CFG_RC_NO_ERR;
2317         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
2318         char val[LNET_MAX_STR_LEN];
2319
2320         snprintf(val, sizeof(val), "%d", sen);
2321
2322         rc = write_sysfs_file(modparam_path, "router_sensitivity_percentage", val,
2323                               1, strlen(val) + 1);
2324         if (rc)
2325                 snprintf(err_str, sizeof(err_str),
2326                          "\"cannot configure router health sensitivity: %s\"",
2327                          strerror(errno));
2328
2329         cYAML_build_error(rc, seq_no, ADD_CMD, "router_sensitivity", err_str, err_rc);
2330
2331         return rc;
2332 }
2333
2334 int lustre_lnet_config_hsensitivity(int sen, int seq_no, struct cYAML **err_rc)
2335 {
2336         int rc = LUSTRE_CFG_RC_NO_ERR;
2337         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
2338         char val[LNET_MAX_STR_LEN];
2339
2340         snprintf(val, sizeof(val), "%d", sen);
2341
2342         rc = write_sysfs_file(modparam_path, "lnet_health_sensitivity", val,
2343                               1, strlen(val) + 1);
2344         if (rc)
2345                 snprintf(err_str, sizeof(err_str),
2346                          "\"cannot configure health sensitivity: %s\"",
2347                          strerror(errno));
2348
2349         cYAML_build_error(rc, seq_no, ADD_CMD, "health_sensitivity", err_str, err_rc);
2350
2351         return rc;
2352 }
2353
2354 int lustre_lnet_config_transaction_to(int timeout, int seq_no, struct cYAML **err_rc)
2355 {
2356         int rc = LUSTRE_CFG_RC_NO_ERR;
2357         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
2358         char val[LNET_MAX_STR_LEN];
2359
2360         snprintf(val, sizeof(val), "%d", timeout);
2361
2362         rc = write_sysfs_file(modparam_path, "lnet_transaction_timeout", val,
2363                               1, strlen(val) + 1);
2364         if (rc)
2365                 snprintf(err_str, sizeof(err_str),
2366                          "\"cannot configure transaction timeout: %s\"",
2367                          strerror(errno));
2368
2369         cYAML_build_error(rc, seq_no, ADD_CMD, "transaction_timeout", err_str, err_rc);
2370
2371         return rc;
2372 }
2373
2374 int lustre_lnet_config_retry_count(int count, int seq_no, struct cYAML **err_rc)
2375 {
2376         int rc = LUSTRE_CFG_RC_NO_ERR;
2377         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
2378         char val[LNET_MAX_STR_LEN];
2379
2380         snprintf(val, sizeof(val), "%d", count);
2381
2382         rc = write_sysfs_file(modparam_path, "lnet_retry_count", val,
2383                               1, strlen(val) + 1);
2384         if (rc)
2385                 snprintf(err_str, sizeof(err_str),
2386                          "\"cannot configure retry count: %s\"",
2387                          strerror(errno));
2388
2389         cYAML_build_error(rc, seq_no, ADD_CMD, "retry_count", err_str, err_rc);
2390
2391         return rc;
2392 }
2393
2394 int lustre_lnet_config_response_tracking(int val, int seq_no,
2395                                          struct cYAML **err_rc)
2396 {
2397         int rc = LUSTRE_CFG_RC_NO_ERR;
2398         char err_str[LNET_MAX_STR_LEN];
2399         char val_str[LNET_MAX_STR_LEN];
2400
2401         if (val < 0 || val > 3) {
2402                 rc = LUSTRE_CFG_RC_BAD_PARAM;
2403                 snprintf(err_str, sizeof(err_str),
2404                          "\"Valid values are: 0, 1, 2, or 3\"");
2405         } else {
2406                 snprintf(err_str, sizeof(err_str), "\"success\"");
2407
2408                 snprintf(val_str, sizeof(val_str), "%d", val);
2409
2410                 rc = write_sysfs_file(modparam_path, "lnet_response_tracking",
2411                                       val_str, 1, strlen(val_str) + 1);
2412                 if (rc)
2413                         snprintf(err_str, sizeof(err_str),
2414                                  "\"cannot configure response tracking: %s\"",
2415                                  strerror(errno));
2416         }
2417
2418         cYAML_build_error(rc, seq_no, ADD_CMD, "response_tracking", err_str,
2419                           err_rc);
2420
2421         return rc;
2422 }
2423
2424 int lustre_lnet_config_max_intf(int max, int seq_no, struct cYAML **err_rc)
2425 {
2426         int rc = LUSTRE_CFG_RC_NO_ERR;
2427         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
2428         char val[LNET_MAX_STR_LEN];
2429
2430         snprintf(val, sizeof(val), "%d", max);
2431
2432         rc = write_sysfs_file(modparam_path, "lnet_interfaces_max", val,
2433                               1, strlen(val) + 1);
2434         if (rc)
2435                 snprintf(err_str, sizeof(err_str),
2436                          "\"cannot configure max interfaces: %s\"",
2437                          strerror(errno));
2438
2439         cYAML_build_error(rc, seq_no, ADD_CMD, "max_interfaces", err_str, err_rc);
2440
2441         return rc;
2442 }
2443
2444 int lustre_lnet_config_discovery(int enable, int seq_no, struct cYAML **err_rc)
2445 {
2446         int rc = LUSTRE_CFG_RC_NO_ERR;
2447         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
2448         char val[LNET_MAX_STR_LEN];
2449
2450         snprintf(val, sizeof(val), "%u", (enable) ? 0 : 1);
2451
2452         rc = write_sysfs_file(modparam_path, "lnet_peer_discovery_disabled", val,
2453                               1, strlen(val) + 1);
2454         if (rc)
2455                 snprintf(err_str, sizeof(err_str),
2456                          "\"cannot configure discovery: %s\"",
2457                          strerror(errno));
2458
2459         cYAML_build_error(rc, seq_no, ADD_CMD, "discovery", err_str, err_rc);
2460
2461         return rc;
2462
2463 }
2464
2465 int lustre_lnet_config_drop_asym_route(int drop, int seq_no,
2466                                        struct cYAML **err_rc)
2467 {
2468         int rc = LUSTRE_CFG_RC_NO_ERR;
2469         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
2470         char val[LNET_MAX_STR_LEN];
2471
2472         snprintf(val, sizeof(val), "%u", (drop) ? 1 : 0);
2473
2474         rc = write_sysfs_file(modparam_path, "lnet_drop_asym_route", val,
2475                               1, strlen(val) + 1);
2476         if (rc)
2477                 snprintf(err_str, sizeof(err_str),
2478                          "\"cannot configure drop asym route: %s\"",
2479                          strerror(errno));
2480
2481         cYAML_build_error(rc, seq_no, ADD_CMD, "drop_asym_route",
2482                           err_str, err_rc);
2483
2484         return rc;
2485
2486 }
2487
2488 int lustre_lnet_config_numa_range(int range, int seq_no, struct cYAML **err_rc)
2489 {
2490         return ioctl_set_value(range, IOC_LIBCFS_SET_NUMA_RANGE,
2491                                "numa_range", seq_no, err_rc);
2492 }
2493
2494 int lustre_lnet_config_buffers(int tiny, int small, int large, int seq_no,
2495                                struct cYAML **err_rc)
2496 {
2497         struct lnet_ioctl_config_data data;
2498         int rc = LUSTRE_CFG_RC_NO_ERR;
2499         char err_str[LNET_MAX_STR_LEN] = "\"success\"";
2500
2501         /* -1 indicates to ignore changes to this field */
2502         if (tiny < -1 || small < -1 || large < -1) {
2503                 snprintf(err_str,
2504                          sizeof(err_str),
2505                          "\"tiny, small and large must be >= 0\"");
2506                 rc = LUSTRE_CFG_RC_OUT_OF_RANGE_PARAM;
2507                 goto out;
2508         }
2509
2510         LIBCFS_IOC_INIT_V2(data, cfg_hdr);
2511         data.cfg_config_u.cfg_buffers.buf_tiny = tiny;
2512         data.cfg_config_u.cfg_buffers.buf_small = small;
2513         data.cfg_config_u.cfg_buffers.buf_large = large;
2514
2515         rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_ADD_BUF, &data);
2516         if (rc != 0) {
2517                 rc = -errno;
2518                 snprintf(err_str,
2519                          sizeof(err_str),
2520                          "\"cannot configure buffers: %s\"", strerror(errno));
2521                 goto out;
2522         }
2523
2524 out:
2525         cYAML_build_error(rc, seq_no, ADD_CMD, "buf", err_str, err_rc);
2526
2527         return rc;
2528 }
2529
2530 int lustre_lnet_show_routing(int seq_no, struct cYAML **show_rc,
2531                              struct cYAML **err_rc, bool backup)
2532 {
2533         struct lnet_ioctl_config_data *data;
2534         struct lnet_ioctl_pool_cfg *pool_cfg = NULL;
2535         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
2536         int l_errno = 0;
2537         char *buf;
2538         char *pools[LNET_NRBPOOLS] = {"tiny", "small", "large"};
2539         int buf_count[LNET_NRBPOOLS] = {0};
2540         struct cYAML *root = NULL, *pools_node = NULL,
2541                      *type_node = NULL, *item = NULL, *cpt = NULL,
2542                      *first_seq = NULL, *buffers = NULL;
2543         int i, j;
2544         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
2545         char node_name[LNET_MAX_STR_LEN];
2546         bool exist = false;
2547
2548         buf = calloc(1, sizeof(*data) + sizeof(*pool_cfg));
2549         if (buf == NULL)
2550                 goto out;
2551
2552         data = (struct lnet_ioctl_config_data *)buf;
2553
2554         root = cYAML_create_object(NULL, NULL);
2555         if (root == NULL)
2556                 goto out;
2557
2558         if (backup)
2559                 pools_node = cYAML_create_object(root, "routing");
2560         else
2561                 pools_node = cYAML_create_seq(root, "routing");
2562         if (pools_node == NULL)
2563                 goto out;
2564
2565         for (i = 0;; i++) {
2566                 LIBCFS_IOC_INIT_V2(*data, cfg_hdr);
2567                 data->cfg_hdr.ioc_len = sizeof(struct lnet_ioctl_config_data) +
2568                                         sizeof(struct lnet_ioctl_pool_cfg);
2569                 data->cfg_count = i;
2570
2571                 rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_GET_BUF, data);
2572                 if (rc != 0) {
2573                         l_errno = errno;
2574                         break;
2575                 }
2576
2577                 exist = true;
2578
2579                 pool_cfg = (struct lnet_ioctl_pool_cfg *)data->cfg_bulk;
2580
2581                 if (backup)
2582                         goto calculate_buffers;
2583
2584                 snprintf(node_name, sizeof(node_name), "cpt[%d]", i);
2585                 item = cYAML_create_seq_item(pools_node);
2586                 if (item == NULL)
2587                         goto out;
2588
2589                 if (first_seq == NULL)
2590                         first_seq = item;
2591
2592                 cpt = cYAML_create_object(item, node_name);
2593                 if (cpt == NULL)
2594                         goto out;
2595
2596 calculate_buffers:
2597                 /* create the tree  and print */
2598                 for (j = 0; j < LNET_NRBPOOLS; j++) {
2599                         if (!backup) {
2600                                 type_node = cYAML_create_object(cpt, pools[j]);
2601                                 if (type_node == NULL)
2602                                         goto out;
2603                         }
2604                         if (!backup &&
2605                             cYAML_create_number(type_node, "npages",
2606                                                 pool_cfg->pl_pools[j].pl_npages)
2607                             == NULL)
2608                                 goto out;
2609                         if (!backup &&
2610                             cYAML_create_number(type_node, "nbuffers",
2611                                                 pool_cfg->pl_pools[j].
2612                                                   pl_nbuffers) == NULL)
2613                                 goto out;
2614                         if (!backup &&
2615                             cYAML_create_number(type_node, "credits",
2616                                                 pool_cfg->pl_pools[j].
2617                                                    pl_credits) == NULL)
2618                                 goto out;
2619                         if (!backup &&
2620                             cYAML_create_number(type_node, "mincredits",
2621                                                 pool_cfg->pl_pools[j].
2622                                                    pl_mincredits) == NULL)
2623                                 goto out;
2624                         /* keep track of the total count for each of the
2625                          * tiny, small and large buffers */
2626                         buf_count[j] += pool_cfg->pl_pools[j].pl_nbuffers;
2627                 }
2628         }
2629
2630         if (pool_cfg != NULL) {
2631                 if (backup) {
2632                         if (cYAML_create_number(pools_node, "enable",
2633                                                 pool_cfg->pl_routing) ==
2634                         NULL)
2635                                 goto out;
2636
2637                         goto add_buffer_section;
2638                 }
2639
2640                 item = cYAML_create_seq_item(pools_node);
2641                 if (item == NULL)
2642                         goto out;
2643
2644                 if (cYAML_create_number(item, "enable", pool_cfg->pl_routing) ==
2645                     NULL)
2646                         goto out;
2647         }
2648
2649 add_buffer_section:
2650         /* create a buffers entry in the show. This is necessary so that
2651          * if the YAML output is used to configure a node, the buffer
2652          * configuration takes hold */
2653         buffers = cYAML_create_object(root, "buffers");
2654         if (buffers == NULL)
2655                 goto out;
2656
2657         for (i = 0; i < LNET_NRBPOOLS; i++) {
2658                 if (cYAML_create_number(buffers, pools[i], buf_count[i]) == NULL)
2659                         goto out;
2660         }
2661
2662         if (show_rc == NULL)
2663                 cYAML_print_tree(root);
2664
2665         if (l_errno != ENOENT) {
2666                 snprintf(err_str,
2667                          sizeof(err_str),
2668                          "\"cannot get routing information: %s\"",
2669                          strerror(l_errno));
2670                 rc = -l_errno;
2671                 goto out;
2672         } else
2673                 rc = LUSTRE_CFG_RC_NO_ERR;
2674
2675         snprintf(err_str, sizeof(err_str), "\"success\"");
2676         rc = LUSTRE_CFG_RC_NO_ERR;
2677
2678 out:
2679         free(buf);
2680         if (show_rc == NULL || rc != LUSTRE_CFG_RC_NO_ERR || !exist) {
2681                 cYAML_free_tree(root);
2682         } else if (show_rc != NULL && *show_rc != NULL) {
2683                 struct cYAML *routing_node;
2684                 /* there should exist only one routing block and one
2685                  * buffers block. If there already exists a previous one
2686                  * then don't add another */
2687                 routing_node = cYAML_get_object_item(*show_rc, "routing");
2688                 if (routing_node == NULL) {
2689                         cYAML_insert_sibling((*show_rc)->cy_child,
2690                                                 root->cy_child);
2691                         free(root);
2692                 } else {
2693                         cYAML_free_tree(root);
2694                 }
2695         } else {
2696                 *show_rc = root;
2697         }
2698
2699         cYAML_build_error(rc, seq_no, SHOW_CMD, "routing", err_str, err_rc);
2700
2701         return rc;
2702 }
2703
2704 int lustre_lnet_show_peer(char *knid, int detail, int seq_no,
2705                           struct cYAML **show_rc, struct cYAML **err_rc,
2706                           bool backup)
2707 {
2708         /*
2709          * TODO: This function is changing in a future patch to accommodate
2710          * PEER_LIST and proper filtering on any nid of the peer
2711          */
2712         struct lnet_ioctl_peer_cfg peer_info;
2713         struct lnet_peer_ni_credit_info *lpni_cri;
2714         struct lnet_ioctl_element_stats *lpni_stats;
2715         struct lnet_ioctl_element_msg_stats *msg_stats;
2716         struct lnet_ioctl_peer_ni_hstats *hstats;
2717         lnet_nid_t *nidp;
2718         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
2719         int i, j, k;
2720         int l_errno = 0;
2721         __u32 count;
2722         __u32 size;
2723         struct cYAML *root = NULL, *peer = NULL, *peer_ni = NULL,
2724                      *first_seq = NULL, *peer_root = NULL, *tmp = NULL,
2725                      *msg_statistics = NULL, *statistics = NULL,
2726                      *yhstats;
2727         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
2728         struct lnet_process_id *list = NULL;
2729         void *data = NULL;
2730         void *lpni_data;
2731         bool exist = false;
2732
2733         /* create struct cYAML root object */
2734         root = cYAML_create_object(NULL, NULL);
2735         if (root == NULL)
2736                 goto out;
2737
2738         peer_root = cYAML_create_seq(root, "peer");
2739         if (peer_root == NULL)
2740                 goto out;
2741
2742         count = 1000;
2743         size = count * sizeof(struct lnet_process_id);
2744         list = malloc(size);
2745         if (list == NULL) {
2746                 l_errno = ENOMEM;
2747                 goto out;
2748         }
2749         if (knid != NULL) {
2750                 list[0].nid = libcfs_str2nid(knid);
2751                 count = 1;
2752         } else {
2753                 for (;;) {
2754                         memset(&peer_info, 0, sizeof(peer_info));
2755                         LIBCFS_IOC_INIT_V2(peer_info, prcfg_hdr);
2756                         peer_info.prcfg_hdr.ioc_len = sizeof(peer_info);
2757                         peer_info.prcfg_size = size;
2758                         peer_info.prcfg_bulk = list;
2759
2760                         l_errno = 0;
2761                         rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_GET_PEER_LIST,
2762                                      &peer_info);
2763                         count = peer_info.prcfg_count;
2764                         if (rc == 0)
2765                                 break;
2766                         l_errno = errno;
2767                         if (l_errno != E2BIG) {
2768                                 snprintf(err_str,
2769                                         sizeof(err_str),
2770                                         "\"cannot get peer list: %s\"",
2771                                         strerror(l_errno));
2772                                 rc = -l_errno;
2773                                 goto out;
2774                         }
2775                         free(list);
2776                         size = peer_info.prcfg_size;
2777                         list = malloc(size);
2778                         if (list == NULL) {
2779                                 l_errno = ENOMEM;
2780                                 goto out;
2781                         }
2782                 }
2783         }
2784
2785         size = 4096;
2786         data = malloc(size);
2787         if (data == NULL) {
2788                 l_errno = ENOMEM;
2789                 goto out;
2790         }
2791
2792         for (i = 0; i < count; i++) {
2793                 for (;;) {
2794                         memset(&peer_info, 0, sizeof(peer_info));
2795                         LIBCFS_IOC_INIT_V2(peer_info, prcfg_hdr);
2796                         peer_info.prcfg_hdr.ioc_len = sizeof(peer_info);
2797                         peer_info.prcfg_prim_nid = list[i].nid;
2798                         peer_info.prcfg_size = size;
2799                         peer_info.prcfg_bulk = data;
2800
2801                         l_errno = 0;
2802                         rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_GET_PEER_NI,
2803                                      &peer_info);
2804                         if (rc == 0)
2805                                 break;
2806                         l_errno = errno;
2807                         if (l_errno != E2BIG) {
2808                                 snprintf(err_str,
2809                                         sizeof(err_str),
2810                                         "\"cannot get peer information: %s\"",
2811                                         strerror(l_errno));
2812                                 rc = -l_errno;
2813                                 goto out;
2814                         }
2815                         free(data);
2816                         size = peer_info.prcfg_size;
2817                         data = malloc(size);
2818                         if (data == NULL) {
2819                                 l_errno = ENOMEM;
2820                                 goto out;
2821                         }
2822                 }
2823                 exist = true;
2824
2825                 peer = cYAML_create_seq_item(peer_root);
2826                 if (peer == NULL)
2827                         goto out;
2828
2829                 if (first_seq == NULL)
2830                         first_seq = peer;
2831
2832                 lnet_nid_t pnid = peer_info.prcfg_prim_nid;
2833                 if (cYAML_create_string(peer, "primary nid",
2834                                         libcfs_nid2str(pnid))
2835                     == NULL)
2836                         goto out;
2837                 if (cYAML_create_string(peer, "Multi-Rail",
2838                                         peer_info.prcfg_mr ? "True" : "False")
2839                     == NULL)
2840                         goto out;
2841                 /*
2842                  * print out the state of the peer only if details are
2843                  * requested
2844                  */
2845                 if (detail >= 3) {
2846                         if (!backup &&
2847                             cYAML_create_number(peer, "peer state",
2848                                                 peer_info.prcfg_state)
2849                                 == NULL)
2850                                 goto out;
2851                 }
2852
2853                 tmp = cYAML_create_seq(peer, "peer ni");
2854                 if (tmp == NULL)
2855                         goto out;
2856
2857                 lpni_data = data;
2858                 for (j = 0; j < peer_info.prcfg_count; j++) {
2859                         nidp = lpni_data;
2860                         lpni_cri = (void*)nidp + sizeof(nidp);
2861                         lpni_stats = (void *)lpni_cri + sizeof(*lpni_cri);
2862                         msg_stats = (void *)lpni_stats + sizeof(*lpni_stats);
2863                         hstats = (void *)msg_stats + sizeof(*msg_stats);
2864                         lpni_data = (void *)hstats + sizeof(*hstats);
2865
2866                         peer_ni = cYAML_create_seq_item(tmp);
2867                         if (peer_ni == NULL)
2868                                 goto out;
2869
2870                         if (cYAML_create_string(peer_ni, "nid",
2871                                                 libcfs_nid2str(*nidp))
2872                             == NULL)
2873                                 goto out;
2874
2875                         if (backup)
2876                                 continue;
2877
2878                         if (cYAML_create_string(peer_ni, "state",
2879                                                 lpni_cri->cr_aliveness)
2880                             == NULL)
2881                                 goto out;
2882
2883                         if (!detail)
2884                                 continue;
2885
2886                         if (cYAML_create_number(peer_ni, "max_ni_tx_credits",
2887                                                 lpni_cri->cr_ni_peer_tx_credits)
2888                             == NULL)
2889                                 goto out;
2890
2891                         if (cYAML_create_number(peer_ni, "available_tx_credits",
2892                                                 lpni_cri->cr_peer_tx_credits)
2893                             == NULL)
2894                                 goto out;
2895
2896                         if (cYAML_create_number(peer_ni, "min_tx_credits",
2897                                                 lpni_cri->cr_peer_min_tx_credits)
2898                             == NULL)
2899                                 goto out;
2900
2901                         if (cYAML_create_number(peer_ni, "tx_q_num_of_buf",
2902                                                 lpni_cri->cr_peer_tx_qnob)
2903                             == NULL)
2904                                 goto out;
2905
2906                         if (cYAML_create_number(peer_ni, "available_rtr_credits",
2907                                                 lpni_cri->cr_peer_rtr_credits)
2908                             == NULL)
2909                                 goto out;
2910
2911                         if (cYAML_create_number(peer_ni, "min_rtr_credits",
2912                                                 lpni_cri->cr_peer_min_rtr_credits)
2913                             == NULL)
2914                                 goto out;
2915
2916                         if (cYAML_create_number(peer_ni, "refcount",
2917                                                 lpni_cri->cr_refcount) == NULL)
2918                                 goto out;
2919
2920                         statistics = cYAML_create_object(peer_ni, "statistics");
2921                         if (statistics == NULL)
2922                                 goto out;
2923
2924                         if (cYAML_create_number(statistics, "send_count",
2925                                                 lpni_stats->iel_send_count)
2926                             == NULL)
2927                                 goto out;
2928
2929                         if (cYAML_create_number(statistics, "recv_count",
2930                                                 lpni_stats->iel_recv_count)
2931                             == NULL)
2932                                 goto out;
2933
2934                         if (cYAML_create_number(statistics, "drop_count",
2935                                                 lpni_stats->iel_drop_count)
2936                             == NULL)
2937                                 goto out;
2938
2939                         if (detail < 2)
2940                                 continue;
2941
2942                         for (k = 0; k < 3; k++) {
2943                                 struct lnet_ioctl_comm_count *counts;
2944
2945                                 msg_statistics = cYAML_create_object(peer_ni,
2946                                                  (char *) gmsg_stat_names[k]);
2947                                 if (msg_statistics == NULL)
2948                                         goto out;
2949
2950                                 counts = get_counts(msg_stats, k);
2951                                 if (counts == NULL)
2952                                         goto out;
2953
2954                                 if (!add_msg_stats_to_yaml_blk(msg_statistics,
2955                                                                counts))
2956                                         goto out;
2957                         }
2958
2959                         yhstats = cYAML_create_object(peer_ni, "health stats");
2960                         if (!yhstats)
2961                                 goto out;
2962                         if (cYAML_create_number(yhstats, "health value",
2963                                                 hstats->hlpni_health_value)
2964                                                         == NULL)
2965                                 goto out;
2966                         if (cYAML_create_number(yhstats, "dropped",
2967                                                 hstats->hlpni_remote_dropped)
2968                                                         == NULL)
2969                                 goto out;
2970                         if (cYAML_create_number(yhstats, "timeout",
2971                                                 hstats->hlpni_remote_timeout)
2972                                                         == NULL)
2973                                 goto out;
2974                         if (cYAML_create_number(yhstats, "error",
2975                                                 hstats->hlpni_remote_error)
2976                                                         == NULL)
2977                                 goto out;
2978                         if (cYAML_create_number(yhstats, "network timeout",
2979                                                 hstats->hlpni_network_timeout)
2980                                                         == NULL)
2981                                 goto out;
2982                 }
2983         }
2984
2985         /* print output iff show_rc is not provided */
2986         if (show_rc == NULL)
2987                 cYAML_print_tree(root);
2988
2989         snprintf(err_str, sizeof(err_str), "\"success\"");
2990         rc = LUSTRE_CFG_RC_NO_ERR;
2991
2992 out:
2993         free(list);
2994         free(data);
2995         if (show_rc == NULL || rc != LUSTRE_CFG_RC_NO_ERR || !exist) {
2996                 cYAML_free_tree(root);
2997         } else if (show_rc != NULL && *show_rc != NULL) {
2998                 struct cYAML *show_node;
2999                 /* find the peer node, if one doesn't exist then
3000                  * insert one.  Otherwise add to the one there
3001                  */
3002                 show_node = cYAML_get_object_item(*show_rc,
3003                                                   "peer");
3004                 if (show_node != NULL && cYAML_is_sequence(show_node)) {
3005                         cYAML_insert_child(show_node, first_seq);
3006                         free(peer_root);
3007                         free(root);
3008                 } else if (show_node == NULL) {
3009                         cYAML_insert_sibling((*show_rc)->cy_child,
3010                                              peer_root);
3011                         free(root);
3012                 } else {
3013                         cYAML_free_tree(root);
3014                 }
3015         } else {
3016                 *show_rc = root;
3017         }
3018
3019         cYAML_build_error(rc, seq_no, SHOW_CMD, "peer", err_str,
3020                           err_rc);
3021
3022         return rc;
3023 }
3024
3025 int lustre_lnet_list_peer(int seq_no,
3026                           struct cYAML **show_rc, struct cYAML **err_rc)
3027 {
3028         struct lnet_ioctl_peer_cfg peer_info;
3029         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
3030         __u32 count;
3031         __u32 size;
3032         int i = 0;
3033         int l_errno = 0;
3034         struct cYAML *root = NULL, *list_root = NULL, *first_seq = NULL;
3035         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
3036         struct lnet_process_id *list = NULL;
3037
3038         memset(&peer_info, 0, sizeof(peer_info));
3039
3040         /* create struct cYAML root object */
3041         root = cYAML_create_object(NULL, NULL);
3042         if (root == NULL)
3043                 goto out;
3044
3045         list_root = cYAML_create_seq(root, "peer list");
3046         if (list_root == NULL)
3047                 goto out;
3048
3049         count = 1000;
3050         size = count * sizeof(struct lnet_process_id);
3051         list = malloc(size);
3052         if (list == NULL) {
3053                 l_errno = ENOMEM;
3054                 goto out;
3055         }
3056         for (;;) {
3057                 LIBCFS_IOC_INIT_V2(peer_info, prcfg_hdr);
3058                 peer_info.prcfg_hdr.ioc_len = sizeof(peer_info);
3059                 peer_info.prcfg_size = size;
3060                 peer_info.prcfg_bulk = list;
3061
3062                 l_errno = 0;
3063                 rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_GET_PEER_LIST, &peer_info);
3064                 count = peer_info.prcfg_count;
3065                 if (rc == 0)
3066                         break;
3067                 l_errno = errno;
3068                 if (l_errno != E2BIG) {
3069                         snprintf(err_str,
3070                                 sizeof(err_str),
3071                                 "\"cannot get peer list: %s\"",
3072                                 strerror(l_errno));
3073                         rc = -l_errno;
3074                         goto out;
3075                 }
3076                 free(list);
3077                 size = peer_info.prcfg_size;
3078                 list = malloc(size);
3079                 if (list == NULL) {
3080                         l_errno = ENOMEM;
3081                         goto out;
3082                 }
3083         }
3084
3085         /* count is now the actual number of ids in the list. */
3086         for (i = 0; i < count; i++) {
3087                 if (cYAML_create_string(list_root, "nid",
3088                                         libcfs_nid2str(list[i].nid))
3089                     == NULL)
3090                         goto out;
3091         }
3092
3093         /* print output iff show_rc is not provided */
3094         if (show_rc == NULL)
3095                 cYAML_print_tree(root);
3096
3097         snprintf(err_str, sizeof(err_str), "\"success\"");
3098         rc = LUSTRE_CFG_RC_NO_ERR;
3099
3100 out:
3101         if (list != NULL)
3102                 free(list);
3103         if (show_rc == NULL || rc != LUSTRE_CFG_RC_NO_ERR) {
3104                 cYAML_free_tree(root);
3105         } else if (show_rc != NULL && *show_rc != NULL) {
3106                 struct cYAML *show_node;
3107                 /* find the peer node, if one doesn't exist then
3108                  * insert one.  Otherwise add to the one there
3109                  */
3110                 show_node = cYAML_get_object_item(*show_rc,
3111                                                   "peer");
3112                 if (show_node != NULL && cYAML_is_sequence(show_node)) {
3113                         cYAML_insert_child(show_node, first_seq);
3114                         free(list_root);
3115                         free(root);
3116                 } else if (show_node == NULL) {
3117                         cYAML_insert_sibling((*show_rc)->cy_child,
3118                                              list_root);
3119                         free(root);
3120                 } else {
3121                         cYAML_free_tree(root);
3122                 }
3123         } else {
3124                 *show_rc = root;
3125         }
3126
3127         cYAML_build_error(rc, seq_no, SHOW_CMD, "peer", err_str,
3128                           err_rc);
3129
3130         return rc;
3131 }
3132
3133 static void add_to_global(struct cYAML *show_rc, struct cYAML *node,
3134                           struct cYAML *root)
3135 {
3136         struct cYAML *show_node;
3137
3138         show_node = cYAML_get_object_item(show_rc, "global");
3139         if (show_node != NULL)
3140                 cYAML_insert_sibling(show_node->cy_child,
3141                                      node->cy_child);
3142         else
3143                 cYAML_insert_sibling(show_rc->cy_child,
3144                                      node);
3145         free(root);
3146 }
3147
3148 static int build_global_yaml_entry(char *err_str, int err_len, int seq_no,
3149                                    char *name, __u64 value,
3150                                    struct cYAML **show_rc,
3151                                    struct cYAML **err_rc, int err)
3152 {
3153         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
3154         struct cYAML *root = NULL, *global = NULL;
3155
3156         if (err) {
3157                 rc = err;
3158                 goto out;
3159         }
3160
3161         root = cYAML_create_object(NULL, NULL);
3162         if (root == NULL)
3163                 goto out;
3164
3165         global = cYAML_create_object(root, "global");
3166         if (global == NULL)
3167                 goto out;
3168
3169         if (cYAML_create_number(global, name,
3170                                 value) == NULL)
3171                 goto out;
3172
3173         if (show_rc == NULL)
3174                 cYAML_print_tree(root);
3175
3176         snprintf(err_str, err_len, "\"success\"");
3177
3178         rc = LUSTRE_CFG_RC_NO_ERR;
3179
3180 out:
3181         if (show_rc == NULL || rc != LUSTRE_CFG_RC_NO_ERR) {
3182                 cYAML_free_tree(root);
3183         } else if (show_rc != NULL && *show_rc != NULL) {
3184                 add_to_global(*show_rc, global, root);
3185         } else {
3186                 *show_rc = root;
3187         }
3188
3189         cYAML_build_error(rc, seq_no, SHOW_CMD, "global", err_str, err_rc);
3190
3191         return rc;
3192 }
3193
3194 static int ioctl_show_global_values(int ioc, int seq_no, char *name,
3195                                     struct cYAML **show_rc,
3196                                     struct cYAML **err_rc)
3197 {
3198         struct lnet_ioctl_set_value data;
3199         int rc;
3200         int l_errno = 0;
3201         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
3202
3203         LIBCFS_IOC_INIT_V2(data, sv_hdr);
3204
3205         rc = l_ioctl(LNET_DEV_ID, ioc, &data);
3206         if (rc != 0) {
3207                 l_errno = -errno;
3208                 snprintf(err_str,
3209                          sizeof(err_str),
3210                          "\"cannot get %s: %s\"",
3211                          name, strerror(l_errno));
3212         }
3213
3214         return build_global_yaml_entry(err_str, sizeof(err_str), seq_no, name,
3215                                        data.sv_value, show_rc, err_rc, l_errno);
3216 }
3217
3218 int lustre_lnet_show_recov_intrv(int seq_no, struct cYAML **show_rc,
3219                                  struct cYAML **err_rc)
3220 {
3221         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
3222         char val[LNET_MAX_STR_LEN];
3223         int intrv = -1, l_errno = 0;
3224         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
3225
3226         rc = read_sysfs_file(modparam_path, "lnet_recovery_interval", val,
3227                              1, sizeof(val));
3228         if (rc) {
3229                 l_errno = -errno;
3230                 snprintf(err_str, sizeof(err_str),
3231                          "\"cannot get recovery interval: %d\"", rc);
3232         } else {
3233                 intrv = atoi(val);
3234         }
3235
3236         return build_global_yaml_entry(err_str, sizeof(err_str), seq_no,
3237                                        "recovery_interval", intrv, show_rc,
3238                                        err_rc, l_errno);
3239 }
3240
3241 int lustre_lnet_show_hsensitivity(int seq_no, struct cYAML **show_rc,
3242                                   struct cYAML **err_rc)
3243 {
3244         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
3245         char val[LNET_MAX_STR_LEN];
3246         int sen = -1, l_errno = 0;
3247         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
3248
3249         rc = read_sysfs_file(modparam_path, "lnet_health_sensitivity", val,
3250                              1, sizeof(val));
3251         if (rc) {
3252                 l_errno = -errno;
3253                 snprintf(err_str, sizeof(err_str),
3254                          "\"cannot get health sensitivity: %d\"", rc);
3255         } else {
3256                 sen = atoi(val);
3257         }
3258
3259         return build_global_yaml_entry(err_str, sizeof(err_str), seq_no,
3260                                        "health_sensitivity", sen, show_rc,
3261                                        err_rc, l_errno);
3262 }
3263
3264 int lustre_lnet_show_rtr_sensitivity(int seq_no, struct cYAML **show_rc,
3265                                      struct cYAML **err_rc)
3266 {
3267         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
3268         char val[LNET_MAX_STR_LEN];
3269         int sen = -1, l_errno = 0;
3270         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
3271
3272         rc = read_sysfs_file(modparam_path, "router_sensitivity_percentage", val,
3273                              1, sizeof(val));
3274         if (rc) {
3275                 l_errno = -errno;
3276                 snprintf(err_str, sizeof(err_str),
3277                          "\"cannot get router sensitivity percentage: %d\"", rc);
3278         } else {
3279                 sen = atoi(val);
3280         }
3281
3282         return build_global_yaml_entry(err_str, sizeof(err_str), seq_no,
3283                                        "router_sensitivity", sen, show_rc,
3284                                        err_rc, l_errno);
3285 }
3286
3287 int lustre_lnet_show_lnd_timeout(int seq_no, struct cYAML **show_rc,
3288                                  struct cYAML **err_rc)
3289 {
3290         char val[LNET_MAX_STR_LEN];
3291         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
3292         int lnd_to = -1;
3293         int l_errno = 0;
3294         int rc;
3295         int fd;
3296         glob_t path;
3297
3298         rc = cfs_get_param_paths(&path, "lnet_lnd_timeout");
3299         if (rc < 0) {
3300                 l_errno = -errno;
3301                 snprintf(err_str, sizeof(err_str),
3302                          "\"cannot get LND timeout: %d\"", rc);
3303                 return build_global_yaml_entry(err_str, sizeof(err_str), seq_no,
3304                                                "lnd_timeout", lnd_to, show_rc,
3305                                                err_rc, l_errno);
3306         }
3307
3308         fd = open(path.gl_pathv[0], O_RDONLY);
3309         if (fd < 0) {
3310                 l_errno = -errno;
3311                 snprintf(err_str, sizeof(err_str),
3312                          "\"error opening %s\"", path.gl_pathv[0]);
3313                 goto failed;
3314         }
3315
3316         rc = read(fd, val, sizeof(val));
3317         if (rc < 0)
3318                 l_errno = -errno;
3319
3320         close(fd);
3321
3322         if (rc < 0) {
3323                 snprintf(err_str, sizeof(err_str),
3324                          "\"error reading %s\"", path.gl_pathv[0]);
3325                 goto failed;
3326         }
3327
3328         lnd_to = atoi(val);
3329
3330 failed:
3331         cfs_free_param_data(&path);
3332
3333         return build_global_yaml_entry(err_str, sizeof(err_str), seq_no,
3334                                        "lnd_timeout", lnd_to, show_rc,
3335                                        err_rc, l_errno);
3336 }
3337
3338 int lustre_lnet_show_transaction_to(int seq_no, struct cYAML **show_rc,
3339                                     struct cYAML **err_rc)
3340 {
3341         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
3342         char val[LNET_MAX_STR_LEN];
3343         int tto = -1, l_errno = 0;
3344         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
3345
3346         rc = read_sysfs_file(modparam_path, "lnet_transaction_timeout", val,
3347                              1, sizeof(val));
3348         if (rc) {
3349                 l_errno = -errno;
3350                 snprintf(err_str, sizeof(err_str),
3351                          "\"cannot get transaction timeout: %d\"", rc);
3352         } else {
3353                 tto = atoi(val);
3354         }
3355
3356         return build_global_yaml_entry(err_str, sizeof(err_str), seq_no,
3357                                        "transaction_timeout", tto, show_rc,
3358                                        err_rc, l_errno);
3359 }
3360
3361 int lustre_lnet_show_retry_count(int seq_no, struct cYAML **show_rc,
3362                                  struct cYAML **err_rc)
3363 {
3364         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
3365         char val[LNET_MAX_STR_LEN];
3366         int retry_count = -1, l_errno = 0;
3367         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
3368
3369         rc = read_sysfs_file(modparam_path, "lnet_retry_count", val,
3370                              1, sizeof(val));
3371         if (rc) {
3372                 l_errno = -errno;
3373                 snprintf(err_str, sizeof(err_str),
3374                          "\"cannot get retry count: %d\"", rc);
3375         } else {
3376                 retry_count = atoi(val);
3377         }
3378
3379         return build_global_yaml_entry(err_str, sizeof(err_str), seq_no,
3380                                        "retry_count", retry_count, show_rc,
3381                                        err_rc, l_errno);
3382 }
3383
3384 int lustre_lnet_calc_service_id(__u64 *service_id)
3385 {
3386         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
3387         char val[LNET_MAX_STR_LEN];
3388         int service_port = -1, l_errno = 0;
3389
3390         rc = read_sysfs_file(o2ib_modparam_path, "service", val,
3391                              1, sizeof(val));
3392         if (rc) {
3393                 l_errno = errno;
3394                 fprintf(stderr, "error:\n    msg: \"cannot get service port: %s (%d)\"\n",
3395                         strerror(l_errno), -l_errno);
3396                 return rc;
3397         } else {
3398                 service_port = atoi(val);
3399         }
3400
3401         *service_id = htobe64(((__u64)RDMA_PS_TCP << 16) + service_port);
3402
3403         return LUSTRE_CFG_RC_NO_ERR;
3404 }
3405
3406 int show_recovery_queue(enum lnet_health_type type, char *name, int seq_no,
3407                         struct cYAML **show_rc, struct cYAML **err_rc)
3408 {
3409         struct lnet_ioctl_recovery_list nid_list;
3410         struct cYAML *root = NULL, *nids = NULL;
3411         int rc, i;
3412         char err_str[LNET_MAX_STR_LEN] = "failed to print recovery queue\n";
3413
3414         LIBCFS_IOC_INIT_V2(nid_list, rlst_hdr);
3415         nid_list.rlst_type = type;
3416
3417         rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_GET_RECOVERY_QUEUE, &nid_list);
3418         if (rc) {
3419                 rc = errno;
3420                 goto out;
3421         }
3422
3423         if (nid_list.rlst_num_nids == 0)
3424                 goto out;
3425
3426         root = cYAML_create_object(NULL, NULL);
3427         if (root == NULL)
3428                 goto out;
3429
3430         nids = cYAML_create_object(root, name);
3431         if (nids == NULL)
3432                 goto out;
3433
3434         rc = -EINVAL;
3435
3436         for (i = 0; i < nid_list.rlst_num_nids; i++) {
3437                 char nidenum[LNET_MAX_STR_LEN];
3438                 snprintf(nidenum, sizeof(nidenum), "nid-%d", i);
3439                 if (!cYAML_create_string(nids, nidenum,
3440                         libcfs_nid2str(nid_list.rlst_nid_array[i])))
3441                         goto out;
3442         }
3443
3444         snprintf(err_str, sizeof(err_str), "success\n");
3445
3446         rc = 0;
3447
3448 out:
3449         if (show_rc == NULL || rc != LUSTRE_CFG_RC_NO_ERR) {
3450                 cYAML_free_tree(root);
3451         } else if (show_rc != NULL && *show_rc != NULL) {
3452                 struct cYAML *show_node;
3453                 /* find the net node, if one doesn't exist
3454                  * then insert one.  Otherwise add to the one there
3455                  */
3456                 show_node = cYAML_get_object_item(*show_rc, name);
3457                 if (show_node != NULL && cYAML_is_sequence(show_node)) {
3458                         cYAML_insert_child(show_node, nids);
3459                         free(nids);
3460                         free(root);
3461                 } else if (show_node == NULL) {
3462                         cYAML_insert_sibling((*show_rc)->cy_child,
3463                                                 nids);
3464                         free(root);
3465                 } else {
3466                         cYAML_free_tree(root);
3467                 }
3468         } else {
3469                 *show_rc = root;
3470         }
3471
3472         cYAML_build_error(rc, seq_no, SHOW_CMD, name, err_str, err_rc);
3473
3474         return rc;
3475 }
3476
3477 int lustre_lnet_show_local_ni_recovq(int seq_no, struct cYAML **show_rc,
3478                                      struct cYAML **err_rc)
3479 {
3480         return show_recovery_queue(LNET_HEALTH_TYPE_LOCAL_NI, "local NI recovery",
3481                                    seq_no, show_rc, err_rc);
3482 }
3483
3484 int lustre_lnet_show_peer_ni_recovq(int seq_no, struct cYAML **show_rc,
3485                                     struct cYAML **err_rc)
3486 {
3487         return show_recovery_queue(LNET_HEALTH_TYPE_PEER_NI, "peer NI recovery",
3488                                    seq_no, show_rc, err_rc);
3489 }
3490
3491 int lustre_lnet_show_response_tracking(int seq_no, struct cYAML **show_rc,
3492                                        struct cYAML **err_rc)
3493 {
3494         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
3495         char val[LNET_MAX_STR_LEN];
3496         int rsp_tracking = -1, l_errno = 0;
3497         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
3498
3499         rc = read_sysfs_file(modparam_path, "lnet_response_tracking", val,
3500                              1, sizeof(val));
3501         if (rc) {
3502                 l_errno = -errno;
3503                 snprintf(err_str, sizeof(err_str),
3504                          "\"cannot get lnet_response_tracking value: %d\"", rc);
3505         } else {
3506                 rsp_tracking = atoi(val);
3507         }
3508
3509         return build_global_yaml_entry(err_str, sizeof(err_str), seq_no,
3510                                        "response_tracking", rsp_tracking,
3511                                        show_rc, err_rc, l_errno);
3512 }
3513
3514 int lustre_lnet_show_max_intf(int seq_no, struct cYAML **show_rc,
3515                               struct cYAML **err_rc)
3516 {
3517         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
3518         char val[LNET_MAX_STR_LEN];
3519         int max_intf = -1, l_errno = 0;
3520         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
3521
3522         rc = read_sysfs_file(modparam_path, "lnet_interfaces_max", val,
3523                              1, sizeof(val));
3524         if (rc) {
3525                 l_errno = -errno;
3526                 snprintf(err_str, sizeof(err_str),
3527                          "\"cannot get max interfaces: %d\"", rc);
3528         } else {
3529                 max_intf = atoi(val);
3530         }
3531
3532         return build_global_yaml_entry(err_str, sizeof(err_str), seq_no,
3533                                        "max_intf", max_intf, show_rc,
3534                                        err_rc, l_errno);
3535 }
3536
3537 int lustre_lnet_show_discovery(int seq_no, struct cYAML **show_rc,
3538                                struct cYAML **err_rc)
3539 {
3540         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
3541         char val[LNET_MAX_STR_LEN];
3542         int discovery = -1, l_errno = 0;
3543         char err_str[LNET_MAX_STR_LEN]  = "\"out of memory\"";
3544
3545         rc = read_sysfs_file(modparam_path, "lnet_peer_discovery_disabled", val,
3546                              1, sizeof(val));
3547         if (rc) {
3548                 l_errno = -errno;
3549                 snprintf(err_str, sizeof(err_str),
3550                          "\"cannot get discovery setting: %d\"", rc);
3551         } else {
3552                 /*
3553                  * The kernel stores a discovery disabled value. User space
3554                  * shows whether discovery is enabled. So the value must be
3555                  * inverted.
3556                  */
3557                 discovery = !atoi(val);
3558         }
3559
3560         return build_global_yaml_entry(err_str, sizeof(err_str), seq_no,
3561                                        "discovery", discovery, show_rc,
3562                                        err_rc, l_errno);
3563 }
3564
3565 int lustre_lnet_show_drop_asym_route(int seq_no, struct cYAML **show_rc,
3566                                      struct cYAML **err_rc)
3567 {
3568         int rc = LUSTRE_CFG_RC_OUT_OF_MEM;
3569         char val[LNET_MAX_STR_LEN];
3570         int drop_asym_route = -1, l_errno = 0;
3571         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
3572
3573         rc = read_sysfs_file(modparam_path, "lnet_drop_asym_route", val,
3574                              1, sizeof(val));
3575         if (rc) {
3576                 l_errno = -errno;
3577                 snprintf(err_str, sizeof(err_str),
3578                          "\"cannot get drop asym route setting: %d\"", rc);
3579         } else {
3580                 drop_asym_route = atoi(val);
3581         }
3582
3583         return build_global_yaml_entry(err_str, sizeof(err_str), seq_no,
3584                                        "drop_asym_route", drop_asym_route,
3585                                        show_rc, err_rc, l_errno);
3586 }
3587
3588 int lustre_lnet_show_numa_range(int seq_no, struct cYAML **show_rc,
3589                                 struct cYAML **err_rc)
3590 {
3591         return ioctl_show_global_values(IOC_LIBCFS_GET_NUMA_RANGE, seq_no,
3592                                         "numa_range", show_rc, err_rc);
3593 }
3594
3595 int lustre_lnet_show_stats(int seq_no, struct cYAML **show_rc,
3596                            struct cYAML **err_rc)
3597 {
3598         struct lnet_ioctl_lnet_stats data;
3599         struct lnet_counters *cntrs;
3600         int rc;
3601         int l_errno;
3602         char err_str[LNET_MAX_STR_LEN] = "\"out of memory\"";
3603         struct cYAML *root = NULL, *stats = NULL;
3604
3605         LIBCFS_IOC_INIT_V2(data, st_hdr);
3606
3607         rc = l_ioctl(LNET_DEV_ID, IOC_LIBCFS_GET_LNET_STATS, &data);
3608         if (rc) {
3609                 l_errno = errno;
3610                 snprintf(err_str,
3611                          sizeof(err_str),
3612                          "\"cannot get lnet statistics: %s\"",
3613                          strerror(l_errno));
3614                 rc = -l_errno;
3615                 goto out;
3616         }
3617
3618         rc = LUSTRE_CFG_RC_OUT_OF_MEM;
3619
3620         cntrs = &data.st_cntrs;
3621
3622         root = cYAML_create_object(NULL, NULL);
3623         if (!root)
3624                 goto out;
3625
3626         stats = cYAML_create_object(root, "statistics");
3627         if (!stats)
3628                 goto out;
3629
3630         if (!cYAML_create_number(stats, "msgs_alloc",
3631                                  cntrs->lct_common.lcc_msgs_alloc))
3632                 goto out;
3633
3634         if (!cYAML_create_number(stats, "msgs_max",
3635                                  cntrs->lct_common.lcc_msgs_max))
3636                 goto out;
3637
3638         if (!cYAML_create_number(stats, "rst_alloc",
3639                                  cntrs->lct_health.lch_rst_alloc))
3640                 goto out;
3641
3642         if (!cYAML_create_number(stats, "errors",
3643                                  cntrs->lct_common.lcc_errors))
3644                 goto out;
3645
3646         if (!cYAML_create_number(stats, "send_count",
3647                                  cntrs->lct_common.lcc_send_count))
3648                 goto out;
3649
3650         if (!cYAML_create_number(stats, "resend_count",
3651                                  cntrs->lct_health.lch_resend_count))
3652                 goto out;
3653
3654         if (!cYAML_create_number(stats, "response_timeout_count",
3655                                  cntrs->lct_health.lch_response_timeout_count))
3656                 goto out;
3657
3658         if (!cYAML_create_number(stats, "local_interrupt_count",
3659                                  cntrs->lct_health.lch_local_interrupt_count))
3660                 goto out;
3661
3662         if (!cYAML_create_number(stats, "local_dropped_count",
3663                                  cntrs->lct_health.lch_local_dropped_count))
3664                 goto out;
3665
3666         if (!cYAML_create_number(stats, "local_aborted_count",
3667                                  cntrs->lct_health.lch_local_aborted_count))
3668                 goto out;
3669
3670         if (!cYAML_create_number(stats, "local_no_route_count",
3671                                  cntrs->lct_health.lch_local_no_route_count))
3672                 goto out;
3673
3674         if (!cYAML_create_number(stats, "local_timeout_count",
3675                                  cntrs->lct_health.lch_local_timeout_count))
3676                 goto out;
3677
3678         if (!cYAML_create_number(stats, "local_error_count",
3679                                  cntrs->lct_health.lch_local_error_count))
3680                 goto out;
3681
3682         if (!cYAML_create_number(stats, "remote_dropped_count",
3683                                  cntrs->lct_health.lch_remote_dropped_count))
3684                 goto out;
3685
3686         if (!cYAML_create_number(stats, "remote_error_count",
3687                                  cntrs->lct_health.lch_remote_error_count))
3688                 goto out;
3689
3690         if (!cYAML_create_number(stats, "remote_timeout_count",
3691                                  cntrs->lct_health.lch_remote_timeout_count))
3692                 goto out;
3693
3694         if (!cYAML_create_number(stats, "network_timeout_count",
3695                                  cntrs->lct_health.lch_network_timeout_count))
3696                 goto out;
3697
3698         if (!cYAML_create_number(stats, "recv_count",
3699                                  cntrs->lct_common.lcc_recv_count))
3700                 goto out;
3701
3702         if (!cYAML_create_number(stats, "route_count",
3703                                  cntrs->lct_common.lcc_route_count))
3704                 goto out;
3705
3706         if (!cYAML_create_number(stats, "drop_count",
3707                                  cntrs->lct_common.lcc_drop_count))
3708                 goto out;
3709
3710         if (!cYAML_create_number(stats, "send_length",
3711                                  cntrs->lct_common.lcc_send_length))
3712                 goto out;
3713
3714         if (!cYAML_create_number(stats, "recv_length",
3715                                  cntrs->lct_common.lcc_recv_length))
3716                 goto out;
3717
3718         if (!cYAML_create_number(stats, "route_length",
3719                                  cntrs->lct_common.lcc_route_length))
3720                 goto out;
3721
3722         if (!cYAML_create_number(stats, "drop_length",
3723                                  cntrs->lct_common.lcc_drop_length))
3724                 goto out;
3725
3726         if (!show_rc)
3727                 cYAML_print_tree(root);
3728
3729         snprintf(err_str, sizeof(err_str), "\"success\"");
3730         rc = LUSTRE_CFG_RC_NO_ERR;
3731 out:
3732         if (show_rc == NULL || rc != LUSTRE_CFG_RC_NO_ERR) {
3733                 cYAML_free_tree(root);
3734         } else if (show_rc != NULL && *show_rc != NULL) {
3735                 cYAML_insert_sibling((*show_rc)->cy_child,
3736                                         root->cy_child);
3737                 free(root);
3738         } else {
3739                 *show_rc = root;
3740         }
3741
3742         cYAML_build_error(rc, seq_no, SHOW_CMD, "statistics", err_str, err_rc);
3743
3744         return rc;
3745 }
3746
3747 typedef int (*cmd_handler_t)(struct cYAML *tree,
3748                              struct cYAML **show_rc,
3749                              struct cYAML **err_rc);
3750
3751 static int handle_yaml_config_route(struct cYAML *tree, struct cYAML **show_rc,
3752                                     struct cYAML **err_rc)
3753 {
3754         struct cYAML *net, *gw, *hop, *prio, *sen, *seq_no;
3755
3756         net = cYAML_get_object_item(tree, "net");
3757         gw = cYAML_get_object_item(tree, "gateway");
3758         hop = cYAML_get_object_item(tree, "hop");
3759         prio = cYAML_get_object_item(tree, "priority");
3760         sen = cYAML_get_object_item(tree, "health_sensitivity");
3761         seq_no = cYAML_get_object_item(tree, "seq_no");
3762
3763         return lustre_lnet_config_route((net) ? net->cy_valuestring : NULL,
3764                                         (gw) ? gw->cy_valuestring : NULL,
3765                                         (hop) ? hop->cy_valueint : -1,
3766                                         (prio) ? prio->cy_valueint : -1,
3767                                         (sen) ? sen->cy_valueint : -1,
3768                                         (seq_no) ? seq_no->cy_valueint : -1,
3769                                         err_rc);
3770 }
3771
3772 /*
3773  *    interfaces:
3774  *        0: <intf_name>['['<expr>']']
3775  *        1: <intf_name>['['<expr>']']
3776  */
3777 static int yaml_copy_intf_info(struct cYAML *intf_tree,
3778                                struct lnet_dlc_network_descr *nw_descr)
3779 {
3780         struct cYAML *child = NULL;
3781         int intf_num = 0, rc = LUSTRE_CFG_RC_NO_ERR;
3782         struct lnet_dlc_intf_descr *intf_descr, *tmp;
3783
3784         if (intf_tree == NULL || nw_descr == NULL)
3785                 return LUSTRE_CFG_RC_BAD_PARAM;
3786
3787         /* now grab all the interfaces and their cpts */
3788         child = intf_tree->cy_child;
3789         while (child != NULL) {
3790                 if (child->cy_valuestring == NULL) {
3791                         child = child->cy_next;
3792                         continue;
3793                 }
3794
3795                 if (strlen(child->cy_valuestring) >= LNET_MAX_STR_LEN)
3796                         goto failed;
3797
3798                 rc = lustre_lnet_add_intf_descr(&nw_descr->nw_intflist,
3799                                                 child->cy_valuestring,
3800                                                 strlen(child->cy_valuestring));
3801                 if (rc != LUSTRE_CFG_RC_NO_ERR)
3802                         goto failed;
3803
3804                 intf_num++;
3805                 child = child->cy_next;
3806         }
3807
3808         if (intf_num == 0)
3809                 return LUSTRE_CFG_RC_MISSING_PARAM;
3810
3811         return intf_num;
3812
3813 failed:
3814         list_for_each_entry_safe(intf_descr, tmp, &nw_descr->nw_intflist,
3815                                  intf_on_network) {
3816                 list_del(&intf_descr->intf_on_network);
3817                 free_intf_descr(intf_descr);
3818         }
3819
3820         return rc;
3821 }
3822
3823 static bool
3824 yaml_extract_cmn_tunables(struct cYAML *tree,
3825                           struct lnet_ioctl_config_lnd_cmn_tunables *tunables,
3826                           struct cfs_expr_list **global_cpts)
3827 {
3828         struct cYAML *tun, *item, *smp;
3829         int rc;
3830
3831         tun = cYAML_get_object_item(tree, "tunables");
3832         if (tun != NULL) {
3833                 item = cYAML_get_object_item(tun, "peer_timeout");
3834                 if (item != NULL)
3835                         tunables->lct_peer_timeout = item->cy_valueint;
3836                 item = cYAML_get_object_item(tun, "peer_credits");
3837                 if (item != NULL)
3838                         tunables->lct_peer_tx_credits = item->cy_valueint;
3839                 item = cYAML_get_object_item(tun, "peer_buffer_credits");
3840                 if (item != NULL)
3841                         tunables->lct_peer_rtr_credits = item->cy_valueint;
3842                 item = cYAML_get_object_item(tun, "credits");
3843                 if (item != NULL)
3844                         tunables->lct_max_tx_credits = item->cy_valueint;
3845                 smp = cYAML_get_object_item(tun, "CPT");
3846                 if (smp != NULL) {
3847                         rc = cfs_expr_list_parse(smp->cy_valuestring,
3848                                                  strlen(smp->cy_valuestring),
3849                                                  0, UINT_MAX, global_cpts);
3850                         if (rc != 0)
3851                                 *global_cpts = NULL;
3852                 }
3853
3854                 return true;
3855         }
3856
3857         return false;
3858 }
3859
3860 static bool
3861 yaml_extract_tunables(struct cYAML *tree,
3862                       struct lnet_ioctl_config_lnd_tunables *tunables,
3863                       struct cfs_expr_list **global_cpts,
3864                       __u32 net_type)
3865 {
3866         bool rc;
3867
3868         rc = yaml_extract_cmn_tunables(tree, &tunables->lt_cmn,
3869                                        global_cpts);
3870
3871         if (!rc)
3872                 return rc;
3873
3874         lustre_yaml_extract_lnd_tunables(tree, net_type,
3875                                          &tunables->lt_tun);
3876
3877         return rc;
3878 }
3879
3880 /*
3881  * net:
3882  *    - net type: <net>[<NUM>]
3883   *      local NI(s):
3884  *        - nid: <ip>@<net>[<NUM>]
3885  *          status: up
3886  *          interfaces:
3887  *               0: <intf_name>['['<expr>']']
3888  *               1: <intf_name>['['<expr>']']
3889  *        tunables:
3890  *               peer_timeout: <NUM>
3891  *               peer_credits: <NUM>
3892  *               peer_buffer_credits: <NUM>
3893  *               credits: <NUM>
3894 *         lnd tunables:
3895  *               peercredits_hiw: <NUM>
3896  *               map_on_demand: <NUM>
3897  *               concurrent_sends: <NUM>
3898  *               fmr_pool_size: <NUM>
3899  *               fmr_flush_trigger: <NUM>
3900  *               fmr_cache: <NUM>
3901  *
3902  * At least one interface is required. If no interfaces are provided the
3903  * network interface can not be configured.
3904  */
3905 static int handle_yaml_config_ni(struct cYAML *tree, struct cYAML **show_rc,
3906                                  struct cYAML **err_rc)
3907 {
3908         struct cYAML *net, *intf, *seq_no, *ip2net = NULL, *local_nis = NULL,
3909                      *item = NULL;
3910         int num_entries = 0, rc;
3911         struct lnet_dlc_network_descr nw_descr;
3912         struct cfs_expr_list *global_cpts = NULL;
3913         struct lnet_ioctl_config_lnd_tunables tunables;
3914         bool found = false;
3915
3916         memset(&tunables, 0, sizeof(tunables));
3917
3918         INIT_LIST_HEAD(&nw_descr.network_on_rule);
3919         INIT_LIST_HEAD(&nw_descr.nw_intflist);
3920
3921         ip2net = cYAML_get_object_item(tree, "ip2net");
3922         net = cYAML_get_object_item(tree, "net type");
3923         if (net)
3924                 nw_descr.nw_id = libcfs_str2net(net->cy_valuestring);
3925         else
3926                 nw_descr.nw_id = LOLND;
3927
3928         /*
3929          * if neither net nor ip2nets are present, then we can not
3930          * configure the network.
3931          */
3932         if (!net && !ip2net)
3933                 return LUSTRE_CFG_RC_MISSING_PARAM;
3934
3935         local_nis = cYAML_get_object_item(tree, "local NI(s)");
3936         if (local_nis == NULL)
3937                 return LUSTRE_CFG_RC_MISSING_PARAM;
3938
3939         if (!cYAML_is_sequence(local_nis))
3940                 return LUSTRE_CFG_RC_BAD_PARAM;
3941
3942         while (cYAML_get_next_seq_item(local_nis, &item) != NULL) {
3943                 intf = cYAML_get_object_item(item, "interfaces");
3944                 if (intf == NULL)
3945                         continue;
3946                 num_entries = yaml_copy_intf_info(intf, &nw_descr);
3947                 if (num_entries <= 0) {
3948                         cYAML_build_error(num_entries, -1, "ni", "add",
3949                                         "bad interface list",
3950                                         err_rc);
3951                         return LUSTRE_CFG_RC_BAD_PARAM;
3952                 }
3953         }
3954
3955         found = yaml_extract_tunables(tree, &tunables, &global_cpts,
3956                                       LNET_NETTYP(nw_descr.nw_id));
3957         seq_no = cYAML_get_object_item(tree, "seq_no");
3958
3959         rc = lustre_lnet_config_ni(&nw_descr,
3960                                    global_cpts,
3961                                    (ip2net) ? ip2net->cy_valuestring : NULL,
3962                                    (found) ? &tunables: NULL,
3963                                    (seq_no) ? seq_no->cy_valueint : -1,
3964                                    err_rc);
3965
3966         if (global_cpts != NULL)
3967                 cfs_expr_list_free(global_cpts);
3968
3969         return rc;
3970 }
3971
3972 /*
3973  * ip2nets:
3974  *  - net-spec: <tcp|o2ib|gni>[NUM]
3975  *    interfaces:
3976  *        0: <intf name>['['<expr>']']
3977  *        1: <intf name>['['<expr>']']
3978  *    ip-range:
3979  *        0: <expr.expr.expr.expr>
3980  *        1: <expr.expr.expr.expr>
3981  */
3982 static int handle_yaml_config_ip2nets(struct cYAML *tree,
3983                                       struct cYAML **show_rc,
3984                                       struct cYAML **err_rc)
3985 {
3986         struct cYAML *net, *ip_range, *item = NULL, *intf = NULL,
3987                      *seq_no = NULL;
3988         struct lustre_lnet_ip2nets ip2nets;
3989         struct lustre_lnet_ip_range_descr *ip_range_descr = NULL,
3990                                           *tmp = NULL;
3991         int rc = LUSTRE_CFG_RC_NO_ERR;
3992         struct cfs_expr_list *global_cpts = NULL;
3993         struct cfs_expr_list *el, *el_tmp;
3994         struct lnet_ioctl_config_lnd_tunables tunables;
3995         struct lnet_dlc_intf_descr *intf_descr, *intf_tmp;
3996         bool found = false;
3997
3998         memset(&tunables, 0, sizeof(tunables));
3999
4000         /* initialize all lists */
4001         INIT_LIST_HEAD(&ip2nets.ip2nets_ip_ranges);
4002         INIT_LIST_HEAD(&ip2nets.ip2nets_net.network_on_rule);
4003         INIT_LIST_HEAD(&ip2nets.ip2nets_net.nw_intflist);
4004
4005         net = cYAML_get_object_item(tree, "net-spec");
4006         if (net == NULL)
4007                 return LUSTRE_CFG_RC_BAD_PARAM;
4008
4009         if (net != NULL && net->cy_valuestring == NULL)
4010                 return LUSTRE_CFG_RC_BAD_PARAM;
4011
4012         /* assign the network id */
4013         ip2nets.ip2nets_net.nw_id = libcfs_str2net(net->cy_valuestring);
4014         if (ip2nets.ip2nets_net.nw_id == LNET_NID_ANY)
4015                 return LUSTRE_CFG_RC_BAD_PARAM;
4016
4017         seq_no = cYAML_get_object_item(tree, "seq_no");
4018
4019         intf = cYAML_get_object_item(tree, "interfaces");
4020         if (intf != NULL) {
4021                 rc = yaml_copy_intf_info(intf, &ip2nets.ip2nets_net);
4022                 if (rc <= 0)
4023                         return LUSTRE_CFG_RC_BAD_PARAM;
4024         }
4025
4026         ip_range = cYAML_get_object_item(tree, "ip-range");
4027         if (ip_range != NULL) {
4028                 item = ip_range->cy_child;
4029                 while (item != NULL) {
4030                         if (item->cy_valuestring == NULL) {
4031                                 item = item->cy_next;
4032                                 continue;
4033                         }
4034
4035                         rc = lustre_lnet_add_ip_range(&ip2nets.ip2nets_ip_ranges,
4036                                                       item->cy_valuestring);
4037
4038                         if (rc != LUSTRE_CFG_RC_NO_ERR)
4039                                 goto out;
4040
4041                         item = item->cy_next;
4042                 }
4043         }
4044
4045         found = yaml_extract_tunables(tree, &tunables, &global_cpts,
4046                                       LNET_NETTYP(ip2nets.ip2nets_net.nw_id));
4047
4048         rc = lustre_lnet_config_ip2nets(&ip2nets,
4049                         (found) ? &tunables : NULL,
4050                         global_cpts,
4051                         (seq_no) ? seq_no->cy_valueint : -1,
4052                         err_rc);
4053
4054         /*
4055          * don't stop because there was no match. Continue processing the
4056          * rest of the rules. If non-match then nothing is configured
4057          */
4058         if (rc == LUSTRE_CFG_RC_NO_MATCH)
4059                 rc = LUSTRE_CFG_RC_NO_ERR;
4060 out:
4061         list_for_each_entry_safe(intf_descr, intf_tmp,
4062                                  &ip2nets.ip2nets_net.nw_intflist,
4063                                  intf_on_network) {
4064                 list_del(&intf_descr->intf_on_network);
4065                 free_intf_descr(intf_descr);
4066         }
4067
4068         list_for_each_entry_safe(ip_range_descr, tmp,
4069                                  &ip2nets.ip2nets_ip_ranges,
4070                                  ipr_entry) {
4071                 list_del(&ip_range_descr->ipr_entry);
4072                 list_for_each_entry_safe(el, el_tmp, &ip_range_descr->ipr_expr,
4073                                          el_link) {
4074                         list_del(&el->el_link);
4075                         cfs_expr_list_free(el);
4076                 }
4077                 free(ip_range_descr);
4078         }
4079
4080         return rc;
4081 }
4082
4083 static int handle_yaml_del_ni(struct cYAML *tree, struct cYAML **show_rc,
4084                               struct cYAML **err_rc)
4085 {
4086         struct cYAML *net = NULL, *intf = NULL, *seq_no = NULL, *item = NULL,
4087                      *local_nis = NULL;
4088         int num_entries, rc;
4089         struct lnet_dlc_network_descr nw_descr;
4090
4091         INIT_LIST_HEAD(&nw_descr.network_on_rule);
4092         INIT_LIST_HEAD(&nw_descr.nw_intflist);
4093
4094         net = cYAML_get_object_item(tree, "net type");
4095         if (net != NULL)
4096                 nw_descr.nw_id = libcfs_str2net(net->cy_valuestring);
4097
4098         local_nis = cYAML_get_object_item(tree, "local NI(s)");
4099         if (local_nis == NULL)
4100                 return LUSTRE_CFG_RC_MISSING_PARAM;
4101
4102         if (!cYAML_is_sequence(local_nis))
4103                 return LUSTRE_CFG_RC_BAD_PARAM;
4104
4105         while (cYAML_get_next_seq_item(local_nis, &item) != NULL) {
4106                 intf = cYAML_get_object_item(item, "interfaces");
4107                 if (intf == NULL)
4108                         continue;
4109                 num_entries = yaml_copy_intf_info(intf, &nw_descr);
4110                 if (num_entries <= 0) {
4111                         cYAML_build_error(num_entries, -1, "ni", "add",
4112                                         "bad interface list",
4113                                         err_rc);
4114                         return LUSTRE_CFG_RC_BAD_PARAM;
4115                 }
4116         }
4117
4118         seq_no = cYAML_get_object_item(tree, "seq_no");
4119
4120         rc = lustre_lnet_del_ni((net) ? &nw_descr : NULL,
4121                                 (seq_no) ? seq_no->cy_valueint : -1,
4122                                 err_rc);
4123
4124         return rc;
4125 }
4126
4127 /* Create a nidstring parseable by the nidstrings library from the nid
4128  * information encoded in the CYAML structure.
4129  * NOTE: Caller must free memory allocated to nidstr
4130  */
4131 static int yaml_nids2nidstr(struct cYAML *nids_entry, char **nidstr,
4132                             char *prim_nid, int cmd)
4133 {
4134         int num_strs = 0, rc;
4135         size_t buf_size, buf_pos, nidstr_len = 0;
4136         char *buffer;
4137         struct cYAML *child = NULL, *entry = NULL;
4138
4139         if (cYAML_is_sequence(nids_entry)) {
4140                 while (cYAML_get_next_seq_item(nids_entry, &child)) {
4141                         entry = cYAML_get_object_item(child, "nid");
4142                         /* don't count an empty entry */
4143                         if (!entry || !entry->cy_valuestring)
4144                                 continue;
4145
4146                         if (prim_nid &&
4147                             (strcmp(entry->cy_valuestring, prim_nid) == 0)) {
4148                                 if (cmd == LNETCTL_DEL_CMD) {
4149                                         /*
4150                                          * primary nid is present in the list of
4151                                          * nids so that means we want to delete
4152                                          * the entire peer, so no need to go
4153                                          * further. Just delete the entire peer.
4154                                          */
4155                                         return LUSTRE_CFG_RC_NO_ERR;
4156                                 } else {
4157                                         continue;
4158                                 }
4159                         }
4160
4161                         /*
4162                          * + 1 for the space separating each string, and
4163                          * accounts for the terminating null char
4164                          */
4165                         nidstr_len += strlen(entry->cy_valuestring) + 1;
4166                         num_strs++;
4167                 }
4168         }
4169
4170         if (num_strs == 0 && !prim_nid)
4171                 return LUSTRE_CFG_RC_MISSING_PARAM;
4172         else if (num_strs == 0) /* Only the primary nid was given to add/del */
4173                 return LUSTRE_CFG_RC_NO_ERR;
4174
4175         buffer = malloc(nidstr_len);
4176         if (!buffer)
4177                 return LUSTRE_CFG_RC_OUT_OF_MEM;
4178
4179         /* now grab all the nids */
4180         rc = 0;
4181         buf_pos = 0;
4182         buf_size = nidstr_len;
4183         child = NULL;
4184         while (cYAML_get_next_seq_item(nids_entry, &child)) {
4185                 entry = cYAML_get_object_item(child, "nid");
4186                 if (!entry || !entry->cy_valuestring)
4187                         continue;
4188
4189                 if (prim_nid &&
4190                     (strcmp(entry->cy_valuestring, prim_nid) == 0))
4191                         continue;
4192
4193                 if (buf_pos) {
4194                         rc = snprintf(buffer + buf_pos, buf_size, " ");
4195                         buf_pos += (rc < buf_size) ? rc : buf_size;
4196                         buf_size = nidstr_len - buf_pos;
4197                 }
4198
4199                 rc = snprintf(buffer + buf_pos, buf_size, "%s",
4200                               entry->cy_valuestring);
4201                 buf_pos += (rc < buf_size) ? rc : buf_size;
4202                 buf_size = nidstr_len - buf_pos;
4203         }
4204
4205         *nidstr = buffer;
4206
4207         return LUSTRE_CFG_RC_NO_ERR;
4208 }
4209
4210 static int handle_yaml_peer_common(struct cYAML *tree, struct cYAML **show_rc,
4211                                    struct cYAML **err_rc, int cmd)
4212 {
4213         int rc, num_nids = 0, seqn;
4214         bool mr_value = false;
4215         char *nidstr = NULL, *prim_nidstr;
4216         char err_str[LNET_MAX_STR_LEN];
4217         struct cYAML *seq_no, *prim_nid, *mr, *peer_nis;
4218         lnet_nid_t lnet_nidlist[LNET_MAX_NIDS_PER_PEER];
4219         lnet_nid_t pnid = LNET_NID_ANY;
4220
4221         seq_no = cYAML_get_object_item(tree, "seq_no");
4222         seqn = seq_no ? seq_no->cy_valueint : -1;
4223
4224         prim_nid = cYAML_get_object_item(tree, "primary nid");
4225         peer_nis = cYAML_get_object_item(tree, "peer ni");
4226         if (!prim_nid) {
4227                 rc = LUSTRE_CFG_RC_BAD_PARAM;
4228                 snprintf(err_str, LNET_MAX_STR_LEN,
4229                          "\"primary nid\" must be specified");
4230                 goto failed;
4231         }
4232
4233         prim_nidstr = prim_nid->cy_valuestring;
4234
4235         /* if the provided primary NID is bad, no need to go any further */
4236         pnid = libcfs_str2nid(prim_nidstr);
4237         if (pnid == LNET_NID_ANY) {
4238                 rc = LUSTRE_CFG_RC_BAD_PARAM;
4239                 snprintf(err_str, LNET_MAX_STR_LEN,
4240                         "badly formatted primary NID: %s", prim_nidstr);
4241                 goto failed;
4242         }
4243
4244         rc = yaml_nids2nidstr(peer_nis, &nidstr, prim_nidstr, cmd);
4245         if (rc == LUSTRE_CFG_RC_MISSING_PARAM) {
4246                 snprintf(err_str, LNET_MAX_STR_LEN,
4247                          "No nids defined in YAML block");
4248                 goto failed;
4249         } else if (rc == LUSTRE_CFG_RC_OUT_OF_MEM) {
4250                 snprintf(err_str, LNET_MAX_STR_LEN, "out of memory");
4251                 goto failed;
4252         } else if (rc != LUSTRE_CFG_RC_NO_ERR) {
4253                 snprintf(err_str, LNET_MAX_STR_LEN,
4254                          "Unrecognized error %d", rc);
4255                 goto failed;
4256         }
4257
4258         num_nids = 0;
4259         if (nidstr) {
4260                 num_nids = lustre_lnet_parse_nidstr(nidstr, lnet_nidlist,
4261                                                     LNET_MAX_NIDS_PER_PEER,
4262                                                     err_str);
4263                 if (num_nids < 0) {
4264                         rc = num_nids;
4265                         goto failed;
4266                 }
4267         }
4268
4269         if (cmd == LNETCTL_ADD_CMD) {
4270                 mr = cYAML_get_object_item(tree, "Multi-Rail");
4271                 mr_value = true;
4272                 if (mr && mr->cy_valuestring) {
4273                         if (strcmp(mr->cy_valuestring, "False") == 0)
4274                                 mr_value = false;
4275                         else if (strcmp(mr->cy_valuestring, "True") != 0) {
4276                                 rc = LUSTRE_CFG_RC_BAD_PARAM;
4277                                 snprintf(err_str, LNET_MAX_STR_LEN,
4278                                          "Multi-Rail must be set to \"True\" or \"False\" found \"%s\"",
4279                                          mr->cy_valuestring);
4280                                 goto failed;
4281                         }
4282                 }
4283         }
4284
4285         rc = lustre_lnet_mod_peer_nidlist(pnid, lnet_nidlist, cmd,
4286                                           num_nids, mr_value, seqn,
4287                                           err_rc);
4288
4289 failed:
4290         if (nidstr)
4291                 free(nidstr);
4292
4293         if (rc != LUSTRE_CFG_RC_NO_ERR)
4294                 cYAML_build_error(rc, seqn, "peer",
4295                                   cmd == LNETCTL_ADD_CMD ? ADD_CMD : DEL_CMD,
4296                                   err_str, err_rc);
4297
4298         return rc;
4299 }
4300
4301 static int handle_yaml_config_peer(struct cYAML *tree, struct cYAML **show_rc,
4302                                    struct cYAML **err_rc)
4303 {
4304         return handle_yaml_peer_common(tree, show_rc, err_rc, LNETCTL_ADD_CMD);
4305 }
4306
4307 static int handle_yaml_del_peer(struct cYAML *tree, struct cYAML **show_rc,
4308                                 struct cYAML **err_rc)
4309 {
4310         return handle_yaml_peer_common(tree, show_rc, err_rc, LNETCTL_DEL_CMD);
4311 }
4312
4313 static int handle_yaml_config_buffers(struct cYAML *tree,
4314                                       struct cYAML **show_rc,
4315                                       struct cYAML **err_rc)
4316 {
4317         int rc;
4318         struct cYAML *tiny, *small, *large, *seq_no;
4319
4320         tiny = cYAML_get_object_item(tree, "tiny");
4321         small = cYAML_get_object_item(tree, "small");
4322         large = cYAML_get_object_item(tree, "large");
4323         seq_no = cYAML_get_object_item(tree, "seq_no");
4324
4325         rc = lustre_lnet_config_buffers((tiny) ? tiny->cy_valueint : -1,
4326                                         (small) ? small->cy_valueint : -1,
4327                                         (large) ? large->cy_valueint : -1,
4328                                         (seq_no) ? seq_no->cy_valueint : -1,
4329                                         err_rc);
4330
4331         return rc;
4332 }
4333
4334 static int handle_yaml_config_routing(struct cYAML *tree,
4335                                       struct cYAML **show_rc,
4336                                       struct cYAML **err_rc)
4337 {
4338         int rc = LUSTRE_CFG_RC_NO_ERR;
4339         struct cYAML *seq_no, *enable;
4340
4341         seq_no = cYAML_get_object_item(tree, "seq_no");
4342         enable = cYAML_get_object_item(tree, "enable");
4343
4344         if (enable) {
4345                 rc = lustre_lnet_enable_routing(enable->cy_valueint,
4346                                                 (seq_no) ?
4347                                                     seq_no->cy_valueint : -1,
4348                                                 err_rc);
4349         }
4350
4351         return rc;
4352 }
4353
4354 static int handle_yaml_del_route(struct cYAML *tree, struct cYAML **show_rc,
4355                                  struct cYAML **err_rc)
4356 {
4357         struct cYAML *net;
4358         struct cYAML *gw;
4359         struct cYAML *seq_no;
4360
4361         net = cYAML_get_object_item(tree, "net");
4362         gw = cYAML_get_object_item(tree, "gateway");
4363         seq_no = cYAML_get_object_item(tree, "seq_no");
4364
4365         return lustre_lnet_del_route((net) ? net->cy_valuestring : NULL,
4366                                      (gw) ? gw->cy_valuestring : NULL,
4367                                      (seq_no) ? seq_no->cy_valueint : -1,
4368                                      err_rc);
4369 }
4370
4371 static int handle_yaml_del_routing(struct cYAML *tree, struct cYAML **show_rc,
4372                                    struct cYAML **err_rc)
4373 {
4374         struct cYAML *seq_no;
4375
4376         seq_no = cYAML_get_object_item(tree, "seq_no");
4377
4378         return lustre_lnet_enable_routing(0, (seq_no) ?
4379                                                 seq_no->cy_valueint : -1,
4380                                         err_rc);
4381 }
4382
4383 static int handle_yaml_show_route(struct cYAML *tree, struct cYAML **show_rc,
4384                                   struct cYAML **err_rc)
4385 {
4386         struct cYAML *net;
4387         struct cYAML *gw;
4388         struct cYAML *hop;
4389         struct cYAML *prio;
4390         struct cYAML *detail;
4391         struct cYAML *seq_no;
4392
4393         net = cYAML_get_object_item(tree, "net");
4394         gw = cYAML_get_object_item(tree, "gateway");
4395         hop = cYAML_get_object_item(tree, "hop");
4396         prio = cYAML_get_object_item(tree, "priority");
4397         detail = cYAML_get_object_item(tree, "detail");
4398         seq_no = cYAML_get_object_item(tree, "seq_no");
4399
4400         return lustre_lnet_show_route((net) ? net->cy_valuestring : NULL,
4401                                       (gw) ? gw->cy_valuestring : NULL,
4402                                       (hop) ? hop->cy_valueint : -1,
4403                                       (prio) ? prio->cy_valueint : -1,
4404                                       (detail) ? detail->cy_valueint : 0,
4405                                       (seq_no) ? seq_no->cy_valueint : -1,
4406                                       show_rc, err_rc, false);
4407 }
4408
4409 static int handle_yaml_show_net(struct cYAML *tree, struct cYAML **show_rc,
4410                                 struct cYAML **err_rc)
4411 {
4412         struct cYAML *net, *detail, *seq_no;
4413
4414         net = cYAML_get_object_item(tree, "net");
4415         detail = cYAML_get_object_item(tree, "detail");
4416         seq_no = cYAML_get_object_item(tree, "seq_no");
4417
4418         return lustre_lnet_show_net((net) ? net->cy_valuestring : NULL,
4419                                     (detail) ? detail->cy_valueint : 0,
4420                                     (seq_no) ? seq_no->cy_valueint : -1,
4421                                     show_rc, err_rc, false);
4422 }
4423
4424 static int handle_yaml_show_routing(struct cYAML *tree, struct cYAML **show_rc,
4425                                     struct cYAML **err_rc)
4426 {
4427         struct cYAML *seq_no;
4428
4429         seq_no = cYAML_get_object_item(tree, "seq_no");
4430
4431         return lustre_lnet_show_routing((seq_no) ? seq_no->cy_valueint : -1,
4432                                         show_rc, err_rc, false);
4433 }
4434
4435 static int handle_yaml_show_peers(struct cYAML *tree, struct cYAML **show_rc,
4436                                   struct cYAML **err_rc)
4437 {
4438         struct cYAML *seq_no, *nid, *detail;
4439
4440         seq_no = cYAML_get_object_item(tree, "seq_no");
4441         detail = cYAML_get_object_item(tree, "detail");
4442         nid = cYAML_get_object_item(tree, "nid");
4443
4444         return lustre_lnet_show_peer((nid) ? nid->cy_valuestring : NULL,
4445                                      (detail) ? detail->cy_valueint : 0,
4446                                      (seq_no) ? seq_no->cy_valueint : -1,
4447                                      show_rc, err_rc, false);
4448 }
4449
4450 static int handle_yaml_show_stats(struct cYAML *tree, struct cYAML **show_rc,
4451                                   struct cYAML **err_rc)
4452 {
4453         struct cYAML *seq_no;
4454
4455         seq_no = cYAML_get_object_item(tree, "seq_no");
4456
4457         return lustre_lnet_show_stats((seq_no) ? seq_no->cy_valueint : -1,
4458                                       show_rc, err_rc);
4459 }
4460
4461 static int handle_yaml_config_numa(struct cYAML *tree, struct cYAML **show_rc,
4462                                   struct cYAML **err_rc)
4463 {
4464         struct cYAML *seq_no, *range;
4465
4466         seq_no = cYAML_get_object_item(tree, "seq_no");
4467         range = cYAML_get_object_item(tree, "range");
4468
4469         return lustre_lnet_config_numa_range(range ? range->cy_valueint : -1,
4470                                              seq_no ? seq_no->cy_valueint : -1,
4471                                              err_rc);
4472 }
4473
4474 static int handle_yaml_del_numa(struct cYAML *tree, struct cYAML **show_rc,
4475                                struct cYAML **err_rc)
4476 {
4477         struct cYAML *seq_no;
4478
4479         seq_no = cYAML_get_object_item(tree, "seq_no");
4480
4481         return lustre_lnet_config_numa_range(0, seq_no ? seq_no->cy_valueint : -1,
4482                                              err_rc);
4483 }
4484
4485 static int handle_yaml_show_numa(struct cYAML *tree, struct cYAML **show_rc,
4486                                 struct cYAML **err_rc)
4487 {
4488         struct cYAML *seq_no;
4489
4490         seq_no = cYAML_get_object_item(tree, "seq_no");
4491
4492         return lustre_lnet_show_numa_range(seq_no ? seq_no->cy_valueint : -1,
4493                                            show_rc, err_rc);
4494 }
4495
4496 static int handle_yaml_config_global_settings(struct cYAML *tree,
4497                                               struct cYAML **show_rc,
4498                                               struct cYAML **err_rc)
4499 {
4500         struct cYAML *max_intf, *numa, *discovery, *retry, *tto, *seq_no,
4501                      *sen, *recov, *rsen, *drop_asym_route, *rsp_tracking;
4502         int rc = 0;
4503
4504         seq_no = cYAML_get_object_item(tree, "seq_no");
4505         max_intf = cYAML_get_object_item(tree, "max_intf");
4506         if (max_intf)
4507                 rc = lustre_lnet_config_max_intf(max_intf->cy_valueint,
4508                                                  seq_no ? seq_no->cy_valueint
4509                                                         : -1,
4510                                                  err_rc);
4511
4512         numa = cYAML_get_object_item(tree, "numa_range");
4513         if (numa)
4514                 rc = lustre_lnet_config_numa_range(numa->cy_valueint,
4515                                                    seq_no ? seq_no->cy_valueint
4516                                                         : -1,
4517                                                    err_rc);
4518
4519         discovery = cYAML_get_object_item(tree, "discovery");
4520         if (discovery)
4521                 rc = lustre_lnet_config_discovery(discovery->cy_valueint,
4522                                                   seq_no ? seq_no->cy_valueint
4523                                                         : -1,
4524                                                   err_rc);
4525
4526         drop_asym_route = cYAML_get_object_item(tree, "drop_asym_route");
4527         if (drop_asym_route)
4528                 rc = lustre_lnet_config_drop_asym_route(
4529                         drop_asym_route->cy_valueint,
4530                         seq_no ? seq_no->cy_valueint : -1,
4531                         err_rc);
4532
4533         retry = cYAML_get_object_item(tree, "retry_count");
4534         if (retry)
4535                 rc = lustre_lnet_config_retry_count(retry->cy_valueint,
4536                                                     seq_no ? seq_no->cy_valueint
4537                                                         : -1,
4538                                                     err_rc);
4539
4540         tto = cYAML_get_object_item(tree, "transaction_timeout");
4541         if (tto)
4542                 rc = lustre_lnet_config_transaction_to(tto->cy_valueint,
4543                                                        seq_no ? seq_no->cy_valueint
4544                                                                 : -1,
4545                                                        err_rc);
4546
4547         sen = cYAML_get_object_item(tree, "health_sensitivity");
4548         if (sen)
4549                 rc = lustre_lnet_config_hsensitivity(sen->cy_valueint,
4550                                                      seq_no ? seq_no->cy_valueint
4551                                                         : -1,
4552                                                      err_rc);
4553
4554         recov = cYAML_get_object_item(tree, "recovery_interval");
4555         if (recov)
4556                 rc = lustre_lnet_config_recov_intrv(recov->cy_valueint,
4557                                                     seq_no ? seq_no->cy_valueint
4558                                                         : -1,
4559                                                     err_rc);
4560
4561         rsen = cYAML_get_object_item(tree, "router_sensitivity");
4562         if (rsen)
4563                 rc = lustre_lnet_config_rtr_sensitivity(rsen->cy_valueint,
4564                                                      seq_no ? seq_no->cy_valueint
4565                                                         : -1,
4566                                                      err_rc);
4567
4568         rsp_tracking = cYAML_get_object_item(tree, "response_tracking");
4569         if (rsp_tracking)
4570                 rc = lustre_lnet_config_response_tracking(rsp_tracking->cy_valueint,
4571                                                      seq_no ? seq_no->cy_valueint
4572                                                         : -1,
4573                                                      err_rc);
4574
4575         return rc;
4576 }
4577
4578 static int handle_yaml_del_global_settings(struct cYAML *tree,
4579                                            struct cYAML **show_rc,
4580                                            struct cYAML **err_rc)
4581 {
4582         struct cYAML *max_intf, *numa, *discovery, *seq_no, *drop_asym_route;
4583         int rc = 0;
4584
4585         seq_no = cYAML_get_object_item(tree, "seq_no");
4586         max_intf = cYAML_get_object_item(tree, "max_intf");
4587         if (max_intf)
4588                 rc = lustre_lnet_config_max_intf(LNET_INTERFACES_MAX_DEFAULT,
4589                                                  seq_no ? seq_no->cy_valueint
4590                                                         : -1,
4591                                                  err_rc);
4592
4593         numa = cYAML_get_object_item(tree, "numa_range");
4594         if (numa)
4595                 rc = lustre_lnet_config_numa_range(0,
4596                                                    seq_no ? seq_no->cy_valueint
4597                                                         : -1,
4598                                                    err_rc);
4599
4600         /* peer discovery is enabled by default */
4601         discovery = cYAML_get_object_item(tree, "discovery");
4602         if (discovery)
4603                 rc = lustre_lnet_config_discovery(1,
4604                                                   seq_no ? seq_no->cy_valueint
4605                                                         : -1,
4606                                                   err_rc);
4607
4608         /* asymmetrical route messages are accepted by default */
4609         drop_asym_route = cYAML_get_object_item(tree, "drop_asym_route");
4610         if (drop_asym_route)
4611                 rc = lustre_lnet_config_drop_asym_route(
4612                         0, seq_no ? seq_no->cy_valueint : -1, err_rc);
4613
4614         return rc;
4615 }
4616
4617 static int handle_yaml_show_global_settings(struct cYAML *tree,
4618                                             struct cYAML **show_rc,
4619                                             struct cYAML **err_rc)
4620 {
4621         struct cYAML *max_intf, *numa, *discovery, *retry, *tto, *seq_no,
4622                      *sen, *recov, *rsen, *drop_asym_route, *rsp_tracking;
4623         int rc = 0;
4624
4625         seq_no = cYAML_get_object_item(tree, "seq_no");
4626         max_intf = cYAML_get_object_item(tree, "max_intf");
4627         if (max_intf)
4628                 rc = lustre_lnet_show_max_intf(seq_no ? seq_no->cy_valueint
4629                                                         : -1,
4630                                                 show_rc, err_rc);
4631
4632         numa = cYAML_get_object_item(tree, "numa_range");
4633         if (numa)
4634                 rc = lustre_lnet_show_numa_range(seq_no ? seq_no->cy_valueint
4635                                                         : -1,
4636                                                  show_rc, err_rc);
4637
4638         discovery = cYAML_get_object_item(tree, "discovery");
4639         if (discovery)
4640                 rc = lustre_lnet_show_discovery(seq_no ? seq_no->cy_valueint
4641                                                         : -1,
4642                                                 show_rc, err_rc);
4643
4644         drop_asym_route = cYAML_get_object_item(tree, "drop_asym_route");
4645         if (drop_asym_route)
4646                 rc = lustre_lnet_show_drop_asym_route(
4647                         seq_no ? seq_no->cy_valueint : -1,
4648                         show_rc, err_rc);
4649
4650         retry = cYAML_get_object_item(tree, "retry_count");
4651         if (retry)
4652                 rc = lustre_lnet_show_retry_count(seq_no ? seq_no->cy_valueint
4653                                                         : -1,
4654                                                   show_rc, err_rc);
4655
4656         tto = cYAML_get_object_item(tree, "transaction_timeout");
4657         if (tto)
4658                 rc = lustre_lnet_show_transaction_to(seq_no ? seq_no->cy_valueint
4659                                                         : -1,
4660                                                      show_rc, err_rc);
4661
4662         sen = cYAML_get_object_item(tree, "health_sensitivity");
4663         if (sen)
4664                 rc = lustre_lnet_show_hsensitivity(seq_no ? seq_no->cy_valueint
4665                                                         : -1,
4666                                                      show_rc, err_rc);
4667
4668         recov = cYAML_get_object_item(tree, "recovery_interval");
4669         if (recov)
4670                 rc = lustre_lnet_show_recov_intrv(seq_no ? seq_no->cy_valueint
4671                                                         : -1,
4672                                                   show_rc, err_rc);
4673
4674         rsen = cYAML_get_object_item(tree, "router_sensitivity");
4675         if (rsen)
4676                 rc = lustre_lnet_show_hsensitivity(seq_no ? seq_no->cy_valueint
4677                                                         : -1,
4678                                                      show_rc, err_rc);
4679
4680         rsp_tracking = cYAML_get_object_item(tree, "response_tracking");
4681         if (rsp_tracking)
4682                 rc = lustre_lnet_show_response_tracking(seq_no ?
4683                                                         seq_no->cy_valueint :
4684                                                         -1,
4685                                                         show_rc, err_rc);
4686
4687         return rc;
4688 }
4689
4690 static int handle_yaml_ping(struct cYAML *tree, struct cYAML **show_rc,
4691                             struct cYAML **err_rc)
4692 {
4693         struct cYAML *seq_no, *nid, *timeout;
4694
4695         seq_no = cYAML_get_object_item(tree, "seq_no");
4696         nid = cYAML_get_object_item(tree, "primary nid");
4697         timeout = cYAML_get_object_item(tree, "timeout");
4698
4699         return lustre_lnet_ping_nid((nid) ? nid->cy_valuestring : NULL,
4700                                     (timeout) ? timeout->cy_valueint : 1000,
4701                                     (seq_no) ? seq_no->cy_valueint : -1,
4702                                     show_rc, err_rc);
4703 }
4704
4705 static int handle_yaml_discover(struct cYAML *tree, struct cYAML **show_rc,
4706                                 struct cYAML **err_rc)
4707 {
4708         struct cYAML *seq_no, *nid, *force;
4709
4710         seq_no = cYAML_get_object_item(tree, "seq_no");
4711         nid = cYAML_get_object_item(tree, "primary nid");
4712         force = cYAML_get_object_item(tree, "force");
4713
4714         return lustre_lnet_discover_nid((nid) ? nid->cy_valuestring : NULL,
4715                                         (force) ? force->cy_valueint : 0,
4716                                         (seq_no) ? seq_no->cy_valueint : -1,
4717                                         show_rc, err_rc);
4718 }
4719
4720 static int handle_yaml_no_op()
4721 {
4722         return LUSTRE_CFG_RC_NO_ERR;
4723 }
4724
4725 struct lookup_cmd_hdlr_tbl {
4726         char *name;
4727         cmd_handler_t cb;
4728 };
4729
4730 static struct lookup_cmd_hdlr_tbl lookup_config_tbl[] = {
4731         { .name = "route",      .cb = handle_yaml_config_route },
4732         { .name = "net",        .cb = handle_yaml_config_ni },
4733         { .name = "ip2nets",    .cb = handle_yaml_config_ip2nets },
4734         { .name = "peer",       .cb = handle_yaml_config_peer },
4735         { .name = "routing",    .cb = handle_yaml_config_routing },
4736         { .name = "buffers",    .cb = handle_yaml_config_buffers },
4737         { .name = "statistics", .cb = handle_yaml_no_op },
4738         { .name = "global",     .cb = handle_yaml_config_global_settings},
4739         { .name = "numa",       .cb = handle_yaml_config_numa },
4740         { .name = "ping",       .cb = handle_yaml_no_op },
4741         { .name = "discover",   .cb = handle_yaml_no_op },
4742         { .name = NULL } };
4743
4744 static struct lookup_cmd_hdlr_tbl lookup_del_tbl[] = {
4745         { .name = "route",      .cb = handle_yaml_del_route },
4746         { .name = "net",        .cb = handle_yaml_del_ni },
4747         { .name = "ip2nets",    .cb = handle_yaml_no_op },
4748         { .name = "peer",       .cb = handle_yaml_del_peer },
4749         { .name = "routing",    .cb = handle_yaml_del_routing },
4750         { .name = "buffers",    .cb = handle_yaml_no_op },
4751         { .name = "statistics", .cb = handle_yaml_no_op },
4752         { .name = "global",     .cb = handle_yaml_del_global_settings},
4753         { .name = "numa",       .cb = handle_yaml_del_numa },
4754         { .name = "ping",       .cb = handle_yaml_no_op },
4755         { .name = "discover",   .cb = handle_yaml_no_op },
4756         { .name = NULL } };
4757
4758 static struct lookup_cmd_hdlr_tbl lookup_show_tbl[] = {
4759         { .name = "route",      .cb = handle_yaml_show_route },
4760         { .name = "net",        .cb = handle_yaml_show_net },
4761         { .name = "peer",       .cb = handle_yaml_show_peers },
4762         { .name = "ip2nets",    .cb = handle_yaml_no_op },
4763         { .name = "routing",    .cb = handle_yaml_show_routing },
4764         { .name = "buffers",    .cb = handle_yaml_show_routing },
4765         { .name = "statistics", .cb = handle_yaml_show_stats },
4766         { .name = "global",     .cb = handle_yaml_show_global_settings},
4767         { .name = "numa",       .cb = handle_yaml_show_numa },
4768         { .name = "ping",       .cb = handle_yaml_no_op },
4769         { .name = "discover",   .cb = handle_yaml_no_op },
4770         { .name = NULL } };
4771
4772 static struct lookup_cmd_hdlr_tbl lookup_exec_tbl[] = {
4773         { .name = "route",      .cb = handle_yaml_no_op },
4774         { .name = "net",        .cb = handle_yaml_no_op },
4775         { .name = "peer",       .cb = handle_yaml_no_op },
4776         { .name = "ip2nets",    .cb = handle_yaml_no_op },
4777         { .name = "routing",    .cb = handle_yaml_no_op },
4778         { .name = "buffers",    .cb = handle_yaml_no_op },
4779         { .name = "statistics", .cb = handle_yaml_no_op },
4780         { .name = "global",     .cb = handle_yaml_no_op },
4781         { .name = "numa",       .cb = handle_yaml_no_op },
4782         { .name = "ping",       .cb = handle_yaml_ping },
4783         { .name = "discover",   .cb = handle_yaml_discover },
4784         { .name = NULL } };
4785
4786 static cmd_handler_t lookup_fn(char *key,
4787                                struct lookup_cmd_hdlr_tbl *tbl)
4788 {
4789         int i;
4790         if (key == NULL)
4791                 return NULL;
4792
4793         for (i = 0; tbl[i].name != NULL; i++) {
4794                 if (strncmp(key, tbl[i].name, strlen(tbl[i].name)) == 0)
4795                         return tbl[i].cb;
4796         }
4797
4798         return NULL;
4799 }
4800
4801 static int lustre_yaml_cb_helper(char *f, struct lookup_cmd_hdlr_tbl *table,
4802                                  struct cYAML **show_rc, struct cYAML **err_rc)
4803 {
4804         struct cYAML *tree, *item = NULL, *head, *child;
4805         cmd_handler_t cb;
4806         char err_str[LNET_MAX_STR_LEN];
4807         int rc = LUSTRE_CFG_RC_NO_ERR, return_rc = LUSTRE_CFG_RC_NO_ERR;
4808
4809         tree = cYAML_build_tree(f, NULL, 0, err_rc, false);
4810         if (tree == NULL)
4811                 return LUSTRE_CFG_RC_BAD_PARAM;
4812
4813         child = tree->cy_child;
4814         while (child != NULL) {
4815                 cb = lookup_fn(child->cy_string, table);
4816                 if (cb == NULL) {
4817                         snprintf(err_str, sizeof(err_str),
4818                                 "\"call back for '%s' not found\"",
4819                                 child->cy_string);
4820                         cYAML_build_error(LUSTRE_CFG_RC_BAD_PARAM, -1,
4821                                         "yaml", "helper", err_str, err_rc);
4822                         goto out;
4823                 }
4824
4825                 if (cYAML_is_sequence(child)) {
4826                         while ((head = cYAML_get_next_seq_item(child, &item))
4827                                != NULL) {
4828                                 rc = cb(head, show_rc, err_rc);
4829                                 if (rc != LUSTRE_CFG_RC_NO_ERR)
4830                                         return_rc = rc;
4831                         }
4832                 } else {
4833                         rc = cb(child, show_rc, err_rc);
4834                         if (rc != LUSTRE_CFG_RC_NO_ERR)
4835                                 return_rc = rc;
4836                 }
4837                 item = NULL;
4838                 child = child->cy_next;
4839         }
4840
4841 out:
4842         cYAML_free_tree(tree);
4843
4844         return return_rc;
4845 }
4846
4847 int lustre_yaml_config(char *f, struct cYAML **err_rc)
4848 {
4849         return lustre_yaml_cb_helper(f, lookup_config_tbl,
4850                                      NULL, err_rc);
4851 }
4852
4853 int lustre_yaml_del(char *f, struct cYAML **err_rc)
4854 {
4855         return lustre_yaml_cb_helper(f, lookup_del_tbl,
4856                                      NULL, err_rc);
4857 }
4858
4859 int lustre_yaml_show(char *f, struct cYAML **show_rc, struct cYAML **err_rc)
4860 {
4861         return lustre_yaml_cb_helper(f, lookup_show_tbl,
4862                                      show_rc, err_rc);
4863 }
4864
4865 int lustre_yaml_exec(char *f, struct cYAML **show_rc, struct cYAML **err_rc)
4866 {
4867         return lustre_yaml_cb_helper(f, lookup_exec_tbl,
4868                                      show_rc, err_rc);
4869 }