blob: a21555c08c3eebf11aa0ef880f765569464ec2b5 [file] [log] [blame]
William Roberts210c5842013-02-08 09:45:26 +09001/*
2 * Copyright (C) 2014 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 <ctype.h>
Mark Salyzyn64679af2015-03-03 16:21:27 -080018#include <endian.h>
William Roberts210c5842013-02-08 09:45:26 +090019#include <errno.h>
Mark Salyzyn59d09102014-04-28 16:39:04 -070020#include <limits.h>
William Roberts210c5842013-02-08 09:45:26 +090021#include <stdarg.h>
Chih-Hung Hsieh9ff81552018-08-13 14:22:56 -070022#include <stdint.h>
William Roberts210c5842013-02-08 09:45:26 +090023#include <stdlib.h>
Mark Salyzyna92051d2016-02-23 08:55:43 -080024#include <string.h>
Mark Salyzyn4e5efdc2014-04-28 14:07:23 -070025#include <sys/prctl.h>
Mark Salyzynae0a7bf2014-04-03 09:55:26 -070026#include <sys/uio.h>
Mark Salyzynaa773a82014-09-28 14:41:50 -070027#include <syslog.h>
William Roberts210c5842013-02-08 09:45:26 +090028
Max Bires9cf521b2017-08-15 11:07:49 -070029#include <fstream>
30#include <sstream>
31
Mark Salyzyn071f4692016-11-03 10:29:23 -070032#include <android-base/macros.h>
Max Bires9cf521b2017-08-15 11:07:49 -070033#include <log/log_properties.h>
Mark Salyzynb4853952015-03-17 07:56:32 -070034#include <private/android_filesystem_config.h>
Mark Salyzyn64679af2015-03-03 16:21:27 -080035#include <private/android_logger.h>
36
William Roberts210c5842013-02-08 09:45:26 +090037#include "LogAudit.h"
Mark Salyzyna92051d2016-02-23 08:55:43 -080038#include "LogBuffer.h"
Mark Salyzyne73a18b2014-10-15 08:49:39 -070039#include "LogKlog.h"
Mark Salyzyna92051d2016-02-23 08:55:43 -080040#include "LogReader.h"
Mark Salyzyn24a57dc2016-12-13 10:31:29 -080041#include "LogUtils.h"
Mark Salyzyn65059532017-03-10 14:31:54 -080042#include "libaudit.h"
William Roberts210c5842013-02-08 09:45:26 +090043
Mark Salyzyn65059532017-03-10 14:31:54 -080044#define KMSG_PRIORITY(PRI) \
45 '<', '0' + LOG_MAKEPRI(LOG_AUTH, LOG_PRI(PRI)) / 10, \
46 '0' + LOG_MAKEPRI(LOG_AUTH, LOG_PRI(PRI)) % 10, '>'
Mark Salyzynaa773a82014-09-28 14:41:50 -070047
Mark Salyzyn65059532017-03-10 14:31:54 -080048LogAudit::LogAudit(LogBuffer* buf, LogReader* reader, int fdDmesg)
Jeff Vander Stoepb66ed0f2018-01-03 11:04:26 -080049 : SocketListener(getLogSocket(), false),
Mark Salyzyn65059532017-03-10 14:31:54 -080050 logbuf(buf),
51 reader(reader),
52 fdDmesg(fdDmesg),
53 main(__android_logger_property_get_bool("ro.logd.auditd.main",
54 BOOL_DEFAULT_TRUE)),
55 events(__android_logger_property_get_bool("ro.logd.auditd.events",
Mark Salyzyncaf43862016-12-29 15:16:06 -080056 BOOL_DEFAULT_TRUE)),
Jeff Vander Stoepb66ed0f2018-01-03 11:04:26 -080057 initialized(false) {
Sami Tolvanenba239532016-06-14 18:04:43 +000058 static const char auditd_message[] = { KMSG_PRIORITY(LOG_INFO),
Mark Salyzyn65059532017-03-10 14:31:54 -080059 'l',
60 'o',
61 'g',
62 'd',
63 '.',
64 'a',
65 'u',
66 'd',
67 'i',
68 't',
69 'd',
70 ':',
71 ' ',
72 's',
73 't',
74 'a',
75 'r',
76 't',
77 '\n' };
Sami Tolvanenba239532016-06-14 18:04:43 +000078 write(fdDmesg, auditd_message, sizeof(auditd_message));
William Roberts210c5842013-02-08 09:45:26 +090079}
80
Mark Salyzyn65059532017-03-10 14:31:54 -080081bool LogAudit::onDataAvailable(SocketClient* cli) {
Mark Salyzyn78956ab2014-10-13 09:59:37 -070082 if (!initialized) {
83 prctl(PR_SET_NAME, "logd.auditd");
84 initialized = true;
85 }
Mark Salyzyn4e5efdc2014-04-28 14:07:23 -070086
William Roberts210c5842013-02-08 09:45:26 +090087 struct audit_message rep;
88
Mark Salyzyn59d09102014-04-28 16:39:04 -070089 rep.nlh.nlmsg_type = 0;
90 rep.nlh.nlmsg_len = 0;
91 rep.data[0] = '\0';
92
William Roberts210c5842013-02-08 09:45:26 +090093 if (audit_get_reply(cli->getSocket(), &rep, GET_REPLY_BLOCKING, 0) < 0) {
94 SLOGE("Failed on audit_get_reply with error: %s", strerror(errno));
95 return false;
96 }
97
Mark Salyzynec9b9ad2017-01-03 14:00:19 -080098 logPrint("type=%d %.*s", rep.nlh.nlmsg_type, rep.nlh.nlmsg_len, rep.data);
William Roberts210c5842013-02-08 09:45:26 +090099
100 return true;
101}
102
Max Bires9cf521b2017-08-15 11:07:49 -0700103static inline bool hasMetadata(char* str, int str_len) {
104 // need to check and see if str already contains bug metadata from
105 // possibility of stuttering if log audit crashes and then reloads kernel
106 // messages. Kernel denials that contain metadata will either end in
107 // "b/[0-9]+$" or "b/[0-9]+ duplicate messages suppressed$" which will put
108 // a '/' character at either 9 or 39 indices away from the end of the str.
109 return str_len >= 39 &&
110 (str[str_len - 9] == '/' || str[str_len - 39] == '/');
111}
112
113std::map<std::string, std::string> LogAudit::populateDenialMap() {
Tri Vo66d7b612019-01-23 09:58:35 -0800114 std::ifstream bug_file("/vendor/etc/selinux/selinux_denial_metadata");
Max Bires9cf521b2017-08-15 11:07:49 -0700115 std::string line;
Jeff Vander Stoep78beb5e2018-05-03 14:57:39 -0700116 // allocate a map for the static map pointer in auditParse to keep track of,
Max Bires9cf521b2017-08-15 11:07:49 -0700117 // this function only runs once
118 std::map<std::string, std::string> denial_to_bug;
119 if (bug_file.good()) {
120 std::string scontext;
121 std::string tcontext;
122 std::string tclass;
123 std::string bug_num;
124 while (std::getline(bug_file, line)) {
125 std::stringstream split_line(line);
126 split_line >> scontext >> tcontext >> tclass >> bug_num;
127 denial_to_bug.emplace(scontext + tcontext + tclass, bug_num);
128 }
129 }
130 return denial_to_bug;
131}
132
133std::string LogAudit::denialParse(const std::string& denial, char terminator,
134 const std::string& search_term) {
135 size_t start_index = denial.find(search_term);
136 if (start_index != std::string::npos) {
137 start_index += search_term.length();
138 return denial.substr(
139 start_index, denial.find(terminator, start_index) - start_index);
140 }
141 return "";
142}
143
Jeff Vander Stoep78beb5e2018-05-03 14:57:39 -0700144void LogAudit::auditParse(const std::string& string, uid_t uid,
145 std::string* bug_num) {
Max Bires9cf521b2017-08-15 11:07:49 -0700146 if (!__android_log_is_debuggable()) {
147 bug_num->assign("");
148 return;
149 }
150 static std::map<std::string, std::string> denial_to_bug =
151 populateDenialMap();
152 std::string scontext = denialParse(string, ':', "scontext=u:object_r:");
153 std::string tcontext = denialParse(string, ':', "tcontext=u:object_r:");
154 std::string tclass = denialParse(string, ' ', "tclass=");
155 if (scontext.empty()) {
156 scontext = denialParse(string, ':', "scontext=u:r:");
157 }
158 if (tcontext.empty()) {
159 tcontext = denialParse(string, ':', "tcontext=u:r:");
160 }
161 auto search = denial_to_bug.find(scontext + tcontext + tclass);
162 if (search != denial_to_bug.end()) {
163 bug_num->assign(" b/" + search->second);
164 } else {
165 bug_num->assign("");
166 }
Jeff Vander Stoep78beb5e2018-05-03 14:57:39 -0700167
Dan Austin491b8242018-11-27 07:30:11 -0800168 // Ensure the uid name is not null before passing it to the bug string.
Jeff Vander Stoep78beb5e2018-05-03 14:57:39 -0700169 if (uid >= AID_APP_START && uid <= AID_APP_END) {
Dan Austin491b8242018-11-27 07:30:11 -0800170 char* uidname = android::uidToName(uid);
171 if (uidname) {
172 bug_num->append(" app=");
173 bug_num->append(uidname);
174 free(uidname);
175 }
Jeff Vander Stoep78beb5e2018-05-03 14:57:39 -0700176 }
Max Bires9cf521b2017-08-15 11:07:49 -0700177}
178
Mark Salyzyn65059532017-03-10 14:31:54 -0800179int LogAudit::logPrint(const char* fmt, ...) {
Yi Kong36feb152018-07-13 17:39:22 -0700180 if (fmt == nullptr) {
William Roberts210c5842013-02-08 09:45:26 +0900181 return -EINVAL;
182 }
183
184 va_list args;
185
Yi Kong36feb152018-07-13 17:39:22 -0700186 char* str = nullptr;
William Roberts210c5842013-02-08 09:45:26 +0900187 va_start(args, fmt);
188 int rc = vasprintf(&str, fmt, args);
189 va_end(args);
190
191 if (rc < 0) {
192 return rc;
193 }
Mark Salyzyn65059532017-03-10 14:31:54 -0800194 char* cp;
Nick Kralevich908486f2017-01-03 10:35:34 -0800195 // Work around kernels missing
196 // https://github.com/torvalds/linux/commit/b8f89caafeb55fba75b74bea25adc4e4cd91be67
197 // Such kernels improperly add newlines inside audit messages.
198 while ((cp = strchr(str, '\n'))) {
199 *cp = ' ';
200 }
201
Mark Salyzyn380423a2014-05-27 10:06:34 -0700202 while ((cp = strstr(str, " "))) {
203 memmove(cp, cp + 1, strlen(cp + 1) + 1);
204 }
Jeff Vander Stoep78beb5e2018-05-03 14:57:39 -0700205 pid_t pid = getpid();
206 pid_t tid = gettid();
207 uid_t uid = AID_LOGD;
208 static const char pid_str[] = " pid=";
209 char* pidptr = strstr(str, pid_str);
210 if (pidptr && isdigit(pidptr[sizeof(pid_str) - 1])) {
211 cp = pidptr + sizeof(pid_str) - 1;
212 pid = 0;
213 while (isdigit(*cp)) {
214 pid = (pid * 10) + (*cp - '0');
215 ++cp;
216 }
217 tid = pid;
218 logbuf->wrlock();
219 uid = logbuf->pidToUid(pid);
220 logbuf->unlock();
221 memmove(pidptr, cp, strlen(cp) + 1);
222 }
223
Sami Tolvanenba239532016-06-14 18:04:43 +0000224 bool info = strstr(str, " permissive=1") || strstr(str, " policy loaded ");
Jeff Vander Stoep78beb5e2018-05-03 14:57:39 -0700225 static std::string denial_metadata;
Mark Salyzyn78956ab2014-10-13 09:59:37 -0700226 if ((fdDmesg >= 0) && initialized) {
Max Bires9cf521b2017-08-15 11:07:49 -0700227 struct iovec iov[4];
Mark Salyzynaa773a82014-09-28 14:41:50 -0700228 static const char log_info[] = { KMSG_PRIORITY(LOG_INFO) };
229 static const char log_warning[] = { KMSG_PRIORITY(LOG_WARNING) };
Mark Salyzynf815ca72016-07-15 15:45:58 -0700230 static const char newline[] = "\n";
Mark Salyzynae0a7bf2014-04-03 09:55:26 -0700231
Mark Salyzynf815ca72016-07-15 15:45:58 -0700232 // Dedupe messages, checking for identical messages starting with avc:
233 static unsigned count;
Mark Salyzyn65059532017-03-10 14:31:54 -0800234 static char* last_str;
Mark Salyzynf815ca72016-07-15 15:45:58 -0700235 static bool last_info;
Mark Salyzynae0a7bf2014-04-03 09:55:26 -0700236
Yi Kong36feb152018-07-13 17:39:22 -0700237 if (last_str != nullptr) {
Mark Salyzynf815ca72016-07-15 15:45:58 -0700238 static const char avc[] = "): avc: ";
Mark Salyzyn65059532017-03-10 14:31:54 -0800239 char* avcl = strstr(last_str, avc);
Mark Salyzynf815ca72016-07-15 15:45:58 -0700240 bool skip = false;
241
242 if (avcl) {
Mark Salyzyn65059532017-03-10 14:31:54 -0800243 char* avcr = strstr(str, avc);
Mark Salyzynf815ca72016-07-15 15:45:58 -0700244
Mark Salyzyn65059532017-03-10 14:31:54 -0800245 skip = avcr &&
246 !fastcmp<strcmp>(avcl + strlen(avc), avcr + strlen(avc));
Mark Salyzynf815ca72016-07-15 15:45:58 -0700247 if (skip) {
248 ++count;
249 free(last_str);
250 last_str = strdup(str);
251 last_info = info;
252 }
253 }
254 if (!skip) {
255 static const char resume[] = " duplicate messages suppressed\n";
Mark Salyzyn65059532017-03-10 14:31:54 -0800256 iov[0].iov_base = last_info ? const_cast<char*>(log_info)
257 : const_cast<char*>(log_warning);
258 iov[0].iov_len =
259 last_info ? sizeof(log_info) : sizeof(log_warning);
Mark Salyzynf815ca72016-07-15 15:45:58 -0700260 iov[1].iov_base = last_str;
261 iov[1].iov_len = strlen(last_str);
Jeff Vander Stoep78beb5e2018-05-03 14:57:39 -0700262 iov[2].iov_base = const_cast<char*>(denial_metadata.c_str());
263 iov[2].iov_len = denial_metadata.length();
Mark Salyzynf815ca72016-07-15 15:45:58 -0700264 if (count > 1) {
Max Bires9cf521b2017-08-15 11:07:49 -0700265 iov[3].iov_base = const_cast<char*>(resume);
266 iov[3].iov_len = strlen(resume);
Mark Salyzynf815ca72016-07-15 15:45:58 -0700267 } else {
Max Bires9cf521b2017-08-15 11:07:49 -0700268 iov[3].iov_base = const_cast<char*>(newline);
269 iov[3].iov_len = strlen(newline);
Mark Salyzynf815ca72016-07-15 15:45:58 -0700270 }
271
Mark Salyzyn071f4692016-11-03 10:29:23 -0700272 writev(fdDmesg, iov, arraysize(iov));
Mark Salyzynf815ca72016-07-15 15:45:58 -0700273 free(last_str);
Yi Kong36feb152018-07-13 17:39:22 -0700274 last_str = nullptr;
Mark Salyzynf815ca72016-07-15 15:45:58 -0700275 }
276 }
Yi Kong36feb152018-07-13 17:39:22 -0700277 if (last_str == nullptr) {
Mark Salyzynf815ca72016-07-15 15:45:58 -0700278 count = 0;
279 last_str = strdup(str);
280 last_info = info;
281 }
282 if (count == 0) {
Jeff Vander Stoep78beb5e2018-05-03 14:57:39 -0700283 auditParse(str, uid, &denial_metadata);
Mark Salyzyn65059532017-03-10 14:31:54 -0800284 iov[0].iov_base = info ? const_cast<char*>(log_info)
285 : const_cast<char*>(log_warning);
286 iov[0].iov_len = info ? sizeof(log_info) : sizeof(log_warning);
Mark Salyzynf815ca72016-07-15 15:45:58 -0700287 iov[1].iov_base = str;
288 iov[1].iov_len = strlen(str);
Jeff Vander Stoep78beb5e2018-05-03 14:57:39 -0700289 iov[2].iov_base = const_cast<char*>(denial_metadata.c_str());
290 iov[2].iov_len = denial_metadata.length();
Max Bires9cf521b2017-08-15 11:07:49 -0700291 iov[3].iov_base = const_cast<char*>(newline);
292 iov[3].iov_len = strlen(newline);
Mark Salyzynf815ca72016-07-15 15:45:58 -0700293
Mark Salyzyn071f4692016-11-03 10:29:23 -0700294 writev(fdDmesg, iov, arraysize(iov));
Mark Salyzynf815ca72016-07-15 15:45:58 -0700295 }
Mark Salyzynae0a7bf2014-04-03 09:55:26 -0700296 }
297
Mark Salyzyncaf43862016-12-29 15:16:06 -0800298 if (!main && !events) {
299 free(str);
300 return 0;
301 }
302
Bernie Innocenti440e0352019-01-16 15:25:18 +0900303 log_time now(log_time::EPOCH);
William Roberts210c5842013-02-08 09:45:26 +0900304
305 static const char audit_str[] = " audit(";
Mark Salyzyn65059532017-03-10 14:31:54 -0800306 char* timeptr = strstr(str, audit_str);
307 if (timeptr &&
308 ((cp = now.strptime(timeptr + sizeof(audit_str) - 1, "%s.%q"))) &&
309 (*cp == ':')) {
William Roberts210c5842013-02-08 09:45:26 +0900310 memcpy(timeptr + sizeof(audit_str) - 1, "0.0", 3);
Mark Salyzyn380423a2014-05-27 10:06:34 -0700311 memmove(timeptr + sizeof(audit_str) - 1 + 3, cp, strlen(cp) + 1);
Mark Salyzyn0e2fe422015-09-08 08:56:32 -0700312 if (!isMonotonic()) {
313 if (android::isMonotonic(now)) {
314 LogKlog::convertMonotonicToReal(now);
315 }
316 } else {
317 if (!android::isMonotonic(now)) {
318 LogKlog::convertRealToMonotonic(now);
319 }
Mark Salyzyne73a18b2014-10-15 08:49:39 -0700320 }
Mark Salyzyn0e2fe422015-09-08 08:56:32 -0700321 } else if (isMonotonic()) {
322 now = log_time(CLOCK_MONOTONIC);
William Roberts210c5842013-02-08 09:45:26 +0900323 } else {
Mark Salyzyn0e2fe422015-09-08 08:56:32 -0700324 now = log_time(CLOCK_REALTIME);
William Roberts210c5842013-02-08 09:45:26 +0900325 }
326
Mark Salyzyn380423a2014-05-27 10:06:34 -0700327 // log to events
328
Max Bires9cf521b2017-08-15 11:07:49 -0700329 size_t str_len = strnlen(str, LOGGER_ENTRY_MAX_PAYLOAD);
330 if (((fdDmesg < 0) || !initialized) && !hasMetadata(str, str_len))
Jeff Vander Stoep78beb5e2018-05-03 14:57:39 -0700331 auditParse(str, uid, &denial_metadata);
332 str_len = (str_len + denial_metadata.length() <= LOGGER_ENTRY_MAX_PAYLOAD)
333 ? str_len + denial_metadata.length()
Max Bires9cf521b2017-08-15 11:07:49 -0700334 : LOGGER_ENTRY_MAX_PAYLOAD;
335 size_t message_len = str_len + sizeof(android_log_event_string_t);
Mark Salyzyn380423a2014-05-27 10:06:34 -0700336
Hao Wang10d19f62017-12-04 14:10:40 +0800337 log_mask_t notify = 0;
William Roberts210c5842013-02-08 09:45:26 +0900338
Mark Salyzyn65059532017-03-10 14:31:54 -0800339 if (events) { // begin scope for event buffer
Max Bires9cf521b2017-08-15 11:07:49 -0700340 uint32_t buffer[(message_len + sizeof(uint32_t) - 1) / sizeof(uint32_t)];
Mark Salyzynebaf2d62015-10-02 09:22:52 -0700341
Mark Salyzyn65059532017-03-10 14:31:54 -0800342 android_log_event_string_t* event =
343 reinterpret_cast<android_log_event_string_t*>(buffer);
Mark Salyzyn64679af2015-03-03 16:21:27 -0800344 event->header.tag = htole32(AUDITD_LOG_TAG);
Nick Kralevich253374f2015-04-07 01:25:43 -0700345 event->type = EVENT_TYPE_STRING;
Max Bires42ec64b2017-09-14 13:01:28 -0700346 event->length = htole32(str_len);
Jeff Vander Stoep78beb5e2018-05-03 14:57:39 -0700347 memcpy(event->data, str, str_len - denial_metadata.length());
348 memcpy(event->data + str_len - denial_metadata.length(),
349 denial_metadata.c_str(), denial_metadata.length());
Mark Salyzyn380423a2014-05-27 10:06:34 -0700350
Max Bires9cf521b2017-08-15 11:07:49 -0700351 rc = logbuf->log(
352 LOG_ID_EVENTS, now, uid, pid, tid, reinterpret_cast<char*>(event),
Chih-Hung Hsieh9ff81552018-08-13 14:22:56 -0700353 (message_len <= UINT16_MAX) ? (uint16_t)message_len : UINT16_MAX);
Mark Salyzyn88fe7cc2015-02-09 08:21:05 -0800354 if (rc >= 0) {
Hao Wang10d19f62017-12-04 14:10:40 +0800355 notify |= 1 << LOG_ID_EVENTS;
Mark Salyzyn88fe7cc2015-02-09 08:21:05 -0800356 }
Mark Salyzynebaf2d62015-10-02 09:22:52 -0700357 // end scope for event buffer
William Roberts210c5842013-02-08 09:45:26 +0900358 }
359
Mark Salyzyn380423a2014-05-27 10:06:34 -0700360 // log to main
361
362 static const char comm_str[] = " comm=\"";
Mark Salyzyn65059532017-03-10 14:31:54 -0800363 const char* comm = strstr(str, comm_str);
364 const char* estr = str + strlen(str);
Yi Kong36feb152018-07-13 17:39:22 -0700365 const char* commfree = nullptr;
Mark Salyzyn380423a2014-05-27 10:06:34 -0700366 if (comm) {
367 estr = comm;
368 comm += sizeof(comm_str) - 1;
369 } else if (pid == getpid()) {
370 pid = tid;
371 comm = "auditd";
Mark Salyzyn059b7582015-06-24 16:22:54 -0700372 } else {
Mark Salyzynd2712b12017-04-18 14:09:45 -0700373 logbuf->wrlock();
Mark Salyzyn059b7582015-06-24 16:22:54 -0700374 comm = commfree = logbuf->pidToName(pid);
375 logbuf->unlock();
376 if (!comm) {
377 comm = "unknown";
378 }
Mark Salyzyn380423a2014-05-27 10:06:34 -0700379 }
380
Mark Salyzyn65059532017-03-10 14:31:54 -0800381 const char* ecomm = strchr(comm, '"');
Mark Salyzyn380423a2014-05-27 10:06:34 -0700382 if (ecomm) {
383 ++ecomm;
Max Bires9cf521b2017-08-15 11:07:49 -0700384 str_len = ecomm - comm;
Mark Salyzyn380423a2014-05-27 10:06:34 -0700385 } else {
Max Bires9cf521b2017-08-15 11:07:49 -0700386 str_len = strlen(comm) + 1;
Mark Salyzyn380423a2014-05-27 10:06:34 -0700387 ecomm = "";
388 }
Max Bires9cf521b2017-08-15 11:07:49 -0700389 size_t prefix_len = estr - str;
390 if (prefix_len > LOGGER_ENTRY_MAX_PAYLOAD) {
391 prefix_len = LOGGER_ENTRY_MAX_PAYLOAD;
Mark Salyzynebaf2d62015-10-02 09:22:52 -0700392 }
Max Bires9cf521b2017-08-15 11:07:49 -0700393 size_t suffix_len = strnlen(ecomm, LOGGER_ENTRY_MAX_PAYLOAD - prefix_len);
Jeff Vander Stoep78beb5e2018-05-03 14:57:39 -0700394 message_len =
395 str_len + prefix_len + suffix_len + denial_metadata.length() + 2;
Mark Salyzyn380423a2014-05-27 10:06:34 -0700396
Mark Salyzyn65059532017-03-10 14:31:54 -0800397 if (main) { // begin scope for main buffer
Max Bires9cf521b2017-08-15 11:07:49 -0700398 char newstr[message_len];
Mark Salyzynebaf2d62015-10-02 09:22:52 -0700399
Mark Salyzyn2904c7f2014-09-19 11:59:42 -0700400 *newstr = info ? ANDROID_LOG_INFO : ANDROID_LOG_WARN;
Max Bires9cf521b2017-08-15 11:07:49 -0700401 strlcpy(newstr + 1, comm, str_len);
402 strncpy(newstr + 1 + str_len, str, prefix_len);
403 strncpy(newstr + 1 + str_len + prefix_len, ecomm, suffix_len);
404 strncpy(newstr + 1 + str_len + prefix_len + suffix_len,
Jeff Vander Stoep78beb5e2018-05-03 14:57:39 -0700405 denial_metadata.c_str(), denial_metadata.length());
Mark Salyzyn380423a2014-05-27 10:06:34 -0700406
Chih-Hung Hsieh9ff81552018-08-13 14:22:56 -0700407 rc = logbuf->log(
408 LOG_ID_MAIN, now, uid, pid, tid, newstr,
409 (message_len <= UINT16_MAX) ? (uint16_t)message_len : UINT16_MAX);
Mark Salyzyn380423a2014-05-27 10:06:34 -0700410
Mark Salyzyn88fe7cc2015-02-09 08:21:05 -0800411 if (rc >= 0) {
Hao Wang10d19f62017-12-04 14:10:40 +0800412 notify |= 1 << LOG_ID_MAIN;
Mark Salyzyn88fe7cc2015-02-09 08:21:05 -0800413 }
Mark Salyzynebaf2d62015-10-02 09:22:52 -0700414 // end scope for main buffer
Mark Salyzyn380423a2014-05-27 10:06:34 -0700415 }
416
Mark Salyzyn65059532017-03-10 14:31:54 -0800417 free(const_cast<char*>(commfree));
William Roberts210c5842013-02-08 09:45:26 +0900418 free(str);
419
Mark Salyzyn380423a2014-05-27 10:06:34 -0700420 if (notify) {
Hao Wang10d19f62017-12-04 14:10:40 +0800421 reader->notifyNewLog(notify);
Mark Salyzyn88fe7cc2015-02-09 08:21:05 -0800422 if (rc < 0) {
Max Bires9cf521b2017-08-15 11:07:49 -0700423 rc = message_len;
Mark Salyzyn88fe7cc2015-02-09 08:21:05 -0800424 }
Mark Salyzyn380423a2014-05-27 10:06:34 -0700425 }
William Roberts210c5842013-02-08 09:45:26 +0900426
427 return rc;
428}
429
Mark Salyzyn65059532017-03-10 14:31:54 -0800430int LogAudit::log(char* buf, size_t len) {
431 char* audit = strstr(buf, " audit(");
Mark Salyzynfd2c1cc2015-09-04 11:37:42 -0700432 if (!audit || (audit >= &buf[len])) {
Mark Salyzyne73a18b2014-10-15 08:49:39 -0700433 return 0;
William Roberts210c5842013-02-08 09:45:26 +0900434 }
435
Mark Salyzyn78956ab2014-10-13 09:59:37 -0700436 *audit = '\0';
William Roberts210c5842013-02-08 09:45:26 +0900437
Mark Salyzyn78956ab2014-10-13 09:59:37 -0700438 int rc;
Mark Salyzyn65059532017-03-10 14:31:54 -0800439 char* type = strstr(buf, "type=");
Mark Salyzynfd2c1cc2015-09-04 11:37:42 -0700440 if (type && (type < &buf[len])) {
Mark Salyzyn78956ab2014-10-13 09:59:37 -0700441 rc = logPrint("%s %s", type, audit + 1);
442 } else {
443 rc = logPrint("%s", audit + 1);
William Roberts210c5842013-02-08 09:45:26 +0900444 }
Mark Salyzyn78956ab2014-10-13 09:59:37 -0700445 *audit = ' ';
446 return rc;
William Roberts210c5842013-02-08 09:45:26 +0900447}
448
449int LogAudit::getLogSocket() {
450 int fd = audit_open();
451 if (fd < 0) {
452 return fd;
453 }
Nick Kralevichd8774052014-11-19 13:33:22 -0800454 if (audit_setup(fd, getpid()) < 0) {
William Roberts210c5842013-02-08 09:45:26 +0900455 audit_close(fd);
456 fd = -1;
457 }
William Roberts210c5842013-02-08 09:45:26 +0900458 return fd;
459}