summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2023-11-22 18:03:22 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2023-12-13 14:45:22 +0100
commit451a7ab16b695a852719c851f4dc3a85c95f6de4 (patch)
tree478a7309ae569001905970d4f3c3ea81f15a937e /lib
parent4b011915eb4eaa8f7fe92b45a6bd3ad0f9ce2aa2 (diff)
downloadbarebox-451a7ab16b695a852719c851f4dc3a85c95f6de4.tar.gz
barebox-451a7ab16b695a852719c851f4dc3a85c95f6de4.tar.xz
libfile: implement read_fd counterpart to read_file
Files opened with O_TMPFILE have no name, so read_file can't be used with them. Therefore add a read_fd function, which slurps all a file's contents into a buffer. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20231122170323.15175-2-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/libfile.c50
1 files changed, 50 insertions, 0 deletions
diff --git a/lib/libfile.c b/lib/libfile.c
index e53ba08415..72a2fc79c7 100644
--- a/lib/libfile.c
+++ b/lib/libfile.c
@@ -307,6 +307,56 @@ void *read_file(const char *filename, size_t *size)
EXPORT_SYMBOL(read_file);
/**
+ * read_fd - read from a file descriptor to an allocated buffer
+ * @filename: The file descriptor to read
+ * @size: After successful return contains the size of the file
+ *
+ * This function reads a file descriptor from offset 0 until EOF to an
+ * allocated buffer.
+ *
+ * Return: On success, returns a nul-terminated buffer with the file's
+ * contents that should be deallocated with free().
+ * On error, NULL is returned and errno is set to an error code.
+ */
+void *read_fd(int fd, size_t *out_size)
+{
+ struct stat st;
+ ssize_t ret;
+ void *buf;
+
+ ret = fstat(fd, &st);
+ if (ret < 0)
+ return NULL;
+
+ if (st.st_size == FILE_SIZE_STREAM) {
+ errno = EINVAL;
+ return NULL;
+ }
+
+ /* For user convenience, we always nul-terminate the buffer in
+ * case it contains a string. As we don't want to assume the string
+ * to be either an array of char or wchar_t, we just unconditionally
+ * add 2 bytes as terminator. As the two byte terminator needs to be
+ * aligned, we just make it three bytes
+ */
+ buf = malloc(st.st_size + 3);
+ if (!buf)
+ return NULL;
+
+ ret = pread_full(fd, buf, st.st_size, 0);
+ if (ret < 0) {
+ free(buf);
+ return NULL;
+ }
+
+ memset(buf + st.st_size, '\0', 3);
+ *out_size = st.st_size;
+
+ return buf;
+}
+EXPORT_SYMBOL(read_fd);
+
+/**
* write_file - write a buffer to a file
* @filename: The filename to write
* @size: The size of the buffer