Closed Bug 1606864 Opened 4 years ago Closed 3 years ago

ThreadSanitizer: data race [@ mozilla::net::nsSocketTransport::Close] vs. [@ mozilla::net::nsSocketTransport::OnSocketDetached]

Categories

(Core :: Networking, defect, P2)

x86_64
Linux
defect

Tracking

()

RESOLVED FIXED
95 Branch
Tracking Status
firefox-esr78 --- wontfix
firefox-esr91 94+ fixed
firefox73 --- wontfix
firefox93 --- wontfix
firefox94 + fixed
firefox95 + fixed

People

(Reporter: decoder, Assigned: valentin)

References

(Blocks 1 open bug)

Details

(Keywords: csectype-race, sec-moderate, Whiteboard: [necko-triaged], qa-not-actionable, [adv-main94+r][adv-esr91.3+r])

Crash Data

Attachments

(5 files)

The attached crash information was detected while running CI tests with ThreadSanitizer on mozilla-central revision c0a6eb95b65c.

This looks like an interesting race. We have this code:

https://searchfox.org/mozilla-central/rev/053826b10f838f77c27507e5efecc96e34718541/netwerk/base/nsSocketTransport2.cpp#2636

racing vs.

https://searchfox.org/mozilla-central/rev/053826b10f838f77c27507e5efecc96e34718541/netwerk/base/nsSocketTransport2.cpp#2419

I see two things that can happen here:

  1. If mFDFastOpenInProgress is true then this can lead to a null crash in either of the two functions (because the other sets it to nullptr).

  2. The two threads can race on mDoNotRetryToConnect causing random reconnecting (or not) on the socket thread. I am seeing that as a separate race report actually.

General information about TSan reports

Why fix races?

Data races are undefined behavior and can cause crashes as well as correctness issues. Compiler optimizations can cause racy code to have unpredictable and hard-to-reproduce behavior.

Rating

If you think this race can cause crashes or correctness issues, it would be great to rate the bug appropriately as P1/P2 and/or indicating this in the bug. This makes it a lot easier for us to assess the actual impact that these reports make and if they are helpful to you.

False Positives / Benign Races

Typically, races reported by TSan are not false positives [1], but it is possible that the race is benign. Even in this case it would be nice to come up with a fix if it is easily doable and does not regress performance. Every race that we cannot fix will have to remain on the suppression list and slows down the overall TSan performance. Also note that seemingly benign races can possibly be harmful (also depending on the compiler, optimizations and the architecture) [2][3].

[1] One major exception is the involvement of uninstrumented code from third-party libraries.
[2] http://software.intel.com/en-us/blogs/2013/01/06/benign-data-races-what-could-possibly-go-wrong
[3] How to miscompile programs with "benign" data races: https://www.usenix.org/legacy/events/hotpar11/tech/final_files/Boehm.pdf

Suppressing unfixable races

If the bug cannot be fixed, then a runtime suppression needs to be added in mozglue/build/TsanOptions.cpp. The suppressions match on the full stack, so it should be picked such that it is unique to this particular race. The bug number of this bug should also be included so we have some documentation on why this suppression was added.

Assignee: nobody → agrover
Priority: -- → P2
Whiteboard: [necko-triaged]

Triage: still an issue

New variant,

racing on mOutputClosed via [@nsSocketTransport::OnMsgInputClosed] vs [@nsSocketTransport::OpenOutputStream].

Although this doesn't match the existing signature, it's following the same theme of "event handlers don't seem to synchronize their state atomically". OnMsgInputClosed is "socket thread only" but OpenOutputStream doesn't have that indicator.

Source snapshots:

https://searchfox.org/mozilla-central/rev/6bb59b783b193f06d6744c5ccaac69a992e9ee7b/netwerk/base/nsSocketTransport2.cpp#1990

vs

https://searchfox.org/mozilla-central/rev/6bb59b783b193f06d6744c5ccaac69a992e9ee7b/netwerk/base/nsSocketTransport2.cpp#2666

Also while checking this, I noticed the "oct 2020" backtrace is yet another variant,

racing on mThroughCaptivePortal via [@nsHttpConnection()] vs [@nsHttpHandler::Observe]

(via [@nsSocketTransport::OnSocketDetached] vs [@CaptivePortalService::Complete])

Source snapshots:

https://searchfox.org/mozilla-central/rev/6bb59b783b193f06d6744c5ccaac69a992e9ee7b/netwerk/protocol/http/nsHttpConnection.cpp#119

vs

https://searchfox.org/mozilla-central/rev/6bb59b783b193f06d6744c5ccaac69a992e9ee7b/netwerk/protocol/http/nsHttpHandler.cpp#2505

Pushed by abeingessner@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/c0b341fa6af6
Add more supressions for new variants. r=decoder

The leave-open keyword is there and there is no activity for 6 months.
:jstutte, maybe it's time to close this bug?

Flags: needinfo?(jstutte)

No, we just added supressions.

Flags: needinfo?(jstutte)
Whiteboard: [necko-triaged] → [necko-triaged], qa-not-actionable
Assignee: agrover → valentin.gosu
Group: network-core-security
See Also: → 1712671

Fixes race between nsSocketTransport::Close and
nsSocketTransport::RecoverFromError called from OnSocketDetached.

Depends on D128183

Group: network-core-security → core-security-release
Status: NEW → RESOLVED
Closed: 3 years ago
Resolution: --- → FIXED
Target Milestone: --- → 95 Branch

Please nominate this for Beta/ESR91 approval when you get a chance.

Comment on attachment 9245708 [details]
Bug 1606864 - Make mDoNotRetryToConnect atomic r=#necko

Beta/Release Uplift Approval Request

  • User impact if declined: Data race
  • Is this code covered by automated tests?: Yes
  • Has the fix been verified in Nightly?: No
  • Needs manual test from QE?: No
  • If yes, steps to reproduce: Difficult to reproduce manually.
  • List of other uplifts needed: Bug 1712671
  • Risk to taking this patch: Low
  • Why is the change risky/not risky? (and alternatives if risky): Small change makes variables atomic.
  • String changes made/needed:

ESR Uplift Approval Request

  • If this is not a sec:{high,crit} bug, please state case for ESR consideration:
  • User impact if declined: Data race
  • Fix Landed on Version: 95
  • Risk to taking this patch: Low
  • Why is the change risky/not risky? (and alternatives if risky): Small change makes variables atomic.
  • String or UUID changes made by this patch:
Flags: needinfo?(valentin.gosu)
Attachment #9245708 - Flags: approval-mozilla-esr91?
Attachment #9245708 - Flags: approval-mozilla-beta?
Attachment #9191099 - Flags: approval-mozilla-beta?
Attachment #9191099 - Flags: approval-mozilla-beta?

Comment on attachment 9245708 [details]
Bug 1606864 - Make mDoNotRetryToConnect atomic r=#necko

Approved for 94.0b9 and 91.3esr.

Attachment #9245708 - Flags: approval-mozilla-esr91?
Attachment #9245708 - Flags: approval-mozilla-esr91+
Attachment #9245708 - Flags: approval-mozilla-beta?
Attachment #9245708 - Flags: approval-mozilla-beta+
QA Whiteboard: [post-critsmash-triage]
Flags: qe-verify-
Whiteboard: [necko-triaged], qa-not-actionable → [necko-triaged], qa-not-actionable, [adv-main94+r]
Whiteboard: [necko-triaged], qa-not-actionable, [adv-main94+r] → [necko-triaged], qa-not-actionable, [adv-main94+r][adv-esr91.3+r]
Group: core-security-release
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: