blob: 5cb8b2e9e5f47cfe86ba434524db52891e78c4c8 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
Mark Salyzyn7933c292013-12-05 10:06:18 -08002 * Copyright (C) 2007-2014 The Android Open Source Project
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08003 *
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#include <fcntl.h>
18
19#include "JNIHelp.h"
Andreas Gampeed6b9df2014-11-20 22:02:20 -080020#include "core_jni_helpers.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080021#include "jni.h"
Colin Cross44bc1862013-07-23 18:17:08 -070022#include "log/logger.h"
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080023
Mark Salyzyn3ed8e2e62013-11-07 11:16:22 -080024#define UNUSED __attribute__((__unused__))
25
Dan Egnor69160892010-01-06 23:12:57 -080026// The size of the tag number comes out of the payload size.
27#define MAX_EVENT_PAYLOAD (LOGGER_ENTRY_MAX_PAYLOAD - sizeof(int32_t))
28
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029namespace android {
30
31static jclass gCollectionClass;
32static jmethodID gCollectionAddID;
33
34static jclass gEventClass;
35static jmethodID gEventInitID;
36
37static jclass gIntegerClass;
38static jfieldID gIntegerValueID;
39
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080040static jclass gLongClass;
41static jfieldID gLongValueID;
42
43static jclass gStringClass;
44
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080045/*
46 * In class android.util.EventLog:
47 * static native int writeEvent(int tag, int value)
48 */
Mark Salyzyn3ed8e2e62013-11-07 11:16:22 -080049static jint android_util_EventLog_writeEvent_Integer(JNIEnv* env UNUSED,
50 jobject clazz UNUSED,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051 jint tag, jint value)
52{
53 return android_btWriteLog(tag, EVENT_TYPE_INT, &value, sizeof(value));
54}
55
56/*
57 * In class android.util.EventLog:
58 * static native int writeEvent(long tag, long value)
59 */
Mark Salyzyn3ed8e2e62013-11-07 11:16:22 -080060static jint android_util_EventLog_writeEvent_Long(JNIEnv* env UNUSED,
61 jobject clazz UNUSED,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080062 jint tag, jlong value)
63{
64 return android_btWriteLog(tag, EVENT_TYPE_LONG, &value, sizeof(value));
65}
66
67/*
68 * In class android.util.EventLog:
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080069 * static native int writeEvent(int tag, String value)
70 */
Mark Salyzyn3ed8e2e62013-11-07 11:16:22 -080071static jint android_util_EventLog_writeEvent_String(JNIEnv* env,
72 jobject clazz UNUSED,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080073 jint tag, jstring value) {
Dan Egnor69160892010-01-06 23:12:57 -080074 uint8_t buf[MAX_EVENT_PAYLOAD];
Dan Egnor62136d32010-01-05 19:09:08 -080075
76 // Don't throw NPE -- I feel like it's sort of mean for a logging function
77 // to be all crashy if you pass in NULL -- but make the NULL value explicit.
78 const char *str = value != NULL ? env->GetStringUTFChars(value, NULL) : "NULL";
Nick Kralevich7353cf32012-12-07 16:56:47 -080079 uint32_t len = strlen(str);
80 size_t max = sizeof(buf) - sizeof(len) - 2; // Type byte, final newline
Dan Egnor62136d32010-01-05 19:09:08 -080081 if (len > max) len = max;
82
83 buf[0] = EVENT_TYPE_STRING;
84 memcpy(&buf[1], &len, sizeof(len));
85 memcpy(&buf[1 + sizeof(len)], str, len);
86 buf[1 + sizeof(len) + len] = '\n';
87
88 if (value != NULL) env->ReleaseStringUTFChars(value, str);
89 return android_bWriteLog(tag, buf, 2 + sizeof(len) + len);
90}
91
92/*
93 * In class android.util.EventLog:
94 * static native int writeEvent(long tag, Object... value)
95 */
96static jint android_util_EventLog_writeEvent_Array(JNIEnv* env, jobject clazz,
97 jint tag, jobjectArray value) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080098 if (value == NULL) {
Dan Egnor62136d32010-01-05 19:09:08 -080099 return android_util_EventLog_writeEvent_String(env, clazz, tag, NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800100 }
101
Dan Egnor69160892010-01-06 23:12:57 -0800102 uint8_t buf[MAX_EVENT_PAYLOAD];
Dan Egnor62136d32010-01-05 19:09:08 -0800103 const size_t max = sizeof(buf) - 1; // leave room for final newline
104 size_t pos = 2; // Save room for type tag & array count
105
106 jsize copied = 0, num = env->GetArrayLength(value);
Dan Egnor69160892010-01-06 23:12:57 -0800107 for (; copied < num && copied < 255; ++copied) {
Dan Egnor62136d32010-01-05 19:09:08 -0800108 jobject item = env->GetObjectArrayElement(value, copied);
109 if (item == NULL || env->IsInstanceOf(item, gStringClass)) {
110 if (pos + 1 + sizeof(jint) > max) break;
111 const char *str = item != NULL ? env->GetStringUTFChars((jstring) item, NULL) : "NULL";
112 jint len = strlen(str);
113 if (pos + 1 + sizeof(len) + len > max) len = max - pos - 1 - sizeof(len);
114 buf[pos++] = EVENT_TYPE_STRING;
115 memcpy(&buf[pos], &len, sizeof(len));
116 memcpy(&buf[pos + sizeof(len)], str, len);
117 pos += sizeof(len) + len;
118 if (item != NULL) env->ReleaseStringUTFChars((jstring) item, str);
119 } else if (env->IsInstanceOf(item, gIntegerClass)) {
120 jint intVal = env->GetIntField(item, gIntegerValueID);
121 if (pos + 1 + sizeof(intVal) > max) break;
122 buf[pos++] = EVENT_TYPE_INT;
123 memcpy(&buf[pos], &intVal, sizeof(intVal));
124 pos += sizeof(intVal);
125 } else if (env->IsInstanceOf(item, gLongClass)) {
126 jlong longVal = env->GetLongField(item, gLongValueID);
127 if (pos + 1 + sizeof(longVal) > max) break;
128 buf[pos++] = EVENT_TYPE_LONG;
129 memcpy(&buf[pos], &longVal, sizeof(longVal));
130 pos += sizeof(longVal);
131 } else {
132 jniThrowException(env,
133 "java/lang/IllegalArgumentException",
134 "Invalid payload item type");
135 return -1;
136 }
137 env->DeleteLocalRef(item);
138 }
139
140 buf[0] = EVENT_TYPE_LIST;
141 buf[1] = copied;
142 buf[pos++] = '\n';
143 return android_bWriteLog(tag, buf, pos);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144}
145
146/*
147 * In class android.util.EventLog:
148 * static native void readEvents(int[] tags, Collection<Event> output)
Jim Miller95ff2402009-07-01 18:03:41 -0700149 *
Mark Salyzyn7933c292013-12-05 10:06:18 -0800150 * Reads events from the event log
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800151 */
Mark Salyzyn3ed8e2e62013-11-07 11:16:22 -0800152static void android_util_EventLog_readEvents(JNIEnv* env, jobject clazz UNUSED,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800153 jintArray tags,
154 jobject out) {
Mark Salyzyn7933c292013-12-05 10:06:18 -0800155
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800156 if (tags == NULL || out == NULL) {
Elliott Hughes69a017b2011-04-08 14:10:28 -0700157 jniThrowNullPointerException(env, NULL);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800158 return;
159 }
160
Mark Salyzyn7933c292013-12-05 10:06:18 -0800161 struct logger_list *logger_list = android_logger_list_open(
Mark Salyzyn18998c92015-01-26 12:51:27 -0800162 LOG_ID_EVENTS, ANDROID_LOG_RDONLY | ANDROID_LOG_NONBLOCK, 0, 0);
Mark Salyzyn7933c292013-12-05 10:06:18 -0800163
164 if (!logger_list) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800165 jniThrowIOException(env, errno);
166 return;
167 }
168
169 jsize tagLength = env->GetArrayLength(tags);
170 jint *tagValues = env->GetIntArrayElements(tags, NULL);
171
Mark Salyzyn7933c292013-12-05 10:06:18 -0800172 while (1) {
173 log_msg log_msg;
174 int ret = android_logger_list_read(logger_list, &log_msg);
Dan Egnor78158db2010-04-08 22:19:15 -0700175
Mark Salyzyn7933c292013-12-05 10:06:18 -0800176 if (ret == 0) {
177 break;
178 }
179 if (ret < 0) {
Mark Salyzynb519aec2014-04-08 15:21:50 -0700180 if (ret == -EINTR) {
Mark Salyzyn7933c292013-12-05 10:06:18 -0800181 continue;
182 }
Mark Salyzynb519aec2014-04-08 15:21:50 -0700183 if (ret == -EINVAL) {
Mark Salyzyn7933c292013-12-05 10:06:18 -0800184 jniThrowException(env, "java/io/IOException", "Event too short");
Mark Salyzynb519aec2014-04-08 15:21:50 -0700185 } else if (ret != -EAGAIN) {
186 jniThrowIOException(env, -ret); // Will throw on return
Mark Salyzyn7933c292013-12-05 10:06:18 -0800187 }
Dan Egnor78158db2010-04-08 22:19:15 -0700188 break;
189 }
190
Mark Salyzynca50cd22015-02-26 14:43:04 -0800191 if (log_msg.id() != LOG_ID_EVENTS) {
192 continue;
193 }
194
Mark Salyzyn7933c292013-12-05 10:06:18 -0800195 int32_t tag = * (int32_t *) log_msg.msg();
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800196
197 int found = 0;
198 for (int i = 0; !found && i < tagLength; ++i) {
199 found = (tag == tagValues[i]);
200 }
201
202 if (found) {
Mark Salyzyn7933c292013-12-05 10:06:18 -0800203 jsize len = ret;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800204 jbyteArray array = env->NewByteArray(len);
Mark Salyzyn7933c292013-12-05 10:06:18 -0800205 if (array == NULL) {
206 break;
207 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800208
209 jbyte *bytes = env->GetByteArrayElements(array, NULL);
Mark Salyzyn7933c292013-12-05 10:06:18 -0800210 memcpy(bytes, log_msg.buf, len);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800211 env->ReleaseByteArrayElements(array, bytes, 0);
212
213 jobject event = env->NewObject(gEventClass, gEventInitID, array);
Mark Salyzyn7933c292013-12-05 10:06:18 -0800214 if (event == NULL) {
215 break;
216 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800217
218 env->CallBooleanMethod(out, gCollectionAddID, event);
219 env->DeleteLocalRef(event);
220 env->DeleteLocalRef(array);
221 }
222 }
223
Mark Salyzyn7933c292013-12-05 10:06:18 -0800224 android_logger_list_close(logger_list);
225
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800226 env->ReleaseIntArrayElements(tags, tagValues, 0);
227}
228
Jim Miller95ff2402009-07-01 18:03:41 -0700229/*
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800230 * JNI registration.
231 */
232static JNINativeMethod gRegisterMethods[] = {
233 /* name, signature, funcPtr */
234 { "writeEvent", "(II)I", (void*) android_util_EventLog_writeEvent_Integer },
235 { "writeEvent", "(IJ)I", (void*) android_util_EventLog_writeEvent_Long },
236 { "writeEvent",
237 "(ILjava/lang/String;)I",
238 (void*) android_util_EventLog_writeEvent_String
239 },
240 { "writeEvent",
Dan Egnor62136d32010-01-05 19:09:08 -0800241 "(I[Ljava/lang/Object;)I",
242 (void*) android_util_EventLog_writeEvent_Array
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800243 },
244 { "readEvents",
245 "([ILjava/util/Collection;)V",
246 (void*) android_util_EventLog_readEvents
Jim Miller95ff2402009-07-01 18:03:41 -0700247 },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800248};
249
250static struct { const char *name; jclass *clazz; } gClasses[] = {
251 { "android/util/EventLog$Event", &gEventClass },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800252 { "java/lang/Integer", &gIntegerClass },
253 { "java/lang/Long", &gLongClass },
254 { "java/lang/String", &gStringClass },
255 { "java/util/Collection", &gCollectionClass },
256};
257
258static struct { jclass *c; const char *name, *ft; jfieldID *id; } gFields[] = {
259 { &gIntegerClass, "value", "I", &gIntegerValueID },
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800260 { &gLongClass, "value", "J", &gLongValueID },
261};
262
263static struct { jclass *c; const char *name, *mt; jmethodID *id; } gMethods[] = {
264 { &gEventClass, "<init>", "([B)V", &gEventInitID },
265 { &gCollectionClass, "add", "(Ljava/lang/Object;)Z", &gCollectionAddID },
266};
267
268int register_android_util_EventLog(JNIEnv* env) {
269 for (int i = 0; i < NELEM(gClasses); ++i) {
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800270 jclass clazz = FindClassOrDie(env, gClasses[i].name);
271 *gClasses[i].clazz = MakeGlobalRefOrDie(env, clazz);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800272 }
273
274 for (int i = 0; i < NELEM(gFields); ++i) {
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800275 *gFields[i].id = GetFieldIDOrDie(env,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800276 *gFields[i].c, gFields[i].name, gFields[i].ft);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800277 }
278
279 for (int i = 0; i < NELEM(gMethods); ++i) {
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800280 *gMethods[i].id = GetMethodIDOrDie(env,
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800281 *gMethods[i].c, gMethods[i].name, gMethods[i].mt);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800282 }
283
Andreas Gampeed6b9df2014-11-20 22:02:20 -0800284 return RegisterMethodsOrDie(
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800285 env,
286 "android/util/EventLog",
287 gRegisterMethods, NELEM(gRegisterMethods));
288}
289
290}; // namespace android