summaryrefslogtreecommitdiff
path: root/chromium/pdf
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2021-09-16 13:17:58 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2021-10-04 10:21:04 +0200
commit0080853ab63f0f28b835360839df87868a76f396 (patch)
treeab664f448890db59b0df0a03d69880143746df78 /chromium/pdf
parentb6fc11be60033b64b1dc20eeafd706cf742c9e81 (diff)
downloadqtwebengine-chromium-0080853ab63f0f28b835360839df87868a76f396.tar.gz
[Backport] Linux sandbox: fix fstatat() crash
This is a reland of https://crrev.com/c/2801873. Glibc has started rewriting fstat(fd, stat_buf) to fstatat(fd, "", stat_buf, AT_EMPTY_PATH). This works because when AT_EMPTY_PATH is specified, and the second argument is an empty string, then fstatat just performs an fstat on fd like normal. Unfortunately, fstatat() also allows stat-ing arbitrary pathnames like with fstatat(AT_FDCWD, "/i/am/a/file", stat_buf, 0); The baseline policy needs to prevent this usage of fstatat() since it doesn't allow access to arbitrary pathnames. Sadly, if the second argument is not an empty string, AT_EMPTY_PATH is simply ignored by current kernels. This means fstatat() is completely unsandboxable with seccomp, since we *need* to verify that the second argument is the empty string, but we can't dereference pointers in seccomp (due to limitations of BPF, and the difficulty of addressing these limitations due to TOCTOU issues). So, this CL Traps (raises a SIGSYS via seccomp) on any fstatat syscall. The signal handler, which runs in the sandboxed process, checks for AT_EMPTY_PATH and the empty string, and then rewrites any applicable fstatat() back into the old-style fstat(). Bug: 1164975 Change-Id: I3df6c04c0d781eb1f181d707ccaaead779337291 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3042179 Reviewed-by: Robert Sesek <rsesek@chromium.org> Commit-Queue: Matthew Denton <mpdenton@chromium.org> Cr-Commit-Position: refs/heads/master@{#903873}
Diffstat (limited to 'chromium/pdf')
0 files changed, 0 insertions, 0 deletions