diff options
author | Mitch Phillips <mitchp@google.com> | 2019-09-10 17:58:17 -0700 |
---|---|---|
committer | Mitch Phillips <mitchp@google.com> | 2019-11-13 10:45:12 -0800 |
commit | 7f3cdad0f177e4ec0d76be89e352f1774d5e5559 (patch) | |
tree | 19e44b4a5c0f3b44fde83e28e556665c850eb932 /configstore | |
parent | bbdd5e32fd5a5d6e8b13c8f2a0c12e02ea037953 (diff) |
Add gettid() to SELinux policy in prep for GWP-ASan.
GWP-ASan is a sampled allocator framework that is planned for rollout in
Android R. It instruments the bionic allocator, and requires gettid()
during its initialisation.
Ensure that we can call gettid() from configstore.
Bug: 135634846
Test: N/A
Change-Id: I4a92c989ffde9051831e858e805fc20ae993dc01
Diffstat (limited to 'configstore')
-rw-r--r-- | configstore/1.1/default/seccomp_policy/configstore@1.1-arm64.policy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configstore/1.1/default/seccomp_policy/configstore@1.1-arm64.policy b/configstore/1.1/default/seccomp_policy/configstore@1.1-arm64.policy index 937fddd67b..a609620994 100644 --- a/configstore/1.1/default/seccomp_policy/configstore@1.1-arm64.policy +++ b/configstore/1.1/default/seccomp_policy/configstore@1.1-arm64.policy @@ -45,6 +45,7 @@ madvise: 1 getdents64: 1 clock_gettime: 1 getpid: 1 +gettid: 1 # used during process crash by crash_dump to dump process info rt_sigprocmask: 1 |