All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Dmitry V. Levin" <ldv@altlinux.org>
To: Paul Moore <paul@paul-moore.com>
Cc: Elvira Khabirova <lineprinter@altlinux.org>,
	Eugene Syromyatnikov <esyr@redhat.com>,
	Oleg Nesterov <oleg@redhat.com>,
	Andy Lutomirski <luto@kernel.org>,
	linux-audit@redhat.com, linux-kernel@vger.kernel.org
Subject: [PATCH 00/14] Prepare syscall_get_arch for PTRACE_GET_SYSCALL_INFO
Date: Wed, 9 Jan 2019 15:40:44 +0300	[thread overview]
Message-ID: <20190109124044.GA11935@altlinux.org> (raw)

syscall_get_arch() is required to be implemented on all architectures in order
to extend the generic ptrace API with PTRACE_GET_SYSCALL_INFO request:
syscall_get_arch() is going to be called from ptrace_request() along with
syscall_get_nr(), syscall_get_arguments(), syscall_get_error(), and
syscall_get_return_value() functions with a tracee as their argument.

The primary intent is that the triple (audit_arch, syscall_nr, arg1..arg6)
should describe what system call is being called and what its arguments are.

This patchset began as a series called "Prepare for PTRACE_GET_SYSCALL_INFO",
then I merged it into a series called "ptrace: add PTRACE_GET_SYSCALL_INFO request"
that also contains ptrace-specific changes.

The ptrace-specific part, however, needs more attention to workaround problems
on niche architectures like alpha, while the syscall_get_arch() part is
straightforward, so I decided to split it out into a separate patchset that
just prepares syscall_get_arch() for PTRACE_GET_SYSCALL_INFO: it adds
syscall_get_arch() to those architectures that haven't implemented it yet,
and then adds "struct task_struct *" argument to syscall_get_arch()
on all architectures.

All patches from this patchset have been already reviewed, so it's ready
to be merged without waiting for the ptrace-specific part.  As it's all
about syscall_get_arch(), it should probably go via audit tree.

Dmitry V. Levin (14):
  Move EM_ARCOMPACT and EM_ARCV2 to uapi/linux/elf-em.h
  arc: define syscall_get_arch()
  c6x: define syscall_get_arch()
  h8300: define syscall_get_arch()
  Move EM_HEXAGON to uapi/linux/elf-em.h
  hexagon: define syscall_get_arch()
  m68k: define syscall_get_arch()
  Move EM_NDS32 to uapi/linux/elf-em.h
  nds32: define syscall_get_arch()
  nios2: define syscall_get_arch()
  riscv: define syscall_get_arch()
  Move EM_UNICORE to uapi/linux/elf-em.h
  unicore32: define syscall_get_arch()
  syscall_get_arch: add "struct task_struct *" argument

 arch/alpha/include/asm/syscall.h      |  2 +-
 arch/arc/include/asm/elf.h            |  6 +-----
 arch/arc/include/asm/syscall.h        | 11 +++++++++++
 arch/arm/include/asm/syscall.h        |  2 +-
 arch/arm64/include/asm/syscall.h      |  4 ++--
 arch/c6x/include/asm/syscall.h        |  7 +++++++
 arch/csky/include/asm/syscall.h       |  2 +-
 arch/h8300/include/asm/syscall.h      |  6 ++++++
 arch/hexagon/include/asm/elf.h        |  6 +-----
 arch/hexagon/include/asm/syscall.h    |  8 ++++++++
 arch/ia64/include/asm/syscall.h       |  2 +-
 arch/m68k/include/asm/syscall.h       | 12 ++++++++++++
 arch/microblaze/include/asm/syscall.h |  2 +-
 arch/mips/include/asm/syscall.h       |  6 +++---
 arch/mips/kernel/ptrace.c             |  2 +-
 arch/nds32/include/asm/elf.h          |  3 +--
 arch/nds32/include/asm/syscall.h      |  9 +++++++++
 arch/nios2/include/asm/syscall.h      |  6 ++++++
 arch/openrisc/include/asm/syscall.h   |  2 +-
 arch/parisc/include/asm/syscall.h     |  4 ++--
 arch/powerpc/include/asm/syscall.h    | 10 ++++++++--
 arch/riscv/include/asm/syscall.h      | 10 ++++++++++
 arch/s390/include/asm/syscall.h       |  4 ++--
 arch/sh/include/asm/syscall_32.h      |  2 +-
 arch/sh/include/asm/syscall_64.h      |  2 +-
 arch/sparc/include/asm/syscall.h      |  5 +++--
 arch/unicore32/include/asm/elf.h      |  3 +--
 arch/unicore32/include/asm/syscall.h  | 12 ++++++++++++
 arch/x86/include/asm/syscall.h        |  8 +++++---
 arch/x86/um/asm/syscall.h             |  2 +-
 arch/xtensa/include/asm/syscall.h     |  2 +-
 include/asm-generic/syscall.h         |  5 +++--
 include/uapi/linux/audit.h            | 14 ++++++++++++++
 include/uapi/linux/elf-em.h           |  6 ++++++
 kernel/auditsc.c                      |  4 ++--
 kernel/seccomp.c                      |  4 ++--
 36 files changed, 148 insertions(+), 47 deletions(-)
 create mode 100644 arch/m68k/include/asm/syscall.h
 create mode 100644 arch/unicore32/include/asm/syscall.h

-- 
ldv

             reply	other threads:[~2019-01-09 12:40 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-09 12:40 Dmitry V. Levin [this message]
2019-01-09 12:42 ` [PATCH 01/14] Move EM_ARCOMPACT and EM_ARCV2 to uapi/linux/elf-em.h Dmitry V. Levin
2019-01-09 12:42   ` Dmitry V. Levin
2019-01-09 12:42 ` [PATCH 02/14] arc: define syscall_get_arch() Dmitry V. Levin
2019-01-09 12:42   ` Dmitry V. Levin
2019-01-09 12:42 ` [PATCH 03/14] c6x: " Dmitry V. Levin
2019-01-09 12:42   ` Dmitry V. Levin
2019-01-09 12:42 ` [PATCH 04/14] h8300: " Dmitry V. Levin
2019-01-09 12:42   ` Dmitry V. Levin
2019-02-27 15:29   ` Dmitry V. Levin
2019-01-09 12:43 ` [PATCH 05/14] Move EM_HEXAGON to uapi/linux/elf-em.h Dmitry V. Levin
2019-02-27 15:29   ` Dmitry V. Levin
2019-01-09 12:43 ` [PATCH 06/14] hexagon: define syscall_get_arch() Dmitry V. Levin
2019-02-27 15:30   ` Dmitry V. Levin
2019-01-09 12:43 ` [PATCH 07/14] m68k: " Dmitry V. Levin
2019-01-09 12:43 ` [PATCH 08/14] Move EM_NDS32 to uapi/linux/elf-em.h Dmitry V. Levin
2019-02-27 15:30   ` Dmitry V. Levin
2019-03-05  0:26     ` Vincent Chen
2019-03-06  6:27       ` Greentime Hu
2019-01-09 12:43 ` [PATCH 09/14] nds32: define syscall_get_arch() Dmitry V. Levin
2019-02-27 15:30   ` Dmitry V. Levin
2019-03-04 23:49     ` Vincent Chen
2019-03-06  6:26       ` Greentime Hu
2019-01-09 12:43 ` [PATCH 10/14] nios2: " Dmitry V. Levin
2019-02-27 15:31   ` Dmitry V. Levin
2019-03-01  7:30     ` Ley Foon Tan
2019-01-09 12:43 ` [PATCH 11/14] riscv: " Dmitry V. Levin
2019-01-09 12:43   ` Dmitry V. Levin
2019-01-09 12:43 ` [PATCH 12/14] Move EM_UNICORE to uapi/linux/elf-em.h Dmitry V. Levin
2019-01-09 12:43   ` Dmitry V. Levin
2019-02-27 15:31   ` Dmitry V. Levin
2019-01-09 12:43 ` [PATCH 13/14] unicore32: define syscall_get_arch() Dmitry V. Levin
2019-01-09 12:43   ` Dmitry V. Levin
2019-02-27 15:31   ` Dmitry V. Levin
2019-01-09 12:43 ` [PATCH 14/14] syscall_get_arch: add "struct task_struct *" argument Dmitry V. Levin
2019-01-09 12:43   ` Dmitry V. Levin
2019-01-09 12:43   ` [OpenRISC] " Dmitry V. Levin
2019-01-09 12:43   ` Dmitry V. Levin
2019-01-09 12:43   ` Dmitry V. Levin
2019-01-09 12:43   ` Dmitry V. Levin
2019-01-09 12:43   ` Dmitry V. Levin
2019-01-09 12:43   ` Dmitry V. Levin
2019-01-09 12:43   ` Dmitry V. Levin
2019-01-17 20:34 ` [PATCH 00/14] Prepare syscall_get_arch for PTRACE_GET_SYSCALL_INFO Richard Guy Briggs
2019-02-08 22:22   ` Dmitry V. Levin
2019-02-27 14:13     ` Dmitry V. Levin
2019-02-27 14:57       ` Paul Moore

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=20190109124044.GA11935@altlinux.org \
    --to=ldv@altlinux.org \
    --cc=esyr@redhat.com \
    --cc=lineprinter@altlinux.org \
    --cc=linux-audit@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luto@kernel.org \
    --cc=oleg@redhat.com \
    --cc=paul@paul-moore.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.