forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
arm: Enable seccomp architecture tracking
To enable seccomp constant action bitmaps, we need to have a static mapping to the audit architecture and system call table size. Add these for arm. Signed-off-by: Kees Cook <[email protected]>
- Loading branch information
Showing
2 changed files
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* SPDX-License-Identifier: GPL-2.0-only */ | ||
#ifndef _ASM_SECCOMP_H | ||
#define _ASM_SECCOMP_H | ||
|
||
#include <asm-generic/seccomp.h> | ||
|
||
#define SECCOMP_ARCH_NATIVE AUDIT_ARCH_ARM | ||
#define SECCOMP_ARCH_NATIVE_NR NR_syscalls | ||
#define SECCOMP_ARCH_NATIVE_NAME "arm" | ||
|
||
#endif /* _ASM_SECCOMP_H */ |