You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#29 did basic port to ARM64, but Linux on different architectures (like x86_64 and ARM64) can execute different syscalls for the same code, and Jail needs to take that into consideration.
At least one such case is known. For the following Python code:
importosos.access('/', os.F_OK)
x86_64 executes access but ARM64 executes faccessat. Currently, access is checked for path but faccessat is not.
The text was updated successfully, but these errors were encountered:
#29 did basic port to ARM64, but Linux on different architectures (like x86_64 and ARM64) can execute different syscalls for the same code, and Jail needs to take that into consideration.
At least one such case is known. For the following Python code:
x86_64 executes
access
but ARM64 executesfaccessat
. Currently,access
is checked for path butfaccessat
is not.The text was updated successfully, but these errors were encountered: