Closed Bug 989509 Opened 11 years ago Closed 11 years ago

PR_LOCAL_THREAD is completely insane

Categories

(Core :: JavaScript Engine, defect)

All
Windows 8.1
defect
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla31

People

(Reporter: shu, Assigned: shu)

References

Details

(Keywords: sec-other)

Attachments

(4 files)

Currently in the JS engine, threads spawned for off-main-thread workloads like compilation and parsing, as well as PJS threads are spawned with the PR_LOCAL_THREAD flag. Here's the NSPR comment about this flag: http://mxr.mozilla.org/mozilla-central/source/nsprpub/pr/include/prthread.h#22 And I quote, "An arbitrary number of such LOCAL threads can be assigned to a single GLOBAL thread." But guess what! We expect TLS to be, well, unique per thread. For the OMT workloads, we store different PerThreadData * in there. For PJS, we store different ForkJoinContext * in there. On Linux and OS X, it seems like PR_LOCAL_THREADS are spawned as different OS threads. On Windows though, you end up with ***distinct NSPR threads that share a TLS***. This probably exploitable. This is completely insane, and we should change all uses of PR_LOCAL_THREAD to PR_GLOBAL_THREAD.
Attached file unreduced crash (deleted) —
Here's an unreduced test case that led me to this bug. Crashes about 10% of the time for me on Win8.1.
Brian, is there a reason
Flags: needinfo?(bhackett1024)
Oops, message cut off. Brian, was PR_LOCAL_THREAD intentional? It's causing crashes in jsworkers, so we should switch to PR_GLOBAL_THREAD.
NI Ben so he can look at where we're doing this in Gecko and we shouldn't be.
Flags: needinfo?(bent.mozilla)
Speaking for PJS, we should definitely switch to PR_GLOBAL_THREAD asap. I'm pretty sure that NSPR code was cribbed from elsewhere without much thought given to this flag.
Blocks: 716647
(In reply to Shu-yu Guo [:shu] from comment #1) > Created attachment 8398776 [details] > unreduced crash > > Here's an unreduced test case that led me to this bug. Crashes about 10% of > the time for me on Win8.1. The test case should be run in a DEBUG shell with flags --ion-eager --ion-parallel-compile=off
Did a little more digging. The good news is that this doesn't affect official builds. The NSPR in those builds are built --with-win32-target=WIN95, which makes all threads global threads. Unfortunately when you build NSPR under mozilla-build, the default parameter is --with-win32-target=WINNT, which gives you this insane local thread behavior. We should still change all PR_LOCAL_THREAD uses to PR_GLOBAL_THREAD in the codebase, since currently we are horribly broken if we ever link against a version of NSPR that supports local threads. Clearing bhackett's NI since it's very unlikely he intended to use local threads.
Flags: needinfo?(bhackett1024)
(In reply to Shu-yu Guo [:shu] from comment #7) > Did a little more digging. The good news is that this doesn't affect > official builds. The NSPR in those builds are built > --with-win32-target=WIN95, which makes all threads global threads. > > Unfortunately when you build NSPR under mozilla-build, the default parameter > is --with-win32-target=WINNT, which gives you this insane local thread > behavior. Uh, how did that happen? That's definitely wrong.
(In reply to Kyle Huey [:khuey] (khuey@mozilla.com) from comment #8) > (In reply to Shu-yu Guo [:shu] from comment #7) > > Did a little more digging. The good news is that this doesn't affect > > official builds. The NSPR in those builds are built > > --with-win32-target=WIN95, which makes all threads global threads. > > > > Unfortunately when you build NSPR under mozilla-build, the default parameter > > is --with-win32-target=WINNT, which gives you this insane local thread > > behavior. > > Uh, how did that happen? That's definitely wrong. I mean if you build NSPR independently (I was building it for the js shell) without manually giving --with-win32-target=WIN95 to configure, you get the crazy fiber stuff.
I'm sure I copy pasted that PR_LOCAL_THREAD from somewhere else in the JS engine.
Can you file a separate bug to switch the official builds to --with-win32-target=WINNT? I'm not too familiar with NSPR but it sounds like that's what we want (after we fix this fiber thing of course).
(In reply to Jan de Mooij [:jandem] from comment #11) > Can you file a separate bug to switch the official builds to > --with-win32-target=WINNT? I'm not too familiar with NSPR but it sounds like > that's what we want (after we fix this fiber thing of course). I don't think we actually want --with-win32-target=WINNT, it's just poorly named or something.
We absolutely do not want the WINNT NSPR. See https://bugzilla.mozilla.org/show_bug.cgi?id=830785#c12 and the following comment.
So in practice is it only with the WINNT NSPR variant that there's a difference between PR_LOCAL and PR_GLOBAL? If that's the case then we can just do a search/replace on the whole tree without any side effects I guess.
Flags: needinfo?(bent.mozilla)
Attached patch Part 1: js/ (deleted) — Splinter Review
Attached patch Part 3: security/ (deleted) — Splinter Review
Attachment #8400953 - Flags: review?(luke)
Not sure who to flag r? for the non-js parts. I also didn't touch security/nss, which seems to be from before the flood.
Comment on attachment 8400953 [details] [diff] [review] Part 1: js/ weeeee
Attachment #8400953 - Flags: review?(luke) → review+
Btw, this probably isn't s-s, yes?
Assignee: nobody → shu
Attachment #8400955 - Flags: review?(cviecco)
Comment on attachment 8400954 [details] [diff] [review] Part 2: dom/, netwerk/, startupcache/, and xpcom/ Ben is probably as reasonable a reviewer for this as anybody.
Attachment #8400954 - Flags: review?(bent.mozilla)
Comment on attachment 8400954 [details] [diff] [review] Part 2: dom/, netwerk/, startupcache/, and xpcom/ Review of attachment 8400954 [details] [diff] [review]: ----------------------------------------------------------------- I would actually request review from the folks who added these just to make sure they didn't think they were getting something that they're not. I'll stamp the TestThreadedIO.cpp change, it has existed since 2000... Honza, can you look at DOMStorageDBThread.cpp? Taras, can you look over StartupCache.cpp? Gabriele, can you look at TimeStamp_posix.cpp? Dave, can you look at nsProcessCommon.cpp?
Attachment #8400954 - Flags: review?(taras.mozilla)
Attachment #8400954 - Flags: review?(honzab.moz)
Attachment #8400954 - Flags: review?(gsvelto)
Attachment #8400954 - Flags: review?(dtownsend+bugmail)
Attachment #8400954 - Flags: review?(bent.mozilla)
Attachment #8400955 - Flags: review?(cviecco) → review+
Comment on attachment 8400954 [details] [diff] [review] Part 2: dom/, netwerk/, startupcache/, and xpcom/ The TimeStamp_posix.cpp part was copied from the existing code when those files were refactored and it doesn't have any reason to request special treatment of TLS variables as the spawned thread is not using any.
Attachment #8400954 - Flags: review?(gsvelto) → review+
Comment on attachment 8400954 [details] [diff] [review] Part 2: dom/, netwerk/, startupcache/, and xpcom/ Aklotz is startup cache
Attachment #8400954 - Flags: review?(taras.mozilla) → review?(aklotz)
Comment on attachment 8400954 [details] [diff] [review] Part 2: dom/, netwerk/, startupcache/, and xpcom/ Review of attachment 8400954 [details] [diff] [review]: ----------------------------------------------------------------- r+ for StartupCache
Attachment #8400954 - Flags: review?(aklotz) → review+
Comment on attachment 8400954 [details] [diff] [review] Part 2: dom/, netwerk/, startupcache/, and xpcom/ Review of attachment 8400954 [details] [diff] [review]: ----------------------------------------------------------------- Pretty sure I just copied this from somewhere else in the code.
Attachment #8400954 - Flags: review?(dtownsend+bugmail) → review+
Comment on attachment 8400954 [details] [diff] [review] Part 2: dom/, netwerk/, startupcache/, and xpcom/ Review of attachment 8400954 [details] [diff] [review]: ----------------------------------------------------------------- r+ for netwerk/
Attachment #8400954 - Flags: review?(honzab.moz) → review+
Comment on attachment 8400955 [details] [diff] [review] Part 3: security/ You should be actually the person giving the final r+
Attachment #8400955 - Flags: review?(dkeeler)
Comment on attachment 8400955 [details] [diff] [review] Part 3: security/ Review of attachment 8400955 [details] [diff] [review]: ----------------------------------------------------------------- As far as I've seen, using "global" threads is the correct thing nowadays.
Attachment #8400955 - Flags: review?(dkeeler) → review+
FWIW given shu's investigation I don't think this needs to be s-s either.
Opening.
Group: core-security
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: