summaryrefslogtreecommitdiffstats
path: root/daemon
diff options
context:
space:
mode:
authorRichard Jones <rjones@redhat.com>2010-05-07 00:11:55 +0100
committerRichard Jones <rjones@redhat.com>2010-05-07 15:27:28 +0100
commit7d8e5886a6a8ab16c6a69d0e02e7f93cdb7430df (patch)
tree27441ae8bb7b5557c4619e8d6bdbf17a2d69888a /daemon
parent00fae9fe88ca83dfc3ee0b1b7d8e27e644f6e9c7 (diff)
downloadlibguestfs-7d8e5886a6a8ab16c6a69d0e02e7f93cdb7430df.tar.gz
libguestfs-7d8e5886a6a8ab16c6a69d0e02e7f93cdb7430df.tar.xz
libguestfs-7d8e5886a6a8ab16c6a69d0e02e7f93cdb7430df.zip
daemon: Fix grep and related to work on absolute symbolic links (RHBZ#579608).
Diffstat (limited to 'daemon')
-rw-r--r--daemon/grep.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/daemon/grep.c b/daemon/grep.c
index d1f5a3f7..73e58dd3 100644
--- a/daemon/grep.c
+++ b/daemon/grep.c
@@ -22,6 +22,7 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
+#include <fcntl.h>
#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);