Ignore:
Timestamp:
Dec 27, 2008, 6:54:12 PM (16 years ago)
Author:
[email protected]
Message:

<rdar://problem/6467376> Race condition in WTF::currentThread can lead to a thread using two different identifiers during its lifetime

If a newly-created thread calls WTF::currentThread() before WTF::createThread calls establishIdentifierForPthreadHandle
then more than one identifier will be used for the same thread. We can avoid this by adding some extra synchronization
during thread creation that delays the execution of the thread function until the thread identifier has been set up, and
an assertion to catch this problem should it reappear in the future.

Reviewed by Alexey Proskuryakov.

  • wtf/Threading.cpp: Added.

(WTF::NewThreadContext::NewThreadContext):
(WTF::threadEntryPoint):
(WTF::createThread): Add cross-platform createThread function that delays the execution of the thread function until
after the thread identifier has been set up.

  • wtf/Threading.h:
  • wtf/ThreadingGtk.cpp:

(WTF::establishIdentifierForThread):
(WTF::createThreadInternal):

  • wtf/ThreadingNone.cpp:

(WTF::createThreadInternal):

  • wtf/ThreadingPthreads.cpp:

(WTF::establishIdentifierForPthreadHandle):
(WTF::createThreadInternal):

  • wtf/ThreadingQt.cpp:

(WTF::identifierByQthreadHandle):
(WTF::establishIdentifierForThread):
(WTF::createThreadInternal):

  • wtf/ThreadingWin.cpp:

(WTF::storeThreadHandleByIdentifier):
(WTF::createThreadInternal):

Add Threading.cpp to the build.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/ThreadingGtk.cpp

    r39337 r39487  
    8383}
    8484
    85 static ThreadIdentifier establishIdentifierForThread(GThread*& thread)
    86 {
    87     MutexLocker locker(threadMapMutex());
    88 
    89     static ThreadIdentifier identifierCount = 1;
    90 
    91     threadMap().add(identifierCount, thread);
    92 
    93     return identifierCount++;
    94 }
    95 
    9685static ThreadIdentifier identifierByGthreadHandle(GThread*& thread)
    9786{
     
    10796}
    10897
     98static ThreadIdentifier establishIdentifierForThread(GThread*& thread)
     99{
     100    ASSERT(!identifierByGthreadHandle(thread));
     101
     102    MutexLocker locker(threadMapMutex());
     103
     104    static ThreadIdentifier identifierCount = 1;
     105
     106    threadMap().add(identifierCount, thread);
     107
     108    return identifierCount++;
     109}
     110
    109111static GThread* threadForIdentifier(ThreadIdentifier id)
    110112{
     
    123125}
    124126
    125 ThreadIdentifier createThread(ThreadFunction entryPoint, void* data, const char*)
     127ThreadIdentifier createThreadInternal(ThreadFunction entryPoint, void* data, const char*)
    126128{
    127129    GThread* thread;
Note: See TracChangeset for help on using the changeset viewer.