From: Andrew Burgess <aburgess@redhat.com>
To: Matthieu Longo <matthieu.longo@arm.com>, gdb-patches@sourceware.org
Cc: Simon Marchi <simark@simark.ca>,
Thiago Jung Bauermann <thiago.bauermann@linaro.org>,
Luis Machado <luis.machado@amd.com>,
Luis Machado <luis.machado.foss@gmail.com>,
Christina Joos <christina.joos@intel.com>,
Kevin Buettner <kevinb@redhat.com>,
Matthieu Longo <matthieu.longo@arm.com>
Subject: Re: [PATCH v2 3/6] gdb: introduce helper class file_reader_t
Date: Thu, 10 Sep 2026 16:35:08 +0100 [thread overview]
Message-ID: <87cxuldsr7.fsf@redhat.com> (raw)
In-Reply-To: <20260825100912.514232-4-matthieu.longo@arm.com>
Matthieu Longo <matthieu.longo@arm.com> writes:
> Wrap all the boilerplate code required to read a file in a new helper
> class: file_reader_t. The class owns the file contents together with
> the file path, and provides convenient accessors for the data, size and
> typed views. It supports both null-terminated text files and binary files.
>
> This helper eliminates repeated calls to target_fileio_read_stralloc
> and target_fileio_read_alloc, remove explicit memory management with
s/remove/removes/
> gdb::unique_xmalloc_ptr, and simplifies the casting logic when working
> with binary data.
>
> The patch converts some of the existing Linux, AMD64, and SPARC code that
> reads files from /proc to use file_reader_t. As a side effect,
> amd64_linux_lam_untag_mask and linux_process_address_in_memtag_page
> may now return earlier in case the file is empty.
>
> Reviewed-By: Thiago Jung Bauermann <thiago.bauermann@linaro.org>
> Reviewed-By: Christina Joos <christina.joos@intel.com>
> ---
> gdb/amd64-linux-tdep.c | 12 ++--
> gdb/linux-tdep.c | 122 ++++++++++++++++++-----------------------
> gdb/sparc64-tdep.c | 15 +++--
> gdb/target.h | 78 ++++++++++++++++++++++++++
> 4 files changed, 143 insertions(+), 84 deletions(-)
>
> diff --git a/gdb/amd64-linux-tdep.c b/gdb/amd64-linux-tdep.c
> index 9b23db72bbe..52f16c953d1 100644
> --- a/gdb/amd64-linux-tdep.c
> +++ b/gdb/amd64-linux-tdep.c
> @@ -1848,14 +1848,11 @@ amd64_linux_lam_untag_mask ()
> if (inf->fake_pid_p)
> return DEFAULT_TAG_MASK;
>
> - const std::string filename = string_printf ("/proc/%d/status", inf->pid);
> - gdb::unique_xmalloc_ptr<char> status_file
> - = target_fileio_read_stralloc (nullptr, filename.c_str ());
> -
> - if (status_file == nullptr)
> + file_reader_t<char> proc_status (string_printf ("/proc/%d/status", inf->pid));
> + if (!proc_status)
> return DEFAULT_TAG_MASK;
>
> - std::string_view status_file_view (status_file.get ());
> + std::string_view status_file_view (proc_status.data ());
> constexpr std::string_view untag_mask_str = "untag_mask:\t";
> const size_t found = status_file_view.find (untag_mask_str);
> if (found != std::string::npos)
> @@ -1867,7 +1864,8 @@ amd64_linux_lam_untag_mask ()
> unsigned long long result = std::strtoul (start, &endptr, 0);
> if (errno != 0 || endptr == start)
> error (_("Failed to parse untag_mask from file %ps."),
> - styled_string (file_name_style.style (), filename.c_str ()));
> + styled_string (file_name_style.style (),
> + proc_status.c_filepath ()));
>
> return result;
> }
> diff --git a/gdb/linux-tdep.c b/gdb/linux-tdep.c
> index 588984a1ca4..84614bc91a0 100644
> --- a/gdb/linux-tdep.c
> +++ b/gdb/linux-tdep.c
> @@ -1551,7 +1551,7 @@ parse_smaps_key_value (const char *keyword, const char *line,
> DATA is the contents of the smaps file. The parsed contents are stored
> into the SMAPS vector. */
>
> -static std::vector<struct smaps_data>
> +static std::vector<smaps_data>
Throughout this patch there's a bunch of places where you've done
nothing but delete the 'struct' prefix. It's OK to do this in code that
you're touching anyway as part of this patch, but any, like this, that
are in code that you'd not otherwise touch, are unrelated changes and
should be moved into a separate patch.
I think you should either drop these, or have a first patch which does a
"remove some struct prefixes" cleanup, your choice.
> @@ -2346,27 +2343,24 @@ linux_fill_prpsinfo (struct elf_internal_linux_prpsinfo *p)
> p->pr_pid = ptid.pid ();
>
> /* Copying the program name. Only the basename matters. */
> - basename = lbasename (fname.get ());
> + basename = lbasename (cmdline.data ());
> strncpy (p->pr_fname, basename, sizeof (p->pr_fname) - 1);
> p->pr_fname[sizeof (p->pr_fname) - 1] = '\0';
>
> const std::string &infargs = current_inferior ()->args ();
>
> /* The arguments of the program. */
> - std::string psargs = fname.get ();
> + std::string psargs = cmdline.data ();
> if (!infargs.empty ())
> psargs += ' ' + infargs;
>
> strncpy (p->pr_psargs, psargs.c_str (), sizeof (p->pr_psargs) - 1);
> p->pr_psargs[sizeof (p->pr_psargs) - 1] = '\0';
>
> - xsnprintf (filename, sizeof (filename), "/proc/%ld/stat", ptid.lwp ());
> - /* The contents of `/proc/PID/stat'. */
> - gdb::unique_xmalloc_ptr<char> proc_stat_contents
> - = target_fileio_read_stralloc (NULL, filename);
> - char *proc_stat = proc_stat_contents.get ();
> -
> - if (proc_stat == NULL || *proc_stat == '\0')
> + file_reader_t<char> stat_freader
> + (string_printf ("/proc/%ld/stat", ptid.lwp ()));
> + const char *proc_stat = stat_freader.data ();
> + if (!stat_freader || *proc_stat == '\0')
We access the data here before checking if the read was successful.
This works fine, but doesn't seem ideal. Later on I suggest that maybe
file_reader_t::data should assert that we're no in the error state, and
this is what I was looking at when I started thinking about that.
If you really think we should support reading data when in an error
state, then the data method should document what the return value is
when the file_reader_t is in the error state.
> diff --git a/gdb/target.h b/gdb/target.h
> index 819279c08fc..017918b6582 100644
> --- a/gdb/target.h
> +++ b/gdb/target.h
> @@ -2341,6 +2341,84 @@ extern LONGEST target_fileio_read_alloc (struct inferior *inf,
> extern gdb::unique_xmalloc_ptr<char> target_fileio_read_stralloc
> (struct inferior *inf, const char *filename, LONGEST *len = nullptr);
>
> +/* Helper class for reading the content of a file on the target. */
> +template <typename T>
> +class file_reader_t
I'm pretty sure that types ending with _t are reserved by ... some
spec. We should avoid this and ideally, pick a name that better
describes what the class does, e.g. target_file_reader.
> +{
> + /* The filepath of the file being read. */
> + std::string m_filepath;
The ship has mostly sailed already, but "path" should be used for lists
of locations, like the $PATH variable. It would be better to just use
filename, m_filename, etc. I am fully aware that 'path' is used
throughout GDB in place of filename, but we might as well avoid adding
another here.
This should be fixed throughout this class.
> + /* Smart pointer to the data. */
> + gdb::unique_xmalloc_ptr<T> m_data;
> + /* Number of bytes read. */
> + LONGEST m_size;
GDB style usually puts a space between member variables, e.g.:
/* The filepath of the file being read. */
std::string m_filepath;
/* Smart pointer to the data. */
gdb::unique_xmalloc_ptr<T> m_data;
/* Number of bytes read. */
LONGEST m_size;
> +
> +public:
> + file_reader_t (const std::string &filepath)
> + : m_filepath (filepath)
> + , m_size (0)
> + {
> + if constexpr (std::is_same_v<T, char>)
> + m_data = target_fileio_read_stralloc (nullptr, m_filepath.c_str (),
> + &m_size);
> + else
> + {
> + gdb_byte *buf = nullptr;
> + m_size = target_fileio_read_alloc (nullptr, m_filepath.c_str (), &buf);
> + m_data = gdb::unique_xmalloc_ptr<T> (reinterpret_cast<T *>(buf));
> + }
> + }
There's a bug hiding in here when T is not 'char'. If the file being
read is empty then target_fileio_read_alloc returns 0 but leaves *BUF
unchanged, i.e. as nullptr.
Given that, despite successfully reading the empty file, empty() will
return false and error() will return true.
Also, given this is being written as a general helper class, it might be
a good idea to define how the inferior is passed in, rather than leaving
that for future users to do.
> +
> + file_reader_t (file_reader_t &&) = default;
> + file_reader_t &operator= (file_reader_t &&) = default;
> +
> + DISABLE_COPY_AND_ASSIGN (file_reader_t);
> +
> + /* Return true if the file was read successfully but contained no data. */
> + bool empty () const noexcept
> + { return m_data != nullptr && m_size == 0; }
> +
> + /* Return true if the file could not be read. */
> + bool error () const noexcept
> + { return m_data == nullptr || m_size < 0; }
> +
> + /* Return true if the file was read successfully and is non-empty. */
> + explicit operator bool () const noexcept
> + { return !(error () || empty ()); }
I'm really not a fan of this API. Consider this code from earlier in
this patch:
file_reader_t<char> proc_status (string_printf ("/proc/%d/status", inf->pid));
if (!proc_status)
return DEFAULT_TAG_MASK;
I don't think it's obvious that !proc_status means error or empty. I
think a much less error prone API would be to just add a new member
function:
bool empty_or_error () const noexcept
{ return this->empty () || this->error (); }
And then use that. It's more typing for sure, but it's also crystal
clear what's going on.
> +
> + /* Return a pointer to the data. */
> + T *data () const noexcept
> + { return m_data.get (); }
Might be a good idea to assert that we're not in the error state.
> +
> + /* Return the number of bytes read. */
> + LONGEST size () const noexcept
> + {
> + /* For char buffers, size() corresponds to the size of the read data. Some
> + null-terminator characters are possibly scattered throughout the data.
> + Consequently, strlen() might not reflect the actual size. */
> + return m_size;
> + }
Again, maybe assert that we're not in the error state. I think there's
only one user of this right now, and it already checks for errors before
calling size.
> +
> + /* Return a span of the data. */
> + gdb::array_view<T> view () const noexcept
> + { return gdb::array_view<T> (m_data.get (), size ()); }
> +
> + /* Return a span of the data, reinterpreted as U objects. */
> + template <typename U>
> + gdb::array_view<U> cast_view () const noexcept
> + {
> + return gdb::array_view<U> (reinterpret_cast<U *> (m_data.get ()),
> + size () * sizeof (T) / sizeof (U));
> + }
It would be a good idea to say in the comment what happens if the file
size is not a multiple of 'sizeof (U)'. Or do we even want to support
this case?
Thanks,
Andrew
next prev parent reply other threads:[~2026-09-10 15:35 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-25 10:09 [PATCH v2 0/6] gdb: introduce file_reader_t to read procfs files Matthieu Longo
2026-08-25 10:09 ` [PATCH v2 1/6] target_fileio_read_stralloc: add an optional length parameter Matthieu Longo
2026-09-10 10:55 ` Andrew Burgess
2026-08-25 10:09 ` [PATCH v2 2/6] gdb support: add gdb::ranges::replace algorithm Matthieu Longo
2026-09-10 11:07 ` Andrew Burgess
2026-09-10 11:08 ` Andrew Burgess
2026-08-25 10:09 ` [PATCH v2 3/6] gdb: introduce helper class file_reader_t Matthieu Longo
2026-09-10 15:35 ` Andrew Burgess [this message]
2026-08-25 10:09 ` [PATCH v2 4/6] gdb/linux-tdep: migrate linux_info_proc to file_reader_t Matthieu Longo
2026-09-10 16:31 ` Andrew Burgess
2026-08-25 10:09 ` [PATCH v2 5/6] gdb/linux-tdep: migrate linux_find_memory_regions_full " Matthieu Longo
2026-09-11 8:34 ` Andrew Burgess
2026-08-25 10:09 ` [PATCH v2 6/6] gdb/linux-tdep: remove legacy parse_smaps_data overload Matthieu Longo
2026-09-11 8:41 ` Andrew Burgess
2026-09-16 10:55 ` Matthieu Longo
2026-09-03 22:58 ` [PATCH v2 0/6] gdb: introduce file_reader_t to read procfs files Matthieu Longo
2026-09-08 10:27 ` Matthieu Longo
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=87cxuldsr7.fsf@redhat.com \
--to=aburgess@redhat.com \
--cc=christina.joos@intel.com \
--cc=gdb-patches@sourceware.org \
--cc=kevinb@redhat.com \
--cc=luis.machado.foss@gmail.com \
--cc=luis.machado@amd.com \
--cc=matthieu.longo@arm.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