Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/fs/proc/kmsg.c |
| 4 | * |
| 5 | * Copyright (C) 1992 by Linus Torvalds |
| 6 | * |
| 7 | */ |
| 8 | |
| 9 | #include <linux/types.h> |
| 10 | #include <linux/errno.h> |
| 11 | #include <linux/time.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/poll.h> |
Alexey Dobriyan | ae04811 | 2008-10-04 14:39:12 +0400 | [diff] [blame] | 14 | #include <linux/proc_fs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/fs.h> |
Kees Cook | 0023459 | 2010-02-03 15:36:43 -0800 | [diff] [blame] | 16 | #include <linux/syslog.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Linus Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 18 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <asm/io.h> |
| 20 | |
| 21 | extern wait_queue_head_t log_wait; |
| 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | static int kmsg_open(struct inode * inode, struct file * file) |
| 24 | { |
Kees Cook | 637241a | 2013-06-12 14:04:39 -0700 | [diff] [blame] | 25 | return do_syslog(SYSLOG_ACTION_OPEN, NULL, 0, SYSLOG_FROM_PROC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | } |
| 27 | |
| 28 | static int kmsg_release(struct inode * inode, struct file * file) |
| 29 | { |
Kees Cook | 637241a | 2013-06-12 14:04:39 -0700 | [diff] [blame] | 30 | (void) do_syslog(SYSLOG_ACTION_CLOSE, NULL, 0, SYSLOG_FROM_PROC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | return 0; |
| 32 | } |
| 33 | |
| 34 | static ssize_t kmsg_read(struct file *file, char __user *buf, |
| 35 | size_t count, loff_t *ppos) |
| 36 | { |
Kees Cook | 0023459 | 2010-02-03 15:36:43 -0800 | [diff] [blame] | 37 | if ((file->f_flags & O_NONBLOCK) && |
Kees Cook | 637241a | 2013-06-12 14:04:39 -0700 | [diff] [blame] | 38 | !do_syslog(SYSLOG_ACTION_SIZE_UNREAD, NULL, 0, SYSLOG_FROM_PROC)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | return -EAGAIN; |
Kees Cook | 637241a | 2013-06-12 14:04:39 -0700 | [diff] [blame] | 40 | return do_syslog(SYSLOG_ACTION_READ, buf, count, SYSLOG_FROM_PROC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | } |
| 42 | |
Al Viro | 076ccb7 | 2017-07-03 01:02:18 -0400 | [diff] [blame] | 43 | static __poll_t kmsg_poll(struct file *file, poll_table *wait) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | { |
| 45 | poll_wait(file, &log_wait, wait); |
Kees Cook | 637241a | 2013-06-12 14:04:39 -0700 | [diff] [blame] | 46 | if (do_syslog(SYSLOG_ACTION_SIZE_UNREAD, NULL, 0, SYSLOG_FROM_PROC)) |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 47 | return EPOLLIN | EPOLLRDNORM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | return 0; |
| 49 | } |
| 50 | |
| 51 | |
Alexey Dobriyan | 97a3253 | 2020-02-03 17:37:17 -0800 | [diff] [blame] | 52 | static const struct proc_ops kmsg_proc_ops = { |
Alexey Dobriyan | d919b33 | 2020-04-06 20:09:01 -0700 | [diff] [blame] | 53 | .proc_flags = PROC_ENTRY_PERMANENT, |
Alexey Dobriyan | 97a3253 | 2020-02-03 17:37:17 -0800 | [diff] [blame] | 54 | .proc_read = kmsg_read, |
| 55 | .proc_poll = kmsg_poll, |
| 56 | .proc_open = kmsg_open, |
| 57 | .proc_release = kmsg_release, |
| 58 | .proc_lseek = generic_file_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | }; |
Alexey Dobriyan | ae04811 | 2008-10-04 14:39:12 +0400 | [diff] [blame] | 60 | |
| 61 | static int __init proc_kmsg_init(void) |
| 62 | { |
Alexey Dobriyan | 97a3253 | 2020-02-03 17:37:17 -0800 | [diff] [blame] | 63 | proc_create("kmsg", S_IRUSR, NULL, &kmsg_proc_ops); |
Alexey Dobriyan | ae04811 | 2008-10-04 14:39:12 +0400 | [diff] [blame] | 64 | return 0; |
| 65 | } |
Paul Gortmaker | abaf378 | 2014-01-23 15:55:45 -0800 | [diff] [blame] | 66 | fs_initcall(proc_kmsg_init); |