1 /*
   2  * Copyright (c) 2012, 2018, 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 "classfile/stringTable.hpp"
  27 #include "classfile/symbolTable.hpp"
  28 #include "runtime/interfaceSupport.inline.hpp"
  29 #include "runtime/javaCalls.hpp"
  30 #include "runtime/serviceThread.hpp"
  31 #include "runtime/mutexLocker.hpp"
  32 #include "runtime/os.hpp"
  33 #include "prims/jvmtiImpl.hpp"
  34 #include "prims/resolvedMethodTable.hpp"
  35 #include "services/diagnosticArgument.hpp"
  36 #include "services/diagnosticFramework.hpp"
  37 #include "services/gcNotifier.hpp"
  38 #include "services/lowMemoryDetector.hpp"
  39 
  40 ServiceThread* ServiceThread::_instance = NULL;
  41 
  42 void ServiceThread::initialize() {
  43   EXCEPTION_MARK;
  44 
  45   const char* name = "Service Thread";
  46   Handle string = java_lang_String::create_from_str(name, CHECK);
  47 
  48   // Initialize thread_oop to put it into the system threadGroup
  49   Handle thread_group (THREAD, Universe::system_thread_group());
  50   Handle thread_oop = JavaCalls::construct_new_instance(
  51                           SystemDictionary::Thread_klass(),
  52                           vmSymbols::threadgroup_string_void_signature(),
  53                           thread_group,
  54                           string,
  55                           CHECK);
  56 
  57   {
  58     MutexLocker mu(Threads_lock);
  59     ServiceThread* thread =  new ServiceThread(&service_thread_entry);
  60 
  61     // At this point it may be possible that no osthread was created for the
  62     // JavaThread due to lack of memory. We would have to throw an exception
  63     // in that case. However, since this must work and we do not allow
  64     // exceptions anyway, check and abort if this fails.
  65     if (thread == NULL || thread->osthread() == NULL) {
  66       vm_exit_during_initialization("java.lang.OutOfMemoryError",
  67                                     os::native_thread_creation_failed_msg());
  68     }
  69 
  70     java_lang_Thread::set_thread(thread_oop(), thread);
  71     java_lang_Thread::set_priority(thread_oop(), NearMaxPriority);
  72     java_lang_Thread::set_daemon(thread_oop());
  73     thread->set_threadObj(thread_oop());
  74     _instance = thread;
  75 
  76     Threads::add(thread);
  77     Thread::start(thread);
  78   }
  79 }
  80 
  81 void ServiceThread::service_thread_entry(JavaThread* jt, TRAPS) {
  82   while (true) {
  83     bool sensors_changed = false;
  84     bool has_jvmti_events = false;
  85     bool has_gc_notification_event = false;
  86     bool has_dcmd_notification_event = false;
  87     bool acs_notify = false;
  88     bool stringtable_work = false;
  89     bool symboltable_work = false;
  90     bool resolved_method_table_work = false;
  91     JvmtiDeferredEvent jvmti_event;
  92     {
  93       // Need state transition ThreadBlockInVM so that this thread
  94       // will be handled by safepoint correctly when this thread is
  95       // notified at a safepoint.
  96 
  97       // This ThreadBlockInVM object is not also considered to be
  98       // suspend-equivalent because ServiceThread is not visible to
  99       // external suspension.
 100 
 101       ThreadBlockInVM tbivm(jt);
 102 
 103       MutexLockerEx ml(Service_lock, Mutex::_no_safepoint_check_flag);
 104       while (!(sensors_changed = LowMemoryDetector::has_pending_requests()) &&
 105              !(has_jvmti_events = JvmtiDeferredEventQueue::has_events()) &&
 106               !(has_gc_notification_event = GCNotifier::has_event()) &&
 107               !(has_dcmd_notification_event = DCmdFactory::has_pending_jmx_notification()) &&
 108               !(stringtable_work = StringTable::has_work()) &&
 109               !(symboltable_work = SymbolTable::has_work()) &&
 110               !(resolved_method_table_work = ResolvedMethodTable::has_work())) {
 111         // wait until one of the sensors has pending requests, or there is a
 112         // pending JVMTI event or JMX GC notification to post
 113         Service_lock->wait(Mutex::_no_safepoint_check_flag);
 114       }
 115 
 116       if (has_jvmti_events) {
 117         jvmti_event = JvmtiDeferredEventQueue::dequeue();
 118       }
 119     }
 120 
 121     if (stringtable_work) {
 122       StringTable::do_concurrent_work(jt);
 123     }
 124 
 125     if (symboltable_work) {
 126       SymbolTable::do_concurrent_work(jt);
 127     }
 128 
 129     if (has_jvmti_events) {
 130       jvmti_event.post();
 131     }
 132 
 133     if (sensors_changed) {
 134       LowMemoryDetector::process_sensor_changes(jt);
 135     }
 136 
 137     if(has_gc_notification_event) {
 138       GCNotifier::sendNotification(CHECK);
 139     }
 140 
 141     if(has_dcmd_notification_event) {
 142       DCmdFactory::send_notification(CHECK);
 143     }
 144 
 145     if (resolved_method_table_work) {
 146       ResolvedMethodTable::unlink();
 147     }
 148   }
 149 }
 150 
 151 bool ServiceThread::is_service_thread(Thread* thread) {
 152   return thread == _instance;
 153 }