blob: e8e2050f5620b1122418f86993698fdc62a21f14 [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 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 */
Carl Shapiro6b6b5f02011-06-21 15:05:09 -070016
Carl Shapiro2ed144c2011-07-26 16:52:08 -070017#include <signal.h>
Elliott Hughes90a33692011-08-30 13:27:07 -070018
19#include <algorithm>
20#include <cstdio>
21#include <cstring>
Carl Shapiro2ed144c2011-07-26 16:52:08 -070022#include <string>
Carl Shapiro7b216702011-06-17 15:09:26 -070023
Carl Shapiro2ed144c2011-07-26 16:52:08 -070024#include "jni.h"
25#include "logging.h"
Jesse Wilson95caa792011-10-12 18:14:17 -040026#include "object.h"
Elliott Hugheseac76672012-05-24 21:56:51 -070027#include "ScopedLocalRef.h"
28#include "toStringArray.h"
29#include "UniquePtr.h"
30#include "well_known_classes.h"
Carl Shapiro2ed144c2011-07-26 16:52:08 -070031
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080032namespace art {
33
Carl Shapiro2ed144c2011-07-26 16:52:08 -070034// Determine whether or not the specified method is public.
Elliott Hughese84278b2012-03-22 10:06:53 -070035static bool IsMethodPublic(JNIEnv* env, jclass c, jmethodID method_id) {
36 ScopedLocalRef<jobject> reflected(env, env->ToReflectedMethod(c, method_id, JNI_FALSE));
Carl Shapiro2ed144c2011-07-26 16:52:08 -070037 if (reflected.get() == NULL) {
Brian Carlstrom3320cf42011-10-04 14:58:28 -070038 fprintf(stderr, "Failed to get reflected method\n");
Carl Shapiro2ed144c2011-07-26 16:52:08 -070039 return false;
40 }
41 // We now have a Method instance. We need to call its
42 // getModifiers() method.
Elliott Hugheseac76672012-05-24 21:56:51 -070043 jmethodID mid = env->GetMethodID(WellKnownClasses::java_lang_reflect_Method, "getModifiers", "()I");
44 if (mid == NULL) {
45 fprintf(stderr, "Failed to find java.lang.reflect.Method.getModifiers\n");
Carl Shapiro2ed144c2011-07-26 16:52:08 -070046 return false;
47 }
Elliott Hugheseac76672012-05-24 21:56:51 -070048 int modifiers = env->CallIntMethod(reflected.get(), mid);
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080049 if ((modifiers & kAccPublic) == 0) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -070050 return false;
51 }
52 return true;
53}
54
Elliott Hughes1bac54f2012-03-16 12:48:31 -070055static int InvokeMain(JNIEnv* env, char** argv) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -070056 // We want to call main() with a String array with our arguments in
57 // it. Create an array and populate it. Note argv[0] is not
58 // included.
Elliott Hughes0a96fe02011-08-19 10:22:04 -070059 ScopedLocalRef<jobjectArray> args(env, toStringArray(env, argv + 1));
Carl Shapiro2ed144c2011-07-26 16:52:08 -070060 if (args.get() == NULL) {
Elliott Hughesd6fe38d2011-10-02 11:14:43 -070061 env->ExceptionDescribe();
62 return EXIT_FAILURE;
Carl Shapiro2ed144c2011-07-26 16:52:08 -070063 }
64
65 // Find [class].main(String[]).
66
67 // Convert "com.android.Blah" to "com/android/Blah".
Elliott Hughese5b0dc82011-08-23 09:59:02 -070068 std::string class_name(argv[0]);
Carl Shapiro2ed144c2011-07-26 16:52:08 -070069 std::replace(class_name.begin(), class_name.end(), '.', '/');
70
Elliott Hughes0dab4ec2011-08-11 12:19:32 -070071 ScopedLocalRef<jclass> klass(env, env->FindClass(class_name.c_str()));
Carl Shapiro2ed144c2011-07-26 16:52:08 -070072 if (klass.get() == NULL) {
73 fprintf(stderr, "Unable to locate class '%s'\n", class_name.c_str());
Elliott Hughesd6fe38d2011-10-02 11:14:43 -070074 env->ExceptionDescribe();
75 return EXIT_FAILURE;
Carl Shapiro2ed144c2011-07-26 16:52:08 -070076 }
77
Elliott Hughesd6fe38d2011-10-02 11:14:43 -070078 jmethodID method = env->GetStaticMethodID(klass.get(), "main", "([Ljava/lang/String;)V");
Carl Shapiro2ed144c2011-07-26 16:52:08 -070079 if (method == NULL) {
Elliott Hughesd6fe38d2011-10-02 11:14:43 -070080 fprintf(stderr, "Unable to find static main(String[]) in '%s'\n", class_name.c_str());
81 env->ExceptionDescribe();
82 return EXIT_FAILURE;
Carl Shapiro2ed144c2011-07-26 16:52:08 -070083 }
84
85 // Make sure the method is public. JNI doesn't prevent us from
86 // calling a private method, so we have to check it explicitly.
87 if (!IsMethodPublic(env, klass.get(), method)) {
Elliott Hughesd6fe38d2011-10-02 11:14:43 -070088 fprintf(stderr, "Sorry, main() is not public in '%s'\n", class_name.c_str());
89 env->ExceptionDescribe();
90 return EXIT_FAILURE;
Carl Shapiro2ed144c2011-07-26 16:52:08 -070091 }
92
93 // Invoke main().
Carl Shapiro2ed144c2011-07-26 16:52:08 -070094 env->CallStaticVoidMethod(klass.get(), method, args.get());
Elliott Hughes0c8c6732011-10-02 16:14:13 -070095
96 // Check whether there was an uncaught exception. We don't log any uncaught exception here;
97 // detaching this thread will do that for us, but it will clear the exception (and invalidate
98 // our JNIEnv), so we need to check here.
99 return env->ExceptionCheck() ? EXIT_FAILURE : EXIT_SUCCESS;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700100}
101
Elliott Hughes81ff3182012-03-23 20:35:56 -0700102// Parse arguments. Most of it just gets passed through to the runtime.
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700103// The JNI spec defines a handful of standard arguments.
Elliott Hughes72395bf2012-04-24 13:45:26 -0700104static int oatexec(int argc, char** argv) {
105 InitLogging();
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700106 setvbuf(stdout, NULL, _IONBF, 0);
107
108 // Skip over argv[0].
109 argv++;
110 argc--;
111
112 // If we're adding any additional stuff, e.g. function hook specifiers,
113 // add them to the count here.
114 //
Elliott Hughes81ff3182012-03-23 20:35:56 -0700115 // We're over-allocating, because this includes the options to the runtime
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700116 // plus the options to the program.
117 int option_count = argc;
Elliott Hughes90a33692011-08-30 13:27:07 -0700118 UniquePtr<JavaVMOption[]> options(new JavaVMOption[option_count]());
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700119
120 // Copy options over. Everything up to the name of the class starts
121 // with a '-' (the function hook stuff is strictly internal).
122 //
123 // [Do we need to catch & handle "-jar" here?]
124 bool need_extra = false;
Elliott Hughes81ff3182012-03-23 20:35:56 -0700125 const char* what = NULL;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700126 int curr_opt, arg_idx;
127 for (curr_opt = arg_idx = 0; arg_idx < argc; arg_idx++) {
128 if (argv[arg_idx][0] != '-' && !need_extra) {
129 break;
130 }
131 options[curr_opt++].optionString = argv[arg_idx];
132
133 // Some options require an additional argument.
134 need_extra = false;
Elliott Hughesd6fe38d2011-10-02 11:14:43 -0700135 if (strcmp(argv[arg_idx], "-classpath") == 0 || strcmp(argv[arg_idx], "-cp") == 0) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700136 need_extra = true;
Elliott Hughes81ff3182012-03-23 20:35:56 -0700137 what = argv[arg_idx];
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700138 }
139 }
140
141 if (need_extra) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700142 fprintf(stderr, "%s must be followed by an additional argument giving a value\n", what);
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700143 return EXIT_FAILURE;
144 }
145
Elliott Hughes81ff3182012-03-23 20:35:56 -0700146 // Make sure they provided a class name.
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700147 if (arg_idx == argc) {
148 fprintf(stderr, "Class name required\n");
149 return EXIT_FAILURE;
150 }
151
152 // insert additional internal options here
153
154 DCHECK_LE(curr_opt, option_count);
155
156 JavaVMInitArgs init_args;
Elliott Hughesf2682d52011-08-15 16:37:04 -0700157 init_args.version = JNI_VERSION_1_6;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700158 init_args.options = options.get();
159 init_args.nOptions = curr_opt;
160 init_args.ignoreUnrecognized = JNI_FALSE;
161
Elliott Hughes81ff3182012-03-23 20:35:56 -0700162 // Start the runtime. The current thread becomes the main thread.
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700163 JavaVM* vm = NULL;
164 JNIEnv* env = NULL;
165 if (JNI_CreateJavaVM(&vm, &env, &init_args) != JNI_OK) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700166 fprintf(stderr, "runtime failed to initialize (check log for details)\n");
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700167 return EXIT_FAILURE;
168 }
169
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700170 int rc = InvokeMain(env, &argv[arg_idx]);
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700171
Elliott Hughes17057b12012-04-03 10:22:39 -0700172#if defined(NDEBUG)
173 // The DestroyJavaVM call will detach this thread for us. In debug builds, we don't want to
174 // detach because detaching disables the CheckSafeToLockOrUnlock checking.
Elliott Hughesf2682d52011-08-15 16:37:04 -0700175 if (vm->DetachCurrentThread() != JNI_OK) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700176 fprintf(stderr, "Warning: unable to detach main thread\n");
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700177 rc = EXIT_FAILURE;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700178 }
Elliott Hughes17057b12012-04-03 10:22:39 -0700179#endif
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700180
Elliott Hughesf2682d52011-08-15 16:37:04 -0700181 if (vm->DestroyJavaVM() != 0) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700182 fprintf(stderr, "Warning: runtime did not shut down cleanly\n");
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700183 rc = EXIT_FAILURE;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700184 }
185
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700186 return rc;
Carl Shapiro7b216702011-06-17 15:09:26 -0700187}
Elliott Hughes11d1b0c2012-01-23 16:57:47 -0800188
189} // namespace art
190
191int main(int argc, char** argv) {
192 return art::oatexec(argc, argv);
193}