summaryrefslogtreecommitdiff
path: root/lib/util/read_data_at.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util/read_data_at.c')
-rw-r--r--lib/util/read_data_at.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/util/read_data_at.c b/lib/util/read_data_at.c
new file mode 100644
index 0000000..98432d9
--- /dev/null
+++ b/lib/util/read_data_at.c
@@ -0,0 +1,34 @@
+/* SPDX-License-Identifier: GPL-3.0-or-later */
+#include "config.h"
+
+#include <unistd.h>
+#include <errno.h>
+#include <stdio.h>
+
+#include "util.h"
+
+int read_data_at(const char *errstr, off_t location, int fd,
+ void *buffer, size_t size)
+{
+ ssize_t ret;
+
+ while (size > 0) {
+ ret = pread(fd, buffer, size, location);
+ if (ret < 0) {
+ if (errno == EINTR)
+ continue;
+ perror(errstr);
+ return -1;
+ }
+ if (ret == 0) {
+ fprintf(stderr, "%s: short read\n", errstr);
+ return -1;
+ }
+
+ size -= ret;
+ buffer = (char *)buffer + ret;
+ location += ret;
+ }
+
+ return 0;
+}