Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
Andreas Gampe | 277ccbd | 2014-11-03 21:36:10 -0800 | [diff] [blame] | 17 | #include "dalvik_system_ZygoteHooks.h" |
| 18 | |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 19 | #include <stdlib.h> |
| 20 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 21 | #include "android-base/stringprintf.h" |
| 22 | |
Ian Rogers | d582fa4 | 2014-11-05 23:46:43 -0800 | [diff] [blame] | 23 | #include "arch/instruction_set.h" |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 24 | #include "debugger.h" |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 25 | #include "java_vm_ext.h" |
Mathieu Chartier | 455f67c | 2015-03-17 13:48:29 -0700 | [diff] [blame] | 26 | #include "jit/jit.h" |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 27 | #include "jni_internal.h" |
| 28 | #include "JNIHelp.h" |
Mathieu Chartier | 0795f23 | 2016-09-27 18:43:30 -0700 | [diff] [blame] | 29 | #include "scoped_thread_state_change-inl.h" |
Andreas Gampe | 6be67ee | 2014-09-02 21:22:18 -0700 | [diff] [blame] | 30 | #include "ScopedUtfChars.h" |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 31 | #include "thread-inl.h" |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 32 | #include "trace.h" |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 33 | |
Elliott Hughes | 0a18df8 | 2015-01-09 15:16:16 -0800 | [diff] [blame] | 34 | #if defined(__linux__) |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 35 | #include <sys/prctl.h> |
| 36 | #endif |
| 37 | |
Narayan Kamath | ad4b0d2 | 2014-04-02 12:06:02 +0100 | [diff] [blame] | 38 | #include <sys/resource.h> |
| 39 | |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 40 | namespace art { |
| 41 | |
Andreas Gampe | 46ee31b | 2016-12-14 10:11:49 -0800 | [diff] [blame] | 42 | using android::base::StringPrintf; |
| 43 | |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 44 | static void EnableDebugger() { |
Elliott Hughes | 0a18df8 | 2015-01-09 15:16:16 -0800 | [diff] [blame] | 45 | #if defined(__linux__) |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 46 | // To let a non-privileged gdbserver attach to this |
| 47 | // process, we must set our dumpable flag. |
| 48 | if (prctl(PR_SET_DUMPABLE, 1, 0, 0, 0) == -1) { |
| 49 | PLOG(ERROR) << "prctl(PR_SET_DUMPABLE) failed for pid " << getpid(); |
| 50 | } |
Oleksiy Vyalov | de9007f | 2016-06-21 16:21:37 -0700 | [diff] [blame] | 51 | |
| 52 | // Even if Yama is on a non-privileged native debugger should |
| 53 | // be able to attach to the debuggable app. |
| 54 | if (prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY, 0, 0, 0) == -1) { |
| 55 | // if Yama is off prctl(PR_SET_PTRACER) returns EINVAL - don't log in this |
| 56 | // case since it's expected behaviour. |
| 57 | if (errno != EINVAL) { |
| 58 | PLOG(ERROR) << "prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY) failed for pid " << getpid(); |
| 59 | } |
| 60 | } |
Ian Rogers | c5f1773 | 2014-06-05 20:48:42 -0700 | [diff] [blame] | 61 | #endif |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 62 | // We don't want core dumps, though, so set the core dump size to 0. |
| 63 | rlimit rl; |
| 64 | rl.rlim_cur = 0; |
| 65 | rl.rlim_max = RLIM_INFINITY; |
| 66 | if (setrlimit(RLIMIT_CORE, &rl) == -1) { |
| 67 | PLOG(ERROR) << "setrlimit(RLIMIT_CORE) failed for pid " << getpid(); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | static void EnableDebugFeatures(uint32_t debug_flags) { |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 72 | // Must match values in com.android.internal.os.Zygote. |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 73 | enum { |
Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 74 | DEBUG_ENABLE_JDWP = 1, |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 75 | DEBUG_ENABLE_CHECKJNI = 1 << 1, |
| 76 | DEBUG_ENABLE_ASSERT = 1 << 2, |
| 77 | DEBUG_ENABLE_SAFEMODE = 1 << 3, |
| 78 | DEBUG_ENABLE_JNI_LOGGING = 1 << 4, |
Nicolas Geoffray | 0f042e0 | 2015-11-05 11:32:24 +0000 | [diff] [blame] | 79 | DEBUG_GENERATE_DEBUG_INFO = 1 << 5, |
Siva Chandra | 05d2415 | 2016-01-05 17:43:17 -0800 | [diff] [blame] | 80 | DEBUG_ALWAYS_JIT = 1 << 6, |
Tamas Berghammer | dd5e5e9 | 2016-02-12 16:29:00 +0000 | [diff] [blame] | 81 | DEBUG_NATIVE_DEBUGGABLE = 1 << 7, |
Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 82 | DEBUG_JAVA_DEBUGGABLE = 1 << 8, |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 83 | }; |
| 84 | |
Mathieu Chartier | 6eff38d | 2015-03-17 09:52:22 -0700 | [diff] [blame] | 85 | Runtime* const runtime = Runtime::Current(); |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 86 | if ((debug_flags & DEBUG_ENABLE_CHECKJNI) != 0) { |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 87 | JavaVMExt* vm = runtime->GetJavaVM(); |
Ian Rogers | 68d8b42 | 2014-07-17 11:09:10 -0700 | [diff] [blame] | 88 | if (!vm->IsCheckJniEnabled()) { |
Brian Carlstrom | 966ce11 | 2014-05-12 17:30:36 -0700 | [diff] [blame] | 89 | LOG(INFO) << "Late-enabling -Xcheck:jni"; |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 90 | vm->SetCheckJniEnabled(true); |
| 91 | // There's only one thread running at this point, so only one JNIEnv to fix up. |
| 92 | Thread::Current()->GetJniEnv()->SetCheckJniEnabled(true); |
| 93 | } else { |
Brian Carlstrom | 966ce11 | 2014-05-12 17:30:36 -0700 | [diff] [blame] | 94 | LOG(INFO) << "Not late-enabling -Xcheck:jni (already on)"; |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 95 | } |
| 96 | debug_flags &= ~DEBUG_ENABLE_CHECKJNI; |
| 97 | } |
| 98 | |
| 99 | if ((debug_flags & DEBUG_ENABLE_JNI_LOGGING) != 0) { |
| 100 | gLogVerbosity.third_party_jni = true; |
| 101 | debug_flags &= ~DEBUG_ENABLE_JNI_LOGGING; |
| 102 | } |
| 103 | |
Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 104 | Dbg::SetJdwpAllowed((debug_flags & DEBUG_ENABLE_JDWP) != 0); |
| 105 | if ((debug_flags & DEBUG_ENABLE_JDWP) != 0) { |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 106 | EnableDebugger(); |
| 107 | } |
Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 108 | debug_flags &= ~DEBUG_ENABLE_JDWP; |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 109 | |
Mathieu Chartier | 6eff38d | 2015-03-17 09:52:22 -0700 | [diff] [blame] | 110 | const bool safe_mode = (debug_flags & DEBUG_ENABLE_SAFEMODE) != 0; |
| 111 | if (safe_mode) { |
Andreas Gampe | d2abbc9 | 2014-12-19 09:53:27 -0800 | [diff] [blame] | 112 | // Ensure that any (secondary) oat files will be interpreted. |
Andreas Gampe | d2abbc9 | 2014-12-19 09:53:27 -0800 | [diff] [blame] | 113 | runtime->AddCompilerOption("--compiler-filter=interpret-only"); |
Nicolas Geoffray | 0f042e0 | 2015-11-05 11:32:24 +0000 | [diff] [blame] | 114 | runtime->SetSafeMode(true); |
Andreas Gampe | d2abbc9 | 2014-12-19 09:53:27 -0800 | [diff] [blame] | 115 | debug_flags &= ~DEBUG_ENABLE_SAFEMODE; |
| 116 | } |
| 117 | |
David Srbecky | 8363c77 | 2015-05-28 16:12:43 +0100 | [diff] [blame] | 118 | const bool generate_debug_info = (debug_flags & DEBUG_GENERATE_DEBUG_INFO) != 0; |
| 119 | if (generate_debug_info) { |
| 120 | runtime->AddCompilerOption("--generate-debug-info"); |
| 121 | debug_flags &= ~DEBUG_GENERATE_DEBUG_INFO; |
Andreas Gampe | 00bb878 | 2015-04-24 16:33:43 -0700 | [diff] [blame] | 122 | } |
| 123 | |
Andreas Gampe | d2abbc9 | 2014-12-19 09:53:27 -0800 | [diff] [blame] | 124 | // This is for backwards compatibility with Dalvik. |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 125 | debug_flags &= ~DEBUG_ENABLE_ASSERT; |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 126 | |
Siva Chandra | 05d2415 | 2016-01-05 17:43:17 -0800 | [diff] [blame] | 127 | if ((debug_flags & DEBUG_ALWAYS_JIT) != 0) { |
| 128 | jit::JitOptions* jit_options = runtime->GetJITOptions(); |
| 129 | CHECK(jit_options != nullptr); |
| 130 | jit_options->SetJitAtFirstUse(); |
| 131 | debug_flags &= ~DEBUG_ALWAYS_JIT; |
| 132 | } |
| 133 | |
Nicolas Geoffray | a0619e2 | 2016-12-20 13:57:43 +0000 | [diff] [blame] | 134 | if ((debug_flags & DEBUG_JAVA_DEBUGGABLE) != 0) { |
| 135 | runtime->AddCompilerOption("--debuggable"); |
| 136 | runtime->SetJavaDebuggable(true); |
| 137 | // Deoptimize the boot image as it may be non-debuggable. |
| 138 | runtime->DeoptimizeBootImage(); |
| 139 | debug_flags &= ~DEBUG_JAVA_DEBUGGABLE; |
| 140 | } |
| 141 | |
Tamas Berghammer | dd5e5e9 | 2016-02-12 16:29:00 +0000 | [diff] [blame] | 142 | if ((debug_flags & DEBUG_NATIVE_DEBUGGABLE) != 0) { |
David Srbecky | 346dc99 | 2016-03-13 22:00:07 +0000 | [diff] [blame] | 143 | runtime->AddCompilerOption("--debuggable"); |
| 144 | runtime->AddCompilerOption("--generate-debug-info"); |
David Srbecky | f448016 | 2016-03-16 00:06:24 +0000 | [diff] [blame] | 145 | runtime->SetNativeDebuggable(true); |
Tamas Berghammer | dd5e5e9 | 2016-02-12 16:29:00 +0000 | [diff] [blame] | 146 | debug_flags &= ~DEBUG_NATIVE_DEBUGGABLE; |
| 147 | } |
| 148 | |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 149 | if (debug_flags != 0) { |
| 150 | LOG(ERROR) << StringPrintf("Unknown bits set in debug_flags: %#x", debug_flags); |
| 151 | } |
| 152 | } |
| 153 | |
| 154 | static jlong ZygoteHooks_nativePreFork(JNIEnv* env, jclass) { |
| 155 | Runtime* runtime = Runtime::Current(); |
| 156 | CHECK(runtime->IsZygote()) << "runtime instance not started with -Xzygote"; |
Narayan Kamath | 3de95a7 | 2014-04-02 12:54:23 +0100 | [diff] [blame] | 157 | |
| 158 | runtime->PreZygoteFork(); |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 159 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 160 | if (Trace::GetMethodTracingMode() != TracingMode::kTracingInactive) { |
| 161 | // Tracing active, pause it. |
| 162 | Trace::Pause(); |
| 163 | } |
| 164 | |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 165 | // Grab thread before fork potentially makes Thread::pthread_key_self_ unusable. |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 166 | return reinterpret_cast<jlong>(ThreadForEnv(env)); |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 167 | } |
| 168 | |
Nicolas Geoffray | d66c862 | 2015-12-11 14:59:16 +0000 | [diff] [blame] | 169 | static void ZygoteHooks_nativePostForkChild(JNIEnv* env, |
| 170 | jclass, |
| 171 | jlong token, |
| 172 | jint debug_flags, |
| 173 | jboolean is_system_server, |
Andreas Gampe | 6be67ee | 2014-09-02 21:22:18 -0700 | [diff] [blame] | 174 | jstring instruction_set) { |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 175 | Thread* thread = reinterpret_cast<Thread*>(token); |
| 176 | // Our system thread ID, etc, has changed so reset Thread state. |
| 177 | thread->InitAfterFork(); |
| 178 | EnableDebugFeatures(debug_flags); |
Andreas Gampe | 6be67ee | 2014-09-02 21:22:18 -0700 | [diff] [blame] | 179 | |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 180 | // Update tracing. |
| 181 | if (Trace::GetMethodTracingMode() != TracingMode::kTracingInactive) { |
| 182 | Trace::TraceOutputMode output_mode = Trace::GetOutputMode(); |
| 183 | Trace::TraceMode trace_mode = Trace::GetMode(); |
Andreas Gampe | e34a42c | 2015-04-25 14:44:29 -0700 | [diff] [blame] | 184 | size_t buffer_size = Trace::GetBufferSize(); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 185 | |
| 186 | // Just drop it. |
| 187 | Trace::Abort(); |
| 188 | |
| 189 | // Only restart if it was streaming mode. |
| 190 | // TODO: Expose buffer size, so we can also do file mode. |
| 191 | if (output_mode == Trace::TraceOutputMode::kStreaming) { |
Dmitriy Filchenko | 03c0134 | 2016-07-11 17:41:28 -0700 | [diff] [blame] | 192 | static constexpr size_t kMaxProcessNameLength = 100; |
| 193 | char name_buf[kMaxProcessNameLength] = {}; |
| 194 | int rc = pthread_getname_np(pthread_self(), name_buf, kMaxProcessNameLength); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 195 | std::string proc_name; |
Dmitriy Filchenko | 03c0134 | 2016-07-11 17:41:28 -0700 | [diff] [blame] | 196 | |
| 197 | if (rc == 0) { |
| 198 | // On success use the pthread name. |
| 199 | proc_name = name_buf; |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 200 | } |
Dmitriy Filchenko | 03c0134 | 2016-07-11 17:41:28 -0700 | [diff] [blame] | 201 | |
| 202 | if (proc_name.empty() || proc_name == "zygote" || proc_name == "zygote64") { |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 203 | // Either no process name, or the name hasn't been changed, yet. Just use pid. |
| 204 | pid_t pid = getpid(); |
| 205 | proc_name = StringPrintf("%u", static_cast<uint32_t>(pid)); |
| 206 | } |
| 207 | |
Calin Juravle | f83e733 | 2015-11-04 16:16:47 +0000 | [diff] [blame] | 208 | std::string trace_file = StringPrintf("/data/misc/trace/%s.trace.bin", proc_name.c_str()); |
| 209 | Trace::Start(trace_file.c_str(), |
| 210 | -1, |
| 211 | buffer_size, |
| 212 | 0, // TODO: Expose flags. |
| 213 | output_mode, |
| 214 | trace_mode, |
| 215 | 0); // TODO: Expose interval. |
| 216 | if (thread->IsExceptionPending()) { |
| 217 | ScopedObjectAccess soa(env); |
| 218 | thread->ClearException(); |
Andreas Gampe | 40da286 | 2015-02-27 12:49:04 -0800 | [diff] [blame] | 219 | } |
| 220 | } |
| 221 | } |
| 222 | |
Nicolas Geoffray | d66c862 | 2015-12-11 14:59:16 +0000 | [diff] [blame] | 223 | if (instruction_set != nullptr && !is_system_server) { |
Andreas Gampe | 6be67ee | 2014-09-02 21:22:18 -0700 | [diff] [blame] | 224 | ScopedUtfChars isa_string(env, instruction_set); |
| 225 | InstructionSet isa = GetInstructionSetFromString(isa_string.c_str()); |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 226 | Runtime::NativeBridgeAction action = Runtime::NativeBridgeAction::kUnload; |
Andreas Gampe | 6be67ee | 2014-09-02 21:22:18 -0700 | [diff] [blame] | 227 | if (isa != kNone && isa != kRuntimeISA) { |
| 228 | action = Runtime::NativeBridgeAction::kInitialize; |
| 229 | } |
Nicolas Geoffray | d66c862 | 2015-12-11 14:59:16 +0000 | [diff] [blame] | 230 | Runtime::Current()->InitNonZygoteOrPostFork( |
| 231 | env, is_system_server, action, isa_string.c_str()); |
jgu21 | a6da74e | 2014-09-10 06:57:17 -0400 | [diff] [blame] | 232 | } else { |
Nicolas Geoffray | d66c862 | 2015-12-11 14:59:16 +0000 | [diff] [blame] | 233 | Runtime::Current()->InitNonZygoteOrPostFork( |
| 234 | env, is_system_server, Runtime::NativeBridgeAction::kUnload, nullptr); |
Andreas Gampe | 6be67ee | 2014-09-02 21:22:18 -0700 | [diff] [blame] | 235 | } |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 236 | } |
| 237 | |
Andreas Gampe | f38a661 | 2016-04-11 08:42:26 -0700 | [diff] [blame] | 238 | static void ZygoteHooks_startZygoteNoThreadCreation(JNIEnv* env ATTRIBUTE_UNUSED, |
| 239 | jclass klass ATTRIBUTE_UNUSED) { |
| 240 | Runtime::Current()->SetZygoteNoThreadSection(true); |
| 241 | } |
| 242 | |
| 243 | static void ZygoteHooks_stopZygoteNoThreadCreation(JNIEnv* env ATTRIBUTE_UNUSED, |
| 244 | jclass klass ATTRIBUTE_UNUSED) { |
| 245 | Runtime::Current()->SetZygoteNoThreadSection(false); |
| 246 | } |
| 247 | |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 248 | static JNINativeMethod gMethods[] = { |
| 249 | NATIVE_METHOD(ZygoteHooks, nativePreFork, "()J"), |
Nicolas Geoffray | d66c862 | 2015-12-11 14:59:16 +0000 | [diff] [blame] | 250 | NATIVE_METHOD(ZygoteHooks, nativePostForkChild, "(JIZLjava/lang/String;)V"), |
Andreas Gampe | f38a661 | 2016-04-11 08:42:26 -0700 | [diff] [blame] | 251 | NATIVE_METHOD(ZygoteHooks, startZygoteNoThreadCreation, "()V"), |
| 252 | NATIVE_METHOD(ZygoteHooks, stopZygoteNoThreadCreation, "()V"), |
Narayan Kamath | 8b2c8b9 | 2014-03-31 16:44:54 +0100 | [diff] [blame] | 253 | }; |
| 254 | |
| 255 | void register_dalvik_system_ZygoteHooks(JNIEnv* env) { |
| 256 | REGISTER_NATIVE_METHODS("dalvik/system/ZygoteHooks"); |
| 257 | } |
| 258 | |
| 259 | } // namespace art |