Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932306AbbG1IIg (ORCPT ); Tue, 28 Jul 2015 04:08:36 -0400 Received: from mail-wi0-f176.google.com ([209.85.212.176]:35328 "EHLO mail-wi0-f176.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932200AbbG1IFu (ORCPT ); Tue, 28 Jul 2015 04:05:50 -0400 From: David Drysdale To: x86@kernel.org, Thomas Gleixner , Ingo Molnar , Andy Lutomirski , "H. Peter Anvin" Cc: Michael Kerrisk , Kees Cook , Paul Moore , Eric Paris , linux-api@vger.kernel.org, linux-kernel@vger.kernel.org, David Drysdale Subject: [PATCH RFC 1/1] UAPI,x86: export syscall numbers for all x86 archs Date: Tue, 28 Jul 2015 09:05:31 +0100 Message-Id: <1438070731-17764-2-git-send-email-drysdale@google.com> X-Mailer: git-send-email 2.5.0.rc2.392.g76e840b In-Reply-To: <1438070731-17764-1-git-send-email-drysdale@google.com> References: <1438070731-17764-1-git-send-email-drysdale@google.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2968 Lines: 77 Some userspace code occasionally has a need to reference the syscall numbers for different-but-compatible architectures, so explicitly export the generated files that contain the __NR_ia32_ and __NR_x32_ constants. Also, add a new generated unistd_64_amd64.h file, holding amd64 system call numbers in form __NR_amd64_. For example, this allows a seccomp-bpf filter to include filtering for multiple architectures, and (in particular) to include x32 syscalls in an x86_64 filter. (Programmatic control of the audit framework is another possible use case.) Signed-off-by: David Drysdale --- arch/x86/entry/syscalls/Makefile | 11 ++++++++--- arch/x86/include/uapi/asm/Kbuild | 3 +++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/arch/x86/entry/syscalls/Makefile b/arch/x86/entry/syscalls/Makefile index 57aa59fd140c..ec6811d0db0b 100644 --- a/arch/x86/entry/syscalls/Makefile +++ b/arch/x86/entry/syscalls/Makefile @@ -28,7 +28,7 @@ $(uapi)/unistd_32.h: $(syscall32) $(syshdr) syshdr_abi_unistd_32_ia32 := i386 syshdr_pfx_unistd_32_ia32 := ia32_ -$(out)/unistd_32_ia32.h: $(syscall32) $(syshdr) +$(uapi)/unistd_32_ia32.h: $(syscall32) $(syshdr) $(call if_changed,syshdr) syshdr_abi_unistd_x32 := common,x32 @@ -42,7 +42,12 @@ $(uapi)/unistd_64.h: $(syscall64) $(syshdr) syshdr_abi_unistd_64_x32 := x32 syshdr_pfx_unistd_64_x32 := x32_ -$(out)/unistd_64_x32.h: $(syscall64) $(syshdr) +$(uapi)/unistd_64_x32.h: $(syscall64) $(syshdr) + $(call if_changed,syshdr) + +syshdr_abi_unistd_64_amd64 := common,64 +syshdr_pfx_unistd_64_amd64 := amd64_ +$(uapi)/unistd_64_amd64.h: $(syscall64) $(syshdr) $(call if_changed,syshdr) $(out)/syscalls_32.h: $(syscall32) $(systbl) @@ -56,8 +61,8 @@ $(out)/xen-hypercalls.h: $(srctree)/scripts/xen-hypercalls.sh $(out)/xen-hypercalls.h: $(srctree)/include/xen/interface/xen*.h uapisyshdr-y += unistd_32.h unistd_64.h unistd_x32.h +uapisyshdr-$(CONFIG_X86_64) += unistd_32_ia32.h unistd_64_amd64.h unistd_64_x32.h syshdr-y += syscalls_32.h -syshdr-$(CONFIG_X86_64) += unistd_32_ia32.h unistd_64_x32.h syshdr-$(CONFIG_X86_64) += syscalls_64.h syshdr-$(CONFIG_XEN) += xen-hypercalls.h diff --git a/arch/x86/include/uapi/asm/Kbuild b/arch/x86/include/uapi/asm/Kbuild index 3dec769cadf7..68805cba2fad 100644 --- a/arch/x86/include/uapi/asm/Kbuild +++ b/arch/x86/include/uapi/asm/Kbuild @@ -4,6 +4,9 @@ include include/uapi/asm-generic/Kbuild.asm genhdr-y += unistd_32.h genhdr-y += unistd_64.h genhdr-y += unistd_x32.h +genhdr-y += unistd_64_amd64.h +genhdr-y += unistd_64_x32.h +genhdr-y += unistd_32_ia32.h header-y += a.out.h header-y += auxvec.h header-y += bitsperlong.h -- 2.4.3.573.g4eafbef -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/