| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | *  linux/fs/proc/kmsg.c | 
|  | 3 | * | 
|  | 4 | *  Copyright (C) 1992  by Linus Torvalds | 
|  | 5 | * | 
|  | 6 | */ | 
|  | 7 |  | 
|  | 8 | #include <linux/types.h> | 
|  | 9 | #include <linux/errno.h> | 
|  | 10 | #include <linux/time.h> | 
|  | 11 | #include <linux/kernel.h> | 
|  | 12 | #include <linux/poll.h> | 
| Alexey Dobriyan | ae04811 | 2008-10-04 14:39:12 +0400 | [diff] [blame] | 13 | #include <linux/proc_fs.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/fs.h> | 
| Kees Cook | 0023459 | 2010-02-03 15:36:43 -0800 | [diff] [blame] | 15 | #include <linux/syslog.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 |  | 
|  | 17 | #include <asm/uaccess.h> | 
|  | 18 | #include <asm/io.h> | 
|  | 19 |  | 
|  | 20 | extern wait_queue_head_t log_wait; | 
|  | 21 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | static int kmsg_open(struct inode * inode, struct file * file) | 
|  | 23 | { | 
| Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 24 | return do_syslog(SYSLOG_ACTION_OPEN, NULL, 0, SYSLOG_FROM_FILE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | } | 
|  | 26 |  | 
|  | 27 | static int kmsg_release(struct inode * inode, struct file * file) | 
|  | 28 | { | 
| Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 29 | (void) do_syslog(SYSLOG_ACTION_CLOSE, NULL, 0, SYSLOG_FROM_FILE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | return 0; | 
|  | 31 | } | 
|  | 32 |  | 
|  | 33 | static ssize_t kmsg_read(struct file *file, char __user *buf, | 
|  | 34 | size_t count, loff_t *ppos) | 
|  | 35 | { | 
| Kees Cook | 0023459 | 2010-02-03 15:36:43 -0800 | [diff] [blame] | 36 | if ((file->f_flags & O_NONBLOCK) && | 
| Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 37 | !do_syslog(SYSLOG_ACTION_SIZE_UNREAD, NULL, 0, SYSLOG_FROM_FILE)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | return -EAGAIN; | 
| Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 39 | return do_syslog(SYSLOG_ACTION_READ, buf, count, SYSLOG_FROM_FILE); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | } | 
|  | 41 |  | 
|  | 42 | static unsigned int kmsg_poll(struct file *file, poll_table *wait) | 
|  | 43 | { | 
|  | 44 | poll_wait(file, &log_wait, wait); | 
| Kees Cook | d78ca3c | 2010-02-03 15:37:13 -0800 | [diff] [blame] | 45 | if (do_syslog(SYSLOG_ACTION_SIZE_UNREAD, NULL, 0, SYSLOG_FROM_FILE)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | return POLLIN | POLLRDNORM; | 
|  | 47 | return 0; | 
|  | 48 | } | 
|  | 49 |  | 
|  | 50 |  | 
| Alexey Dobriyan | ae04811 | 2008-10-04 14:39:12 +0400 | [diff] [blame] | 51 | static const struct file_operations proc_kmsg_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | .read		= kmsg_read, | 
|  | 53 | .poll		= kmsg_poll, | 
|  | 54 | .open		= kmsg_open, | 
|  | 55 | .release	= kmsg_release, | 
| Frederic Weisbecker | 41775e2 | 2010-03-30 02:24:54 +0200 | [diff] [blame] | 56 | .llseek		= generic_file_llseek, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | }; | 
| Alexey Dobriyan | ae04811 | 2008-10-04 14:39:12 +0400 | [diff] [blame] | 58 |  | 
|  | 59 | static int __init proc_kmsg_init(void) | 
|  | 60 | { | 
|  | 61 | proc_create("kmsg", S_IRUSR, NULL, &proc_kmsg_operations); | 
|  | 62 | return 0; | 
|  | 63 | } | 
|  | 64 | module_init(proc_kmsg_init); |