summaryrefslogtreecommitdiffstats
path: root/core/jni/android_util_EventLog.cpp
blob: 34b7c890b746f0a3238d208fc5fe5cd0f50fbabb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
/*
 * Copyright (C) 2007 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <fcntl.h>

#include "JNIHelp.h"
#include "android_runtime/AndroidRuntime.h"
#include "jni.h"
#include "cutils/logger.h"

#define END_DELIMITER '\n'
#define INT_BUFFER_SIZE (sizeof(jbyte)+sizeof(jint)+sizeof(END_DELIMITER))
#define LONG_BUFFER_SIZE (sizeof(jbyte)+sizeof(jlong)+sizeof(END_DELIMITER))
#define INITAL_BUFFER_CAPACITY 256

#define MAX(a,b) ((a>b)?a:b)

namespace android {

static jclass gCollectionClass;
static jmethodID gCollectionAddID;

static jclass gEventClass;
static jmethodID gEventInitID;

static jclass gIntegerClass;
static jfieldID gIntegerValueID;

static jclass gListClass;
static jfieldID gListItemsID;

static jclass gLongClass;
static jfieldID gLongValueID;

static jclass gStringClass;

struct ByteBuf {
    size_t len;
    size_t capacity;
    uint8_t* buf;

    ByteBuf(size_t initSize) {
        buf = (uint8_t*)malloc(initSize);
        len = 0;
        capacity = initSize;
    }

    ~ByteBuf() {
        free(buf);
    }

    bool ensureExtraCapacity(size_t extra) {
        size_t spaceNeeded = len + extra;
        if (spaceNeeded > capacity) {
            size_t newCapacity = MAX(spaceNeeded, 2 * capacity);
            void* newBuf = realloc(buf, newCapacity);
            if (newBuf == NULL) {
                return false;
            }
            capacity = newCapacity;
            buf = (uint8_t*)newBuf;
            return true;
        } else {
            return true;
        }
    }

    void putIntEvent(jint value) {
        bool succeeded = ensureExtraCapacity(INT_BUFFER_SIZE);
        buf[len++] = EVENT_TYPE_INT;
        memcpy(buf+len, &value, sizeof(jint));
        len += sizeof(jint);
    }

    void putByte(uint8_t value) {
        bool succeeded = ensureExtraCapacity(sizeof(uint8_t));
        buf[len++] = value;
    }

    void putLongEvent(jlong value) {
        bool succeeded = ensureExtraCapacity(LONG_BUFFER_SIZE);
        buf[len++] = EVENT_TYPE_LONG;
        memcpy(buf+len, &value, sizeof(jlong));
        len += sizeof(jlong);
    }


    void putStringEvent(JNIEnv* env, jstring value) {
        const char* strValue = env->GetStringUTFChars(value, NULL);
        uint32_t strLen = strlen(strValue); //env->GetStringUTFLength(value);
        bool succeeded = ensureExtraCapacity(1 + sizeof(uint32_t) + strLen);
        buf[len++] = EVENT_TYPE_STRING;
        memcpy(buf+len, &strLen, sizeof(uint32_t));
        len += sizeof(uint32_t);
        memcpy(buf+len, strValue, strLen);
        env->ReleaseStringUTFChars(value, strValue);
        len += strLen;
    }

    void putList(JNIEnv* env, jobject list) {
        jobjectArray items = (jobjectArray) env->GetObjectField(list, gListItemsID);
        if (items == NULL) {
            jniThrowException(env, "java/lang/NullPointerException", NULL);
            return;
        }

        jsize numItems = env->GetArrayLength(items);
        putByte(EVENT_TYPE_LIST);
        putByte(numItems);
        // We'd like to call GetPrimitveArrayCritical() but that might
        // not be safe since we're going to be doing some I/O
        for (int i = 0; i < numItems; i++) {
            jobject item = env->GetObjectArrayElement(items, i);
            if (env->IsInstanceOf(item, gIntegerClass)) {
                jint intVal = env->GetIntField(item, gIntegerValueID);
                putIntEvent(intVal);
            } else if (env->IsInstanceOf(item, gLongClass)) {
                jlong longVal = env->GetLongField(item, gLongValueID);
                putLongEvent(longVal);
            } else if (env->IsInstanceOf(item, gStringClass)) {
                putStringEvent(env, (jstring)item);
            } else if (env->IsInstanceOf(item, gListClass)) {
                putList(env, item);
            } else {
                jniThrowException(
                        env,
                        "java/lang/IllegalArgumentException",
                        "Attempt to log an illegal item type.");
                return;
            }
            env->DeleteLocalRef(item);
        }

        env->DeleteLocalRef(items);
    }
};

/*
 * In class android.util.EventLog:
 *  static native int writeEvent(int tag, int value)
 */
static jint android_util_EventLog_writeEvent_Integer(JNIEnv* env, jobject clazz,
                                                     jint tag, jint value)
{
    return android_btWriteLog(tag, EVENT_TYPE_INT, &value, sizeof(value));
}

/*
 * In class android.util.EventLog:
 *  static native int writeEvent(long tag, long value)
 */
static jint android_util_EventLog_writeEvent_Long(JNIEnv* env, jobject clazz,
                                                  jint tag, jlong value)
{
    return android_btWriteLog(tag, EVENT_TYPE_LONG, &value, sizeof(value));
}

/*
 * In class android.util.EventLog:
 *  static native int writeEvent(long tag, List value)
 */
static jint android_util_EventLog_writeEvent_List(JNIEnv* env, jobject clazz,
                                                  jint tag, jobject value) {
    if (value == NULL) {
        jclass clazz = env->FindClass("java/lang/IllegalArgumentException");
        env->ThrowNew(clazz, "writeEvent needs a value.");
        return -1;
    }
    ByteBuf byteBuf(INITAL_BUFFER_CAPACITY);
    byteBuf.putList(env, value);
    byteBuf.putByte((uint8_t)END_DELIMITER);
    int numBytesPut = byteBuf.len;
    int bytesWritten = android_bWriteLog(tag, byteBuf.buf, numBytesPut);
    return bytesWritten;
}

/*
 * In class android.util.EventLog:
 *  static native int writeEvent(int tag, String value)
 */
static jint android_util_EventLog_writeEvent_String(JNIEnv* env, jobject clazz,
                                                    jint tag, jstring value) {
    if (value == NULL) {
        jclass clazz = env->FindClass("java/lang/IllegalArgumentException");
        env->ThrowNew(clazz, "logEvent needs a value.");
        return -1;
    }

    ByteBuf byteBuf(INITAL_BUFFER_CAPACITY);
    byteBuf.putStringEvent(env, value);
    byteBuf.putByte((uint8_t)END_DELIMITER);
    int numBytesPut = byteBuf.len;
    int bytesWritten = android_bWriteLog(tag, byteBuf.buf, numBytesPut);
    return bytesWritten;
}

/*
 * In class android.util.EventLog:
 *  static native void readEvents(int[] tags, Collection<Event> output)
 *
 *  Reads events from the event log, typically /dev/log/events
 */
static void android_util_EventLog_readEvents(JNIEnv* env, jobject clazz,
                                             jintArray tags,
                                             jobject out) {
    if (tags == NULL || out == NULL) {
        jniThrowException(env, "java/lang/NullPointerException", NULL);
        return;
    }

    int fd = open("/dev/" LOGGER_LOG_EVENTS, O_RDONLY | O_NONBLOCK);
    if (fd < 0) {
        jniThrowIOException(env, errno);
        return;
    }

    jsize tagLength = env->GetArrayLength(tags);
    jint *tagValues = env->GetIntArrayElements(tags, NULL);

    uint8_t buf[LOGGER_ENTRY_MAX_LEN];
    for (;;) {
        int len = read(fd, buf, sizeof(buf));
        if (len == 0 || (len < 0 && errno == EAGAIN)) {
            break;
        } else if (len < 0) {
            // This calls env->ThrowNew(), which doesn't throw an exception
            // now, but sets a flag to trigger an exception after we return.
            jniThrowIOException(env, errno);
            break;
        } else if ((size_t) len < sizeof(logger_entry) + sizeof(int32_t)) {
            jniThrowException(env, "java/io/IOException", "Event too short");
            break;
        }

        logger_entry* entry = (logger_entry*) buf;
        int32_t tag = * (int32_t*) (buf + sizeof(*entry));

        int found = 0;
        for (int i = 0; !found && i < tagLength; ++i) {
            found = (tag == tagValues[i]);
        }

        if (found) {
            jsize len = sizeof(*entry) + entry->len;
            jbyteArray array = env->NewByteArray(len);
            if (array == NULL) break;

            jbyte *bytes = env->GetByteArrayElements(array, NULL);
            memcpy(bytes, buf, len);
            env->ReleaseByteArrayElements(array, bytes, 0);

            jobject event = env->NewObject(gEventClass, gEventInitID, array);
            if (event == NULL) break;

            env->CallBooleanMethod(out, gCollectionAddID, event);
            env->DeleteLocalRef(event);
            env->DeleteLocalRef(array);
        }
    }

    close(fd);
    env->ReleaseIntArrayElements(tags, tagValues, 0);
}

/*
 * In class android.util.EventLog:
 *  static native void readEvents(String path, Collection<Event> output)
 *
 *  Reads events from a file (See Checkin.Aggregation). Events are stored in
 *  native raw format (logger_entry + payload).
 */
static void android_util_EventLog_readEventsFile(JNIEnv* env, jobject clazz, jstring path,
            jobject out) {
    if (path == NULL || out == NULL) {
        jniThrowException(env, "java/lang/NullPointerException", NULL);
        return;
    }

    const char *pathString = env->GetStringUTFChars(path, 0);
    int fd = open(pathString, O_RDONLY | O_NONBLOCK);
    env->ReleaseStringUTFChars(path, pathString);

    if (fd < 0) {
        jniThrowIOException(env, errno);
        return;
    }

    uint8_t buf[LOGGER_ENTRY_MAX_LEN];
    for (;;) {
        // read log entry structure from file
        int len = read(fd, buf, sizeof(logger_entry));
        if (len == 0) {
            break; // end of file
        } else if (len < 0) {
            jniThrowIOException(env, errno);
        } else if ((size_t) len < sizeof(logger_entry)) {
            jniThrowException(env, "java/io/IOException", "Event header too short");
            break;
        }

        // read event payload
        logger_entry* entry = (logger_entry*) buf;
        if (entry->len > LOGGER_ENTRY_MAX_PAYLOAD) {
            jniThrowException(env,
                    "java/lang/IllegalArgumentException",
                    "Too much data for event payload. Corrupt file?");
            break;
        }

        len = read(fd, buf + sizeof(logger_entry), entry->len);
        if (len == 0) {
            break; // end of file
        } else if (len < 0) {
            jniThrowIOException(env, errno);
        } else if ((size_t) len < entry->len) {
            jniThrowException(env, "java/io/IOException", "Event payload too short");
            break;
        }

        // create EventLog$Event and add it to the collection
        int buffer_size = sizeof(logger_entry) + entry->len;
        jbyteArray array = env->NewByteArray(buffer_size);
        if (array == NULL) break;

        jbyte *bytes = env->GetByteArrayElements(array, NULL);
        memcpy(bytes, buf, buffer_size);
        env->ReleaseByteArrayElements(array, bytes, 0);

        jobject event = env->NewObject(gEventClass, gEventInitID, array);
        if (event == NULL) break;

        env->CallBooleanMethod(out, gCollectionAddID, event);
        env->DeleteLocalRef(event);
        env->DeleteLocalRef(array);
    }

    close(fd);
}

/*
 * JNI registration.
 */
static JNINativeMethod gRegisterMethods[] = {
    /* name, signature, funcPtr */
    { "writeEvent", "(II)I", (void*) android_util_EventLog_writeEvent_Integer },
    { "writeEvent", "(IJ)I", (void*) android_util_EventLog_writeEvent_Long },
    { "writeEvent",
      "(ILjava/lang/String;)I",
      (void*) android_util_EventLog_writeEvent_String
    },
    { "writeEvent",
      "(ILandroid/util/EventLog$List;)I",
      (void*) android_util_EventLog_writeEvent_List
    },
    { "readEvents",
      "([ILjava/util/Collection;)V",
      (void*) android_util_EventLog_readEvents
    },
    { "readEvents",
      "(Ljava/lang/String;Ljava/util/Collection;)V",
      (void*) android_util_EventLog_readEventsFile
    }
};

static struct { const char *name; jclass *clazz; } gClasses[] = {
    { "android/util/EventLog$Event", &gEventClass },
    { "android/util/EventLog$List", &gListClass },
    { "java/lang/Integer", &gIntegerClass },
    { "java/lang/Long", &gLongClass },
    { "java/lang/String", &gStringClass },
    { "java/util/Collection", &gCollectionClass },
};

static struct { jclass *c; const char *name, *ft; jfieldID *id; } gFields[] = {
    { &gIntegerClass, "value", "I", &gIntegerValueID },
    { &gListClass, "mItems", "[Ljava/lang/Object;", &gListItemsID },
    { &gLongClass, "value", "J", &gLongValueID },
};

static struct { jclass *c; const char *name, *mt; jmethodID *id; } gMethods[] = {
    { &gEventClass, "<init>", "([B)V", &gEventInitID },
    { &gCollectionClass, "add", "(Ljava/lang/Object;)Z", &gCollectionAddID },
};

int register_android_util_EventLog(JNIEnv* env) {
    for (int i = 0; i < NELEM(gClasses); ++i) {
        jclass clazz = env->FindClass(gClasses[i].name);
        if (clazz == NULL) {
            LOGE("Can't find class: %s\n", gClasses[i].name);
            return -1;
        }
        *gClasses[i].clazz = (jclass) env->NewGlobalRef(clazz);
    }

    for (int i = 0; i < NELEM(gFields); ++i) {
        *gFields[i].id = env->GetFieldID(
                *gFields[i].c, gFields[i].name, gFields[i].ft);
        if (*gFields[i].id == NULL) {
            LOGE("Can't find field: %s\n", gFields[i].name);
            return -1;
        }
    }

    for (int i = 0; i < NELEM(gMethods); ++i) {
        *gMethods[i].id = env->GetMethodID(
                *gMethods[i].c, gMethods[i].name, gMethods[i].mt);
        if (*gMethods[i].id == NULL) {
            LOGE("Can't find method: %s\n", gMethods[i].name);
            return -1;
        }
    }

    return AndroidRuntime::registerNativeMethods(
            env,
            "android/util/EventLog",
            gRegisterMethods, NELEM(gRegisterMethods));
}

}; // namespace android