Browse Source

Allow sigreturn syscall

This is used on some 32 bit architectures, eg x86

Signed-off-by: Justin Cormack <justin.cormack@unikernel.com>
Justin Cormack 9 năm trước cách đây
mục cha
commit
d8e06d54cf
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  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,
 			Args:   []*configs.Arg{},
 		},
+		{
+			Name:   "sigreturn",
+			Action: configs.Allow,
+			Args:   []*configs.Arg{},
+		},
 		{
 			Name:   "socket",
 			Action: configs.Allow,