AndroidRuntime.cpp revision ae61c26534a3dd3a71bc4c7ab3993e6923f1a201
1/*
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 */
16
17#define LOG_TAG "AndroidRuntime"
18//#define LOG_NDEBUG 0
19
20#include <android_runtime/AndroidRuntime.h>
21#include <binder/IBinder.h>
22#include <binder/IPCThreadState.h>
23#include <binder/IServiceManager.h>
24#include <utils/Log.h>
25#include <utils/misc.h>
26#include <binder/Parcel.h>
27#include <utils/threads.h>
28#include <cutils/properties.h>
29
30#include <SkGraphics.h>
31#include <SkImageDecoder.h>
32
33#include "jni.h"
34#include "JNIHelp.h"
35#include "JniInvocation.h"
36#include "android_util_Binder.h"
37
38#include <stdio.h>
39#include <signal.h>
40#include <sys/stat.h>
41#include <sys/types.h>
42#include <signal.h>
43#include <dirent.h>
44#include <assert.h>
45
46#include <string>
47#include <vector>
48
49
50using namespace android;
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*);
56extern int register_android_graphics_BitmapRegionDecoder(JNIEnv*);
57extern int register_android_graphics_Camera(JNIEnv* env);
58extern int register_android_graphics_CreateJavaOutputStreamAdaptor(JNIEnv* env);
59extern int register_android_graphics_Graphics(JNIEnv* env);
60extern int register_android_graphics_Interpolator(JNIEnv* env);
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);
65extern int register_android_graphics_Shader(JNIEnv* env);
66extern int register_android_graphics_Typeface(JNIEnv* env);
67extern int register_android_graphics_YuvImage(JNIEnv* env);
68
69extern int register_com_google_android_gles_jni_EGLImpl(JNIEnv* env);
70extern int register_com_google_android_gles_jni_GLImpl(JNIEnv* env);
71extern int register_android_opengl_jni_EGL14(JNIEnv* env);
72extern int register_android_opengl_jni_EGLExt(JNIEnv* env);
73extern int register_android_opengl_jni_GLES10(JNIEnv* env);
74extern int register_android_opengl_jni_GLES10Ext(JNIEnv* env);
75extern int register_android_opengl_jni_GLES11(JNIEnv* env);
76extern int register_android_opengl_jni_GLES11Ext(JNIEnv* env);
77extern int register_android_opengl_jni_GLES20(JNIEnv* env);
78extern int register_android_opengl_jni_GLES30(JNIEnv* env);
79extern int register_android_opengl_jni_GLES31(JNIEnv* env);
80extern int register_android_opengl_jni_GLES31Ext(JNIEnv* env);
81
82extern int register_android_hardware_Camera(JNIEnv *env);
83extern int register_android_hardware_camera2_CameraMetadata(JNIEnv *env);
84extern int register_android_hardware_camera2_legacy_LegacyCameraDevice(JNIEnv *env);
85extern int register_android_hardware_camera2_legacy_PerfMeasurement(JNIEnv *env);
86extern int register_android_hardware_camera2_DngCreator(JNIEnv *env);
87extern int register_android_hardware_Radio(JNIEnv *env);
88extern int register_android_hardware_SensorManager(JNIEnv *env);
89extern int register_android_hardware_SerialPort(JNIEnv *env);
90extern int register_android_hardware_SoundTrigger(JNIEnv *env);
91extern int register_android_hardware_UsbDevice(JNIEnv *env);
92extern int register_android_hardware_UsbDeviceConnection(JNIEnv *env);
93extern int register_android_hardware_UsbRequest(JNIEnv *env);
94extern int register_android_hardware_location_ActivityRecognitionHardware(JNIEnv* env);
95
96extern int register_android_media_AudioRecord(JNIEnv *env);
97extern int register_android_media_AudioSystem(JNIEnv *env);
98extern int register_android_media_AudioTrack(JNIEnv *env);
99extern int register_android_media_JetPlayer(JNIEnv *env);
100extern int register_android_media_ToneGenerator(JNIEnv *env);
101
102namespace android {
103
104/*
105 * JNI-based registration functions.  Note these are properly contained in
106 * namespace android.
107 */
108extern int register_android_content_AssetManager(JNIEnv* env);
109extern int register_android_util_EventLog(JNIEnv* env);
110extern int register_android_util_Log(JNIEnv* env);
111extern int register_android_content_StringBlock(JNIEnv* env);
112extern int register_android_content_XmlBlock(JNIEnv* env);
113extern int register_android_graphics_Canvas(JNIEnv* env);
114extern int register_android_graphics_CanvasProperty(JNIEnv* env);
115extern int register_android_graphics_ColorFilter(JNIEnv* env);
116extern int register_android_graphics_DrawFilter(JNIEnv* env);
117extern int register_android_graphics_FontFamily(JNIEnv* env);
118extern int register_android_graphics_LayerRasterizer(JNIEnv*);
119extern int register_android_graphics_Matrix(JNIEnv* env);
120extern int register_android_graphics_Paint(JNIEnv* env);
121extern int register_android_graphics_Path(JNIEnv* env);
122extern int register_android_graphics_PathMeasure(JNIEnv* env);
123extern int register_android_graphics_Picture(JNIEnv*);
124extern int register_android_graphics_PorterDuff(JNIEnv* env);
125extern int register_android_graphics_Rasterizer(JNIEnv* env);
126extern int register_android_graphics_Region(JNIEnv* env);
127extern int register_android_graphics_SurfaceTexture(JNIEnv* env);
128extern int register_android_graphics_Xfermode(JNIEnv* env);
129extern int register_android_graphics_pdf_PdfDocument(JNIEnv* env);
130extern int register_android_graphics_pdf_PdfEditor(JNIEnv* env);
131extern int register_android_graphics_pdf_PdfRenderer(JNIEnv* env);
132extern int register_android_view_DisplayEventReceiver(JNIEnv* env);
133extern int register_android_view_DisplayListCanvas(JNIEnv* env);
134extern int register_android_view_GraphicBuffer(JNIEnv* env);
135extern int register_android_view_HardwareLayer(JNIEnv* env);
136extern int register_android_view_RenderNode(JNIEnv* env);
137extern int register_android_view_RenderNodeAnimator(JNIEnv* env);
138extern int register_android_view_Surface(JNIEnv* env);
139extern int register_android_view_SurfaceControl(JNIEnv* env);
140extern int register_android_view_SurfaceSession(JNIEnv* env);
141extern int register_android_view_TextureView(JNIEnv* env);
142extern int register_android_view_ThreadedRenderer(JNIEnv* env);
143extern int register_com_android_internal_view_animation_NativeInterpolatorFactoryHelper(JNIEnv *env);
144extern int register_android_database_CursorWindow(JNIEnv* env);
145extern int register_android_database_SQLiteConnection(JNIEnv* env);
146extern int register_android_database_SQLiteGlobal(JNIEnv* env);
147extern int register_android_database_SQLiteDebug(JNIEnv* env);
148extern int register_android_nio_utils(JNIEnv* env);
149extern int register_android_os_Debug(JNIEnv* env);
150extern int register_android_os_MessageQueue(JNIEnv* env);
151extern int register_android_os_Parcel(JNIEnv* env);
152extern int register_android_os_SELinux(JNIEnv* env);
153extern int register_android_os_SystemProperties(JNIEnv *env);
154extern int register_android_os_SystemClock(JNIEnv* env);
155extern int register_android_os_Trace(JNIEnv* env);
156extern int register_android_os_FileObserver(JNIEnv *env);
157extern int register_android_os_UEventObserver(JNIEnv* env);
158extern int register_android_os_MemoryFile(JNIEnv* env);
159extern int register_android_net_LocalSocketImpl(JNIEnv* env);
160extern int register_android_net_NetworkUtils(JNIEnv* env);
161extern int register_android_net_TrafficStats(JNIEnv* env);
162extern int register_android_text_AndroidCharacter(JNIEnv *env);
163extern int register_android_text_StaticLayout(JNIEnv *env);
164extern int register_android_text_AndroidBidi(JNIEnv *env);
165extern int register_android_opengl_classes(JNIEnv *env);
166extern int register_android_ddm_DdmHandleNativeHeap(JNIEnv *env);
167extern int register_android_server_NetworkManagementSocketTagger(JNIEnv* env);
168extern int register_android_backup_BackupDataInput(JNIEnv *env);
169extern int register_android_backup_BackupDataOutput(JNIEnv *env);
170extern int register_android_backup_FileBackupHelperBase(JNIEnv *env);
171extern int register_android_backup_BackupHelperDispatcher(JNIEnv *env);
172extern int register_android_app_backup_FullBackup(JNIEnv *env);
173extern int register_android_app_ActivityThread(JNIEnv *env);
174extern int register_android_app_NativeActivity(JNIEnv *env);
175extern int register_android_media_RemoteDisplay(JNIEnv *env);
176extern int register_android_view_InputChannel(JNIEnv* env);
177extern int register_android_view_InputDevice(JNIEnv* env);
178extern int register_android_view_InputEventReceiver(JNIEnv* env);
179extern int register_android_view_InputEventSender(JNIEnv* env);
180extern int register_android_view_InputQueue(JNIEnv* env);
181extern int register_android_view_KeyCharacterMap(JNIEnv *env);
182extern int register_android_view_KeyEvent(JNIEnv* env);
183extern int register_android_view_MotionEvent(JNIEnv* env);
184extern int register_android_view_PointerIcon(JNIEnv* env);
185extern int register_android_view_VelocityTracker(JNIEnv* env);
186extern int register_android_content_res_ObbScanner(JNIEnv* env);
187extern int register_android_content_res_Configuration(JNIEnv* env);
188extern int register_android_animation_PropertyValuesHolder(JNIEnv *env);
189extern int register_com_android_internal_content_NativeLibraryHelper(JNIEnv *env);
190extern int register_com_android_internal_net_NetworkStatsFactory(JNIEnv *env);
191extern int register_com_android_internal_os_Zygote(JNIEnv *env);
192extern int register_com_android_internal_util_VirtualRefBasePtr(JNIEnv *env);
193
194static AndroidRuntime* gCurRuntime = NULL;
195
196/*
197 * Code written in the Java Programming Language calls here from main().
198 */
199static void com_android_internal_os_RuntimeInit_nativeFinishInit(JNIEnv* env, jobject clazz)
200{
201    gCurRuntime->onStarted();
202}
203
204static void com_android_internal_os_RuntimeInit_nativeZygoteInit(JNIEnv* env, jobject clazz)
205{
206    gCurRuntime->onZygoteInit();
207}
208
209static void com_android_internal_os_RuntimeInit_nativeSetExitWithoutCleanup(JNIEnv* env,
210        jobject clazz, jboolean exitWithoutCleanup)
211{
212    gCurRuntime->setExitWithoutCleanup(exitWithoutCleanup);
213}
214
215/*
216 * JNI registration.
217 */
218static JNINativeMethod gMethods[] = {
219    { "nativeFinishInit", "()V",
220        (void*) com_android_internal_os_RuntimeInit_nativeFinishInit },
221    { "nativeZygoteInit", "()V",
222        (void*) com_android_internal_os_RuntimeInit_nativeZygoteInit },
223    { "nativeSetExitWithoutCleanup", "(Z)V",
224        (void*) com_android_internal_os_RuntimeInit_nativeSetExitWithoutCleanup },
225};
226
227int register_com_android_internal_os_RuntimeInit(JNIEnv* env)
228{
229    return jniRegisterNativeMethods(env, "com/android/internal/os/RuntimeInit",
230        gMethods, NELEM(gMethods));
231}
232
233// ----------------------------------------------------------------------
234
235/*static*/ JavaVM* AndroidRuntime::mJavaVM = NULL;
236
237AndroidRuntime::AndroidRuntime(char* argBlockStart, const size_t argBlockLength) :
238        mExitWithoutCleanup(false),
239        mArgBlockStart(argBlockStart),
240        mArgBlockLength(argBlockLength)
241{
242    SkGraphics::Init();
243    // There is also a global font cache, but its budget is specified by
244    // SK_DEFAULT_FONT_CACHE_COUNT_LIMIT and SK_DEFAULT_FONT_CACHE_LIMIT.
245
246    // Pre-allocate enough space to hold a fair number of options.
247    mOptions.setCapacity(20);
248
249    assert(gCurRuntime == NULL);        // one per process
250    gCurRuntime = this;
251}
252
253AndroidRuntime::~AndroidRuntime()
254{
255    SkGraphics::Term();
256}
257
258/*
259 * Register native methods using JNI.
260 */
261/*static*/ int AndroidRuntime::registerNativeMethods(JNIEnv* env,
262    const char* className, const JNINativeMethod* gMethods, int numMethods)
263{
264    return jniRegisterNativeMethods(env, className, gMethods, numMethods);
265}
266
267void AndroidRuntime::setArgv0(const char* argv0) {
268    memset(mArgBlockStart, 0, mArgBlockLength);
269    strlcpy(mArgBlockStart, argv0, mArgBlockLength);
270}
271
272status_t AndroidRuntime::callMain(const String8& className, jclass clazz,
273    const Vector<String8>& args)
274{
275    JNIEnv* env;
276    jmethodID methodId;
277
278    ALOGD("Calling main entry %s", className.string());
279
280    env = getJNIEnv();
281    if (clazz == NULL || env == NULL) {
282        return UNKNOWN_ERROR;
283    }
284
285    methodId = env->GetStaticMethodID(clazz, "main", "([Ljava/lang/String;)V");
286    if (methodId == NULL) {
287        ALOGE("ERROR: could not find method %s.main(String[])\n", className.string());
288        return UNKNOWN_ERROR;
289    }
290
291    /*
292     * We want to call main() with a String array with our arguments in it.
293     * Create an array and populate it.
294     */
295    jclass stringClass;
296    jobjectArray strArray;
297
298    const size_t numArgs = args.size();
299    stringClass = env->FindClass("java/lang/String");
300    strArray = env->NewObjectArray(numArgs, stringClass, NULL);
301
302    for (size_t i = 0; i < numArgs; i++) {
303        jstring argStr = env->NewStringUTF(args[i].string());
304        env->SetObjectArrayElement(strArray, i, argStr);
305    }
306
307    env->CallStaticVoidMethod(clazz, methodId, strArray);
308    return NO_ERROR;
309}
310
311/*
312 * The VM calls this through the "exit" hook.
313 */
314static void runtime_exit(int code)
315{
316    gCurRuntime->exit(code);
317}
318
319/*
320 * The VM calls this through the "vfprintf" hook.
321 *
322 * We ignore "fp" and just write the results to the log file.
323 */
324static void runtime_vfprintf(FILE* fp, const char* format, va_list ap)
325{
326    LOG_PRI_VA(ANDROID_LOG_INFO, "vm-printf", format, ap);
327}
328
329/**
330 * The VM calls this when mutex contention debugging is enabled to
331 * determine whether or not the blocked thread was a "sensitive thread"
332 * for user responsiveness/smoothess.
333 *
334 * Our policy for this is whether or not we're tracing any StrictMode
335 * events on this thread (which we might've inherited via Binder calls
336 * into us)
337 */
338static bool runtime_isSensitiveThread() {
339    IPCThreadState* state = IPCThreadState::selfOrNull();
340    return state && state->getStrictModePolicy() != 0;
341}
342
343static int hasDir(const char* dir)
344{
345    struct stat s;
346    int res = stat(dir, &s);
347    if (res == 0) {
348        return S_ISDIR(s.st_mode);
349    }
350    return 0;
351}
352
353static bool hasFile(const char* file) {
354    struct stat s;
355    int res = stat(file, &s);
356    if (res == 0) {
357        return S_ISREG(s.st_mode);
358    }
359    return false;
360}
361
362// Convenience wrapper over the property API that returns an
363// std::string.
364std::string getProperty(const char* key, const char* defaultValue) {
365    std::vector<char> temp(PROPERTY_VALUE_MAX);
366    const int len = property_get(key, &temp[0], defaultValue);
367    if (len < 0) {
368        return "";
369    }
370    return std::string(&temp[0], len);
371}
372
373/*
374 * Read the persistent locale. Inspects the following system properties
375 * (in order) and returns the first non-empty property in the list :
376 *
377 * (1) persist.sys.locale
378 * (2) persist.sys.language/country/localevar (country and localevar are
379 * inspected iff. language is non-empty.
380 * (3) ro.product.locale
381 * (4) ro.product.locale.language/region
382 *
383 * Note that we need to inspect persist.sys.language/country/localevar to
384 * preserve language settings for devices that are upgrading from Lollipop
385 * to M. The same goes for ro.product.locale.language/region as well.
386 */
387const std::string readLocale()
388{
389    const std::string locale = getProperty("persist.sys.locale", "");
390    if (!locale.empty()) {
391        return locale;
392    }
393
394    const std::string language = getProperty("persist.sys.language", "");
395    if (!language.empty()) {
396        const std::string country = getProperty("persist.sys.country", "");
397        const std::string variant = getProperty("persist.sys.localevar", "");
398
399        std::string out = language;
400        if (!country.empty()) {
401            out = out + "-" + country;
402        }
403
404        if (!variant.empty()) {
405            out = out + "-" + variant;
406        }
407
408        return out;
409    }
410
411    const std::string productLocale = getProperty("ro.product.locale", "");
412    if (!productLocale.empty()) {
413        return productLocale;
414    }
415
416    // If persist.sys.locale and ro.product.locale are missing,
417    // construct a locale value from the individual locale components.
418    const std::string productLanguage = getProperty("ro.product.locale.language", "en");
419    const std::string productRegion = getProperty("ro.product.locale.region", "US");
420
421    return productLanguage + "-" + productRegion;
422}
423
424void AndroidRuntime::addOption(const char* optionString, void* extraInfo)
425{
426    JavaVMOption opt;
427    opt.optionString = optionString;
428    opt.extraInfo = extraInfo;
429    mOptions.add(opt);
430}
431
432/*
433 * Parse a property containing space-separated options that should be
434 * passed directly to the VM, e.g. "-Xmx32m -verbose:gc -Xregenmap".
435 *
436 * This will cut up "extraOptsBuf" as we chop it into individual options.
437 *
438 * If "quotingArg" is non-null, it is passed before each extra option in mOptions.
439 *
440 * Adds the strings, if any, to mOptions.
441 */
442void AndroidRuntime::parseExtraOpts(char* extraOptsBuf, const char* quotingArg)
443{
444    char* start = extraOptsBuf;
445    char* end = NULL;
446    while (*start != '\0') {
447        while (*start == ' ')                   /* skip leading whitespace */
448            start++;
449        if (*start == '\0')                     /* was trailing ws, bail */
450            break;
451
452        end = start+1;
453        while (*end != ' ' && *end != '\0')     /* find end of token */
454            end++;
455        if (*end == ' ')
456            *end++ = '\0';          /* mark end, advance to indicate more */
457
458        if (quotingArg != NULL) {
459            addOption(quotingArg);
460        }
461        addOption(start);
462        start = end;
463    }
464}
465
466/*
467 * Reads a "property" into "buffer" with a default of "defaultArg". If
468 * the property is non-empty, it is treated as a runtime option such
469 * as "-Xmx32m".
470 *
471 * The "runtimeArg" is a prefix for the option such as "-Xms" or "-Xmx".
472 *
473 * If an argument is found, it is added to mOptions.
474 *
475 * If an option is found, it is added to mOptions and true is
476 * returned. Otherwise false is returned.
477 */
478bool AndroidRuntime::parseRuntimeOption(const char* property,
479                                        char* buffer,
480                                        const char* runtimeArg,
481                                        const char* defaultArg)
482{
483    strcpy(buffer, runtimeArg);
484    size_t runtimeArgLen = strlen(runtimeArg);
485    property_get(property, buffer+runtimeArgLen, defaultArg);
486    if (buffer[runtimeArgLen] == '\0') {
487        return false;
488    }
489    addOption(buffer);
490    return true;
491}
492
493/*
494 * Reads a "property" into "buffer". If the property is non-empty, it
495 * is treated as a dex2oat compiler option that should be
496 * passed as a quoted option, e.g. "-Ximage-compiler-option --compiler-filter=verify-none".
497 *
498 * The "compilerArg" is a prefix for the option such as "--compiler-filter=".
499 *
500 * The "quotingArg" should be "-Ximage-compiler-option" or "-Xcompiler-option".
501 *
502 * If an option is found, it is added to mOptions and true is
503 * returned. Otherwise false is returned.
504 */
505bool AndroidRuntime::parseCompilerOption(const char* property,
506                                         char* buffer,
507                                         const char* compilerArg,
508                                         const char* quotingArg)
509{
510    strcpy(buffer, compilerArg);
511    size_t compilerArgLen = strlen(compilerArg);
512    property_get(property, buffer+compilerArgLen, "");
513    if (buffer[compilerArgLen] == '\0') {
514        return false;
515    }
516    addOption(quotingArg);
517    addOption(buffer);
518    return true;
519}
520
521/*
522 * Reads a "property" into "buffer". If the property is non-empty, it
523 * is treated as a dex2oat compiler runtime option that should be
524 * passed as a quoted option, e.g. "-Ximage-compiler-option
525 * --runtime-arg -Ximage-compiler-option -Xmx32m".
526 *
527 * The "runtimeArg" is a prefix for the option such as "-Xms" or "-Xmx".
528 *
529 * The "quotingArg" should be "-Ximage-compiler-option" or "-Xcompiler-option".
530 *
531 * If an option is found, it is added to mOptions and true is
532 * returned. Otherwise false is returned.
533 */
534bool AndroidRuntime::parseCompilerRuntimeOption(const char* property,
535                                                char* buffer,
536                                                const char* runtimeArg,
537                                                const char* quotingArg)
538{
539    strcpy(buffer, runtimeArg);
540    size_t runtimeArgLen = strlen(runtimeArg);
541    property_get(property, buffer+runtimeArgLen, "");
542    if (buffer[runtimeArgLen] == '\0') {
543        return false;
544    }
545    addOption(quotingArg);
546    addOption("--runtime-arg");
547    addOption(quotingArg);
548    addOption(buffer);
549    return true;
550}
551
552/*
553 * Start the Dalvik Virtual Machine.
554 *
555 * Various arguments, most determined by system properties, are passed in.
556 * The "mOptions" vector is updated.
557 *
558 * CAUTION: when adding options in here, be careful not to put the
559 * char buffer inside a nested scope.  Adding the buffer to the
560 * options using mOptions.add() does not copy the buffer, so if the
561 * buffer goes out of scope the option may be overwritten.  It's best
562 * to put the buffer at the top of the function so that it is more
563 * unlikely that someone will surround it in a scope at a later time
564 * and thus introduce a bug.
565 *
566 * Returns 0 on success.
567 */
568int AndroidRuntime::startVm(JavaVM** pJavaVM, JNIEnv** pEnv)
569{
570    JavaVMInitArgs initArgs;
571    char propBuf[PROPERTY_VALUE_MAX];
572    char stackTraceFileBuf[sizeof("-Xstacktracefile:")-1 + PROPERTY_VALUE_MAX];
573    char jniOptsBuf[sizeof("-Xjniopts:")-1 + PROPERTY_VALUE_MAX];
574    char heapstartsizeOptsBuf[sizeof("-Xms")-1 + PROPERTY_VALUE_MAX];
575    char heapsizeOptsBuf[sizeof("-Xmx")-1 + PROPERTY_VALUE_MAX];
576    char heapgrowthlimitOptsBuf[sizeof("-XX:HeapGrowthLimit=")-1 + PROPERTY_VALUE_MAX];
577    char heapminfreeOptsBuf[sizeof("-XX:HeapMinFree=")-1 + PROPERTY_VALUE_MAX];
578    char heapmaxfreeOptsBuf[sizeof("-XX:HeapMaxFree=")-1 + PROPERTY_VALUE_MAX];
579    char usejitOptsBuf[sizeof("-Xusejit:")-1 + PROPERTY_VALUE_MAX];
580    char jitcodecachesizeOptsBuf[sizeof("-Xjitcodecachesize:")-1 + PROPERTY_VALUE_MAX];
581    char jitthresholdOptsBuf[sizeof("-Xjitthreshold:")-1 + PROPERTY_VALUE_MAX];
582    char gctypeOptsBuf[sizeof("-Xgc:")-1 + PROPERTY_VALUE_MAX];
583    char backgroundgcOptsBuf[sizeof("-XX:BackgroundGC=")-1 + PROPERTY_VALUE_MAX];
584    char heaptargetutilizationOptsBuf[sizeof("-XX:HeapTargetUtilization=")-1 + PROPERTY_VALUE_MAX];
585    char cachePruneBuf[sizeof("-Xzygote-max-boot-retry=")-1 + PROPERTY_VALUE_MAX];
586    char dex2oatXmsImageFlagsBuf[sizeof("-Xms")-1 + PROPERTY_VALUE_MAX];
587    char dex2oatXmxImageFlagsBuf[sizeof("-Xmx")-1 + PROPERTY_VALUE_MAX];
588    char dex2oatXmsFlagsBuf[sizeof("-Xms")-1 + PROPERTY_VALUE_MAX];
589    char dex2oatXmxFlagsBuf[sizeof("-Xmx")-1 + PROPERTY_VALUE_MAX];
590    char dex2oatCompilerFilterBuf[sizeof("--compiler-filter=")-1 + PROPERTY_VALUE_MAX];
591    char dex2oatImageCompilerFilterBuf[sizeof("--compiler-filter=")-1 + PROPERTY_VALUE_MAX];
592    char dex2oatThreadsBuf[sizeof("-j")-1 + PROPERTY_VALUE_MAX];
593    char dex2oatThreadsImageBuf[sizeof("-j")-1 + PROPERTY_VALUE_MAX];
594    char dex2oat_isa_variant_key[PROPERTY_KEY_MAX];
595    char dex2oat_isa_variant[sizeof("--instruction-set-variant=") -1 + PROPERTY_VALUE_MAX];
596    char dex2oat_isa_features_key[PROPERTY_KEY_MAX];
597    char dex2oat_isa_features[sizeof("--instruction-set-features=") -1 + PROPERTY_VALUE_MAX];
598    char dex2oatFlagsBuf[PROPERTY_VALUE_MAX];
599    char dex2oatImageFlagsBuf[PROPERTY_VALUE_MAX];
600    char extraOptsBuf[PROPERTY_VALUE_MAX];
601    char voldDecryptBuf[PROPERTY_VALUE_MAX];
602    enum {
603      kEMDefault,
604      kEMIntPortable,
605      kEMIntFast,
606      kEMJitCompiler,
607    } executionMode = kEMDefault;
608    char profilePeriod[sizeof("-Xprofile-period:")-1 + PROPERTY_VALUE_MAX];
609    char profileDuration[sizeof("-Xprofile-duration:")-1 + PROPERTY_VALUE_MAX];
610    char profileInterval[sizeof("-Xprofile-interval:")-1 + PROPERTY_VALUE_MAX];
611    char profileBackoff[sizeof("-Xprofile-backoff:")-1 + PROPERTY_VALUE_MAX];
612    char profileTopKThreshold[sizeof("-Xprofile-top-k-threshold:")-1 + PROPERTY_VALUE_MAX];
613    char profileTopKChangeThreshold[sizeof("-Xprofile-top-k-change-threshold:")-1 +
614                                    PROPERTY_VALUE_MAX];
615    char profileType[sizeof("-Xprofile-type:")-1 + PROPERTY_VALUE_MAX];
616    char profileMaxStackDepth[sizeof("-Xprofile-max-stack-depth:")-1 + PROPERTY_VALUE_MAX];
617    char localeOption[sizeof("-Duser.locale=") + PROPERTY_VALUE_MAX];
618    char lockProfThresholdBuf[sizeof("-Xlockprofthreshold:")-1 + PROPERTY_VALUE_MAX];
619    char nativeBridgeLibrary[sizeof("-XX:NativeBridge=") + PROPERTY_VALUE_MAX];
620    char cpuAbiListBuf[sizeof("--cpu-abilist=") + PROPERTY_VALUE_MAX];
621    char methodTraceFileBuf[sizeof("-Xmethod-trace-file:") + PROPERTY_VALUE_MAX];
622    char methodTraceFileSizeBuf[sizeof("-Xmethod-trace-file-size:") + PROPERTY_VALUE_MAX];
623    char fingerprintBuf[sizeof("-Xfingerprint:") + PROPERTY_VALUE_MAX];
624
625    bool checkJni = false;
626    property_get("dalvik.vm.checkjni", propBuf, "");
627    if (strcmp(propBuf, "true") == 0) {
628        checkJni = true;
629    } else if (strcmp(propBuf, "false") != 0) {
630        /* property is neither true nor false; fall back on kernel parameter */
631        property_get("ro.kernel.android.checkjni", propBuf, "");
632        if (propBuf[0] == '1') {
633            checkJni = true;
634        }
635    }
636    ALOGD("CheckJNI is %s\n", checkJni ? "ON" : "OFF");
637    if (checkJni) {
638        /* extended JNI checking */
639        addOption("-Xcheck:jni");
640
641        /* with -Xcheck:jni, this provides a JNI function call trace */
642        //addOption("-verbose:jni");
643    }
644
645    property_get("dalvik.vm.execution-mode", propBuf, "");
646    if (strcmp(propBuf, "int:portable") == 0) {
647        executionMode = kEMIntPortable;
648    } else if (strcmp(propBuf, "int:fast") == 0) {
649        executionMode = kEMIntFast;
650    } else if (strcmp(propBuf, "int:jit") == 0) {
651        executionMode = kEMJitCompiler;
652    }
653
654    parseRuntimeOption("dalvik.vm.stack-trace-file", stackTraceFileBuf, "-Xstacktracefile:");
655
656    strcpy(jniOptsBuf, "-Xjniopts:");
657    if (parseRuntimeOption("dalvik.vm.jniopts", jniOptsBuf, "-Xjniopts:")) {
658        ALOGI("JNI options: '%s'\n", jniOptsBuf);
659    }
660
661    /* route exit() to our handler */
662    addOption("exit", (void*) runtime_exit);
663
664    /* route fprintf() to our handler */
665    addOption("vfprintf", (void*) runtime_vfprintf);
666
667    /* register the framework-specific "is sensitive thread" hook */
668    addOption("sensitiveThread", (void*) runtime_isSensitiveThread);
669
670    /* enable verbose; standard options are { jni, gc, class } */
671    //addOption("-verbose:jni");
672    addOption("-verbose:gc");
673    //addOption("-verbose:class");
674
675    /*
676     * The default starting and maximum size of the heap.  Larger
677     * values should be specified in a product property override.
678     */
679    parseRuntimeOption("dalvik.vm.heapstartsize", heapstartsizeOptsBuf, "-Xms", "4m");
680    parseRuntimeOption("dalvik.vm.heapsize", heapsizeOptsBuf, "-Xmx", "16m");
681
682    parseRuntimeOption("dalvik.vm.heapgrowthlimit", heapgrowthlimitOptsBuf, "-XX:HeapGrowthLimit=");
683    parseRuntimeOption("dalvik.vm.heapminfree", heapminfreeOptsBuf, "-XX:HeapMinFree=");
684    parseRuntimeOption("dalvik.vm.heapmaxfree", heapmaxfreeOptsBuf, "-XX:HeapMaxFree=");
685    parseRuntimeOption("dalvik.vm.heaptargetutilization",
686                       heaptargetutilizationOptsBuf,
687                       "-XX:HeapTargetUtilization=");
688
689    /*
690     * JIT related options.
691     */
692    parseRuntimeOption("dalvik.vm.usejit", usejitOptsBuf, "-Xusejit:");
693    parseRuntimeOption("dalvik.vm.jitcodecachesize", jitcodecachesizeOptsBuf, "-Xjitcodecachesize:");
694    parseRuntimeOption("dalvik.vm.jitthreshold", jitthresholdOptsBuf, "-Xjitthreshold:");
695
696    property_get("ro.config.low_ram", propBuf, "");
697    if (strcmp(propBuf, "true") == 0) {
698      addOption("-XX:LowMemoryMode");
699    }
700
701    parseRuntimeOption("dalvik.vm.gctype", gctypeOptsBuf, "-Xgc:");
702    parseRuntimeOption("dalvik.vm.backgroundgctype", backgroundgcOptsBuf, "-XX:BackgroundGC=");
703
704    /* enable debugging; set suspend=y to pause during VM init */
705    /* use android ADB transport */
706    addOption("-agentlib:jdwp=transport=dt_android_adb,suspend=n,server=y");
707
708    parseRuntimeOption("dalvik.vm.lockprof.threshold",
709                       lockProfThresholdBuf,
710                       "-Xlockprofthreshold:");
711
712    if (executionMode == kEMIntPortable) {
713        addOption("-Xint:portable");
714    } else if (executionMode == kEMIntFast) {
715        addOption("-Xint:fast");
716    } else if (executionMode == kEMJitCompiler) {
717        addOption("-Xint:jit");
718    }
719
720    // If we are booting without the real /data, don't spend time compiling.
721    property_get("vold.decrypt", voldDecryptBuf, "");
722    bool skip_compilation = ((strcmp(voldDecryptBuf, "trigger_restart_min_framework") == 0) ||
723                             (strcmp(voldDecryptBuf, "1") == 0));
724
725    // Extra options for boot.art/boot.oat image generation.
726    parseCompilerRuntimeOption("dalvik.vm.image-dex2oat-Xms", dex2oatXmsImageFlagsBuf,
727                               "-Xms", "-Ximage-compiler-option");
728    parseCompilerRuntimeOption("dalvik.vm.image-dex2oat-Xmx", dex2oatXmxImageFlagsBuf,
729                               "-Xmx", "-Ximage-compiler-option");
730    if (skip_compilation) {
731        addOption("-Ximage-compiler-option");
732        addOption("--compiler-filter=verify-none");
733    } else {
734        parseCompilerOption("dalvik.vm.image-dex2oat-filter", dex2oatImageCompilerFilterBuf,
735                            "--compiler-filter=", "-Ximage-compiler-option");
736    }
737
738    // Make sure there is a preloaded-classes file.
739    if (!hasFile("/system/etc/preloaded-classes")) {
740        ALOGE("Missing preloaded-classes file, /system/etc/preloaded-classes not found: %s\n",
741              strerror(errno));
742        return -1;
743    }
744    addOption("-Ximage-compiler-option");
745    addOption("--image-classes=/system/etc/preloaded-classes");
746
747    // If there is a compiled-classes file, push it.
748    if (hasFile("/system/etc/compiled-classes")) {
749        addOption("-Ximage-compiler-option");
750        addOption("--compiled-classes=/system/etc/compiled-classes");
751    }
752
753    property_get("dalvik.vm.image-dex2oat-flags", dex2oatImageFlagsBuf, "");
754    parseExtraOpts(dex2oatImageFlagsBuf, "-Ximage-compiler-option");
755
756    // Extra options for DexClassLoader.
757    parseCompilerRuntimeOption("dalvik.vm.dex2oat-Xms", dex2oatXmsFlagsBuf,
758                               "-Xms", "-Xcompiler-option");
759    parseCompilerRuntimeOption("dalvik.vm.dex2oat-Xmx", dex2oatXmxFlagsBuf,
760                               "-Xmx", "-Xcompiler-option");
761    if (skip_compilation) {
762        addOption("-Xcompiler-option");
763        addOption("--compiler-filter=verify-none");
764
765        // We skip compilation when a minimal runtime is brought up for decryption. In that case
766        // /data is temporarily backed by a tmpfs, which is usually small.
767        // If the system image contains prebuilts, they will be relocated into the tmpfs. In this
768        // specific situation it is acceptable to *not* relocate and run out of the prebuilts
769        // directly instead.
770        addOption("--runtime-arg");
771        addOption("-Xnorelocate");
772    } else {
773        parseCompilerOption("dalvik.vm.dex2oat-filter", dex2oatCompilerFilterBuf,
774                            "--compiler-filter=", "-Xcompiler-option");
775    }
776    parseCompilerOption("dalvik.vm.dex2oat-threads", dex2oatThreadsBuf, "-j", "-Xcompiler-option");
777    parseCompilerOption("dalvik.vm.image-dex2oat-threads", dex2oatThreadsImageBuf, "-j",
778                        "-Ximage-compiler-option");
779
780    // The runtime will compile a boot image, when necessary, not using installd. Thus, we need to
781    // pass the instruction-set-features/variant as an image-compiler-option.
782    // TODO: Find a better way for the instruction-set.
783#if defined(__arm__)
784    constexpr const char* instruction_set = "arm";
785#elif defined(__aarch64__)
786    constexpr const char* instruction_set = "arm64";
787#elif defined(__mips__) && !defined(__LP64__)
788    constexpr const char* instruction_set = "mips";
789#elif defined(__mips__) && defined(__LP64__)
790    constexpr const char* instruction_set = "mips64";
791#elif defined(__i386__)
792    constexpr const char* instruction_set = "x86";
793#elif defined(__x86_64__)
794    constexpr const char* instruction_set = "x86_64";
795#else
796    constexpr const char* instruction_set = "unknown";
797#endif
798    // Note: it is OK to reuse the buffer, as the values are exactly the same between
799    //       * compiler-option, used for runtime compilation (DexClassLoader)
800    //       * image-compiler-option, used for boot-image compilation on device
801
802    // Copy the variant.
803    sprintf(dex2oat_isa_variant_key, "dalvik.vm.isa.%s.variant", instruction_set);
804    parseCompilerOption(dex2oat_isa_variant_key, dex2oat_isa_variant,
805                        "--instruction-set-variant=", "-Ximage-compiler-option");
806    parseCompilerOption(dex2oat_isa_variant_key, dex2oat_isa_variant,
807                        "--instruction-set-variant=", "-Xcompiler-option");
808    // Copy the features.
809    sprintf(dex2oat_isa_features_key, "dalvik.vm.isa.%s.features", instruction_set);
810    parseCompilerOption(dex2oat_isa_features_key, dex2oat_isa_features,
811                        "--instruction-set-features=", "-Ximage-compiler-option");
812    parseCompilerOption(dex2oat_isa_features_key, dex2oat_isa_features,
813                        "--instruction-set-features=", "-Xcompiler-option");
814
815
816    property_get("dalvik.vm.dex2oat-flags", dex2oatFlagsBuf, "");
817    parseExtraOpts(dex2oatFlagsBuf, "-Xcompiler-option");
818
819    /* extra options; parse this late so it overrides others */
820    property_get("dalvik.vm.extra-opts", extraOptsBuf, "");
821    parseExtraOpts(extraOptsBuf, NULL);
822
823    /* Set the properties for locale */
824    {
825        strcpy(localeOption, "-Duser.locale=");
826        const std::string locale = readLocale();
827        strncat(localeOption, locale.c_str(), PROPERTY_VALUE_MAX);
828        addOption(localeOption);
829    }
830
831    /*
832     * Set profiler options
833     */
834    // Whether or not the profiler should be enabled.
835    property_get("dalvik.vm.profiler", propBuf, "0");
836    if (propBuf[0] == '1') {
837        addOption("-Xenable-profiler");
838    }
839
840    // Whether the profile should start upon app startup or be delayed by some random offset
841    // (in seconds) that is bound between 0 and a fixed value.
842    property_get("dalvik.vm.profile.start-immed", propBuf, "0");
843    if (propBuf[0] == '1') {
844        addOption("-Xprofile-start-immediately");
845    }
846
847    // Number of seconds during profile runs.
848    parseRuntimeOption("dalvik.vm.profile.period-secs", profilePeriod, "-Xprofile-period:");
849
850    // Length of each profile run (seconds).
851    parseRuntimeOption("dalvik.vm.profile.duration-secs",
852                       profileDuration,
853                       "-Xprofile-duration:");
854
855    // Polling interval during profile run (microseconds).
856    parseRuntimeOption("dalvik.vm.profile.interval-us", profileInterval, "-Xprofile-interval:");
857
858    // Coefficient for period backoff.  The the period is multiplied
859    // by this value after each profile run.
860    parseRuntimeOption("dalvik.vm.profile.backoff-coeff", profileBackoff, "-Xprofile-backoff:");
861
862    // Top K% of samples that are considered relevant when
863    // deciding if the app should be recompiled.
864    parseRuntimeOption("dalvik.vm.profile.top-k-thr",
865                       profileTopKThreshold,
866                       "-Xprofile-top-k-threshold:");
867
868    // The threshold after which a change in the structure of the
869    // top K% profiled samples becomes significant and triggers
870    // recompilation. A change in profile is considered
871    // significant if X% (top-k-change-threshold) of the top K%
872    // (top-k-threshold property) samples has changed.
873    parseRuntimeOption("dalvik.vm.profile.top-k-ch-thr",
874                       profileTopKChangeThreshold,
875                       "-Xprofile-top-k-change-threshold:");
876
877    // Type of profile data.
878    parseRuntimeOption("dalvik.vm.profiler.type", profileType, "-Xprofile-type:");
879
880    // Depth of bounded stack data
881    parseRuntimeOption("dalvik.vm.profile.stack-depth",
882                       profileMaxStackDepth,
883                       "-Xprofile-max-stack-depth:");
884
885    /*
886     * Tracing options.
887     */
888    property_get("dalvik.vm.method-trace", propBuf, "false");
889    if (strcmp(propBuf, "true") == 0) {
890        addOption("-Xmethod-trace");
891        parseRuntimeOption("dalvik.vm.method-trace-file",
892                           methodTraceFileBuf,
893                           "-Xmethod-trace-file:");
894        parseRuntimeOption("dalvik.vm.method-trace-file-siz",
895                           methodTraceFileSizeBuf,
896                           "-Xmethod-trace-file-size:");
897        property_get("dalvik.vm.method-trace-stream", propBuf, "false");
898        if (strcmp(propBuf, "true") == 0) {
899            addOption("-Xmethod-trace-stream");
900        }
901    }
902
903    // Native bridge library. "0" means that native bridge is disabled.
904    property_get("ro.dalvik.vm.native.bridge", propBuf, "");
905    if (propBuf[0] == '\0') {
906        ALOGW("ro.dalvik.vm.native.bridge is not expected to be empty");
907    } else if (strcmp(propBuf, "0") != 0) {
908        snprintf(nativeBridgeLibrary, sizeof("-XX:NativeBridge=") + PROPERTY_VALUE_MAX,
909                 "-XX:NativeBridge=%s", propBuf);
910        addOption(nativeBridgeLibrary);
911    }
912
913#if defined(__LP64__)
914    const char* cpu_abilist_property_name = "ro.product.cpu.abilist64";
915#else
916    const char* cpu_abilist_property_name = "ro.product.cpu.abilist32";
917#endif  // defined(__LP64__)
918    property_get(cpu_abilist_property_name, propBuf, "");
919    if (propBuf[0] == '\0') {
920        ALOGE("%s is not expected to be empty", cpu_abilist_property_name);
921        return -1;
922    }
923    snprintf(cpuAbiListBuf, sizeof(cpuAbiListBuf), "--cpu-abilist=%s", propBuf);
924    addOption(cpuAbiListBuf);
925
926    // Dalvik-cache pruning counter.
927    parseRuntimeOption("dalvik.vm.zygote.max-boot-retry", cachePruneBuf,
928                       "-Xzygote-max-boot-retry=");
929
930    /*
931     * When running with debug.generate-debug-info, add --generate-debug-info to
932     * the compiler options so that the boot image, if it is compiled on device,
933     * will include native debugging information.
934     */
935    property_get("debug.generate-debug-info", propBuf, "");
936    if (strcmp(propBuf, "true") == 0) {
937        addOption("-Xcompiler-option");
938        addOption("--generate-debug-info");
939        addOption("-Ximage-compiler-option");
940        addOption("--generate-debug-info");
941    }
942
943    /*
944     * Retrieve the build fingerprint and provide it to the runtime. That way, ANR dumps will
945     * contain the fingerprint and can be parsed.
946     */
947    parseRuntimeOption("ro.build.fingerprint", fingerprintBuf, "-Xfingerprint:");
948
949    initArgs.version = JNI_VERSION_1_4;
950    initArgs.options = mOptions.editArray();
951    initArgs.nOptions = mOptions.size();
952    initArgs.ignoreUnrecognized = JNI_FALSE;
953
954    /*
955     * Initialize the VM.
956     *
957     * The JavaVM* is essentially per-process, and the JNIEnv* is per-thread.
958     * If this call succeeds, the VM is ready, and we can start issuing
959     * JNI calls.
960     */
961    if (JNI_CreateJavaVM(pJavaVM, pEnv, &initArgs) < 0) {
962        ALOGE("JNI_CreateJavaVM failed\n");
963        return -1;
964    }
965
966    return 0;
967}
968
969char* AndroidRuntime::toSlashClassName(const char* className)
970{
971    char* result = strdup(className);
972    for (char* cp = result; *cp != '\0'; cp++) {
973        if (*cp == '.') {
974            *cp = '/';
975        }
976    }
977    return result;
978}
979
980/** Create a Java string from an ASCII or Latin-1 string */
981jstring AndroidRuntime::NewStringLatin1(JNIEnv* env, const char* bytes) {
982    if (!bytes) return NULL;
983    int length = strlen(bytes);
984    jchar* buffer = (jchar *)alloca(length * sizeof(jchar));
985    if (!buffer) return NULL;
986    jchar* chp = buffer;
987    for (int i = 0; i < length; i++) {
988        *chp++ = *bytes++;
989    }
990    return env->NewString(buffer, length);
991}
992
993
994/*
995 * Start the Android runtime.  This involves starting the virtual machine
996 * and calling the "static void main(String[] args)" method in the class
997 * named by "className".
998 *
999 * Passes the main function two arguments, the class name and the specified
1000 * options string.
1001 */
1002void AndroidRuntime::start(const char* className, const Vector<String8>& options)
1003{
1004    ALOGD(">>>>>> START %s uid %d <<<<<<\n",
1005            className != NULL ? className : "(unknown)", getuid());
1006
1007    static const String8 startSystemServer("start-system-server");
1008
1009    /*
1010     * 'startSystemServer == true' means runtime is obsolete and not run from
1011     * init.rc anymore, so we print out the boot start event here.
1012     */
1013    for (size_t i = 0; i < options.size(); ++i) {
1014        if (options[i] == startSystemServer) {
1015           /* track our progress through the boot sequence */
1016           const int LOG_BOOT_PROGRESS_START = 3000;
1017           LOG_EVENT_LONG(LOG_BOOT_PROGRESS_START,  ns2ms(systemTime(SYSTEM_TIME_MONOTONIC)));
1018        }
1019    }
1020
1021    const char* rootDir = getenv("ANDROID_ROOT");
1022    if (rootDir == NULL) {
1023        rootDir = "/system";
1024        if (!hasDir("/system")) {
1025            LOG_FATAL("No root directory specified, and /android does not exist.");
1026            return;
1027        }
1028        setenv("ANDROID_ROOT", rootDir, 1);
1029    }
1030
1031    //const char* kernelHack = getenv("LD_ASSUME_KERNEL");
1032    //ALOGD("Found LD_ASSUME_KERNEL='%s'\n", kernelHack);
1033
1034    /* start the virtual machine */
1035    JniInvocation jni_invocation;
1036    jni_invocation.Init(NULL);
1037    JNIEnv* env;
1038    if (startVm(&mJavaVM, &env) != 0) {
1039        return;
1040    }
1041    onVmCreated(env);
1042
1043    /*
1044     * Register android functions.
1045     */
1046    if (startReg(env) < 0) {
1047        ALOGE("Unable to register all android natives\n");
1048        return;
1049    }
1050
1051    /*
1052     * We want to call main() with a String array with arguments in it.
1053     * At present we have two arguments, the class name and an option string.
1054     * Create an array to hold them.
1055     */
1056    jclass stringClass;
1057    jobjectArray strArray;
1058    jstring classNameStr;
1059
1060    stringClass = env->FindClass("java/lang/String");
1061    assert(stringClass != NULL);
1062    strArray = env->NewObjectArray(options.size() + 1, stringClass, NULL);
1063    assert(strArray != NULL);
1064    classNameStr = env->NewStringUTF(className);
1065    assert(classNameStr != NULL);
1066    env->SetObjectArrayElement(strArray, 0, classNameStr);
1067
1068    for (size_t i = 0; i < options.size(); ++i) {
1069        jstring optionsStr = env->NewStringUTF(options.itemAt(i).string());
1070        assert(optionsStr != NULL);
1071        env->SetObjectArrayElement(strArray, i + 1, optionsStr);
1072    }
1073
1074    /*
1075     * Start VM.  This thread becomes the main thread of the VM, and will
1076     * not return until the VM exits.
1077     */
1078    char* slashClassName = toSlashClassName(className);
1079    jclass startClass = env->FindClass(slashClassName);
1080    if (startClass == NULL) {
1081        ALOGE("JavaVM unable to locate class '%s'\n", slashClassName);
1082        /* keep going */
1083    } else {
1084        jmethodID startMeth = env->GetStaticMethodID(startClass, "main",
1085            "([Ljava/lang/String;)V");
1086        if (startMeth == NULL) {
1087            ALOGE("JavaVM unable to find main() in '%s'\n", className);
1088            /* keep going */
1089        } else {
1090            env->CallStaticVoidMethod(startClass, startMeth, strArray);
1091
1092#if 0
1093            if (env->ExceptionCheck())
1094                threadExitUncaughtException(env);
1095#endif
1096        }
1097    }
1098    free(slashClassName);
1099
1100    ALOGD("Shutting down VM\n");
1101    if (mJavaVM->DetachCurrentThread() != JNI_OK)
1102        ALOGW("Warning: unable to detach main thread\n");
1103    if (mJavaVM->DestroyJavaVM() != 0)
1104        ALOGW("Warning: VM did not shut down cleanly\n");
1105}
1106
1107void AndroidRuntime::exit(int code)
1108{
1109    if (mExitWithoutCleanup) {
1110        ALOGI("VM exiting with result code %d, cleanup skipped.", code);
1111        ::_exit(code);
1112    } else {
1113        ALOGI("VM exiting with result code %d.", code);
1114        onExit(code);
1115        ::exit(code);
1116    }
1117}
1118
1119void AndroidRuntime::onVmCreated(JNIEnv* env)
1120{
1121    // If AndroidRuntime had anything to do here, we'd have done it in 'start'.
1122}
1123
1124/*
1125 * Get the JNIEnv pointer for this thread.
1126 *
1127 * Returns NULL if the slot wasn't allocated or populated.
1128 */
1129/*static*/ JNIEnv* AndroidRuntime::getJNIEnv()
1130{
1131    JNIEnv* env;
1132    JavaVM* vm = AndroidRuntime::getJavaVM();
1133    assert(vm != NULL);
1134
1135    if (vm->GetEnv((void**) &env, JNI_VERSION_1_4) != JNI_OK)
1136        return NULL;
1137    return env;
1138}
1139
1140/*
1141 * Makes the current thread visible to the VM.
1142 *
1143 * The JNIEnv pointer returned is only valid for the current thread, and
1144 * thus must be tucked into thread-local storage.
1145 */
1146static int javaAttachThread(const char* threadName, JNIEnv** pEnv)
1147{
1148    JavaVMAttachArgs args;
1149    JavaVM* vm;
1150    jint result;
1151
1152    vm = AndroidRuntime::getJavaVM();
1153    assert(vm != NULL);
1154
1155    args.version = JNI_VERSION_1_4;
1156    args.name = (char*) threadName;
1157    args.group = NULL;
1158
1159    result = vm->AttachCurrentThread(pEnv, (void*) &args);
1160    if (result != JNI_OK)
1161        ALOGI("NOTE: attach of thread '%s' failed\n", threadName);
1162
1163    return result;
1164}
1165
1166/*
1167 * Detach the current thread from the set visible to the VM.
1168 */
1169static int javaDetachThread(void)
1170{
1171    JavaVM* vm;
1172    jint result;
1173
1174    vm = AndroidRuntime::getJavaVM();
1175    assert(vm != NULL);
1176
1177    result = vm->DetachCurrentThread();
1178    if (result != JNI_OK)
1179        ALOGE("ERROR: thread detach failed\n");
1180    return result;
1181}
1182
1183/*
1184 * When starting a native thread that will be visible from the VM, we
1185 * bounce through this to get the right attach/detach action.
1186 * Note that this function calls free(args)
1187 */
1188/*static*/ int AndroidRuntime::javaThreadShell(void* args) {
1189    void* start = ((void**)args)[0];
1190    void* userData = ((void **)args)[1];
1191    char* name = (char*) ((void **)args)[2];        // we own this storage
1192    free(args);
1193    JNIEnv* env;
1194    int result;
1195
1196    /* hook us into the VM */
1197    if (javaAttachThread(name, &env) != JNI_OK)
1198        return -1;
1199
1200    /* start the thread running */
1201    result = (*(android_thread_func_t)start)(userData);
1202
1203    /* unhook us */
1204    javaDetachThread();
1205    free(name);
1206
1207    return result;
1208}
1209
1210/*
1211 * This is invoked from androidCreateThreadEtc() via the callback
1212 * set with androidSetCreateThreadFunc().
1213 *
1214 * We need to create the new thread in such a way that it gets hooked
1215 * into the VM before it really starts executing.
1216 */
1217/*static*/ int AndroidRuntime::javaCreateThreadEtc(
1218                                android_thread_func_t entryFunction,
1219                                void* userData,
1220                                const char* threadName,
1221                                int32_t threadPriority,
1222                                size_t threadStackSize,
1223                                android_thread_id_t* threadId)
1224{
1225    void** args = (void**) malloc(3 * sizeof(void*));   // javaThreadShell must free
1226    int result;
1227
1228    if (!threadName)
1229        threadName = "unnamed thread";
1230
1231    args[0] = (void*) entryFunction;
1232    args[1] = userData;
1233    args[2] = (void*) strdup(threadName);   // javaThreadShell must free
1234
1235    result = androidCreateRawThreadEtc(AndroidRuntime::javaThreadShell, args,
1236        threadName, threadPriority, threadStackSize, threadId);
1237    return result;
1238}
1239
1240/*
1241 * Create a thread that is visible from the VM.
1242 *
1243 * This is called from elsewhere in the library.
1244 */
1245/*static*/ android_thread_id_t AndroidRuntime::createJavaThread(const char* name,
1246    void (*start)(void *), void* arg)
1247{
1248    android_thread_id_t threadId = 0;
1249    javaCreateThreadEtc((android_thread_func_t) start, arg, name,
1250        ANDROID_PRIORITY_DEFAULT, 0, &threadId);
1251    return threadId;
1252}
1253
1254#if 0
1255static void quickTest(void* arg)
1256{
1257    const char* str = (const char*) arg;
1258
1259    printf("In quickTest: %s\n", str);
1260}
1261#endif
1262
1263#ifdef NDEBUG
1264    #define REG_JNI(name)      { name }
1265    struct RegJNIRec {
1266        int (*mProc)(JNIEnv*);
1267    };
1268#else
1269    #define REG_JNI(name)      { name, #name }
1270    struct RegJNIRec {
1271        int (*mProc)(JNIEnv*);
1272        const char* mName;
1273    };
1274#endif
1275
1276typedef void (*RegJAMProc)();
1277
1278static int register_jni_procs(const RegJNIRec array[], size_t count, JNIEnv* env)
1279{
1280    for (size_t i = 0; i < count; i++) {
1281        if (array[i].mProc(env) < 0) {
1282#ifndef NDEBUG
1283            ALOGD("----------!!! %s failed to load\n", array[i].mName);
1284#endif
1285            return -1;
1286        }
1287    }
1288    return 0;
1289}
1290
1291static const RegJNIRec gRegJNI[] = {
1292    REG_JNI(register_com_android_internal_os_RuntimeInit),
1293    REG_JNI(register_android_os_SystemClock),
1294    REG_JNI(register_android_util_EventLog),
1295    REG_JNI(register_android_util_Log),
1296    REG_JNI(register_android_content_AssetManager),
1297    REG_JNI(register_android_content_StringBlock),
1298    REG_JNI(register_android_content_XmlBlock),
1299    REG_JNI(register_android_text_AndroidCharacter),
1300    REG_JNI(register_android_text_StaticLayout),
1301    REG_JNI(register_android_text_AndroidBidi),
1302    REG_JNI(register_android_view_InputDevice),
1303    REG_JNI(register_android_view_KeyCharacterMap),
1304    REG_JNI(register_android_os_Process),
1305    REG_JNI(register_android_os_SystemProperties),
1306    REG_JNI(register_android_os_Binder),
1307    REG_JNI(register_android_os_Parcel),
1308    REG_JNI(register_android_nio_utils),
1309    REG_JNI(register_android_graphics_Graphics),
1310    REG_JNI(register_android_view_DisplayEventReceiver),
1311    REG_JNI(register_android_view_RenderNode),
1312    REG_JNI(register_android_view_RenderNodeAnimator),
1313    REG_JNI(register_android_view_GraphicBuffer),
1314    REG_JNI(register_android_view_DisplayListCanvas),
1315    REG_JNI(register_android_view_HardwareLayer),
1316    REG_JNI(register_android_view_ThreadedRenderer),
1317    REG_JNI(register_android_view_Surface),
1318    REG_JNI(register_android_view_SurfaceControl),
1319    REG_JNI(register_android_view_SurfaceSession),
1320    REG_JNI(register_android_view_TextureView),
1321    REG_JNI(register_com_android_internal_view_animation_NativeInterpolatorFactoryHelper),
1322    REG_JNI(register_com_google_android_gles_jni_EGLImpl),
1323    REG_JNI(register_com_google_android_gles_jni_GLImpl),
1324    REG_JNI(register_android_opengl_jni_EGL14),
1325    REG_JNI(register_android_opengl_jni_EGLExt),
1326    REG_JNI(register_android_opengl_jni_GLES10),
1327    REG_JNI(register_android_opengl_jni_GLES10Ext),
1328    REG_JNI(register_android_opengl_jni_GLES11),
1329    REG_JNI(register_android_opengl_jni_GLES11Ext),
1330    REG_JNI(register_android_opengl_jni_GLES20),
1331    REG_JNI(register_android_opengl_jni_GLES30),
1332    REG_JNI(register_android_opengl_jni_GLES31),
1333    REG_JNI(register_android_opengl_jni_GLES31Ext),
1334
1335    REG_JNI(register_android_graphics_Bitmap),
1336    REG_JNI(register_android_graphics_BitmapFactory),
1337    REG_JNI(register_android_graphics_BitmapRegionDecoder),
1338    REG_JNI(register_android_graphics_Camera),
1339    REG_JNI(register_android_graphics_CreateJavaOutputStreamAdaptor),
1340    REG_JNI(register_android_graphics_Canvas),
1341    REG_JNI(register_android_graphics_CanvasProperty),
1342    REG_JNI(register_android_graphics_ColorFilter),
1343    REG_JNI(register_android_graphics_DrawFilter),
1344    REG_JNI(register_android_graphics_FontFamily),
1345    REG_JNI(register_android_graphics_Interpolator),
1346    REG_JNI(register_android_graphics_LayerRasterizer),
1347    REG_JNI(register_android_graphics_MaskFilter),
1348    REG_JNI(register_android_graphics_Matrix),
1349    REG_JNI(register_android_graphics_Movie),
1350    REG_JNI(register_android_graphics_NinePatch),
1351    REG_JNI(register_android_graphics_Paint),
1352    REG_JNI(register_android_graphics_Path),
1353    REG_JNI(register_android_graphics_PathMeasure),
1354    REG_JNI(register_android_graphics_PathEffect),
1355    REG_JNI(register_android_graphics_Picture),
1356    REG_JNI(register_android_graphics_PorterDuff),
1357    REG_JNI(register_android_graphics_Rasterizer),
1358    REG_JNI(register_android_graphics_Region),
1359    REG_JNI(register_android_graphics_Shader),
1360    REG_JNI(register_android_graphics_SurfaceTexture),
1361    REG_JNI(register_android_graphics_Typeface),
1362    REG_JNI(register_android_graphics_Xfermode),
1363    REG_JNI(register_android_graphics_YuvImage),
1364    REG_JNI(register_android_graphics_pdf_PdfDocument),
1365    REG_JNI(register_android_graphics_pdf_PdfEditor),
1366    REG_JNI(register_android_graphics_pdf_PdfRenderer),
1367
1368    REG_JNI(register_android_database_CursorWindow),
1369    REG_JNI(register_android_database_SQLiteConnection),
1370    REG_JNI(register_android_database_SQLiteGlobal),
1371    REG_JNI(register_android_database_SQLiteDebug),
1372    REG_JNI(register_android_os_Debug),
1373    REG_JNI(register_android_os_FileObserver),
1374    REG_JNI(register_android_os_MessageQueue),
1375    REG_JNI(register_android_os_SELinux),
1376    REG_JNI(register_android_os_Trace),
1377    REG_JNI(register_android_os_UEventObserver),
1378    REG_JNI(register_android_net_LocalSocketImpl),
1379    REG_JNI(register_android_net_NetworkUtils),
1380    REG_JNI(register_android_net_TrafficStats),
1381    REG_JNI(register_android_os_MemoryFile),
1382    REG_JNI(register_com_android_internal_os_Zygote),
1383    REG_JNI(register_com_android_internal_util_VirtualRefBasePtr),
1384    REG_JNI(register_android_hardware_Camera),
1385    REG_JNI(register_android_hardware_camera2_CameraMetadata),
1386    REG_JNI(register_android_hardware_camera2_legacy_LegacyCameraDevice),
1387    REG_JNI(register_android_hardware_camera2_legacy_PerfMeasurement),
1388    REG_JNI(register_android_hardware_camera2_DngCreator),
1389    REG_JNI(register_android_hardware_Radio),
1390    REG_JNI(register_android_hardware_SensorManager),
1391    REG_JNI(register_android_hardware_SerialPort),
1392    REG_JNI(register_android_hardware_SoundTrigger),
1393    REG_JNI(register_android_hardware_UsbDevice),
1394    REG_JNI(register_android_hardware_UsbDeviceConnection),
1395    REG_JNI(register_android_hardware_UsbRequest),
1396    REG_JNI(register_android_hardware_location_ActivityRecognitionHardware),
1397    REG_JNI(register_android_media_AudioRecord),
1398    REG_JNI(register_android_media_AudioSystem),
1399    REG_JNI(register_android_media_AudioTrack),
1400    REG_JNI(register_android_media_JetPlayer),
1401    REG_JNI(register_android_media_RemoteDisplay),
1402    REG_JNI(register_android_media_ToneGenerator),
1403
1404    REG_JNI(register_android_opengl_classes),
1405    REG_JNI(register_android_server_NetworkManagementSocketTagger),
1406    REG_JNI(register_android_ddm_DdmHandleNativeHeap),
1407    REG_JNI(register_android_backup_BackupDataInput),
1408    REG_JNI(register_android_backup_BackupDataOutput),
1409    REG_JNI(register_android_backup_FileBackupHelperBase),
1410    REG_JNI(register_android_backup_BackupHelperDispatcher),
1411    REG_JNI(register_android_app_backup_FullBackup),
1412    REG_JNI(register_android_app_ActivityThread),
1413    REG_JNI(register_android_app_NativeActivity),
1414    REG_JNI(register_android_view_InputChannel),
1415    REG_JNI(register_android_view_InputEventReceiver),
1416    REG_JNI(register_android_view_InputEventSender),
1417    REG_JNI(register_android_view_InputQueue),
1418    REG_JNI(register_android_view_KeyEvent),
1419    REG_JNI(register_android_view_MotionEvent),
1420    REG_JNI(register_android_view_PointerIcon),
1421    REG_JNI(register_android_view_VelocityTracker),
1422
1423    REG_JNI(register_android_content_res_ObbScanner),
1424    REG_JNI(register_android_content_res_Configuration),
1425
1426    REG_JNI(register_android_animation_PropertyValuesHolder),
1427    REG_JNI(register_com_android_internal_content_NativeLibraryHelper),
1428    REG_JNI(register_com_android_internal_net_NetworkStatsFactory),
1429};
1430
1431/*
1432 * Register android native functions with the VM.
1433 */
1434/*static*/ int AndroidRuntime::startReg(JNIEnv* env)
1435{
1436    /*
1437     * This hook causes all future threads created in this process to be
1438     * attached to the JavaVM.  (This needs to go away in favor of JNI
1439     * Attach calls.)
1440     */
1441    androidSetCreateThreadFunc((android_create_thread_fn) javaCreateThreadEtc);
1442
1443    ALOGV("--- registering native functions ---\n");
1444
1445    /*
1446     * Every "register" function calls one or more things that return
1447     * a local reference (e.g. FindClass).  Because we haven't really
1448     * started the VM yet, they're all getting stored in the base frame
1449     * and never released.  Use Push/Pop to manage the storage.
1450     */
1451    env->PushLocalFrame(200);
1452
1453    if (register_jni_procs(gRegJNI, NELEM(gRegJNI), env) < 0) {
1454        env->PopLocalFrame(NULL);
1455        return -1;
1456    }
1457    env->PopLocalFrame(NULL);
1458
1459    //createJavaThread("fubar", quickTest, (void*) "hello");
1460
1461    return 0;
1462}
1463
1464AndroidRuntime* AndroidRuntime::getRuntime()
1465{
1466    return gCurRuntime;
1467}
1468
1469/**
1470 * Used by surface flinger's DdmConnection to register native methods from
1471 * the framework.
1472 */
1473extern "C" jint registerFrameworkNatives(JNIEnv* env) {
1474    return register_jni_procs(gRegJNI, NELEM(gRegJNI), env);
1475}
1476}   // namespace android
1477