Procházet zdrojové kódy

Allow sigreturn syscall

This is used on some 32 bit architectures, eg x86

Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
Justin Cormack před 9 roky
rodič
revize
d8e06d54cf
1 změnil soubory, kde provedl 5 přidání a 0 odebrání
  1. 5 0
      daemon/execdriver/native/seccomp_default.go

+ 5 - 0
daemon/execdriver/native/seccomp_default.go

@@ -1308,6 +1308,11 @@ var defaultSeccompProfile = &configs.Seccomp{
 			Action: configs.Allow,
 			Action: configs.Allow,
 			Args:   []*configs.Arg{},
 			Args:   []*configs.Arg{},
 		},
 		},
+		{
+			Name:   "sigreturn",
+			Action: configs.Allow,
+			Args:   []*configs.Arg{},
+		},
 		{
 		{
 			Name:   "socket",
 			Name:   "socket",
 			Action: configs.Allow,
 			Action: configs.Allow,