Dima Zavin | 8f91282 | 2011-08-31 18:26:17 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2008 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 | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 17 | #include <errno.h> |
Dima Zavin | 8f91282 | 2011-08-31 18:26:17 -0700 | [diff] [blame] | 18 | #include <fcntl.h> |
| 19 | #include <stdarg.h> |
| 20 | #include <stdio.h> |
| 21 | #include <stdlib.h> |
| 22 | #include <string.h> |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 23 | #include <sys/stat.h> |
| 24 | #include <sys/types.h> |
Dima Zavin | 8f91282 | 2011-08-31 18:26:17 -0700 | [diff] [blame] | 25 | #include <unistd.h> |
| 26 | |
| 27 | #include <cutils/klog.h> |
| 28 | |
Dima Zavin | 8f91282 | 2011-08-31 18:26:17 -0700 | [diff] [blame] | 29 | static int klog_level = KLOG_DEFAULT_LEVEL; |
| 30 | |
Alex Ray | 157e1b6 | 2014-03-07 12:18:22 -0800 | [diff] [blame] | 31 | int klog_get_level(void) { |
| 32 | return klog_level; |
| 33 | } |
| 34 | |
Dima Zavin | 8f91282 | 2011-08-31 18:26:17 -0700 | [diff] [blame] | 35 | void klog_set_level(int level) { |
| 36 | klog_level = level; |
| 37 | } |
| 38 | |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 39 | void klog_init(void) { |
Elliott Hughes | 171a829 | 2016-06-29 16:16:41 -0700 | [diff] [blame] | 40 | } |
Ken Sumrall | 7425fd1 | 2013-04-03 13:43:11 -0700 | [diff] [blame] | 41 | |
Elliott Hughes | 171a829 | 2016-06-29 16:16:41 -0700 | [diff] [blame] | 42 | static int __open_klog(void) { |
| 43 | int fd = open("/dev/kmsg", O_WRONLY | O_CLOEXEC); |
| 44 | if (fd == -1) { |
| 45 | static const char* name = "/dev/__kmsg__"; |
| 46 | if (mknod(name, S_IFCHR | 0600, (1 << 8) | 11) == 0) { |
| 47 | fd = open(name, O_WRONLY | O_CLOEXEC); |
| 48 | unlink(name); |
| 49 | } |
Nick Kralevich | 7eb3abd | 2015-05-18 18:41:23 -0700 | [diff] [blame] | 50 | } |
Elliott Hughes | 171a829 | 2016-06-29 16:16:41 -0700 | [diff] [blame] | 51 | return fd; |
Dima Zavin | 8f91282 | 2011-08-31 18:26:17 -0700 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | #define LOG_BUF_MAX 512 |
| 55 | |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 56 | void klog_writev(int level, const struct iovec* iov, int iov_count) { |
Dima Zavin | 8f91282 | 2011-08-31 18:26:17 -0700 | [diff] [blame] | 57 | if (level > klog_level) return; |
Elliott Hughes | 171a829 | 2016-06-29 16:16:41 -0700 | [diff] [blame] | 58 | |
| 59 | static int klog_fd = __open_klog(); |
| 60 | if (klog_fd == -1) return; |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 61 | TEMP_FAILURE_RETRY(writev(klog_fd, iov, iov_count)); |
Dima Zavin | 8f91282 | 2011-08-31 18:26:17 -0700 | [diff] [blame] | 62 | } |
Stephen Smalley | eb3f421 | 2014-02-12 16:17:00 -0500 | [diff] [blame] | 63 | |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 64 | void klog_write(int level, const char* fmt, ...) { |
Nick Kralevich | 5db8d6a | 2016-01-16 16:19:17 -0800 | [diff] [blame] | 65 | if (level > klog_level) return; |
Elliott Hughes | 171a829 | 2016-06-29 16:16:41 -0700 | [diff] [blame] | 66 | |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 67 | char buf[LOG_BUF_MAX]; |
Stephen Smalley | eb3f421 | 2014-02-12 16:17:00 -0500 | [diff] [blame] | 68 | va_list ap; |
| 69 | va_start(ap, fmt); |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 70 | vsnprintf(buf, sizeof(buf), fmt, ap); |
Stephen Smalley | eb3f421 | 2014-02-12 16:17:00 -0500 | [diff] [blame] | 71 | va_end(ap); |
Elliott Hughes | da40c00 | 2015-03-27 23:20:44 -0700 | [diff] [blame] | 72 | |
| 73 | buf[LOG_BUF_MAX - 1] = 0; |
| 74 | |
| 75 | struct iovec iov[1]; |
| 76 | iov[0].iov_base = buf; |
| 77 | iov[0].iov_len = strlen(buf); |
| 78 | klog_writev(level, iov, 1); |
Stephen Smalley | eb3f421 | 2014-02-12 16:17:00 -0500 | [diff] [blame] | 79 | } |