X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Ffile.c;h=aca1caa676c0d7c45e0dd783fd96544d1a5de318;hp=7d37f569334811bcacc959ce65b11b84520cd8e7;hb=21c42e9fabf6cea3d564e338a314479ef120502a;hpb=3920ad95f6b2db8fbf20aa26692877a09070cb04 diff --git a/daemon/file.c b/daemon/file.c index 7d37f56..aca1caa 100644 --- a/daemon/file.c +++ b/daemon/file.c @@ -456,6 +456,37 @@ do_pread (const char *path, int count, int64_t offset, size_t *size_r) return buf; } +int +do_pwrite (const char *path, const char *content, size_t size, int64_t offset) +{ + int fd; + ssize_t r; + + CHROOT_IN; + fd = open (path, O_WRONLY); + CHROOT_OUT; + + if (fd == -1) { + reply_with_perror ("open: %s", path); + return -1; + } + + r = pwrite (fd, content, size, offset); + if (r == -1) { + reply_with_perror ("pwrite: %s", path); + close (fd); + return -1; + } + + if (close (fd) == -1) { + reply_with_perror ("close: %s", path); + close (fd); + return -1; + } + + return r; +} + /* This runs the 'file' command. */ char * do_file (const char *path)