Summary: | incorrect link options cause mozilla plugin crash on FreeBSD/amd64 | ||
---|---|---|---|
Product: | swfdec | Reporter: | Bill Paul <wpaul> |
Component: | library | Assignee: | Eric Anholt <eric> |
Status: | RESOLVED FIXED | QA Contact: | Eric Anholt <eric> |
Severity: | blocker | ||
Priority: | medium | CC: | otte |
Version: | unspecified | ||
Hardware: | x86-64 (AMD64) | ||
OS: | FreeBSD | ||
Whiteboard: | |||
i915 platform: | i915 features: |
Description
Bill Paul
2007-05-01 15:49:20 UTC
As far as I know this has worked before, we've been careful to not export the Javascript symbols since Swfdec uses a modified version of the Mozilla JS engine internally. Eric should know more about this since he's the FreeBSD guy. I'd guess it's either a libtool issue or some included library's CFLAGS are to blame. Libswfdec makes sure to not export the Javascript symbols passing --export-symbol-regex=swfdec_.* to libtool when building the library. However, since the Javascript part is built as a noinst_LIBRARY and then linked statically into libswfdec, the linkig has to happen without --export-dynamic which it normally does. However some libraries swfdec depends on (in particular gmodule via GStreamer) used to include this option. I thought I got rid of that by requiring GStreamer >= 0.10.11 where this was fixed. Maybe something there is different on FreeBSD? The thing is, it's not a question of exporting the javascript symbols out of libswfdec. I saw the --export-symbol-regex=swfdec_.* option, and yes, it has the intended effect: if you do "nm libswfdec-0.4.so", you'll only see swfdec symbols listed. But that's not the problem. Say I write a program which uses libmozjs.so. I correctly use the header files that go with libmozjs.so, so the API matches up. Now I want to link my program with libswfdec-0.4.so too. When I link my program, the linker will not see the JS_* routines in libswfdec-0.4.so because those symbols aren't exported. That's fine. The problem is when libswfdec-0.4.so itself is linked. The --export-symbol-regex=swfdec_.* does not affect what the linker does when it binds all the objects from swfdec and js/libjs.a together into libswfdec-0.4.so: it only affects what will happen when libswfdec-0.4.so is linked with other programs later. For example, say swfdec_script.o has a reference to JS_NewContext() (which I think it does). Without -Bsymbolic, the linker will not resolve that reference when the library is created: instead, it will leave the reference unresolved and rely on the runtime linker to deal with it later. In this case, the symbol is resolved when the plugin is loaded into Firefox, and at that point, the runtime linker can only find one instance of JS_NewFunction, which is in libmozjs.so. That's the wrong one, so the code crashes. Using -Bsymbolic changes the behavior: now the linker will resolve swfdec_script.o's reference to JS_NewFunction when libswfdec-0.4.so is created, so that runtime binding won't be necessary. And *then* --export-symbol-regex=swfdec_.* prevents the JS_* symbols from being exported. This insures that swfdec will use the right javascript engine, and that nobody else will be able to use it. It's possible that --export-symbol-regex=swfdec_.* on Linux implies -Bsymbolic as well. But again, it may be a good idea to specify -Bsymbolic explicitly in order to avoid any ambiguity. I'm a bit scared of adding random linker options, because that might break different operating system's builds. Otherwise I would have added it already. I don't know why it causes issues for you, but I know Eric ran Swfdec on FreeBSD. But I have no idea if he ran 0.4 as a Mozilla plugin yet. The mozilla plugin has been a total crashfest on FreeBSD, and I never tracked it down. The fix given sounds like the right thing to do. I've looked around a bit for sanely written configure.ac code detecting required usage of -Bsymbolic but didn't find any. I'm not sure how other OSs behave And since I plan on removing the moz bits anyway, I guess a simple switch that detects FreeBSD (or whatever) and adds -Bsymbolic to the linker options in configure.ac is fine. Any BSD person wants to provide a patch? This should be fixed since 0.4.5, configure now adds -Bsymbolic unconditionally. |
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.