X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Fhexdump.c;h=36986135727b074924935988e0be02ef1c0041f2;hb=182c25b2a42e9a8f76beba440da328e37f18c9b9;hp=7016faf49e373227e401fb6177f36aa441366fd6;hpb=84fc760439e82e6b3616abd0d1f9bd7d7eb01ec0;p=libguestfs.git diff --git a/daemon/hexdump.c b/daemon/hexdump.c index 7016faf..3698613 100644 --- a/daemon/hexdump.c +++ b/daemon/hexdump.c @@ -13,7 +13,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include @@ -21,6 +21,8 @@ #include #include #include +#include +#include #include "daemon.h" #include "actions.h" @@ -28,20 +30,22 @@ char * do_hexdump (const char *path) { - char *buf; - int r; + int fd, flags, r; char *out, *err; - buf = sysroot_path (path); - if (!buf) { - reply_with_perror ("malloc"); + CHROOT_IN; + fd = open (path, O_RDONLY); + CHROOT_OUT; + + if (fd == -1) { + reply_with_perror ("%s", path); return NULL; } - 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;