WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
142444
Crash in WebCore::NotificationCenter::stop()
https://bugs.webkit.org/show_bug.cgi?id=142444
Summary
Crash in WebCore::NotificationCenter::stop()
Chris Dumez
Reported
2015-03-07 18:23:41 PST
We sometimes crash in NotificationCenter::stop() with the following trace: Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 com.apple.WebCore 0x00000001038a472a WebCore::NotificationCenter::stop() + 42 1 com.apple.WebCore 0x0000000102e28bc7 WebCore::ScriptExecutionContext::stopActiveDOMObjects() + 359 2 com.apple.WebCore 0x0000000102e2877e WebCore::Document::prepareForDestruction() + 366 3 com.apple.WebCore 0x0000000103327afe WebCore::Frame::setView(WTF::RefPtr<WebCore::FrameView>&&) + 62 4 com.apple.WebKitLegacy 0x0000000104808f80 WebFrameLoaderClient::transitionToCommittedForNewPage() + 432 5 com.apple.WebCore 0x000000010333055c WebCore::FrameLoader::transitionToCommitted(WebCore::CachedPage*) + 636 6 com.apple.WebCore 0x0000000102dbd2ae WebCore::FrameLoader::commitProvisionalLoad() + 366 7 com.apple.WebCore 0x0000000102dbcedf WebCore::DocumentLoader::finishedLoading(double) + 383 8 com.apple.WebCore 0x0000000102dbcb25 WebCore::DocumentLoader::maybeLoadEmpty() + 709 9 com.apple.WebCore 0x0000000102dbc20b WebCore::DocumentLoader::startLoadingMainResource() + 219 I can reproduce the crash by doing: Tools/Scripts/run-webkit-tests -1 --debug --repeat-each=30 -g LayoutTests/http/tests/notifications/event-listener-crash.html Radar: <
rdar://problem/20082520
>
Attachments
Patch
(2.81 KB, patch)
2015-03-07 18:34 PST
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Patch
(2.58 KB, patch)
2015-03-08 11:42 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Patch
(2.61 KB, patch)
2015-03-08 11:42 PDT
,
Chris Dumez
no flags
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Chris Dumez
Comment 1
2015-03-07 18:34:36 PST
Created
attachment 248171
[details]
Patch
Andreas Kling
Comment 2
2015-03-07 18:54:14 PST
Comment on
attachment 248171
[details]
Patch r=me
WebKit Commit Bot
Comment 3
2015-03-07 19:37:54 PST
Comment on
attachment 248171
[details]
Patch Clearing flags on attachment: 248171 Committed
r181219
: <
http://trac.webkit.org/changeset/181219
>
WebKit Commit Bot
Comment 4
2015-03-07 19:37:59 PST
All reviewed patches have been landed. Closing bug.
Darin Adler
Comment 5
2015-03-08 10:38:32 PDT
Comment on
attachment 248171
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=248171&action=review
> Source/WebCore/Modules/notifications/NotificationCenter.cpp:109 > m_client->clearNotifications(scriptExecutionContext());
What guarantees m_client has not become null at this point?
Darin Adler
Comment 6
2015-03-08 10:39:53 PDT
Comment on
attachment 248171
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=248171&action=review
> Source/WebCore/Modules/notifications/NotificationCenter.cpp:110 > m_client = nullptr;
Another way to fix this would be to put the client into a local variable and null out m_client *before* calling clearNotifications.
Chris Dumez
Comment 7
2015-03-08 11:01:54 PDT
(In reply to
comment #6
)
> Comment on
attachment 248171
[details]
> Patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=248171&action=review
> > > Source/WebCore/Modules/notifications/NotificationCenter.cpp:110 > > m_client = nullptr; > > Another way to fix this would be to put the client into a local variable and > null out m_client *before* calling clearNotifications.
Good idea, I'll re-upload a patch. BTW, I think we are leaking the client. provideNotification() is called like this: WebCore::provideNotification(m_page.get(), new WebNotificationClient(this)); We then keep a NotificationClient& as a member of NotificationController but I don't see us destroying the NotificationClient anywhere. This is not specific to Notifications though (Geolocation is the same for e.g.) so this may be done on purpose.
Chris Dumez
Comment 8
2015-03-08 11:04:52 PDT
Comment on
attachment 248171
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=248171&action=review
>> Source/WebCore/Modules/notifications/NotificationCenter.cpp:109 >> m_client->clearNotifications(scriptExecutionContext()); > > What guarantees m_client has not become null at this point?
m_client is only set to null on the next line, nowhere else. The client pointer has to be valid too as we seem to leak the client.
Chris Dumez
Comment 9
2015-03-08 11:42:15 PDT
Reopening to attach new patch.
Chris Dumez
Comment 10
2015-03-08 11:42:18 PDT
Created
attachment 248190
[details]
Patch
Chris Dumez
Comment 11
2015-03-08 11:42:46 PDT
Created
attachment 248191
[details]
Patch
Darin Adler
Comment 12
2015-03-08 19:12:15 PDT
(In reply to
comment #7
)
> BTW, I think we are leaking the client. provideNotification() is called like > this: > WebCore::provideNotification(m_page.get(), new WebNotificationClient(this)); > > We then keep a NotificationClient& as a member of NotificationController but > I don't see us destroying the NotificationClient anywhere. This is not > specific to Notifications though (Geolocation is the same for e.g.) so this > may be done on purpose.
The client is destroyed when notificationControllerDestroyed is called. So we will indeed leak it if we set m_client to null without calling notificationControllerDestroyed on that client.
Chris Dumez
Comment 13
2015-03-08 19:15:19 PDT
(In reply to
comment #12
)
> (In reply to
comment #7
) > > BTW, I think we are leaking the client. provideNotification() is called like > > this: > > WebCore::provideNotification(m_page.get(), new WebNotificationClient(this)); > > > > We then keep a NotificationClient& as a member of NotificationController but > > I don't see us destroying the NotificationClient anywhere. This is not > > specific to Notifications though (Geolocation is the same for e.g.) so this > > may be done on purpose. > > The client is destroyed when notificationControllerDestroyed is called. So > we will indeed leak it if we set m_client to null without calling > notificationControllerDestroyed on that client.
Oh, I missed that. We are not leaking then. ~NotificationController() does call notificationControllerDestroyed() on the client. m_client is never reset to null in the NotificationController, we only null out NotificationCenter::m_client in NotificationCenter::stop().
WebKit Commit Bot
Comment 14
2015-03-08 19:55:58 PDT
Comment on
attachment 248191
[details]
Patch Clearing flags on attachment: 248191 Committed
r181256
: <
http://trac.webkit.org/changeset/181256
>
WebKit Commit Bot
Comment 15
2015-03-08 19:56:02 PDT
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug