public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Vaseeharan Vinayagamoorthy <Vaseeharan.Vinayagamoorthy@arm.com>
To: Joseph Myers <joseph@codesourcery.com>,
	"libc-alpha@sourceware.org" <libc-alpha@sourceware.org>
Subject: Re: Add more ptrace constants for AArch64 and PowerPC
Date: Fri, 12 Feb 2021 12:50:41 +0000	[thread overview]
Message-ID: <195CE0B0-E796-49D8-8478-85652BC3A921@arm.com> (raw)
In-Reply-To: <alpine.DEB.2.22.394.2102082217240.2739371@digraph.polyomino.org.uk>

After this patch, the following errors are seen when building gdbserver:

In file included from …/install/aarch64-none-linux-gnu/libc/usr/include/sys/ptrace.h:86:3: error: expected identifier before numeric constant
   86 |   PTRACE_SYSEMU = 31,
      |   ^~~~~~~~~~~~~
…/install/aarch64-none-linux-gnu/libc/usr/include/sys/ptrace.h:86:3: error: expected ‘}’ before numeric constant

In file included from …/src/binutils-gdb--gdb/gdbserver/../gdb/nat/aarch64-linux-hw-point.c:27:
…/install/aarch64-none-linux-gnu/libc/usr/include/sys/ptrace.h:30:1: note: to match this ‘{’
   30 | {
      | ^
In file included from …/src/binutils-gdb--gdb/gdbserver/../gdb/nat/aarch64-linux-hw-point.c:26:
…/install/aarch64-none-linux-gnu/libc/usr/include/sys/ptrace.h:86:3: error: expected unqualified-id before numeric constant
   86 |   PTRACE_SYSEMU = 31,
      |   ^~~~~~~~~~~~~

In file included from …/src/binutils-gdb--gdb/gdbserver/../gdb/nat/aarch64-linux-hw-point.c:27:
…/src/binutils-gdb--gdb/gdbserver/../gdb/nat/aarch64-linux-hw-point.c: In function ‘void aarch64_linux_set_debug_regs(aarch64_debug_reg_state*, int, int)’:
…/src/binutils-gdb--gdb/gdbserver/../gdb/nat/aarch64-linux-hw-point.c:694:15: error: ‘PTRACE_SETREGSET’ was not declared in this scope
  694 |   if (ptrace (PTRACE_SETREGSET, tid,
      |               ^~~~~~~~~~~~~~~~

My build/host/target setup is:
Build: x86_64 (CentOS Linux 7)
Host: x86_64 (CentOS Linux 7)
Target: aarch64-none-linux-gnu / aarch64_be-none-linux-gnu


Kind regards
Vasee

On 08/02/2021, 22:19, "Libc-alpha on behalf of Joseph Myers" <libc-alpha-bounces@sourceware.org on behalf of joseph@codesourcery.com> wrote:

    Linux 5.10 adds PTRACE_PEEKMTETAGS and PTRACE_POKEMTETAGS for AArch64.
    Adding those shows up that glibc is also missing PTRACE_SYSEMU and
    PTRACE_SYSEMU_SINGLESTEP, for AArch64 (where they were added to Linux
    in 5.3) and for PowerPC (where they were added in Linux 4.20); it
    already has those two defines for x86.  Add all those defines to
    glibc's headers.

    Tested with build-many-glibcs.py for aarch64-linux-gnu and
    powerpc-linux-gnu.

    diff --git a/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h b/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h
    index 806178af0e..de26da0023 100644
    --- a/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h
    +++ b/sysdeps/unix/sysv/linux/aarch64/sys/ptrace.h
    @@ -82,6 +82,22 @@ enum __ptrace_request
       PTRACE_SYSCALL = 24,
     #define PT_SYSCALL PTRACE_SYSCALL

    +  /* Continue and stop at the next syscall, it will not be executed.  */
    +  PTRACE_SYSEMU = 31,
    +#define PT_SYSEMU PTRACE_SYSEMU
    +
    +  /* Single step the process, the next syscall will not be executed.  */
    +  PTRACE_SYSEMU_SINGLESTEP = 32,
    +#define PT_SYSEMU_SINGLESTEP PTRACE_SYSEMU_SINGLESTEP
    +
    +  /* Read MTE tags.  */
    +  PTRACE_PEEKMTETAGS = 33,
    +#define PT_PEEKMTETAGS PTRACE_PEEKMTETAGS
    +
    +  /* Write MTE tags.  */
    +  PTRACE_POKEMTETAGS = 34,
    +#define PT_POKEMTETAGS PTRACE_POKEMTETAGS
    +
       /* Set ptrace filter options.  */
       PTRACE_SETOPTIONS = 0x4200,
     #define PT_SETOPTIONS PTRACE_SETOPTIONS
    diff --git a/sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h b/sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h
    index 00730cf5d3..032c91e817 100644
    --- a/sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h
    +++ b/sysdeps/unix/sysv/linux/powerpc/sys/ptrace.h
    @@ -70,6 +70,8 @@ __BEGIN_DECLS
     # undef PTRACE_SYSCALL_INFO_ENTRY
     # undef PTRACE_SYSCALL_INFO_EXIT
     # undef PTRACE_SYSCALL_INFO_SECCOMP
    +# undef PTRACE_SYSEMU
    +# undef PTRACE_SYSEMU_SINGLESTEP
     # undef PTRACE_TRACEME
     #endif

    @@ -188,6 +190,14 @@ enum __ptrace_request
       PTRACE_SETVSRREGS = 28,
     #define PT_SETVSRREGS PTRACE_SETVSRREGS

    +  /* Continue and stop at the next syscall, it will not be executed.  */
    +  PTRACE_SYSEMU = 29,
    +#define PT_SYSEMU PTRACE_SYSEMU
    +
    +  /* Single step the process, the next syscall will not be executed.  */
    +  PTRACE_SYSEMU_SINGLESTEP = 30,
    +#define PT_SYSEMU_SINGLESTEP PTRACE_SYSEMU_SINGLESTEP
    +
       /* Execute process until next taken branch.  */
       PTRACE_SINGLEBLOCK = 256,
     #define PT_STEPBLOCK PTRACE_SINGLEBLOCK

    -- 
    Joseph S. Myers
    joseph@codesourcery.com


  parent reply	other threads:[~2021-02-12 12:50 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-08 22:18 Joseph Myers
2021-02-08 22:42 ` Dmitry V. Levin
2021-02-12 12:50 ` Vaseeharan Vinayagamoorthy [this message]
2021-02-12 19:25   ` Joseph Myers

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=195CE0B0-E796-49D8-8478-85652BC3A921@arm.com \
    --to=vaseeharan.vinayagamoorthy@arm.com \
    --cc=joseph@codesourcery.com \
    --cc=libc-alpha@sourceware.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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).