-
-
Notifications
You must be signed in to change notification settings - Fork 71
ref(download): Use download service for objectstore requests #1928
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
jjbayer
wants to merge
9
commits into
master
Choose a base branch
from
ref/apple-download-2
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+31
−43
Draft
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
7fa8682
Write a test, see it fail
jjbayer 3de2a6a
fix
jjbayer 1d9aba2
Revert "fix"
jjbayer 6123ab1
fix simple
jjbayer 019a257
fix
jjbayer 88aa747
Merge branch 'master' into ref/apple-download-2
jjbayer 4ac11f9
Merge branch 'master' into ref/apple-download-2
jjbayer 5a0de8c
fix
jjbayer a1a8410
Merge branch 'master' into ref/apple-download-2
jjbayer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remote minidump attachment decompression has no effective CPU bound despite 15GiB output cap
An attacker-controlled storage URL can serve a tiny zstd/gzip/zlib/zip/CAB payload that
fetch_filesynchronously inflates into a temporary file after the download timeout has ended. Although output is capped at the default 15GiB, the decompression and subsequent minidump processing have no decompression-specific CPU budget; the outer request timeout cannot preempt this synchronous block, allowing substantial CPU and disk exhaustion on the shared worker pool.Evidence
/symbolicate-anyaccepts attacker-controlledstorage_urlvalues and constructsAttachmentFile::Remote;process_minidumppasses them todownload_attachment(crates/symbolicator/src/endpoints/symbolicate_any.rs:42-72,crates/symbolicator-native/src/symbolication/process_minidump.rs:602-634).download_attachmentcallsfetch_file(crates/symbolicator-native/src/symbolication/attachments.rs:23-36), which invokesDownloadService::downloadand then synchronously callsmaybe_decompress_fileafter the download timeout (crates/symbolicator-service/src/download/fetch_file.rs:18-37).maybe_decompress_fileusestake(max_uncompressed_size + 1)but still copies up to the configured limit into a temporary file before checking its size; the shipped default is 15GiB and no CPU or decompression-time budget exists (crates/symbolicator-service/src/download/compression.rs:31-145,crates/symbolicator-service/src/config.rs:553-556,670-674).crates/symbolicator-native/src/symbolication/process_minidump.rs:628-634,491); processing runs on the CPU pool and the default request admission limit allows 200 concurrent requests (crates/symbolicator/src/service.rs:242-259,428-518).Identified by Warden · wrdn-dos-review · MZN-DLX