1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
|
// Copyright 2020 The gVisor Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Package seccomp implements some features of libseccomp in order to support
// OCI.
package seccomp
import (
"fmt"
specs "github.com/opencontainers/runtime-spec/specs-go"
"golang.org/x/sys/unix"
"gvisor.dev/gvisor/pkg/abi/linux"
"gvisor.dev/gvisor/pkg/bpf"
"gvisor.dev/gvisor/pkg/log"
"gvisor.dev/gvisor/pkg/seccomp"
"gvisor.dev/gvisor/pkg/sentry/kernel"
slinux "gvisor.dev/gvisor/pkg/sentry/syscalls/linux"
)
var (
killThreadAction = linux.SECCOMP_RET_KILL_THREAD
trapAction = linux.SECCOMP_RET_TRAP
// runc always returns EPERM as the errorcode for SECCOMP_RET_ERRNO
errnoAction = linux.SECCOMP_RET_ERRNO.WithReturnCode(uint16(unix.EPERM))
// runc always returns EPERM as the errorcode for SECCOMP_RET_TRACE
traceAction = linux.SECCOMP_RET_TRACE.WithReturnCode(uint16(unix.EPERM))
allowAction = linux.SECCOMP_RET_ALLOW
)
// BuildProgram generates a bpf program based on the given OCI seccomp
// config.
func BuildProgram(s *specs.LinuxSeccomp) (bpf.Program, error) {
defaultAction, err := convertAction(s.DefaultAction)
if err != nil {
return bpf.Program{}, fmt.Errorf("secomp default action: %w", err)
}
ruleset, err := convertRules(s)
if err != nil {
return bpf.Program{}, fmt.Errorf("invalid seccomp rules: %w", err)
}
instrs, _, err := seccomp.BuildProgram(ruleset, seccomp.ProgramOptions{
DefaultAction: defaultAction,
BadArchAction: killThreadAction,
})
if err != nil {
return bpf.Program{}, fmt.Errorf("building seccomp program: %w", err)
}
program, err := bpf.Compile(instrs, true /* optimize */)
if err != nil {
return bpf.Program{}, fmt.Errorf("compiling seccomp program: %w", err)
}
return program, nil
}
// lookupSyscallNo gets the syscall number for the syscall with the given name
// for the given architecture.
func lookupSyscallNo(arch uint32, name string) (uint32, error) {
var table *kernel.SyscallTable
switch arch {
case linux.AUDIT_ARCH_X86_64:
table = slinux.AMD64
case linux.AUDIT_ARCH_AARCH64:
table = slinux.ARM64
}
if table == nil {
return 0, fmt.Errorf("unsupported architecture: %d", arch)
}
n, err := table.LookupNo(name)
if err != nil {
return 0, err
}
return uint32(n), nil
}
// convertAction converts a LinuxSeccompAction to BPFAction
func convertAction(act specs.LinuxSeccompAction) (linux.BPFAction, error) {
// TODO(gvisor.dev/issue/3124): Update specs package to include ActLog and ActKillProcess.
switch act {
case specs.ActKill:
return killThreadAction, nil
case specs.ActTrap:
return trapAction, nil
case specs.ActErrno:
return errnoAction, nil
case specs.ActTrace:
return traceAction, nil
case specs.ActAllow:
return allowAction, nil
default:
return 0, fmt.Errorf("invalid action: %v", act)
}
}
// convertRules converts OCI linux seccomp rules into RuleSets that can be used by
// the seccomp package to build a seccomp program.
func convertRules(s *specs.LinuxSeccomp) ([]seccomp.RuleSet, error) {
// NOTE: Architectures are only really relevant when calling 32bit syscalls
// on a 64bit system. Since we don't support that in gVisor anyway, we
// ignore Architectures and only test against the native architecture.
ruleset := []seccomp.RuleSet{}
for _, syscall := range s.Syscalls {
sysRules := seccomp.NewSyscallRules()
action, err := convertAction(syscall.Action)
if err != nil {
return nil, err
}
// Args
rule, err := convertArgs(syscall.Args)
if err != nil {
return nil, err
}
for _, name := range syscall.Names {
syscallNo, err := lookupSyscallNo(nativeArchAuditNo, name)
if err != nil {
// If there is an error looking up the syscall number, assume it is
// not supported on this architecture and ignore it. This is, for
// better or worse, what runc does.
log.Warningf("OCI seccomp: ignoring syscall %q", name)
continue
}
sysRules.Add(uintptr(syscallNo), rule)
}
ruleset = append(ruleset, seccomp.RuleSet{
Rules: sysRules,
Action: action,
})
}
return ruleset, nil
}
// convertArgs converts an OCI seccomp argument rule to a list of seccomp.Rule.
func convertArgs(args []specs.LinuxSeccompArg) (seccomp.SyscallRule, error) {
argCounts := make([]uint, 6)
for _, arg := range args {
if arg.Index > 6 {
return nil, fmt.Errorf("invalid index: %d", arg.Index)
}
argCounts[arg.Index]++
}
// NOTE: If multiple rules apply to the same argument (same index) the
// action is triggered if any one of the rules matches (OR). If not, then
// all rules much match in order to trigger the action (AND). This appears to
// be some kind of legacy behavior of runc that nevertheless needs to be
// supported to maintain compatibility.
hasMultipleArgs := false
for _, count := range argCounts {
if count > 1 {
hasMultipleArgs = true
break
}
}
if hasMultipleArgs {
rules := seccomp.Or{}
// Old runc behavior - do this for compatibility.
// Add rules as ORs by adding separate Rules.
for _, arg := range args {
rule := seccomp.PerArg{nil, nil, nil, nil, nil, nil}
if err := convertRule(arg, &rule); err != nil {
return nil, err
}
rules = append(rules, rule)
}
return rules, nil
}
// Add rules as ANDs by adding to the same Rule.
rule := seccomp.PerArg{nil, nil, nil, nil, nil, nil}
for _, arg := range args {
if err := convertRule(arg, &rule); err != nil {
return nil, err
}
}
return rule, nil
}
// convertRule converts and adds the arg to a PerArg rule.
func convertRule(arg specs.LinuxSeccompArg, perArg *seccomp.PerArg) error {
switch arg.Op {
case specs.OpEqualTo:
perArg[arg.Index] = seccomp.EqualTo(arg.Value)
case specs.OpNotEqual:
perArg[arg.Index] = seccomp.NotEqual(arg.Value)
case specs.OpGreaterThan:
perArg[arg.Index] = seccomp.GreaterThan(arg.Value)
case specs.OpGreaterEqual:
perArg[arg.Index] = seccomp.GreaterThanOrEqual(arg.Value)
case specs.OpLessThan:
perArg[arg.Index] = seccomp.LessThan(arg.Value)
case specs.OpLessEqual:
perArg[arg.Index] = seccomp.LessThanOrEqual(arg.Value)
case specs.OpMaskedEqual:
perArg[arg.Index] = seccomp.MaskedEqual(uintptr(arg.Value), uintptr(arg.ValueTwo))
default:
return fmt.Errorf("unsupported operand: %q", arg.Op)
}
return nil
}
|