blob: 8908abba79d6eacf75522e70f0f7616daaec293a [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.
Mathieu Chartier66f19252012-09-18 08:57:04 -070043 jmethodID mid = env->GetMethodID(WellKnownClasses::java_lang_reflect_AbstractMethod,
44 "getModifiers", "()I");
Elliott Hugheseac76672012-05-24 21:56:51 -070045 if (mid == NULL) {
46 fprintf(stderr, "Failed to find java.lang.reflect.Method.getModifiers\n");
Carl Shapiro2ed144c2011-07-26 16:52:08 -070047 return false;
48 }
Elliott Hugheseac76672012-05-24 21:56:51 -070049 int modifiers = env->CallIntMethod(reflected.get(), mid);
Elliott Hughes11d1b0c2012-01-23 16:57:47 -080050 if ((modifiers & kAccPublic) == 0) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -070051 return false;
52 }
53 return true;
54}
55
Elliott Hughes1bac54f2012-03-16 12:48:31 -070056static int InvokeMain(JNIEnv* env, char** argv) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -070057 // We want to call main() with a String array with our arguments in
58 // it. Create an array and populate it. Note argv[0] is not
59 // included.
Elliott Hughes0a96fe02011-08-19 10:22:04 -070060 ScopedLocalRef<jobjectArray> args(env, toStringArray(env, argv + 1));
Carl Shapiro2ed144c2011-07-26 16:52:08 -070061 if (args.get() == NULL) {
Elliott Hughesd6fe38d2011-10-02 11:14:43 -070062 env->ExceptionDescribe();
63 return EXIT_FAILURE;
Carl Shapiro2ed144c2011-07-26 16:52:08 -070064 }
65
66 // Find [class].main(String[]).
67
68 // Convert "com.android.Blah" to "com/android/Blah".
Elliott Hughese5b0dc82011-08-23 09:59:02 -070069 std::string class_name(argv[0]);
Carl Shapiro2ed144c2011-07-26 16:52:08 -070070 std::replace(class_name.begin(), class_name.end(), '.', '/');
71
Elliott Hughes0dab4ec2011-08-11 12:19:32 -070072 ScopedLocalRef<jclass> klass(env, env->FindClass(class_name.c_str()));
Carl Shapiro2ed144c2011-07-26 16:52:08 -070073 if (klass.get() == NULL) {
74 fprintf(stderr, "Unable to locate class '%s'\n", class_name.c_str());
Elliott Hughesd6fe38d2011-10-02 11:14:43 -070075 env->ExceptionDescribe();
76 return EXIT_FAILURE;
Carl Shapiro2ed144c2011-07-26 16:52:08 -070077 }
78
Elliott Hughesd6fe38d2011-10-02 11:14:43 -070079 jmethodID method = env->GetStaticMethodID(klass.get(), "main", "([Ljava/lang/String;)V");
Carl Shapiro2ed144c2011-07-26 16:52:08 -070080 if (method == NULL) {
Elliott Hughesd6fe38d2011-10-02 11:14:43 -070081 fprintf(stderr, "Unable to find static main(String[]) in '%s'\n", class_name.c_str());
82 env->ExceptionDescribe();
83 return EXIT_FAILURE;
Carl Shapiro2ed144c2011-07-26 16:52:08 -070084 }
85
86 // Make sure the method is public. JNI doesn't prevent us from
87 // calling a private method, so we have to check it explicitly.
88 if (!IsMethodPublic(env, klass.get(), method)) {
Elliott Hughesd6fe38d2011-10-02 11:14:43 -070089 fprintf(stderr, "Sorry, main() is not public in '%s'\n", class_name.c_str());
90 env->ExceptionDescribe();
91 return EXIT_FAILURE;
Carl Shapiro2ed144c2011-07-26 16:52:08 -070092 }
93
94 // Invoke main().
Carl Shapiro2ed144c2011-07-26 16:52:08 -070095 env->CallStaticVoidMethod(klass.get(), method, args.get());
Elliott Hughes0c8c6732011-10-02 16:14:13 -070096
97 // Check whether there was an uncaught exception. We don't log any uncaught exception here;
98 // detaching this thread will do that for us, but it will clear the exception (and invalidate
99 // our JNIEnv), so we need to check here.
100 return env->ExceptionCheck() ? EXIT_FAILURE : EXIT_SUCCESS;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700101}
102
Elliott Hughes81ff3182012-03-23 20:35:56 -0700103// Parse arguments. Most of it just gets passed through to the runtime.
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700104// The JNI spec defines a handful of standard arguments.
Elliott Hughes72395bf2012-04-24 13:45:26 -0700105static int oatexec(int argc, char** argv) {
Elliott Hughes0d39c122012-06-06 16:41:17 -0700106 InitLogging(argv);
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700107 setvbuf(stdout, NULL, _IONBF, 0);
108
109 // Skip over argv[0].
110 argv++;
111 argc--;
112
113 // If we're adding any additional stuff, e.g. function hook specifiers,
114 // add them to the count here.
115 //
Elliott Hughes81ff3182012-03-23 20:35:56 -0700116 // We're over-allocating, because this includes the options to the runtime
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700117 // plus the options to the program.
118 int option_count = argc;
Elliott Hughes90a33692011-08-30 13:27:07 -0700119 UniquePtr<JavaVMOption[]> options(new JavaVMOption[option_count]());
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700120
121 // Copy options over. Everything up to the name of the class starts
122 // with a '-' (the function hook stuff is strictly internal).
123 //
124 // [Do we need to catch & handle "-jar" here?]
125 bool need_extra = false;
Elliott Hughes81ff3182012-03-23 20:35:56 -0700126 const char* what = NULL;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700127 int curr_opt, arg_idx;
128 for (curr_opt = arg_idx = 0; arg_idx < argc; arg_idx++) {
129 if (argv[arg_idx][0] != '-' && !need_extra) {
130 break;
131 }
132 options[curr_opt++].optionString = argv[arg_idx];
133
134 // Some options require an additional argument.
135 need_extra = false;
Elliott Hughesd6fe38d2011-10-02 11:14:43 -0700136 if (strcmp(argv[arg_idx], "-classpath") == 0 || strcmp(argv[arg_idx], "-cp") == 0) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700137 need_extra = true;
Elliott Hughes81ff3182012-03-23 20:35:56 -0700138 what = argv[arg_idx];
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700139 }
140 }
141
142 if (need_extra) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700143 fprintf(stderr, "%s must be followed by an additional argument giving a value\n", what);
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700144 return EXIT_FAILURE;
145 }
146
Elliott Hughes81ff3182012-03-23 20:35:56 -0700147 // Make sure they provided a class name.
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700148 if (arg_idx == argc) {
149 fprintf(stderr, "Class name required\n");
150 return EXIT_FAILURE;
151 }
152
153 // insert additional internal options here
154
155 DCHECK_LE(curr_opt, option_count);
156
157 JavaVMInitArgs init_args;
Elliott Hughesf2682d52011-08-15 16:37:04 -0700158 init_args.version = JNI_VERSION_1_6;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700159 init_args.options = options.get();
160 init_args.nOptions = curr_opt;
161 init_args.ignoreUnrecognized = JNI_FALSE;
162
Elliott Hughes81ff3182012-03-23 20:35:56 -0700163 // Start the runtime. The current thread becomes the main thread.
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700164 JavaVM* vm = NULL;
165 JNIEnv* env = NULL;
166 if (JNI_CreateJavaVM(&vm, &env, &init_args) != JNI_OK) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700167 fprintf(stderr, "runtime failed to initialize (check log for details)\n");
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700168 return EXIT_FAILURE;
169 }
170
Elliott Hughes1bac54f2012-03-16 12:48:31 -0700171 int rc = InvokeMain(env, &argv[arg_idx]);
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700172
Elliott Hughes17057b12012-04-03 10:22:39 -0700173#if defined(NDEBUG)
174 // The DestroyJavaVM call will detach this thread for us. In debug builds, we don't want to
175 // detach because detaching disables the CheckSafeToLockOrUnlock checking.
Elliott Hughesf2682d52011-08-15 16:37:04 -0700176 if (vm->DetachCurrentThread() != JNI_OK) {
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700177 fprintf(stderr, "Warning: unable to detach main thread\n");
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700178 rc = EXIT_FAILURE;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700179 }
Elliott Hughes17057b12012-04-03 10:22:39 -0700180#endif
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700181
Elliott Hughesf2682d52011-08-15 16:37:04 -0700182 if (vm->DestroyJavaVM() != 0) {
Elliott Hughes81ff3182012-03-23 20:35:56 -0700183 fprintf(stderr, "Warning: runtime did not shut down cleanly\n");
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700184 rc = EXIT_FAILURE;
Carl Shapiro2ed144c2011-07-26 16:52:08 -0700185 }
186
Elliott Hughesc1674ed2011-08-25 18:09:09 -0700187 return rc;
Carl Shapiro7b216702011-06-17 15:09:26 -0700188}
Elliott Hughes11d1b0c2012-01-23 16:57:47 -0800189
190} // namespace art
191
192int main(int argc, char** argv) {
193 return art::oatexec(argc, argv);
194}