blob: d010bab12f862614cdfb1618f9cc22d5a65a5329 [file] [log] [blame]
Narayan Kamath28ee8db2015-12-20 20:32:01 +00001/* Copyright (C) 2014 The Android Open Source Project
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +01003 *
Narayan Kamath28ee8db2015-12-20 20:32:01 +00004 * This file implements interfaces from the file jvm.h. This implementation
5 * is licensed under the same terms as the file jvm.h. The
6 * copyright and license information for the file jvm.h follows.
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +01007 *
Narayan Kamath28ee8db2015-12-20 20:32:01 +00008 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
9 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +010010 *
Narayan Kamath28ee8db2015-12-20 20:32:01 +000011 * This code is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License version 2 only, as
13 * published by the Free Software Foundation. Oracle designates this
14 * particular file as subject to the "Classpath" exception as provided
15 * by Oracle in the LICENSE file that accompanied this code.
16 *
17 * This code is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * version 2 for more details (a copy is included in the LICENSE file that
21 * accompanied this code).
22 *
23 * You should have received a copy of the GNU General Public License version
24 * 2 along with this work; if not, write to the Free Software Foundation,
25 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
26 *
27 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
28 * or visit www.oracle.com if you need additional information or have any
29 * questions.
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +010030 */
31
32/*
33 * Services that OpenJDK expects the VM to provide.
34 */
35#include<stdio.h>
36#include <dlfcn.h>
37#include <limits.h>
38#include <unistd.h>
39
40#include "common_throws.h"
41#include "gc/heap.h"
42#include "thread.h"
43#include "thread_list.h"
44#include "runtime.h"
45#include "handle_scope-inl.h"
46#include "scoped_thread_state_change.h"
47#include "ScopedUtfChars.h"
48#include "mirror/class_loader.h"
49#include "verify_object-inl.h"
50#include "base/logging.h"
51#include "base/macros.h"
Narayan Kamatha0cf5a62015-09-07 11:41:37 +010052#include "../../libcore/ojluni/src/main/native/jvm.h" // TODO(narayan): fix it
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +010053#include "jni_internal.h"
54#include "mirror/string-inl.h"
Narayan Kamath18d20952015-12-22 14:56:59 +000055#include "native/scoped_fast_native_object_access.h"
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +010056#include "ScopedLocalRef.h"
57#include <sys/time.h>
58#include <sys/socket.h>
59#include <sys/ioctl.h>
60
Dmitriy Ivanov3e381722015-11-23 17:40:11 -080061#ifdef __ANDROID__
62// This function is provided by android linker.
63extern "C" void android_update_LD_LIBRARY_PATH(const char* ld_library_path);
64#endif // __ANDROID__
65
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +010066#undef LOG_TAG
Narayan Kamath6280ef82015-12-17 12:34:57 +000067#define LOG_TAG "artopenjdk"
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +010068
Narayan Kamathd1ef4362015-11-12 11:49:06 +000069using art::WARNING;
Narayan Kamathd1ef4362015-11-12 11:49:06 +000070using art::INFO;
71using art::ERROR;
72using art::FATAL;
73
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +010074/* posix open() with extensions; used by e.g. ZipFile */
Narayan Kamatha0cf5a62015-09-07 11:41:37 +010075JNIEXPORT jint JVM_Open(const char* fname, jint flags, jint mode) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +010076 /*
77 * The call is expected to handle JVM_O_DELETE, which causes the file
78 * to be removed after it is opened. Also, some code seems to
79 * want the special return value JVM_EEXIST if the file open fails
80 * due to O_EXCL.
81 */
82 int fd = TEMP_FAILURE_RETRY(open(fname, flags & ~JVM_O_DELETE, mode));
83 if (fd < 0) {
84 int err = errno;
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +010085 if (err == EEXIST) {
86 return JVM_EEXIST;
87 } else {
88 return -1;
89 }
90 }
91
92 if (flags & JVM_O_DELETE) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +010093 if (unlink(fname) != 0) {
94 LOG(WARNING) << "Post-open deletion of '" << fname << "' failed: " << strerror(errno);
95 }
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +010096 }
97
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +010098 return fd;
99}
100
101/* posix close() */
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100102JNIEXPORT jint JVM_Close(jint fd) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100103 // don't want TEMP_FAILURE_RETRY here -- file is closed even if EINTR
104 return close(fd);
105}
106
107/* posix read() */
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100108JNIEXPORT jint JVM_Read(jint fd, char* buf, jint nbytes) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100109 return TEMP_FAILURE_RETRY(read(fd, buf, nbytes));
110}
111
112/* posix write(); is used to write messages to stderr */
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100113JNIEXPORT jint JVM_Write(jint fd, char* buf, jint nbytes) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100114 return TEMP_FAILURE_RETRY(write(fd, buf, nbytes));
115}
116
117/* posix lseek() */
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100118JNIEXPORT jlong JVM_Lseek(jint fd, jlong offset, jint whence) {
Narayan Kamath77f5d652016-04-15 15:57:28 +0100119 // NOTE: Using TEMP_FAILURE_RETRY here is busted for LP32 on glibc - the return
120 // value will be coerced into an int32_t.
121 //
122 // lseek64 isn't specified to return EINTR so it shouldn't be necessary
123 // anyway.
124 return lseek64(fd, offset, whence);
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100125}
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100126
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100127/*
128 * "raw monitors" seem to be expected to behave like non-recursive pthread
129 * mutexes. They're used by ZipFile.
130 */
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100131JNIEXPORT void* JVM_RawMonitorCreate(void) {
Narayan Kamath6c37e9a2016-02-09 13:11:09 +0000132 pthread_mutex_t* mutex =
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100133 reinterpret_cast<pthread_mutex_t*>(malloc(sizeof(pthread_mutex_t)));
Narayan Kamath6c37e9a2016-02-09 13:11:09 +0000134 CHECK(mutex != nullptr);
135 CHECK_PTHREAD_CALL(pthread_mutex_init, (mutex, nullptr), "JVM_RawMonitorCreate");
136 return mutex;
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100137}
138
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100139JNIEXPORT void JVM_RawMonitorDestroy(void* mon) {
Narayan Kamath6c37e9a2016-02-09 13:11:09 +0000140 CHECK_PTHREAD_CALL(pthread_mutex_destroy,
141 (reinterpret_cast<pthread_mutex_t*>(mon)),
142 "JVM_RawMonitorDestroy");
143 free(mon);
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100144}
145
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100146JNIEXPORT jint JVM_RawMonitorEnter(void* mon) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100147 return pthread_mutex_lock(reinterpret_cast<pthread_mutex_t*>(mon));
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100148}
149
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100150JNIEXPORT void JVM_RawMonitorExit(void* mon) {
Narayan Kamath6c37e9a2016-02-09 13:11:09 +0000151 CHECK_PTHREAD_CALL(pthread_mutex_unlock,
152 (reinterpret_cast<pthread_mutex_t*>(mon)),
153 "JVM_RawMonitorExit");
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100154}
155
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100156JNIEXPORT char* JVM_NativePath(char* path) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100157 return path;
158}
159
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100160JNIEXPORT jint JVM_GetLastErrorString(char* buf, int len) {
Narayan Kamathd1ef4362015-11-12 11:49:06 +0000161#if defined(__GLIBC__) || defined(__BIONIC__)
Narayan Kamathd1ef4362015-11-12 11:49:06 +0000162 if (len == 0) {
163 return 0;
164 }
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100165
Narayan Kamath44ba97e2016-02-05 14:58:02 +0000166 const int err = errno;
Narayan Kamathd1ef4362015-11-12 11:49:06 +0000167 char* result = strerror_r(err, buf, len);
168 if (result != buf) {
169 strncpy(buf, result, len);
170 buf[len - 1] = '\0';
171 }
172
173 return strlen(buf);
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100174#else
Narayan Kamathd1ef4362015-11-12 11:49:06 +0000175 UNUSED(buf);
176 UNUSED(len);
177 return -1;
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100178#endif
179}
180
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100181JNIEXPORT int jio_fprintf(FILE* fp, const char* fmt, ...) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100182 va_list args;
183
184 va_start(args, fmt);
185 int len = jio_vfprintf(fp, fmt, args);
186 va_end(args);
187
188 return len;
189}
190
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100191JNIEXPORT int jio_vfprintf(FILE* fp, const char* fmt, va_list args) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100192 assert(fp != NULL);
193 return vfprintf(fp, fmt, args);
194}
195
196/* posix fsync() */
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100197JNIEXPORT jint JVM_Sync(jint fd) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100198 return TEMP_FAILURE_RETRY(fsync(fd));
199}
200
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100201JNIEXPORT void* JVM_FindLibraryEntry(void* handle, const char* name) {
Przemyslaw Szczepaniak67d39ad2015-07-03 13:54:00 +0100202 return dlsym(handle, name);
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100203}
204
Narayan Kamath44ba97e2016-02-05 14:58:02 +0000205JNIEXPORT jlong JVM_CurrentTimeMillis(JNIEnv* env ATTRIBUTE_UNUSED,
206 jclass clazz ATTRIBUTE_UNUSED) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100207 struct timeval tv;
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100208 gettimeofday(&tv, (struct timezone *) NULL);
209 jlong when = tv.tv_sec * 1000LL + tv.tv_usec / 1000;
210 return when;
211}
212
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100213JNIEXPORT jint JVM_Socket(jint domain, jint type, jint protocol) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100214 return TEMP_FAILURE_RETRY(socket(domain, type, protocol));
215}
216
217JNIEXPORT jint JVM_InitializeSocketLibrary() {
218 return 0;
219}
220
221int jio_vsnprintf(char *str, size_t count, const char *fmt, va_list args) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100222 if ((intptr_t)count <= 0) return -1;
223 return vsnprintf(str, count, fmt, args);
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100224}
225
226int jio_snprintf(char *str, size_t count, const char *fmt, ...) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100227 va_list args;
228 int len;
229 va_start(args, fmt);
230 len = jio_vsnprintf(str, count, fmt, args);
231 va_end(args);
232 return len;
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100233}
234
235JNIEXPORT jint JVM_SetSockOpt(jint fd, int level, int optname,
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100236 const char* optval, int optlen) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100237 return TEMP_FAILURE_RETRY(setsockopt(fd, level, optname, optval, optlen));
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100238}
239
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100240JNIEXPORT jint JVM_SocketShutdown(jint fd, jint howto) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100241 return TEMP_FAILURE_RETRY(shutdown(fd, howto));
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100242}
243
244JNIEXPORT jint JVM_GetSockOpt(jint fd, int level, int optname, char* optval,
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100245 int* optlen) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100246 socklen_t len = *optlen;
247 int cc = TEMP_FAILURE_RETRY(getsockopt(fd, level, optname, optval, &len));
248 *optlen = len;
249 return cc;
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100250}
251
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100252JNIEXPORT jint JVM_GetSockName(jint fd, struct sockaddr* addr, int* addrlen) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100253 socklen_t len = *addrlen;
254 int cc = TEMP_FAILURE_RETRY(getsockname(fd, addr, &len));
255 *addrlen = len;
256 return cc;
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100257}
258
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100259JNIEXPORT jint JVM_SocketAvailable(jint fd, jint* result) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100260 if (TEMP_FAILURE_RETRY(ioctl(fd, FIONREAD, result)) < 0) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100261 return JNI_FALSE;
262 }
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100263
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100264 return JNI_TRUE;
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100265}
266
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100267JNIEXPORT jint JVM_Send(jint fd, char* buf, jint nBytes, jint flags) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100268 return TEMP_FAILURE_RETRY(send(fd, buf, nBytes, flags));
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100269}
270
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100271JNIEXPORT jint JVM_SocketClose(jint fd) {
Narayan Kamath44ba97e2016-02-05 14:58:02 +0000272 // Don't want TEMP_FAILURE_RETRY here -- file is closed even if EINTR.
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100273 return close(fd);
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100274}
275
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100276JNIEXPORT jint JVM_Listen(jint fd, jint count) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100277 return TEMP_FAILURE_RETRY(listen(fd, count));
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100278}
279
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100280JNIEXPORT jint JVM_Connect(jint fd, struct sockaddr* addr, jint addrlen) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100281 return TEMP_FAILURE_RETRY(connect(fd, addr, addrlen));
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100282}
283
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100284JNIEXPORT int JVM_GetHostName(char* name, int namelen) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100285 return TEMP_FAILURE_RETRY(gethostname(name, namelen));
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100286}
287
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100288JNIEXPORT jstring JVM_InternString(JNIEnv* env, jstring jstr) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100289 art::ScopedFastNativeObjectAccess soa(env);
290 art::mirror::String* s = soa.Decode<art::mirror::String*>(jstr);
291 art::mirror::String* result = s->Intern();
292 return soa.AddLocalReference<jstring>(result);
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100293}
294
295JNIEXPORT jlong JVM_FreeMemory(void) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100296 return art::Runtime::Current()->GetHeap()->GetFreeMemory();
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100297}
298
299JNIEXPORT jlong JVM_TotalMemory(void) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100300 return art::Runtime::Current()->GetHeap()->GetTotalMemory();
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100301}
302
303JNIEXPORT jlong JVM_MaxMemory(void) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100304 return art::Runtime::Current()->GetHeap()->GetMaxMemory();
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100305}
306
307JNIEXPORT void JVM_GC(void) {
Narayan Kamatha0cf5a62015-09-07 11:41:37 +0100308 if (art::Runtime::Current()->IsExplicitGcDisabled()) {
309 LOG(INFO) << "Explicit GC skipped.";
310 return;
311 }
312 art::Runtime::Current()->GetHeap()->CollectGarbage(false);
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100313}
314
Przemyslaw Szczepaniak6c0ea272015-09-23 08:48:00 +0100315JNIEXPORT __attribute__((noreturn)) void JVM_Exit(jint status) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100316 LOG(INFO) << "System.exit called, status: " << status;
317 art::Runtime::Current()->CallExitHook(status);
318 exit(status);
319}
320
Dmitriy Ivanov3e381722015-11-23 17:40:11 -0800321static void SetLdLibraryPath(JNIEnv* env, jstring javaLdLibraryPath) {
322#ifdef __ANDROID__
323 if (javaLdLibraryPath != nullptr) {
324 ScopedUtfChars ldLibraryPath(env, javaLdLibraryPath);
325 if (ldLibraryPath.c_str() != nullptr) {
326 android_update_LD_LIBRARY_PATH(ldLibraryPath.c_str());
327 }
328 }
329
330#else
331 LOG(WARNING) << "android_update_LD_LIBRARY_PATH not found; .so dependencies will not work!";
332 UNUSED(javaLdLibraryPath, env);
333#endif
334}
335
336
Dimitry Ivanov942dc2982016-02-24 13:33:33 -0800337JNIEXPORT jstring JVM_NativeLoad(JNIEnv* env,
338 jstring javaFilename,
339 jobject javaLoader,
340 jstring javaLibrarySearchPath) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100341 ScopedUtfChars filename(env, javaFilename);
342 if (filename.c_str() == NULL) {
343 return NULL;
344 }
345
Dmitriy Ivanov3e381722015-11-23 17:40:11 -0800346 int32_t target_sdk_version = art::Runtime::Current()->GetTargetSdkVersion();
347
348 // Starting with N nativeLoad uses classloader local
349 // linker namespace instead of global LD_LIBRARY_PATH
Narayan Kamath5f971572016-03-15 14:47:29 +0000350 // (23 is Marshmallow). This call is here to preserve
351 // backwards compatibility for the apps targeting sdk
352 // version <= 23
353 if (target_sdk_version == 0) {
Dimitry Ivanov986f6502015-12-15 14:08:18 -0800354 SetLdLibraryPath(env, javaLibrarySearchPath);
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100355 }
356
Dmitriy Ivanov3e381722015-11-23 17:40:11 -0800357 std::string error_msg;
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100358 {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100359 art::JavaVMExt* vm = art::Runtime::Current()->GetJavaVM();
Dimitry Ivanov986f6502015-12-15 14:08:18 -0800360 bool success = vm->LoadNativeLibrary(env,
361 filename.c_str(),
362 javaLoader,
Dimitry Ivanov986f6502015-12-15 14:08:18 -0800363 javaLibrarySearchPath,
Dimitry Ivanov986f6502015-12-15 14:08:18 -0800364 &error_msg);
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100365 if (success) {
366 return nullptr;
367 }
368 }
369
370 // Don't let a pending exception from JNI_OnLoad cause a CheckJNI issue with NewStringUTF.
371 env->ExceptionClear();
Dmitriy Ivanov3e381722015-11-23 17:40:11 -0800372 return env->NewStringUTF(error_msg.c_str());
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100373}
374
375JNIEXPORT void JVM_StartThread(JNIEnv* env, jobject jthread, jlong stack_size, jboolean daemon) {
376 art::Thread::CreateNativeThread(env, jthread, stack_size, daemon == JNI_TRUE);
377}
378
379JNIEXPORT void JVM_SetThreadPriority(JNIEnv* env, jobject jthread, jint prio) {
380 art::ScopedObjectAccess soa(env);
381 art::MutexLock mu(soa.Self(), *art::Locks::thread_list_lock_);
382 art::Thread* thread = art::Thread::FromManagedThread(soa, jthread);
383 if (thread != NULL) {
384 thread->SetNativePriority(prio);
385 }
386}
387
Przemyslaw Szczepaniak6c0ea272015-09-23 08:48:00 +0100388JNIEXPORT void JVM_Yield(JNIEnv* env ATTRIBUTE_UNUSED, jclass threadClass ATTRIBUTE_UNUSED) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100389 sched_yield();
390}
391
Przemyslaw Szczepaniak6c0ea272015-09-23 08:48:00 +0100392JNIEXPORT void JVM_Sleep(JNIEnv* env, jclass threadClass ATTRIBUTE_UNUSED,
393 jobject java_lock, jlong millis) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100394 art::ScopedFastNativeObjectAccess soa(env);
395 art::mirror::Object* lock = soa.Decode<art::mirror::Object*>(java_lock);
396 art::Monitor::Wait(art::Thread::Current(), lock, millis, 0, true, art::kSleeping);
397}
398
Przemyslaw Szczepaniak6c0ea272015-09-23 08:48:00 +0100399JNIEXPORT jobject JVM_CurrentThread(JNIEnv* env, jclass unused ATTRIBUTE_UNUSED) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100400 art::ScopedFastNativeObjectAccess soa(env);
401 return soa.AddLocalReference<jobject>(soa.Self()->GetPeer());
402}
403
404JNIEXPORT void JVM_Interrupt(JNIEnv* env, jobject jthread) {
405 art::ScopedFastNativeObjectAccess soa(env);
406 art::MutexLock mu(soa.Self(), *art::Locks::thread_list_lock_);
407 art::Thread* thread = art::Thread::FromManagedThread(soa, jthread);
408 if (thread != nullptr) {
409 thread->Interrupt(soa.Self());
410 }
411}
412
413JNIEXPORT jboolean JVM_IsInterrupted(JNIEnv* env, jobject jthread, jboolean clearInterrupted) {
414 if (clearInterrupted) {
415 return static_cast<art::JNIEnvExt*>(env)->self->Interrupted() ? JNI_TRUE : JNI_FALSE;
416 } else {
417 art::ScopedFastNativeObjectAccess soa(env);
418 art::MutexLock mu(soa.Self(), *art::Locks::thread_list_lock_);
419 art::Thread* thread = art::Thread::FromManagedThread(soa, jthread);
420 return (thread != nullptr) ? thread->IsInterrupted() : JNI_FALSE;
421 }
422}
423
Przemyslaw Szczepaniak6c0ea272015-09-23 08:48:00 +0100424JNIEXPORT jboolean JVM_HoldsLock(JNIEnv* env, jclass unused ATTRIBUTE_UNUSED, jobject jobj) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100425 art::ScopedObjectAccess soa(env);
426 art::mirror::Object* object = soa.Decode<art::mirror::Object*>(jobj);
427 if (object == NULL) {
Narayan Kamathd1ef4362015-11-12 11:49:06 +0000428 art::ThrowNullPointerException("object == null");
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100429 return JNI_FALSE;
430 }
431 return soa.Self()->HoldsLock(object);
432}
433
434JNIEXPORT void JVM_SetNativeThreadName(JNIEnv* env, jobject jthread, jstring java_name) {
435 ScopedUtfChars name(env, java_name);
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100436 {
437 art::ScopedObjectAccess soa(env);
438 if (soa.Decode<art::mirror::Object*>(jthread) == soa.Self()->GetPeer()) {
439 soa.Self()->SetThreadName(name.c_str());
440 return;
441 }
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100442 }
443 // Suspend thread to avoid it from killing itself while we set its name. We don't just hold the
444 // thread list lock to avoid this, as setting the thread name causes mutator to lock/unlock
445 // in the DDMS send code.
446 art::ThreadList* thread_list = art::Runtime::Current()->GetThreadList();
447 bool timed_out;
448 // Take suspend thread lock to avoid races with threads trying to suspend this one.
449 art::Thread* thread;
450 {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100451 thread = thread_list->SuspendThreadByPeer(jthread, true, false, &timed_out);
452 }
453 if (thread != NULL) {
454 {
455 art::ScopedObjectAccess soa(env);
456 thread->SetThreadName(name.c_str());
457 }
458 thread_list->Resume(thread, false);
459 } else if (timed_out) {
460 LOG(ERROR) << "Trying to set thread name to '" << name.c_str() << "' failed as the thread "
461 "failed to suspend within a generous timeout.";
462 }
463}
464
Narayan Kamath68d8ff42015-11-16 12:31:28 +0000465JNIEXPORT jint JVM_IHashCode(JNIEnv* env ATTRIBUTE_UNUSED,
466 jobject javaObject ATTRIBUTE_UNUSED) {
467 UNIMPLEMENTED(FATAL) << "JVM_IHashCode is not implemented";
468 return 0;
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100469}
470
Przemyslaw Szczepaniak6c0ea272015-09-23 08:48:00 +0100471JNIEXPORT jlong JVM_NanoTime(JNIEnv* env ATTRIBUTE_UNUSED, jclass unused ATTRIBUTE_UNUSED) {
Narayan Kamath68d8ff42015-11-16 12:31:28 +0000472 UNIMPLEMENTED(FATAL) << "JVM_NanoTime is not implemented";
473 return 0L;
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100474}
Narayan Kamathb7802892015-10-01 12:34:52 +0100475
Narayan Kamath68d8ff42015-11-16 12:31:28 +0000476JNIEXPORT void JVM_ArrayCopy(JNIEnv* /* env */, jclass /* unused */, jobject /* javaSrc */,
477 jint /* srcPos */, jobject /* javaDst */, jint /* dstPos */,
478 jint /* length */) {
479 UNIMPLEMENTED(FATAL) << "JVM_ArrayCopy is not implemented";
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100480}
481
Przemyslaw Szczepaniak6c0ea272015-09-23 08:48:00 +0100482JNIEXPORT jint JVM_FindSignal(const char* name ATTRIBUTE_UNUSED) {
Narayan Kamath36379fd2015-08-13 17:33:24 +0100483 LOG(FATAL) << "JVM_FindSignal is not implemented";
484 return 0;
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100485}
486
Przemyslaw Szczepaniak6c0ea272015-09-23 08:48:00 +0100487JNIEXPORT void* JVM_RegisterSignal(jint signum ATTRIBUTE_UNUSED, void* handler ATTRIBUTE_UNUSED) {
Narayan Kamath36379fd2015-08-13 17:33:24 +0100488 LOG(FATAL) << "JVM_RegisterSignal is not implemented";
489 return nullptr;
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100490}
491
Przemyslaw Szczepaniak6c0ea272015-09-23 08:48:00 +0100492JNIEXPORT jboolean JVM_RaiseSignal(jint signum ATTRIBUTE_UNUSED) {
Narayan Kamath36379fd2015-08-13 17:33:24 +0100493 LOG(FATAL) << "JVM_RaiseSignal is not implemented";
494 return JNI_FALSE;
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100495}
496
Przemyslaw Szczepaniak6c0ea272015-09-23 08:48:00 +0100497JNIEXPORT __attribute__((noreturn)) void JVM_Halt(jint code) {
Piotr Jastrzebskidf0b17a2015-04-24 09:18:00 +0100498 exit(code);
499}
Przemyslaw Szczepaniakb02d9b72015-08-20 15:46:16 +0100500
501JNIEXPORT jboolean JVM_IsNaN(jdouble d) {
502 return isnan(d);
503}