blob: 6b32526dfb73165e7eedc21dbffa86ac83c0cd04 [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
Nick Kralevich8adb4d92017-01-03 08:37:54 -080022#include <linux/audit.h>
23#include <netlink/netlink.h>
Elliott Hughesda40c002015-03-27 23:20:44 -070024#include <selinux/selinux.h>
25
Elliott Hughesf86b5a62016-06-24 15:12:21 -070026void InitKernelLogging(char* argv[]) {
Elliott Hughes171a8292016-06-29 16:16:41 -070027 // Make stdin/stdout/stderr all point to /dev/null.
28 int fd = open("/sys/fs/selinux/null", O_RDWR);
29 if (fd == -1) {
30 int saved_errno = errno;
Elliott Hughes7bc87a52016-08-04 16:09:39 -070031 android::base::InitLogging(argv, &android::base::KernelLogger);
Elliott Hughes171a8292016-06-29 16:16:41 -070032 errno = saved_errno;
33 PLOG(FATAL) << "Couldn't open /sys/fs/selinux/null";
34 }
35 dup2(fd, 0);
36 dup2(fd, 1);
37 dup2(fd, 2);
38 if (fd > 2) close(fd);
Elliott Hughesf86b5a62016-06-24 15:12:21 -070039
Elliott Hughes7bc87a52016-08-04 16:09:39 -070040 android::base::InitLogging(argv, &android::base::KernelLogger);
Elliott Hughesda40c002015-03-27 23:20:44 -070041}
42
Nick Kralevich8adb4d92017-01-03 08:37:54 -080043static void selinux_avc_log(char* buf, size_t buf_len) {
44 size_t str_len = strnlen(buf, buf_len);
45
46 // trim newline at end of string
47 buf[str_len - 1] = '\0';
48
49 struct nl_sock* sk = nl_socket_alloc();
50 if (sk == NULL) {
51 return;
52 }
53 nl_connect(sk, NETLINK_AUDIT);
54 int result;
55 do {
56 result = nl_send_simple(sk, AUDIT_USER_AVC, 0, buf, str_len);
57 } while (result == -NLE_INTR);
58 nl_socket_free(sk);
59}
60
Elliott Hughesda40c002015-03-27 23:20:44 -070061int selinux_klog_callback(int type, const char *fmt, ...) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -070062 android::base::LogSeverity severity = android::base::ERROR;
Elliott Hughesda40c002015-03-27 23:20:44 -070063 if (type == SELINUX_WARNING) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -070064 severity = android::base::WARNING;
Elliott Hughesda40c002015-03-27 23:20:44 -070065 } else if (type == SELINUX_INFO) {
Elliott Hughesf86b5a62016-06-24 15:12:21 -070066 severity = android::base::INFO;
Elliott Hughesda40c002015-03-27 23:20:44 -070067 }
Elliott Hughesf86b5a62016-06-24 15:12:21 -070068 char buf[1024];
Elliott Hughesda40c002015-03-27 23:20:44 -070069 va_list ap;
70 va_start(ap, fmt);
Nick Kralevich8adb4d92017-01-03 08:37:54 -080071 int res = vsnprintf(buf, sizeof(buf), fmt, ap);
Elliott Hughesda40c002015-03-27 23:20:44 -070072 va_end(ap);
Nick Kralevich8adb4d92017-01-03 08:37:54 -080073 if (res <= 0) {
74 return 0;
75 }
76 if (type == SELINUX_AVC) {
77 selinux_avc_log(buf, sizeof(buf));
78 } else {
79 android::base::KernelLogger(android::base::MAIN, severity, "selinux", nullptr, 0, buf);
80 }
Elliott Hughesda40c002015-03-27 23:20:44 -070081 return 0;
82}