Skip to content

Commit

Permalink
Allow sigaltstack
Browse files Browse the repository at this point in the history
`absl::GetStackTrace` on Aarch64 since
abseil/abseil-cpp@bb7bbb1 will call sigaltstack.

PiperOrigin-RevId: 581914257
Change-Id: I316bdd64d1cef8a6327838681bda0067a0dc50fc
  • Loading branch information
happyCoder92 authored and copybara-github committed Nov 13, 2023
1 parent bc3c0ec commit 15fb5b9
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ std::unique_ptr<sandbox2::Policy> GetPolicy(absl::string_view sandboxee_path) {
.AllowSyscall(__NR_lseek)
.AllowSyscall(__NR_munmap)
.AllowSyscall(__NR_getpid)
.AllowSyscall(__NR_sigaltstack)
.AllowTcMalloc()
.AddLibrariesForBinary(sandboxee_path);
if (absl::GetFlag(FLAGS_connect_with_handler)) {
Expand Down

0 comments on commit 15fb5b9

Please sign in to comment.