From: Cyril Hrubis <chrubis@suse.cz>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH 1/2] lib: safe_file_ops: Add SAFE_FILE_READ_STR()
Date: Thu, 9 Apr 2026 12:30:40 +0200 [thread overview]
Message-ID: <20260409103041.8253-2-chrubis@suse.cz> (raw)
In-Reply-To: <20260409103041.8253-1-chrubis@suse.cz>
Unlike the scanf("%s") this function can properly handle empty files and
in case of an empty file produces an empty string.
Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
---
include/tst_safe_file_ops.h | 21 +++++++++++++++++++++
lib/safe_file_ops.c | 24 ++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/include/tst_safe_file_ops.h b/include/tst_safe_file_ops.h
index 0d8819594..d9110ba9c 100644
--- a/include/tst_safe_file_ops.h
+++ b/include/tst_safe_file_ops.h
@@ -14,6 +14,27 @@
safe_file_scanf(__FILE__, __LINE__, NULL, \
(path), (fmt), ## __VA_ARGS__)
+/**
+ * SAFE_FILE_READ_STR() - Reads a string from a file.
+ *
+ * Unlike scanf("%s") this function works fine with empty files or files that
+ * consist only of white spaces. In such case an empty string is stored into
+ * the supplied buffer.
+ *
+ * It's recomended to use this for various sysfs or procfs files that may be
+ * empty.
+ *
+ * @path: A path to a file.
+ * @buf: A buffer to store the string into.
+ * @buf_size: A buffer size.
+ */
+#define SAFE_FILE_READ_STR(path, buf, buf_size) \
+ safe_file_read_str(__FILE__, __LINE__, \
+ (path), (buf), (buf_size))
+
+void safe_file_read_str(const char *file, const int lineno,
+ const char *path, char *buf, size_t buf_size);
+
#define FILE_LINES_SCANF(path, fmt, ...) \
file_lines_scanf(__FILE__, __LINE__, NULL, 0,\
(path), (fmt), ## __VA_ARGS__)
diff --git a/lib/safe_file_ops.c b/lib/safe_file_ops.c
index 8314c4b1b..2d163c0af 100644
--- a/lib/safe_file_ops.c
+++ b/lib/safe_file_ops.c
@@ -160,6 +160,30 @@ void safe_file_scanf(const char *file, const int lineno,
}
}
+void safe_file_read_str(const char *file, const int lineno,
+ const char *path, char *buf, size_t buf_size)
+{
+ FILE *f;
+
+ f = fopen(path, "r");
+ if (!f) {
+ tst_brkm_(file, lineno, TBROK | TERRNO, NULL,
+ "Failed to open FILE '%s' for reading", path);
+ }
+
+ if (!fgets(buf, buf_size, f))
+ buf[0] = 0;
+
+ size_t len = strlen(buf);
+
+ if (len && buf[len-1] == '\n')
+ buf[len-1] = 0;
+
+ if (fclose(f)) {
+ tst_brkm_(file, lineno, TBROK | TERRNO, NULL,
+ "Failed to close FILE '%s'", path);
+ }
+}
/*
* Try to parse each line from file specified by 'path' according
--
2.52.0
--
Mailing list info: https://lists.linux.it/listinfo/ltp
next prev parent reply other threads:[~2026-04-09 10:31 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-09 10:30 [LTP] [PATCH 0/2] Fix proc parsing in newuname01 Cyril Hrubis
2026-04-09 10:30 ` Cyril Hrubis [this message]
2026-04-09 13:35 ` [LTP] [PATCH 1/2] lib: safe_file_ops: Add SAFE_FILE_READ_STR() Cyril Hrubis
2026-04-09 10:30 ` [LTP] [PATCH 2/2] syscalls: newuname01: Fix fail on empty domainname Cyril Hrubis
2026-05-06 13:52 ` [LTP] [PATCH 0/2] Fix proc parsing in newuname01 Andrea Cervesato via ltp
2026-05-07 7:37 ` Cyril Hrubis
2026-05-07 7:44 ` Andrea Cervesato via ltp
2026-05-07 9:06 ` Cyril Hrubis
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=20260409103041.8253-2-chrubis@suse.cz \
--to=chrubis@suse.cz \
--cc=ltp@lists.linux.it \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.