From: Ahmad Fatoum <a.fatoum@pengutronix.de>
To: barebox@lists.infradead.org
Cc: Yann Sionneau <ysionneau@kalrayinc.com>,
Ahmad Fatoum <a.fatoum@pengutronix.de>
Subject: [PATCH] fixup! libfile: implement read_fd counterpart to read_file
Date: Mon, 20 Nov 2023 11:49:43 +0100 [thread overview]
Message-ID: <20231120104943.795034-1-a.fatoum@pengutronix.de> (raw)
In-Reply-To: <20231120083750.3967831-1-a.fatoum@pengutronix.de>
- Justify why the buffer is three bytes longer than the file's content
(Yann)
- Check for malloc failure (Yann)
- Don't close file descriptor on failure as it's opened outside
the function
- set errno to indicate why the function failed
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
lib/libfile.c | 29 ++++++++++++++++++++---------
1 file changed, 20 insertions(+), 9 deletions(-)
diff --git a/lib/libfile.c b/lib/libfile.c
index c257baaa2733..a7762ab833f6 100644
--- a/lib/libfile.c
+++ b/lib/libfile.c
@@ -314,7 +314,9 @@ EXPORT_SYMBOL(read_file);
* This function reads a file descriptor from offset 0 until EOF to an
* allocated buffer.
*
- * Return: The buffer containing the file or NULL on failure
+ * 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)
{
@@ -329,24 +331,33 @@ void *read_fd(int fd, size_t *out_size)
off = lseek(fd, SEEK_SET, 0);
}
if (off < 0) {
- ret = off;
- goto close_fd;
+ errno = -off;
+ 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(size + 3);
+ if (!buf) {
+ errno = ENOMEM;
+ return NULL;
+ }
+
ret = read_full(fd, buf, size);
if (ret < 0) {
free(buf);
- goto close_fd;
+ errno = -ret;
+ return NULL;
}
- memset(&buf[size], '\0', 3);
+ memset(buf + size, '\0', 3);
*out_size = size;
-close_fd:
- close(fd);
-
- return ret < 0 ? NULL : buf;
+ return buf;
}
EXPORT_SYMBOL(read_fd);
--
2.39.2
next prev parent reply other threads:[~2023-11-20 10:51 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-20 8:37 [PATCH RFC 1/3] fs: add open O_TMPFILE support Ahmad Fatoum
2023-11-20 8:37 ` [PATCH RFC 2/3] libfile: implement read_fd counterpart to read_file Ahmad Fatoum
2023-11-20 9:49 ` Yann Sionneau
2023-11-20 10:50 ` Ahmad Fatoum
2023-11-21 7:36 ` Sascha Hauer
2023-11-22 16:09 ` Ahmad Fatoum
2023-11-20 8:37 ` [PATCH RFC 3/3] uncompress: skip dentry cache in uncompress_buf_to_buf Ahmad Fatoum
2023-11-20 10:49 ` Ahmad Fatoum [this message]
2023-11-20 13:32 ` [PATCH RFC 1/3] fs: add open O_TMPFILE support Ahmad Fatoum
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20231120104943.795034-1-a.fatoum@pengutronix.de \
--to=a.fatoum@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=ysionneau@kalrayinc.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox