1 /*
   2  * Copyright (c) 1997, 2016, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #include "precompiled.hpp"
  26 #include "runtime/mutexLocker.hpp"
  27 #include "runtime/os.inline.hpp"
  28 #include "runtime/safepoint.hpp"
  29 #include "runtime/thread.inline.hpp"
  30 #include "runtime/vmThread.hpp"
  31 
  32 // Mutexes used in the VM (see comment in mutexLocker.hpp):
  33 //
  34 // Note that the following pointers are effectively final -- after having been
  35 // set at JVM startup-time, they should never be subsequently mutated.
  36 // Instead of using pointers to malloc()ed monitors and mutexes we should consider
  37 // eliminating the indirection and using instances instead.
  38 // Consider using GCC's __read_mostly.
  39 
  40 Mutex*   Patching_lock                = NULL;
  41 Monitor* SystemDictionary_lock        = NULL;
  42 Mutex*   Module_lock                  = NULL;
  43 Mutex*   CompiledIC_lock              = NULL;
  44 Mutex*   InlineCacheBuffer_lock       = NULL;
  45 Mutex*   VMStatistic_lock             = NULL;
  46 Mutex*   JNIGlobalHandle_lock         = NULL;
  47 Mutex*   JNIHandleBlockFreeList_lock  = NULL;
  48 Mutex*   MemberNameTable_lock         = NULL;
  49 Mutex*   JmethodIdCreation_lock       = NULL;
  50 Mutex*   JfieldIdCreation_lock        = NULL;
  51 Monitor* JNICritical_lock             = NULL;
  52 Mutex*   JvmtiThreadState_lock        = NULL;
  53 Monitor* Heap_lock                    = NULL;
  54 Mutex*   ExpandHeap_lock              = NULL;
  55 Mutex*   AdapterHandlerLibrary_lock   = NULL;
  56 Mutex*   SignatureHandlerLibrary_lock = NULL;
  57 Mutex*   VtableStubs_lock             = NULL;
  58 Mutex*   SymbolTable_lock             = NULL;
  59 Mutex*   StringTable_lock             = NULL;
  60 Monitor* StringDedupQueue_lock        = NULL;
  61 Mutex*   StringDedupTable_lock        = NULL;
  62 Monitor* CodeCache_lock               = NULL;
  63 Mutex*   MethodData_lock              = NULL;
  64 Mutex*   TouchedMethodLog_lock        = NULL;
  65 Mutex*   RetData_lock                 = NULL;
  66 Monitor* VMOperationQueue_lock        = NULL;
  67 Monitor* VMOperationRequest_lock      = NULL;
  68 Monitor* Safepoint_lock               = NULL;
  69 Monitor* SerializePage_lock           = NULL;
  70 Monitor* Threads_lock                 = NULL;
  71 Monitor* CGC_lock                     = NULL;
  72 Monitor* STS_lock                     = NULL;
  73 Monitor* FullGCCount_lock             = NULL;
  74 Mutex*   SATB_Q_FL_lock               = NULL;
  75 Monitor* SATB_Q_CBL_mon               = NULL;
  76 Mutex*   Shared_SATB_Q_lock           = NULL;
  77 Mutex*   DirtyCardQ_FL_lock           = NULL;
  78 Monitor* DirtyCardQ_CBL_mon           = NULL;
  79 Mutex*   Shared_DirtyCardQ_lock       = NULL;
  80 Mutex*   MarkStackFreeList_lock       = NULL;
  81 Mutex*   MarkStackChunkList_lock      = NULL;
  82 Mutex*   ParGCRareEvent_lock          = NULL;
  83 Mutex*   DerivedPointerTableGC_lock   = NULL;
  84 Mutex*   Compile_lock                 = NULL;
  85 Monitor* MethodCompileQueue_lock      = NULL;
  86 Monitor* CompileThread_lock           = NULL;
  87 Monitor* Compilation_lock             = NULL;
  88 Mutex*   CompileTaskAlloc_lock        = NULL;
  89 Mutex*   CompileStatistics_lock       = NULL;
  90 Mutex*   DirectivesStack_lock         = NULL;
  91 Mutex*   MultiArray_lock              = NULL;
  92 Monitor* Terminator_lock              = NULL;
  93 Monitor* BeforeExit_lock              = NULL;
  94 Monitor* Notify_lock                  = NULL;
  95 Mutex*   ProfilePrint_lock            = NULL;
  96 Mutex*   ExceptionCache_lock          = NULL;
  97 Mutex*   OsrList_lock                 = NULL;
  98 
  99 #ifndef PRODUCT
 100 Mutex*   FullGCALot_lock              = NULL;
 101 #endif
 102 
 103 Mutex*   Debug1_lock                  = NULL;
 104 Mutex*   Debug2_lock                  = NULL;
 105 Mutex*   Debug3_lock                  = NULL;
 106 
 107 Mutex*   tty_lock                     = NULL;
 108 
 109 Mutex*   RawMonitor_lock              = NULL;
 110 Mutex*   PerfDataMemAlloc_lock        = NULL;
 111 Mutex*   PerfDataManager_lock         = NULL;
 112 Mutex*   OopMapCacheAlloc_lock        = NULL;
 113 
 114 Mutex*   FreeList_lock                = NULL;
 115 Monitor* SecondaryFreeList_lock       = NULL;
 116 Mutex*   OldSets_lock                 = NULL;
 117 Monitor* RootRegionScan_lock          = NULL;
 118 Mutex*   MMUTracker_lock              = NULL;
 119 
 120 Monitor* GCTaskManager_lock           = NULL;
 121 
 122 Mutex*   Management_lock              = NULL;
 123 Monitor* Service_lock                 = NULL;
 124 Monitor* PeriodicTask_lock            = NULL;
 125 Monitor* RedefineClasses_lock         = NULL;
 126 
 127 #ifdef INCLUDE_TRACE
 128 Mutex*   JfrStacktrace_lock           = NULL;
 129 Monitor* JfrMsg_lock                  = NULL;
 130 Mutex*   JfrBuffer_lock               = NULL;
 131 Mutex*   JfrStream_lock               = NULL;
 132 Mutex*   JfrThreadGroups_lock         = NULL;
 133 #endif
 134 
 135 #ifndef SUPPORTS_NATIVE_CX8
 136 Mutex*   UnsafeJlong_lock             = NULL;
 137 #endif
 138 
 139 #define MAX_NUM_MUTEX 128
 140 static Monitor * _mutex_array[MAX_NUM_MUTEX];
 141 static int _num_mutex;
 142 
 143 #ifdef ASSERT
 144 void assert_locked_or_safepoint(const Monitor * lock) {
 145   // check if this thread owns the lock (common case)
 146   if (IgnoreLockingAssertions) return;
 147   assert(lock != NULL, "Need non-NULL lock");
 148   if (lock->owned_by_self()) return;
 149   if (SafepointSynchronize::is_at_safepoint()) return;
 150   if (!Universe::is_fully_initialized()) return;
 151   // see if invoker of VM operation owns it
 152   VM_Operation* op = VMThread::vm_operation();
 153   if (op != NULL && op->calling_thread() == lock->owner()) return;
 154   fatal("must own lock %s", lock->name());
 155 }
 156 
 157 // a stronger assertion than the above
 158 void assert_lock_strong(const Monitor * lock) {
 159   if (IgnoreLockingAssertions) return;
 160   assert(lock != NULL, "Need non-NULL lock");
 161   if (lock->owned_by_self()) return;
 162   fatal("must own lock %s", lock->name());
 163 }
 164 #endif
 165 
 166 #define def(var, type, pri, vm_block, safepoint_check_allowed ) {      \
 167   var = new type(Mutex::pri, #var, vm_block, safepoint_check_allowed); \
 168   assert(_num_mutex < MAX_NUM_MUTEX, "increase MAX_NUM_MUTEX");        \
 169   _mutex_array[_num_mutex++] = var;                                      \
 170 }
 171 
 172 void mutex_init() {
 173   def(tty_lock                     , Mutex  , event,       true,  Monitor::_safepoint_check_never);      // allow to lock in VM
 174 
 175   def(CGC_lock                     , Monitor, special,     true,  Monitor::_safepoint_check_never);      // coordinate between fore- and background GC
 176   def(STS_lock                     , Monitor, leaf,        true,  Monitor::_safepoint_check_never);
 177 
 178   if (UseConcMarkSweepGC || UseG1GC) {
 179     def(FullGCCount_lock           , Monitor, leaf,        true,  Monitor::_safepoint_check_never);      // in support of ExplicitGCInvokesConcurrent
 180   }
 181   if (UseG1GC) {
 182 
 183     def(SATB_Q_FL_lock             , Mutex  , special,     true,  Monitor::_safepoint_check_never);
 184     def(SATB_Q_CBL_mon             , Monitor, nonleaf,     true,  Monitor::_safepoint_check_never);
 185     def(Shared_SATB_Q_lock         , Mutex,   nonleaf,     true,  Monitor::_safepoint_check_never);
 186 
 187     def(DirtyCardQ_FL_lock         , Mutex  , special,     true,  Monitor::_safepoint_check_never);
 188     def(DirtyCardQ_CBL_mon         , Monitor, nonleaf,     true,  Monitor::_safepoint_check_never);
 189     def(Shared_DirtyCardQ_lock     , Mutex,   nonleaf,     true,  Monitor::_safepoint_check_never);
 190 
 191     def(FreeList_lock              , Mutex,   leaf     ,   true,  Monitor::_safepoint_check_never);
 192     def(SecondaryFreeList_lock     , Monitor, leaf     ,   true,  Monitor::_safepoint_check_never);
 193     def(OldSets_lock               , Mutex  , leaf     ,   true,  Monitor::_safepoint_check_never);
 194     def(RootRegionScan_lock        , Monitor, leaf     ,   true,  Monitor::_safepoint_check_never);
 195     def(MMUTracker_lock            , Mutex  , leaf     ,   true,  Monitor::_safepoint_check_never);
 196 
 197     def(StringDedupQueue_lock      , Monitor, leaf,        true,  Monitor::_safepoint_check_never);
 198     def(StringDedupTable_lock      , Mutex  , leaf,        true,  Monitor::_safepoint_check_never);
 199 
 200     def(MarkStackFreeList_lock     , Mutex , leaf      ,   true,  Monitor::_safepoint_check_never);
 201     def(MarkStackChunkList_lock    , Mutex , leaf      ,   true,  Monitor::_safepoint_check_never);
 202   }
 203   def(ParGCRareEvent_lock          , Mutex  , leaf     ,   true,  Monitor::_safepoint_check_sometimes);
 204   def(DerivedPointerTableGC_lock   , Mutex,   leaf,        true,  Monitor::_safepoint_check_never);
 205   def(CodeCache_lock               , Mutex  , special,     true,  Monitor::_safepoint_check_never);
 206   def(RawMonitor_lock              , Mutex,   special,     true,  Monitor::_safepoint_check_never);
 207   def(OopMapCacheAlloc_lock        , Mutex,   leaf,        true,  Monitor::_safepoint_check_always);     // used for oop_map_cache allocation.
 208 
 209   def(Patching_lock                , Mutex  , special,     true,  Monitor::_safepoint_check_never);      // used for safepointing and code patching.
 210   def(Service_lock                 , Monitor, special,     true,  Monitor::_safepoint_check_never);      // used for service thread operations
 211   def(JmethodIdCreation_lock       , Mutex  , leaf,        true,  Monitor::_safepoint_check_always);     // used for creating jmethodIDs.
 212 
 213   def(SystemDictionary_lock        , Monitor, leaf,        true,  Monitor::_safepoint_check_always);     // lookups done by VM thread
 214   def(Module_lock                  , Mutex  , leaf+2,      true,  Monitor::_safepoint_check_always);
 215   def(InlineCacheBuffer_lock       , Mutex  , leaf,        true,  Monitor::_safepoint_check_always);
 216   def(VMStatistic_lock             , Mutex  , leaf,        false, Monitor::_safepoint_check_always);
 217   def(ExpandHeap_lock              , Mutex  , leaf,        true,  Monitor::_safepoint_check_always);     // Used during compilation by VM thread
 218   def(JNIHandleBlockFreeList_lock  , Mutex  , leaf,        true,  Monitor::_safepoint_check_never);      // handles are used by VM thread
 219   def(SignatureHandlerLibrary_lock , Mutex  , leaf,        false, Monitor::_safepoint_check_always);
 220   def(SymbolTable_lock             , Mutex  , leaf+2,      true,  Monitor::_safepoint_check_always);
 221   def(StringTable_lock             , Mutex  , leaf,        true,  Monitor::_safepoint_check_always);
 222   def(ProfilePrint_lock            , Mutex  , leaf,        false, Monitor::_safepoint_check_always);     // serial profile printing
 223   def(ExceptionCache_lock          , Mutex  , leaf,        false, Monitor::_safepoint_check_always);     // serial profile printing
 224   def(OsrList_lock                 , Mutex  , leaf,        true,  Monitor::_safepoint_check_never);
 225   def(Debug1_lock                  , Mutex  , leaf,        true,  Monitor::_safepoint_check_never);
 226 #ifndef PRODUCT
 227   def(FullGCALot_lock              , Mutex  , leaf,        false, Monitor::_safepoint_check_always);     // a lock to make FullGCALot MT safe
 228 #endif
 229   def(BeforeExit_lock              , Monitor, leaf,        true,  Monitor::_safepoint_check_always);
 230   def(PerfDataMemAlloc_lock        , Mutex  , leaf,        true,  Monitor::_safepoint_check_always);     // used for allocating PerfData memory for performance data
 231   def(PerfDataManager_lock         , Mutex  , leaf,        true,  Monitor::_safepoint_check_always);     // used for synchronized access to PerfDataManager resources
 232 
 233   // CMS_modUnionTable_lock                   leaf
 234   // CMS_bitMap_lock                          leaf 1
 235   // CMS_freeList_lock                        leaf 2
 236 
 237   def(Safepoint_lock               , Monitor, safepoint,   true,  Monitor::_safepoint_check_sometimes);  // locks SnippetCache_lock/Threads_lock
 238 
 239   def(Threads_lock                 , Monitor, barrier,     true,  Monitor::_safepoint_check_sometimes);
 240 
 241   def(VMOperationQueue_lock        , Monitor, nonleaf,     true,  Monitor::_safepoint_check_sometimes);  // VM_thread allowed to block on these
 242   def(VMOperationRequest_lock      , Monitor, nonleaf,     true,  Monitor::_safepoint_check_sometimes);
 243   def(RetData_lock                 , Mutex  , nonleaf,     false, Monitor::_safepoint_check_always);
 244   def(Terminator_lock              , Monitor, nonleaf,     true,  Monitor::_safepoint_check_sometimes);
 245   def(VtableStubs_lock             , Mutex  , nonleaf,     true,  Monitor::_safepoint_check_always);
 246   def(Notify_lock                  , Monitor, nonleaf,     true,  Monitor::_safepoint_check_always);
 247   def(JNIGlobalHandle_lock         , Mutex  , nonleaf,     true,  Monitor::_safepoint_check_always);     // locks JNIHandleBlockFreeList_lock
 248   def(JNICritical_lock             , Monitor, nonleaf,     true,  Monitor::_safepoint_check_always);     // used for JNI critical regions
 249   def(AdapterHandlerLibrary_lock   , Mutex  , nonleaf,     true,  Monitor::_safepoint_check_always);
 250 
 251   def(Heap_lock                    , Monitor, nonleaf+1,   false, Monitor::_safepoint_check_sometimes);
 252   def(JfieldIdCreation_lock        , Mutex  , nonleaf+1,   true,  Monitor::_safepoint_check_always);     // jfieldID, Used in VM_Operation
 253   def(MemberNameTable_lock         , Mutex  , nonleaf+1,   false, Monitor::_safepoint_check_always);     // Used to protect MemberNameTable
 254 
 255   def(CompiledIC_lock              , Mutex  , nonleaf+2,   false, Monitor::_safepoint_check_always);     // locks VtableStubs_lock, InlineCacheBuffer_lock
 256   def(CompileTaskAlloc_lock        , Mutex  , nonleaf+2,   true,  Monitor::_safepoint_check_always);
 257   def(CompileStatistics_lock       , Mutex  , nonleaf+2,   false, Monitor::_safepoint_check_always);
 258   def(DirectivesStack_lock         , Mutex  , special,     true,  Monitor::_safepoint_check_never);
 259   def(MultiArray_lock              , Mutex  , nonleaf+2,   false, Monitor::_safepoint_check_always);     // locks SymbolTable_lock
 260 
 261   def(JvmtiThreadState_lock        , Mutex  , nonleaf+2,   false, Monitor::_safepoint_check_always);     // Used by JvmtiThreadState/JvmtiEventController
 262   def(Management_lock              , Mutex  , nonleaf+2,   false, Monitor::_safepoint_check_always);     // used for JVM management
 263 
 264   def(Compile_lock                 , Mutex  , nonleaf+3,   true,  Monitor::_safepoint_check_sometimes);
 265   def(MethodData_lock              , Mutex  , nonleaf+3,   false, Monitor::_safepoint_check_always);
 266   def(TouchedMethodLog_lock        , Mutex  , nonleaf+3,   false, Monitor::_safepoint_check_always);
 267 
 268   def(MethodCompileQueue_lock      , Monitor, nonleaf+4,   true,  Monitor::_safepoint_check_always);
 269   def(Debug2_lock                  , Mutex  , nonleaf+4,   true,  Monitor::_safepoint_check_never);
 270   def(Debug3_lock                  , Mutex  , nonleaf+4,   true,  Monitor::_safepoint_check_never);
 271   def(CompileThread_lock           , Monitor, nonleaf+5,   false, Monitor::_safepoint_check_always);
 272   def(PeriodicTask_lock            , Monitor, nonleaf+5,   true,  Monitor::_safepoint_check_sometimes);
 273   def(RedefineClasses_lock         , Monitor, nonleaf+5,   true,  Monitor::_safepoint_check_always);
 274   if (WhiteBoxAPI) {
 275     def(Compilation_lock           , Monitor, leaf,        false, Monitor::_safepoint_check_never);
 276   }
 277 
 278 #ifdef INCLUDE_TRACE
 279   def(JfrMsg_lock                  , Monitor, leaf,        true,  Monitor::_safepoint_check_always);
 280   def(JfrBuffer_lock               , Mutex,   leaf,        true,  Monitor::_safepoint_check_never);
 281   def(JfrThreadGroups_lock         , Mutex,   leaf,        true,  Monitor::_safepoint_check_always);
 282   def(JfrStream_lock               , Mutex,   leaf+1,      true,  Monitor::_safepoint_check_never);      // ensure to rank lower than 'safepoint'
 283   def(JfrStacktrace_lock           , Mutex,   special,     true,  Monitor::_safepoint_check_sometimes);
 284 #endif
 285 
 286 #ifndef SUPPORTS_NATIVE_CX8
 287   def(UnsafeJlong_lock             , Mutex,   special,     false, Monitor::_safepoint_check_never);
 288 #endif
 289 }
 290 
 291 GCMutexLocker::GCMutexLocker(Monitor * mutex) {
 292   if (SafepointSynchronize::is_at_safepoint()) {
 293     _locked = false;
 294   } else {
 295     _mutex = mutex;
 296     _locked = true;
 297     _mutex->lock();
 298   }
 299 }
 300 
 301 // Print all mutexes/monitors that are currently owned by a thread; called
 302 // by fatal error handler.
 303 void print_owned_locks_on_error(outputStream* st) {
 304   st->print("VM Mutex/Monitor currently owned by a thread: ");
 305   bool none = true;
 306   for (int i = 0; i < _num_mutex; i++) {
 307      // see if it has an owner
 308      if (_mutex_array[i]->owner() != NULL) {
 309        if (none) {
 310           // print format used by Mutex::print_on_error()
 311           st->print_cr(" ([mutex/lock_event])");
 312           none = false;
 313        }
 314        _mutex_array[i]->print_on_error(st);
 315        st->cr();
 316      }
 317   }
 318   if (none) st->print_cr("None");
 319 }