Merge "seccomp: allow stat() for ubsan."

This commit is contained in:
Elliott Hughes 2022-05-04 16:35:26 +00:00 committed by Gerrit Code Review
commit 082b9290d0
1 changed files with 2 additions and 0 deletions

View File

@ -31,6 +31,8 @@ int seccomp:seccomp(unsigned int operation, unsigned int flags, void *args) all
int open:open(const char*, int, ...) arm,x86,x86_64
int stat64:stat64(const char*, struct stat64*) arm,x86
ssize_t readlink:readlink(const char*, char*, size_t) arm,x86,x86_64
# Needed by ubsan in T? (http://b/229989971)
int stat(const char*, struct stat*) arm,x86,x86_64
#
# Useful new syscalls which we don't yet use in bionic.