X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Fgrep.c;h=73e58dd38169730ccda49d46f4048ccf0ef92869;hp=d1f5a3f773f837bbadee955f9416f3091b6568dc;hb=ed74706d80394fef709ec0258fc5cf7d974ff8b1;hpb=84fc760439e82e6b3616abd0d1f9bd7d7eb01ec0 diff --git a/daemon/grep.c b/daemon/grep.c index d1f5a3f..73e58dd 100644 --- a/daemon/grep.c +++ b/daemon/grep.c @@ -22,6 +22,7 @@ #include #include #include +#include #include "../src/guestfs_protocol.h" #include "daemon.h" @@ -30,23 +31,24 @@ static char ** grep (const char *prog, const char *flag, const char *regex, const char *path) { - char *buf; char *out, *err; - int r; + int fd, flags, r; char **lines; - /* Make the path relative to /sysroot. */ - 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; } /* Note that grep returns an error if no match. We want to * suppress this error and return an empty list. */ - r = commandr (&out, &err, prog, flag, regex, buf, NULL); - free (buf); + flags = COMMAND_FLAG_CHROOT_COPY_FILE_TO_STDIN | fd; + r = commandrf (&out, &err, flags, prog, flag, regex, NULL); if (r == -1 || r > 1) { reply_with_error ("%s %s %s: %s", prog, flag, regex, err); free (out);