epiphany-gecko crashed with SIGSEGV in gfxXlibNativeRenderer::Draw()

Bug #250761 reported by sam tygier
6
Affects Status Importance Assigned to Milestone
Mozilla Firefox
Fix Released
Critical
xulrunner-1.9 (Ubuntu)
Fix Released
Undecided
Unassigned

Bug Description

Binary package hint: epiphany-browser

I took my attention away from my screen for a minute and epiphany had crashed, i will try to figure out which page caused it.

most likely this was caused by me having a hot new version of swfdec (0.7.2-1) installed from debian experimental
http://packages.debian.org/experimental/libswfdec-0.7-0
so ubuntu devs may not be interested, i will contact the swfdec devs, and see if they are.

ProblemType: Crash
Architecture: amd64
Date: Tue Jul 22 10:42:58 2008
DistroRelease: Ubuntu 8.04
ExecutablePath: /usr/bin/epiphany-gecko
NonfreeKernelModules: openafs nvidia ath_hal
Package: epiphany-gecko 2.22.2-0ubuntu0.8.04.2
PackageArchitecture: amd64
ProcCmdline: epiphany-browser
ProcEnviron:
 PATH=/home/User Name/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
Signal: 11
SourcePackage: epiphany-browser
StacktraceTop:
 ?? () from /usr/lib/xulrunner-1.9/libxul.so
 gfxXlibNativeRenderer::Draw ()
 ?? () from /usr/lib/xulrunner-1.9/libxul.so
 ?? () from /usr/lib/xulrunner-1.9/libxul.so
 ?? () from /usr/lib/xulrunner-1.9/libxul.so
Title: epiphany-gecko crashed with SIGSEGV in gfxXlibNativeRenderer::Draw()
Uname: Linux 2.6.24-19-generic x86_64
UserGroups: adm admin audio cdrom dialout dip floppy fuse lpadmin plugdev vboxusers video

Revision history for this message
In , Sylvain BERTRAND (sylvain-bertrand) wrote :

Created attachment 322523
gdb bt full with a debug build of firefox 3.0 RC1

Revision history for this message
In , Benjamin Otte (Company) (otte) wrote :

*** Bug 435838 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Sylvain BERTRAND (sylvain-bertrand) wrote :
Revision history for this message
In , Sylvain BERTRAND (sylvain-bertrand) wrote :

Made a full debug build of firefox 3 RC2 with today git swfdec:
 - http://www.leparisien.fr seems not to crash anymore.
 - http://www.universfreebox.com/article5360.html hangs the whole firefox process.

Revision history for this message
In , Karlt (karlt) wrote :

I'm keen to try out swfdec, but I haven't found a revision of
git://swfdec.freedesktop.org/git/swfdec/swfdec in the last few days that compiles.

Can someone recommend a revision/tag that I should use, please?

BTW, the current issue is:
cc1: warnings being treated as errors
swfdec_init.c: In function 'swfdec_init':
swfdec_init.c:68: warning: implicit declaration of function 'strtoul'
swfdec_init.c:68: warning: nested extern declaration of 'strtoul'

Revision history for this message
In , Benjamin Otte (Company) (otte) wrote :

Uh yeah, you're in a kind of peculiar situation here as you need to run a development version, and those set -Werror (and no, I'm not going into a discussion of why this is the best thing people should do). In theory, git master should work (and definitely compile) fine, as there's enough developers running it every day. If there's issues, poke me on IRC and I'll fix them immediately.

That said, if you still want the easy path, export CFLAGS=-Wno-error when building swfdec and swfdec-mozilla. That gets rid of the "warnings being treated as errors" thing.

Revision history for this message
In , Karlt (karlt) wrote :

Thanks to Benjamin, I now have swfdec-mozilla compiled (and producing some
nice effects when Mozilla doesn't crash).

The crash is happening because sometimes ws_info is not set up (in
nsObjectFrame::CallSetWindow()) and so it contains zeros when used in
nsPluginInstanceOwner::Paint().

The crash happens for plugins that are instantiated through
nsObjectFrame::Instantiate(nsIChannel* aChannel, nsIStreamListener** aStreamListener)
rather than
nsObjectFrame::Instantiate(const char* aMimeType, nsIURI* aURI)
as only the later does CallSetWindow() (and I don't know why that is).

With attachment 324576, gfxXlibNativeRenderer::Draw almost never uses its dpy
argument and so the crash reduces to

###!!! ASSERTION: Visual changed: colormap may not match: 'ws_info->visual == visual', file /home/karl/moz/mozilla/layout/generic/nsObjectFrame.cpp, line 4207

but still no useful info is available in ws_info for the plugin.

I can reproduce the assertion when scrolling to the first windowless plugin on
http://www.universfreebox.com/article5360.html, or on http://movies.yahoo.com/.

Revision history for this message
In , Karlt (karlt) wrote :

Created attachment 324752
move ws_info set up from nsObjectFrame::CallSetWindow() to nsPluginInstanceOwner::CreateWidget()

This is one way to solve the problem.
Perhaps another is to set up in nsObjectFrame::FixupWindow, or perhaps both
nsObjectFrame::Instantiate methods (or neither) should do CallSetWindow();

The build here has this patch and attachment 324576, for those who would like something that works:

https://build.mozilla.org/tryserver-builds/2008-06-11_23:<email address hidden>/

(I'll see if I can work out why the Instantiate methods differ.)

Revision history for this message
In , Jonas-sicking (jonas-sicking) wrote :

Is this a common way to view flash on linux? Or are people just using the official macromedia one?

Revision history for this message
In , Karlt (karlt) wrote :

(In reply to comment #9)

The bug is being hit because newer versions of swfdec have windowless support.

https://bugs.launchpad.net/ubuntu/+source/firefox-3.0/+bug/239182

The macromedia plugin will hit the same bug when it has wmode support.

(I don't know how many users use use swfdec or gnash or the macromedia plugin [with nspluginwrapper for 64-bit].)

Revision history for this message
In , Karlt (karlt) wrote :

(In reply to comment #8)
A better build with attachment 324914 (which fixes the plugin height) and attachment 324752:

https://build.mozilla.org/tryserver-builds/2008-06-12_19:<email address hidden>/

Revision history for this message
In , Mike Melanson (mmelanso-adobe) wrote :

Similar problem seen in Adobe Flash Player. Most notable with http://movies.yahoo.com/ . Tracked by Adobe internal issue 228012.

Revision history for this message
In , Karlt (karlt) wrote :

This will happen with any windowless plugin when the mime type is determined from using the URL in the data attribute rather than from the
type attribute, which now happens for object elements (bug 95549).
I guess there would be the same problem if the type attribute were not included in an embed element.

Revision history for this message
In , Karlt (karlt) wrote :

Created attachment 327742
move ws_info set up from nsObjectFrame::CallSetWindow()

nsPluginInstanceOwner::CreateWidget() is a good place to set up the display because that is where the plugin "becomes" windowless, and the display should not change.

The right place to set up the Colormap is in nsPluginInstanceOwner::Renderer::NativeDraw() where the Visual is known.

To avoid the need to hunt for the Visual on the Display to find the
Screen for selecting a Colormap, this changes the Display* argument of gfxXlibNativeRenderer::NativeDraw to a Screen*.

This also makes the treatment of CAIRO_XLIB_DRAWING_SUPPORTS_NONDEFAULT_VISUAL in _create_temp_xlib_surface consistent with that in _draw_with_xlib_direct.
i.e. when not set the visual must be the default visual of the screen used,
but need not be the default visual of the fallback dpy specified.

Revision history for this message
In , Mike Melanson (mmelanso-adobe) wrote :

Reported by Adobe Flash Player users:
http://nvidia.com/
http://www.bbc.co.uk/
I reproduced these crashes by loading the pages and then maximizing the browser frame. The crash appears to come from libxul.so.

Revision history for this message
In , Stephanie Daugherty (sdaugherty-deactivatedaccount) wrote :

I'm seeing an almost identical crash with latest Adobe Flash Player on my own personal blog, which is fixed by Karl's test build. I can reproduce 100% on latest nightly by scrolling down the page.
http://crash-stats.mozilla.com/report/index/ec6a48d1-4a4b-11dd-b681-001cc45a2ce4 and http://crash-stats.mozilla.com/report/index/d95b1702-4a4c-11dd-a703-001cc45a2ce4 are two of my crashes from a nightly.

Revision history for this message
In , Gnorton (gnorton) wrote :

I think my bug #442115 is a duplicate of this with some additional information as to what is causing this.

Revision history for this message
In , Karlt (karlt) wrote :

*** Bug 442115 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Roc-ocallahan (roc-ocallahan) wrote :

FindColormapForVisual and the other colormap-getting machinery should move into gfxNativeRenderer as discussed. Otherwise looks great. (X suuuuucks!)

Revision history for this message
In , Karlt (karlt) wrote :

Created attachment 328287
move ws_info set up from nsObjectFrame::CallSetWindow() v4.1

(In reply to comment #19)
> FindColormapForVisual and the other colormap-getting machinery should move into
> gfxNativeRenderer as discussed.

Done.

Revision history for this message
In , Karlt (karlt) wrote :

Requesting blocking 1.9.0.2 because both swfdec and Adobe now have
windowless-capable Flash plugins available (though Adobe's at least is still in
beta), and moonlight also has a windowless plugin.

The number of affected sites is hard to estimate as there is a race condition between reflow and plugin instantiation, but definitely high enough that we can expect plenty of users to hit this when they upgrade their plugin versions.

Revision history for this message
In , Gnorton (gnorton) wrote :

Confirmed the latest patch fixes this issue with the moonlight plugin and our testcases.

@karlt, The patch doesn't appear to apply cleanly with any version of patch tho, dunno whats going on with that.

Revision history for this message
In , Karlt (karlt) wrote :

Created attachment 328388
move ws_info set up from nsObjectFrame::CallSetWindow() v4.1.1

Correct patch line counts. (Same code.)

(In reply to comment #22)
> The patch doesn't appear to apply cleanly with any version of patch
> tho, dunno whats going on with that.

Thanks for testing, Geoff. Sorry about the patch. Emacs diff-mode sometimes (but I don't know exactly when) doesn't update line counts and I forgot to check that.

Revision history for this message
In , Karlt (karlt) wrote :
Download full text (4.1 KiB)

Created attachment 328437
include gdk/gdkscreen.h in system-headers

for:

/tools/gcc/bin/g++ -fno-rtti -fno-exceptions -Wall -Wconversion -Wpointer-arith -Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wcast-align -Wno-long-long -pedantic -gstabs+ -fno-strict-aliasing -fshort-wchar -pthread -pipe -DNDEBUG -DTRIMMED -Os -freorder-blocks -fno-reorder-functions -finline-limit=50 -fPIC -shared -Wl,-z,defs -Wl,-h,libxul.so -o libxul.so nsStaticXULComponents.o nsUnicharUtils.o nsCompressedCharMap.o nsBidiUtils.o nsRDFResource.o -lpthread -Wl,-rpath-link,../../dist/bin -Wl,--whole-archive ../../embedding/browser/gtk/src/libgtkembedmoz.a ../../toolkit/xre/libxulapp_s.a ../../staticlib/components/libxpconnect.a ../../staticlib/components/libnecko.a ../../staticlib/components/libuconv.a ../../staticlib/components/libi18n.a ../../staticlib/components/libchardet.a ../../staticlib/components/libjar50.a ../../staticlib/components/libpref.a ../../staticlib/components/libcaps.a ../../staticlib/components/libhtmlpars.a ../../staticlib/components/libimglib2.a ../../staticlib/components/libgklayout.a ../../staticlib/components/libdocshell.a ../../staticlib/components/libembedcomponents.a ../../staticlib/components/libwebbrwsr.a ../../staticlib/components/libnsappshell.a ../../staticlib/components/libtxmgr.a ../../staticlib/components/libchrome.a ../../staticlib/components/libcommandlines.a ../../staticlib/components/libtoolkitcomps.a ../../staticlib/components/libpipboot.a ../../staticlib/components/libpipnss.a ../../staticlib/components/libgkplugin.a ../../staticlib/components/libmozfind.a ../../staticlib/components/libappcomps.a ../../staticlib/components/libunixproxy.a ../../staticlib/components/libxpinstall.a ../../staticlib/components/libjsd.a ../../staticlib/components/libautoconfig.a ../../staticlib/components/libauth.a ../../staticlib/components/libcookie.a ../../staticlib/components/libpermissions.a ../../staticlib/components/libuniversalchardet.a ../../staticlib/components/libcomposer.a ../../staticlib/components/librdf.a ../../staticlib/components/libwindowds.a ../../staticlib/components/libintlapp.a ../../staticlib/components/libfileview.a ../../staticlib/components/libstoragecomps.a ../../staticlib/components/libplaces.a ../../staticlib/components/libtkautocomplete.a ../../staticlib/components/libsatchel.a ../../staticlib/components/libpippki.a ../../staticlib/components/libucvmath.a ../../staticlib/components/libwidget_gtk2.a ../../staticlib/components/libsystem-pref.a ../../staticlib/components/libgkgfxthebes.a ../../staticlib/components/libaccessibility.a ../../staticlib/components/libremoteservice.a ../../staticlib/components/libspellchecker.a ../../staticlib/components/libzipwriter.a ../../staticlib/libxpcom_core.a ../../staticlib/libucvutil_s.a ../../staticlib/libgkgfx.a ../../staticlib/libgfxshared_s.a ../../staticlib/libmozreg_s.a ../../staticlib/libmorkreader_s.a ../../staticlib/libgtkxtbin.a ../../staticlib/libgfxpsshar.a ../../staticlib/libthebes.a -Wl,--no-whole-archive -L../../dist/lib -lsqlite3 -L../../dist/bin -L../../dist/lib -L../../dist/bin -L../../dist/lib -L../../jpeg -lmozjpeg -L../../mo...

Read more...

Revision history for this message
In , Karlt (karlt) wrote :
Revision history for this message
In , Mike Melanson (mmelanso-adobe) wrote :

Another consistent crasher: http://skoda-auto.cz/

Revision history for this message
In , Karlt (karlt) wrote :

Please use the build here:

http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/2008-07-08-02-mozilla-central/

It includes the fix for this bug
(and resolves the crash on http://skoda-auto.cz/).

Revision history for this message
In , Mike Melanson (mmelanso-adobe) wrote :

Awesome. Works great with all of the problem URLs. Thanks.

Revision history for this message
In , Stephen-moehle (stephen-moehle) wrote :

*** Bug 445043 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Karlt (karlt) wrote :

*** Bug 445202 has been marked as a duplicate of this bug. ***

Revision history for this message
In , Samuel-sidler+old (samuel-sidler+old) wrote :

Can we get a test for this before landing in 1.9.0?

Revision history for this message
In , Karlt (karlt) wrote :

(In reply to comment #31)
Automated testing depends on having a windowless plugin in our source tree
(bug 386144).

I've manually tested this patch with Swfdec on the problem sites reported
here, Geoff Norton has tested the Moonlight plugin (comment #22) on their
testcases (including attachment attachment 326988), and Mike Melanson has
tested the Adobe plugin (comment #28).

Revision history for this message
In , Samuel-sidler+old (samuel-sidler+old) wrote :

Comment on attachment 328388
move ws_info set up from nsObjectFrame::CallSetWindow() v4.1.1

Approved for 1.9.0.2. Please land in CVS. a=ss

Revision history for this message
In , Samuel-sidler+old (samuel-sidler+old) wrote :

Comment on attachment 328437
include gdk/gdkscreen.h in system-headers

Approved for 1.9.0.2. Please land in CVS. a=ss

Revision history for this message
In , Samuel-sidler+old (samuel-sidler+old) wrote :

No blocking, but wanted (and the patches are already approved).

Revision history for this message
sam tygier (samtygier) wrote :

Binary package hint: epiphany-browser

I took my attention away from my screen for a minute and epiphany had crashed, i will try to figure out which page caused it.

most likely this was caused by me having a hot new version of swfdec (0.7.2-1) installed from debian experimental
http://packages.debian.org/experimental/libswfdec-0.7-0
so ubuntu devs may not be interested, i will contact the swfdec devs, and see if they are.

ProblemType: Crash
Architecture: amd64
Date: Tue Jul 22 10:42:58 2008
DistroRelease: Ubuntu 8.04
ExecutablePath: /usr/bin/epiphany-gecko
NonfreeKernelModules: openafs nvidia ath_hal
Package: epiphany-gecko 2.22.2-0ubuntu0.8.04.2
PackageArchitecture: amd64
ProcCmdline: epiphany-browser
ProcEnviron:
 PATH=/home/User Name/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
Signal: 11
SourcePackage: epiphany-browser
StacktraceTop:
 ?? () from /usr/lib/xulrunner-1.9/libxul.so
 gfxXlibNativeRenderer::Draw ()
 ?? () from /usr/lib/xulrunner-1.9/libxul.so
 ?? () from /usr/lib/xulrunner-1.9/libxul.so
 ?? () from /usr/lib/xulrunner-1.9/libxul.so
Title: epiphany-gecko crashed with SIGSEGV in gfxXlibNativeRenderer::Draw()
Uname: Linux 2.6.24-19-generic x86_64
UserGroups: adm admin audio cdrom dialout dip floppy fuse lpadmin plugdev vboxusers video

Revision history for this message
sam tygier (samtygier) wrote :
Revision history for this message
sam tygier (samtygier) wrote :

Benjamin Otte says
"that bug is a well known Mozilla bug and in the process of getting
fixed. See https://bugzilla.mozilla.org/show_bug.cgi?id=435764 for
details. It's a side effect of the windowless support Swfdec got in
0.7 and unfortunately happens quite often."

Revision history for this message
sam tygier (samtygier) wrote :

upstream mozilla say it is fixed

Changed in epiphany-browser:
status: New → Fix Committed
Changed in firefox:
status: Unknown → Fix Released
Revision history for this message
Apport retracing service (apport) wrote : Symbolic stack trace

StacktraceTop:?? () from /usr/lib/xulrunner-1.9/libxul.so
gfxXlibNativeRenderer::Draw () from /usr/lib/xulrunner-1.9/libxul.so
?? () from /usr/lib/xulrunner-1.9/libxul.so
?? () from /usr/lib/xulrunner-1.9/libxul.so
?? () from /usr/lib/xulrunner-1.9/libxul.so

Revision history for this message
Apport retracing service (apport) wrote : Symbolic threaded stack trace
Revision history for this message
In , Karlt (karlt) wrote :

Comment on attachment 328388
move ws_info set up from nsObjectFrame::CallSetWindow() v4.1.1

checked into cvs with attachment 328437:

http://bonsai.mozilla.org/cvsquery.cgi?module=PhoenixTinderbox&branch=HEAD&cvsroot=%2Fcvsroot&date=explicit&mindate=1216938963&maxdate=1216939084&who=karlt%2B%25karlt.net

Revision history for this message
Jonathan Thomas (echidnaman) wrote :

The fix should be released to Ubuntu by now.

visibility: private → public
Changed in xulrunner-1.9 (Ubuntu):
status: Fix Committed → Fix Released
Changed in firefox:
importance: Unknown → Critical
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.