From: Thiago Jung Bauermann via Gdb-patches <gdb-patches@sourceware.org>
To: Pedro Alves <pedro@palves.net>
Cc: Simon Marchi <simon.marchi@efficios.com>, gdb-patches@sourceware.org
Subject: Re: [PATCH v3 2/8] gdbserver: Add PID parameter to linux_get_auxv and linux_get_hwcap
Date: Tue, 07 Feb 2023 21:47:18 +0000 [thread overview]
Message-ID: <87r0v19mhl.fsf@linaro.org> (raw)
In-Reply-To: <b7db7ccb-53e9-ed45-ef65-b898de62c748@palves.net>
Pedro Alves <pedro@palves.net> writes:
> On 2023-02-06 8:16 p.m., Simon Marchi wrote:
>> On 2/6/23 14:54, Pedro Alves wrote:
>>> AFAICT by playing with debugging the gdb.threads/leader-exit.exp program,
>>> you can't read /proc/PID/auxv if the leader thread has exited (is zombie).
>>>
>>> Maybe that ends up not mattering in practice, not sure, but it is a
>>> behavior change.
>>
>> Even if we can't read /proc/PID/auxv if the leader thread has exited,
>> auxv is still a process-specific resource, not a thread-specific one,
>> right?
>
> Right.
>
>> So, I suppose that the target interface could still accept a
>> pid, but linux_process_target could pick an arbitrary non-exited thread
>> from that pid to read auxv from?
>
> Right, I think we can do that.
>
>> Although I don't know what would
>> happen if that chose thread has just exited and we haven't consumed the
>> event yet.
>
> Not sure either. And I don't know what happens if the thread hasn't
> exited when when we open /proc/TID/auxv and then the thread exits
> before we read from the file. These cases should be confirmed. We may
> need to keep looking for a thread until we manage to open & read the
> file or run out of threads.
Ok, I will look into that. A simpler approach though would be to fetch
auxv at process starts and cache it for the duration of the debugging
session (since auxv doesn't change at runtime, AFAIK). Would that be a
good solution?
> BTW, I just noticed this "current_thread == NULL" check here:
>
> /* Handle qXfer:auxv:read. */
>
> static int
> handle_qxfer_auxv (const char *annex,
> gdb_byte *readbuf, const gdb_byte *writebuf,
> ULONGEST offset, LONGEST len)
> {
> if (!the_target->supports_read_auxv () || writebuf != NULL)
> return -2;
>
> if (annex[0] != '\0' || current_thread == NULL)
> return -1;
>
>
> Since we're removing the thread dependency, I think that check should
> be replaced by current_process() == NULL instead.
Ok, I'll submit a patch with this change.
--
Thiago
next prev parent reply other threads:[~2023-02-07 21:47 UTC|newest]
Thread overview: 99+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-30 4:45 [PATCH v3 0/8] gdbserver improvements for AArch64 SVE support Thiago Jung Bauermann via Gdb-patches
2023-01-30 4:45 ` [PATCH v3 1/8] gdbserver: Add assert in find_register_by_number Thiago Jung Bauermann via Gdb-patches
2023-01-31 17:05 ` Simon Marchi via Gdb-patches
2023-01-31 19:49 ` Thiago Jung Bauermann via Gdb-patches
2023-02-01 15:43 ` Simon Marchi via Gdb-patches
2023-01-30 4:45 ` [PATCH v3 2/8] gdbserver: Add PID parameter to linux_get_auxv and linux_get_hwcap Thiago Jung Bauermann via Gdb-patches
2023-02-01 9:07 ` Luis Machado via Gdb-patches
2023-02-01 10:54 ` Andrew Burgess via Gdb-patches
2023-02-01 16:01 ` Simon Marchi via Gdb-patches
2023-02-01 19:33 ` Thiago Jung Bauermann via Gdb-patches
2023-02-01 19:53 ` Simon Marchi via Gdb-patches
2023-02-01 21:55 ` Thiago Jung Bauermann via Gdb-patches
2023-02-06 19:54 ` Pedro Alves
2023-02-06 20:16 ` Simon Marchi via Gdb-patches
2023-02-07 15:19 ` Pedro Alves
2023-02-07 21:47 ` Thiago Jung Bauermann via Gdb-patches [this message]
2023-02-09 1:31 ` Simon Marchi via Gdb-patches
2023-02-10 3:54 ` Thiago Jung Bauermann via Gdb-patches
2023-02-07 22:28 ` Thiago Jung Bauermann via Gdb-patches
2023-01-30 4:45 ` [PATCH v3 3/8] gdbserver/linux-aarch64: Factor out function to get aarch64_features Thiago Jung Bauermann via Gdb-patches
2023-02-01 8:59 ` Luis Machado via Gdb-patches
2023-02-01 16:04 ` Simon Marchi via Gdb-patches
2023-02-01 22:13 ` Thiago Jung Bauermann via Gdb-patches
2023-01-30 4:45 ` [PATCH v3 4/8] gdbserver/linux-aarch64: When thread stops, update its target description Thiago Jung Bauermann via Gdb-patches
2023-02-01 9:05 ` Luis Machado via Gdb-patches
2023-02-01 11:06 ` Andrew Burgess via Gdb-patches
2023-02-01 16:21 ` Simon Marchi via Gdb-patches
2023-02-01 16:32 ` Luis Machado via Gdb-patches
2023-02-02 2:54 ` Thiago Jung Bauermann via Gdb-patches
2023-02-02 3:47 ` Simon Marchi via Gdb-patches
2023-02-03 3:47 ` Thiago Jung Bauermann via Gdb-patches
2023-02-03 11:13 ` Luis Machado via Gdb-patches
2023-02-04 15:26 ` Thiago Jung Bauermann via Gdb-patches
2023-02-03 11:11 ` Luis Machado via Gdb-patches
2023-02-04 15:21 ` Thiago Jung Bauermann via Gdb-patches
2023-02-06 9:07 ` Luis Machado via Gdb-patches
2023-02-06 12:15 ` Thiago Jung Bauermann via Gdb-patches
2023-02-06 20:29 ` Pedro Alves
2023-02-07 8:11 ` Luis Machado via Gdb-patches
2023-02-07 14:39 ` Thiago Jung Bauermann via Gdb-patches
2023-02-03 10:57 ` Luis Machado via Gdb-patches
2023-02-04 6:18 ` Thiago Jung Bauermann via Gdb-patches
2023-02-06 20:26 ` Pedro Alves
2023-02-07 21:06 ` Thiago Jung Bauermann via Gdb-patches
2023-02-09 2:46 ` Simon Marchi via Gdb-patches
2023-02-10 3:29 ` Thiago Jung Bauermann via Gdb-patches
2023-02-10 14:56 ` Luis Machado via Gdb-patches
2023-02-10 15:04 ` Tom Tromey
2023-02-10 15:28 ` Luis Machado via Gdb-patches
2023-02-10 17:26 ` Thiago Jung Bauermann via Gdb-patches
2023-02-10 21:01 ` Simon Marchi via Gdb-patches
2023-01-30 4:45 ` [PATCH v3 5/8] gdbserver: Transmit target description ID in thread list and stop reply Thiago Jung Bauermann via Gdb-patches
2023-01-30 12:52 ` Eli Zaretskii via Gdb-patches
2023-01-30 14:05 ` Thiago Jung Bauermann via Gdb-patches
2023-02-01 9:39 ` Luis Machado via Gdb-patches
2023-02-01 12:07 ` Andrew Burgess via Gdb-patches
2023-02-01 13:03 ` Eli Zaretskii via Gdb-patches
2023-02-01 17:37 ` Simon Marchi via Gdb-patches
2023-02-02 20:36 ` Thiago Jung Bauermann via Gdb-patches
2023-02-02 20:56 ` Simon Marchi via Gdb-patches
2023-02-01 20:46 ` Simon Marchi via Gdb-patches
2023-02-02 21:43 ` Thiago Jung Bauermann via Gdb-patches
2023-02-01 14:51 ` Andrew Burgess via Gdb-patches
2023-02-01 17:03 ` Simon Marchi via Gdb-patches
2023-02-02 19:52 ` Thiago Jung Bauermann via Gdb-patches
2023-02-02 20:51 ` Simon Marchi via Gdb-patches
2023-02-03 2:44 ` Thiago Jung Bauermann via Gdb-patches
2023-02-03 16:29 ` Andrew Burgess via Gdb-patches
2023-02-04 6:08 ` Thiago Jung Bauermann via Gdb-patches
2023-02-03 11:22 ` Luis Machado via Gdb-patches
2023-02-03 12:50 ` Simon Marchi via Gdb-patches
2023-01-30 4:45 ` [PATCH v3 6/8] gdb/remote: Parse tdesc field in stop reply and threads list XML Thiago Jung Bauermann via Gdb-patches
2023-02-01 9:52 ` Luis Machado via Gdb-patches
2023-02-05 0:06 ` Thiago Jung Bauermann via Gdb-patches
2023-02-06 9:10 ` Luis Machado via Gdb-patches
2023-02-01 14:32 ` Andrew Burgess via Gdb-patches
2023-02-01 19:50 ` Simon Marchi via Gdb-patches
2023-02-01 20:16 ` Simon Marchi via Gdb-patches
2023-02-03 11:27 ` Luis Machado via Gdb-patches
2023-02-03 13:19 ` Simon Marchi via Gdb-patches
2023-02-03 16:33 ` Andrew Burgess via Gdb-patches
2023-01-30 4:45 ` [PATCH v3 7/8] gdb/aarch64: Detect vector length changes when debugging remotely Thiago Jung Bauermann via Gdb-patches
2023-02-01 9:58 ` Luis Machado via Gdb-patches
2023-02-01 15:26 ` Andrew Burgess via Gdb-patches
2023-02-01 20:20 ` Simon Marchi via Gdb-patches
2023-02-03 11:31 ` Luis Machado via Gdb-patches
2023-02-03 16:38 ` Andrew Burgess via Gdb-patches
2023-02-03 19:07 ` Simon Marchi via Gdb-patches
2023-01-30 4:45 ` [PATCH v3 8/8] gdb/testsuite: Add test to exercise multi-threaded AArch64 SVE inferiors Thiago Jung Bauermann via Gdb-patches
2023-02-01 10:10 ` Luis Machado via Gdb-patches
2023-02-06 19:11 ` [PATCH v3 0/8] gdbserver improvements for AArch64 SVE support Pedro Alves
2023-02-06 20:05 ` Simon Marchi via Gdb-patches
2023-02-06 21:06 ` Pedro Alves
2023-02-07 13:49 ` Simon Marchi via Gdb-patches
2024-05-07 14:29 ` Willgerodt, Felix
2024-05-07 14:43 ` Luis Machado
2024-05-07 16:34 ` Thiago Jung Bauermann
2024-05-10 13:47 ` Willgerodt, Felix
2024-09-10 5:36 ` Thiago Jung Bauermann
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=87r0v19mhl.fsf@linaro.org \
--to=gdb-patches@sourceware.org \
--cc=pedro@palves.net \
--cc=simon.marchi@efficios.com \
--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