Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dmoj/cptbox/isolate.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def _access_check(self, debugger: Debugger, file: str, fs_jail: FilesystemPolicy
real = os.path.realpath(file)

try:
same = normalized == real or os.path.samefile(projected, real)
same = projected == real or os.path.samefile(projected, real)
except OSError:
raise DeniedSyscall(ACCESS_ENOENT, f'Cannot stat, file: {file}, projected: {projected}, real: {real}')

Expand All @@ -366,7 +366,7 @@ def _access_check(self, debugger: Debugger, file: str, fs_jail: FilesystemPolicy
if not fs_jail.check(normalized):
raise DeniedSyscall(ACCESS_EACCES, f'Denying {file}, normalized to {normalized}')

if normalized != real:
if projected != real:
proc_dir = f'/proc/{debugger.tid}'
if real.startswith(proc_dir):
real = os.path.join('/proc/self', os.path.relpath(real, proc_dir))
Expand Down