mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #18953 from justincormack/robust_list
Allow use of robust list syscalls in default seccomp policy
This commit is contained in:
commit
afdc4747dc
1 changed files with 0 additions and 12 deletions
|
@ -97,12 +97,6 @@ var defaultSeccompProfile = &configs.Seccomp{
|
||||||
Action: configs.Errno,
|
Action: configs.Errno,
|
||||||
Args: []*configs.Arg{},
|
Args: []*configs.Arg{},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
// Deny getting the list of robust futexes
|
|
||||||
Name: "get_robust_list",
|
|
||||||
Action: configs.Errno,
|
|
||||||
Args: []*configs.Arg{},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
// Deny manipulation and functions on kernel modules.
|
// Deny manipulation and functions on kernel modules.
|
||||||
Name: "init_module",
|
Name: "init_module",
|
||||||
|
@ -280,12 +274,6 @@ var defaultSeccompProfile = &configs.Seccomp{
|
||||||
Action: configs.Errno,
|
Action: configs.Errno,
|
||||||
Args: []*configs.Arg{},
|
Args: []*configs.Arg{},
|
||||||
},
|
},
|
||||||
{
|
|
||||||
// Deny setting the list of robust futexes
|
|
||||||
Name: "set_robust_list",
|
|
||||||
Action: configs.Errno,
|
|
||||||
Args: []*configs.Arg{},
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
// Time/Date is not namespaced
|
// Time/Date is not namespaced
|
||||||
Name: "settimeofday",
|
Name: "settimeofday",
|
||||||
|
|
Loading…
Add table
Reference in a new issue