Closed Bug 148884 Opened 23 years ago Closed 23 years ago

NS_NAMED_LITERAL_STRING depends on static global initialization order

Categories

(Core :: XPCOM, defect)

defect
Not set
critical

Tracking

()

RESOLVED FIXED

People

(Reporter: bryner, Assigned: dougt)

Details

Attachments

(1 file, 3 obsolete files)

If you have a global NS_NAMED_LITERAL_STRING, the app may crash at startup depending on the order that global intializers are run in. In particular, when nsString allocates its storage via nsMemory::Alloc, that may call SetupGlobalMemory which then calls NS_RegisterXPCOMExitRoutine, which depends on the static nsVoidArray gExitRoutines having been initialized. This impacts the static build; it doesn't hit the non-static build because we don't use static strings in any libraries that mozilla-bin directly links with.
We shouldn't have global |NS_NAMED_LITERAL_STRING|s.
If that's true, someone needs to go clean up extensions/xmlextras/soap/src.
file a new bug. ;-)
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → INVALID
reopening... talked to dbaron and he says that we can fix this particular problem fairly easy by allocating gExitRoutines at run time.
Status: RESOLVED → REOPENED
Resolution: INVALID → ---
Attached patch patch (obsolete) — Splinter Review
Comment on attachment 86141 [details] [diff] [review] patch add an assertion if gExitRoutines is null after the allocation. Also lets bullet proof this: Any time we access this array, check for null.
Attachment #86141 - Flags: needs-work+
Rayw, see comment #2. /be
Status: REOPENED → ASSIGNED
brendan see comment #4.
dougt, saw that -- but are static ctors and dtors ok now? See http://www.mozilla.org/hacking/portable-cpp.html#dont_use_static_constructors. /be
Attached patch something like this (obsolete) — Splinter Review
Attachment #86141 - Attachment is obsolete: true
brendan: static ctors and dtors are still not okay. As the document points out they are problematic. I think that this is a case and point. We should make xpcom startup a bit more friendly by remove its own static nsVoidArray.
Comment on attachment 86161 [details] [diff] [review] something like this Use PR_Once for thread-safe at-most-once initialization. Why call EnsureExitRoutines from CallExitRoutines? Better to return early if (!gExitRoutines), no? /be
Attachment #86161 - Flags: needs-work+
yeah. CallExitRoutines should just check gExitRoutines. Now what is this business with PR_Once? http://lxr.mozilla.org/seamonkey/search?string=PR_Once yields nothing
Attached patch patch v.3 (obsolete) — Splinter Review
Attachment #86161 - Attachment is obsolete: true
Er, PR_CallOnce. /be
Attached patch patch v.4Splinter Review
This avoids the function call overhead, since we now only need to allocate gExitRoutines in one place.
Attachment #86163 - Attachment is obsolete: true
Comment on attachment 86165 [details] [diff] [review] patch v.4 r=dougt
Attachment #86165 - Flags: review+
brendan, we don't care about threadsafety here. This "exit" methods are private between the xpcom library and the xpcom glue library. They will always occur on the primordal thread.
Attachment #86165 - Flags: superreview+
Comment on attachment 86165 [details] [diff] [review] patch v.4 That's the ticket. dougt, a comment in nsXPCOMPrivate.h about the single-threaded restriction on exit routines would nail it. Any time, rs=me. /be
doug, i'll let you go ahead and check this in.
Checking in nsXPComInit.cpp; /cvsroot/mozilla/xpcom/build/nsXPComInit.cpp,v <-- nsXPComInit.cpp new revision: 1.136; previous revision: 1.135 done Checking in nsXPCOMPrivate.h; /cvsroot/mozilla/xpcom/build/nsXPCOMPrivate.h,v <-- nsXPCOMPrivate.h new revision: 1.2; previous revision: 1.1 done thanks all.
Status: ASSIGNED → RESOLVED
Closed: 23 years ago23 years ago
Resolution: --- → FIXED
Argh -- what about a bug for the static NS_NAMED_LITERAL_STRINGS in soap code? /be
another solution to this bug would have been to make the string code use malloc/free directly :-/
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: