| Jeff Dike | e16f535 | 2007-06-08 13:46:54 -0700 | [diff] [blame] | 1 | /* | 
| Jeff Dike | c5d4bb1 | 2008-02-04 22:31:14 -0800 | [diff] [blame] | 2 | * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Licensed under the GPL | 
|  | 4 | */ | 
|  | 5 |  | 
| Jeff Dike | c5d4bb1 | 2008-02-04 22:31:14 -0800 | [diff] [blame] | 6 | #include <linux/ctype.h> | 
|  | 7 | #include <linux/init.h> | 
|  | 8 | #include <linux/kernel.h> | 
| Alexey Dobriyan | 6613c5e | 2009-12-14 18:00:11 -0800 | [diff] [blame] | 9 | #include <linux/module.h> | 
| Jeff Dike | c5d4bb1 | 2008-02-04 22:31:14 -0800 | [diff] [blame] | 10 | #include <linux/proc_fs.h> | 
| Alexey Dobriyan | 6613c5e | 2009-12-14 18:00:11 -0800 | [diff] [blame] | 11 | #include <linux/seq_file.h> | 
| Jeff Dike | c5d4bb1 | 2008-02-04 22:31:14 -0800 | [diff] [blame] | 12 | #include <linux/types.h> | 
|  | 13 | #include <asm/uaccess.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 |  | 
| Jeff Dike | c5d4bb1 | 2008-02-04 22:31:14 -0800 | [diff] [blame] | 15 | /* | 
|  | 16 | * If read and write race, the read will still atomically read a valid | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | * value. | 
|  | 18 | */ | 
|  | 19 | int uml_exitcode = 0; | 
|  | 20 |  | 
| Alexey Dobriyan | 6613c5e | 2009-12-14 18:00:11 -0800 | [diff] [blame] | 21 | static int exitcode_proc_show(struct seq_file *m, void *v) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | { | 
| Alexey Dobriyan | 6613c5e | 2009-12-14 18:00:11 -0800 | [diff] [blame] | 23 | int val; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 |  | 
| Jeff Dike | c5d4bb1 | 2008-02-04 22:31:14 -0800 | [diff] [blame] | 25 | /* | 
|  | 26 | * Save uml_exitcode in a local so that we don't need to guarantee | 
| Jeff Dike | 730760e | 2006-09-29 01:58:50 -0700 | [diff] [blame] | 27 | * that sprintf accesses it atomically. | 
|  | 28 | */ | 
|  | 29 | val = uml_exitcode; | 
| Alexey Dobriyan | 6613c5e | 2009-12-14 18:00:11 -0800 | [diff] [blame] | 30 | seq_printf(m, "%d\n", val); | 
|  | 31 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | } | 
|  | 33 |  | 
| Alexey Dobriyan | 6613c5e | 2009-12-14 18:00:11 -0800 | [diff] [blame] | 34 | static int exitcode_proc_open(struct inode *inode, struct file *file) | 
|  | 35 | { | 
|  | 36 | return single_open(file, exitcode_proc_show, NULL); | 
|  | 37 | } | 
|  | 38 |  | 
|  | 39 | static ssize_t exitcode_proc_write(struct file *file, | 
|  | 40 | const char __user *buffer, size_t count, loff_t *pos) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | { | 
|  | 42 | char *end, buf[sizeof("nnnnn\0")]; | 
|  | 43 | int tmp; | 
|  | 44 |  | 
| Jeff Dike | c5d4bb1 | 2008-02-04 22:31:14 -0800 | [diff] [blame] | 45 | if (copy_from_user(buf, buffer, count)) | 
| Jeff Dike | e16f535 | 2007-06-08 13:46:54 -0700 | [diff] [blame] | 46 | return -EFAULT; | 
|  | 47 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | tmp = simple_strtol(buf, &end, 0); | 
| Jeff Dike | c5d4bb1 | 2008-02-04 22:31:14 -0800 | [diff] [blame] | 49 | if ((*end != '\0') && !isspace(*end)) | 
| Jeff Dike | e16f535 | 2007-06-08 13:46:54 -0700 | [diff] [blame] | 50 | return -EINVAL; | 
|  | 51 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | uml_exitcode = tmp; | 
| Jeff Dike | e16f535 | 2007-06-08 13:46:54 -0700 | [diff] [blame] | 53 | return count; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | } | 
|  | 55 |  | 
| Alexey Dobriyan | 6613c5e | 2009-12-14 18:00:11 -0800 | [diff] [blame] | 56 | static const struct file_operations exitcode_proc_fops = { | 
|  | 57 | .owner		= THIS_MODULE, | 
|  | 58 | .open		= exitcode_proc_open, | 
|  | 59 | .read		= seq_read, | 
|  | 60 | .llseek		= seq_lseek, | 
|  | 61 | .release	= single_release, | 
|  | 62 | .write		= exitcode_proc_write, | 
|  | 63 | }; | 
|  | 64 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | static int make_proc_exitcode(void) | 
|  | 66 | { | 
|  | 67 | struct proc_dir_entry *ent; | 
|  | 68 |  | 
| Alexey Dobriyan | 6613c5e | 2009-12-14 18:00:11 -0800 | [diff] [blame] | 69 | ent = proc_create("exitcode", 0600, NULL, &exitcode_proc_fops); | 
| Jeff Dike | c5d4bb1 | 2008-02-04 22:31:14 -0800 | [diff] [blame] | 70 | if (ent == NULL) { | 
| Christophe Lucas | 30f417c | 2005-07-28 21:16:12 -0700 | [diff] [blame] | 71 | printk(KERN_WARNING "make_proc_exitcode : Failed to register " | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | "/proc/exitcode\n"); | 
| Jeff Dike | e16f535 | 2007-06-08 13:46:54 -0700 | [diff] [blame] | 73 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } | 
| Jeff Dike | e16f535 | 2007-06-08 13:46:54 -0700 | [diff] [blame] | 75 | return 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | } | 
|  | 77 |  | 
|  | 78 | __initcall(make_proc_exitcode); |