Merge tag 'x86_urgent_for_v5.13_rc1' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-block.git] / fs / proc / kmsg.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
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>
ae048112 14#include <linux/proc_fs.h>
1da177e4 15#include <linux/fs.h>
00234592 16#include <linux/syslog.h>
1da177e4 17
7c0f6ba6 18#include <linux/uaccess.h>
1da177e4
LT
19#include <asm/io.h>
20
21extern wait_queue_head_t log_wait;
22
1da177e4
LT
23static int kmsg_open(struct inode * inode, struct file * file)
24{
637241a9 25 return do_syslog(SYSLOG_ACTION_OPEN, NULL, 0, SYSLOG_FROM_PROC);
1da177e4
LT
26}
27
28static int kmsg_release(struct inode * inode, struct file * file)
29{
637241a9 30 (void) do_syslog(SYSLOG_ACTION_CLOSE, NULL, 0, SYSLOG_FROM_PROC);
1da177e4
LT
31 return 0;
32}
33
34static ssize_t kmsg_read(struct file *file, char __user *buf,
35 size_t count, loff_t *ppos)
36{
00234592 37 if ((file->f_flags & O_NONBLOCK) &&
637241a9 38 !do_syslog(SYSLOG_ACTION_SIZE_UNREAD, NULL, 0, SYSLOG_FROM_PROC))
1da177e4 39 return -EAGAIN;
637241a9 40 return do_syslog(SYSLOG_ACTION_READ, buf, count, SYSLOG_FROM_PROC);
1da177e4
LT
41}
42
076ccb76 43static __poll_t kmsg_poll(struct file *file, poll_table *wait)
1da177e4
LT
44{
45 poll_wait(file, &log_wait, wait);
637241a9 46 if (do_syslog(SYSLOG_ACTION_SIZE_UNREAD, NULL, 0, SYSLOG_FROM_PROC))
a9a08845 47 return EPOLLIN | EPOLLRDNORM;
1da177e4
LT
48 return 0;
49}
50
51
97a32539 52static const struct proc_ops kmsg_proc_ops = {
d919b33d 53 .proc_flags = PROC_ENTRY_PERMANENT,
97a32539
AD
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,
1da177e4 59};
ae048112
AD
60
61static int __init proc_kmsg_init(void)
62{
97a32539 63 proc_create("kmsg", S_IRUSR, NULL, &kmsg_proc_ops);
ae048112
AD
64 return 0;
65}
abaf3787 66fs_initcall(proc_kmsg_init);