ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / kernel / configs.c
1 /*
2  * kernel/configs.c
3  * Echo the kernel .config file used to build the kernel
4  *
5  * Copyright (C) 2002 Khalid Aziz <khalid_aziz@hp.com>
6  * Copyright (C) 2002 Randy Dunlap <rddunlap@osdl.org>
7  * Copyright (C) 2002 Al Stone <ahs3@fc.hp.com>
8  * Copyright (C) 2002 Hewlett-Packard Company
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or (at
13  * your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful, but
16  * WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
18  * NON INFRINGEMENT.  See the GNU General Public License for more
19  * details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24  */
25
26 #include <linux/config.h>
27 #include <linux/kernel.h>
28 #include <linux/module.h>
29 #include <linux/proc_fs.h>
30 #include <linux/seq_file.h>
31 #include <linux/init.h>
32 #include <asm/uaccess.h>
33
34 /**************************************************/
35 /* the actual current config file                 */
36
37 /* This one is for extraction from the kernel binary file image. */
38 #include "ikconfig.h"
39
40 #ifdef CONFIG_IKCONFIG_PROC
41
42 /* This is the data that can be read from /proc/config.gz. */
43 #include "config_data.h"
44
45 /**************************************************/
46 /* globals and useful constants                   */
47
48 static const char IKCONFIG_VERSION[] __initdata = "0.7";
49
50 static ssize_t
51 ikconfig_read_current(struct file *file, char __user *buf,
52                       size_t len, loff_t * offset)
53 {
54         loff_t pos = *offset;
55         ssize_t count;
56
57         if (pos >= kernel_config_data_size)
58                 return 0;
59
60         count = min(len, (size_t)(kernel_config_data_size - pos));
61         if(copy_to_user(buf, kernel_config_data + pos, count))
62                 return -EFAULT;
63
64         *offset += count;
65         return count;
66 }
67
68 static struct file_operations ikconfig_file_ops = {
69         .owner = THIS_MODULE,
70         .read = ikconfig_read_current,
71 };
72
73 /***************************************************/
74 /* ikconfig_init: start up everything we need to */
75
76 static int __init ikconfig_init(void)
77 {
78         struct proc_dir_entry *entry;
79
80         /* create the current config file */
81         entry = create_proc_entry("config.gz", S_IFREG | S_IRUGO,
82                                   &proc_root);
83         if (!entry)
84                 return -ENOMEM;
85
86         entry->proc_fops = &ikconfig_file_ops;
87         entry->size = kernel_config_data_size;
88
89         return 0;
90 }
91
92 /***************************************************/
93 /* ikconfig_cleanup: clean up our mess           */
94
95 static void __exit ikconfig_cleanup(void)
96 {
97         remove_proc_entry("config.gz", &proc_root);
98 }
99
100 module_init(ikconfig_init);
101 module_exit(ikconfig_cleanup);
102
103 MODULE_LICENSE("GPL");
104 MODULE_AUTHOR("Randy Dunlap");
105 MODULE_DESCRIPTION("Echo the kernel .config file used to build the kernel");
106
107 #endif /* CONFIG_IKCONFIG_PROC */