WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED DUPLICATE of
bug 200507
195656
Add a thread safety assertion for RefCounted
https://bugs.webkit.org/show_bug.cgi?id=195656
Summary
Add a thread safety assertion for RefCounted
Ryosuke Niwa
Reported
2019-03-12 17:39:25 PDT
I think we should add some thread safety check for RefCounted. Namely, we should avoid creating an object and ref / deref it in two different threads. Such objects should be using ThreadSafeRefCounted instead.
Attachments
Add attachment
proposed patch, testcase, etc.
Ryosuke Niwa
Comment 1
2019-03-12 17:40:33 PDT
Note that it's technically correct to create an object in one thread, pass it to another thread if the new thread has an exclusive ownership / access right. However, such a code is error prone so I'd argue that we shouldn't have such a code without such code using ThreadSafeRefCounted instead.
Fujii Hironori
Comment 2
2019-03-12 19:28:17 PDT
WTF::String has a non-atomic ref couter, but it is a quite common pattern to pass a WTF::String cross-threads by using isolatedCopy().
Ryosuke Niwa
Comment 3
2019-03-12 19:31:37 PDT
(In reply to Fujii Hironori from
comment #2
)
> WTF::String has a non-atomic ref couter, but it is a quite common pattern to > pass a WTF::String cross-threads by using isolatedCopy().
That's a good point. Maybe we need to allow this usage in some classes, or perhaps isolatedCopy needs some magic to unset the thread identity.
Geoffrey Garen
Comment 4
2019-03-13 10:41:05 PDT
We used to have assertions like this and we had to remove them. The corner case was JavaScriptCore. JavaScriptCore allows clients to run on any thread, and it ensures thread safety through coarse-grained locking. JavaScriptCore also uses many fundamental WTF types. We could not find a practical way to annotate all types as asserting their thread affinity if and only if not used by JavaScriptCore. But perhaps the opposite is possible: WebCore could annotate certain important objects upon allocation as being tied to a thread.
Fujii Hironori
Comment 5
2019-10-23 22:56:54 PDT
*** This bug has been marked as a duplicate of
bug 200507
***
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