blob: 48fe7fa40136afc1e243197017bbb36c88ff8f66 [file] [log] [blame]
Elliott Hughesd195e5a2011-04-13 15:39:37 -07001/*
2 * Copyright (C) 2006 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 */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080016
17#define LOG_TAG "AndroidRuntime"
18//#define LOG_NDEBUG 0
19
20#include <android_runtime/AndroidRuntime.h>
Mathias Agopian07952722009-05-19 19:08:10 -070021#include <binder/IBinder.h>
Brad Fitzpatrick0bd52432010-12-13 16:52:35 -080022#include <binder/IPCThreadState.h>
Mathias Agopian07952722009-05-19 19:08:10 -070023#include <binder/IServiceManager.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080024#include <utils/Log.h>
25#include <utils/misc.h>
Mathias Agopian07952722009-05-19 19:08:10 -070026#include <binder/Parcel.h>
Mathias Agopian8ed6beb2009-06-05 01:26:23 -070027#include <utils/StringArray.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028#include <utils/threads.h>
29#include <cutils/properties.h>
30
31#include <SkGraphics.h>
32#include <SkImageDecoder.h>
Mike Reedfc8db532009-04-27 11:43:30 -040033#include <SkImageRef_GlobalPool.h>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080034
35#include "jni.h"
36#include "JNIHelp.h"
37#include "android_util_Binder.h"
38
39#include <stdio.h>
40#include <signal.h>
41#include <sys/stat.h>
42#include <sys/types.h>
43#include <signal.h>
44#include <dirent.h>
45#include <assert.h>
46
47
48using namespace android;
49
50extern void register_BindTest();
51
52extern int register_android_os_Binder(JNIEnv* env);
53extern int register_android_os_Process(JNIEnv* env);
54extern int register_android_graphics_Bitmap(JNIEnv*);
55extern int register_android_graphics_BitmapFactory(JNIEnv*);
Wei-Ta Chen6b849e22010-09-07 17:32:18 +080056extern int register_android_graphics_BitmapRegionDecoder(JNIEnv*);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080057extern int register_android_graphics_Camera(JNIEnv* env);
58extern int register_android_graphics_Graphics(JNIEnv* env);
59extern int register_android_graphics_Interpolator(JNIEnv* env);
60extern int register_android_graphics_LayerRasterizer(JNIEnv*);
61extern int register_android_graphics_MaskFilter(JNIEnv* env);
62extern int register_android_graphics_Movie(JNIEnv* env);
63extern int register_android_graphics_NinePatch(JNIEnv*);
64extern int register_android_graphics_PathEffect(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080065extern int register_android_graphics_Shader(JNIEnv* env);
66extern int register_android_graphics_Typeface(JNIEnv* env);
Wei-Ta Chenbca2d612009-11-30 17:52:05 +080067extern int register_android_graphics_YuvImage(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080068
69extern int register_com_google_android_gles_jni_EGLImpl(JNIEnv* env);
70extern int register_com_google_android_gles_jni_GLImpl(JNIEnv* env);
Thomas Tafertshofer6b1e8382012-07-03 13:37:35 -070071extern int register_android_opengl_jni_EGL14(JNIEnv* env);
Jack Palevich1c4907e2009-04-13 16:22:25 -070072extern int register_android_opengl_jni_GLES10(JNIEnv* env);
73extern int register_android_opengl_jni_GLES10Ext(JNIEnv* env);
74extern int register_android_opengl_jni_GLES11(JNIEnv* env);
75extern int register_android_opengl_jni_GLES11Ext(JNIEnv* env);
Jack Palevich560814f2009-11-19 16:34:55 +080076extern int register_android_opengl_jni_GLES20(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080077
78extern int register_android_hardware_Camera(JNIEnv *env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080079extern int register_android_hardware_SensorManager(JNIEnv *env);
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -040080extern int register_android_hardware_SerialPort(JNIEnv *env);
Mike Lockwoode7d511e2010-12-30 13:39:37 -050081extern int register_android_hardware_UsbDevice(JNIEnv *env);
Mike Lockwoodacc29cc2011-03-11 08:18:08 -050082extern int register_android_hardware_UsbDeviceConnection(JNIEnv *env);
Mike Lockwoode7d511e2010-12-30 13:39:37 -050083extern int register_android_hardware_UsbRequest(JNIEnv *env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080084
85extern int register_android_media_AudioRecord(JNIEnv *env);
86extern int register_android_media_AudioSystem(JNIEnv *env);
87extern int register_android_media_AudioTrack(JNIEnv *env);
88extern int register_android_media_JetPlayer(JNIEnv *env);
89extern int register_android_media_ToneGenerator(JNIEnv *env);
90
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080091extern int register_android_util_FloatMath(JNIEnv* env);
92
93namespace android {
94
95/*
96 * JNI-based registration functions. Note these are properly contained in
97 * namespace android.
98 */
99extern int register_android_content_AssetManager(JNIEnv* env);
100extern int register_android_util_EventLog(JNIEnv* env);
101extern int register_android_util_Log(JNIEnv* env);
102extern int register_android_content_StringBlock(JNIEnv* env);
103extern int register_android_content_XmlBlock(JNIEnv* env);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700104extern int register_android_emoji_EmojiFactory(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800105extern int register_android_graphics_Canvas(JNIEnv* env);
106extern int register_android_graphics_ColorFilter(JNIEnv* env);
107extern int register_android_graphics_DrawFilter(JNIEnv* env);
108extern int register_android_graphics_Matrix(JNIEnv* env);
109extern int register_android_graphics_Paint(JNIEnv* env);
110extern int register_android_graphics_Path(JNIEnv* env);
111extern int register_android_graphics_PathMeasure(JNIEnv* env);
112extern int register_android_graphics_Picture(JNIEnv*);
113extern int register_android_graphics_PorterDuff(JNIEnv* env);
114extern int register_android_graphics_Rasterizer(JNIEnv* env);
Jeff Brownfbf09772011-01-16 14:06:57 -0800115extern int register_android_graphics_Region(JNIEnv* env);
Jamie Gennisaa0ce332011-01-06 17:04:26 -0800116extern int register_android_graphics_SurfaceTexture(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800117extern int register_android_graphics_Xfermode(JNIEnv* env);
118extern int register_android_graphics_PixelFormat(JNIEnv* env);
Jeff Brown0a0a1242011-12-02 02:25:22 -0800119extern int register_android_view_DisplayEventReceiver(JNIEnv* env);
Chet Haasea1cff502012-02-21 13:43:44 -0800120extern int register_android_view_GLES20DisplayList(JNIEnv* env);
Romain Guye4d01122010-06-16 18:44:05 -0700121extern int register_android_view_GLES20Canvas(JNIEnv* env);
Romain Guya9582652011-11-10 14:20:10 -0800122extern int register_android_view_HardwareRenderer(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800123extern int register_android_view_Surface(JNIEnv* env);
Jeff Brown64a55af2012-08-26 02:47:39 -0700124extern int register_android_view_SurfaceSession(JNIEnv* env);
Romain Guy8f0095c2011-05-02 17:24:22 -0700125extern int register_android_view_TextureView(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800126extern int register_android_database_CursorWindow(JNIEnv* env);
Jeff Browne5360fb2011-10-31 17:48:13 -0700127extern int register_android_database_SQLiteConnection(JNIEnv* env);
128extern int register_android_database_SQLiteGlobal(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800129extern int register_android_database_SQLiteDebug(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130extern int register_android_debug_JNITest(JNIEnv* env);
131extern int register_android_nio_utils(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800132extern int register_android_text_format_Time(JNIEnv* env);
133extern int register_android_os_Debug(JNIEnv* env);
Christopher Tatefa9e7c02010-05-06 12:07:10 -0700134extern int register_android_os_MessageQueue(JNIEnv* env);
Jeff Sharkeyd84e1ce2012-03-06 18:26:19 -0800135extern int register_android_os_Parcel(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800136extern int register_android_os_ParcelFileDescriptor(JNIEnv *env);
Stephen Smalleyc07fca32012-01-13 08:31:39 -0500137extern int register_android_os_SELinux(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800138extern int register_android_os_SystemProperties(JNIEnv *env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800139extern int register_android_os_SystemClock(JNIEnv* env);
Jeff Brown481c1572012-03-09 14:41:15 -0800140extern int register_android_os_Trace(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800141extern int register_android_os_FileObserver(JNIEnv *env);
142extern int register_android_os_FileUtils(JNIEnv *env);
143extern int register_android_os_UEventObserver(JNIEnv* env);
144extern int register_android_os_MemoryFile(JNIEnv* env);
145extern int register_android_net_LocalSocketImpl(JNIEnv* env);
146extern int register_android_net_NetworkUtils(JNIEnv* env);
Dan Egnor2b4abcd2010-04-07 17:30:50 -0700147extern int register_android_net_TrafficStats(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800148extern int register_android_net_wifi_WifiManager(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800149extern int register_android_text_AndroidCharacter(JNIEnv *env);
Doug Feltdae8e942010-02-24 14:33:15 -0800150extern int register_android_text_AndroidBidi(JNIEnv *env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800151extern int register_android_opengl_classes(JNIEnv *env);
JP Abgrall98a4f7e2011-09-02 15:36:33 -0700152extern int register_android_server_NetworkManagementSocketTagger(JNIEnv* env);
Christopher Tateecaa7b42010-06-04 14:55:02 -0700153extern int register_android_server_Watchdog(JNIEnv* env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154extern int register_android_ddm_DdmHandleNativeHeap(JNIEnv *env);
155extern int register_com_android_internal_os_ZygoteInit(JNIEnv* env);
Joe Onorato1cf58742009-06-12 11:06:24 -0700156extern int register_android_backup_BackupDataInput(JNIEnv *env);
Joe Onoratod2110db2009-05-19 13:41:21 -0700157extern int register_android_backup_BackupDataOutput(JNIEnv *env);
Joe Onorato06290a42009-06-18 20:10:37 -0700158extern int register_android_backup_FileBackupHelperBase(JNIEnv *env);
Joe Onorato4ababd92009-06-25 18:29:18 -0400159extern int register_android_backup_BackupHelperDispatcher(JNIEnv *env);
Christopher Tate4a627c72011-04-01 14:43:32 -0700160extern int register_android_app_backup_FullBackup(JNIEnv *env);
Chet Haase9c1e23b2011-03-24 10:51:31 -0700161extern int register_android_app_ActivityThread(JNIEnv *env);
Dianne Hackborn69969e42010-05-04 11:40:40 -0700162extern int register_android_app_NativeActivity(JNIEnv *env);
Jeff Browncbad9762012-09-04 21:57:59 -0700163extern int register_android_media_RemoteDisplay(JNIEnv *env);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700164extern int register_android_view_InputChannel(JNIEnv* env);
Jeff Brown9f25b7f2012-04-10 14:30:49 -0700165extern int register_android_view_InputDevice(JNIEnv* env);
Jeff Brown32cbc38552011-12-01 14:01:49 -0800166extern int register_android_view_InputEventReceiver(JNIEnv* env);
Jeff Brown9f25b7f2012-04-10 14:30:49 -0700167extern int register_android_view_KeyCharacterMap(JNIEnv *env);
Jeff Brown46b9ac02010-04-22 18:58:52 -0700168extern int register_android_view_KeyEvent(JNIEnv* env);
169extern int register_android_view_MotionEvent(JNIEnv* env);
Jeff Brown2352b972011-04-12 22:39:53 -0700170extern int register_android_view_PointerIcon(JNIEnv* env);
Jeff Brown2ed24622011-03-14 19:39:54 -0700171extern int register_android_view_VelocityTracker(JNIEnv* env);
Kenny Root02c87302010-07-01 08:10:18 -0700172extern int register_android_content_res_ObbScanner(JNIEnv* env);
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -0700173extern int register_android_content_res_Configuration(JNIEnv* env);
Chet Haase6e0ecb42010-11-03 19:41:18 -0700174extern int register_android_animation_PropertyValuesHolder(JNIEnv *env);
Kenny Root66269ea2011-07-12 14:14:01 -0700175extern int register_com_android_internal_content_NativeLibraryHelper(JNIEnv *env);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800176
177static AndroidRuntime* gCurRuntime = NULL;
178
179static void doThrow(JNIEnv* env, const char* exc, const char* msg = NULL)
180{
181 if (jniThrowException(env, exc, msg) != 0)
182 assert(false);
183}
184
185/*
186 * Code written in the Java Programming Language calls here from main().
187 */
Jeff Brown16f5f5c2012-03-15 16:53:55 -0700188static void com_android_internal_os_RuntimeInit_nativeFinishInit(JNIEnv* env, jobject clazz)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800189{
190 gCurRuntime->onStarted();
191}
192
Jeff Brown16f5f5c2012-03-15 16:53:55 -0700193static void com_android_internal_os_RuntimeInit_nativeZygoteInit(JNIEnv* env, jobject clazz)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800194{
195 gCurRuntime->onZygoteInit();
196}
197
Jeff Brown4280c4a2012-03-15 17:48:02 -0700198static void com_android_internal_os_RuntimeInit_nativeSetExitWithoutCleanup(JNIEnv* env,
199 jobject clazz, jboolean exitWithoutCleanup)
200{
201 gCurRuntime->setExitWithoutCleanup(exitWithoutCleanup);
202}
203
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800204/*
205 * JNI registration.
206 */
207static JNINativeMethod gMethods[] = {
Jeff Brown16f5f5c2012-03-15 16:53:55 -0700208 { "nativeFinishInit", "()V",
209 (void*) com_android_internal_os_RuntimeInit_nativeFinishInit },
210 { "nativeZygoteInit", "()V",
211 (void*) com_android_internal_os_RuntimeInit_nativeZygoteInit },
Jeff Brown4280c4a2012-03-15 17:48:02 -0700212 { "nativeSetExitWithoutCleanup", "(Z)V",
213 (void*) com_android_internal_os_RuntimeInit_nativeSetExitWithoutCleanup },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800214};
215
216int register_com_android_internal_os_RuntimeInit(JNIEnv* env)
217{
218 return jniRegisterNativeMethods(env, "com/android/internal/os/RuntimeInit",
219 gMethods, NELEM(gMethods));
220}
221
222// ----------------------------------------------------------------------
223
224/*static*/ JavaVM* AndroidRuntime::mJavaVM = NULL;
225
226
Jeff Brown4280c4a2012-03-15 17:48:02 -0700227AndroidRuntime::AndroidRuntime() :
228 mExitWithoutCleanup(false)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800229{
The Android Open Source Projectc39a6e02009-03-11 12:11:56 -0700230 SkGraphics::Init();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800231 // this sets our preference for 16bit images during decode
232 // in case the src is opaque and 24bit
233 SkImageDecoder::SetDeviceConfig(SkBitmap::kRGB_565_Config);
Mike Reedfc8db532009-04-27 11:43:30 -0400234 // This cache is shared between browser native images, and java "purgeable"
235 // bitmaps. This globalpool is for images that do not either use the java
236 // heap, or are not backed by ashmem. See BitmapFactory.cpp for the key
237 // java call site.
238 SkImageRef_GlobalPool::SetRAMBudget(512 * 1024);
239 // There is also a global font cache, but its budget is specified in code
240 // see SkFontHost_android.cpp
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800241
242 // Pre-allocate enough space to hold a fair number of options.
243 mOptions.setCapacity(20);
244
245 assert(gCurRuntime == NULL); // one per process
246 gCurRuntime = this;
247}
248
249AndroidRuntime::~AndroidRuntime()
250{
251 SkGraphics::Term();
252}
253
254/*
255 * Register native methods using JNI.
256 */
257/*static*/ int AndroidRuntime::registerNativeMethods(JNIEnv* env,
258 const char* className, const JNINativeMethod* gMethods, int numMethods)
259{
260 return jniRegisterNativeMethods(env, className, gMethods, numMethods);
261}
262
Elliott Hughesd195e5a2011-04-13 15:39:37 -0700263status_t AndroidRuntime::callMain(const char* className,
264 jclass clazz, int argc, const char* const argv[])
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800265{
266 JNIEnv* env;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800267 jmethodID methodId;
268
Steve Block5baa3a62011-12-20 16:23:08 +0000269 ALOGD("Calling main entry %s", className);
Dianne Hackborn08e60f22010-09-01 18:17:17 -0700270
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800271 env = getJNIEnv();
Elliott Hughesd195e5a2011-04-13 15:39:37 -0700272 if (clazz == NULL || env == NULL) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800273 return UNKNOWN_ERROR;
274 }
275
276 methodId = env->GetStaticMethodID(clazz, "main", "([Ljava/lang/String;)V");
277 if (methodId == NULL) {
Steve Block3762c312012-01-06 19:20:56 +0000278 ALOGE("ERROR: could not find method %s.main(String[])\n", className);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800279 return UNKNOWN_ERROR;
280 }
281
282 /*
283 * We want to call main() with a String array with our arguments in it.
284 * Create an array and populate it.
285 */
286 jclass stringClass;
287 jobjectArray strArray;
288
289 stringClass = env->FindClass("java/lang/String");
290 strArray = env->NewObjectArray(argc, stringClass, NULL);
291
292 for (int i = 0; i < argc; i++) {
293 jstring argStr = env->NewStringUTF(argv[i]);
294 env->SetObjectArrayElement(strArray, i, argStr);
295 }
296
297 env->CallStaticVoidMethod(clazz, methodId, strArray);
298 return NO_ERROR;
299}
300
301/*
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800302 * The VM calls this through the "exit" hook.
303 */
304static void runtime_exit(int code)
305{
Jeff Brown4280c4a2012-03-15 17:48:02 -0700306 gCurRuntime->exit(code);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800307}
308
309/*
310 * The VM calls this through the "vfprintf" hook.
311 *
312 * We ignore "fp" and just write the results to the log file.
313 */
314static void runtime_vfprintf(FILE* fp, const char* format, va_list ap)
315{
316 LOG_PRI_VA(ANDROID_LOG_INFO, "vm-printf", format, ap);
317}
318
Brad Fitzpatrick0bd52432010-12-13 16:52:35 -0800319/**
320 * The VM calls this when mutex contention debugging is enabled to
321 * determine whether or not the blocked thread was a "sensitive thread"
322 * for user responsiveness/smoothess.
323 *
324 * Our policy for this is whether or not we're tracing any StrictMode
325 * events on this thread (which we might've inherited via Binder calls
326 * into us)
327 */
328static bool runtime_isSensitiveThread() {
329 IPCThreadState* state = IPCThreadState::selfOrNull();
330 return state && state->getStrictModePolicy() != 0;
331}
332
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800333
334/**
335 * Add VM arguments to the to-be-executed VM
336 * Stops at first non '-' argument (also stops at an argument of '--')
337 * Returns the number of args consumed
338 */
339int AndroidRuntime::addVmArguments(int argc, const char* const argv[])
340{
341 int i;
Elliott Hughesd195e5a2011-04-13 15:39:37 -0700342
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800343 for (i = 0; i<argc; i++) {
344 if (argv[i][0] != '-') {
345 return i;
346 }
347 if (argv[i][1] == '-' && argv[i][2] == 0) {
348 return i+1;
349 }
350
351 JavaVMOption opt;
352 memset(&opt, 0, sizeof(opt));
353 opt.optionString = (char*)argv[i];
354 mOptions.add(opt);
355 }
356 return i;
357}
358
359static int hasDir(const char* dir)
360{
361 struct stat s;
362 int res = stat(dir, &s);
363 if (res == 0) {
364 return S_ISDIR(s.st_mode);
365 }
366 return 0;
367}
368
369/*
370 * We just want failed write() calls to just return with an error.
371 */
372static void blockSigpipe()
373{
374 sigset_t mask;
375
376 sigemptyset(&mask);
377 sigaddset(&mask, SIGPIPE);
378 if (sigprocmask(SIG_BLOCK, &mask, NULL) != 0)
Steve Block8564c8d2012-01-05 23:22:43 +0000379 ALOGW("WARNING: SIGPIPE not blocked\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800380}
381
382/*
383 * Read the persistent locale.
384 */
385static void readLocale(char* language, char* region)
386{
387 char propLang[PROPERTY_VALUE_MAX], propRegn[PROPERTY_VALUE_MAX];
Brian Carlstrom171ea892010-08-24 21:27:52 -0700388
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800389 property_get("persist.sys.language", propLang, "");
390 property_get("persist.sys.country", propRegn, "");
391 if (*propLang == 0 && *propRegn == 0) {
392 /* Set to ro properties, default is en_US */
393 property_get("ro.product.locale.language", propLang, "en");
394 property_get("ro.product.locale.region", propRegn, "US");
395 }
396 strncat(language, propLang, 2);
397 strncat(region, propRegn, 2);
Steve Block5baa3a62011-12-20 16:23:08 +0000398 //ALOGD("language=%s region=%s\n", language, region);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800399}
400
Andy McFaddenf70188a2009-03-31 15:52:13 -0700401/*
Andy McFaddene4d81f22010-07-14 16:02:20 -0700402 * Parse a property containing space-separated options that should be
403 * passed directly to the VM, e.g. "-Xmx32m -verbose:gc -Xregenmap".
404 *
405 * This will cut up "extraOptsBuf" as we chop it into individual options.
406 *
407 * Adds the strings, if any, to mOptions.
408 */
409void AndroidRuntime::parseExtraOpts(char* extraOptsBuf)
410{
411 JavaVMOption opt;
412 char* start;
413 char* end;
414
415 memset(&opt, 0, sizeof(opt));
416 start = extraOptsBuf;
417 while (*start != '\0') {
418 while (*start == ' ') /* skip leading whitespace */
419 start++;
420 if (*start == '\0') /* was trailing ws, bail */
421 break;
422
423 end = start+1;
424 while (*end != ' ' && *end != '\0') /* find end of token */
425 end++;
426 if (*end == ' ')
427 *end++ = '\0'; /* mark end, advance to indicate more */
428
429 opt.optionString = start;
430 mOptions.add(opt);
431 start = end;
432 }
433}
434
435/*
Andy McFaddenf70188a2009-03-31 15:52:13 -0700436 * Start the Dalvik Virtual Machine.
437 *
438 * Various arguments, most determined by system properties, are passed in.
439 * The "mOptions" vector is updated.
440 *
441 * Returns 0 on success.
442 */
443int AndroidRuntime::startVm(JavaVM** pJavaVM, JNIEnv** pEnv)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800444{
Andy McFaddenf70188a2009-03-31 15:52:13 -0700445 int result = -1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800446 JavaVMInitArgs initArgs;
447 JavaVMOption opt;
448 char propBuf[PROPERTY_VALUE_MAX];
449 char stackTraceFileBuf[PROPERTY_VALUE_MAX];
450 char dexoptFlagsBuf[PROPERTY_VALUE_MAX];
451 char enableAssertBuf[sizeof("-ea:")-1 + PROPERTY_VALUE_MAX];
452 char jniOptsBuf[sizeof("-Xjniopts:")-1 + PROPERTY_VALUE_MAX];
Carl Shapiro38cfa8c2010-12-07 16:48:29 -0800453 char heapstartsizeOptsBuf[sizeof("-Xms")-1 + PROPERTY_VALUE_MAX];
Dianne Hackbornbdcef702009-08-18 19:15:36 -0700454 char heapsizeOptsBuf[sizeof("-Xmx")-1 + PROPERTY_VALUE_MAX];
Carl Shapiro8cdf27c2011-01-19 12:33:12 -0800455 char heapgrowthlimitOptsBuf[sizeof("-XX:HeapGrowthLimit=")-1 + PROPERTY_VALUE_MAX];
Ian Rogers53250102012-09-23 16:38:03 -0700456 char heapminfreeOptsBuf[sizeof("-XX:HeapMinFree=")-1 + PROPERTY_VALUE_MAX];
457 char heapmaxfreeOptsBuf[sizeof("-XX:HeapMaxFree=")-1 + PROPERTY_VALUE_MAX];
458 char heaptargetutilizationOptsBuf[sizeof("-XX:HeapTargetUtilization=")-1 + PROPERTY_VALUE_MAX];
Andy McFaddene4d81f22010-07-14 16:02:20 -0700459 char extraOptsBuf[PROPERTY_VALUE_MAX];
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800460 char* stackTraceFile = NULL;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800461 bool checkJni = false;
Andy McFaddene2b23e12009-04-03 11:09:46 -0700462 bool checkDexSum = false;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800463 bool logStdio = false;
Ben Cheng52b0e732009-06-19 13:31:12 -0700464 enum {
465 kEMDefault,
466 kEMIntPortable,
467 kEMIntFast,
468#if defined(WITH_JIT)
469 kEMJitCompiler,
470#endif
471 } executionMode = kEMDefault;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800472
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800473
474 property_get("dalvik.vm.checkjni", propBuf, "");
475 if (strcmp(propBuf, "true") == 0) {
476 checkJni = true;
477 } else if (strcmp(propBuf, "false") != 0) {
478 /* property is neither true nor false; fall back on kernel parameter */
479 property_get("ro.kernel.android.checkjni", propBuf, "");
480 if (propBuf[0] == '1') {
481 checkJni = true;
482 }
483 }
484
485 property_get("dalvik.vm.execution-mode", propBuf, "");
486 if (strcmp(propBuf, "int:portable") == 0) {
487 executionMode = kEMIntPortable;
488 } else if (strcmp(propBuf, "int:fast") == 0) {
489 executionMode = kEMIntFast;
Ben Cheng52b0e732009-06-19 13:31:12 -0700490#if defined(WITH_JIT)
491 } else if (strcmp(propBuf, "int:jit") == 0) {
492 executionMode = kEMJitCompiler;
493#endif
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800494 }
495
496 property_get("dalvik.vm.stack-trace-file", stackTraceFileBuf, "");
497
Andy McFaddene2b23e12009-04-03 11:09:46 -0700498 property_get("dalvik.vm.check-dex-sum", propBuf, "");
499 if (strcmp(propBuf, "true") == 0) {
500 checkDexSum = true;
501 }
502
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800503 property_get("log.redirect-stdio", propBuf, "");
504 if (strcmp(propBuf, "true") == 0) {
505 logStdio = true;
506 }
507
508 strcpy(enableAssertBuf, "-ea:");
509 property_get("dalvik.vm.enableassertions", enableAssertBuf+4, "");
510
511 strcpy(jniOptsBuf, "-Xjniopts:");
512 property_get("dalvik.vm.jniopts", jniOptsBuf+10, "");
513
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800514 /* route exit() to our handler */
515 opt.extraInfo = (void*) runtime_exit;
516 opt.optionString = "exit";
517 mOptions.add(opt);
518
519 /* route fprintf() to our handler */
520 opt.extraInfo = (void*) runtime_vfprintf;
521 opt.optionString = "vfprintf";
522 mOptions.add(opt);
523
Brad Fitzpatrick0bd52432010-12-13 16:52:35 -0800524 /* register the framework-specific "is sensitive thread" hook */
525 opt.extraInfo = (void*) runtime_isSensitiveThread;
526 opt.optionString = "sensitiveThread";
527 mOptions.add(opt);
528
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800529 opt.extraInfo = NULL;
530
531 /* enable verbose; standard options are { jni, gc, class } */
532 //options[curOpt++].optionString = "-verbose:jni";
533 opt.optionString = "-verbose:gc";
534 mOptions.add(opt);
535 //options[curOpt++].optionString = "-verbose:class";
536
Carl Shapiro9e4c8842010-12-08 12:14:46 -0800537 /*
538 * The default starting and maximum size of the heap. Larger
539 * values should be specified in a product property override.
540 */
Carl Shapiro38cfa8c2010-12-07 16:48:29 -0800541 strcpy(heapstartsizeOptsBuf, "-Xms");
Carl Shapiro9e4c8842010-12-08 12:14:46 -0800542 property_get("dalvik.vm.heapstartsize", heapstartsizeOptsBuf+4, "4m");
Carl Shapiro38cfa8c2010-12-07 16:48:29 -0800543 opt.optionString = heapstartsizeOptsBuf;
544 mOptions.add(opt);
Dianne Hackbornbdcef702009-08-18 19:15:36 -0700545 strcpy(heapsizeOptsBuf, "-Xmx");
546 property_get("dalvik.vm.heapsize", heapsizeOptsBuf+4, "16m");
Dianne Hackbornbdcef702009-08-18 19:15:36 -0700547 opt.optionString = heapsizeOptsBuf;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800548 mOptions.add(opt);
549
Elliott Hughes3f177d72012-04-12 16:02:56 -0700550 // Increase the main thread's interpreter stack size for bug 6315322.
551 opt.optionString = "-XX:mainThreadStackSize=24K";
552 mOptions.add(opt);
553
Carl Shapiro8cdf27c2011-01-19 12:33:12 -0800554 strcpy(heapgrowthlimitOptsBuf, "-XX:HeapGrowthLimit=");
555 property_get("dalvik.vm.heapgrowthlimit", heapgrowthlimitOptsBuf+20, "");
556 if (heapgrowthlimitOptsBuf[20] != '\0') {
557 opt.optionString = heapgrowthlimitOptsBuf;
558 mOptions.add(opt);
559 }
560
Ian Rogers53250102012-09-23 16:38:03 -0700561 strcpy(heapminfreeOptsBuf, "-XX:HeapMinFree=");
562 property_get("dalvik.vm.heapminfree", heapminfreeOptsBuf+16, "");
563 if (heapminfreeOptsBuf[16] != '\0') {
564 opt.optionString = heapminfreeOptsBuf;
565 mOptions.add(opt);
566 }
567
568 strcpy(heapmaxfreeOptsBuf, "-XX:HeapMaxFree=");
569 property_get("dalvik.vm.heapmaxfree", heapmaxfreeOptsBuf+16, "");
570 if (heapmaxfreeOptsBuf[16] != '\0') {
571 opt.optionString = heapmaxfreeOptsBuf;
572 mOptions.add(opt);
573 }
574
575 strcpy(heaptargetutilizationOptsBuf, "-XX:HeapTargetUtilization=");
576 property_get("dalvik.vm.heaptargetutilization", heaptargetutilizationOptsBuf+26, "");
577 if (heapmaxfreeOptsBuf[26] != '\0') {
578 opt.optionString = heaptargetutilizationOptsBuf;
579 mOptions.add(opt);
580 }
581
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800582 /*
583 * Enable or disable dexopt features, such as bytecode verification and
584 * calculation of register maps for precise GC.
585 */
586 property_get("dalvik.vm.dexopt-flags", dexoptFlagsBuf, "");
587 if (dexoptFlagsBuf[0] != '\0') {
588 const char* opc;
589 const char* val;
590
591 opc = strstr(dexoptFlagsBuf, "v="); /* verification */
592 if (opc != NULL) {
593 switch (*(opc+2)) {
594 case 'n': val = "-Xverify:none"; break;
595 case 'r': val = "-Xverify:remote"; break;
596 case 'a': val = "-Xverify:all"; break;
597 default: val = NULL; break;
598 }
599
600 if (val != NULL) {
601 opt.optionString = val;
602 mOptions.add(opt);
603 }
604 }
605
606 opc = strstr(dexoptFlagsBuf, "o="); /* optimization */
607 if (opc != NULL) {
608 switch (*(opc+2)) {
609 case 'n': val = "-Xdexopt:none"; break;
610 case 'v': val = "-Xdexopt:verified"; break;
611 case 'a': val = "-Xdexopt:all"; break;
Brian Carlstrom08065b92011-04-01 15:49:41 -0700612 case 'f': val = "-Xdexopt:full"; break;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800613 default: val = NULL; break;
614 }
615
616 if (val != NULL) {
617 opt.optionString = val;
618 mOptions.add(opt);
619 }
620 }
621
622 opc = strstr(dexoptFlagsBuf, "m=y"); /* register map */
623 if (opc != NULL) {
624 opt.optionString = "-Xgenregmap";
625 mOptions.add(opt);
The Android Open Source Project7b0b1ed2009-03-18 22:20:26 -0700626
627 /* turn on precise GC while we're at it */
628 opt.optionString = "-Xgc:precise";
629 mOptions.add(opt);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800630 }
631 }
632
633 /* enable debugging; set suspend=y to pause during VM init */
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800634 /* use android ADB transport */
635 opt.optionString =
636 "-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y";
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800637 mOptions.add(opt);
638
Steve Block5baa3a62011-12-20 16:23:08 +0000639 ALOGD("CheckJNI is %s\n", checkJni ? "ON" : "OFF");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800640 if (checkJni) {
641 /* extended JNI checking */
642 opt.optionString = "-Xcheck:jni";
643 mOptions.add(opt);
644
645 /* set a cap on JNI global references */
646 opt.optionString = "-Xjnigreflimit:2000";
647 mOptions.add(opt);
648
649 /* with -Xcheck:jni, this provides a JNI function call trace */
650 //opt.optionString = "-verbose:jni";
651 //mOptions.add(opt);
652 }
Ben Cheng52b0e732009-06-19 13:31:12 -0700653
Carl Shapirod8f3ec62010-04-12 16:31:59 -0700654 char lockProfThresholdBuf[sizeof("-Xlockprofthreshold:") + sizeof(propBuf)];
655 property_get("dalvik.vm.lockprof.threshold", propBuf, "");
656 if (strlen(propBuf) > 0) {
657 strcpy(lockProfThresholdBuf, "-Xlockprofthreshold:");
658 strcat(lockProfThresholdBuf, propBuf);
659 opt.optionString = lockProfThresholdBuf;
660 mOptions.add(opt);
661 }
662
Ben Cheng52b0e732009-06-19 13:31:12 -0700663#if defined(WITH_JIT)
Ben Cheng52b0e732009-06-19 13:31:12 -0700664 /* Force interpreter-only mode for selected opcodes. Eg "1-0a,3c,f1-ff" */
665 char jitOpBuf[sizeof("-Xjitop:") + PROPERTY_VALUE_MAX];
666 property_get("dalvik.vm.jit.op", propBuf, "");
667 if (strlen(propBuf) > 0) {
668 strcpy(jitOpBuf, "-Xjitop:");
669 strcat(jitOpBuf, propBuf);
670 opt.optionString = jitOpBuf;
671 mOptions.add(opt);
672 }
673
Ben Cheng52b0e732009-06-19 13:31:12 -0700674 /* Force interpreter-only mode for selected methods */
675 char jitMethodBuf[sizeof("-Xjitmethod:") + PROPERTY_VALUE_MAX];
676 property_get("dalvik.vm.jit.method", propBuf, "");
677 if (strlen(propBuf) > 0) {
678 strcpy(jitMethodBuf, "-Xjitmethod:");
679 strcat(jitMethodBuf, propBuf);
680 opt.optionString = jitMethodBuf;
681 mOptions.add(opt);
682 }
Ben Cheng52b0e732009-06-19 13:31:12 -0700683#endif
684
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800685 if (executionMode == kEMIntPortable) {
686 opt.optionString = "-Xint:portable";
687 mOptions.add(opt);
688 } else if (executionMode == kEMIntFast) {
689 opt.optionString = "-Xint:fast";
690 mOptions.add(opt);
Ben Cheng52b0e732009-06-19 13:31:12 -0700691#if defined(WITH_JIT)
692 } else if (executionMode == kEMJitCompiler) {
693 opt.optionString = "-Xint:jit";
694 mOptions.add(opt);
695#endif
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800696 }
Andy McFaddene2b23e12009-04-03 11:09:46 -0700697
698 if (checkDexSum) {
699 /* perform additional DEX checksum tests */
700 opt.optionString = "-Xcheckdexsum";
701 mOptions.add(opt);
702 }
703
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800704 if (logStdio) {
705 /* convert stdout/stderr to log messages */
706 opt.optionString = "-Xlog-stdio";
707 mOptions.add(opt);
708 }
709
710 if (enableAssertBuf[4] != '\0') {
711 /* accept "all" to mean "all classes and packages" */
712 if (strcmp(enableAssertBuf+4, "all") == 0)
713 enableAssertBuf[3] = '\0';
Steve Block6215d3f2012-01-04 20:05:49 +0000714 ALOGI("Assertions enabled: '%s'\n", enableAssertBuf);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800715 opt.optionString = enableAssertBuf;
716 mOptions.add(opt);
717 } else {
Steve Block71f2cf12011-10-20 11:56:00 +0100718 ALOGV("Assertions disabled\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800719 }
720
721 if (jniOptsBuf[10] != '\0') {
Steve Block6215d3f2012-01-04 20:05:49 +0000722 ALOGI("JNI options: '%s'\n", jniOptsBuf);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800723 opt.optionString = jniOptsBuf;
724 mOptions.add(opt);
725 }
726
727 if (stackTraceFileBuf[0] != '\0') {
728 static const char* stfOptName = "-Xstacktracefile:";
729
730 stackTraceFile = (char*) malloc(strlen(stfOptName) +
731 strlen(stackTraceFileBuf) +1);
732 strcpy(stackTraceFile, stfOptName);
733 strcat(stackTraceFile, stackTraceFileBuf);
734 opt.optionString = stackTraceFile;
735 mOptions.add(opt);
736 }
Andy McFaddene4d81f22010-07-14 16:02:20 -0700737
738 /* extra options; parse this late so it overrides others */
739 property_get("dalvik.vm.extra-opts", extraOptsBuf, "");
740 parseExtraOpts(extraOptsBuf);
741
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800742 /* Set the properties for locale */
743 {
744 char langOption[sizeof("-Duser.language=") + 3];
745 char regionOption[sizeof("-Duser.region=") + 3];
746 strcpy(langOption, "-Duser.language=");
747 strcpy(regionOption, "-Duser.region=");
748 readLocale(langOption, regionOption);
749 opt.extraInfo = NULL;
750 opt.optionString = langOption;
751 mOptions.add(opt);
752 opt.optionString = regionOption;
753 mOptions.add(opt);
754 }
755
756 /*
757 * We don't have /tmp on the device, but we often have an SD card. Apps
758 * shouldn't use this, but some test suites might want to exercise it.
759 */
760 opt.optionString = "-Djava.io.tmpdir=/sdcard";
761 mOptions.add(opt);
762
763 initArgs.version = JNI_VERSION_1_4;
764 initArgs.options = mOptions.editArray();
765 initArgs.nOptions = mOptions.size();
766 initArgs.ignoreUnrecognized = JNI_FALSE;
767
768 /*
769 * Initialize the VM.
770 *
771 * The JavaVM* is essentially per-process, and the JNIEnv* is per-thread.
772 * If this call succeeds, the VM is ready, and we can start issuing
773 * JNI calls.
774 */
Andy McFaddenf70188a2009-03-31 15:52:13 -0700775 if (JNI_CreateJavaVM(pJavaVM, pEnv, &initArgs) < 0) {
Steve Block3762c312012-01-06 19:20:56 +0000776 ALOGE("JNI_CreateJavaVM failed\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800777 goto bail;
778 }
779
Andy McFaddenf70188a2009-03-31 15:52:13 -0700780 result = 0;
781
782bail:
783 free(stackTraceFile);
784 return result;
785}
786
Elliott Hughesd195e5a2011-04-13 15:39:37 -0700787char* AndroidRuntime::toSlashClassName(const char* className)
788{
789 char* result = strdup(className);
790 for (char* cp = result; *cp != '\0'; cp++) {
791 if (*cp == '.') {
792 *cp = '/';
793 }
794 }
795 return result;
796}
797
Andy McFaddenf70188a2009-03-31 15:52:13 -0700798/*
799 * Start the Android runtime. This involves starting the virtual machine
800 * and calling the "static void main(String[] args)" method in the class
801 * named by "className".
Jeff Brownebed7d62011-05-16 17:08:42 -0700802 *
803 * Passes the main function two arguments, the class name and the specified
804 * options string.
Andy McFaddenf70188a2009-03-31 15:52:13 -0700805 */
Jeff Brownebed7d62011-05-16 17:08:42 -0700806void AndroidRuntime::start(const char* className, const char* options)
Andy McFaddenf70188a2009-03-31 15:52:13 -0700807{
Steve Block5baa3a62011-12-20 16:23:08 +0000808 ALOGD("\n>>>>>> AndroidRuntime START %s <<<<<<\n",
Dianne Hackborn08e60f22010-09-01 18:17:17 -0700809 className != NULL ? className : "(unknown)");
Andy McFaddenf70188a2009-03-31 15:52:13 -0700810
Andy McFaddenf70188a2009-03-31 15:52:13 -0700811 blockSigpipe();
812
Elliott Hughesd195e5a2011-04-13 15:39:37 -0700813 /*
814 * 'startSystemServer == true' means runtime is obsolete and not run from
Andy McFaddenf70188a2009-03-31 15:52:13 -0700815 * init.rc anymore, so we print out the boot start event here.
816 */
Jeff Brownebed7d62011-05-16 17:08:42 -0700817 if (strcmp(options, "start-system-server") == 0) {
Andy McFaddenf70188a2009-03-31 15:52:13 -0700818 /* track our progress through the boot sequence */
819 const int LOG_BOOT_PROGRESS_START = 3000;
Elliott Hughesd195e5a2011-04-13 15:39:37 -0700820 LOG_EVENT_LONG(LOG_BOOT_PROGRESS_START,
Andy McFaddenf70188a2009-03-31 15:52:13 -0700821 ns2ms(systemTime(SYSTEM_TIME_MONOTONIC)));
822 }
823
824 const char* rootDir = getenv("ANDROID_ROOT");
825 if (rootDir == NULL) {
826 rootDir = "/system";
827 if (!hasDir("/system")) {
828 LOG_FATAL("No root directory specified, and /android does not exist.");
Elliott Hughesd195e5a2011-04-13 15:39:37 -0700829 return;
Andy McFaddenf70188a2009-03-31 15:52:13 -0700830 }
831 setenv("ANDROID_ROOT", rootDir, 1);
832 }
833
834 //const char* kernelHack = getenv("LD_ASSUME_KERNEL");
Steve Block5baa3a62011-12-20 16:23:08 +0000835 //ALOGD("Found LD_ASSUME_KERNEL='%s'\n", kernelHack);
Andy McFaddenf70188a2009-03-31 15:52:13 -0700836
837 /* start the virtual machine */
Elliott Hughesd195e5a2011-04-13 15:39:37 -0700838 JNIEnv* env;
839 if (startVm(&mJavaVM, &env) != 0) {
840 return;
841 }
842 onVmCreated(env);
Andy McFaddenf70188a2009-03-31 15:52:13 -0700843
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800844 /*
845 * Register android functions.
846 */
847 if (startReg(env) < 0) {
Steve Block3762c312012-01-06 19:20:56 +0000848 ALOGE("Unable to register all android natives\n");
Elliott Hughesd195e5a2011-04-13 15:39:37 -0700849 return;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800850 }
851
852 /*
853 * We want to call main() with a String array with arguments in it.
Jeff Brownebed7d62011-05-16 17:08:42 -0700854 * At present we have two arguments, the class name and an option string.
855 * Create an array to hold them.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800856 */
857 jclass stringClass;
858 jobjectArray strArray;
859 jstring classNameStr;
Jeff Brownebed7d62011-05-16 17:08:42 -0700860 jstring optionsStr;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800861
862 stringClass = env->FindClass("java/lang/String");
863 assert(stringClass != NULL);
864 strArray = env->NewObjectArray(2, stringClass, NULL);
865 assert(strArray != NULL);
866 classNameStr = env->NewStringUTF(className);
867 assert(classNameStr != NULL);
868 env->SetObjectArrayElement(strArray, 0, classNameStr);
Jeff Brownebed7d62011-05-16 17:08:42 -0700869 optionsStr = env->NewStringUTF(options);
870 env->SetObjectArrayElement(strArray, 1, optionsStr);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800871
872 /*
873 * Start VM. This thread becomes the main thread of the VM, and will
874 * not return until the VM exits.
875 */
Elliott Hughesd195e5a2011-04-13 15:39:37 -0700876 char* slashClassName = toSlashClassName(className);
877 jclass startClass = env->FindClass(slashClassName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800878 if (startClass == NULL) {
Steve Block3762c312012-01-06 19:20:56 +0000879 ALOGE("JavaVM unable to locate class '%s'\n", slashClassName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800880 /* keep going */
881 } else {
Elliott Hughesd195e5a2011-04-13 15:39:37 -0700882 jmethodID startMeth = env->GetStaticMethodID(startClass, "main",
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800883 "([Ljava/lang/String;)V");
884 if (startMeth == NULL) {
Steve Block3762c312012-01-06 19:20:56 +0000885 ALOGE("JavaVM unable to find main() in '%s'\n", className);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800886 /* keep going */
887 } else {
888 env->CallStaticVoidMethod(startClass, startMeth, strArray);
889
890#if 0
891 if (env->ExceptionCheck())
892 threadExitUncaughtException(env);
893#endif
894 }
895 }
Elliott Hughesd195e5a2011-04-13 15:39:37 -0700896 free(slashClassName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800897
Steve Block5baa3a62011-12-20 16:23:08 +0000898 ALOGD("Shutting down VM\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800899 if (mJavaVM->DetachCurrentThread() != JNI_OK)
Steve Block8564c8d2012-01-05 23:22:43 +0000900 ALOGW("Warning: unable to detach main thread\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800901 if (mJavaVM->DestroyJavaVM() != 0)
Steve Block8564c8d2012-01-05 23:22:43 +0000902 ALOGW("Warning: VM did not shut down cleanly\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800903}
904
Jeff Brown4280c4a2012-03-15 17:48:02 -0700905void AndroidRuntime::exit(int code)
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800906{
Jeff Brown4280c4a2012-03-15 17:48:02 -0700907 if (mExitWithoutCleanup) {
908 ALOGI("VM exiting with result code %d, cleanup skipped.", code);
909 ::_exit(code);
910 } else {
911 ALOGI("VM exiting with result code %d.", code);
912 onExit(code);
913 ::exit(code);
914 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800915}
916
Elliott Hughesd195e5a2011-04-13 15:39:37 -0700917void AndroidRuntime::onVmCreated(JNIEnv* env)
918{
919 // If AndroidRuntime had anything to do here, we'd have done it in 'start'.
920}
921
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800922/*
923 * Get the JNIEnv pointer for this thread.
924 *
925 * Returns NULL if the slot wasn't allocated or populated.
926 */
927/*static*/ JNIEnv* AndroidRuntime::getJNIEnv()
928{
929 JNIEnv* env;
930 JavaVM* vm = AndroidRuntime::getJavaVM();
931 assert(vm != NULL);
932
933 if (vm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK)
934 return NULL;
935 return env;
936}
937
938/*
939 * Makes the current thread visible to the VM.
940 *
941 * The JNIEnv pointer returned is only valid for the current thread, and
942 * thus must be tucked into thread-local storage.
943 */
944static int javaAttachThread(const char* threadName, JNIEnv** pEnv)
945{
946 JavaVMAttachArgs args;
947 JavaVM* vm;
948 jint result;
949
950 vm = AndroidRuntime::getJavaVM();
951 assert(vm != NULL);
952
953 args.version = JNI_VERSION_1_4;
954 args.name = (char*) threadName;
955 args.group = NULL;
956
957 result = vm->AttachCurrentThread(pEnv, (void*) &args);
958 if (result != JNI_OK)
Steve Block6215d3f2012-01-04 20:05:49 +0000959 ALOGI("NOTE: attach of thread '%s' failed\n", threadName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800960
961 return result;
962}
963
964/*
965 * Detach the current thread from the set visible to the VM.
966 */
967static int javaDetachThread(void)
968{
969 JavaVM* vm;
970 jint result;
971
972 vm = AndroidRuntime::getJavaVM();
973 assert(vm != NULL);
974
975 result = vm->DetachCurrentThread();
976 if (result != JNI_OK)
Steve Block3762c312012-01-06 19:20:56 +0000977 ALOGE("ERROR: thread detach failed\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800978 return result;
979}
980
981/*
982 * When starting a native thread that will be visible from the VM, we
983 * bounce through this to get the right attach/detach action.
984 * Note that this function calls free(args)
985 */
986/*static*/ int AndroidRuntime::javaThreadShell(void* args) {
987 void* start = ((void**)args)[0];
988 void* userData = ((void **)args)[1];
989 char* name = (char*) ((void **)args)[2]; // we own this storage
990 free(args);
991 JNIEnv* env;
992 int result;
993
994 /* hook us into the VM */
995 if (javaAttachThread(name, &env) != JNI_OK)
996 return -1;
997
998 /* start the thread running */
999 result = (*(android_thread_func_t)start)(userData);
1000
1001 /* unhook us */
1002 javaDetachThread();
1003 free(name);
1004
1005 return result;
1006}
1007
1008/*
1009 * This is invoked from androidCreateThreadEtc() via the callback
1010 * set with androidSetCreateThreadFunc().
1011 *
1012 * We need to create the new thread in such a way that it gets hooked
1013 * into the VM before it really starts executing.
1014 */
1015/*static*/ int AndroidRuntime::javaCreateThreadEtc(
Elliott Hughesd195e5a2011-04-13 15:39:37 -07001016 android_thread_func_t entryFunction,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001017 void* userData,
1018 const char* threadName,
1019 int32_t threadPriority,
1020 size_t threadStackSize,
1021 android_thread_id_t* threadId)
1022{
1023 void** args = (void**) malloc(3 * sizeof(void*)); // javaThreadShell must free
1024 int result;
1025
1026 assert(threadName != NULL);
1027
1028 args[0] = (void*) entryFunction;
1029 args[1] = userData;
1030 args[2] = (void*) strdup(threadName); // javaThreadShell must free
1031
1032 result = androidCreateRawThreadEtc(AndroidRuntime::javaThreadShell, args,
1033 threadName, threadPriority, threadStackSize, threadId);
1034 return result;
1035}
1036
1037/*
1038 * Create a thread that is visible from the VM.
1039 *
1040 * This is called from elsewhere in the library.
1041 */
Mike Lockwoodf602d362010-06-20 14:28:16 -07001042/*static*/ android_thread_id_t AndroidRuntime::createJavaThread(const char* name,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001043 void (*start)(void *), void* arg)
1044{
Mike Lockwoodf602d362010-06-20 14:28:16 -07001045 android_thread_id_t threadId = 0;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001046 javaCreateThreadEtc((android_thread_func_t) start, arg, name,
Mike Lockwoodf602d362010-06-20 14:28:16 -07001047 ANDROID_PRIORITY_DEFAULT, 0, &threadId);
1048 return threadId;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001049}
1050
1051#if 0
1052static void quickTest(void* arg)
1053{
1054 const char* str = (const char*) arg;
1055
1056 printf("In quickTest: %s\n", str);
1057}
1058#endif
1059
1060#ifdef NDEBUG
1061 #define REG_JNI(name) { name }
1062 struct RegJNIRec {
1063 int (*mProc)(JNIEnv*);
1064 };
1065#else
1066 #define REG_JNI(name) { name, #name }
1067 struct RegJNIRec {
1068 int (*mProc)(JNIEnv*);
1069 const char* mName;
1070 };
1071#endif
1072
1073typedef void (*RegJAMProc)();
1074
1075static int register_jni_procs(const RegJNIRec array[], size_t count, JNIEnv* env)
1076{
1077 for (size_t i = 0; i < count; i++) {
1078 if (array[i].mProc(env) < 0) {
1079#ifndef NDEBUG
Steve Block5baa3a62011-12-20 16:23:08 +00001080 ALOGD("----------!!! %s failed to load\n", array[i].mName);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001081#endif
1082 return -1;
1083 }
1084 }
1085 return 0;
1086}
1087
1088static void register_jam_procs(const RegJAMProc array[], size_t count)
1089{
1090 for (size_t i = 0; i < count; i++) {
1091 array[i]();
1092 }
1093}
1094
1095static const RegJNIRec gRegJNI[] = {
1096 REG_JNI(register_android_debug_JNITest),
1097 REG_JNI(register_com_android_internal_os_RuntimeInit),
1098 REG_JNI(register_android_os_SystemClock),
1099 REG_JNI(register_android_util_EventLog),
1100 REG_JNI(register_android_util_Log),
1101 REG_JNI(register_android_util_FloatMath),
1102 REG_JNI(register_android_text_format_Time),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001103 REG_JNI(register_android_content_AssetManager),
1104 REG_JNI(register_android_content_StringBlock),
1105 REG_JNI(register_android_content_XmlBlock),
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001106 REG_JNI(register_android_emoji_EmojiFactory),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001107 REG_JNI(register_android_text_AndroidCharacter),
Doug Feltdae8e942010-02-24 14:33:15 -08001108 REG_JNI(register_android_text_AndroidBidi),
Jeff Brown9f25b7f2012-04-10 14:30:49 -07001109 REG_JNI(register_android_view_InputDevice),
1110 REG_JNI(register_android_view_KeyCharacterMap),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001111 REG_JNI(register_android_os_Process),
Andreas Hubera8079bf2010-11-16 14:40:31 -08001112 REG_JNI(register_android_os_SystemProperties),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001113 REG_JNI(register_android_os_Binder),
Jeff Sharkeyd84e1ce2012-03-06 18:26:19 -08001114 REG_JNI(register_android_os_Parcel),
Jeff Brown0a0a1242011-12-02 02:25:22 -08001115 REG_JNI(register_android_view_DisplayEventReceiver),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001116 REG_JNI(register_android_nio_utils),
1117 REG_JNI(register_android_graphics_PixelFormat),
1118 REG_JNI(register_android_graphics_Graphics),
Chet Haasea1cff502012-02-21 13:43:44 -08001119 REG_JNI(register_android_view_GLES20DisplayList),
Romain Guye4d01122010-06-16 18:44:05 -07001120 REG_JNI(register_android_view_GLES20Canvas),
Romain Guya9582652011-11-10 14:20:10 -08001121 REG_JNI(register_android_view_HardwareRenderer),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001122 REG_JNI(register_android_view_Surface),
Jeff Brown64a55af2012-08-26 02:47:39 -07001123 REG_JNI(register_android_view_SurfaceSession),
Romain Guy8f0095c2011-05-02 17:24:22 -07001124 REG_JNI(register_android_view_TextureView),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001125 REG_JNI(register_com_google_android_gles_jni_EGLImpl),
1126 REG_JNI(register_com_google_android_gles_jni_GLImpl),
Thomas Tafertshofer6b1e8382012-07-03 13:37:35 -07001127 REG_JNI(register_android_opengl_jni_EGL14),
Jack Palevich1c4907e2009-04-13 16:22:25 -07001128 REG_JNI(register_android_opengl_jni_GLES10),
1129 REG_JNI(register_android_opengl_jni_GLES10Ext),
1130 REG_JNI(register_android_opengl_jni_GLES11),
1131 REG_JNI(register_android_opengl_jni_GLES11Ext),
Jack Palevich560814f2009-11-19 16:34:55 +08001132 REG_JNI(register_android_opengl_jni_GLES20),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001133
1134 REG_JNI(register_android_graphics_Bitmap),
1135 REG_JNI(register_android_graphics_BitmapFactory),
Wei-Ta Chen6b849e22010-09-07 17:32:18 +08001136 REG_JNI(register_android_graphics_BitmapRegionDecoder),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001137 REG_JNI(register_android_graphics_Camera),
1138 REG_JNI(register_android_graphics_Canvas),
1139 REG_JNI(register_android_graphics_ColorFilter),
1140 REG_JNI(register_android_graphics_DrawFilter),
1141 REG_JNI(register_android_graphics_Interpolator),
1142 REG_JNI(register_android_graphics_LayerRasterizer),
1143 REG_JNI(register_android_graphics_MaskFilter),
1144 REG_JNI(register_android_graphics_Matrix),
1145 REG_JNI(register_android_graphics_Movie),
1146 REG_JNI(register_android_graphics_NinePatch),
1147 REG_JNI(register_android_graphics_Paint),
1148 REG_JNI(register_android_graphics_Path),
1149 REG_JNI(register_android_graphics_PathMeasure),
1150 REG_JNI(register_android_graphics_PathEffect),
1151 REG_JNI(register_android_graphics_Picture),
1152 REG_JNI(register_android_graphics_PorterDuff),
1153 REG_JNI(register_android_graphics_Rasterizer),
1154 REG_JNI(register_android_graphics_Region),
1155 REG_JNI(register_android_graphics_Shader),
Jamie Gennisaa0ce332011-01-06 17:04:26 -08001156 REG_JNI(register_android_graphics_SurfaceTexture),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001157 REG_JNI(register_android_graphics_Typeface),
1158 REG_JNI(register_android_graphics_Xfermode),
Wei-Ta Chenbca2d612009-11-30 17:52:05 +08001159 REG_JNI(register_android_graphics_YuvImage),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001160
1161 REG_JNI(register_android_database_CursorWindow),
Jeff Browne5360fb2011-10-31 17:48:13 -07001162 REG_JNI(register_android_database_SQLiteConnection),
1163 REG_JNI(register_android_database_SQLiteGlobal),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001164 REG_JNI(register_android_database_SQLiteDebug),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001165 REG_JNI(register_android_os_Debug),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001166 REG_JNI(register_android_os_FileObserver),
1167 REG_JNI(register_android_os_FileUtils),
Christopher Tatefa9e7c02010-05-06 12:07:10 -07001168 REG_JNI(register_android_os_MessageQueue),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001169 REG_JNI(register_android_os_ParcelFileDescriptor),
Stephen Smalleyc07fca32012-01-13 08:31:39 -05001170 REG_JNI(register_android_os_SELinux),
Jeff Brown481c1572012-03-09 14:41:15 -08001171 REG_JNI(register_android_os_Trace),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001172 REG_JNI(register_android_os_UEventObserver),
1173 REG_JNI(register_android_net_LocalSocketImpl),
1174 REG_JNI(register_android_net_NetworkUtils),
Dan Egnor2b4abcd2010-04-07 17:30:50 -07001175 REG_JNI(register_android_net_TrafficStats),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001176 REG_JNI(register_android_net_wifi_WifiManager),
1177 REG_JNI(register_android_os_MemoryFile),
1178 REG_JNI(register_com_android_internal_os_ZygoteInit),
1179 REG_JNI(register_android_hardware_Camera),
1180 REG_JNI(register_android_hardware_SensorManager),
Mike Lockwoodb01e8bf2011-08-29 20:11:07 -04001181 REG_JNI(register_android_hardware_SerialPort),
Mike Lockwoode7d511e2010-12-30 13:39:37 -05001182 REG_JNI(register_android_hardware_UsbDevice),
Mike Lockwoodacc29cc2011-03-11 08:18:08 -05001183 REG_JNI(register_android_hardware_UsbDeviceConnection),
Mike Lockwoode7d511e2010-12-30 13:39:37 -05001184 REG_JNI(register_android_hardware_UsbRequest),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001185 REG_JNI(register_android_media_AudioRecord),
1186 REG_JNI(register_android_media_AudioSystem),
1187 REG_JNI(register_android_media_AudioTrack),
1188 REG_JNI(register_android_media_JetPlayer),
Jeff Browncbad9762012-09-04 21:57:59 -07001189 REG_JNI(register_android_media_RemoteDisplay),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001190 REG_JNI(register_android_media_ToneGenerator),
1191
1192 REG_JNI(register_android_opengl_classes),
JP Abgrall98a4f7e2011-09-02 15:36:33 -07001193 REG_JNI(register_android_server_NetworkManagementSocketTagger),
Christopher Tateecaa7b42010-06-04 14:55:02 -07001194 REG_JNI(register_android_server_Watchdog),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001195 REG_JNI(register_android_ddm_DdmHandleNativeHeap),
Joe Onorato1cf58742009-06-12 11:06:24 -07001196 REG_JNI(register_android_backup_BackupDataInput),
Joe Onoratod2110db2009-05-19 13:41:21 -07001197 REG_JNI(register_android_backup_BackupDataOutput),
Joe Onorato06290a42009-06-18 20:10:37 -07001198 REG_JNI(register_android_backup_FileBackupHelperBase),
Joe Onorato4ababd92009-06-25 18:29:18 -04001199 REG_JNI(register_android_backup_BackupHelperDispatcher),
Christopher Tate4a627c72011-04-01 14:43:32 -07001200 REG_JNI(register_android_app_backup_FullBackup),
Chet Haase9c1e23b2011-03-24 10:51:31 -07001201 REG_JNI(register_android_app_ActivityThread),
Dianne Hackborn69969e42010-05-04 11:40:40 -07001202 REG_JNI(register_android_app_NativeActivity),
Jeff Brown46b9ac02010-04-22 18:58:52 -07001203 REG_JNI(register_android_view_InputChannel),
Jeff Brown32cbc38552011-12-01 14:01:49 -08001204 REG_JNI(register_android_view_InputEventReceiver),
Jeff Brown46b9ac02010-04-22 18:58:52 -07001205 REG_JNI(register_android_view_KeyEvent),
1206 REG_JNI(register_android_view_MotionEvent),
Jeff Brown2352b972011-04-12 22:39:53 -07001207 REG_JNI(register_android_view_PointerIcon),
Jeff Brown2ed24622011-03-14 19:39:54 -07001208 REG_JNI(register_android_view_VelocityTracker),
Kenny Root02c87302010-07-01 08:10:18 -07001209
1210 REG_JNI(register_android_content_res_ObbScanner),
Dianne Hackborn08d5b8f2010-08-04 11:12:40 -07001211 REG_JNI(register_android_content_res_Configuration),
Chet Haase6e0ecb42010-11-03 19:41:18 -07001212
1213 REG_JNI(register_android_animation_PropertyValuesHolder),
Kenny Root66269ea2011-07-12 14:14:01 -07001214 REG_JNI(register_com_android_internal_content_NativeLibraryHelper),
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001215};
1216
1217/*
1218 * Register android native functions with the VM.
1219 */
1220/*static*/ int AndroidRuntime::startReg(JNIEnv* env)
1221{
1222 /*
1223 * This hook causes all future threads created in this process to be
1224 * attached to the JavaVM. (This needs to go away in favor of JNI
1225 * Attach calls.)
1226 */
1227 androidSetCreateThreadFunc((android_create_thread_fn) javaCreateThreadEtc);
1228
Steve Block71f2cf12011-10-20 11:56:00 +01001229 ALOGV("--- registering native functions ---\n");
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001230
1231 /*
1232 * Every "register" function calls one or more things that return
1233 * a local reference (e.g. FindClass). Because we haven't really
1234 * started the VM yet, they're all getting stored in the base frame
1235 * and never released. Use Push/Pop to manage the storage.
1236 */
1237 env->PushLocalFrame(200);
1238
1239 if (register_jni_procs(gRegJNI, NELEM(gRegJNI), env) < 0) {
1240 env->PopLocalFrame(NULL);
1241 return -1;
1242 }
1243 env->PopLocalFrame(NULL);
1244
1245 //createJavaThread("fubar", quickTest, (void*) "hello");
1246
1247 return 0;
1248}
1249
1250AndroidRuntime* AndroidRuntime::getRuntime()
1251{
1252 return gCurRuntime;
1253}
1254
1255/**
1256 * Used by WithFramework to register native functions.
1257 */
1258extern "C"
1259jint Java_com_android_internal_util_WithFramework_registerNatives(
1260 JNIEnv* env, jclass clazz) {
1261 return register_jni_procs(gRegJNI, NELEM(gRegJNI), env);
1262}
1263
1264/**
1265 * Used by LoadClass to register native functions.
1266 */
1267extern "C"
1268jint Java_LoadClass_registerNatives(JNIEnv* env, jclass clazz) {
1269 return register_jni_procs(gRegJNI, NELEM(gRegJNI), env);
1270}
1271
1272} // namespace android