summaryrefslogtreecommitdiffhomepage
path: root/pkg/seccomp/seccomp_test_victim_arm64.go
diff options
context:
space:
mode:
authorHoward Zhang <howard.zhang@arm.com>2020-08-03 12:40:54 +0800
committerHoward Zhang <howard.zhang@arm.com>2020-08-12 13:01:49 +0800
commitcdef21c3d5406bd9db5494d2a0c7be700479df2b (patch)
tree5c66c4e9b76e7dfdb05ec817263c46805edd7697 /pkg/seccomp/seccomp_test_victim_arm64.go
parentba2bf9fc13c204ad05d9fbb7199b890e6faf1d76 (diff)
enable seccomp test on arm64
syscalls in ARM64 is different from that in X86_64, use differen syscallrules for each arch. The auditnumber are also different for different arch. Use LINUX_AUDIT_ARCH to get correct auditnumber. Signed-off-by: Howard Zhang <howard.zhang@arm.com>
Diffstat (limited to 'pkg/seccomp/seccomp_test_victim_arm64.go')
-rw-r--r--pkg/seccomp/seccomp_test_victim_arm64.go29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkg/seccomp/seccomp_test_victim_arm64.go b/pkg/seccomp/seccomp_test_victim_arm64.go
new file mode 100644
index 000000000..6736c9abc
--- /dev/null
+++ b/pkg/seccomp/seccomp_test_victim_arm64.go
@@ -0,0 +1,29 @@
+// Copyright 2018 The gVisor Authors.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// Test binary used to test that seccomp filters are properly constructed and
+// indeed kill the process on violation.
+
+// +build arm64
+
+package main
+
+import (
+ "syscall"
+ "gvisor.dev/gvisor/pkg/seccomp"
+)
+
+func arch_syscalls(syscalls seccomp.SyscallRules) {
+ syscalls[syscall.SYS_FSTATAT] = []seccomp.Rule{}
+}