blob: cc45eb3f334e4d55ed7be475bb53fd49caf866d7 [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
Mark Salyzyn0175b072014-02-26 09:50:16 -080050#include "CommandListener.h"
William Roberts29d238d2013-02-08 09:45:26 +090051#include "LogAudit.h"
Mark Salyzyn501c3732017-03-10 14:31:54 -080052#include "LogBuffer.h"
Mark Salyzyna1aacb72014-10-15 08:49:39 -070053#include "LogKlog.h"
Mark Salyzyn501c3732017-03-10 14:31:54 -080054#include "LogListener.h"
Tom Cherry1a12ae32020-05-01 16:13:18 -070055#include "LogTags.h"
Mark Salyzyn5ac5c6b2015-08-28 08:02:59 -070056#include "LogUtils.h"
Mark Salyzyn0175b072014-02-26 09:50:16 -080057
Mark Salyzyn501c3732017-03-10 14:31:54 -080058#define KMSG_PRIORITY(PRI) \
59 '<', '0' + LOG_MAKEPRI(LOG_DAEMON, LOG_PRI(PRI)) / 10, \
60 '0' + LOG_MAKEPRI(LOG_DAEMON, LOG_PRI(PRI)) % 10, '>'
Mark Salyzynccbadc62015-03-12 12:25:35 -070061
Tom Cherry0b2a0112019-06-06 13:41:20 -070062// The service is designed to be run by init, it does not respond well to starting up manually. Init
63// has a 'sigstop' feature that sends SIGSTOP to a service immediately before calling exec(). This
64// allows debuggers, etc to be attached to logd at the very beginning, while still having init
65// handle the user, groups, capabilities, files, etc setup.
Mark Salyzynd2b32912016-10-28 15:11:46 -070066static int drop_privs(bool klogd, bool auditd) {
Elliott Hughescef62b42018-06-13 10:33:45 -070067 sched_param param = {};
Mark Salyzyn882f8562013-12-26 15:13:36 -080068
Mark Salyzyn56ba4b52015-01-30 15:19:48 -080069 if (set_sched_policy(0, SP_BACKGROUND) < 0) {
Mark Salyzyn107e29a2016-10-28 15:51:03 -070070 android::prdebug("failed to set background scheduling policy");
Elliott Hughescef62b42018-06-13 10:33:45 -070071 return -1;
Mark Salyzyn56ba4b52015-01-30 15:19:48 -080072 }
73
Mark Salyzyn501c3732017-03-10 14:31:54 -080074 if (sched_setscheduler((pid_t)0, SCHED_BATCH, &param) < 0) {
Mark Salyzyn107e29a2016-10-28 15:51:03 -070075 android::prdebug("failed to set batch scheduler");
Elliott Hughescef62b42018-06-13 10:33:45 -070076 return -1;
Mark Salyzyn882f8562013-12-26 15:13:36 -080077 }
78
Mark Salyzyn4b42ea52018-08-15 12:17:18 -070079 if (!__android_logger_property_get_bool("ro.debuggable",
80 BOOL_DEFAULT_FALSE) &&
Elliott Hughescef62b42018-06-13 10:33:45 -070081 prctl(PR_SET_DUMPABLE, 0) == -1) {
Mark Salyzyn6a70ded2016-10-28 14:49:53 -070082 android::prdebug("failed to clear PR_SET_DUMPABLE");
83 return -1;
84 }
85
Tom Cherry0b2a0112019-06-06 13:41:20 -070086 std::unique_ptr<struct _cap_struct, int (*)(void*)> caps(cap_init(), cap_free);
87 if (cap_clear(caps.get()) < 0) {
Mark Salyzyn501c3732017-03-10 14:31:54 -080088 return -1;
89 }
Tom Cherry0b2a0112019-06-06 13:41:20 -070090 std::vector<cap_value_t> cap_value;
91 if (klogd) {
92 cap_value.emplace_back(CAP_SYSLOG);
93 }
94 if (auditd) {
95 cap_value.emplace_back(CAP_AUDIT_CONTROL);
96 }
97
98 if (cap_set_flag(caps.get(), CAP_PERMITTED, cap_value.size(), cap_value.data(), CAP_SET) < 0) {
99 return -1;
100 }
101 if (cap_set_flag(caps.get(), CAP_EFFECTIVE, cap_value.size(), cap_value.data(), CAP_SET) < 0) {
Mark Salyzyn501c3732017-03-10 14:31:54 -0800102 return -1;
103 }
Mark Salyzynf0b8e1b2016-10-28 14:49:53 -0700104 if (cap_set_proc(caps.get()) < 0) {
Tom Cherry0b2a0112019-06-06 13:41:20 -0700105 android::prdebug("failed to set CAP_SYSLOG or CAP_AUDIT_CONTROL (%d)", errno);
Elliott Hughescef62b42018-06-13 10:33:45 -0700106 return -1;
Mark Salyzynf0b8e1b2016-10-28 14:49:53 -0700107 }
108
Mark Salyzyn0175b072014-02-26 09:50:16 -0800109 return 0;
110}
111
Mark Salyzyne0fa2912014-04-28 16:39:04 -0700112// Property helper
Mark Salyzyn501c3732017-03-10 14:31:54 -0800113static bool check_flag(const char* prop, const char* flag) {
114 const char* cp = strcasestr(prop, flag);
Mark Salyzyn9c66a582015-12-14 16:40:12 -0800115 if (!cp) {
Mark Salyzyne0fa2912014-04-28 16:39:04 -0700116 return false;
117 }
Mark Salyzyn9c66a582015-12-14 16:40:12 -0800118 // We only will document comma (,)
119 static const char sep[] = ",:;|+ \t\f";
120 if ((cp != prop) && !strchr(sep, cp[-1])) {
121 return false;
122 }
123 cp += strlen(flag);
124 return !*cp || !!strchr(sep, *cp);
125}
Mark Salyzyne0fa2912014-04-28 16:39:04 -0700126
Mark Salyzynccbadc62015-03-12 12:25:35 -0700127static int fdDmesg = -1;
Mark Salyzyn501c3732017-03-10 14:31:54 -0800128void android::prdebug(const char* fmt, ...) {
Mark Salyzynd048f112016-02-08 10:28:12 -0800129 if (fdDmesg < 0) {
130 return;
131 }
132
133 static const char message[] = {
134 KMSG_PRIORITY(LOG_DEBUG), 'l', 'o', 'g', 'd', ':', ' '
135 };
136 char buffer[256];
137 memcpy(buffer, message, sizeof(message));
138
139 va_list ap;
140 va_start(ap, fmt);
141 int n = vsnprintf(buffer + sizeof(message),
142 sizeof(buffer) - sizeof(message), fmt, ap);
143 va_end(ap);
144 if (n > 0) {
145 buffer[sizeof(buffer) - 1] = '\0';
146 if (!strchr(buffer, '\n')) {
147 buffer[sizeof(buffer) - 2] = '\0';
148 strlcat(buffer, "\n", sizeof(buffer));
149 }
150 write(fdDmesg, buffer, strlen(buffer));
151 }
152}
Mark Salyzynccbadc62015-03-12 12:25:35 -0700153
Mark Salyzyn501c3732017-03-10 14:31:54 -0800154char* android::uidToName(uid_t u) {
Tom Cherry36f53992017-09-06 10:07:37 -0700155 struct Userdata {
156 uid_t uid;
157 char* name;
158 } userdata = {
159 .uid = u,
160 .name = nullptr,
161 };
Mark Salyzyn08739ba2015-03-16 08:26:05 -0700162
Tom Cherry36f53992017-09-06 10:07:37 -0700163 packagelist_parse(
164 [](pkg_info* info, void* callback_parameter) {
165 auto userdata = reinterpret_cast<Userdata*>(callback_parameter);
166 bool result = true;
167 if (info->uid == userdata->uid) {
168 userdata->name = strdup(info->name);
169 // false to stop processing
170 result = false;
171 }
172 packagelist_free(info);
173 return result;
174 },
175 &userdata);
Mark Salyzyn95108f12015-04-20 07:26:27 -0700176
Tom Cherry36f53992017-09-06 10:07:37 -0700177 return userdata.name;
Mark Salyzyn08739ba2015-03-16 08:26:05 -0700178}
179
Mark Salyzyn501c3732017-03-10 14:31:54 -0800180static void readDmesg(LogAudit* al, LogKlog* kl) {
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700181 if (!al && !kl) {
182 return;
183 }
184
Mark Salyzyn0484b3b2016-08-11 08:02:06 -0700185 int rc = klogctl(KLOG_SIZE_BUFFER, nullptr, 0);
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700186 if (rc <= 0) {
187 return;
188 }
189
Mark Salyzyn0484b3b2016-08-11 08:02:06 -0700190 // Margin for additional input race or trailing nul
191 ssize_t len = rc + 1024;
Mark Salyzyn501c3732017-03-10 14:31:54 -0800192 std::unique_ptr<char[]> buf(new char[len]);
Mark Salyzynea1a2412015-09-02 07:39:53 -0700193
194 rc = klogctl(KLOG_READ_ALL, buf.get(), len);
195 if (rc <= 0) {
196 return;
197 }
198
Mark Salyzyn0484b3b2016-08-11 08:02:06 -0700199 if (rc < len) {
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700200 len = rc + 1;
201 }
Mark Salyzynea1a2412015-09-02 07:39:53 -0700202 buf[--len] = '\0';
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700203
Mark Salyzynb6bee332015-09-08 08:56:32 -0700204 if (kl && kl->isMonotonic()) {
Mark Salyzyn151beac2015-09-04 11:37:42 -0700205 kl->synchronize(buf.get(), len);
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700206 }
207
Mark Salyzyn0484b3b2016-08-11 08:02:06 -0700208 ssize_t sublen;
209 for (char *ptr = nullptr, *tok = buf.get();
210 (rc >= 0) && !!(tok = android::log_strntok_r(tok, len, ptr, sublen));
211 tok = nullptr) {
212 if ((sublen <= 0) || !*tok) continue;
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700213 if (al) {
Mark Salyzyn151beac2015-09-04 11:37:42 -0700214 rc = al->log(tok, sublen);
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700215 }
216 if (kl) {
Mark Salyzyn151beac2015-09-04 11:37:42 -0700217 rc = kl->log(tok, sublen);
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700218 }
219 }
220}
221
Mark Salyzynd8f01802016-10-31 13:49:44 -0700222static int issueReinit() {
Mark Salyzyn501c3732017-03-10 14:31:54 -0800223 int sock = TEMP_FAILURE_RETRY(socket_local_client(
224 "logd", ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM));
Mark Salyzynd8f01802016-10-31 13:49:44 -0700225 if (sock < 0) return -errno;
226
227 static const char reinitStr[] = "reinit";
228 ssize_t ret = TEMP_FAILURE_RETRY(write(sock, reinitStr, sizeof(reinitStr)));
229 if (ret < 0) return -errno;
230
231 struct pollfd p;
232 memset(&p, 0, sizeof(p));
233 p.fd = sock;
234 p.events = POLLIN;
235 ret = TEMP_FAILURE_RETRY(poll(&p, 1, 1000));
236 if (ret < 0) return -errno;
237 if ((ret == 0) || !(p.revents & POLLIN)) return -ETIME;
238
239 static const char success[] = "success";
240 char buffer[sizeof(success) - 1];
241 memset(buffer, 0, sizeof(buffer));
242 ret = TEMP_FAILURE_RETRY(read(sock, buffer, sizeof(buffer)));
243 if (ret < 0) return -errno;
244
245 return strncmp(buffer, success, sizeof(success) - 1) != 0;
246}
247
Mark Salyzyn11e55cb2015-03-10 16:45:17 -0700248// Foreground waits for exit of the main persistent threads
249// that are started here. The threads are created to manage
250// UNIX domain client sockets for writing, reading and
251// controlling the user space logger, and for any additional
252// logging plugins like auditd and restart control. Additional
253// transitory per-client threads are created for each reader.
Mark Salyzyn501c3732017-03-10 14:31:54 -0800254int main(int argc, char* argv[]) {
Hidehiko Abe352476e2017-03-29 17:41:17 +0900255 // logd is written under the assumption that the timezone is UTC.
256 // If TZ is not set, persist.sys.timezone is looked up in some time utility
257 // libc functions, including mktime. It confuses the logd time handling,
258 // so here explicitly set TZ to UTC, which overrides the property.
259 setenv("TZ", "UTC", 1);
Mark Salyzyn11e55cb2015-03-10 16:45:17 -0700260 // issue reinit command. KISS argument parsing.
261 if ((argc > 1) && argv[1] && !strcmp(argv[1], "--reinit")) {
Mark Salyzynd8f01802016-10-31 13:49:44 -0700262 return issueReinit();
Mark Salyzyn11e55cb2015-03-10 16:45:17 -0700263 }
264
Mark Salyzyne0b8ccd2016-10-27 08:21:35 -0700265 static const char dev_kmsg[] = "/dev/kmsg";
266 fdDmesg = android_get_control_file(dev_kmsg);
267 if (fdDmesg < 0) {
268 fdDmesg = TEMP_FAILURE_RETRY(open(dev_kmsg, O_WRONLY | O_CLOEXEC));
269 }
270
271 int fdPmesg = -1;
Mark Salyzyn501c3732017-03-10 14:31:54 -0800272 bool klogd = __android_logger_property_get_bool(
Siarhei Vishniakoue8ed36b2017-12-28 14:13:22 -0800273 "ro.logd.kernel",
274 BOOL_DEFAULT_TRUE | BOOL_DEFAULT_FLAG_ENG | BOOL_DEFAULT_FLAG_SVELTE);
Mark Salyzyne0b8ccd2016-10-27 08:21:35 -0700275 if (klogd) {
276 static const char proc_kmsg[] = "/proc/kmsg";
277 fdPmesg = android_get_control_file(proc_kmsg);
278 if (fdPmesg < 0) {
Mark Salyzyn501c3732017-03-10 14:31:54 -0800279 fdPmesg = TEMP_FAILURE_RETRY(
280 open(proc_kmsg, O_RDONLY | O_NDELAY | O_CLOEXEC));
Mark Salyzyne0b8ccd2016-10-27 08:21:35 -0700281 }
282 if (fdPmesg < 0) android::prdebug("Failed to open %s\n", proc_kmsg);
283 }
284
Tom Cherry0b2a0112019-06-06 13:41:20 -0700285 bool auditd = __android_logger_property_get_bool("ro.logd.auditd", BOOL_DEFAULT_TRUE);
286 if (drop_privs(klogd, auditd) != 0) {
287 return EXIT_FAILURE;
288 }
289
Tom Cherry1a12ae32020-05-01 16:13:18 -0700290 // A cache of event log tags
291 LogTags log_tags;
Tom Cherry5a3db392020-05-01 17:03:20 -0700292 // Pruning configuration.
293 PruneList prune_list;
Tom Cherry1a12ae32020-05-01 16:13:18 -0700294
Mark Salyzyn0175b072014-02-26 09:50:16 -0800295 // Serves the purpose of managing the last logs times read on a
296 // socket connection, and as a reader lock on a range of log
297 // entries.
298
Mark Salyzyn501c3732017-03-10 14:31:54 -0800299 LastLogTimes* times = new LastLogTimes();
Mark Salyzyn0175b072014-02-26 09:50:16 -0800300
301 // LogBuffer is the object which is responsible for holding all
302 // log entries.
303
Tom Cherry5a3db392020-05-01 17:03:20 -0700304 LogBuffer* logBuf = new LogBuffer(times, &log_tags, &prune_list);
Mark Salyzyn0175b072014-02-26 09:50:16 -0800305
Mark Salyzyn501c3732017-03-10 14:31:54 -0800306 if (__android_logger_property_get_bool(
307 "logd.statistics", BOOL_DEFAULT_TRUE | BOOL_DEFAULT_FLAG_PERSIST |
308 BOOL_DEFAULT_FLAG_ENG |
309 BOOL_DEFAULT_FLAG_SVELTE)) {
Mark Salyzyna1aacb72014-10-15 08:49:39 -0700310 logBuf->enableStatistics();
Mark Salyzynf5fc5092014-09-21 14:22:18 -0700311 }
Mark Salyzyne457b742014-02-19 17:18:31 -0800312
Mark Salyzyn0175b072014-02-26 09:50:16 -0800313 // LogReader listens on /dev/socket/logdr. When a client
314 // connects, log entries in the LogBuffer are written to the client.
315
Mark Salyzyn501c3732017-03-10 14:31:54 -0800316 LogReader* reader = new LogReader(logBuf);
Mark Salyzyn0175b072014-02-26 09:50:16 -0800317 if (reader->startListener()) {
Elliott Hughescef62b42018-06-13 10:33:45 -0700318 return EXIT_FAILURE;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800319 }
320
321 // LogListener listens on /dev/socket/logdw for client
322 // initiated log messages. New log entries are added to LogBuffer
323 // and LogReader is notified to send updates to connected clients.
324
Mark Salyzyn501c3732017-03-10 14:31:54 -0800325 LogListener* swl = new LogListener(logBuf, reader);
Mark Salyzyn581edc12013-11-20 13:38:52 -0800326 // Backlog and /proc/sys/net/unix/max_dgram_qlen set to large value
Mark Salyzyn39944c82015-09-08 11:24:07 -0700327 if (swl->startListener(600)) {
Elliott Hughescef62b42018-06-13 10:33:45 -0700328 return EXIT_FAILURE;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800329 }
330
331 // Command listener listens on /dev/socket/logd for incoming logd
332 // administrative commands.
333
Tom Cherry5a3db392020-05-01 17:03:20 -0700334 CommandListener* cl = new CommandListener(logBuf, &log_tags, &prune_list);
Mark Salyzyn0175b072014-02-26 09:50:16 -0800335 if (cl->startListener()) {
Elliott Hughescef62b42018-06-13 10:33:45 -0700336 return EXIT_FAILURE;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800337 }
338
William Roberts29d238d2013-02-08 09:45:26 +0900339 // LogAudit listens on NETLINK_AUDIT socket for selinux
340 // initiated log messages. New log entries are added to LogBuffer
341 // and LogReader is notified to send updates to connected clients.
342
Mark Salyzyn0484b3b2016-08-11 08:02:06 -0700343 LogAudit* al = nullptr;
Sami Tolvanena742d102016-06-14 18:04:43 +0000344 if (auditd) {
345 al = new LogAudit(logBuf, reader,
Mark Salyzynf10e2732016-09-27 13:08:23 -0700346 __android_logger_property_get_bool(
Mark Salyzyn501c3732017-03-10 14:31:54 -0800347 "ro.logd.auditd.dmesg", BOOL_DEFAULT_TRUE)
348 ? fdDmesg
349 : -1);
Sami Tolvanena742d102016-06-14 18:04:43 +0000350 }
Mark Salyzyn11e55cb2015-03-10 16:45:17 -0700351
Mark Salyzyn0484b3b2016-08-11 08:02:06 -0700352 LogKlog* kl = nullptr;
Mark Salyzyna1aacb72014-10-15 08:49:39 -0700353 if (klogd) {
Mark Salyzyn0484b3b2016-08-11 08:02:06 -0700354 kl = new LogKlog(logBuf, reader, fdDmesg, fdPmesg, al != nullptr);
Mark Salyzyna1aacb72014-10-15 08:49:39 -0700355 }
Mark Salyzyneb06de72014-10-13 09:59:37 -0700356
Sami Tolvanena742d102016-06-14 18:04:43 +0000357 readDmesg(al, kl);
Mark Salyzyneb06de72014-10-13 09:59:37 -0700358
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700359 // failure is an option ... messages are in dmesg (required by standard)
Mark Salyzyneb06de72014-10-13 09:59:37 -0700360
Mark Salyzynd5600fd2015-06-12 14:59:42 -0700361 if (kl && kl->startListener()) {
362 delete kl;
363 }
Mark Salyzyneb06de72014-10-13 09:59:37 -0700364
Sami Tolvanena742d102016-06-14 18:04:43 +0000365 if (al && al->startListener()) {
366 delete al;
William Roberts29d238d2013-02-08 09:45:26 +0900367 }
368
Mark Salyzyn11e55cb2015-03-10 16:45:17 -0700369 TEMP_FAILURE_RETRY(pause());
370
Elliott Hughescef62b42018-06-13 10:33:45 -0700371 return EXIT_SUCCESS;
Mark Salyzyn0175b072014-02-26 09:50:16 -0800372}