mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
PolicyBuilder: ignore duplicate calls to more complex helpers
PiperOrigin-RevId: 608318563 Change-Id: I3db1dd4e4a8d83a8069b68f1e84a1a8b7277bcdc
This commit is contained in:
parent
34f129dc51
commit
008b45c9b7
|
@ -221,6 +221,10 @@ PolicyBuilder& PolicyBuilder::AllowExit() {
|
|||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowScudoMalloc() {
|
||||
if (allowed_complex_.scudo_malloc) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.scudo_malloc = true;
|
||||
AllowTime();
|
||||
AllowSyscalls({__NR_munmap, __NR_nanosleep});
|
||||
AllowFutexOp(FUTEX_WAKE);
|
||||
|
@ -259,6 +263,10 @@ PolicyBuilder& PolicyBuilder::AllowScudoMalloc() {
|
|||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowTcMalloc() {
|
||||
if (allowed_complex_.tcmalloc) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.tcmalloc = true;
|
||||
AllowTime();
|
||||
AllowRestartableSequences(kRequireFastFences);
|
||||
AllowSyscalls(
|
||||
|
@ -298,6 +306,10 @@ PolicyBuilder& PolicyBuilder::AllowTcMalloc() {
|
|||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowSystemMalloc() {
|
||||
if (allowed_complex_.system_malloc) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.system_malloc = true;
|
||||
AllowSyscalls({__NR_munmap, __NR_brk});
|
||||
AllowFutexOp(FUTEX_WAKE);
|
||||
AddPolicyOnSyscall(__NR_mremap, {
|
||||
|
@ -330,6 +342,10 @@ PolicyBuilder& PolicyBuilder::AllowLlvmSanitizers() {
|
|||
if constexpr (!sapi::sanitizers::IsAny()) {
|
||||
return *this;
|
||||
}
|
||||
if (allowed_complex_.llvm_sanitizers) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.llvm_sanitizers = true;
|
||||
// *san use a custom allocator that runs mmap/unmap under the hood. For
|
||||
// example:
|
||||
// https://github.com/llvm/llvm-project/blob/596d534ac3524052df210be8d3c01a33b2260a42/compiler-rt/lib/asan/asan_allocator.cpp#L980
|
||||
|
@ -383,6 +399,10 @@ PolicyBuilder& PolicyBuilder::AllowLlvmCoverage() {
|
|||
if (!sapi::IsCoverageRun()) {
|
||||
return *this;
|
||||
}
|
||||
if (allowed_complex_.llvm_coverage) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.llvm_coverage = true;
|
||||
AllowStat();
|
||||
AllowGetPIDs();
|
||||
AllowOpen();
|
||||
|
@ -411,6 +431,10 @@ PolicyBuilder& PolicyBuilder::AllowLlvmCoverage() {
|
|||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowLimitedMadvise() {
|
||||
if (allowed_complex_.limited_madvise) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.limited_madvise = true;
|
||||
return AddPolicyOnSyscall(__NR_madvise, {
|
||||
ARG_32(2),
|
||||
JEQ32(MADV_DONTNEED, ALLOW),
|
||||
|
@ -421,6 +445,10 @@ PolicyBuilder& PolicyBuilder::AllowLimitedMadvise() {
|
|||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowMmapWithoutExec() {
|
||||
if (allowed_complex_.mmap_without_exec) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.mmap_without_exec = true;
|
||||
return AddPolicyOnMmap({
|
||||
ARG_32(2),
|
||||
BPF_JUMP(BPF_JMP | BPF_JSET | BPF_K, PROT_EXEC, 1, 0),
|
||||
|
@ -639,6 +667,10 @@ PolicyBuilder& PolicyBuilder::AllowUtime() {
|
|||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowSafeFcntl() {
|
||||
if (allowed_complex_.safe_fcntl) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.safe_fcntl = true;
|
||||
return AddPolicyOnSyscalls({__NR_fcntl,
|
||||
#ifdef __NR_fcntl64
|
||||
__NR_fcntl64
|
||||
|
@ -709,6 +741,10 @@ PolicyBuilder& PolicyBuilder::AllowHandleSignals() {
|
|||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowTCGETS() {
|
||||
if (allowed_complex_.tcgets) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.tcgets = true;
|
||||
return AddPolicyOnSyscall(__NR_ioctl, {
|
||||
ARG_32(1),
|
||||
JEQ32(TCGETS, ALLOW),
|
||||
|
@ -752,6 +788,7 @@ PolicyBuilder& PolicyBuilder::AllowGetIDs() {
|
|||
|
||||
PolicyBuilder& PolicyBuilder::AllowRestartableSequences(
|
||||
CpuFenceMode cpu_fence_mode) {
|
||||
if (!allowed_complex_.slow_fences && !allowed_complex_.fast_fences) {
|
||||
#ifdef __NR_rseq
|
||||
AllowSyscall(__NR_rseq);
|
||||
#endif
|
||||
|
@ -780,15 +817,18 @@ PolicyBuilder& PolicyBuilder::AllowRestartableSequences(
|
|||
JEQ32(SIG_SETMASK, ALLOW),
|
||||
});
|
||||
AllowPrctlSetVma();
|
||||
if (cpu_fence_mode == kAllowSlowFences) {
|
||||
AllowSyscall(__NR_sched_getaffinity);
|
||||
AllowSyscall(__NR_sched_setaffinity);
|
||||
}
|
||||
|
||||
AddFileIfNamespaced("/proc/cpuinfo");
|
||||
AddFileIfNamespaced("/proc/stat");
|
||||
AddDirectoryIfNamespaced("/sys/devices/system/cpu");
|
||||
if (cpu_fence_mode == kAllowSlowFences) {
|
||||
}
|
||||
if (cpu_fence_mode == kAllowSlowFences && !allowed_complex_.slow_fences) {
|
||||
AllowSyscall(__NR_sched_getaffinity);
|
||||
AllowSyscall(__NR_sched_setaffinity);
|
||||
AddFileIfNamespaced("/proc/self/cpuset");
|
||||
allowed_complex_.slow_fences = true;
|
||||
} else if (cpu_fence_mode == kRequireFastFences) {
|
||||
allowed_complex_.fast_fences = true;
|
||||
}
|
||||
return *this;
|
||||
}
|
||||
|
@ -811,6 +851,10 @@ PolicyBuilder& PolicyBuilder::AllowGetPGIDs() {
|
|||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowGetRlimit() {
|
||||
if (allowed_complex_.getrlimit) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.getrlimit = true;
|
||||
#ifdef __NR_prlimit64
|
||||
AddPolicyOnSyscall(__NR_prlimit64, {ARG(2), JEQ64(0, 0, ALLOW)});
|
||||
#endif
|
||||
|
@ -839,6 +883,10 @@ PolicyBuilder& PolicyBuilder::AllowSetRlimit() {
|
|||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowGetRandom() {
|
||||
if (allowed_complex_.getrandom) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.getrandom = true;
|
||||
return AddPolicyOnSyscall(__NR_getrandom, {
|
||||
ARG_32(2),
|
||||
JEQ32(0, ALLOW),
|
||||
|
@ -847,6 +895,10 @@ PolicyBuilder& PolicyBuilder::AllowGetRandom() {
|
|||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowWipeOnFork() {
|
||||
if (allowed_complex_.wipe_on_fork) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.wipe_on_fork = true;
|
||||
// System headers may not be recent enough to include MADV_WIPEONFORK.
|
||||
static constexpr uint32_t kMadv_WipeOnFork = 18;
|
||||
// The -1 value is used by code to probe that the kernel returns -EINVAL for
|
||||
|
@ -861,6 +913,10 @@ PolicyBuilder& PolicyBuilder::AllowWipeOnFork() {
|
|||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowLogForwarding() {
|
||||
if (allowed_complex_.log_forwarding) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.log_forwarding = true;
|
||||
AllowWrite();
|
||||
AllowSystemMalloc();
|
||||
AllowTcMalloc();
|
||||
|
@ -939,11 +995,19 @@ PolicyBuilder& PolicyBuilder::AllowEventFd() {
|
|||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowPrctlSetName() {
|
||||
if (allowed_complex_.prctl_set_name) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.prctl_set_name = true;
|
||||
AddPolicyOnSyscall(__NR_prctl, {ARG_32(0), JEQ32(PR_SET_NAME, ALLOW)});
|
||||
return *this;
|
||||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowPrctlSetVma() {
|
||||
if (allowed_complex_.prctl_set_vma) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.prctl_set_vma = true;
|
||||
AddPolicyOnSyscall(__NR_prctl,
|
||||
[](bpf_labels& labels) -> std::vector<sock_filter> {
|
||||
return {
|
||||
|
@ -969,10 +1033,16 @@ PolicyBuilder& PolicyBuilder::AllowFutexOp(int op) {
|
|||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowStaticStartup() {
|
||||
if (allowed_complex_.static_startup) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.static_startup = true;
|
||||
AllowGetRlimit();
|
||||
AllowSyscalls({
|
||||
// These syscalls take a pointer, so no restriction.
|
||||
__NR_uname, __NR_brk, __NR_set_tid_address,
|
||||
__NR_uname,
|
||||
__NR_brk,
|
||||
__NR_set_tid_address,
|
||||
|
||||
#if defined(__ARM_NR_set_tls)
|
||||
// libc sets the TLS during startup
|
||||
|
@ -1023,6 +1093,10 @@ PolicyBuilder& PolicyBuilder::AllowStaticStartup() {
|
|||
}
|
||||
|
||||
PolicyBuilder& PolicyBuilder::AllowDynamicStartup() {
|
||||
if (allowed_complex_.dynamic_startup) {
|
||||
return *this;
|
||||
}
|
||||
allowed_complex_.dynamic_startup = true;
|
||||
#ifdef __ANDROID__
|
||||
AllowSafeFcntl();
|
||||
AllowGetIDs();
|
||||
|
|
|
@ -812,6 +812,28 @@ class PolicyBuilder final {
|
|||
absl::Status last_status_;
|
||||
bool already_built_ = false;
|
||||
|
||||
struct {
|
||||
bool static_startup = false;
|
||||
bool dynamic_startup = false;
|
||||
bool system_malloc = false;
|
||||
bool scudo_malloc = false;
|
||||
bool tcmalloc = false;
|
||||
bool llvm_sanitizers = false;
|
||||
bool llvm_coverage = false;
|
||||
bool limited_madvise = false;
|
||||
bool mmap_without_exec = false;
|
||||
bool safe_fcntl = false;
|
||||
bool tcgets = false;
|
||||
bool slow_fences = false;
|
||||
bool fast_fences = false;
|
||||
bool getrlimit = false;
|
||||
bool getrandom = false;
|
||||
bool wipe_on_fork = false;
|
||||
bool log_forwarding = false;
|
||||
bool prctl_set_name = false;
|
||||
bool prctl_set_vma = false;
|
||||
} allowed_complex_;
|
||||
|
||||
// Contains list of allowed hosts.
|
||||
absl::optional<AllowedHosts> allowed_hosts_;
|
||||
};
|
||||
|
|
|
@ -89,8 +89,8 @@ TEST(PolicyBuilderTest, Testpolicy_size) {
|
|||
assert_increased();
|
||||
|
||||
builder.AllowTCGETS(); assert_increased();
|
||||
builder.AllowTCGETS(); assert_increased();
|
||||
builder.AllowTCGETS(); assert_increased();
|
||||
builder.AllowTCGETS(); assert_same();
|
||||
builder.AllowTCGETS(); assert_same();
|
||||
|
||||
builder.AddPolicyOnSyscall(__NR_fchmod, { ALLOW }); assert_increased();
|
||||
builder.AddPolicyOnSyscall(__NR_fchmod, { ALLOW }); assert_increased();
|
||||
|
|
Loading…
Reference in New Issue
Block a user