X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=hivex%2Fhivexsh.c;h=51d8cfb159eb4a6a629dc87bc60117239287062f;hb=30a0b5cf1606c54cc527d758949422396763cbd3;hp=1bd3b8be8d68d53d9fd2fbd618ade45622aaa77b;hpb=3932b383869a1029457fac172827ef2b538d77de;p=libguestfs.git diff --git a/hivex/hivexsh.c b/hivex/hivexsh.c index 1bd3b8b..51d8cfb 100644 --- a/hivex/hivexsh.c +++ b/hivex/hivexsh.c @@ -58,6 +58,8 @@ #include "hivex.h" #include "byte_conversions.h" +#define HIVEX_MAX_VALUES 1000 + static int quit = 0; static int is_tty; static hive_h *h = NULL; @@ -76,6 +78,7 @@ static char *rl_gets (const char *prompt_string); static void sort_strings (char **strings, int len); static int get_xdigit (char c); static int dispatch (char *cmd, char *args); +static int cmd_add (char *name); static int cmd_cd (char *path); static int cmd_close (char *path); static int cmd_commit (char *path); @@ -411,7 +414,9 @@ dispatch (char *cmd, char *args) return -1; } - if (STRCASEEQ (cmd, "cd")) + if (STRCASEEQ (cmd, "add")) + return cmd_add (args); + else if (STRCASEEQ (cmd, "cd")) return cmd_cd (args); else if (STRCASEEQ (cmd, "close") || STRCASEEQ (cmd, "unload")) return cmd_close (args); @@ -837,7 +842,7 @@ cmd_setval (char *nrvals_str) "setval", "nrvals", "xstrtol", xerr); return -1; } - if (nrvals < 0 || nrvals > 1000) { + if (nrvals < 0 || nrvals > HIVEX_MAX_VALUES) { fprintf (stderr, _("%s: %s: integer out of range\n"), "setval", "nrvals"); return -1; @@ -855,7 +860,6 @@ cmd_setval (char *nrvals_str) /* Read nrvals * 2 lines of input, nrvals * (key, value) pairs, as * explained in the man page. */ - int prompt = isatty (0) ? 2 : 0; int i, j; for (i = 0; i < nrvals; ++i) { /* Read key. */ @@ -909,7 +913,7 @@ cmd_setval (char *nrvals_str) } else if (STRPREFIX (buf, "expandstring:")) { buf += 13; - values[i].t = hive_t_string; + values[i].t = hive_t_expand_string; int nr_chars = strlen (buf); values[i].len = 2 * (nr_chars + 1); values[i].value = malloc (values[i].len); @@ -1069,7 +1073,7 @@ cmd_del (char *args) hive_node_h new_cwd = hivex_node_parent (h, cwd); if (hivex_node_delete_child (h, cwd) == -1) { - perror ("del"); + perror ("hivexsh: del"); return -1; } @@ -1077,3 +1081,14 @@ cmd_del (char *args) set_prompt_string (); return 0; } + +static int +cmd_add (char *name) +{ + hive_node_h node = hivex_node_add_child (h, cwd, name); + if (node == 0) { + perror ("hivexsh: add"); + return -1; + } + return 0; +}