2015-03-28 07:20:44 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2015-05-07 04:19:24 +02:00
|
|
|
#include "log.h"
|
|
|
|
|
2016-06-30 01:16:41 +02:00
|
|
|
#include <fcntl.h>
|
2015-03-28 07:20:44 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2016-06-30 01:16:41 +02:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
2015-03-28 07:20:44 +01:00
|
|
|
#include <sys/uio.h>
|
|
|
|
|
|
|
|
#include <selinux/selinux.h>
|
|
|
|
|
2016-06-25 00:12:21 +02:00
|
|
|
static const int kLogSeverityToKLogLevel[] = {
|
|
|
|
KLOG_NOTICE_LEVEL, KLOG_DEBUG_LEVEL, KLOG_INFO_LEVEL,
|
|
|
|
KLOG_WARNING_LEVEL, KLOG_ERROR_LEVEL, KLOG_ERROR_LEVEL,
|
|
|
|
};
|
|
|
|
static_assert(arraysize(kLogSeverityToKLogLevel) == android::base::FATAL + 1,
|
|
|
|
"Mismatch in size of kLogSeverityToKLogLevel and values in LogSeverity");
|
2015-03-28 07:20:44 +01:00
|
|
|
|
2016-06-25 00:12:21 +02:00
|
|
|
static void KernelLogger(android::base::LogId, android::base::LogSeverity severity,
|
|
|
|
const char* tag, const char*, unsigned int, const char* msg) {
|
|
|
|
int level = kLogSeverityToKLogLevel[severity];
|
2016-01-17 01:19:17 +01:00
|
|
|
if (level > klog_get_level()) return;
|
|
|
|
|
2015-05-07 04:19:24 +02:00
|
|
|
// The kernel's printk buffer is only 1024 bytes.
|
|
|
|
// TODO: should we automatically break up long lines into multiple lines?
|
|
|
|
// Or we could log but with something like "..." at the end?
|
|
|
|
char buf[1024];
|
2016-06-25 00:12:21 +02:00
|
|
|
size_t size = snprintf(buf, sizeof(buf), "<%d>%s: %s\n", level, tag, msg);
|
|
|
|
if (size > sizeof(buf)) {
|
|
|
|
size = snprintf(buf, sizeof(buf), "<%d>%s: %zu-byte message too long for printk\n",
|
|
|
|
level, tag, size);
|
2015-05-07 04:19:24 +02:00
|
|
|
}
|
2015-03-28 07:20:44 +01:00
|
|
|
|
2015-05-07 04:19:24 +02:00
|
|
|
iovec iov[1];
|
|
|
|
iov[0].iov_base = buf;
|
2016-06-25 00:12:21 +02:00
|
|
|
iov[0].iov_len = size;
|
2015-05-07 04:19:24 +02:00
|
|
|
klog_writev(level, iov, 1);
|
2015-03-28 07:20:44 +01:00
|
|
|
}
|
|
|
|
|
2016-06-25 00:12:21 +02:00
|
|
|
void InitKernelLogging(char* argv[]) {
|
2016-06-30 01:16:41 +02:00
|
|
|
// Make stdin/stdout/stderr all point to /dev/null.
|
|
|
|
int fd = open("/sys/fs/selinux/null", O_RDWR);
|
|
|
|
if (fd == -1) {
|
|
|
|
int saved_errno = errno;
|
|
|
|
android::base::InitLogging(argv, &KernelLogger);
|
|
|
|
errno = saved_errno;
|
|
|
|
PLOG(FATAL) << "Couldn't open /sys/fs/selinux/null";
|
|
|
|
}
|
|
|
|
dup2(fd, 0);
|
|
|
|
dup2(fd, 1);
|
|
|
|
dup2(fd, 2);
|
|
|
|
if (fd > 2) close(fd);
|
2016-06-25 00:12:21 +02:00
|
|
|
|
2016-06-30 01:16:41 +02:00
|
|
|
android::base::InitLogging(argv, &KernelLogger);
|
2016-06-25 00:12:21 +02:00
|
|
|
klog_set_level(KLOG_NOTICE_LEVEL);
|
2015-03-28 07:20:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int selinux_klog_callback(int type, const char *fmt, ...) {
|
2016-06-25 00:12:21 +02:00
|
|
|
android::base::LogSeverity severity = android::base::ERROR;
|
2015-03-28 07:20:44 +01:00
|
|
|
if (type == SELINUX_WARNING) {
|
2016-06-25 00:12:21 +02:00
|
|
|
severity = android::base::WARNING;
|
2015-03-28 07:20:44 +01:00
|
|
|
} else if (type == SELINUX_INFO) {
|
2016-06-25 00:12:21 +02:00
|
|
|
severity = android::base::INFO;
|
2015-03-28 07:20:44 +01:00
|
|
|
}
|
2016-06-25 00:12:21 +02:00
|
|
|
char buf[1024];
|
2015-03-28 07:20:44 +01:00
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
2016-06-25 00:12:21 +02:00
|
|
|
vsnprintf(buf, sizeof(buf), fmt, ap);
|
2015-03-28 07:20:44 +01:00
|
|
|
va_end(ap);
|
2016-06-25 00:12:21 +02:00
|
|
|
KernelLogger(android::base::MAIN, severity, "selinux", nullptr, 0, buf);
|
2015-03-28 07:20:44 +01:00
|
|
|
return 0;
|
|
|
|
}
|