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
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "sandbox/policy/linux/bpf_audio_policy_linux.h"
#include <sys/socket.h>
#include "sandbox/linux/bpf_dsl/bpf_dsl.h"
#include "sandbox/linux/seccomp-bpf-helpers/sigsys_handlers.h"
#include "sandbox/linux/seccomp-bpf-helpers/syscall_parameters_restrictions.h"
#include "sandbox/linux/seccomp-bpf-helpers/syscall_sets.h"
#include "sandbox/linux/services/syscall_wrappers.h"
#include "sandbox/linux/syscall_broker/broker_process.h"
#include "sandbox/linux/system_headers/linux_futex.h"
#include "sandbox/linux/system_headers/linux_syscalls.h"
#include "sandbox/policy/linux/sandbox_linux.h"
using sandbox::bpf_dsl::Allow;
using sandbox::bpf_dsl::Arg;
using sandbox::bpf_dsl::Error;
using sandbox::bpf_dsl::If;
using sandbox::bpf_dsl::ResultExpr;
using sandbox::bpf_dsl::Trap;
using sandbox::syscall_broker::BrokerProcess;
namespace sandbox {
namespace policy {
AudioProcessPolicy::AudioProcessPolicy() = default;
AudioProcessPolicy::~AudioProcessPolicy() = default;
ResultExpr AudioProcessPolicy::EvaluateSyscall(int system_call_number) const {
switch (system_call_number) {
#if defined(__NR_connect)
case __NR_connect:
#endif
#if defined(__NR_ftruncate)
case __NR_ftruncate:
#endif
#if defined(__NR_ftruncate64)
case __NR_ftruncate64:
#endif
#if defined(__NR_fallocate)
case __NR_fallocate:
#endif
#if defined(__NR_getdents)
case __NR_getdents:
#endif
#if defined(__NR_getpeername)
case __NR_getpeername:
#endif
#if defined(__NR_getsockopt)
case __NR_getsockopt:
#endif
#if defined(__NR_getsockname)
case __NR_getsockname:
#endif
#if defined(__NR_ioctl)
case __NR_ioctl:
#endif
#if defined(__NR_pwrite)
case __NR_pwrite:
#endif
#if defined(__NR_pwrite64)
case __NR_pwrite64:
#endif
#if defined(__NR_setsockopt)
case __NR_setsockopt:
#endif
#if defined(__NR_uname)
case __NR_uname:
#endif
return Allow();
#if defined(__NR_futex)
case __NR_futex:
#if defined(__i386__) || defined(__arm__) || \
(defined(ARCH_CPU_MIPS_FAMILY) && defined(ARCH_CPU_32_BITS))
case __NR_futex_time64:
#endif
{
const Arg<int> op(1);
#if defined(USE_PULSEAUDIO)
return Switch(op & ~(FUTEX_PRIVATE_FLAG | FUTEX_CLOCK_REALTIME))
.Cases({FUTEX_CMP_REQUEUE,
FUTEX_LOCK_PI,
FUTEX_UNLOCK_PI,
FUTEX_WAIT,
FUTEX_WAIT_BITSET,
FUTEX_WAKE},
Allow())
.Default(Error(EPERM));
#else
return RestrictFutex();
#endif
}
#endif
#if defined(__NR_kill)
case __NR_kill: {
// man kill says:
// "If sig is 0, then no signal is sent, but existence and permission
// checks are still performed; this can be used to check for the
// existence of a process ID or process group ID that the caller is
// permitted to signal."
//
// This seems to be tripping up at least ESET's NOD32 anti-virus, causing
// an unnecessary crash in the audio process. See: http://crbug.com/904787
const Arg<pid_t> pid(0);
const Arg<int> sig(1);
return If(pid == sys_getpid(), Allow())
.ElseIf(sig == 0, Error(EPERM))
.Else(CrashSIGSYSKill());
}
#endif
#if defined(__NR_socket)
case __NR_socket: {
const Arg<int> domain(0);
return If(domain == AF_UNIX, Allow()).Else(Error(EPERM));
}
#endif
default:
#if defined(__x86_64__)
if (SyscallSets::IsSystemVSemaphores(system_call_number) ||
SyscallSets::IsSystemVSharedMemory(system_call_number)) {
return Allow();
}
#elif defined(__i386__)
if (SyscallSets::IsSystemVIpc(system_call_number))
return Allow();
#endif
auto* sandbox_linux = SandboxLinux::GetInstance();
if (sandbox_linux->ShouldBrokerHandleSyscall(system_call_number))
return sandbox_linux->HandleViaBroker(system_call_number);
return BPFBasePolicy::EvaluateSyscall(system_call_number);
}
}
} // namespace policy
} // namespace sandbox
|