X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Fstrings.c;h=f08401b2835b92fbac740cac303fe55f97938930;hp=4701716899a60866b2c968627c499a90bb1d6e6b;hb=e44cf42f362d793c47d892a18a6853d88abd6ecb;hpb=e9c37113104c1cfb234535adc9b52ad3880a41ce diff --git a/daemon/strings.c b/daemon/strings.c index 4701716..f08401b 100644 --- a/daemon/strings.c +++ b/daemon/strings.c @@ -21,6 +21,8 @@ #include #include #include +#include +#include #include "daemon.h" #include "actions.h" @@ -28,19 +30,27 @@ char ** do_strings_e (const char *encoding, const char *path) { - char *buf; - int r; + int fd, flags, r; char *out, *err; char **lines; - buf = sysroot_path (path); - if (!buf) { - reply_with_perror ("malloc"); + if (strlen (encoding) != 1 || + strchr ("sSblBL", encoding[0]) == NULL) { + reply_with_error ("%s: invalid encoding", encoding); return NULL; } - r = command (&out, &err, "strings", "-e", encoding, buf, NULL); - free (buf); + CHROOT_IN; + fd = open (path, O_RDONLY); + CHROOT_OUT; + + if (fd == -1) { + reply_with_perror ("%s", path); + return NULL; + } + + flags = COMMAND_FLAG_CHROOT_COPY_FILE_TO_STDIN | fd; + r = commandf (&out, &err, flags, "strings", "-e", encoding, NULL); if (r == -1) { reply_with_error ("%s: %s", path, err); free (err);