Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Matthieu Longo <matthieu.longo@arm.com>
To: "Schimpe, Christina" <christina.schimpe@intel.com>,
	"gdb-patches@sourceware.org" <gdb-patches@sourceware.org>
Cc: Luis Machado <luis.machado@amd.com>,
	Luis Machado <luis.machado.foss@gmail.com>,
	Andrew Burgess <aburgess@redhat.com>,
	Yury Khrustalev <yury.khrustalev@arm.com>,
	Pedro Alves <pedro@palves.net>, Tom Tromey <tom@tromey.com>,
	Kevin Buettner <kevinb@redhat.com>,
	Thiago Jung Bauermann <thiago.bauermann@linaro.org>
Subject: Re: [PATCH v1 05/10] gdb: introduce helper class file_reader_t
Date: Mon, 13 Jul 2026 18:12:49 +0100	[thread overview]
Message-ID: <7cac4b13-581f-4b3c-b42f-65f47848e800@arm.com> (raw)
In-Reply-To: <SN7PR11MB7638214DDDA6601186DC63C8F9FA2@SN7PR11MB7638.namprd11.prod.outlook.com>

On 13/07/2026 16:50, Schimpe, Christina wrote:
>> @@ -2802,9 +2790,6 @@ linux_gdb_signal_to_target (struct gdbarch
>> *gdbarch,  static bool  linux_vsyscall_range_raw (struct gdbarch *gdbarch,
>> struct mem_range *range)  {
>> -  char filename[100];
>> -  long pid;
>> -
>>    if (target_auxv_search (AT_SYSINFO_EHDR, &range->start) <= 0)
>>      return false;
>>
>> @@ -2842,7 +2827,7 @@ linux_vsyscall_range_raw (struct gdbarch
>> *gdbarch, struct mem_range *range)
>>    if (current_inferior ()->fake_pid_p)
>>      return false;
>>
>> -  pid = current_inferior ()->pid;
>> +  long pid = current_inferior ()->pid;
>>
>>    /* Note that reading /proc/PID/task/PID/maps (1) is much faster than
>>       reading /proc/PID/maps (2).  The later identifies thread stacks @@ -
>> 2852,15 +2837,14 @@ linux_vsyscall_range_raw (struct gdbarch *gdbarch,
>> struct mem_range *range)
>>       a few thousand threads, (1) takes a few milliseconds, while (2)
>>       takes several seconds.  Also note that "smaps", what we read for
>>       determining core dump mappings, is even slower than "maps".  */
>> -  xsnprintf (filename, sizeof filename, "/proc/%ld/task/%ld/maps", pid, pid);
>> -  gdb::unique_xmalloc_ptr<char> data
>> -    = target_fileio_read_stralloc (NULL, filename);
>> -  if (data != NULL)
>> +  file_reader_t<char> task_maps_freader
>> +    (string_printf ("/proc/%ld/task/%ld/maps", pid, pid));  if
>> + (task_maps_freader)
>>      {
>>        char *line;
>>        char *saveptr = NULL;
>>
>> -      for (line = strtok_r (data.get (), "\n", &saveptr);
>> +      for (line = strtok_r (task_maps_freader.data (), "\n", &saveptr);
>>  	   line != NULL;
>>  	   line = strtok_r (NULL, "\n", &saveptr))
>>  	{
>> @@ -2879,7 +2863,8 @@ linux_vsyscall_range_raw (struct gdbarch
>> *gdbarch, struct mem_range *range)
>>  	}
>>      }
>>    else
>> -    warning (_("unable to open /proc file '%s'"), filename);
>> +    warning (_("unable to open /proc file '%s'"),
>> +	     task_maps_freader.c_filepath ());
> 
> IIUC, before your change, if the file was empty, we did not show a warning, since
> target_fileio_read_stralloc handles the case like this:
> "Empty objects are returned as allocated but empty strings."
> 
> Based on your file_reader_t implementation, I think we get here in case we can
> open the file but the file is empty. Not sure if in that case the file can be empty
> at all, but it is a behavioural change that should be avoided in my opinion.
> There are further similar cases in this patch.

An empty file is normally fine, but in most of cases, pretty useless hence the proposed change in
behavior.

However, I can see a reason when a file is empty and a process still alive.
From man 5 proc_pid_cmdline:
  > This  read-only  file  holds the complete command line for the process, unless the
  > process is a zombie.  In the latter case, there is nothing in this file: that is,
  > a read on this file will return 0 characters.
  > ...
  > If, after an execve(2), the process modifies its argv strings, those changes will
  > show up here.
  > ...
  > Furthermore, a process may change the memory location that this file refers via
  > prctl(2) operations such as PR_SET_MM_ARG_START.

The last sentence suggests that an empty file is still valid, and can have a different cause than a
deceased process. There might be others similar cases.

I will change the behavior back to what it was for empty files.

> Would it make sense to change the file_reader_t bool operator to return true in case the
> file is empty? Maybe we could then additionally introduce a new method bool empty ().
>

Yes, it would make sense to add a new method empty() and even error ().
I will also change the behavior of target_fileio_read_stralloc in case of errors (see comment from
Kevin Buettner).

bool empty () const
{ m_data != nullptr && m_size > 0; }

bool error () const
{ m_data == nullptr && m_size == -1; }

And bool operator() could be the combination of both:

bool operator () const
{ return !(error () ||empty ()); }

>> +/* Helper class for reading a file.  */ template <typename T> class
>> +file_reader_t {
>> +  /* The filepath of the file being read.  */
>> +  std::string m_filepath;
>> +  /* Smart pointer to the data.  */
>> +  gdb::unique_xmalloc_ptr<T> m_data;
>> +  /* Size of the data.  */
>> +  size_t 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));
>> +      }
>> +  }
>> +
>> +  /* Return true if the file was read successfully.  */  operator bool
>> + () const noexcept  { return m_data != nullptr && m_size > 0; }
> 
> I think we should make this explicit.
> 

However, making the boolean operator explicit would make it very inconvenient.
I would prefer to avoid this extra verbose:

if (!static_cast<bool>(freader))
  {
    // handle the error or empty
  }

Matthieu

  reply	other threads:[~2026-07-13 17:14 UTC|newest]

Thread overview: 66+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-07-07 15:48 [PATCH v1 00/10] gdb: bugfix 31207 and various refactoring in linux-tdep Matthieu Longo
2026-07-07 15:48 ` [PATCH v1 01/10] gdb/linux-tdep: change linux_fill_prpsinfo to return bool Matthieu Longo
2026-07-09  6:26   ` Thiago Jung Bauermann
2026-07-09 12:23     ` Simon Marchi
2026-07-27 14:38       ` Matthieu Longo
2026-07-07 15:48 ` [PATCH v1 02/10] gdb: rely on the first alive thread TPID when reading Linux procfs files Matthieu Longo
2026-07-09  6:29   ` Thiago Jung Bauermann
2026-07-13  9:11     ` Matthieu Longo
2026-07-09 14:24   ` Simon Marchi
2026-07-14 15:47     ` Matthieu Longo
2026-07-07 15:48 ` [PATCH v1 03/10] target_fileio_read_stralloc: add an optional length parameter Matthieu Longo
2026-07-09  6:30   ` Thiago Jung Bauermann
2026-07-13 15:26     ` Matthieu Longo
2026-07-24  2:50       ` Thiago Jung Bauermann
2026-07-27 14:52         ` Matthieu Longo
2026-07-29  1:57           ` Thiago Jung Bauermann
2026-07-21 21:28   ` Luis
2026-07-27 14:48     ` Matthieu Longo
2026-07-27 14:53     ` Matthieu Longo
2026-07-07 15:48 ` [PATCH v1 04/10] gdb support: add gdb::replace algorithm for iterators and ranges Matthieu Longo
2026-07-09  6:30   ` Thiago Jung Bauermann
2026-07-10 21:21   ` Kevin Buettner
2026-07-13 15:51     ` Matthieu Longo
2026-07-21 21:33   ` Luis
2026-07-27 14:58     ` Matthieu Longo
2026-07-07 15:48 ` [PATCH v1 05/10] gdb: introduce helper class file_reader_t Matthieu Longo
2026-07-09  6:33   ` Thiago Jung Bauermann
2026-07-13 17:17     ` Matthieu Longo
2026-07-10 21:43   ` Kevin Buettner
2026-07-13 16:31     ` Matthieu Longo
2026-07-13 15:50   ` Schimpe, Christina
2026-07-13 17:12     ` Matthieu Longo [this message]
2026-07-22 16:36       ` Joos, Christina
2026-07-27 15:13         ` Matthieu Longo
2026-07-07 15:48 ` [PATCH v1 06/10] gdb/linux-tdep: migrate linux_info_proc to file_reader_t Matthieu Longo
2026-07-09  6:35   ` Thiago Jung Bauermann
2026-07-13 17:20     ` Matthieu Longo
2026-07-21 21:43   ` Luis
2026-07-27 17:11     ` Matthieu Longo
2026-07-07 15:48 ` [PATCH v1 07/10] gdb/linux-tdep: migrate linux_find_memory_regions_full " Matthieu Longo
2026-07-09  6:36   ` Thiago Jung Bauermann
2026-07-14  8:40     ` Matthieu Longo
2026-07-24  2:51       ` Thiago Jung Bauermann
2026-07-21 21:47   ` Luis
2026-07-27 17:14     ` Matthieu Longo
2026-07-07 15:48 ` [PATCH v1 08/10] gdb/linux-tdep: migrate parse_smaps_data " Matthieu Longo
2026-07-09  6:41   ` Thiago Jung Bauermann
2026-07-14  8:49     ` Matthieu Longo
2026-07-24  2:52       ` Thiago Jung Bauermann
2026-07-21 21:49   ` Luis
2026-07-27 17:17     ` Matthieu Longo
2026-07-07 15:48 ` [PATCH v1 09/10] gdb/linux-tdep: parse ProtectionKey in /proc/PID/smaps Matthieu Longo
2026-07-09  6:42   ` Thiago Jung Bauermann
2026-07-14  9:12     ` Matthieu Longo
2026-07-14  9:29       ` Matthieu Longo
2026-07-24  2:58         ` Thiago Jung Bauermann
2026-07-24 10:27           ` Yury Khrustalev
2026-07-25  6:40             ` Thiago Jung Bauermann
2026-07-27  8:22               ` Yury Khrustalev
2026-07-29  1:10                 ` Thiago Jung Bauermann
2026-07-21 21:57   ` Luis
2026-07-27 17:54     ` Matthieu Longo
2026-07-07 15:49 ` [PATCH v1 10/10] gdb/linux: add helpers to read AT_HWCAP3 and AT_HWCAP4 Matthieu Longo
2026-07-09  6:44   ` Thiago Jung Bauermann
2026-07-21 21:58     ` Luis
2026-07-27 17:32       ` 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=7cac4b13-581f-4b3c-b42f-65f47848e800@arm.com \
    --to=matthieu.longo@arm.com \
    --cc=aburgess@redhat.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=pedro@palves.net \
    --cc=thiago.bauermann@linaro.org \
    --cc=tom@tromey.com \
    --cc=yury.khrustalev@arm.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