blob: 6e1144b674c5f32805bdb50bc26bfbcfab308219 [file] [log] [blame]
Mark Salyzyn0175b072014-02-26 09:50:16 -08001/*
2 * Copyright (C) 2012-2013 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 <dirent.h>
18#include <errno.h>
19#include <fcntl.h>
Tom Cherry0b2a0112019-06-06 13:41:20 -070020#include <linux/capability.h>
Mark Salyzyn11e55cb2015-03-10 16:45:17 -070021#include <poll.h>
Mark Salyzyn882f8562013-12-26 15:13:36 -080022#include <sched.h>
Mark Salyzyn11e55cb2015-03-10 16:45:17 -070023#include <semaphore.h>
24#include <signal.h>
Mark Salyzyn0175b072014-02-26 09:50:16 -080025#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
28#include <sys/capability.h>
Mark Salyzyneb06de72014-10-13 09:59:37 -070029#include <sys/klog.h>
Elliott Hughese5a0f202014-07-18 17:39:41 -070030#include <sys/prctl.h>
Riley Andrewsd98f4e82015-06-08 23:36:34 -070031#include <sys/resource.h>
Mark Salyzyn0175b072014-02-26 09:50:16 -080032#include <sys/stat.h>
33#include <sys/types.h>
Mark Salyzynccbadc62015-03-12 12:25:35 -070034#include <syslog.h>
Mark Salyzyne457b742014-02-19 17:18:31 -080035#include <unistd.h>
Mark Salyzyn0175b072014-02-26 09:50:16 -080036
Mark Salyzynd5600fd2015-06-12 14:59:42 -070037#include <memory>
38
Jorge Lucangeli Obes2bbdbe82016-07-15 13:57:08 -040039#include <android-base/macros.h>
Mark Salyzyn52bd37e2016-11-07 09:39:30 -080040#include <cutils/android_get_control_file.h>
Mark Salyzyne457b742014-02-19 17:18:31 -080041#include <cutils/properties.h>
Mark Salyzyn11e55cb2015-03-10 16:45:17 -070042#include <cutils/sockets.h>
Mark Salyzynff32f3c2015-04-13 14:24:45 -070043#include <log/event_tag_map.h>
William Robertsaeca97b2015-07-31 13:10:36 -070044#include <packagelistparser/packagelistparser.h>
Mark Salyzyne3aeeee2015-03-17 07:56:32 -070045#include <private/android_filesystem_config.h>
Mark Salyzyn5740a462016-03-28 15:42:08 -070046#include <private/android_logger.h>
Suren Baghdasaryan02843332018-12-21 12:30:16 -080047#include <processgroup/sched_policy.h>
Riley Andrewsd98f4e82015-06-08 23:36:34 -070048#include <utils/threads.h>
Mark Salyzyne457b742014-02-19 17:18:31 -080049
Tom Cherryd5b38382020-05-12 13:16:41 -070050#include "ChattyLogBuffer.h"
Mark Salyzyn0175b072014-02-26 09:50:16 -080051#include "CommandListener.h"
William Roberts29d238d2013-02-08 09:45:26 +090052#include "LogAudit.h"
Mark Salyzyn501c3732017-03-10 14:31:54 -080053#include "LogBuffer.h"
Mark Salyzyna1aacb72014-10-15 08:49:39 -070054#include "LogKlog.h"
Mark Salyzyn501c3732017-03-10 14:31:54 -080055#include "LogListener.h"
Tom Cherry64e90162020-05-07 14:44:43 -070056#include "LogStatistics.h"
Tom Cherry1a12ae32020-05-01 16:13:18 -070057#include "LogTags.h"
Mark Salyzyn5ac5c6b2015-08-28 08:02:59 -070058#include "LogUtils.h"
Mark Salyzyn0175b072014-02-26 09:50:16 -080059
Mark Salyzyn501c3732017-03-10 14:31:54 -080060#define KMSG_PRIORITY(PRI) \
61 '<', '0' + LOG_MAKEPRI(LOG_DAEMON, LOG_PRI(PRI)) / 10, \
62 '0' + LOG_MAKEPRI(LOG_DAEMON, LOG_PRI(PRI)) % 10, '>'
Mark Salyzynccbadc62015-03-12 12:25:35 -070063
Tom Cherry0b2a0112019-06-06 13:41:20 -070064// The service is designed to be run by init, it does not respond well to starting up manually. Init
65// has a 'sigstop' feature that sends SIGSTOP to a service immediately before calling exec(). This
66// allows debuggers, etc to be attached to logd at the very beginning, while still having init
67// handle the user, groups, capabilities, files, etc setup.
Mark Salyzynd2b32912016-10-28 15:11:46 -070068static int drop_privs(bool klogd, bool auditd) {
Elliott Hughescef62b42018-06-13 10:33:45 -070069 sched_param param = {};
Mark Salyzyn882f8562013-12-26 15:13:36 -080070
Mark Salyzyn56ba4b52015-01-30 15:19:48 -080071 if (set_sched_policy(0, SP_BACKGROUND) < 0) {
Mark Salyzyn107e29a2016-10-28 15:51:03 -070072 android::prdebug("failed to set background scheduling policy");
Elliott Hughescef62b42018-06-13 10:33:45 -070073 return -1;
Mark Salyzyn56ba4b52015-01-30 15:19:48 -080074 }
75
Mark Salyzyn501c3732017-03-10 14:31:54 -080076 if (sched_setscheduler((pid_t)0, SCHED_BATCH, &param) < 0) {
Mark Salyzyn107e29a2016-10-28 15:51:03 -070077 android::prdebug("failed to set batch scheduler");
Elliott Hughescef62b42018-06-13 10:33:45 -070078 return -1;
Mark Salyzyn882f8562013-12-26 15:13:36 -080079 }
80
Mark Salyzyn4b42ea52018-08-15 12:17:18 -070081 if (!__android_logger_property_get_bool("ro.debuggable",
82 BOOL_DEFAULT_FALSE) &&
Elliott Hughescef62b42018-06-13 10:33:45 -070083 prctl(PR_SET_DUMPABLE, 0) == -1) {
Mark Salyzyn6a70ded2016-10-28 14:49:53 -070084 android::prdebug("failed to clear PR_SET_DUMPABLE");
85 return -1;
86 }
87
Tom Cherry0b2a0112019-06-06 13:41:20 -070088 std::unique_ptr<struct _cap_struct, int (*)(void*)> caps(cap_init(), cap_free);
89 if (cap_clear(caps.get()) < 0) {
Mark Salyzyn501c3732017-03-10 14:31:54 -080090 return -1;
91 }
Tom Cherry0b2a0112019-06-06 13:41:20 -070092 std::vector<cap_value_t> cap_value;
93 if (klogd) {
94 cap_value.emplace_back(CAP_SYSLOG);
95 }
96 if (auditd) {
97 cap_value.emplace_back(CAP_AUDIT_CONTROL);
98 }
99
100 if (cap_set_flag(caps.get(), CAP_PERMITTED, cap_value.size(), cap_value.data(), CAP_SET) < 0) {
101 return -1;
102 }
103 if (cap_set_flag(caps.get(), CAP_EFFECTIVE, cap_value.size(), cap_value.data(), CAP_SET) < 0) {
Mark Salyzyn501c3732017-03-10 14:31:54 -0800104 return -1;
105 }
Mark Salyzynf0b8e1b2016-10-28 14:49:53 -0700106 if (cap_set_proc(caps.get()) < 0) {
Tom Cherry0b2a0112019-06-06 13:41:20 -0700107 android::prdebug("failed to set CAP_SYSLOG or CAP_AUDIT_CONTROL (%d)", errno);
Elliott Hughescef62b42018-06-13 10:33:45 -0700108 return -1;
Mark Salyzynf0b8e1b2016-10-28 14:49:53 -0700109 }
110
Mark Salyzyn0175b072014-02-26 09:50:16 -0800111 return 0;
112}
113
Mark Salyzynccbadc62015-03-12 12:25:35 -0700114static int fdDmesg = -1;
Mark Salyzyn501c3732017-03-10 14:31:54 -0800115void android::prdebug(const char* fmt, ...) {
Mark Salyzynd048f112016-02-08 10:28:12 -0800116 if (fdDmesg < 0) {
117 return;
118 }
119
120 static const char message[] = {
121 KMSG_PRIORITY(LOG_DEBUG), 'l', 'o', 'g', 'd', ':', ' '
122 };
123 char buffer[256];
124 memcpy(buffer, message, sizeof(message));
125
126 va_list ap;
127 va_start(ap, fmt);
128 int n = vsnprintf(buffer + sizeof(message),
129 sizeof(buffer) - sizeof(message), fmt, ap);
130 va_end(ap);
131 if (n > 0) {
132 buffer[sizeof(buffer) - 1] = '\0';
133 if (!strchr(buffer, '\n')) {
134 buffer[sizeof(buffer) - 2] = '\0';
135 strlcat(buffer, "\n", sizeof(buffer));
136 }
137 write(fdDmesg, buffer, strlen(buffer));
138 }
139}
Mark Salyzynccbadc62015-03-12 12:25:35 -0700140
Mark Salyzyn501c3732017-03-10 14:31:54 -0800141char* android::uidToName(uid_t u) {
Tom Cherry36f53992017-09-06 10:07:37 -0700142 struct Userdata {
143 uid_t uid;
144 char* name;
145 } userdata = {
146 .uid = u,
147 .name = nullptr,
148 };
Mark Salyzyn08739ba2015-03-16 08:26:05 -0700149
Tom Cherry36f53992017-09-06 10:07:37 -0700150 packagelist_parse(
151 [](pkg_info* info, void* callback_parameter) {
152 auto userdata = reinterpret_cast<Userdata*>(callback_parameter);
153 bool result = true;
154 if (info->uid == userdata->uid) {
155 userdata->name = strdup(info->name);
156 // false to stop processing
157 result = false;
158 }
159 packagelist_free(info);
160 return result;
161 },
162 &userdata);
Mark Salyzyn95108f12015-04-20 07:26:27 -0700163
Tom Cherry36f53992017-09-06 10:07:37 -0700164 return userdata.name;
Mark Salyzyn08739ba2015-03-16 08:26:05 -0700165}
166
Mark Salyzyn501c3732017-03-10 14:31:54 -0800167static void readDmesg(LogAudit* al, LogKlog* kl) {
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700168 if (!al && !kl) {
169 return;
170 }
171
Mark Salyzyn0484b3b2016-08-11 08:02:06 -0700172 int rc = klogctl(KLOG_SIZE_BUFFER, nullptr, 0);
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700173 if (rc <= 0) {
174 return;
175 }
176
Mark Salyzyn0484b3b2016-08-11 08:02:06 -0700177 // Margin for additional input race or trailing nul
178 ssize_t len = rc + 1024;
Mark Salyzyn501c3732017-03-10 14:31:54 -0800179 std::unique_ptr<char[]> buf(new char[len]);
Mark Salyzynea1a2412015-09-02 07:39:53 -0700180
181 rc = klogctl(KLOG_READ_ALL, buf.get(), len);
182 if (rc <= 0) {
183 return;
184 }
185
Mark Salyzyn0484b3b2016-08-11 08:02:06 -0700186 if (rc < len) {
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700187 len = rc + 1;
188 }
Mark Salyzynea1a2412015-09-02 07:39:53 -0700189 buf[--len] = '\0';
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700190
Mark Salyzyn0484b3b2016-08-11 08:02:06 -0700191 ssize_t sublen;
192 for (char *ptr = nullptr, *tok = buf.get();
193 (rc >= 0) && !!(tok = android::log_strntok_r(tok, len, ptr, sublen));
194 tok = nullptr) {
195 if ((sublen <= 0) || !*tok) continue;
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700196 if (al) {
Mark Salyzyn151beac2015-09-04 11:37:42 -0700197 rc = al->log(tok, sublen);
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700198 }
199 if (kl) {
Mark Salyzyn151beac2015-09-04 11:37:42 -0700200 rc = kl->log(tok, sublen);
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700201 }
202 }
203}
204
Mark Salyzynd8f01802016-10-31 13:49:44 -0700205static int issueReinit() {
Mark Salyzyn501c3732017-03-10 14:31:54 -0800206 int sock = TEMP_FAILURE_RETRY(socket_local_client(
207 "logd", ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM));
Mark Salyzynd8f01802016-10-31 13:49:44 -0700208 if (sock < 0) return -errno;
209
210 static const char reinitStr[] = "reinit";
211 ssize_t ret = TEMP_FAILURE_RETRY(write(sock, reinitStr, sizeof(reinitStr)));
212 if (ret < 0) return -errno;
213
214 struct pollfd p;
215 memset(&p, 0, sizeof(p));
216 p.fd = sock;
217 p.events = POLLIN;
218 ret = TEMP_FAILURE_RETRY(poll(&p, 1, 1000));
219 if (ret < 0) return -errno;
220 if ((ret == 0) || !(p.revents & POLLIN)) return -ETIME;
221
222 static const char success[] = "success";
223 char buffer[sizeof(success) - 1];
224 memset(buffer, 0, sizeof(buffer));
225 ret = TEMP_FAILURE_RETRY(read(sock, buffer, sizeof(buffer)));
226 if (ret < 0) return -errno;
227
228 return strncmp(buffer, success, sizeof(success) - 1) != 0;
229}
230
Mark Salyzyn11e55cb2015-03-10 16:45:17 -0700231// Foreground waits for exit of the main persistent threads
232// that are started here. The threads are created to manage
233// UNIX domain client sockets for writing, reading and
234// controlling the user space logger, and for any additional
235// logging plugins like auditd and restart control. Additional
236// transitory per-client threads are created for each reader.
Mark Salyzyn501c3732017-03-10 14:31:54 -0800237int main(int argc, char* argv[]) {
Hidehiko Abe352476e2017-03-29 17:41:17 +0900238 // logd is written under the assumption that the timezone is UTC.
239 // If TZ is not set, persist.sys.timezone is looked up in some time utility
240 // libc functions, including mktime. It confuses the logd time handling,
241 // so here explicitly set TZ to UTC, which overrides the property.
242 setenv("TZ", "UTC", 1);
Mark Salyzyn11e55cb2015-03-10 16:45:17 -0700243 // issue reinit command. KISS argument parsing.
244 if ((argc > 1) && argv[1] && !strcmp(argv[1], "--reinit")) {
Mark Salyzynd8f01802016-10-31 13:49:44 -0700245 return issueReinit();
Mark Salyzyn11e55cb2015-03-10 16:45:17 -0700246 }
247
Mark Salyzyne0b8ccd2016-10-27 08:21:35 -0700248 static const char dev_kmsg[] = "/dev/kmsg";
249 fdDmesg = android_get_control_file(dev_kmsg);
250 if (fdDmesg < 0) {
251 fdDmesg = TEMP_FAILURE_RETRY(open(dev_kmsg, O_WRONLY | O_CLOEXEC));
252 }
253
254 int fdPmesg = -1;
Mark Salyzyn501c3732017-03-10 14:31:54 -0800255 bool klogd = __android_logger_property_get_bool(
Siarhei Vishniakoue8ed36b2017-12-28 14:13:22 -0800256 "ro.logd.kernel",
257 BOOL_DEFAULT_TRUE | BOOL_DEFAULT_FLAG_ENG | BOOL_DEFAULT_FLAG_SVELTE);
Mark Salyzyne0b8ccd2016-10-27 08:21:35 -0700258 if (klogd) {
259 static const char proc_kmsg[] = "/proc/kmsg";
260 fdPmesg = android_get_control_file(proc_kmsg);
261 if (fdPmesg < 0) {
Mark Salyzyn501c3732017-03-10 14:31:54 -0800262 fdPmesg = TEMP_FAILURE_RETRY(
263 open(proc_kmsg, O_RDONLY | O_NDELAY | O_CLOEXEC));
Mark Salyzyne0b8ccd2016-10-27 08:21:35 -0700264 }
265 if (fdPmesg < 0) android::prdebug("Failed to open %s\n", proc_kmsg);
266 }
267
Tom Cherry0b2a0112019-06-06 13:41:20 -0700268 bool auditd = __android_logger_property_get_bool("ro.logd.auditd", BOOL_DEFAULT_TRUE);
269 if (drop_privs(klogd, auditd) != 0) {
270 return EXIT_FAILURE;
271 }
272
Tom Cherry1a12ae32020-05-01 16:13:18 -0700273 // A cache of event log tags
274 LogTags log_tags;
Tom Cherry68630a02020-05-11 16:29:29 -0700275
Tom Cherry5a3db392020-05-01 17:03:20 -0700276 // Pruning configuration.
277 PruneList prune_list;
Tom Cherry68630a02020-05-11 16:29:29 -0700278
Tom Cherry64e90162020-05-07 14:44:43 -0700279 // Partial (required for chatty) or full logging statistics.
280 bool enable_full_log_statistics = __android_logger_property_get_bool(
281 "logd.statistics", BOOL_DEFAULT_TRUE | BOOL_DEFAULT_FLAG_PERSIST |
282 BOOL_DEFAULT_FLAG_ENG | BOOL_DEFAULT_FLAG_SVELTE);
283 LogStatistics log_statistics(enable_full_log_statistics);
Tom Cherry1a12ae32020-05-01 16:13:18 -0700284
Mark Salyzyn0175b072014-02-26 09:50:16 -0800285 // Serves the purpose of managing the last logs times read on a
286 // socket connection, and as a reader lock on a range of log
287 // entries.
Tom Cherry68630a02020-05-11 16:29:29 -0700288 LogReaderList reader_list;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800289
290 // LogBuffer is the object which is responsible for holding all
291 // log entries.
Tom Cherryd5b38382020-05-12 13:16:41 -0700292 LogBuffer* logBuf = new ChattyLogBuffer(&reader_list, &log_tags, &prune_list, &log_statistics);
Mark Salyzyne457b742014-02-19 17:18:31 -0800293
Mark Salyzyn0175b072014-02-26 09:50:16 -0800294 // LogReader listens on /dev/socket/logdr. When a client
295 // connects, log entries in the LogBuffer are written to the client.
Tom Cherry68630a02020-05-11 16:29:29 -0700296 LogReader* reader = new LogReader(logBuf, &reader_list);
Mark Salyzyn0175b072014-02-26 09:50:16 -0800297 if (reader->startListener()) {
Elliott Hughescef62b42018-06-13 10:33:45 -0700298 return EXIT_FAILURE;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800299 }
300
301 // LogListener listens on /dev/socket/logdw for client
302 // initiated log messages. New log entries are added to LogBuffer
303 // and LogReader is notified to send updates to connected clients.
Tom Cherry68630a02020-05-11 16:29:29 -0700304 LogListener* swl = new LogListener(logBuf);
Tom Cherryc64dd8e2020-05-06 12:04:09 -0700305 if (!swl->StartListener()) {
Elliott Hughescef62b42018-06-13 10:33:45 -0700306 return EXIT_FAILURE;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800307 }
308
309 // Command listener listens on /dev/socket/logd for incoming logd
310 // administrative commands.
Tom Cherry64e90162020-05-07 14:44:43 -0700311 CommandListener* cl = new CommandListener(logBuf, &log_tags, &prune_list, &log_statistics);
Mark Salyzyn0175b072014-02-26 09:50:16 -0800312 if (cl->startListener()) {
Elliott Hughescef62b42018-06-13 10:33:45 -0700313 return EXIT_FAILURE;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800314 }
315
William Roberts29d238d2013-02-08 09:45:26 +0900316 // LogAudit listens on NETLINK_AUDIT socket for selinux
317 // initiated log messages. New log entries are added to LogBuffer
318 // and LogReader is notified to send updates to connected clients.
Mark Salyzyn0484b3b2016-08-11 08:02:06 -0700319 LogAudit* al = nullptr;
Sami Tolvanena742d102016-06-14 18:04:43 +0000320 if (auditd) {
Tom Cherry68630a02020-05-11 16:29:29 -0700321 int dmesg_fd = __android_logger_property_get_bool("ro.logd.auditd.dmesg", BOOL_DEFAULT_TRUE)
322 ? fdDmesg
323 : -1;
324 al = new LogAudit(logBuf, dmesg_fd, &log_statistics);
Sami Tolvanena742d102016-06-14 18:04:43 +0000325 }
Mark Salyzyn11e55cb2015-03-10 16:45:17 -0700326
Mark Salyzyn0484b3b2016-08-11 08:02:06 -0700327 LogKlog* kl = nullptr;
Mark Salyzyna1aacb72014-10-15 08:49:39 -0700328 if (klogd) {
Tom Cherry68630a02020-05-11 16:29:29 -0700329 kl = new LogKlog(logBuf, fdDmesg, fdPmesg, al != nullptr, &log_statistics);
Mark Salyzyna1aacb72014-10-15 08:49:39 -0700330 }
Mark Salyzyneb06de72014-10-13 09:59:37 -0700331
Sami Tolvanena742d102016-06-14 18:04:43 +0000332 readDmesg(al, kl);
Mark Salyzyneb06de72014-10-13 09:59:37 -0700333
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700334 // failure is an option ... messages are in dmesg (required by standard)
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700335 if (kl && kl->startListener()) {
336 delete kl;
337 }
Mark Salyzyneb06de72014-10-13 09:59:37 -0700338
Sami Tolvanena742d102016-06-14 18:04:43 +0000339 if (al && al->startListener()) {
340 delete al;
William Roberts29d238d2013-02-08 09:45:26 +0900341 }
342
Mark Salyzyn11e55cb2015-03-10 16:45:17 -0700343 TEMP_FAILURE_RETRY(pause());
344
Elliott Hughescef62b42018-06-13 10:33:45 -0700345 return EXIT_SUCCESS;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800346}