William Roberts | 210c584 | 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 | 479b503 | 2020-05-07 14:44:43 -0700 | [diff] [blame] | 17 | #include "LogAudit.h" |
| 18 | |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 19 | #include <ctype.h> |
Mark Salyzyn | 64679af | 2015-03-03 16:21:27 -0800 | [diff] [blame] | 20 | #include <endian.h> |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 21 | #include <errno.h> |
Mark Salyzyn | 59d0910 | 2014-04-28 16:39:04 -0700 | [diff] [blame] | 22 | #include <limits.h> |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 23 | #include <stdarg.h> |
Chih-Hung Hsieh | 9ff8155 | 2018-08-13 14:22:56 -0700 | [diff] [blame] | 24 | #include <stdint.h> |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 25 | #include <stdlib.h> |
Mark Salyzyn | a92051d | 2016-02-23 08:55:43 -0800 | [diff] [blame] | 26 | #include <string.h> |
Mark Salyzyn | 4e5efdc | 2014-04-28 14:07:23 -0700 | [diff] [blame] | 27 | #include <sys/prctl.h> |
Mark Salyzyn | ae0a7bf | 2014-04-03 09:55:26 -0700 | [diff] [blame] | 28 | #include <sys/uio.h> |
Mark Salyzyn | aa773a8 | 2014-09-28 14:41:50 -0700 | [diff] [blame] | 29 | #include <syslog.h> |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 30 | |
Yi-Yo Chiang | 7e7eee4 | 2021-11-08 19:31:33 +0800 | [diff] [blame] | 31 | #include <android-base/file.h> |
| 32 | #include <android-base/logging.h> |
Mark Salyzyn | 071f469 | 2016-11-03 10:29:23 -0700 | [diff] [blame] | 33 | #include <android-base/macros.h> |
Tom Cherry | 4140117 | 2020-07-28 09:51:54 -0700 | [diff] [blame] | 34 | #include <android-base/properties.h> |
Yi-Yo Chiang | 7e7eee4 | 2021-11-08 19:31:33 +0800 | [diff] [blame] | 35 | #include <android-base/strings.h> |
Mark Salyzyn | b485395 | 2015-03-17 07:56:32 -0700 | [diff] [blame] | 36 | #include <private/android_filesystem_config.h> |
Mark Salyzyn | 64679af | 2015-03-03 16:21:27 -0800 | [diff] [blame] | 37 | #include <private/android_logger.h> |
| 38 | |
Mark Salyzyn | e73a18b | 2014-10-15 08:49:39 -0700 | [diff] [blame] | 39 | #include "LogKlog.h" |
Mark Salyzyn | 24a57dc | 2016-12-13 10:31:29 -0800 | [diff] [blame] | 40 | #include "LogUtils.h" |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 41 | #include "libaudit.h" |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 42 | |
Yo Chiang | 2997fa6 | 2021-01-27 19:50:43 +0800 | [diff] [blame] | 43 | using namespace std::string_literals; |
| 44 | |
Tom Cherry | 4140117 | 2020-07-28 09:51:54 -0700 | [diff] [blame] | 45 | using android::base::GetBoolProperty; |
| 46 | |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 47 | #define KMSG_PRIORITY(PRI) \ |
| 48 | '<', '0' + LOG_MAKEPRI(LOG_AUTH, LOG_PRI(PRI)) / 10, \ |
| 49 | '0' + LOG_MAKEPRI(LOG_AUTH, LOG_PRI(PRI)) % 10, '>' |
Mark Salyzyn | aa773a8 | 2014-09-28 14:41:50 -0700 | [diff] [blame] | 50 | |
Tom Cherry | 5ecfbf0 | 2020-05-11 16:29:29 -0700 | [diff] [blame] | 51 | LogAudit::LogAudit(LogBuffer* buf, int fdDmesg, LogStatistics* stats) |
Jeff Vander Stoep | b66ed0f | 2018-01-03 11:04:26 -0800 | [diff] [blame] | 52 | : SocketListener(getLogSocket(), false), |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 53 | logbuf(buf), |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 54 | fdDmesg(fdDmesg), |
Tom Cherry | 4140117 | 2020-07-28 09:51:54 -0700 | [diff] [blame] | 55 | main(GetBoolProperty("ro.logd.auditd.main", true)), |
| 56 | events(GetBoolProperty("ro.logd.auditd.events", true)), |
Tom Cherry | 479b503 | 2020-05-07 14:44:43 -0700 | [diff] [blame] | 57 | initialized(false), |
| 58 | stats_(stats) { |
Sami Tolvanen | ba23953 | 2016-06-14 18:04:43 +0000 | [diff] [blame] | 59 | static const char auditd_message[] = { KMSG_PRIORITY(LOG_INFO), |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 60 | 'l', |
| 61 | 'o', |
| 62 | 'g', |
| 63 | 'd', |
| 64 | '.', |
| 65 | 'a', |
| 66 | 'u', |
| 67 | 'd', |
| 68 | 'i', |
| 69 | 't', |
| 70 | 'd', |
| 71 | ':', |
| 72 | ' ', |
| 73 | 's', |
| 74 | 't', |
| 75 | 'a', |
| 76 | 'r', |
| 77 | 't', |
| 78 | '\n' }; |
Sami Tolvanen | ba23953 | 2016-06-14 18:04:43 +0000 | [diff] [blame] | 79 | write(fdDmesg, auditd_message, sizeof(auditd_message)); |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 80 | } |
| 81 | |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 82 | bool LogAudit::onDataAvailable(SocketClient* cli) { |
Mark Salyzyn | 78956ab | 2014-10-13 09:59:37 -0700 | [diff] [blame] | 83 | if (!initialized) { |
| 84 | prctl(PR_SET_NAME, "logd.auditd"); |
| 85 | initialized = true; |
| 86 | } |
Mark Salyzyn | 4e5efdc | 2014-04-28 14:07:23 -0700 | [diff] [blame] | 87 | |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 88 | struct audit_message rep; |
| 89 | |
Mark Salyzyn | 59d0910 | 2014-04-28 16:39:04 -0700 | [diff] [blame] | 90 | rep.nlh.nlmsg_type = 0; |
| 91 | rep.nlh.nlmsg_len = 0; |
| 92 | rep.data[0] = '\0'; |
| 93 | |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 94 | if (audit_get_reply(cli->getSocket(), &rep, GET_REPLY_BLOCKING, 0) < 0) { |
| 95 | SLOGE("Failed on audit_get_reply with error: %s", strerror(errno)); |
| 96 | return false; |
| 97 | } |
| 98 | |
Mark Salyzyn | ec9b9ad | 2017-01-03 14:00:19 -0800 | [diff] [blame] | 99 | logPrint("type=%d %.*s", rep.nlh.nlmsg_type, rep.nlh.nlmsg_len, rep.data); |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 100 | |
| 101 | return true; |
| 102 | } |
| 103 | |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 104 | static inline bool hasMetadata(char* str, int str_len) { |
| 105 | // need to check and see if str already contains bug metadata from |
| 106 | // possibility of stuttering if log audit crashes and then reloads kernel |
| 107 | // messages. Kernel denials that contain metadata will either end in |
| 108 | // "b/[0-9]+$" or "b/[0-9]+ duplicate messages suppressed$" which will put |
| 109 | // a '/' character at either 9 or 39 indices away from the end of the str. |
| 110 | return str_len >= 39 && |
| 111 | (str[str_len - 9] == '/' || str[str_len - 39] == '/'); |
| 112 | } |
| 113 | |
Yi-Yo Chiang | 6d026fd | 2021-11-09 14:54:56 +0800 | [diff] [blame] | 114 | static auto populateDenialMap() { |
| 115 | std::map<std::tuple<std::string, std::string, std::string>, std::string> denial_to_bug; |
Yi-Yo Chiang | 7e7eee4 | 2021-11-08 19:31:33 +0800 | [diff] [blame] | 116 | // Order matters. Only the first occurrence of a |
| 117 | // (scontext, tcontext, tclass) combination is recorded. |
| 118 | for (const auto& bug_map_file : |
| 119 | {"/system_ext/etc/selinux/bug_map"s, "/vendor/etc/selinux/selinux_denial_metadata"s, |
| 120 | "/system/etc/selinux/bug_map"s}) { |
| 121 | std::string file_contents; |
| 122 | if (!android::base::ReadFileToString(bug_map_file, &file_contents)) { |
| 123 | continue; |
| 124 | } |
| 125 | int errors = 0; |
| 126 | for (const auto& line : android::base::Split(file_contents, "\n")) { |
| 127 | const auto fields = android::base::Tokenize(line, " "); |
| 128 | if (fields.empty() || android::base::StartsWith(fields.front(), '#')) { |
| 129 | continue; |
| 130 | } |
| 131 | if (fields.size() == 4) { |
| 132 | const std::string& scontext = fields[0]; |
| 133 | const std::string& tcontext = fields[1]; |
| 134 | const std::string& tclass = fields[2]; |
| 135 | const std::string& bug_num = fields[3]; |
| 136 | const auto [it, success] = |
| 137 | denial_to_bug.try_emplace({scontext, tcontext, tclass}, bug_num); |
| 138 | if (!success) { |
| 139 | const auto& [key, value] = *it; |
| 140 | LOG(WARNING) << "Ignored bug_map definition in " << bug_map_file << ": '" |
| 141 | << line |
| 142 | << "', (scontext, tcontext, tclass) denial combination is already " |
| 143 | "tagged with bug metadata '" |
| 144 | << value << "'"; |
| 145 | } |
| 146 | } else { |
| 147 | LOG(ERROR) << "Ignored ill-formed bug_map definition in " << bug_map_file << ": '" |
| 148 | << line << "'"; |
| 149 | ++errors; |
| 150 | } |
| 151 | } |
| 152 | if (errors) { |
| 153 | LOG(ERROR) << "Loaded bug_map file with " << errors << " errors: " << bug_map_file; |
| 154 | } else { |
| 155 | LOG(INFO) << "Loaded bug_map file: " << bug_map_file; |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 156 | } |
| 157 | } |
| 158 | return denial_to_bug; |
| 159 | } |
| 160 | |
| 161 | std::string LogAudit::denialParse(const std::string& denial, char terminator, |
| 162 | const std::string& search_term) { |
| 163 | size_t start_index = denial.find(search_term); |
| 164 | if (start_index != std::string::npos) { |
| 165 | start_index += search_term.length(); |
| 166 | return denial.substr( |
| 167 | start_index, denial.find(terminator, start_index) - start_index); |
| 168 | } |
| 169 | return ""; |
| 170 | } |
| 171 | |
Yo Chiang | 2997fa6 | 2021-01-27 19:50:43 +0800 | [diff] [blame] | 172 | std::string LogAudit::auditParse(const std::string& string, uid_t uid) { |
Yi-Yo Chiang | 6d026fd | 2021-11-09 14:54:56 +0800 | [diff] [blame] | 173 | // Allocate a static map object to memoize the loaded bug_map files. |
| 174 | static auto denial_to_bug = populateDenialMap(); |
| 175 | |
Yo Chiang | 2997fa6 | 2021-01-27 19:50:43 +0800 | [diff] [blame] | 176 | std::string result; |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 177 | std::string scontext = denialParse(string, ':', "scontext=u:object_r:"); |
| 178 | std::string tcontext = denialParse(string, ':', "tcontext=u:object_r:"); |
| 179 | std::string tclass = denialParse(string, ' ', "tclass="); |
| 180 | if (scontext.empty()) { |
| 181 | scontext = denialParse(string, ':', "scontext=u:r:"); |
| 182 | } |
| 183 | if (tcontext.empty()) { |
| 184 | tcontext = denialParse(string, ':', "tcontext=u:r:"); |
| 185 | } |
Yi-Yo Chiang | 6d026fd | 2021-11-09 14:54:56 +0800 | [diff] [blame] | 186 | auto search = denial_to_bug.find({scontext, tcontext, tclass}); |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 187 | if (search != denial_to_bug.end()) { |
Yo Chiang | 2997fa6 | 2021-01-27 19:50:43 +0800 | [diff] [blame] | 188 | result = " bug=" + search->second; |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 189 | } |
Jeff Vander Stoep | 78beb5e | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 190 | |
Dan Austin | 491b824 | 2018-11-27 07:30:11 -0800 | [diff] [blame] | 191 | // Ensure the uid name is not null before passing it to the bug string. |
Jeff Vander Stoep | 78beb5e | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 192 | if (uid >= AID_APP_START && uid <= AID_APP_END) { |
Dan Austin | 491b824 | 2018-11-27 07:30:11 -0800 | [diff] [blame] | 193 | char* uidname = android::uidToName(uid); |
| 194 | if (uidname) { |
Yo Chiang | 2997fa6 | 2021-01-27 19:50:43 +0800 | [diff] [blame] | 195 | result.append(" app="s + uidname); |
Dan Austin | 491b824 | 2018-11-27 07:30:11 -0800 | [diff] [blame] | 196 | free(uidname); |
| 197 | } |
Jeff Vander Stoep | 78beb5e | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 198 | } |
Yo Chiang | 2997fa6 | 2021-01-27 19:50:43 +0800 | [diff] [blame] | 199 | return result; |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 200 | } |
| 201 | |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 202 | int LogAudit::logPrint(const char* fmt, ...) { |
Yi Kong | 36feb15 | 2018-07-13 17:39:22 -0700 | [diff] [blame] | 203 | if (fmt == nullptr) { |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 204 | return -EINVAL; |
| 205 | } |
| 206 | |
| 207 | va_list args; |
| 208 | |
Yi Kong | 36feb15 | 2018-07-13 17:39:22 -0700 | [diff] [blame] | 209 | char* str = nullptr; |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 210 | va_start(args, fmt); |
| 211 | int rc = vasprintf(&str, fmt, args); |
| 212 | va_end(args); |
| 213 | |
| 214 | if (rc < 0) { |
| 215 | return rc; |
| 216 | } |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 217 | char* cp; |
Nick Kralevich | 908486f | 2017-01-03 10:35:34 -0800 | [diff] [blame] | 218 | // Work around kernels missing |
| 219 | // https://github.com/torvalds/linux/commit/b8f89caafeb55fba75b74bea25adc4e4cd91be67 |
| 220 | // Such kernels improperly add newlines inside audit messages. |
| 221 | while ((cp = strchr(str, '\n'))) { |
| 222 | *cp = ' '; |
| 223 | } |
| 224 | |
Jeff Vander Stoep | 78beb5e | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 225 | pid_t pid = getpid(); |
| 226 | pid_t tid = gettid(); |
| 227 | uid_t uid = AID_LOGD; |
| 228 | static const char pid_str[] = " pid="; |
| 229 | char* pidptr = strstr(str, pid_str); |
| 230 | if (pidptr && isdigit(pidptr[sizeof(pid_str) - 1])) { |
| 231 | cp = pidptr + sizeof(pid_str) - 1; |
| 232 | pid = 0; |
| 233 | while (isdigit(*cp)) { |
| 234 | pid = (pid * 10) + (*cp - '0'); |
| 235 | ++cp; |
| 236 | } |
| 237 | tid = pid; |
Tom Cherry | 479b503 | 2020-05-07 14:44:43 -0700 | [diff] [blame] | 238 | uid = stats_->PidToUid(pid); |
Jeff Vander Stoep | 78beb5e | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 239 | memmove(pidptr, cp, strlen(cp) + 1); |
| 240 | } |
| 241 | |
Sami Tolvanen | ba23953 | 2016-06-14 18:04:43 +0000 | [diff] [blame] | 242 | bool info = strstr(str, " permissive=1") || strstr(str, " policy loaded "); |
Jeff Vander Stoep | 78beb5e | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 243 | static std::string denial_metadata; |
Mark Salyzyn | 78956ab | 2014-10-13 09:59:37 -0700 | [diff] [blame] | 244 | if ((fdDmesg >= 0) && initialized) { |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 245 | struct iovec iov[4]; |
Mark Salyzyn | aa773a8 | 2014-09-28 14:41:50 -0700 | [diff] [blame] | 246 | static const char log_info[] = { KMSG_PRIORITY(LOG_INFO) }; |
| 247 | static const char log_warning[] = { KMSG_PRIORITY(LOG_WARNING) }; |
Mark Salyzyn | f815ca7 | 2016-07-15 15:45:58 -0700 | [diff] [blame] | 248 | static const char newline[] = "\n"; |
Mark Salyzyn | ae0a7bf | 2014-04-03 09:55:26 -0700 | [diff] [blame] | 249 | |
Yo Chiang | 2997fa6 | 2021-01-27 19:50:43 +0800 | [diff] [blame] | 250 | denial_metadata = auditParse(str, uid); |
Nick Kralevich | ba406b2 | 2019-04-24 13:29:35 -0700 | [diff] [blame] | 251 | iov[0].iov_base = info ? const_cast<char*>(log_info) : const_cast<char*>(log_warning); |
| 252 | iov[0].iov_len = info ? sizeof(log_info) : sizeof(log_warning); |
| 253 | iov[1].iov_base = str; |
| 254 | iov[1].iov_len = strlen(str); |
| 255 | iov[2].iov_base = const_cast<char*>(denial_metadata.c_str()); |
| 256 | iov[2].iov_len = denial_metadata.length(); |
| 257 | iov[3].iov_base = const_cast<char*>(newline); |
| 258 | iov[3].iov_len = strlen(newline); |
Mark Salyzyn | ae0a7bf | 2014-04-03 09:55:26 -0700 | [diff] [blame] | 259 | |
Nick Kralevich | ba406b2 | 2019-04-24 13:29:35 -0700 | [diff] [blame] | 260 | writev(fdDmesg, iov, arraysize(iov)); |
Mark Salyzyn | ae0a7bf | 2014-04-03 09:55:26 -0700 | [diff] [blame] | 261 | } |
| 262 | |
Mark Salyzyn | caf4386 | 2016-12-29 15:16:06 -0800 | [diff] [blame] | 263 | if (!main && !events) { |
| 264 | free(str); |
| 265 | return 0; |
| 266 | } |
| 267 | |
Bernie Innocenti | 440e035 | 2019-01-16 15:25:18 +0900 | [diff] [blame] | 268 | log_time now(log_time::EPOCH); |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 269 | |
| 270 | static const char audit_str[] = " audit("; |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 271 | char* timeptr = strstr(str, audit_str); |
Tom Cherry | a5ff7ae | 2020-04-08 14:36:05 -0700 | [diff] [blame] | 272 | if (timeptr && ((cp = now.strptime(timeptr + sizeof(audit_str) - 1, "%s.%q"))) && |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 273 | (*cp == ':')) { |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 274 | memcpy(timeptr + sizeof(audit_str) - 1, "0.0", 3); |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 275 | memmove(timeptr + sizeof(audit_str) - 1 + 3, cp, strlen(cp) + 1); |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 276 | } else { |
Mark Salyzyn | 0e2fe42 | 2015-09-08 08:56:32 -0700 | [diff] [blame] | 277 | now = log_time(CLOCK_REALTIME); |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 278 | } |
| 279 | |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 280 | // log to events |
| 281 | |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 282 | size_t str_len = strnlen(str, LOGGER_ENTRY_MAX_PAYLOAD); |
| 283 | if (((fdDmesg < 0) || !initialized) && !hasMetadata(str, str_len)) |
Yo Chiang | 2997fa6 | 2021-01-27 19:50:43 +0800 | [diff] [blame] | 284 | denial_metadata = auditParse(str, uid); |
Jeff Vander Stoep | 78beb5e | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 285 | str_len = (str_len + denial_metadata.length() <= LOGGER_ENTRY_MAX_PAYLOAD) |
| 286 | ? str_len + denial_metadata.length() |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 287 | : LOGGER_ENTRY_MAX_PAYLOAD; |
| 288 | size_t message_len = str_len + sizeof(android_log_event_string_t); |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 289 | |
Tom Cherry | 7e3bc96 | 2020-05-04 17:10:16 -0700 | [diff] [blame] | 290 | unsigned int notify = 0; |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 291 | |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 292 | if (events) { // begin scope for event buffer |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 293 | uint32_t buffer[(message_len + sizeof(uint32_t) - 1) / sizeof(uint32_t)]; |
Mark Salyzyn | ebaf2d6 | 2015-10-02 09:22:52 -0700 | [diff] [blame] | 294 | |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 295 | android_log_event_string_t* event = |
| 296 | reinterpret_cast<android_log_event_string_t*>(buffer); |
Mark Salyzyn | 64679af | 2015-03-03 16:21:27 -0800 | [diff] [blame] | 297 | event->header.tag = htole32(AUDITD_LOG_TAG); |
Nick Kralevich | 253374f | 2015-04-07 01:25:43 -0700 | [diff] [blame] | 298 | event->type = EVENT_TYPE_STRING; |
Max Bires | 42ec64b | 2017-09-14 13:01:28 -0700 | [diff] [blame] | 299 | event->length = htole32(str_len); |
Jeff Vander Stoep | 78beb5e | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 300 | memcpy(event->data, str, str_len - denial_metadata.length()); |
| 301 | memcpy(event->data + str_len - denial_metadata.length(), |
| 302 | denial_metadata.c_str(), denial_metadata.length()); |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 303 | |
Tom Cherry | 0281b20 | 2020-05-12 13:16:41 -0700 | [diff] [blame] | 304 | rc = logbuf->Log(LOG_ID_EVENTS, now, uid, pid, tid, reinterpret_cast<char*>(event), |
| 305 | (message_len <= UINT16_MAX) ? (uint16_t)message_len : UINT16_MAX); |
Mark Salyzyn | 88fe7cc | 2015-02-09 08:21:05 -0800 | [diff] [blame] | 306 | if (rc >= 0) { |
Hao Wang | 10d19f6 | 2017-12-04 14:10:40 +0800 | [diff] [blame] | 307 | notify |= 1 << LOG_ID_EVENTS; |
Mark Salyzyn | 88fe7cc | 2015-02-09 08:21:05 -0800 | [diff] [blame] | 308 | } |
Mark Salyzyn | ebaf2d6 | 2015-10-02 09:22:52 -0700 | [diff] [blame] | 309 | // end scope for event buffer |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 310 | } |
| 311 | |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 312 | // log to main |
| 313 | |
| 314 | static const char comm_str[] = " comm=\""; |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 315 | const char* comm = strstr(str, comm_str); |
| 316 | const char* estr = str + strlen(str); |
Yi Kong | 36feb15 | 2018-07-13 17:39:22 -0700 | [diff] [blame] | 317 | const char* commfree = nullptr; |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 318 | if (comm) { |
| 319 | estr = comm; |
| 320 | comm += sizeof(comm_str) - 1; |
| 321 | } else if (pid == getpid()) { |
| 322 | pid = tid; |
| 323 | comm = "auditd"; |
Mark Salyzyn | 059b758 | 2015-06-24 16:22:54 -0700 | [diff] [blame] | 324 | } else { |
Tom Cherry | 479b503 | 2020-05-07 14:44:43 -0700 | [diff] [blame] | 325 | comm = commfree = stats_->PidToName(pid); |
Mark Salyzyn | 059b758 | 2015-06-24 16:22:54 -0700 | [diff] [blame] | 326 | if (!comm) { |
| 327 | comm = "unknown"; |
| 328 | } |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 329 | } |
| 330 | |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 331 | const char* ecomm = strchr(comm, '"'); |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 332 | if (ecomm) { |
| 333 | ++ecomm; |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 334 | str_len = ecomm - comm; |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 335 | } else { |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 336 | str_len = strlen(comm) + 1; |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 337 | ecomm = ""; |
| 338 | } |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 339 | size_t prefix_len = estr - str; |
| 340 | if (prefix_len > LOGGER_ENTRY_MAX_PAYLOAD) { |
| 341 | prefix_len = LOGGER_ENTRY_MAX_PAYLOAD; |
Mark Salyzyn | ebaf2d6 | 2015-10-02 09:22:52 -0700 | [diff] [blame] | 342 | } |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 343 | size_t suffix_len = strnlen(ecomm, LOGGER_ENTRY_MAX_PAYLOAD - prefix_len); |
Jeff Vander Stoep | 78beb5e | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 344 | message_len = |
| 345 | str_len + prefix_len + suffix_len + denial_metadata.length() + 2; |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 346 | |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 347 | if (main) { // begin scope for main buffer |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 348 | char newstr[message_len]; |
Mark Salyzyn | ebaf2d6 | 2015-10-02 09:22:52 -0700 | [diff] [blame] | 349 | |
Mark Salyzyn | 2904c7f | 2014-09-19 11:59:42 -0700 | [diff] [blame] | 350 | *newstr = info ? ANDROID_LOG_INFO : ANDROID_LOG_WARN; |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 351 | strlcpy(newstr + 1, comm, str_len); |
| 352 | strncpy(newstr + 1 + str_len, str, prefix_len); |
| 353 | strncpy(newstr + 1 + str_len + prefix_len, ecomm, suffix_len); |
| 354 | strncpy(newstr + 1 + str_len + prefix_len + suffix_len, |
Jeff Vander Stoep | 78beb5e | 2018-05-03 14:57:39 -0700 | [diff] [blame] | 355 | denial_metadata.c_str(), denial_metadata.length()); |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 356 | |
Tom Cherry | 0281b20 | 2020-05-12 13:16:41 -0700 | [diff] [blame] | 357 | rc = logbuf->Log(LOG_ID_MAIN, now, uid, pid, tid, newstr, |
| 358 | (message_len <= UINT16_MAX) ? (uint16_t)message_len : UINT16_MAX); |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 359 | |
Mark Salyzyn | 88fe7cc | 2015-02-09 08:21:05 -0800 | [diff] [blame] | 360 | if (rc >= 0) { |
Hao Wang | 10d19f6 | 2017-12-04 14:10:40 +0800 | [diff] [blame] | 361 | notify |= 1 << LOG_ID_MAIN; |
Mark Salyzyn | 88fe7cc | 2015-02-09 08:21:05 -0800 | [diff] [blame] | 362 | } |
Mark Salyzyn | ebaf2d6 | 2015-10-02 09:22:52 -0700 | [diff] [blame] | 363 | // end scope for main buffer |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 364 | } |
| 365 | |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 366 | free(const_cast<char*>(commfree)); |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 367 | free(str); |
| 368 | |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 369 | if (notify) { |
Mark Salyzyn | 88fe7cc | 2015-02-09 08:21:05 -0800 | [diff] [blame] | 370 | if (rc < 0) { |
Max Bires | 9cf521b | 2017-08-15 11:07:49 -0700 | [diff] [blame] | 371 | rc = message_len; |
Mark Salyzyn | 88fe7cc | 2015-02-09 08:21:05 -0800 | [diff] [blame] | 372 | } |
Mark Salyzyn | 380423a | 2014-05-27 10:06:34 -0700 | [diff] [blame] | 373 | } |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 374 | |
| 375 | return rc; |
| 376 | } |
| 377 | |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 378 | int LogAudit::log(char* buf, size_t len) { |
| 379 | char* audit = strstr(buf, " audit("); |
Mark Salyzyn | fd2c1cc | 2015-09-04 11:37:42 -0700 | [diff] [blame] | 380 | if (!audit || (audit >= &buf[len])) { |
Mark Salyzyn | e73a18b | 2014-10-15 08:49:39 -0700 | [diff] [blame] | 381 | return 0; |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 382 | } |
| 383 | |
Mark Salyzyn | 78956ab | 2014-10-13 09:59:37 -0700 | [diff] [blame] | 384 | *audit = '\0'; |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 385 | |
Mark Salyzyn | 78956ab | 2014-10-13 09:59:37 -0700 | [diff] [blame] | 386 | int rc; |
Mark Salyzyn | 6505953 | 2017-03-10 14:31:54 -0800 | [diff] [blame] | 387 | char* type = strstr(buf, "type="); |
Mark Salyzyn | fd2c1cc | 2015-09-04 11:37:42 -0700 | [diff] [blame] | 388 | if (type && (type < &buf[len])) { |
Mark Salyzyn | 78956ab | 2014-10-13 09:59:37 -0700 | [diff] [blame] | 389 | rc = logPrint("%s %s", type, audit + 1); |
| 390 | } else { |
| 391 | rc = logPrint("%s", audit + 1); |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 392 | } |
Mark Salyzyn | 78956ab | 2014-10-13 09:59:37 -0700 | [diff] [blame] | 393 | *audit = ' '; |
| 394 | return rc; |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | int LogAudit::getLogSocket() { |
| 398 | int fd = audit_open(); |
| 399 | if (fd < 0) { |
| 400 | return fd; |
| 401 | } |
Nick Kralevich | d877405 | 2014-11-19 13:33:22 -0800 | [diff] [blame] | 402 | if (audit_setup(fd, getpid()) < 0) { |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 403 | audit_close(fd); |
| 404 | fd = -1; |
| 405 | } |
William Roberts | 210c584 | 2013-02-08 09:45:26 +0900 | [diff] [blame] | 406 | return fd; |
| 407 | } |