From: Kamil Rytarowski <n54@gmx.com>
To: Simon Marchi <simark@simark.ca>, gdb-patches@sourceware.org
Subject: Re: [PATCH] Avoid get_ptrace_pid() usage on NetBSD in x86-bsd-nat.c
Date: Thu, 19 Mar 2020 13:47:13 +0100 [thread overview]
Message-ID: <3048d145-21f9-161c-f6fd-7214c7b13a48@gmx.com> (raw)
In-Reply-To: <6b3250d6-027d-46c7-2884-569d9a0aaa13@simark.ca>
[-- Attachment #1.1: Type: text/plain, Size: 3464 bytes --]
On 19.03.2020 02:35, Simon Marchi wrote:
> On 2020-03-18 12:13 p.m., Kamil Rytarowski wrote:
>> Add gdb_ptrace() that wraps the ptrace(2) API and correctly passes
>> the pid,lwp pair to the calls on NetBSD; and the result of
>> get_ptrace_pid() on other BSD Operating Systems.
>>
>> gdb/ChangeLog:
>>
>> * x86-bsd-nat.c (gdb_ptrace): New.
>> * (x86bsd_dr_get, x86bsd_dr_set): Use gdb_ptrace.
>> ---
>> gdb/ChangeLog | 5 +++++
>> gdb/x86-bsd-nat.c | 39 +++++++++++++++++++--------------------
>> 2 files changed, 24 insertions(+), 20 deletions(-)
>>
>> diff --git a/gdb/ChangeLog b/gdb/ChangeLog
>> index 84964dc00ac..1beb835df78 100644
>> --- a/gdb/ChangeLog
>> +++ b/gdb/ChangeLog
>> @@ -1,3 +1,8 @@
>> +2020-03-18 Kamil Rytarowski <n54@gmx.com>
>> +
>> + * x86-bsd-nat.c (gdb_ptrace): New.
>> + * (x86bsd_dr_get, x86bsd_dr_set): Use gdb_ptrace.
>> +
>> 2020-03-17 Kamil Rytarowski <n54@gmx.com>
>>
>> * regformats/regdef.h: Put reg in gdb namespace.
>> diff --git a/gdb/x86-bsd-nat.c b/gdb/x86-bsd-nat.c
>> index 640a3c28110..37d0bfda37c 100644
>> --- a/gdb/x86-bsd-nat.c
>> +++ b/gdb/x86-bsd-nat.c
>> @@ -33,6 +33,19 @@
>> #include "inf-ptrace.h"
>> \f
>>
>> +static int
>> +gdb_ptrace (PTRACE_TYPE_ARG1 request, ptid_t ptid, PTRACE_TYPE_ARG3 addr)
>> +{
>> +#ifdef __NetBSD__
>> + /* Support for NetBSD threads: unlike other ptrace implementations in this
>> + file, NetBSD requires that we pass both the pid and lwp. */
>> + return ptrace (request, ptid.pid (), addr, ptid.lwp ());
>> +#else
>> + pid_t pid = get_ptrace_pid (ptid);
>> + return ptrace (request, pid, addr, 0);
>> +#endif
>> +}
>> +
>> #ifdef PT_GETXSTATE_INFO
>> size_t x86bsd_xsave_len;
>> #endif
>> @@ -56,14 +69,9 @@ static unsigned long
>> x86bsd_dr_get (ptid_t ptid, int regnum)
>> {
>> struct dbreg dbregs;
>> -#ifdef __NetBSD__
>> - int lwp = inferior_ptid.lwp ();
>> -#else
>> - int lwp = 0;
>> -#endif
>>
>> - if (ptrace (PT_GETDBREGS, get_ptrace_pid (inferior_ptid),
>> - (PTRACE_TYPE_ARG3) &dbregs, lwp) == -1)
>> + if (gdb_ptrace (PT_GETDBREGS, inferior_ptid,
>> + (PTRACE_TYPE_ARG3) &dbregs) == -1)
>> perror_with_name (_("Couldn't read debug registers"));
>
> This function accepts a ptid parameter but does not use it. Can you change
> it so it uses the parameter, and not inferior_ptid? All the callers pass
> inferior_ptid, so it won't change the behavior.
>
OK.
>>
>> return DBREG_DRX ((&dbregs), regnum);
>> @@ -73,14 +81,9 @@ static void
>> x86bsd_dr_set (int regnum, unsigned long value)
>> {
>> struct dbreg dbregs;
>> -#ifdef __NetBSD__
>> - int lwp = inferior_ptid.lwp ();
>> -#else
>> - int lwp = 0;
>> -#endif
>>
>> - if (ptrace (PT_GETDBREGS, get_ptrace_pid (inferior_ptid),
>> - (PTRACE_TYPE_ARG3) &dbregs, lwp) == -1)
>> + if (gdb_ptrace (PT_GETDBREGS, inferior_ptid,
>> + (PTRACE_TYPE_ARG3) &dbregs) == -1)
>> perror_with_name (_("Couldn't get debug registers"));
>
> For symmetry, can you please change this function to accept a ptid, just like
> x86bsd_dr_get, and update the callers to pass inferior_ptid?
>
This is a good idea.. however it is intrusive now and requires patching
code shared with windows, linux, darwin, ...
I prefer to leave it for refactoring in future. I don't have environment
to test other Operating Systems than NetBSD.
> Simon
>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2020-03-19 12:48 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-03-18 16:13 Kamil Rytarowski
2020-03-19 1:35 ` Simon Marchi
2020-03-19 12:47 ` Kamil Rytarowski [this message]
2020-03-19 13:22 ` Simon Marchi
2020-03-19 13:36 ` Kamil Rytarowski
2020-03-19 13:18 ` [PATCH v3] " Kamil Rytarowski
2020-03-19 13:36 ` [PATCH v4] " Kamil Rytarowski
2020-03-19 13:40 ` Simon Marchi
2020-03-19 13:08 ` [PATCH v2] " Kamil Rytarowski
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=3048d145-21f9-161c-f6fd-7214c7b13a48@gmx.com \
--to=n54@gmx.com \
--cc=gdb-patches@sourceware.org \
--cc=simark@simark.ca \
/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