Implement enabling RSEQ inside AllowTcMalloc in terms of AllowRestartableSequences()

PiperOrigin-RevId: 368208391
Change-Id: Ie1204cb3a0824ebe54b770e2669ae31f7932ed51
This commit is contained in:
Martijn Vels 2021-04-13 07:14:17 -07:00 committed by Copybara-Service
parent 5eb412ac32
commit 2efaa463c9
2 changed files with 28 additions and 5 deletions

View File

@ -127,7 +127,7 @@ PolicyBuilder& PolicyBuilder::AllowScudoMalloc() {
PolicyBuilder& PolicyBuilder::AllowTcMalloc() {
AllowTime();
AllowRestartableSequences();
AllowRestartableSequences(kRequireFastFences);
AllowSyscalls(
{__NR_munmap, __NR_nanosleep, __NR_brk, __NR_mincore, __NR_membarrier});
AllowLimitedMadvise();
@ -422,7 +422,8 @@ PolicyBuilder& PolicyBuilder::AllowGetIDs() {
});
}
PolicyBuilder& PolicyBuilder::AllowRestartableSequences() {
PolicyBuilder& PolicyBuilder::AllowRestartableSequences(
CpuFenceMode cpu_fence_mode) {
AddPolicyOnMmap([](bpf_labels& labels) -> std::vector<sock_filter> {
return {
ARG_32(2), // prot
@ -432,7 +433,10 @@ PolicyBuilder& PolicyBuilder::AllowRestartableSequences() {
JEQ32(MAP_PRIVATE | MAP_ANONYMOUS, ALLOW),
};
});
if (cpu_fence_mode == kAllowSlowFences) {
AddFile("/proc/self/cpuset");
AllowSyscalls({__NR_sched_getaffinity, __NR_sched_setaffinity});
}
#ifdef __NR_rseq
AllowSyscall(__NR_rseq);
#endif
@ -804,7 +808,8 @@ PolicyBuilder& PolicyBuilder::AddFileAt(absl::string_view outside,
}
auto fixed_outside = std::move(fixed_outside_or).value();
if (absl::StartsWith(fixed_outside, "/proc/self")) {
if (absl::StartsWith(fixed_outside, "/proc/self") &&
fixed_outside != "/proc/self/cpuset") {
SetError(absl::InvalidArgumentError(
absl::StrCat("Cannot add /proc/self mounts, you need to mount the "
"whole /proc instead. You tried to mount ",

View File

@ -89,6 +89,15 @@ namespace sandbox2 {
// For a more complicated example, see examples/persistent/persistent_sandbox.cc
class PolicyBuilder final {
public:
// Possible CPU fence modes for `AllowRestartableSequences()`
enum CpuFenceMode {
// Allow only fast fences for restartable sequences.
kRequireFastFences,
// Allow fast fences as well as slow fences if fast fences are unavailable.
kAllowSlowFences,
};
static constexpr absl::string_view kDefaultHostname = "sandbox2";
using BpfInitializer = std::initializer_list<sock_filter>;
@ -120,7 +129,16 @@ class PolicyBuilder final {
// - membarrier
// - futex(WAIT) and futex(WAKE)
// - sigmask(SET_MASK)
PolicyBuilder& AllowRestartableSequences();
//
// If `cpu_fence_mode` is `kAllowSlowFences`, allow for slow cpu fences which
// will enable namespaces and these syscalls and files:
// - sched_getaffinity
// - sched_setaffinity
// - "/proc/self/cpuset"
//
// If `allow_slow_fences` is false, RSEQ functions may not be enabled if
// fast CPU fences are not available.
PolicyBuilder& AllowRestartableSequences(CpuFenceMode cpu_fence_mode);
// Appends code to allow the scudo version of malloc, free and
// friends. This should be used in conjunction with namespaces. If scudo