From 37d35f3c280dc27a00f2baa16431d807b24f8b92 Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Sun, 10 Jan 2016 11:40:55 +0000 Subject: [PATCH] Add arm specific syscalls to default seccomp profile Signed-off-by: Justin Cormack --- daemon/execdriver/native/seccomp_default.go | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/daemon/execdriver/native/seccomp_default.go b/daemon/execdriver/native/seccomp_default.go index 542ee95b7e..b1c353a004 100644 --- a/daemon/execdriver/native/seccomp_default.go +++ b/daemon/execdriver/native/seccomp_default.go @@ -1570,5 +1570,21 @@ var defaultSeccompProfile = &configs.Seccomp{ Action: configs.Allow, Args: []*configs.Arg{}, }, + // arm specific syscalls + { + Name: "breakpoint", + Action: configs.Allow, + Args: []*configs.Arg{}, + }, + { + Name: "cacheflush", + Action: configs.Allow, + Args: []*configs.Arg{}, + }, + { + Name: "set_tls", + Action: configs.Allow, + Args: []*configs.Arg{}, + }, }, }