X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Fheadtail.c;h=164f2b63a7747704d57be99e419b59ab9597bfcd;hp=b522c55f15d58ddc033b4b1f7f67eef6625d01c2;hb=00cc40a5f3304ff940fed302107067945177f31f;hpb=3854bbdecd1c089959fb812a739b84a96c05fbbf diff --git a/daemon/headtail.c b/daemon/headtail.c index b522c55..164f2b6 100644 --- a/daemon/headtail.c +++ b/daemon/headtail.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 @@ -22,33 +22,30 @@ #include #include #include +#include #include "../src/guestfs_protocol.h" #include "daemon.h" #include "actions.h" static char ** -headtail (const char *prog, const char *flag, const char *n, char *path) +headtail (const char *prog, const char *flag, const char *n, const char *path) { - char *buf; char *out, *err; - int r, len; + int fd, flags, r; char **lines; - NEED_ROOT (NULL); - ABS_PATH (path, NULL); + CHROOT_IN; + fd = open (path, O_RDONLY); + CHROOT_OUT; - /* Make the path relative to /sysroot. */ - 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, prog, flag, n, buf, NULL); - free (buf); + flags = COMMAND_FLAG_CHROOT_COPY_FILE_TO_STDIN | fd; + r = commandf (&out, &err, flags, prog, flag, n, NULL); if (r == -1) { reply_with_error ("%s %s %s: %s", prog, flag, n, err); free (out); @@ -72,19 +69,19 @@ headtail (const char *prog, const char *flag, const char *n, char *path) } char ** -do_head (char *path) +do_head (const char *path) { return headtail ("head", "-n", "10", path); } char ** -do_tail (char *path) +do_tail (const char *path) { return headtail ("tail", "-n", "10", path); } char ** -do_head_n (int n, char *path) +do_head_n (int n, const char *path) { char nbuf[16]; @@ -94,7 +91,7 @@ do_head_n (int n, char *path) } char ** -do_tail_n (int n, char *path) +do_tail_n (int n, const char *path) { char nbuf[16];