FYI: For whatever reason, Mac and Linux use resource urls in JS exceptions, not filesystem paths. Pretty sure this was a huge concern for Mozilla back in the Firefox 2.0 days, and it got fixed everywhere.. Or at least, so we thought. Not sure what the hell is up with Windows.. If it was always broken, or if someone snuck in a helpful new "debugging feature" into Rapid Release at some point.
Am currently digging around for things that implement nsIException to try to find the culprit. I'll see if I can find the mercurial blame logs, too.
Trac: Component: TorBrowserButton to Firefox Patch Issues Priority: major to critical Keywords: N/Adeleted, tbb-linkabilility added
Classes that implement nsIException: nsBaseDOMException, nsXPCException, nsException.
The particular error Greg generates appears to come from nsXPCException. It gets its location set in nsXPCException::Initialize() via an nsIStackFrame.
nsBaseDOMException appears to be a wrapper for another nsIException instance (possibly nsXPCException).
I cannot find any implementation of nsException, other than a header file with a class definition.
nsIStackFrame is implemented by XPCJSStackFrame, which appears to get the filename from either callers of XPCJSStackFrame::CreateStackFrameLocation() or from JS_GetScriptFilename().
Btw: My money is on the FirefoxPortable cruft causing this issue. Other than that, I have no further insight into this bug, as I have no idea how our Windows build process works.
Btw: My money is on the FirefoxPortable cruft causing this issue.
I just tried the official PortableApps Firefox and it sanitizes the paths too.
Also, this issue is not introduced after manually installing Torbutton in the Portable Firefox.
This happens because firefox is not installed. When building a firefox installer and using that one, the path is properly obfuscated. Since it also doesn't happen for Portable Firefox, we should figure out what's different and how they manage to avoid leaking the path here.
I know you're working on it. It's just that every time I run into a build-related issue, I am frustrated by the fact that I (and more importantly, others) have no idea how to help.
branch bug5299 in my repo has a fix. The second patch is pretty ugly, but it seems to work. We should fix this better once we have gotten rid of the dynamic part of the firefox build dir (the hostname/arch stuff behind the obj-)
It looks like this just got merged? Is there a reason we chose Sebastian's version?
Sebastian's version doesn't work for clean build since it's missing the 'build' target.
Besides that, it copies along a jsshell_win32.zip file since it resides in the same directory as the finished package.
My branch copies directly from the staging folder instead of packing the staging folder and unpacking the resulting zip file.
More comments can be found in ./src/current-patches/mozilla-build/start-msvc.patch
I added the 're-bug5922' branch to my repo which is a rebased version of 'bug5922'
Shondoit -- I merged your patch and am rebuilding the Windows Firefox with it. Thanks, and sorry I missed it before, but I didn't deliberately ignore it.
Trac: Status: needs_review to closed Resolution: N/Ato fixed