Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 1 | /* |
| 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 Hughes | e5ce30f | 2015-05-06 19:19:24 -0700 | [diff] [blame] | 17 | #include "log.h" |
| 18 | |
Elliott Hughes | 171a829 | 2016-06-29 16:16:41 -0700 | [diff] [blame] | 19 | #include <fcntl.h> |
Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame^] | 20 | #include <linux/audit.h> |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 21 | #include <string.h> |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 22 | |
Tom Cherry | 3f5eaae5 | 2017-04-06 16:30:22 -0700 | [diff] [blame^] | 23 | #include <android-base/logging.h> |
Nick Kralevich | 8adb4d9 | 2017-01-03 08:37:54 -0800 | [diff] [blame] | 24 | #include <netlink/netlink.h> |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 25 | #include <selinux/selinux.h> |
| 26 | |
Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 27 | void InitKernelLogging(char* argv[]) { |
Elliott Hughes | 171a829 | 2016-06-29 16:16:41 -0700 | [diff] [blame] | 28 | // Make stdin/stdout/stderr all point to /dev/null. |
| 29 | int fd = open("/sys/fs/selinux/null", O_RDWR); |
| 30 | if (fd == -1) { |
| 31 | int saved_errno = errno; |
Elliott Hughes | 7bc87a5 | 2016-08-04 16:09:39 -0700 | [diff] [blame] | 32 | android::base::InitLogging(argv, &android::base::KernelLogger); |
Elliott Hughes | 171a829 | 2016-06-29 16:16:41 -0700 | [diff] [blame] | 33 | errno = saved_errno; |
| 34 | PLOG(FATAL) << "Couldn't open /sys/fs/selinux/null"; |
| 35 | } |
| 36 | dup2(fd, 0); |
| 37 | dup2(fd, 1); |
| 38 | dup2(fd, 2); |
| 39 | if (fd > 2) close(fd); |
Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 40 | |
Elliott Hughes | 7bc87a5 | 2016-08-04 16:09:39 -0700 | [diff] [blame] | 41 | android::base::InitLogging(argv, &android::base::KernelLogger); |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 42 | } |
| 43 | |
Nick Kralevich | 8adb4d9 | 2017-01-03 08:37:54 -0800 | [diff] [blame] | 44 | static void selinux_avc_log(char* buf, size_t buf_len) { |
| 45 | size_t str_len = strnlen(buf, buf_len); |
| 46 | |
| 47 | // trim newline at end of string |
| 48 | buf[str_len - 1] = '\0'; |
| 49 | |
| 50 | struct nl_sock* sk = nl_socket_alloc(); |
| 51 | if (sk == NULL) { |
| 52 | return; |
| 53 | } |
| 54 | nl_connect(sk, NETLINK_AUDIT); |
| 55 | int result; |
| 56 | do { |
| 57 | result = nl_send_simple(sk, AUDIT_USER_AVC, 0, buf, str_len); |
| 58 | } while (result == -NLE_INTR); |
| 59 | nl_socket_free(sk); |
| 60 | } |
| 61 | |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 62 | int selinux_klog_callback(int type, const char *fmt, ...) { |
Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 63 | android::base::LogSeverity severity = android::base::ERROR; |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 64 | if (type == SELINUX_WARNING) { |
Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 65 | severity = android::base::WARNING; |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 66 | } else if (type == SELINUX_INFO) { |
Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 67 | severity = android::base::INFO; |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 68 | } |
Elliott Hughes | f86b5a6 | 2016-06-24 15:12:21 -0700 | [diff] [blame] | 69 | char buf[1024]; |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 70 | va_list ap; |
| 71 | va_start(ap, fmt); |
Nick Kralevich | 8adb4d9 | 2017-01-03 08:37:54 -0800 | [diff] [blame] | 72 | int res = vsnprintf(buf, sizeof(buf), fmt, ap); |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 73 | va_end(ap); |
Nick Kralevich | 8adb4d9 | 2017-01-03 08:37:54 -0800 | [diff] [blame] | 74 | if (res <= 0) { |
| 75 | return 0; |
| 76 | } |
| 77 | if (type == SELINUX_AVC) { |
| 78 | selinux_avc_log(buf, sizeof(buf)); |
| 79 | } else { |
| 80 | android::base::KernelLogger(android::base::MAIN, severity, "selinux", nullptr, 0, buf); |
| 81 | } |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 82 | return 0; |
| 83 | } |