Merge "Allow app_zygote to map memfd backed memeory as PROT_EXEC"

This commit is contained in:
Dimitry Ivanov 2023-06-15 08:44:16 +00:00 committed by Gerrit Code Review
commit c01d3fb36c

View file

@ -20,6 +20,9 @@ allow app_zygote isolated_app:process dyntransition;
# For JIT
allow app_zygote self:process execmem;
# Allow exec mapping from tmpfs (memfds) for binary translation
allow app_zygote app_zygote_tmpfs:file execute;
# Allow app_zygote to stat the files that it opens. It must
# be able to inspect them so that it can reopen them on fork
# if necessary: b/30963384.