Commit e4f70b7b authored by Masami Hiramatsu's avatar Masami Hiramatsu Committed by Steven Rostedt (VMware)

tools/bootconfig: Add list option

Add list option (-l) to show the bootconfig in the list style.
This is same output of /proc/bootconfig. So users can check
how their bootconfig will be shown in procfs. This will help
them to write a user-space script to parse the /proc/bootconfig.

Link: https://lkml.kernel.org/r/159704849087.175360.8761890802048625207.stgit@devnote2Signed-off-by: default avatarMasami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
parent d052e1c6
...@@ -14,18 +14,19 @@ ...@@ -14,18 +14,19 @@
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/bootconfig.h> #include <linux/bootconfig.h>
static int xbc_show_value(struct xbc_node *node) static int xbc_show_value(struct xbc_node *node, bool semicolon)
{ {
const char *val; const char *val, *eol;
char q; char q;
int i = 0; int i = 0;
eol = semicolon ? ";\n" : "\n";
xbc_array_for_each_value(node, val) { xbc_array_for_each_value(node, val) {
if (strchr(val, '"')) if (strchr(val, '"'))
q = '\''; q = '\'';
else else
q = '"'; q = '"';
printf("%c%s%c%s", q, val, q, node->next ? ", " : ";\n"); printf("%c%s%c%s", q, val, q, node->next ? ", " : eol);
i++; i++;
} }
return i; return i;
...@@ -53,7 +54,7 @@ static void xbc_show_compact_tree(void) ...@@ -53,7 +54,7 @@ static void xbc_show_compact_tree(void)
continue; continue;
} else if (cnode && xbc_node_is_value(cnode)) { } else if (cnode && xbc_node_is_value(cnode)) {
printf("%s = ", xbc_node_get_data(node)); printf("%s = ", xbc_node_get_data(node));
xbc_show_value(cnode); xbc_show_value(cnode, true);
} else { } else {
printf("%s;\n", xbc_node_get_data(node)); printf("%s;\n", xbc_node_get_data(node));
} }
...@@ -77,6 +78,26 @@ static void xbc_show_compact_tree(void) ...@@ -77,6 +78,26 @@ static void xbc_show_compact_tree(void)
} }
} }
static void xbc_show_list(void)
{
char key[XBC_KEYLEN_MAX];
struct xbc_node *leaf;
const char *val;
int ret = 0;
xbc_for_each_key_value(leaf, val) {
ret = xbc_node_compose_key(leaf, key, XBC_KEYLEN_MAX);
if (ret < 0)
break;
printf("%s = ", key);
if (!val || val[0] == '\0') {
printf("\"\"\n");
continue;
}
xbc_show_value(xbc_node_get_child(leaf), false);
}
}
/* Simple real checksum */ /* Simple real checksum */
int checksum(unsigned char *buf, int len) int checksum(unsigned char *buf, int len)
{ {
...@@ -233,7 +254,7 @@ static int init_xbc_with_error(char *buf, int len) ...@@ -233,7 +254,7 @@ static int init_xbc_with_error(char *buf, int len)
return ret; return ret;
} }
int show_xbc(const char *path) int show_xbc(const char *path, bool list)
{ {
int ret, fd; int ret, fd;
char *buf = NULL; char *buf = NULL;
...@@ -267,7 +288,10 @@ int show_xbc(const char *path) ...@@ -267,7 +288,10 @@ int show_xbc(const char *path)
if (init_xbc_with_error(buf, ret) < 0) if (init_xbc_with_error(buf, ret) < 0)
goto out; goto out;
} }
xbc_show_compact_tree(); if (list)
xbc_show_list();
else
xbc_show_compact_tree();
ret = 0; ret = 0;
out: out:
free(buf); free(buf);
...@@ -390,7 +414,8 @@ int usage(void) ...@@ -390,7 +414,8 @@ int usage(void)
" Apply, delete or show boot config to initrd.\n" " Apply, delete or show boot config to initrd.\n"
" Options:\n" " Options:\n"
" -a <config>: Apply boot config to initrd\n" " -a <config>: Apply boot config to initrd\n"
" -d : Delete boot config file from initrd\n\n" " -d : Delete boot config file from initrd\n"
" -l : list boot config in initrd or file\n\n"
" If no option is given, show the bootconfig in the given file.\n"); " If no option is given, show the bootconfig in the given file.\n");
return -1; return -1;
} }
...@@ -399,10 +424,10 @@ int main(int argc, char **argv) ...@@ -399,10 +424,10 @@ int main(int argc, char **argv)
{ {
char *path = NULL; char *path = NULL;
char *apply = NULL; char *apply = NULL;
bool delete = false; bool delete = false, list = false;
int opt; int opt;
while ((opt = getopt(argc, argv, "hda:")) != -1) { while ((opt = getopt(argc, argv, "hda:l")) != -1) {
switch (opt) { switch (opt) {
case 'd': case 'd':
delete = true; delete = true;
...@@ -410,14 +435,17 @@ int main(int argc, char **argv) ...@@ -410,14 +435,17 @@ int main(int argc, char **argv)
case 'a': case 'a':
apply = optarg; apply = optarg;
break; break;
case 'l':
list = true;
break;
case 'h': case 'h':
default: default:
return usage(); return usage();
} }
} }
if (apply && delete) { if ((apply && delete) || (delete && list) || (apply && list)) {
pr_err("Error: You can not specify both -a and -d at once.\n"); pr_err("Error: You can give one of -a, -d or -l at once.\n");
return usage(); return usage();
} }
...@@ -433,5 +461,5 @@ int main(int argc, char **argv) ...@@ -433,5 +461,5 @@ int main(int argc, char **argv)
else if (delete) else if (delete)
return delete_xbc(path); return delete_xbc(path);
return show_xbc(path); return show_xbc(path, list);
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment