X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Fhexdump.c;h=202f856c6367bc558f4666a2dc740af5198adecf;hp=ae7df924be1c8c13c6447772d59633dc1b4f47d2;hb=b01ef8eae1acc5105e623a25c8988bcc3326ea1c;hpb=887290e949d54c6ac4c9b787231e588f84f2367c diff --git a/daemon/hexdump.c b/daemon/hexdump.c index ae7df92..202f856 100644 --- a/daemon/hexdump.c +++ b/daemon/hexdump.c @@ -1,5 +1,5 @@ /* libguestfs - the guestfsd daemon - * Copyright (C) 2009 Red Hat Inc. + * Copyright (C) 2009 Red Hat Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -21,34 +21,31 @@ #include #include #include +#include +#include #include "daemon.h" #include "actions.h" char * -do_hexdump (char *path) +do_hexdump (const char *path) { - int len; - char *buf; - int r; + int fd, flags, r; char *out, *err; - NEED_ROOT (NULL); - ABS_PATH (path, NULL); + CHROOT_IN; + fd = open (path, O_RDONLY); + CHROOT_OUT; - len = strlen (path) + 9; - buf = malloc (len); - if (!buf) { - reply_with_perror ("malloc"); + if (fd == -1) { + reply_with_perror ("%s", path); return NULL; } - snprintf (buf, len, "/sysroot%s", path); - - r = command (&out, &err, "hexdump", "-C", buf, NULL); - free (buf); + flags = COMMAND_FLAG_CHROOT_COPY_FILE_TO_STDIN | fd; + r = commandf (&out, &err, flags, "hexdump", "-C", NULL); if (r == -1) { - reply_with_error ("hexdump: %s: %s", path, err); + reply_with_error ("%s: %s", path, err); free (err); free (out); return NULL;