aboutsummaryrefslogtreecommitdiffstats
path: root/copier.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-09-04 11:38:03 +0200
committerMattias Andrée <maandree@kth.se>2021-09-04 11:38:03 +0200
commitf467f59897f330d2a493e919108e62dffaa1f736 (patch)
treea93237eb61591401b481e47b2aaa9dc92042be1a /copier.c
parentm (diff)
downloadeditasroot-f467f59897f330d2a493e919108e62dffaa1f736.tar.gz
editasroot-f467f59897f330d2a493e919108e62dffaa1f736.tar.bz2
editasroot-f467f59897f330d2a493e919108e62dffaa1f736.tar.xz
Communicate whether file transfers were completed
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'copier.c')
-rw-r--r--copier.c46
1 files changed, 9 insertions, 37 deletions
diff --git a/copier.c b/copier.c
index 231e515..3e7a6c6 100644
--- a/copier.c
+++ b/copier.c
@@ -1,46 +1,14 @@
/* See LICENSE file for copyright and license details. */
-#include <sys/socket.h>
-#include <errno.h>
-#include <fcntl.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
+#include "common.h"
-static const char *argv0 = "editasroot/copier";
-
-
-static void
-copy_file(int destfd, const char *destfname, int srcfd, const char *srcfname)
-{
- char buf[BUFSIZ];
- ssize_t r, w, p;
-
- for (;;) {
- r = read(srcfd, buf, sizeof(buf));
- if (r <= 0) {
- if (!r)
- break;
- fprintf(stderr, "%s: read %s: %s", argv0, srcfname, strerror(errno));
- exit(1);
- }
-
- for (p = 0; p < r; p += w) {
- w = write(destfd, buf, (size_t)(r - p));
- if (r <= 0) {
- fprintf(stderr, "%s: write %s: %s", argv0, destfname, strerror(errno));
- exit(1);
- }
- }
- }
-}
+const char *argv0 = "editasroot/copier";
int
main(int argc, char *argv[])
{
- int filefd, parentfd;
+ int filefd, parentfd, ok;
const char *path;
ssize_t r;
char b;
@@ -59,7 +27,7 @@ main(int argc, char *argv[])
fprintf(stderr, "%s: open %s O_RDWR: %s\n", argv0, path, strerror(errno));
exit(1);
}
- copy_file(parentfd, "<socket to parent>", filefd, path);
+ copy_file(parentfd, "<socket to parent>", filefd, path, NULL);
if (close(filefd)) {
fprintf(stderr, "%s: read %s: %s\n", argv0, path, strerror(errno));
exit(1);
@@ -81,7 +49,7 @@ main(int argc, char *argv[])
fprintf(stderr, "%s: open %s O_WRONLY|O_TRUNC: %s\n", argv0, path, strerror(errno));
exit(1);
}
- copy_file(filefd, path, parentfd, "<socket to parent>");
+ copy_file(filefd, path, parentfd, "<socket to parent>", &ok);
if (close(filefd)) {
fprintf(stderr, "%s: write %s: %s\n", argv0, path, strerror(errno));
exit(1);
@@ -90,6 +58,10 @@ main(int argc, char *argv[])
fprintf(stderr, "%s: read <socket to parent>: %s\n", argv0, strerror(errno));
exit(1);
}
+ if (!ok) {
+ fprintf(stderr, "%s: parent exited before sending file termination message, file may be truncated\n", argv0);
+ exit(1);
+ }
return 0;
}