summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2021-04-15 14:00:11 -0400
committerTavian Barnes <tavianator@tavianator.com>2021-04-15 14:00:11 -0400
commitb7111f2f01dce9516aea5250e765124300f2fa3a (patch)
tree25a723baf00892f61d103029a983fec6b60bf550
parent1d8bbdc1a59fd5246ec60bc3db1ece055ef83639 (diff)
parent3dad2125b9048fdc3790d3e7c4770f7174be889c (diff)
downloadbfs-b7111f2f01dce9516aea5250e765124300f2fa3a.tar.xz
Merge pull request #73 from markus-oberhumer/safe-read-write
-rw-r--r--bar.c12
-rw-r--r--spawn.c11
-rw-r--r--util.c55
-rw-r--r--util.h20
4 files changed, 80 insertions, 18 deletions
diff --git a/bar.c b/bar.c
index e1e2857..33127f8 100644
--- a/bar.c
+++ b/bar.c
@@ -58,17 +58,7 @@ static int bfs_bar_getsize(struct bfs_bar *bar) {
/** Async Signal Safe puts(). */
static int ass_puts(int fd, const char *str) {
size_t len = strlen(str);
-
- while (len > 0) {
- ssize_t ret = write(fd, str, len);
- if (ret <= 0) {
- return -1;
- }
- str += ret;
- len -= ret;
- }
-
- return 0;
+ return safe_write_all(fd, str, len) == (ssize_t)len ? 0 : -1;
}
/** Number of decimal digits needed for terminal sizes. */
diff --git a/spawn.c b/spawn.c
index 66f5f5e..0a260dc 100644
--- a/spawn.c
+++ b/spawn.c
@@ -189,12 +189,9 @@ static void bfs_spawn_exec(const char *exe, const struct bfs_spawn *ctx, char **
fail:
error = errno;
- while (write(pipefd[1], &error, sizeof(error)) < 0) {
- if (errno != EINTR) {
- // Parent will still see that we exited unsuccessfully, but won't know why
- break;
- }
- }
+ // In case of write error parent will still see that we exited
+ // unsuccessfully, but won't know why.
+ (void) safe_write_all(pipefd[1], &error, sizeof(error));
close(pipefd[1]);
_Exit(127);
@@ -224,7 +221,7 @@ pid_t bfs_spawn(const char *exe, const struct bfs_spawn *ctx, char **argv, char
// Parent
close(pipefd[1]);
- ssize_t nbytes = read(pipefd[0], &error, sizeof(error));
+ ssize_t nbytes = safe_read_all(pipefd[0], &error, sizeof(error));
close(pipefd[0]);
if (nbytes == sizeof(error)) {
int wstatus;
diff --git a/util.c b/util.c
index 42e3d98..00f5b78 100644
--- a/util.c
+++ b/util.c
@@ -368,3 +368,58 @@ int bfs_minor(dev_t dev) {
return dev & 0xFF;
#endif
}
+
+ssize_t safe_read(int fd, void *buf, size_t nbytes) {
+ for (;;) {
+ ssize_t ret = read(fd, buf, nbytes);
+ if (ret < 0 && errno == EINTR) {
+ continue;
+ }
+ return ret;
+ }
+}
+
+ssize_t safe_read_all(int fd, void *buf, size_t nbytes) {
+ size_t count = 0;
+ for (;;) {
+ ssize_t ret = read(fd, (char *)buf + count, nbytes - count);
+ if (ret < 0 && errno == EINTR) {
+ continue;
+ }
+ if (ret < 0) {
+ return ret; // always return error < 0
+ }
+ count += ret;
+ if (ret == 0 || count == nbytes) { // EOF or success
+ return count;
+ }
+ }
+}
+
+ssize_t safe_write(int fd, const void *buf, size_t nbytes) {
+ for (;;) {
+ ssize_t ret = write(fd, buf, nbytes);
+ if (ret < 0 && errno == EINTR) {
+ continue;
+ }
+ return ret;
+ }
+}
+
+ssize_t safe_write_all(int fd, const void *buf, size_t nbytes)
+{
+ size_t count = 0;
+ for (;;) {
+ ssize_t ret = write(fd, (const char *)buf + count, nbytes - count);
+ if (ret < 0 && errno == EINTR) {
+ continue;
+ }
+ if (ret < 0) {
+ return ret; // always return error < 0
+ }
+ count += ret;
+ if (ret == 0 || count == nbytes) { // EOF (should never happen with write) or success
+ return count;
+ }
+ }
+}
diff --git a/util.h b/util.h
index ca90494..7293d50 100644
--- a/util.h
+++ b/util.h
@@ -225,4 +225,24 @@ int bfs_major(dev_t dev);
*/
int bfs_minor(dev_t dev);
+/**
+ * A safe version of read() that handles interrupted system calls.
+ */
+ssize_t safe_read(int fd, void *buf, size_t nbytes);
+
+/**
+ * A safe version of read() that handles interrupted system calls and partial reads.
+ */
+ssize_t safe_read_all(int fd, void *buf, size_t nbytes);
+
+/**
+ * A safe version of write() that handles interrupted system calls.
+ */
+ssize_t safe_write(int fd, const void *buf, size_t nbytes);
+
+/**
+ * A safe version of write() that handles interrupted system calls and partial writes.
+ */
+ssize_t safe_write_all(int fd, const void *buf, size_t nbytes);
+
#endif // BFS_UTIL_H