Whamcloud - gitweb
LU-14779 utils: no DNS lookups for NID in get_param
[fs/lustre-release.git] / lustre / utils / lustre_cfg.c
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.gnu.org/licenses/gpl-2.0.html
19  *
20  * GPL HEADER END
21  */
22 /*
23  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Use is subject to license terms.
25  *
26  * Copyright (c) 2011, 2016, Intel Corporation.
27  */
28 /*
29  * This file is part of Lustre, http://www.lustre.org/
30  *
31  * lustre/utils/lustre_cfg.c
32  *
33  * Author: Peter J. Braam <braam@clusterfs.com>
34  * Author: Phil Schwan <phil@clusterfs.com>
35  * Author: Andreas Dilger <adilger@clusterfs.com>
36  * Author: Robert Read <rread@clusterfs.com>
37  */
38
39 #include <errno.h>
40 #include <fcntl.h>
41 #include <limits.h>
42 #include <stdbool.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include <sys/ioctl.h>
46 #include <sys/stat.h>
47 #include <unistd.h>
48 #include <stdio.h>
49 #include <stdarg.h>
50 #include <ctype.h>
51
52 #include <libcfs/util/ioctl.h>
53 #include <libcfs/util/string.h>
54 #include <libcfs/util/param.h>
55 #include <libcfs/util/parser.h>
56 #include <lustre/lustreapi.h>
57 #include <linux/lnet/nidstr.h>
58 #include <linux/lnet/lnetctl.h>
59 #include <linux/lustre/lustre_cfg.h>
60 #include <linux/lustre/lustre_ioctl.h>
61 #include <linux/lustre/lustre_ver.h>
62
63 #include <sys/un.h>
64 #include <time.h>
65 #include <sys/time.h>
66 #include <errno.h>
67 #include <string.h>
68
69 #include "obdctl.h"
70 #include <stdio.h>
71 #include <yaml.h>
72
73 static char *lcfg_devname;
74
75 int lcfg_set_devname(char *name)
76 {
77         char *ptr;
78         int digit = 1;
79
80         if (name) {
81                 if (lcfg_devname)
82                         free(lcfg_devname);
83                 /* quietly strip the unnecessary '$' */
84                 if (*name == '$' || *name == '%')
85                         name++;
86
87                 ptr = name;
88                 while (*ptr != '\0') {
89                         if (!isdigit(*ptr)) {
90                                 digit = 0;
91                                 break;
92                         }
93                         ptr++;
94                 }
95
96                 if (digit) {
97                         /* We can't translate from dev # to name */
98                         lcfg_devname = NULL;
99                 } else {
100                         lcfg_devname = strdup(name);
101                 }
102         } else {
103                 lcfg_devname = NULL;
104         }
105         return 0;
106 }
107
108 char *lcfg_get_devname(void)
109 {
110         return lcfg_devname;
111 }
112
113 int jt_lcfg_device(int argc, char **argv)
114 {
115         return jt_obd_device(argc, argv);
116 }
117
118 static int jt_lcfg_ioctl(struct lustre_cfg_bufs *bufs, char *arg, int cmd)
119 {
120         struct lustre_cfg *lcfg;
121         int rc;
122
123         lcfg = malloc(lustre_cfg_len(bufs->lcfg_bufcount, bufs->lcfg_buflen));
124         if (!lcfg) {
125                 rc = -ENOMEM;
126         } else {
127                 lustre_cfg_init(lcfg, cmd, bufs);
128                 rc = lcfg_ioctl(arg, OBD_DEV_ID, lcfg);
129                 free(lcfg);
130         }
131         if (rc < 0)
132                 fprintf(stderr, "error: %s: %s\n", jt_cmdname(arg),
133                         strerror(rc = errno));
134         return rc;
135 }
136
137 int jt_lcfg_attach(int argc, char **argv)
138 {
139         struct lustre_cfg_bufs bufs;
140         int rc;
141
142         if (argc != 4)
143                 return CMD_HELP;
144
145         lustre_cfg_bufs_reset(&bufs, NULL);
146
147         lustre_cfg_bufs_set_string(&bufs, 1, argv[1]);
148         lustre_cfg_bufs_set_string(&bufs, 0, argv[2]);
149         lustre_cfg_bufs_set_string(&bufs, 2, argv[3]);
150
151         rc = jt_lcfg_ioctl(&bufs, argv[0], LCFG_ATTACH);
152         if (rc == 0)
153                 lcfg_set_devname(argv[2]);
154
155         return rc;
156 }
157
158 int jt_lcfg_setup(int argc, char **argv)
159 {
160         struct lustre_cfg_bufs bufs;
161         int i;
162
163         if (!lcfg_devname) {
164                 fprintf(stderr,
165                         "%s: please use 'device name' to set the device name for config commands.\n",
166                         jt_cmdname(argv[0]));
167                 return -EINVAL;
168         }
169
170         lustre_cfg_bufs_reset(&bufs, lcfg_devname);
171
172         if (argc > 6)
173                 return CMD_HELP;
174
175         for (i = 1; i < argc; i++)
176                 lustre_cfg_bufs_set_string(&bufs, i, argv[i]);
177
178         return jt_lcfg_ioctl(&bufs, argv[0], LCFG_SETUP);
179 }
180
181 int jt_obd_detach(int argc, char **argv)
182 {
183         struct lustre_cfg_bufs bufs;
184
185         if (!lcfg_devname) {
186                 fprintf(stderr,
187                         "%s: please use 'device name' to set the device name for config commands.\n",
188                         jt_cmdname(argv[0]));
189                 return -EINVAL;
190         }
191
192         lustre_cfg_bufs_reset(&bufs, lcfg_devname);
193
194         if (argc != 1)
195                 return CMD_HELP;
196
197         return jt_lcfg_ioctl(&bufs, argv[0], LCFG_DETACH);
198 }
199
200 int jt_obd_cleanup(int argc, char **argv)
201 {
202         struct lustre_cfg_bufs bufs;
203         char force = 'F';
204         char failover = 'A';
205         char flags[3] = { 0 };
206         int flag_cnt = 0, n;
207
208         if (!lcfg_devname) {
209                 fprintf(stderr,
210                         "%s: please use 'device name' to set the device name for config commands.\n",
211                         jt_cmdname(argv[0]));
212                 return -EINVAL;
213         }
214
215         lustre_cfg_bufs_reset(&bufs, lcfg_devname);
216
217         if (argc < 1 || argc > 3)
218                 return CMD_HELP;
219
220         /*
221          * we are protected from overflowing our buffer by the argc
222          * check above
223          */
224         for (n = 1; n < argc; n++) {
225                 if (strcmp(argv[n], "force") == 0) {
226                         flags[flag_cnt++] = force;
227                 } else if (strcmp(argv[n], "failover") == 0) {
228                         flags[flag_cnt++] = failover;
229                 } else {
230                         fprintf(stderr, "unknown option: %s\n", argv[n]);
231                         return CMD_HELP;
232                 }
233         }
234
235         if (flag_cnt)
236                 lustre_cfg_bufs_set_string(&bufs, 1, flags);
237
238         return jt_lcfg_ioctl(&bufs, argv[0], LCFG_CLEANUP);
239 }
240
241 static
242 int do_add_uuid(char *func, char *uuid, lnet_nid_t nid)
243 {
244         int rc;
245         struct lustre_cfg_bufs bufs;
246         struct lustre_cfg *lcfg;
247
248         lustre_cfg_bufs_reset(&bufs, lcfg_devname);
249         if (uuid)
250                 lustre_cfg_bufs_set_string(&bufs, 1, uuid);
251
252         lcfg = malloc(lustre_cfg_len(bufs.lcfg_bufcount, bufs.lcfg_buflen));
253         if (!lcfg) {
254                 rc = -ENOMEM;
255         } else {
256                 lustre_cfg_init(lcfg, LCFG_ADD_UUID, &bufs);
257                 lcfg->lcfg_nid = nid;
258
259                 rc = lcfg_ioctl(func, OBD_DEV_ID, lcfg);
260                 free(lcfg);
261         }
262         if (rc) {
263                 fprintf(stderr, "IOC_PORTAL_ADD_UUID failed: %s\n",
264                         strerror(errno));
265                 return -1;
266         }
267
268         if (uuid)
269                 printf("Added uuid %s: %s\n", uuid, libcfs_nid2str(nid));
270
271         return 0;
272 }
273
274 int jt_lcfg_add_uuid(int argc, char **argv)
275 {
276         lnet_nid_t nid;
277
278         if (argc != 3)
279                 return CMD_HELP;
280
281         nid = libcfs_str2nid(argv[2]);
282         if (nid == LNET_NID_ANY) {
283                 fprintf(stderr, "Can't parse NID %s\n", argv[2]);
284                 return (-1);
285         }
286
287         return do_add_uuid(argv[0], argv[1], nid);
288 }
289
290 int jt_lcfg_del_uuid(int argc, char **argv)
291 {
292         struct lustre_cfg_bufs bufs;
293
294         if (argc != 2) {
295                 fprintf(stderr, "usage: %s <uuid>\n", argv[0]);
296                 return 0;
297         }
298
299         lustre_cfg_bufs_reset(&bufs, lcfg_devname);
300         if (strcmp(argv[1], "_all_"))
301                 lustre_cfg_bufs_set_string(&bufs, 1, argv[1]);
302
303         return jt_lcfg_ioctl(&bufs, argv[0], LCFG_DEL_UUID);
304 }
305
306 int jt_lcfg_del_mount_option(int argc, char **argv)
307 {
308         struct lustre_cfg_bufs bufs;
309
310         if (argc != 2)
311                 return CMD_HELP;
312
313         lustre_cfg_bufs_reset(&bufs, lcfg_devname);
314
315         /* profile name */
316         lustre_cfg_bufs_set_string(&bufs, 1, argv[1]);
317
318         return jt_lcfg_ioctl(&bufs, argv[0], LCFG_DEL_MOUNTOPT);
319 }
320
321 int jt_lcfg_set_timeout(int argc, char **argv)
322 {
323         int rc;
324         struct lustre_cfg_bufs bufs;
325         struct lustre_cfg *lcfg;
326
327         fprintf(stderr,
328                 "%s has been deprecated. Use conf_param instead.\ne.g. conf_param lustre-MDT0000 obd_timeout=50\n",
329                 jt_cmdname(argv[0]));
330         return CMD_HELP;
331
332         if (argc != 2)
333                 return CMD_HELP;
334
335         lustre_cfg_bufs_reset(&bufs, lcfg_devname);
336
337         lcfg = malloc(lustre_cfg_len(bufs.lcfg_bufcount, bufs.lcfg_buflen));
338         if (!lcfg) {
339                 rc = -ENOMEM;
340         } else {
341                 lustre_cfg_init(lcfg, LCFG_SET_TIMEOUT, &bufs);
342                 lcfg->lcfg_num = atoi(argv[1]);
343
344                 rc = lcfg_ioctl(argv[0], OBD_DEV_ID, lcfg);
345                 free(lcfg);
346         }
347         if (rc < 0) {
348                 fprintf(stderr, "error: %s: %s\n", jt_cmdname(argv[0]),
349                         strerror(rc = errno));
350         }
351         return rc;
352 }
353
354 int jt_lcfg_add_conn(int argc, char **argv)
355 {
356         struct lustre_cfg_bufs bufs;
357         struct lustre_cfg *lcfg;
358         int priority;
359         int rc;
360
361         if (argc == 2)
362                 priority = 0;
363         else if (argc == 3)
364                 priority = 1;
365         else
366                 return CMD_HELP;
367
368         if (!lcfg_devname) {
369                 fprintf(stderr,
370                         "%s: please use 'device name' to set the device name for config commands.\n",
371                         jt_cmdname(argv[0]));
372                 return -EINVAL;
373         }
374
375         lustre_cfg_bufs_reset(&bufs, lcfg_devname);
376
377         lustre_cfg_bufs_set_string(&bufs, 1, argv[1]);
378
379         lcfg = malloc(lustre_cfg_len(bufs.lcfg_bufcount, bufs.lcfg_buflen));
380         if (!lcfg) {
381                 rc = -ENOMEM;
382         } else {
383                 lustre_cfg_init(lcfg, LCFG_ADD_CONN, &bufs);
384                 lcfg->lcfg_num = priority;
385
386                 rc = lcfg_ioctl(argv[0], OBD_DEV_ID, lcfg);
387                 free(lcfg);
388         }
389         if (rc < 0) {
390                 fprintf(stderr, "error: %s: %s\n", jt_cmdname(argv[0]),
391                         strerror(rc = errno));
392         }
393
394         return rc;
395 }
396
397 int jt_lcfg_del_conn(int argc, char **argv)
398 {
399         struct lustre_cfg_bufs bufs;
400
401         if (argc != 2)
402                 return CMD_HELP;
403
404         if (!lcfg_devname) {
405                 fprintf(stderr,
406                         "%s: please use 'device name' to set the device name for config commands.\n",
407                         jt_cmdname(argv[0]));
408                 return -EINVAL;
409         }
410
411         lustre_cfg_bufs_reset(&bufs, lcfg_devname);
412
413         /* connection uuid */
414         lustre_cfg_bufs_set_string(&bufs, 1, argv[1]);
415
416         return jt_lcfg_ioctl(&bufs, argv[0], LCFG_DEL_MOUNTOPT);
417 }
418
419 /* Param set locally, directly on target */
420 int jt_lcfg_param(int argc, char **argv)
421 {
422         struct lustre_cfg_bufs bufs;
423         int i;
424
425         if (argc >= LUSTRE_CFG_MAX_BUFCOUNT)
426                 return CMD_HELP;
427
428         lustre_cfg_bufs_reset(&bufs, NULL);
429
430         for (i = 1; i < argc; i++)
431                 lustre_cfg_bufs_set_string(&bufs, i, argv[i]);
432
433         return jt_lcfg_ioctl(&bufs, argv[0], LCFG_PARAM);
434 }
435
436 struct param_opts {
437         unsigned int po_only_path:1;
438         unsigned int po_show_path:1;
439         unsigned int po_show_type:1;
440         unsigned int po_recursive:1;
441         unsigned int po_perm:1;
442         unsigned int po_delete:1;
443         unsigned int po_only_dir:1;
444         unsigned int po_file:1;
445 };
446
447 int lcfg_setparam_perm(char *func, char *buf)
448 {
449         int rc = 0;
450         struct lustre_cfg_bufs bufs;
451         struct lustre_cfg *lcfg;
452
453         lustre_cfg_bufs_reset(&bufs, NULL);
454         /*
455          * This same command would be executed on all nodes, many
456          * of which should fail (silently) because they don't have
457          * that proc file existing locally. There would be no
458          * preprocessing on the MGS to try to figure out which
459          * parameter files to add this to, there would be nodes
460          * processing on the cluster nodes to try to figure out
461          * if they are the intended targets. They will blindly
462          * try to set the parameter, and ENOTFOUND means it wasn't
463          * for them.
464          * Target name "general" means call on all targets. It is
465          * left here in case some filtering will be added in
466          * future.
467          */
468         lustre_cfg_bufs_set_string(&bufs, 0, "general");
469
470         lustre_cfg_bufs_set_string(&bufs, 1, buf);
471
472         lcfg = malloc(lustre_cfg_len(bufs.lcfg_bufcount,
473                                      bufs.lcfg_buflen));
474         if (!lcfg) {
475                 rc = -ENOMEM;
476                 fprintf(stderr, "error: allocating lcfg for %s: %s\n",
477                         jt_cmdname(func), strerror(rc));
478
479         } else {
480                 lustre_cfg_init(lcfg, LCFG_SET_PARAM, &bufs);
481                 rc = lcfg_mgs_ioctl(func, OBD_DEV_ID, lcfg);
482                 if (rc != 0)
483                         fprintf(stderr, "error: executing %s: %s\n",
484                                 jt_cmdname(func), strerror(errno));
485                 free(lcfg);
486         }
487
488         return rc;
489 }
490
491 /*
492  * Param set to single log file, used by all clients and servers.
493  * This should be loaded after the individual config logs.
494  * Called from set param with -P option.
495  */
496 static int jt_lcfg_setparam_perm(int argc, char **argv,
497                                  struct param_opts *popt)
498 {
499         int rc;
500         int i;
501         int first_param;
502         char *buf = NULL;
503         int len;
504
505         first_param = optind;
506         if (first_param < 0 || first_param >= argc)
507                 return CMD_HELP;
508
509         for (i = first_param, rc = 0; i < argc; i++) {
510                 len = strlen(argv[i]);
511
512                 buf = argv[i];
513
514                 /* put an '=' on the end in case it doesn't have one */
515                 if (popt->po_delete && argv[i][len - 1] != '=') {
516                         buf = malloc(len + 1);
517                         if (!buf) {
518                                 rc = -ENOMEM;
519                                 break;
520                         }
521                         sprintf(buf, "%s=", argv[i]);
522                 }
523
524                 rc = lcfg_setparam_perm(argv[0], buf);
525
526                 if (buf != argv[i])
527                         free(buf);
528         }
529
530         return rc;
531 }
532
533 int lcfg_conf_param(char *func, char *buf)
534 {
535         int rc;
536         struct lustre_cfg_bufs bufs;
537         struct lustre_cfg *lcfg;
538
539         lustre_cfg_bufs_reset(&bufs, NULL);
540         lustre_cfg_bufs_set_string(&bufs, 1, buf);
541
542         /* We could put other opcodes here. */
543         lcfg = malloc(lustre_cfg_len(bufs.lcfg_bufcount, bufs.lcfg_buflen));
544         if (!lcfg) {
545                 rc = -ENOMEM;
546         } else {
547                 lustre_cfg_init(lcfg, LCFG_PARAM, &bufs);
548                 rc = lcfg_mgs_ioctl(func, OBD_DEV_ID, lcfg);
549                 if (rc < 0)
550                         rc = -errno;
551                 free(lcfg);
552         }
553
554         return rc;
555 }
556
557 /*
558  * Param set in config log on MGS
559  * conf_param key=value
560  *
561  * Note we can actually send mgc conf_params from clients, but currently
562  * that's only done for default file striping (see ll_send_mgc_param),
563  * and not here.
564  *
565  * After removal of a parameter (-d) Lustre will use the default
566  * AT NEXT REBOOT, not immediately.
567  */
568 int jt_lcfg_confparam(int argc, char **argv)
569 {
570         int rc;
571         int del = 0;
572         char *buf = NULL;
573
574         /* mgs_setparam processes only lctl buf #1 */
575         if ((argc > 3) || (argc <= 1))
576                 return CMD_HELP;
577
578         while ((rc = getopt(argc, argv, "d")) != -1) {
579                 switch (rc) {
580                 case 'd':
581                         del = 1;
582                         break;
583                 default:
584                         return CMD_HELP;
585                 }
586         }
587
588         buf = argv[optind];
589
590         if (del) {
591                 char *ptr;
592
593                 /* for delete, make it "<param>=\0" */
594                 buf = malloc(strlen(argv[optind]) + 2);
595                 if (!buf) {
596                         rc = -ENOMEM;
597                         goto out;
598                 }
599                 /* put an '=' on the end in case it doesn't have one */
600                 sprintf(buf, "%s=", argv[optind]);
601                 /* then truncate after the first '=' */
602                 ptr = strchr(buf, '=');
603                 *(++ptr) = '\0';
604         }
605
606         rc = lcfg_conf_param(argv[0], buf);
607
608         if (buf != argv[optind])
609                 free(buf);
610 out:
611         if (rc < 0) {
612                 fprintf(stderr, "error: %s: %s\n", jt_cmdname(argv[0]),
613                         strerror(-rc));
614         }
615
616         return rc;
617 }
618
619 /**
620  * Display a parameter path in the same format as sysctl.
621  * E.g. obdfilter.lustre-OST0000.stats
622  *
623  * \param[in] filename  file name of the parameter
624  * \param[in] st        parameter file stats
625  * \param[in] popt      set/get param options
626  *
627  * \retval allocated pointer containing modified filename
628  */
629 static char *
630 display_name(const char *filename, struct stat *st, struct param_opts *popt)
631 {
632         size_t suffix_len = 0;
633         char *suffix = NULL;
634         char *param_name;
635         char *tmp;
636
637         if (popt->po_show_type) {
638                 if (S_ISDIR(st->st_mode))
639                         suffix = "/";
640                 else if (S_ISLNK(st->st_mode))
641                         suffix = "@";
642                 else if (st->st_mode & S_IWUSR)
643                         suffix = "=";
644         }
645
646         /* Take the original filename string and chop off the glob addition */
647         tmp = strstr(filename, "/lustre/");
648         if (!tmp) {
649                 tmp = strstr(filename, "/lnet/");
650                 if (tmp)
651                         tmp += strlen("/lnet/");
652         } else {
653                 tmp += strlen("/lustre/");
654         }
655
656         /* Allocate return string */
657         param_name = strdup(tmp);
658         if (!param_name)
659                 return NULL;
660
661         /* replace '/' with '.' to match conf_param and sysctl */
662         for (tmp = strchr(param_name, '/'); tmp != NULL; tmp = strchr(tmp, '/'))
663                 *tmp = '.';
664
665         /* Append the indicator to entries if needed. */
666         if (popt->po_show_type && suffix != NULL) {
667                 suffix_len = strlen(suffix);
668
669                 tmp = realloc(param_name, suffix_len + strlen(param_name) + 1);
670                 if (tmp) {
671                         param_name = tmp;
672                         strncat(param_name, suffix,
673                                 strlen(param_name) + suffix_len);
674                 }
675         }
676
677         return param_name;
678 }
679
680 /* Find a character in a length limited string */
681 /* BEWARE - kernel definition of strnchr has args in different order! */
682 static char *strnchr(const char *p, char c, size_t n)
683 {
684         if (!p)
685                 return (0);
686
687         while (n-- > 0) {
688                 if (*p == c)
689                         return ((char *)p);
690                 p++;
691         }
692         return (0);
693 }
694
695 /**
696  * Turns a lctl parameter string into a procfs/sysfs subdirectory path pattern.
697  *
698  * \param[in] popt              Used to control parameter usage. For this
699  *                              function it is used to see if the path has
700  *                              a added suffix.
701  * \param[in,out] path          lctl parameter string that is turned into
702  *                              the subdirectory path pattern that is used
703  *                              to search the procfs/sysfs tree.
704  *
705  * \retval -errno on error.
706  */
707 static int
708 clean_path(struct param_opts *popt, char *path)
709 {
710         char *nidstart = NULL;
711         char *nidend = NULL;
712         char *tmp;
713
714         if (popt == NULL || path == NULL || strlen(path) == 0)
715                 return -EINVAL;
716
717         /* If path contains a suffix we need to remove it */
718         if (popt->po_show_type) {
719                 size_t path_end = strlen(path) - 1;
720
721                 tmp = path + path_end;
722                 switch (*tmp) {
723                 case '@':
724                 case '=':
725                 case '/':
726                         *tmp = '\0';
727                 default:
728                         break;
729                 }
730         }
731
732         /* get rid of '\', glob doesn't like it */
733         tmp = strrchr(path, '\\');
734         if (tmp) {
735                 char *tail = path + strlen(path);
736
737                 while (tmp != path) {
738                         if (*tmp == '\\') {
739                                 memmove(tmp, tmp + 1, tail - tmp);
740                                 --tail;
741                         }
742                         --tmp;
743                 }
744         }
745
746         /* Does path contain a NID string?  Skip '.->/' replacement for it. */
747         tmp = strchr(path, '@');
748         if (tmp) {
749                 /* First find the NID start.  NIDs may have variable (0-4) '.',
750                  * so find the common NID prefixes instead of trying to count
751                  * the dots.  Not great, but there are only two, and faster
752                  * than multiple speculative NID parses and bad DNS lookups.
753                  */
754                 if ((tmp = strstr(path, ".exports.")))
755                         nidstart = tmp + strlen(".exports.");
756                 else if ((tmp = strstr(path, ".MGC")))
757                         nidstart = tmp + 1;
758
759                 /* Next, find the end of the NID string. */
760                 if (nidstart)
761                         nidend = strchrnul(strchr(nidstart, '@'), '.');
762         }
763
764         /* replace param '.' with '/' */
765         for (tmp = strchr(path, '.'); tmp != NULL; tmp = strchr(tmp, '.')) {
766                 *tmp++ = '/';
767
768                 /*
769                  * There exist cases where some of the subdirectories of the
770                  * the parameter tree has embedded in its name a NID string.
771                  * This means that it is possible that these subdirectories
772                  * could have actual '.' in its name. If this is the case we
773                  * don't want to blindly replace the '.' with '/', so skip
774                  * over the part of the parameter containing the NID.
775                  */
776                 if (tmp == nidstart)
777                         tmp = nidend;
778         }
779
780         return 0;
781 }
782
783 /**
784  * The application lctl can perform three operations for lustre
785  * tunables. This enum defines those three operations which are
786  *
787  * 1) LIST_PARAM        - list available tunables
788  * 2) GET_PARAM         - report the current setting of a tunable
789  * 3) SET_PARAM         - set the tunable to a new value
790  */
791 enum parameter_operation {
792         LIST_PARAM,
793         GET_PARAM,
794         SET_PARAM,
795 };
796
797 char *parameter_opname[] = {
798         [LIST_PARAM] = "list_param",
799         [GET_PARAM] = "get_param",
800         [SET_PARAM] = "set_param",
801 };
802
803 /**
804  * Read the value of parameter
805  *
806  * \param[in]   path            full path to the parameter
807  * \param[in]   param_name      lctl parameter format of the
808  *                              parameter path
809  * \param[in]   popt            set/get param options
810  *
811  * \retval 0 on success.
812  * \retval -errno on error.
813  */
814 static int
815 read_param(const char *path, const char *param_name, struct param_opts *popt)
816 {
817         int rc = 0;
818         char *buf = NULL;
819         size_t buflen;
820
821         rc = llapi_param_get_value(path, &buf, &buflen);
822         if (rc != 0) {
823                 fprintf(stderr,
824                         "error: read_param: \'%s\': %s\n",
825                         path, strerror(-rc));
826                 goto free_buf;
827         }
828         /* don't print anything for empty files */
829         if (buf[0] == '\0')
830                 goto free_buf;
831
832         if (popt->po_show_path) {
833                 bool longbuf;
834
835                 longbuf = strnchr(buf, buflen - 1, '\n') != NULL ||
836                         buflen + strlen(param_name) >= 80;
837                 printf("%s=%s", param_name, longbuf ? "\n" : "");
838         }
839         printf("%s", buf);
840
841 free_buf:
842         free(buf);
843         return rc;
844 }
845
846 /**
847  * Set a parameter to a specified value
848  *
849  * \param[in] path              full path to the parameter
850  * \param[in] param_name        lctl parameter format of the parameter path
851  * \param[in] popt              set/get param options
852  * \param[in] value             value to set the parameter to
853  *
854  * \retval number of bytes written on success.
855  * \retval -errno on error.
856  */
857 static int
858 write_param(const char *path, const char *param_name, struct param_opts *popt,
859             const char *value)
860 {
861         int fd, rc = 0;
862         ssize_t count;
863
864         if (!value)
865                 return -EINVAL;
866
867         /* Write the new value to the file */
868         fd = open(path, O_WRONLY);
869         if (fd < 0) {
870                 rc = -errno;
871                 fprintf(stderr, "error: set_param: opening '%s': %s\n",
872                         path, strerror(errno));
873                 return rc;
874         }
875
876         count = write(fd, value, strlen(value));
877         if (count < 0) {
878                 rc = -errno;
879                 if (errno != EIO) {
880                         fprintf(stderr, "error: set_param: setting %s=%s: %s\n",
881                                 path, value, strerror(errno));
882                 }
883         } else if (count < strlen(value)) { /* Truncate case */
884                 rc = -EINVAL;
885                 fprintf(stderr,
886                         "error: set_param: setting %s=%s: wrote only %zd\n",
887                         path, value, count);
888         } else if (popt->po_show_path) {
889                 printf("%s=%s\n", param_name, value);
890         }
891         close(fd);
892
893         return rc;
894 }
895
896 /**
897  * Perform a read, write or just a listing of a parameter
898  *
899  * \param[in] popt              list,set,get parameter options
900  * \param[in] pattern           search filter for the path of the parameter
901  * \param[in] value             value to set the parameter if write operation
902  * \param[in] mode              what operation to perform with the parameter
903  *
904  * \retval number of bytes written on success.
905  * \retval -errno on error and prints error message.
906  */
907 static int
908 param_display(struct param_opts *popt, char *pattern, char *value,
909               enum parameter_operation mode)
910 {
911         int dup_count = 0;
912         char **dup_cache;
913         glob_t paths;
914         char *opname = parameter_opname[mode];
915         int rc, i;
916
917         rc = llapi_param_get_paths(pattern, &paths);
918         if (rc != 0) {
919                 rc = -errno;
920                 if (!popt->po_recursive) {
921                         fprintf(stderr, "error: %s: param_path '%s': %s\n",
922                                 opname, pattern, strerror(errno));
923                 }
924                 return rc;
925         }
926
927         dup_cache = calloc(paths.gl_pathc, sizeof(char *));
928         if (!dup_cache) {
929                 rc = -ENOMEM;
930                 fprintf(stderr,
931                         "error: %s: allocating '%s' dup_cache[%zd]: %s\n",
932                         opname, pattern, paths.gl_pathc, strerror(-rc));
933                 goto out_param;
934         }
935
936         for (i = 0; i < paths.gl_pathc; i++) {
937                 char *param_name = NULL, *tmp;
938                 char pathname[PATH_MAX], param_dir[PATH_MAX + 2];
939                 struct stat st;
940                 int rc2, j;
941
942                 if (stat(paths.gl_pathv[i], &st) == -1) {
943                         fprintf(stderr, "error: %s: stat '%s': %s\n",
944                                 opname, paths.gl_pathv[i], strerror(errno));
945                         if (rc == 0)
946                                 rc = -errno;
947                         continue;
948                 }
949
950                 if (popt->po_only_dir && !S_ISDIR(st.st_mode))
951                         continue;
952
953                 param_name = display_name(paths.gl_pathv[i], &st, popt);
954                 if (!param_name) {
955                         fprintf(stderr,
956                                 "error: %s: generating name for '%s': %s\n",
957                                 opname, paths.gl_pathv[i], strerror(ENOMEM));
958                         if (rc == 0)
959                                 rc = -ENOMEM;
960                         continue;
961                 }
962
963                 switch (mode) {
964                 case GET_PARAM:
965                         /* Read the contents of file to stdout */
966                         if (S_ISREG(st.st_mode)) {
967                                 rc2 = read_param(paths.gl_pathv[i], param_name,
968                                                  popt);
969                                 if (rc2 < 0 && rc == 0)
970                                         rc = rc2;
971                         }
972                         break;
973                 case SET_PARAM:
974                         if (S_ISREG(st.st_mode)) {
975                                 rc2 = write_param(paths.gl_pathv[i],
976                                                   param_name, popt, value);
977                                 if (rc2 < 0 && rc == 0)
978                                         rc = rc2;
979                         }
980                         break;
981                 case LIST_PARAM:
982                         /**
983                          * For the upstream client the parameter files locations
984                          * are split between under both /sys/kernel/debug/lustre
985                          * and /sys/fs/lustre. The parameter files containing
986                          * small amounts of data, less than a page in size, are
987                          * located under /sys/fs/lustre and in the case of large
988                          * parameter data files, think stats for example, are
989                          * located in the debugfs tree. Since the files are
990                          * split across two trees the directories are often
991                          * duplicated which means these directories are listed
992                          * twice which leads to duplicate output to the user.
993                          * To avoid scanning a directory twice we have to cache
994                          * any directory and check if a search has been
995                          * requested twice.
996                          */
997                         for (j = 0; j < dup_count; j++) {
998                                 if (!strcmp(dup_cache[j], param_name))
999                                         break;
1000                         }
1001                         if (j != dup_count) {
1002                                 free(param_name);
1003                                 param_name = NULL;
1004                                 continue;
1005                         }
1006                         dup_cache[dup_count++] = strdup(param_name);
1007
1008                         if (popt->po_show_path)
1009                                 printf("%s\n", param_name);
1010                         break;
1011                 }
1012
1013                 /*
1014                  * Only directories are searched recursively if
1015                  * requested by the user
1016                  */
1017                 if (!S_ISDIR(st.st_mode) || !popt->po_recursive) {
1018                         free(param_name);
1019                         param_name = NULL;
1020                         continue;
1021                 }
1022
1023                 /* Turn param_name into file path format */
1024                 rc2 = clean_path(popt, param_name);
1025                 if (rc2 < 0) {
1026                         fprintf(stderr, "error: %s: cleaning '%s': %s\n",
1027                                 opname, param_name, strerror(-rc2));
1028                         free(param_name);
1029                         param_name = NULL;
1030                         if (rc == 0)
1031                                 rc = rc2;
1032                         continue;
1033                 }
1034
1035                 /* Use param_name to grab subdirectory tree from full path */
1036                 snprintf(param_dir, sizeof(param_dir), "/%s", param_name);
1037                 tmp = strstr(paths.gl_pathv[i], param_dir);
1038
1039                 /* cleanup paramname now that we are done with it */
1040                 free(param_name);
1041                 param_name = NULL;
1042                 memset(&param_dir, '\0', sizeof(param_dir));
1043
1044                 /* Shouldn't happen but just in case */
1045                 if (!tmp) {
1046                         if (rc == 0)
1047                                 rc = -EINVAL;
1048                         continue;
1049                 }
1050                 tmp++;
1051
1052                 rc2 = snprintf(pathname, sizeof(pathname), "%s/*", tmp);
1053                 if (rc2 < 0) {
1054                         /*
1055                          * snprintf() should never an error, and if it does
1056                          * there isn't much point trying to use fprintf()
1057                          */
1058                         continue;
1059                 }
1060                 if (rc2 >= sizeof(pathname)) {
1061                         fprintf(stderr, "error: %s: overflow processing '%s'\n",
1062                                 opname, pathname);
1063                         if (rc == 0)
1064                                 rc = -EINVAL;
1065                         continue;
1066                 }
1067
1068                 rc2 = param_display(popt, pathname, value, mode);
1069                 if (rc2 != 0 && rc2 != -ENOENT) {
1070                         /* errors will be printed by param_display() */
1071                         if (rc == 0)
1072                                 rc = rc2;
1073                         continue;
1074                 }
1075         }
1076
1077         for (i = 0; i < dup_count; i++)
1078                 free(dup_cache[i]);
1079         free(dup_cache);
1080 out_param:
1081         llapi_param_paths_free(&paths);
1082         return rc;
1083 }
1084
1085 static int listparam_cmdline(int argc, char **argv, struct param_opts *popt)
1086 {
1087         int ch;
1088
1089         popt->po_show_path = 1;
1090         popt->po_only_path = 1;
1091
1092         while ((ch = getopt(argc, argv, "FRD")) != -1) {
1093                 switch (ch) {
1094                 case 'F':
1095                         popt->po_show_type = 1;
1096                         break;
1097                 case 'R':
1098                         popt->po_recursive = 1;
1099                         break;
1100                 case 'D':
1101                         popt->po_only_dir = 1;
1102                         break;
1103                 default:
1104                         return -1;
1105                 }
1106         }
1107
1108         return optind;
1109 }
1110
1111 int jt_lcfg_listparam(int argc, char **argv)
1112 {
1113         int rc = 0, index, i;
1114         struct param_opts popt;
1115         char *path;
1116
1117         memset(&popt, 0, sizeof(popt));
1118         index = listparam_cmdline(argc, argv, &popt);
1119         if (index < 0 || index >= argc)
1120                 return CMD_HELP;
1121
1122         for (i = index; i < argc; i++) {
1123                 int rc2;
1124
1125                 path = argv[i];
1126
1127                 rc2 = clean_path(&popt, path);
1128                 if (rc2 < 0) {
1129                         fprintf(stderr, "error: %s: cleaning '%s': %s\n",
1130                                 jt_cmdname(argv[0]), path, strerror(-rc2));
1131                         if (rc == 0)
1132                                 rc = rc2;
1133                         continue;
1134                 }
1135
1136                 rc2 = param_display(&popt, path, NULL, LIST_PARAM);
1137                 if (rc2 < 0) {
1138                         fprintf(stderr, "error: %s: listing '%s': %s\n",
1139                                 jt_cmdname(argv[0]), path, strerror(-rc2));
1140                         if (rc == 0)
1141                                 rc = rc2;
1142                         continue;
1143                 }
1144         }
1145
1146         return rc;
1147 }
1148
1149 static int getparam_cmdline(int argc, char **argv, struct param_opts *popt)
1150 {
1151         int ch;
1152
1153         popt->po_show_path = 1;
1154
1155         while ((ch = getopt(argc, argv, "FnNR")) != -1) {
1156                 switch (ch) {
1157                 case 'F':
1158                         popt->po_show_type = 1;
1159                         break;
1160                 case 'n':
1161                         popt->po_show_path = 0;
1162                         break;
1163                 case 'N':
1164                         popt->po_only_path = 1;
1165                         break;
1166                 case 'R':
1167                         popt->po_recursive = 1;
1168                         break;
1169                 default:
1170                         return -1;
1171                 }
1172         }
1173
1174         return optind;
1175 }
1176
1177 int jt_lcfg_getparam(int argc, char **argv)
1178 {
1179         int rc = 0, index, i;
1180         struct param_opts popt;
1181         char *path;
1182
1183         memset(&popt, 0, sizeof(popt));
1184         index = getparam_cmdline(argc, argv, &popt);
1185         if (index < 0 || index >= argc)
1186                 return CMD_HELP;
1187
1188         for (i = index; i < argc; i++) {
1189                 int rc2;
1190
1191                 path = argv[i];
1192
1193                 rc2 = clean_path(&popt, path);
1194                 if (rc2 < 0) {
1195                         fprintf(stderr, "error: %s: cleaning '%s': %s\n",
1196                                 jt_cmdname(argv[0]), path, strerror(-rc2));
1197                         if (rc == 0)
1198                                 rc = rc2;
1199                         continue;
1200                 }
1201
1202                 rc2 = param_display(&popt, path, NULL,
1203                                     popt.po_only_path ? LIST_PARAM : GET_PARAM);
1204                 if (rc2 < 0) {
1205                         if (rc == 0)
1206                                 rc = rc2;
1207                         continue;
1208                 }
1209         }
1210
1211         return rc;
1212 }
1213
1214 #ifdef HAVE_SERVER_SUPPORT
1215 /**
1216  * Output information about nodemaps.
1217  * \param       argc            number of args
1218  * \param       argv[]          variable string arguments
1219  *
1220  * [list|nodemap_name|all]      \a list will list all nodemaps (default).
1221  *                              Specifying a \a nodemap_name will
1222  *                              display info about that specific nodemap.
1223  *                              \a all will display info for all nodemaps.
1224  * \retval                      0 on success
1225  */
1226 int jt_nodemap_info(int argc, char **argv)
1227 {
1228         const char usage_str[] = "usage: nodemap_info [list|nodemap_name|all]\n";
1229         struct param_opts popt;
1230         int rc = 0;
1231
1232         memset(&popt, 0, sizeof(popt));
1233         popt.po_show_path = 1;
1234
1235         if (argc > 2) {
1236                 fprintf(stderr, usage_str);
1237                 return -1;
1238         }
1239
1240         if (argc == 1 || strcmp("list", argv[1]) == 0) {
1241                 popt.po_only_path = 1;
1242                 popt.po_only_dir = 1;
1243                 rc = param_display(&popt, "nodemap/*", NULL, LIST_PARAM);
1244         } else if (strcmp("all", argv[1]) == 0) {
1245                 rc = param_display(&popt, "nodemap/*/*", NULL, LIST_PARAM);
1246         } else {
1247                 char    pattern[PATH_MAX];
1248
1249                 snprintf(pattern, sizeof(pattern), "nodemap/%s/*", argv[1]);
1250                 rc = param_display(&popt, pattern, NULL, LIST_PARAM);
1251                 if (rc == -ESRCH)
1252                         fprintf(stderr,
1253                                 "error: nodemap_info: cannot find nodemap %s\n",
1254                                 argv[1]);
1255         }
1256         return rc;
1257 }
1258 #endif
1259
1260 static int setparam_cmdline(int argc, char **argv, struct param_opts *popt)
1261 {
1262         int ch;
1263
1264         popt->po_show_path = 1;
1265         popt->po_only_path = 0;
1266         popt->po_show_type = 0;
1267         popt->po_recursive = 0;
1268         popt->po_perm = 0;
1269         popt->po_delete = 0;
1270         popt->po_file = 0;
1271
1272         while ((ch = getopt(argc, argv, "nPdF")) != -1) {
1273                 switch (ch) {
1274                 case 'n':
1275                         popt->po_show_path = 0;
1276                         break;
1277                 case 'P':
1278                         popt->po_perm = 1;
1279                         break;
1280                 case 'd':
1281                         popt->po_delete = 1;
1282                         break;
1283                 case 'F':
1284                         popt->po_file = 1;
1285                         break;
1286                 default:
1287                         return -1;
1288                 }
1289         }
1290         return optind;
1291 }
1292
1293 enum paramtype {
1294         PT_NONE = 0,
1295         PT_SETPARAM,
1296         PT_CONFPARAM
1297 };
1298
1299 #define PS_NONE 0
1300 #define PS_PARAM_FOUND 1
1301 #define PS_PARAM_SET 2
1302 #define PS_VAL_FOUND 4
1303 #define PS_VAL_SET 8
1304 #define PS_DEVICE_FOUND 16
1305 #define PS_DEVICE_SET 32
1306
1307 #define PARAM_SZ 256
1308
1309 static struct cfg_type_data {
1310         enum paramtype ptype;
1311         char *type_name;
1312 } cfg_type_table[] = {
1313         { PT_SETPARAM, "set_param" },
1314         { PT_CONFPARAM, "conf_param" },
1315         { PT_NONE, "none" }
1316 };
1317
1318 static struct cfg_stage_data {
1319         int pstage;
1320         char *stage_name;
1321 } cfg_stage_table[] = {
1322         { PS_PARAM_FOUND, "parameter" },
1323         { PS_VAL_FOUND, "value" },
1324         { PS_DEVICE_FOUND, "device" },
1325         { PS_NONE, "none" }
1326 };
1327
1328 void conf_to_set_param(enum paramtype confset, const char *param,
1329                        const char *device, char *buf,
1330                        int bufsize)
1331 {
1332         char *tmp;
1333
1334         if (confset == PT_SETPARAM) {
1335                 strncpy(buf, param, bufsize);
1336                 return;
1337         }
1338
1339         /*
1340          * sys.* params are top level, we just need to trim the sys.
1341          */
1342         tmp = strstr(param, "sys.");
1343         if (tmp) {
1344                 tmp += 4;
1345                 strncpy(buf, tmp, bufsize);
1346                 return;
1347         }
1348
1349         /*
1350          * parameters look like type.parameter, we need to stick the device
1351          * in the middle.  Example combine mdt.identity_upcall with device
1352          * lustre-MDT0000 for mdt.lustre-MDT0000.identity_upcall
1353          */
1354
1355         tmp = strchrnul(param, '.');
1356         snprintf(buf, tmp - param + 1, "%s", param);
1357         buf += tmp - param;
1358         bufsize -= tmp - param;
1359         snprintf(buf, bufsize, ".%s%s", device, tmp);
1360 }
1361
1362 int lcfg_setparam_yaml(char *func, char *filename)
1363 {
1364         FILE *file;
1365         yaml_parser_t parser;
1366         yaml_token_t token;
1367         int rc = 0;
1368
1369         enum paramtype confset = PT_NONE;
1370         int param = PS_NONE;
1371         char *tmp;
1372         char parameter[PARAM_SZ + 1];
1373         char value[PARAM_SZ + 1];
1374         char device[PARAM_SZ + 1];
1375
1376         file = fopen(filename, "rb");
1377         yaml_parser_initialize(&parser);
1378         yaml_parser_set_input_file(&parser, file);
1379
1380         /*
1381          * Search tokens for conf_param or set_param
1382          * The token after "parameter" goes into parameter
1383          * The token after "value" goes into value
1384          * when we have all 3, create param=val and call the
1385          * appropriate function for set/conf param
1386          */
1387         while (token.type != YAML_STREAM_END_TOKEN && rc == 0) {
1388                 int i;
1389
1390                 yaml_token_delete(&token);
1391                 if (!yaml_parser_scan(&parser, &token)) {
1392                         rc = 1;
1393                         break;
1394                 }
1395
1396                 if (token.type != YAML_SCALAR_TOKEN)
1397                         continue;
1398
1399                 for (i = 0; cfg_type_table[i].ptype != PT_NONE; i++) {
1400                         if (!strncmp((char *)token.data.alias.value,
1401                                      cfg_type_table[i].type_name,
1402                                      strlen(cfg_type_table[i].type_name))) {
1403                                 confset = cfg_type_table[i].ptype;
1404                                 break;
1405                         }
1406                 }
1407
1408                 if (confset == PT_NONE)
1409                         continue;
1410
1411                 for (i = 0; cfg_stage_table[i].pstage != PS_NONE; i++) {
1412                         if (!strncmp((char *)token.data.alias.value,
1413                                      cfg_stage_table[i].stage_name,
1414                                      strlen(cfg_stage_table[i].stage_name))) {
1415                                 param |= cfg_stage_table[i].pstage;
1416                                 break;
1417                         }
1418                 }
1419
1420                 if (cfg_stage_table[i].pstage != PS_NONE)
1421                         continue;
1422
1423                 if (param & PS_PARAM_FOUND) {
1424                         conf_to_set_param(confset,
1425                                           (char *)token.data.alias.value,
1426                                           device, parameter, PARAM_SZ);
1427                         param |= PS_PARAM_SET;
1428                         param &= ~PS_PARAM_FOUND;
1429
1430                         /*
1431                          * we're getting parameter: param=val
1432                          * copy val and mark that we've got it in case
1433                          * there is no value: tag
1434                          */
1435                         tmp = strchrnul(parameter, '=');
1436                         if (*tmp == '=') {
1437                                 strncpy(value, tmp + 1, sizeof(value) - 1);
1438                                 *tmp = '\0';
1439                                 param |= PS_VAL_SET;
1440                         } else {
1441                                 continue;
1442                         }
1443                 } else if (param & PS_VAL_FOUND) {
1444                         strncpy(value, (char *)token.data.alias.value,
1445                                 PARAM_SZ);
1446                         param |= PS_VAL_SET;
1447                         param &= ~PS_VAL_FOUND;
1448                 } else if (param & PS_DEVICE_FOUND) {
1449                         strncpy(device, (char *)token.data.alias.value,
1450                                 PARAM_SZ);
1451                         param |= PS_DEVICE_SET;
1452                         param &= ~PS_DEVICE_FOUND;
1453                 }
1454
1455                 if (confset && param & PS_VAL_SET && param & PS_PARAM_SET) {
1456                         int size = strlen(parameter) + strlen(value) + 2;
1457                         char *buf = malloc(size);
1458
1459                         if (!buf) {
1460                                 rc = 2;
1461                                 break;
1462                         }
1463                         snprintf(buf, size, "%s=%s", parameter, value);
1464
1465                         printf("set_param: %s\n", buf);
1466                         rc = lcfg_setparam_perm(func, buf);
1467
1468                         confset = PT_NONE;
1469                         param = PS_NONE;
1470                         parameter[0] = '\0';
1471                         value[0] = '\0';
1472                         device[0] = '\0';
1473                         free(buf);
1474                 }
1475         }
1476
1477         yaml_parser_delete(&parser);
1478         fclose(file);
1479
1480         return rc;
1481 }
1482
1483 int jt_lcfg_setparam(int argc, char **argv)
1484 {
1485         int rc = 0, index, i;
1486         struct param_opts popt;
1487         char *path = NULL, *value = NULL;
1488
1489         memset(&popt, 0, sizeof(popt));
1490         index = setparam_cmdline(argc, argv, &popt);
1491         if (index < 0 || index >= argc)
1492                 return CMD_HELP;
1493
1494         if (popt.po_perm)
1495                 /*
1496                  * We can't delete parameters that were
1497                  * set with old conf_param interface
1498                  */
1499                 return jt_lcfg_setparam_perm(argc, argv, &popt);
1500
1501         if (popt.po_file)
1502                 return lcfg_setparam_yaml(argv[0], argv[index]);
1503
1504         for (i = index; i < argc; i++) {
1505                 int rc2;
1506
1507                 path = argv[i];
1508                 value = strchr(path, '=');
1509                 if (value) {
1510                         /* format: set_param a=b */
1511                         *value = '\0';
1512                         value++;
1513                         if (*value == '\0') {
1514                                 fprintf(stderr,
1515                                         "error: %s: setting %s: no value\n",
1516                                         jt_cmdname(argv[0]), path);
1517                                 if (rc == 0)
1518                                         rc = -EINVAL;
1519                                 continue;
1520                         }
1521                 } else {
1522                         /* format: set_param a b */
1523                         i++;
1524                         if (i >= argc) {
1525                                 fprintf(stderr,
1526                                         "error: %s: setting %s: no value\n",
1527                                         jt_cmdname(argv[0]), path);
1528                                 if (rc == 0)
1529                                         rc = -EINVAL;
1530                                 break;
1531                         }
1532                         value = argv[i];
1533                 }
1534
1535                 rc2 = clean_path(&popt, path);
1536                 if (rc2 < 0) {
1537                         fprintf(stderr, "error: %s: cleaning %s: %s\n",
1538                                 jt_cmdname(argv[0]), path, strerror(-rc2));
1539                         if (rc == 0)
1540                                 rc = rc2;
1541                         continue;
1542                 }
1543
1544                 rc2 = param_display(&popt, path, value, SET_PARAM);
1545                 if (rc == 0)
1546                         rc = rc2;
1547         }
1548
1549         return rc;
1550 }