| 
									
										
										
										
											2007-06-08 13:46:54 -07:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2008-02-04 22:31:14 -08:00
										 |  |  |  * Copyright (C) 2002 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * Licensed under the GPL | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-04 22:31:14 -08:00
										 |  |  | #include <linux/ctype.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/kernel.h>
 | 
					
						
							| 
									
										
										
										
											2009-12-14 18:00:11 -08:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							| 
									
										
										
										
											2008-02-04 22:31:14 -08:00
										 |  |  | #include <linux/proc_fs.h>
 | 
					
						
							| 
									
										
										
										
											2009-12-14 18:00:11 -08:00
										 |  |  | #include <linux/seq_file.h>
 | 
					
						
							| 
									
										
										
										
											2008-02-04 22:31:14 -08:00
										 |  |  | #include <linux/types.h>
 | 
					
						
							|  |  |  | #include <asm/uaccess.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-04 22:31:14 -08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * If read and write race, the read will still atomically read a valid | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  * value. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | int uml_exitcode = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 18:00:11 -08:00
										 |  |  | static int exitcode_proc_show(struct seq_file *m, void *v) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-12-14 18:00:11 -08:00
										 |  |  | 	int val; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-04 22:31:14 -08:00
										 |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * Save uml_exitcode in a local so that we don't need to guarantee | 
					
						
							| 
									
										
										
										
											2006-09-29 01:58:50 -07:00
										 |  |  | 	 * that sprintf accesses it atomically. | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	val = uml_exitcode; | 
					
						
							| 
									
										
										
										
											2009-12-14 18:00:11 -08:00
										 |  |  | 	seq_printf(m, "%d\n", val); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int exitcode_proc_open(struct inode *inode, struct file *file) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return single_open(file, exitcode_proc_show, NULL); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 18:00:11 -08:00
										 |  |  | static ssize_t exitcode_proc_write(struct file *file, | 
					
						
							|  |  |  | 		const char __user *buffer, size_t count, loff_t *pos) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	char *end, buf[sizeof("nnnnn\0")]; | 
					
						
							| 
									
										
										
										
											2013-10-29 22:06:04 +03:00
										 |  |  | 	size_t size; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-29 22:06:04 +03:00
										 |  |  | 	size = min(count, sizeof(buf)); | 
					
						
							|  |  |  | 	if (copy_from_user(buf, buffer, size)) | 
					
						
							| 
									
										
										
										
											2007-06-08 13:46:54 -07:00
										 |  |  | 		return -EFAULT; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	tmp = simple_strtol(buf, &end, 0); | 
					
						
							| 
									
										
										
										
											2008-02-04 22:31:14 -08:00
										 |  |  | 	if ((*end != '\0') && !isspace(*end)) | 
					
						
							| 
									
										
										
										
											2007-06-08 13:46:54 -07:00
										 |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	uml_exitcode = tmp; | 
					
						
							| 
									
										
										
										
											2007-06-08 13:46:54 -07:00
										 |  |  | 	return count; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 18:00:11 -08:00
										 |  |  | static const struct file_operations exitcode_proc_fops = { | 
					
						
							|  |  |  | 	.owner		= THIS_MODULE, | 
					
						
							|  |  |  | 	.open		= exitcode_proc_open, | 
					
						
							|  |  |  | 	.read		= seq_read, | 
					
						
							|  |  |  | 	.llseek		= seq_lseek, | 
					
						
							|  |  |  | 	.release	= single_release, | 
					
						
							|  |  |  | 	.write		= exitcode_proc_write, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | static int make_proc_exitcode(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct proc_dir_entry *ent; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-14 18:00:11 -08:00
										 |  |  | 	ent = proc_create("exitcode", 0600, NULL, &exitcode_proc_fops); | 
					
						
							| 
									
										
										
										
											2008-02-04 22:31:14 -08:00
										 |  |  | 	if (ent == NULL) { | 
					
						
							| 
									
										
										
										
											2005-07-28 21:16:12 -07:00
										 |  |  | 		printk(KERN_WARNING "make_proc_exitcode : Failed to register " | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		       "/proc/exitcode\n"); | 
					
						
							| 
									
										
										
										
											2007-06-08 13:46:54 -07:00
										 |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-06-08 13:46:54 -07:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __initcall(make_proc_exitcode); |