2016-04-15 06:42:40 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"syscall"
|
|
|
|
|
|
|
|
"github.com/opencontainers/runtime-spec/specs-go"
|
|
|
|
libseccomp "github.com/seccomp/libseccomp-golang"
|
|
|
|
)
|
|
|
|
|
|
|
|
func arches() []specs.Arch {
|
|
|
|
var native, err = libseccomp.GetNativeArch()
|
|
|
|
if err != nil {
|
|
|
|
return []specs.Arch{}
|
|
|
|
}
|
|
|
|
var a = native.String()
|
|
|
|
switch a {
|
|
|
|
case "amd64":
|
|
|
|
return []specs.Arch{specs.ArchX86_64, specs.ArchX86, specs.ArchX32}
|
|
|
|
case "arm64":
|
|
|
|
return []specs.Arch{specs.ArchARM, specs.ArchAARCH64}
|
|
|
|
case "mips64":
|
|
|
|
return []specs.Arch{specs.ArchMIPS, specs.ArchMIPS64, specs.ArchMIPS64N32}
|
|
|
|
case "mips64n32":
|
|
|
|
return []specs.Arch{specs.ArchMIPS, specs.ArchMIPS64, specs.ArchMIPS64N32}
|
|
|
|
case "mipsel64":
|
|
|
|
return []specs.Arch{specs.ArchMIPSEL, specs.ArchMIPSEL64, specs.ArchMIPSEL64N32}
|
|
|
|
case "mipsel64n32":
|
|
|
|
return []specs.Arch{specs.ArchMIPSEL, specs.ArchMIPSEL64, specs.ArchMIPSEL64N32}
|
|
|
|
default:
|
|
|
|
return []specs.Arch{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// defaultProfile defines the whitelist for the default seccomp profile.
|
2018-03-20 01:44:18 +00:00
|
|
|
var defaultSeccompProfile = &specs.LinuxSeccomp{
|
2016-04-15 06:42:40 +00:00
|
|
|
DefaultAction: specs.ActErrno,
|
|
|
|
Architectures: arches(),
|
2018-03-20 01:44:18 +00:00
|
|
|
Syscalls: []specs.LinuxSyscall{
|
2016-04-15 06:42:40 +00:00
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"accept"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"accept4"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"access"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"alarm"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"arch_prctl"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"bind"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"brk"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"capget"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"capset"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"chdir"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"chmod"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"chown"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"chown32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"chroot"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"clock_getres"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"clock_gettime"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"clock_nanosleep"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"clone"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{
|
2016-04-15 06:42:40 +00:00
|
|
|
{
|
|
|
|
Index: 0,
|
|
|
|
Value: syscall.CLONE_NEWNS | syscall.CLONE_NEWUTS | syscall.CLONE_NEWIPC | syscall.CLONE_NEWUSER | syscall.CLONE_NEWPID | syscall.CLONE_NEWNET,
|
|
|
|
ValueTwo: 0,
|
|
|
|
Op: specs.OpMaskedEqual,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"close"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"connect"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"copy_file_range"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"creat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"dup"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"dup2"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"dup3"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"epoll_create"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"epoll_create1"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"epoll_ctl"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"epoll_ctl_old"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"epoll_pwait"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"epoll_wait"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"epoll_wait_old"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"eventfd"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"eventfd2"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"execve"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"execveat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"exit"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"exit_group"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"faccessat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fadvise64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fadvise64_64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fallocate"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fanotify_init"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fanotify_mark"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fchdir"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fchmod"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fchmodat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fchown"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fchown32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fchownat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fcntl"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fcntl64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fdatasync"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fgetxattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"flistxattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"flock"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fork"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fremovexattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fsetxattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fstat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fstat64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fstatat64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fstatfs"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fstatfs64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"fsync"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"ftruncate"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"ftruncate64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"futex"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"futimesat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getcpu"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getcwd"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getdents"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getdents64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getegid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getegid32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"geteuid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"geteuid32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getgid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getgid32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getgroups"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getgroups32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getitimer"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getpeername"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getpgid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getpgrp"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getpid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getppid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getpriority"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getrandom"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getresgid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getresgid32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getresuid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getresuid32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getrlimit"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"get_robust_list"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getrusage"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getsid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getsockname"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getsockopt"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"get_thread_area"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"gettid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"gettimeofday"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getuid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getuid32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"getxattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"inotify_add_watch"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"inotify_init"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"inotify_init1"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"inotify_rm_watch"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"io_cancel"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"ioctl"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"io_destroy"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"io_getevents"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"ioprio_get"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"ioprio_set"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"io_setup"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"io_submit"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"ipc"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"kill"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"lchown"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"lchown32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"lgetxattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"link"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"linkat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"listen"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"listxattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"llistxattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"_llseek"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"lremovexattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"lseek"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"lsetxattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"lstat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"lstat64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"madvise"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"memfd_create"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mincore"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mkdir"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mkdirat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mknod"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mknodat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mlock"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mlock2"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mlockall"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mmap"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mmap2"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mprotect"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mq_getsetattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mq_notify"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mq_open"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mq_timedreceive"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mq_timedsend"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mq_unlink"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"mremap"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"msgctl"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"msgget"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"msgrcv"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"msgsnd"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"msync"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"munlock"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"munlockall"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"munmap"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"nanosleep"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"newfstatat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"_newselect"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"open"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"openat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"pause"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"personality"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{
|
2016-04-15 06:42:40 +00:00
|
|
|
{
|
|
|
|
Index: 0,
|
|
|
|
Value: 0x0,
|
|
|
|
Op: specs.OpEqualTo,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"personality"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{
|
2016-04-15 06:42:40 +00:00
|
|
|
{
|
|
|
|
Index: 0,
|
|
|
|
Value: 0x0008,
|
|
|
|
Op: specs.OpEqualTo,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"personality"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{
|
2016-04-15 06:42:40 +00:00
|
|
|
{
|
|
|
|
Index: 0,
|
|
|
|
Value: 0xffffffff,
|
|
|
|
Op: specs.OpEqualTo,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"pipe"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"pipe2"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"poll"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"ppoll"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"prctl"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"pread64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"preadv"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"prlimit64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"pselect6"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"pwrite64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"pwritev"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"read"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"readahead"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"readlink"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"readlinkat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"readv"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"recv"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"recvfrom"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"recvmmsg"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"recvmsg"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"remap_file_pages"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"removexattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"rename"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"renameat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"renameat2"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"restart_syscall"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"rmdir"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"rt_sigaction"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"rt_sigpending"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"rt_sigprocmask"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"rt_sigqueueinfo"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"rt_sigreturn"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"rt_sigsuspend"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"rt_sigtimedwait"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"rt_tgsigqueueinfo"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sched_getaffinity"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sched_getattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sched_getparam"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sched_get_priority_max"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sched_get_priority_min"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sched_getscheduler"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sched_rr_get_interval"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sched_setaffinity"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sched_setattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sched_setparam"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sched_setscheduler"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sched_yield"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"seccomp"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"select"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"semctl"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"semget"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"semop"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"semtimedop"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"send"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sendfile"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sendfile64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sendmmsg"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sendmsg"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sendto"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setdomainname"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setfsgid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setfsgid32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setfsuid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setfsuid32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setgid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setgid32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setgroups"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setgroups32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sethostname"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setitimer"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setpgid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setpriority"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setregid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setregid32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setresgid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setresgid32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setresuid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setresuid32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setreuid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setreuid32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setrlimit"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"set_robust_list"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setsid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setsockopt"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"set_thread_area"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"set_tid_address"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setuid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setuid32"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"setxattr"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"shmat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"shmctl"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"shmdt"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"shmget"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"shutdown"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sigaltstack"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"signalfd"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"signalfd4"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sigreturn"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"socket"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"socketpair"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"splice"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"stat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"stat64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"statfs"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"statfs64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"symlink"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"symlinkat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sync"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sync_file_range"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"syncfs"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"sysinfo"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"syslog"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"tee"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"tgkill"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"time"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"timer_create"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"timer_delete"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"timerfd_create"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"timerfd_gettime"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"timerfd_settime"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"timer_getoverrun"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"timer_gettime"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"timer_settime"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"times"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"tkill"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"truncate"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"truncate64"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"ugetrlimit"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"umask"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"uname"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"unlink"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"unlinkat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"utime"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"utimensat"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"utimes"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"vfork"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"vhangup"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"vmsplice"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"wait4"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"waitid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"waitpid"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"write"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"writev"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
// i386 specific syscalls
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"modify_ldt"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
// arm specific syscalls
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"breakpoint"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"cacheflush"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
{
|
2018-03-20 01:44:18 +00:00
|
|
|
Names: []string{"set_tls"},
|
2016-04-15 06:42:40 +00:00
|
|
|
Action: specs.ActAllow,
|
2018-03-20 01:44:18 +00:00
|
|
|
Args: []specs.LinuxSeccompArg{},
|
2016-04-15 06:42:40 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|