aboutsummaryrefslogtreecommitdiff
path: root/lib/util/read_retry.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util/read_retry.c')
-rw-r--r--lib/util/read_retry.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/lib/util/read_retry.c b/lib/util/read_retry.c
new file mode 100644
index 0000000..eb113c4
--- /dev/null
+++ b/lib/util/read_retry.c
@@ -0,0 +1,27 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later */
+#include <unistd.h>
+#include <errno.h>
+
+#include "util.h"
+
+ssize_t read_retry(int fd, void *buffer, size_t size)
+{
+ ssize_t ret, total = 0;
+
+ while (size > 0) {
+ ret = read(fd, buffer, size);
+ if (ret < 0) {
+ if (errno == EINTR)
+ continue;
+ return -1;
+ }
+ if (ret == 0)
+ break;
+
+ total += ret;
+ size -= ret;
+ buffer = (char *)buffer + ret;
+ }
+
+ return total;
+}