diff options
author | Richard Jones <rjones@trick.home.annexia.org> | 2009-08-18 08:56:18 +0100 |
---|---|---|
committer | Richard Jones <rjones@trick.home.annexia.org> | 2009-08-18 08:56:18 +0100 |
commit | 24a6cf4533118e04367f7fcdc6eadaa4e2dfbc56 (patch) | |
tree | 9380398bb0f4120378e52cb63ac2e4d695e9c86a /daemon/debug.c | |
parent | a578bd9c8ebfc311ec7c9c01085a9cf84be4eae2 (diff) | |
download | libguestfs-24a6cf4533118e04367f7fcdc6eadaa4e2dfbc56.tar.gz libguestfs-24a6cf4533118e04367f7fcdc6eadaa4e2dfbc56.tar.xz libguestfs-24a6cf4533118e04367f7fcdc6eadaa4e2dfbc56.zip |
Implement 'debug ls' and 'debug ll' commands.
These commands can be used to list files in the appliance.
Diffstat (limited to 'daemon/debug.c')
-rw-r--r-- | daemon/debug.c | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/daemon/debug.c b/daemon/debug.c index b4285887..8daa0324 100644 --- a/daemon/debug.c +++ b/daemon/debug.c @@ -47,6 +47,8 @@ struct cmd { static char *debug_help (const char *subcmd, int argc, char *const *const argv); static char *debug_env (const char *subcmd, int argc, char *const *const argv); static char *debug_fds (const char *subcmd, int argc, char *const *const argv); +static char *debug_ls (const char *subcmd, int argc, char *const *const argv); +static char *debug_ll (const char *subcmd, int argc, char *const *const argv); static char *debug_segv (const char *subcmd, int argc, char *const *const argv); static char *debug_sh (const char *subcmd, int argc, char *const *const argv); @@ -54,6 +56,8 @@ static struct cmd cmds[] = { { "help", debug_help }, { "env", debug_env }, { "fds", debug_fds }, + { "ls", debug_ls }, + { "ll", debug_ll }, { "segv", debug_segv }, { "sh", debug_sh }, { NULL, NULL } @@ -259,4 +263,64 @@ debug_env (const char *subcmd, int argc, char *const *const argv) return out; } +/* List files in the appliance. */ +static char * +debug_ls (const char *subcmd, int argc, char *const *const argv) +{ + int len = count_strings (argv); + const char *cargv[len+3]; + int i; + + cargv[0] = "ls"; + cargv[1] = "-a"; + for (i = 0; i < len; ++i) + cargv[2+i] = argv[i]; + cargv[2+len] = NULL; + + int r; + char *out, *err; + + r = commandv (&out, &err, (void *) cargv); + if (r == -1) { + reply_with_error ("ls: %s", err); + free (out); + free (err); + return NULL; + } + + free (err); + + return out; +} + +/* List files in the appliance. */ +static char * +debug_ll (const char *subcmd, int argc, char *const *const argv) +{ + int len = count_strings (argv); + const char *cargv[len+3]; + int i; + + cargv[0] = "ls"; + cargv[1] = "-la"; + for (i = 0; i < len; ++i) + cargv[2+i] = argv[i]; + cargv[2+len] = NULL; + + int r; + char *out, *err; + + r = commandv (&out, &err, (void *) cargv); + if (r == -1) { + reply_with_error ("ll: %s", err); + free (out); + free (err); + return NULL; + } + + free (err); + + return out; +} + #endif /* ENABLE_DEBUG_COMMAND */ |