We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 705bbc5 commit 13a5f8eCopy full SHA for 13a5f8e
components/ws-daemon/seccomp-profile-installer/main.go
@@ -57,6 +57,19 @@ func main() {
57
},
58
59
60
+ // docker-exec requires unshare(0).
61
+ specs.LinuxSyscall{
62
+ Names: []string{"unshare"},
63
+ Action: specs.ActAllow,
64
+ Args: []specs.LinuxSeccompArg{
65
+ {
66
+ Index: 0,
67
+ Op: specs.OpEqualTo,
68
+ Value: 0,
69
+ },
70
71
72
+
73
// slirp4netns requires setns, as do we for debugging
74
// TODO(cw): find means to make this more precise, maybe an eBPF program that checks if
75
// arg zero is a child of this netns. The kernel already does that (from the setns(2) man page):
0 commit comments