From: Matthieu Longo <matthieu.longo@arm.com>
To: <gdb-patches@sourceware.org>
Cc: Luis Machado <luis.machado@amd.com>,
Luis Machado <luis.machado.foss@gmail.com>,
Thiago Jung Bauermann <thiago.bauermann@linaro.org>,
Simon Marchi <simark@simark.ca>,
"Kevin Buettner" <kevinb@redhat.com>,
Christina Schimpe <christina.schimpe@intel.com>,
Christina Joos <christina.joos@intel.com>,
Matthieu Longo <matthieu.longo@arm.com>
Subject: [PATCH v1 1/6] target_fileio_read_stralloc: add an optional length parameter
Date: Tue, 28 Jul 2026 16:16:55 +0100 [thread overview]
Message-ID: <20260728151700.253720-2-matthieu.longo@arm.com> (raw)
In-Reply-To: <20260728151700.253720-1-matthieu.longo@arm.com>
Extend target_fileio_read_stralloc with an optional output parameter
that returns the number of bytes read, excluding the terminating NUL
byte.
Most callers only need the returned NUL-terminated buffer and can
ignore the new parameter, but callers that need the number of bytes
read can now obtain it without recomputing it.
While updating the function, make a couple of minor cleanups by using
'\0' instead of 0 for character literals and clarifying the function
documentation.
---
gdb/target.c | 11 ++++++++---
gdb/target.h | 20 ++++++++++++--------
2 files changed, 20 insertions(+), 11 deletions(-)
diff --git a/gdb/target.c b/gdb/target.c
index 5d937f3ae85..ebf0f30092c 100644
--- a/gdb/target.c
+++ b/gdb/target.c
@@ -3547,7 +3547,8 @@ target_fileio_read_alloc (struct inferior *inf, const char *filename,
/* See target.h. */
gdb::unique_xmalloc_ptr<char>
-target_fileio_read_stralloc (struct inferior *inf, const char *filename)
+target_fileio_read_stralloc (struct inferior *inf, const char *filename,
+ LONGEST *len)
{
gdb_byte *buffer;
char *bufstr;
@@ -3556,17 +3557,21 @@ target_fileio_read_stralloc (struct inferior *inf, const char *filename)
transferred = target_fileio_read_alloc_1 (inf, filename, &buffer, 1);
bufstr = (char *) buffer;
+ /* Note: on failure, target_fileio_read_alloc_1 returns -1. */
+ if (len != nullptr)
+ *len = transferred;
+
if (transferred < 0)
return gdb::unique_xmalloc_ptr<char> (nullptr);
if (transferred == 0)
return make_unique_xstrdup ("");
- bufstr[transferred] = 0;
+ bufstr[transferred] = '\0';
/* Check for embedded NUL bytes; but allow trailing NULs. */
for (i = strlen (bufstr); i < transferred; i++)
- if (bufstr[i] != 0)
+ if (bufstr[i] != '\0')
{
warning (_("target file %s "
"contained unexpected null characters"),
diff --git a/gdb/target.h b/gdb/target.h
index 6d1c21f29f6..819279c08fc 100644
--- a/gdb/target.h
+++ b/gdb/target.h
@@ -2327,15 +2327,19 @@ extern LONGEST target_fileio_read_alloc (struct inferior *inf,
const char *filename,
gdb_byte **buf_p);
-/* Read target file FILENAME, in the filesystem as seen by INF. If
- INF is NULL, use the filesystem seen by the debugger (GDB or, for
- remote targets, the remote stub). The result is NUL-terminated and
- returned as a string, allocated using xmalloc. If an error occurs
- or the transfer is unsupported, NULL is returned. Empty objects
- are returned as allocated but empty strings. A warning is issued
- if the result contains any embedded NUL bytes. */
+/* Read the content of the target file FILENAME from the filesystem as
+ seen by INF. If INF is NULL, use the filesystem seen by the debugger
+ (GDB or, for remote targets, the remote stub).
+
+ If LEN is not NULL, store the number of bytes read, excluding the
+ terminating NUL byte.
+
+ The returned buffer is NUL-terminated and allocated using xmalloc.
+ On error, or if the transfer is unsupported, return NULL and set
+ LEN to -1. Empty files are returned as allocated but empty strings.
+ A warning is issued if the file content contains embedded NUL bytes. */
extern gdb::unique_xmalloc_ptr<char> target_fileio_read_stralloc
- (struct inferior *inf, const char *filename);
+ (struct inferior *inf, const char *filename, LONGEST *len = nullptr);
/* Invalidate the target associated with open handles that were open
on target TARG, since we're about to close (and maybe destroy) the
--
2.55.0
next prev parent reply other threads:[~2026-07-28 15:19 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-28 15:16 [PATCH v1 0/6] gdb: introduce file_reader_t to read procfs files Matthieu Longo
2026-07-28 15:16 ` Matthieu Longo [this message]
2026-07-28 15:16 ` [PATCH v1 2/6] gdb support: add gdb::ranges::replace algorithm Matthieu Longo
2026-07-28 15:16 ` [PATCH v1 3/6] gdb: introduce helper class file_reader_t Matthieu Longo
2026-07-28 15:16 ` [PATCH v1 4/6] gdb/linux-tdep: migrate linux_info_proc to file_reader_t Matthieu Longo
2026-07-28 15:16 ` [PATCH v1 5/6] gdb/linux-tdep: migrate linux_find_memory_regions_full " Matthieu Longo
2026-07-28 15:17 ` [PATCH v1 6/6] gdb/linux-tdep: remove legacy parse_smaps_data overload Matthieu Longo
2026-07-28 15:43 ` [PATCH v1 0/6] gdb: introduce file_reader_t to read procfs files Joos, Christina
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=20260728151700.253720-2-matthieu.longo@arm.com \
--to=matthieu.longo@arm.com \
--cc=christina.joos@intel.com \
--cc=christina.schimpe@intel.com \
--cc=gdb-patches@sourceware.org \
--cc=kevinb@redhat.com \
--cc=luis.machado.foss@gmail.com \
--cc=luis.machado@amd.com \
--cc=simark@simark.ca \
--cc=thiago.bauermann@linaro.org \
/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