William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 1 | /* |
| 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 | |
Tom Cherry | 64e9016 | 2020-05-07 14:44:43 -0700 | [diff] [blame] | 17 | #include "LogAudit.h" |
| 18 | |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 19 | #include <ctype.h> |
Mark Salyzyn | 29eb570 | 2015-03-03 16:21:27 -0800 | [diff] [blame] | 20 | #include <endian.h> |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 21 | #include <errno.h> |
Mark Salyzyn | e0fa291 | 2014-04-28 16:39:04 -0700 | [diff] [blame] | 22 | #include <limits.h> |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 23 | #include <stdarg.h> |
Chih-Hung Hsieh | 08d470b | 2018-08-13 14:22:56 -0700 | [diff] [blame] | 24 | #include <stdint.h> |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 25 | #include <stdlib.h> |
Mark Salyzyn | 317bfb9 | 2016-02-23 08:55:43 -0800 | [diff] [blame] | 26 | #include <string.h> |
Mark Salyzyn | 8daa9af | 2014-04-28 14:07:23 -0700 | [diff] [blame] | 27 | #include <sys/prctl.h> |
Mark Salyzyn | e9bebd0 | 2014-04-03 09:55:26 -0700 | [diff] [blame] | 28 | #include <sys/uio.h> |
Mark Salyzyn | 7ee2aef | 2014-09-28 14:41:50 -0700 | [diff] [blame] | 29 | #include <syslog.h> |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 30 | |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 31 | #include <fstream> |
| 32 | #include <sstream> |
| 33 | |
Mark Salyzyn | c8d3194 | 2016-11-03 10:29:23 -0700 | [diff] [blame] | 34 | #include <android-base/macros.h> |
Tom Cherry | 68261ee | 2020-07-28 09:51:54 -0700 | [diff] [blame] | 35 | #include <android-base/properties.h> |
Mark Salyzyn | e3aeeee | 2015-03-17 07:56:32 -0700 | [diff] [blame] | 36 | #include <private/android_filesystem_config.h> |
Mark Salyzyn | 29eb570 | 2015-03-03 16:21:27 -0800 | [diff] [blame] | 37 | #include <private/android_logger.h> |
| 38 | |
Mark Salyzyn | ae4d928 | 2014-10-15 08:49:39 -0700 | [diff] [blame] | 39 | #include "LogKlog.h" |
Mark Salyzyn | a2c0222 | 2016-12-13 10:31:29 -0800 | [diff] [blame] | 40 | #include "LogUtils.h" |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 41 | #include "libaudit.h" |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 42 | |
Tom Cherry | 68261ee | 2020-07-28 09:51:54 -0700 | [diff] [blame] | 43 | using android::base::GetBoolProperty; |
| 44 | |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 45 | #define KMSG_PRIORITY(PRI) \ |
| 46 | '<', '0' + LOG_MAKEPRI(LOG_AUTH, LOG_PRI(PRI)) / 10, \ |
| 47 | '0' + LOG_MAKEPRI(LOG_AUTH, LOG_PRI(PRI)) % 10, '>' |
Mark Salyzyn | 7ee2aef | 2014-09-28 14:41:50 -0700 | [diff] [blame] | 48 | |
Tom Cherry | 68630a0 | 2020-05-11 16:29:29 -0700 | [diff] [blame] | 49 | LogAudit::LogAudit(LogBuffer* buf, int fdDmesg, LogStatistics* stats) |
Jeff Vander Stoep | 54c7a5f | 2018-01-03 11:04:26 -0800 | [diff] [blame] | 50 | : SocketListener(getLogSocket(), false), |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 51 | logbuf(buf), |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 52 | fdDmesg(fdDmesg), |
Tom Cherry | 68261ee | 2020-07-28 09:51:54 -0700 | [diff] [blame] | 53 | main(GetBoolProperty("ro.logd.auditd.main", true)), |
| 54 | events(GetBoolProperty("ro.logd.auditd.events", true)), |
Tom Cherry | 64e9016 | 2020-05-07 14:44:43 -0700 | [diff] [blame] | 55 | initialized(false), |
| 56 | stats_(stats) { |
Sami Tolvanen | a742d10 | 2016-06-14 18:04:43 +0000 | [diff] [blame] | 57 | static const char auditd_message[] = { KMSG_PRIORITY(LOG_INFO), |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 58 | 'l', |
| 59 | 'o', |
| 60 | 'g', |
| 61 | 'd', |
| 62 | '.', |
| 63 | 'a', |
| 64 | 'u', |
| 65 | 'd', |
| 66 | 'i', |
| 67 | 't', |
| 68 | 'd', |
| 69 | ':', |
| 70 | ' ', |
| 71 | 's', |
| 72 | 't', |
| 73 | 'a', |
| 74 | 'r', |
| 75 | 't', |
| 76 | '\n' }; |
Sami Tolvanen | a742d10 | 2016-06-14 18:04:43 +0000 | [diff] [blame] | 77 | write(fdDmesg, auditd_message, sizeof(auditd_message)); |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 78 | } |
| 79 | |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 80 | bool LogAudit::onDataAvailable(SocketClient* cli) { |
Mark Salyzyn | eb06de7 | 2014-10-13 09:59:37 -0700 | [diff] [blame] | 81 | if (!initialized) { |
| 82 | prctl(PR_SET_NAME, "logd.auditd"); |
| 83 | initialized = true; |
| 84 | } |
Mark Salyzyn | 8daa9af | 2014-04-28 14:07:23 -0700 | [diff] [blame] | 85 | |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 86 | struct audit_message rep; |
| 87 | |
Mark Salyzyn | e0fa291 | 2014-04-28 16:39:04 -0700 | [diff] [blame] | 88 | rep.nlh.nlmsg_type = 0; |
| 89 | rep.nlh.nlmsg_len = 0; |
| 90 | rep.data[0] = '\0'; |
| 91 | |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 92 | if (audit_get_reply(cli->getSocket(), &rep, GET_REPLY_BLOCKING, 0) < 0) { |
| 93 | SLOGE("Failed on audit_get_reply with error: %s", strerror(errno)); |
| 94 | return false; |
| 95 | } |
| 96 | |
Mark Salyzyn | 247d682 | 2017-01-03 14:00:19 -0800 | [diff] [blame] | 97 | logPrint("type=%d %.*s", rep.nlh.nlmsg_type, rep.nlh.nlmsg_len, rep.data); |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 98 | |
| 99 | return true; |
| 100 | } |
| 101 | |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 102 | static inline bool hasMetadata(char* str, int str_len) { |
| 103 | // need to check and see if str already contains bug metadata from |
| 104 | // possibility of stuttering if log audit crashes and then reloads kernel |
| 105 | // messages. Kernel denials that contain metadata will either end in |
| 106 | // "b/[0-9]+$" or "b/[0-9]+ duplicate messages suppressed$" which will put |
| 107 | // a '/' character at either 9 or 39 indices away from the end of the str. |
| 108 | return str_len >= 39 && |
| 109 | (str[str_len - 9] == '/' || str[str_len - 39] == '/'); |
| 110 | } |
| 111 | |
| 112 | std::map<std::string, std::string> LogAudit::populateDenialMap() { |
Tri Vo | 57b2e8c | 2019-01-23 09:58:35 -0800 | [diff] [blame] | 113 | std::ifstream bug_file("/vendor/etc/selinux/selinux_denial_metadata"); |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 114 | std::string line; |
Jeff Vander Stoep | d885890 | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 115 | // allocate a map for the static map pointer in auditParse to keep track of, |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 116 | // this function only runs once |
| 117 | std::map<std::string, std::string> denial_to_bug; |
| 118 | if (bug_file.good()) { |
| 119 | std::string scontext; |
| 120 | std::string tcontext; |
| 121 | std::string tclass; |
| 122 | std::string bug_num; |
| 123 | while (std::getline(bug_file, line)) { |
| 124 | std::stringstream split_line(line); |
| 125 | split_line >> scontext >> tcontext >> tclass >> bug_num; |
| 126 | denial_to_bug.emplace(scontext + tcontext + tclass, bug_num); |
| 127 | } |
| 128 | } |
| 129 | return denial_to_bug; |
| 130 | } |
| 131 | |
| 132 | std::string LogAudit::denialParse(const std::string& denial, char terminator, |
| 133 | const std::string& search_term) { |
| 134 | size_t start_index = denial.find(search_term); |
| 135 | if (start_index != std::string::npos) { |
| 136 | start_index += search_term.length(); |
| 137 | return denial.substr( |
| 138 | start_index, denial.find(terminator, start_index) - start_index); |
| 139 | } |
| 140 | return ""; |
| 141 | } |
| 142 | |
Jeff Vander Stoep | d885890 | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 143 | void LogAudit::auditParse(const std::string& string, uid_t uid, |
| 144 | std::string* bug_num) { |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 145 | static std::map<std::string, std::string> denial_to_bug = |
| 146 | populateDenialMap(); |
| 147 | std::string scontext = denialParse(string, ':', "scontext=u:object_r:"); |
| 148 | std::string tcontext = denialParse(string, ':', "tcontext=u:object_r:"); |
| 149 | std::string tclass = denialParse(string, ' ', "tclass="); |
| 150 | if (scontext.empty()) { |
| 151 | scontext = denialParse(string, ':', "scontext=u:r:"); |
| 152 | } |
| 153 | if (tcontext.empty()) { |
| 154 | tcontext = denialParse(string, ':', "tcontext=u:r:"); |
| 155 | } |
| 156 | auto search = denial_to_bug.find(scontext + tcontext + tclass); |
| 157 | if (search != denial_to_bug.end()) { |
Ashwini Oruganti | 1d02c2a | 2019-09-18 14:25:26 -0700 | [diff] [blame] | 158 | bug_num->assign(" " + search->second); |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 159 | } else { |
| 160 | bug_num->assign(""); |
| 161 | } |
Jeff Vander Stoep | d885890 | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 162 | |
Dan Austin | b43eb94 | 2018-11-27 07:30:11 -0800 | [diff] [blame] | 163 | // Ensure the uid name is not null before passing it to the bug string. |
Jeff Vander Stoep | d885890 | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 164 | if (uid >= AID_APP_START && uid <= AID_APP_END) { |
Dan Austin | b43eb94 | 2018-11-27 07:30:11 -0800 | [diff] [blame] | 165 | char* uidname = android::uidToName(uid); |
| 166 | if (uidname) { |
| 167 | bug_num->append(" app="); |
| 168 | bug_num->append(uidname); |
| 169 | free(uidname); |
| 170 | } |
Jeff Vander Stoep | d885890 | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 171 | } |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 172 | } |
| 173 | |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 174 | int LogAudit::logPrint(const char* fmt, ...) { |
Yi Kong | c8d09dd | 2018-07-13 17:39:22 -0700 | [diff] [blame] | 175 | if (fmt == nullptr) { |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 176 | return -EINVAL; |
| 177 | } |
| 178 | |
| 179 | va_list args; |
| 180 | |
Yi Kong | c8d09dd | 2018-07-13 17:39:22 -0700 | [diff] [blame] | 181 | char* str = nullptr; |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 182 | va_start(args, fmt); |
| 183 | int rc = vasprintf(&str, fmt, args); |
| 184 | va_end(args); |
| 185 | |
| 186 | if (rc < 0) { |
| 187 | return rc; |
| 188 | } |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 189 | char* cp; |
Nick Kralevich | 2e58867 | 2017-01-03 10:35:34 -0800 | [diff] [blame] | 190 | // Work around kernels missing |
| 191 | // https://github.com/torvalds/linux/commit/b8f89caafeb55fba75b74bea25adc4e4cd91be67 |
| 192 | // Such kernels improperly add newlines inside audit messages. |
| 193 | while ((cp = strchr(str, '\n'))) { |
| 194 | *cp = ' '; |
| 195 | } |
| 196 | |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 197 | while ((cp = strstr(str, " "))) { |
| 198 | memmove(cp, cp + 1, strlen(cp + 1) + 1); |
| 199 | } |
Jeff Vander Stoep | d885890 | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 200 | pid_t pid = getpid(); |
| 201 | pid_t tid = gettid(); |
| 202 | uid_t uid = AID_LOGD; |
| 203 | static const char pid_str[] = " pid="; |
| 204 | char* pidptr = strstr(str, pid_str); |
| 205 | if (pidptr && isdigit(pidptr[sizeof(pid_str) - 1])) { |
| 206 | cp = pidptr + sizeof(pid_str) - 1; |
| 207 | pid = 0; |
| 208 | while (isdigit(*cp)) { |
| 209 | pid = (pid * 10) + (*cp - '0'); |
| 210 | ++cp; |
| 211 | } |
| 212 | tid = pid; |
Tom Cherry | 64e9016 | 2020-05-07 14:44:43 -0700 | [diff] [blame] | 213 | uid = stats_->PidToUid(pid); |
Jeff Vander Stoep | d885890 | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 214 | memmove(pidptr, cp, strlen(cp) + 1); |
| 215 | } |
| 216 | |
Sami Tolvanen | a742d10 | 2016-06-14 18:04:43 +0000 | [diff] [blame] | 217 | bool info = strstr(str, " permissive=1") || strstr(str, " policy loaded "); |
Jeff Vander Stoep | d885890 | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 218 | static std::string denial_metadata; |
Mark Salyzyn | eb06de7 | 2014-10-13 09:59:37 -0700 | [diff] [blame] | 219 | if ((fdDmesg >= 0) && initialized) { |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 220 | struct iovec iov[4]; |
Mark Salyzyn | 7ee2aef | 2014-09-28 14:41:50 -0700 | [diff] [blame] | 221 | static const char log_info[] = { KMSG_PRIORITY(LOG_INFO) }; |
| 222 | static const char log_warning[] = { KMSG_PRIORITY(LOG_WARNING) }; |
Mark Salyzyn | 4d205f8 | 2016-07-15 15:45:58 -0700 | [diff] [blame] | 223 | static const char newline[] = "\n"; |
Mark Salyzyn | e9bebd0 | 2014-04-03 09:55:26 -0700 | [diff] [blame] | 224 | |
Nick Kralevich | 512a7bf | 2019-04-24 13:29:35 -0700 | [diff] [blame] | 225 | auditParse(str, uid, &denial_metadata); |
| 226 | iov[0].iov_base = info ? const_cast<char*>(log_info) : const_cast<char*>(log_warning); |
| 227 | iov[0].iov_len = info ? sizeof(log_info) : sizeof(log_warning); |
| 228 | iov[1].iov_base = str; |
| 229 | iov[1].iov_len = strlen(str); |
| 230 | iov[2].iov_base = const_cast<char*>(denial_metadata.c_str()); |
| 231 | iov[2].iov_len = denial_metadata.length(); |
| 232 | iov[3].iov_base = const_cast<char*>(newline); |
| 233 | iov[3].iov_len = strlen(newline); |
Mark Salyzyn | e9bebd0 | 2014-04-03 09:55:26 -0700 | [diff] [blame] | 234 | |
Nick Kralevich | 512a7bf | 2019-04-24 13:29:35 -0700 | [diff] [blame] | 235 | writev(fdDmesg, iov, arraysize(iov)); |
Mark Salyzyn | e9bebd0 | 2014-04-03 09:55:26 -0700 | [diff] [blame] | 236 | } |
| 237 | |
Mark Salyzyn | ce80da3 | 2016-12-29 15:16:06 -0800 | [diff] [blame] | 238 | if (!main && !events) { |
| 239 | free(str); |
| 240 | return 0; |
| 241 | } |
| 242 | |
Bernie Innocenti | 804e7d8 | 2019-01-16 15:25:18 +0900 | [diff] [blame] | 243 | log_time now(log_time::EPOCH); |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 244 | |
| 245 | static const char audit_str[] = " audit("; |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 246 | char* timeptr = strstr(str, audit_str); |
Tom Cherry | f2c2746 | 2020-04-08 14:36:05 -0700 | [diff] [blame] | 247 | if (timeptr && ((cp = now.strptime(timeptr + sizeof(audit_str) - 1, "%s.%q"))) && |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 248 | (*cp == ':')) { |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 249 | memcpy(timeptr + sizeof(audit_str) - 1, "0.0", 3); |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 250 | memmove(timeptr + sizeof(audit_str) - 1 + 3, cp, strlen(cp) + 1); |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 251 | } else { |
Mark Salyzyn | b6bee33 | 2015-09-08 08:56:32 -0700 | [diff] [blame] | 252 | now = log_time(CLOCK_REALTIME); |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 253 | } |
| 254 | |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 255 | // log to events |
| 256 | |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 257 | size_t str_len = strnlen(str, LOGGER_ENTRY_MAX_PAYLOAD); |
| 258 | if (((fdDmesg < 0) || !initialized) && !hasMetadata(str, str_len)) |
Jeff Vander Stoep | d885890 | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 259 | auditParse(str, uid, &denial_metadata); |
| 260 | str_len = (str_len + denial_metadata.length() <= LOGGER_ENTRY_MAX_PAYLOAD) |
| 261 | ? str_len + denial_metadata.length() |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 262 | : LOGGER_ENTRY_MAX_PAYLOAD; |
| 263 | size_t message_len = str_len + sizeof(android_log_event_string_t); |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 264 | |
Tom Cherry | cef47bb | 2020-05-04 17:10:16 -0700 | [diff] [blame] | 265 | unsigned int notify = 0; |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 266 | |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 267 | if (events) { // begin scope for event buffer |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 268 | uint32_t buffer[(message_len + sizeof(uint32_t) - 1) / sizeof(uint32_t)]; |
Mark Salyzyn | ddda212 | 2015-10-02 09:22:52 -0700 | [diff] [blame] | 269 | |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 270 | android_log_event_string_t* event = |
| 271 | reinterpret_cast<android_log_event_string_t*>(buffer); |
Mark Salyzyn | 29eb570 | 2015-03-03 16:21:27 -0800 | [diff] [blame] | 272 | event->header.tag = htole32(AUDITD_LOG_TAG); |
Nick Kralevich | 58ba58a | 2015-04-07 01:25:43 -0700 | [diff] [blame] | 273 | event->type = EVENT_TYPE_STRING; |
Max Bires | b871668 | 2017-09-14 13:01:28 -0700 | [diff] [blame] | 274 | event->length = htole32(str_len); |
Jeff Vander Stoep | d885890 | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 275 | memcpy(event->data, str, str_len - denial_metadata.length()); |
| 276 | memcpy(event->data + str_len - denial_metadata.length(), |
| 277 | denial_metadata.c_str(), denial_metadata.length()); |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 278 | |
Tom Cherry | d5b3838 | 2020-05-12 13:16:41 -0700 | [diff] [blame] | 279 | rc = logbuf->Log(LOG_ID_EVENTS, now, uid, pid, tid, reinterpret_cast<char*>(event), |
| 280 | (message_len <= UINT16_MAX) ? (uint16_t)message_len : UINT16_MAX); |
Mark Salyzyn | 202e153 | 2015-02-09 08:21:05 -0800 | [diff] [blame] | 281 | if (rc >= 0) { |
Hao Wang | f6e2296 | 2017-12-04 14:10:40 +0800 | [diff] [blame] | 282 | notify |= 1 << LOG_ID_EVENTS; |
Mark Salyzyn | 202e153 | 2015-02-09 08:21:05 -0800 | [diff] [blame] | 283 | } |
Mark Salyzyn | ddda212 | 2015-10-02 09:22:52 -0700 | [diff] [blame] | 284 | // end scope for event buffer |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 285 | } |
| 286 | |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 287 | // log to main |
| 288 | |
| 289 | static const char comm_str[] = " comm=\""; |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 290 | const char* comm = strstr(str, comm_str); |
| 291 | const char* estr = str + strlen(str); |
Yi Kong | c8d09dd | 2018-07-13 17:39:22 -0700 | [diff] [blame] | 292 | const char* commfree = nullptr; |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 293 | if (comm) { |
| 294 | estr = comm; |
| 295 | comm += sizeof(comm_str) - 1; |
| 296 | } else if (pid == getpid()) { |
| 297 | pid = tid; |
| 298 | comm = "auditd"; |
Mark Salyzyn | ed777e9 | 2015-06-24 16:22:54 -0700 | [diff] [blame] | 299 | } else { |
Tom Cherry | 64e9016 | 2020-05-07 14:44:43 -0700 | [diff] [blame] | 300 | comm = commfree = stats_->PidToName(pid); |
Mark Salyzyn | ed777e9 | 2015-06-24 16:22:54 -0700 | [diff] [blame] | 301 | if (!comm) { |
| 302 | comm = "unknown"; |
| 303 | } |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 304 | } |
| 305 | |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 306 | const char* ecomm = strchr(comm, '"'); |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 307 | if (ecomm) { |
| 308 | ++ecomm; |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 309 | str_len = ecomm - comm; |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 310 | } else { |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 311 | str_len = strlen(comm) + 1; |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 312 | ecomm = ""; |
| 313 | } |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 314 | size_t prefix_len = estr - str; |
| 315 | if (prefix_len > LOGGER_ENTRY_MAX_PAYLOAD) { |
| 316 | prefix_len = LOGGER_ENTRY_MAX_PAYLOAD; |
Mark Salyzyn | ddda212 | 2015-10-02 09:22:52 -0700 | [diff] [blame] | 317 | } |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 318 | size_t suffix_len = strnlen(ecomm, LOGGER_ENTRY_MAX_PAYLOAD - prefix_len); |
Jeff Vander Stoep | d885890 | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 319 | message_len = |
| 320 | str_len + prefix_len + suffix_len + denial_metadata.length() + 2; |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 321 | |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 322 | if (main) { // begin scope for main buffer |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 323 | char newstr[message_len]; |
Mark Salyzyn | ddda212 | 2015-10-02 09:22:52 -0700 | [diff] [blame] | 324 | |
Mark Salyzyn | 6bdeee0 | 2014-09-19 11:59:42 -0700 | [diff] [blame] | 325 | *newstr = info ? ANDROID_LOG_INFO : ANDROID_LOG_WARN; |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 326 | strlcpy(newstr + 1, comm, str_len); |
| 327 | strncpy(newstr + 1 + str_len, str, prefix_len); |
| 328 | strncpy(newstr + 1 + str_len + prefix_len, ecomm, suffix_len); |
| 329 | strncpy(newstr + 1 + str_len + prefix_len + suffix_len, |
Jeff Vander Stoep | d885890 | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 330 | denial_metadata.c_str(), denial_metadata.length()); |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 331 | |
Tom Cherry | d5b3838 | 2020-05-12 13:16:41 -0700 | [diff] [blame] | 332 | rc = logbuf->Log(LOG_ID_MAIN, now, uid, pid, tid, newstr, |
| 333 | (message_len <= UINT16_MAX) ? (uint16_t)message_len : UINT16_MAX); |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 334 | |
Mark Salyzyn | 202e153 | 2015-02-09 08:21:05 -0800 | [diff] [blame] | 335 | if (rc >= 0) { |
Hao Wang | f6e2296 | 2017-12-04 14:10:40 +0800 | [diff] [blame] | 336 | notify |= 1 << LOG_ID_MAIN; |
Mark Salyzyn | 202e153 | 2015-02-09 08:21:05 -0800 | [diff] [blame] | 337 | } |
Mark Salyzyn | ddda212 | 2015-10-02 09:22:52 -0700 | [diff] [blame] | 338 | // end scope for main buffer |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 339 | } |
| 340 | |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 341 | free(const_cast<char*>(commfree)); |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 342 | free(str); |
| 343 | |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 344 | if (notify) { |
Mark Salyzyn | 202e153 | 2015-02-09 08:21:05 -0800 | [diff] [blame] | 345 | if (rc < 0) { |
Max Bires | 4214d13 | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 346 | rc = message_len; |
Mark Salyzyn | 202e153 | 2015-02-09 08:21:05 -0800 | [diff] [blame] | 347 | } |
Mark Salyzyn | e4369d6 | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 348 | } |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 349 | |
| 350 | return rc; |
| 351 | } |
| 352 | |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 353 | int LogAudit::log(char* buf, size_t len) { |
| 354 | char* audit = strstr(buf, " audit("); |
Mark Salyzyn | 151beac | 2015-09-04 11:37:42 -0700 | [diff] [blame] | 355 | if (!audit || (audit >= &buf[len])) { |
Mark Salyzyn | ae4d928 | 2014-10-15 08:49:39 -0700 | [diff] [blame] | 356 | return 0; |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 357 | } |
| 358 | |
Mark Salyzyn | eb06de7 | 2014-10-13 09:59:37 -0700 | [diff] [blame] | 359 | *audit = '\0'; |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 360 | |
Mark Salyzyn | eb06de7 | 2014-10-13 09:59:37 -0700 | [diff] [blame] | 361 | int rc; |
Mark Salyzyn | 501c373 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 362 | char* type = strstr(buf, "type="); |
Mark Salyzyn | 151beac | 2015-09-04 11:37:42 -0700 | [diff] [blame] | 363 | if (type && (type < &buf[len])) { |
Mark Salyzyn | eb06de7 | 2014-10-13 09:59:37 -0700 | [diff] [blame] | 364 | rc = logPrint("%s %s", type, audit + 1); |
| 365 | } else { |
| 366 | rc = logPrint("%s", audit + 1); |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 367 | } |
Mark Salyzyn | eb06de7 | 2014-10-13 09:59:37 -0700 | [diff] [blame] | 368 | *audit = ' '; |
| 369 | return rc; |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | int LogAudit::getLogSocket() { |
| 373 | int fd = audit_open(); |
| 374 | if (fd < 0) { |
| 375 | return fd; |
| 376 | } |
Nick Kralevich | c234a1b | 2014-11-19 13:33:22 -0800 | [diff] [blame] | 377 | if (audit_setup(fd, getpid()) < 0) { |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 378 | audit_close(fd); |
| 379 | fd = -1; |
| 380 | } |
William Roberts | 29d238d | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 381 | return fd; |
| 382 | } |