blob: 45a6f3767d81ca5219e02cc2851e1dd040acd02e [file] [log] [blame]
William Luh964428c2015-08-13 10:41:58 -07001/*
2 * Copyright (C) 2015 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 */
16
17#include <errno.h>
Mark Salyzyncfd5b082016-10-17 14:28:00 -070018#include <stdint.h>
William Luh964428c2015-08-13 10:41:58 -070019
Mark Salyzyncfd5b082016-10-17 14:28:00 -070020#include <log/log.h>
Mark Salyzyn472245d2016-11-18 10:45:45 -080021#include <log/log_event_list.h>
William Luh964428c2015-08-13 10:41:58 -070022
Mark Salyzynfacf94c2016-03-01 13:45:42 -080023#include "log_portability.h"
Mark Salyzyn6d753fa2016-03-10 08:25:33 -080024
William Luh964428c2015-08-13 10:41:58 -070025#define MAX_SUBTAG_LEN 32
26
Mark Salyzyn2ed51d72017-03-09 08:09:43 -080027LIBLOG_ABI_PUBLIC int __android_log_error_write(int tag, const char* subTag,
28 int32_t uid, const char* data,
29 uint32_t dataLen) {
30 int ret = -EINVAL;
William Luh964428c2015-08-13 10:41:58 -070031
Mark Salyzyn2ed51d72017-03-09 08:09:43 -080032 if (subTag && (data || !dataLen)) {
33 android_log_context ctx = create_android_logger(tag);
William Luh964428c2015-08-13 10:41:58 -070034
Mark Salyzyn2ed51d72017-03-09 08:09:43 -080035 ret = -ENOMEM;
36 if (ctx) {
37 ret = android_log_write_string8_len(ctx, subTag, MAX_SUBTAG_LEN);
38 if (ret >= 0) {
39 ret = android_log_write_int32(ctx, uid);
40 if (ret >= 0) {
41 ret = android_log_write_string8_len(ctx, data, dataLen);
42 if (ret >= 0) {
43 ret = android_log_write_list(ctx, LOG_ID_EVENTS);
44 }
Mark Salyzyna4f2ef12016-02-25 09:02:09 -080045 }
Mark Salyzyn2ed51d72017-03-09 08:09:43 -080046 }
47 android_log_destroy(&ctx);
William Luh964428c2015-08-13 10:41:58 -070048 }
Mark Salyzyn2ed51d72017-03-09 08:09:43 -080049 }
50 return ret;
William Luh964428c2015-08-13 10:41:58 -070051}