Closed
Bug 1433636
Opened 7 years ago
Closed 7 years ago
Crash in OOM | large | NS_ABORT_OOM | mozilla::safebrowsing::`anonymous namespace'::ReadValue<T>
Categories
(Toolkit :: Safe Browsing, defect, P1)
Tracking
()
RESOLVED
FIXED
mozilla60
Tracking | Status | |
---|---|---|
firefox-esr52 | --- | unaffected |
firefox58 | --- | wontfix |
firefox59 | --- | fixed |
firefox60 | --- | fixed |
People
(Reporter: philipp, Assigned: francois)
Details
(Keywords: crash, regression)
Crash Data
Attachments
(2 files)
59 bytes,
text/x-review-board-request
|
gcp
:
review+
lizzard
:
approval-mozilla-beta+
|
Details |
1.30 KB,
text/plain
|
rrayborn
:
review+
|
Details |
This bug was filed from the Socorro interface and is
report bp-30e684b7-fc2d-404c-9db7-3bad40180126.
=============================================================
Top 10 frames of crashing thread:
0 xul.dll NS_ABORT_OOM xpcom/base/nsDebugImpl.cpp:620
1 xul.dll mozilla::safebrowsing::`anonymous namespace'::ReadValue<nsTSubstring<char> > toolkit/components/url-classifier/LookupCacheV4.cpp:472
2 xul.dll mozilla::safebrowsing::LookupCacheV4::LoadMetadata toolkit/components/url-classifier/LookupCacheV4.cpp:544
3 xul.dll mozilla::safebrowsing::LookupCacheV4::LoadFromFile toolkit/components/url-classifier/LookupCacheV4.cpp:169
4 xul.dll mozilla::safebrowsing::LookupCache::LoadPrefixSet toolkit/components/url-classifier/LookupCache.cpp:478
5 xul.dll mozilla::safebrowsing::LookupCache::Open toolkit/components/url-classifier/LookupCache.cpp:83
6 xul.dll mozilla::safebrowsing::Classifier::GetLookupCache toolkit/components/url-classifier/Classifier.cpp:1467
7 xul.dll mozilla::safebrowsing::Classifier::RegenActiveTables toolkit/components/url-classifier/Classifier.cpp:927
8 xul.dll mozilla::safebrowsing::Classifier::Open toolkit/components/url-classifier/Classifier.cpp:262
9 xul.dll nsUrlClassifierDBServiceWorker::OpenDb toolkit/components/url-classifier/nsUrlClassifierDBService.cpp:974
=============================================================
out of memory crashes at startup with this signature show up since firefox 58 on 32-bit and 64-bit builds on windows and they show particularly large memory allocation sizes. over all the crash volume is quite low though...
Assignee | ||
Updated•7 years ago
|
Assignee: nobody → francois
Status: NEW → ASSIGNED
Priority: -- → P1
Comment hidden (mozreview-request) |
Assignee | ||
Comment 2•7 years ago
|
||
To test my patch, I followed these steps:
1. Create a new browser profile and start Firefox.
2. Trigger a google4 update using about:url-classifier.
3. Try the phishing and malware test page on http://testsafebrowsing.appspot.com.
4. Close Firefox.
5. Go into the cache directory and edit safebrowsing/google4/goog-phish-proto.metadata.
6. Append the string "AAAA" at the start of the file and save.
7. Start Firefox again.
8. Clear the browser cache.
9. Try the phishing and malware test page on http://testsafebrowsing.appspot.com.
10. Trigger a google4 update using about:url-classifier.
11. Clear the browser cache.
12. Try the phishing and malware test page on http://testsafebrowsing.appspot.com.
Results (as expected):
- Test pages are correctly blocked at steps 3 and 12.
- Test pages are not blocked at step 10.
In other words, loading a single failed table from disk will cause the whole google4 database to be blown away. The next update will start from a blank state and work fine.
I also confirmed that without my patch, the same steps would crash the browser at startup.
Comment 3•7 years ago
|
||
mozreview-review |
Comment on attachment 8947322 [details]
Bug 1433636 - Put a limit on the length of Safe Browsing metadata values.
https://reviewboard.mozilla.org/r/217038/#review223220
If the real limit is 32, why not enforce that instead? If you read 33 now, you know the file is corrupted?
Attachment #8947322 -
Flags: review?(gpascutto) → review+
Assignee | ||
Comment 4•7 years ago
|
||
(In reply to Gian-Carlo Pascutto [:gcp] from comment #3)
> If the real limit is 32, why not enforce that instead? If you read 33 now,
> you know the file is corrupted?
That's not actually a limit, but rather what the value currently is. It's the opaque "state" string and its size is not specified. I figured I'd use something much larger in case Google decides to use longer strings in the future.
Comment hidden (mozreview-request) |
Assignee | ||
Comment 6•7 years ago
|
||
I added a new telemetry probe to keep an eye on how often this condition occurs and to detect any unusual increases in this kind of failure.
Attachment #8947979 -
Flags: review?(rrayborn)
Updated•7 years ago
|
Comment 7•7 years ago
|
||
Comment on attachment 8947979 [details]
data review request
1) Is there or will there be **documentation** that describes the schema for the ultimate data set available publicly, complete and accurate? (see [here](https://github.com/mozilla/activity-stream/blob/master/docs/v2-system-addon/data_dictionary.md), [here](https://github.com/mozilla-mobile/focus/wiki/Install-and-event-tracking-with-the-Adjust-SDK), and [here](https://firefox-source-docs.mozilla.org/toolkit/components/telemetry/telemetry/index.html) for examples). Refer to the appendix for "documentation" if more detail about documentation standards is needed.
Yes, in Telemetry declarations in code
2) Is there a control mechanism that allows the user to turn the data collection on and off? (Note, for data collection not needed for security purposes, Mozilla provides such a control mechanism) Provide details as to the control mechanism available.
Yes, Telemetry
3) If the request is for permanent data collection, is there someone who will monitor the data over time?**
Yes. This is needed to note when our max length assumption fails. It appears that may happen in the result of regular corruption or if the 3rd party data source changes.
4) Using the **[category system of data types](https://wiki.mozilla.org/Firefox/Data_Collection)** on the Mozilla wiki, what collection type of data do the requested measurements fall under? **
Category 1
5) Is the data collection request for default-on or default-off?
Default-on
6) Does the instrumentation include the addition of **any *new* identifiers**?
No
7) Is the data collection covered by the existing Firefox privacy notice?
Yes
8) Does there need to be a check-in in the future to determine whether to renew the data?
No
Attachment #8947979 -
Flags: review?(rrayborn) → review+
Pushed by fmarier@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/55dddaa9b77c
Put a limit on the length of Safe Browsing metadata values. r=gcp
Comment 9•7 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 7 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla60
Comment 10•7 years ago
|
||
Please request Beta approval on this when you get a chance.
Flags: needinfo?(francois)
Assignee | ||
Comment 11•7 years ago
|
||
Comment on attachment 8947322 [details]
Bug 1433636 - Put a limit on the length of Safe Browsing metadata values.
Approval Request Comment
[Feature/Bug causing the regression]: Bug 1433636
[User impact if declined]: If the Safe Browsing files get corrupted on disk, the browser can crash at startup.
[Is this code covered by automated tests?]: No
[Has the fix been verified in Nightly?]: Yes, manually by me.
[Needs manual test from QE? If yes, steps to reproduce]: Probably not needed but instructions are at https://bugzilla.mozilla.org/show_bug.cgi?id=1433636#c2
[List of other uplifts needed for the feature/fix]: None
[Is the change risky?]: No
[Why is the change risky/not risky?]: It's only really adding a single early return when we read bogus value from disk.
[String changes made/needed]: None
Flags: needinfo?(francois)
Attachment #8947322 -
Flags: approval-mozilla-beta?
Comment 12•7 years ago
|
||
Comment on attachment 8947322 [details]
Bug 1433636 - Put a limit on the length of Safe Browsing metadata values.
Not a high volume crash but it's nice that we can prevent it.
Let's uplift this for 59 beta 12.
Attachment #8947322 -
Flags: approval-mozilla-beta? → approval-mozilla-beta+
Comment 13•7 years ago
|
||
bugherder uplift |
You need to log in
before you can comment on or make changes to this bug.
Description
•