blob: 861834011ac7ba73b8ff6e9afe19e683c37d4043 [file] [log] [blame]
Elliott Hughesda40c002015-03-27 23:20:44 -07001/*
2 * Copyright (C) 2015 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
Elliott Hughese5ce30f2015-05-06 19:19:24 -070017#include "log.h"
18
Elliott Hughes171a8292016-06-29 16:16:41 -070019#include <fcntl.h>
Elliott Hughesda40c002015-03-27 23:20:44 -070020#include <string.h>
Elliott Hughesda40c002015-03-27 23:20:44 -070021
22#include <selinux/selinux.h>
23
Elliott Hughesf86b5a62016-06-24 15:12:21 -070024void InitKernelLogging(char* argv[]) {
Elliott Hughes171a8292016-06-29 16:16:41 -070025 // Make stdin/stdout/stderr all point to /dev/null.
26 int fd = open("/sys/fs/selinux/null", O_RDWR);
27 if (fd == -1) {
28 int saved_errno = errno;
Elliott Hughes7bc87a52016-08-04 16:09:39 -070029 android::base::InitLogging(argv, &android::base::KernelLogger);
Elliott Hughes171a8292016-06-29 16:16:41 -070030 errno = saved_errno;
31 PLOG(FATAL) << "Couldn't open /sys/fs/selinux/null";
32 }
33 dup2(fd, 0);
34 dup2(fd, 1);
35 dup2(fd, 2);
36 if (fd > 2) close(fd);
Elliott Hughesf86b5a62016-06-24 15:12:21 -070037
Elliott Hughes7bc87a52016-08-04 16:09:39 -070038 android::base::InitLogging(argv, &android::base::KernelLogger);
Elliott Hughesda40c002015-03-27 23:20:44 -070039}
40
41int selinux_klog_callback(int type, const char *fmt, ...) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -070042 android::base::LogSeverity severity = android::base::ERROR;
Elliott Hughesda40c002015-03-27 23:20:44 -070043 if (type == SELINUX_WARNING) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -070044 severity = android::base::WARNING;
Elliott Hughesda40c002015-03-27 23:20:44 -070045 } else if (type == SELINUX_INFO) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -070046 severity = android::base::INFO;
Elliott Hughesda40c002015-03-27 23:20:44 -070047 }
Elliott Hughesf86b5a62016-06-24 15:12:21 -070048 char buf[1024];
Elliott Hughesda40c002015-03-27 23:20:44 -070049 va_list ap;
50 va_start(ap, fmt);
Elliott Hughesf86b5a62016-06-24 15:12:21 -070051 vsnprintf(buf, sizeof(buf), fmt, ap);
Elliott Hughesda40c002015-03-27 23:20:44 -070052 va_end(ap);
Elliott Hughes7bc87a52016-08-04 16:09:39 -070053 android::base::KernelLogger(android::base::MAIN, severity, "selinux", nullptr, 0, buf);
Elliott Hughesda40c002015-03-27 23:20:44 -070054 return 0;
55}