blob: b062425ccf8da3d6a6c79d539297e30ebd70050d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Adrian Bunkf4b09eb2006-01-03 13:37:51 +01006 * Copyright (C) 2002 Randy Dunlap <rdunlap@xenotime.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/kernel.h>
27#include <linux/module.h>
28#include <linux/proc_fs.h>
29#include <linux/seq_file.h>
30#include <linux/init.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080031#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033/*
Masahiro Yamada13610aa2019-03-07 16:29:53 -080034 * "IKCFG_ST" and "IKCFG_ED" are used to extract the config data from
35 * a binary kernel image or a module. See scripts/extract-ikconfig.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 */
Masahiro Yamada13610aa2019-03-07 16:29:53 -080037asm (
38" .pushsection .rodata, \"a\" \n"
39" .ascii \"IKCFG_ST\" \n"
40" .global kernel_config_data \n"
41"kernel_config_data: \n"
42" .incbin \"kernel/config_data.gz\" \n"
43" .global kernel_config_data_end \n"
44"kernel_config_data_end: \n"
45" .ascii \"IKCFG_ED\" \n"
46" .popsection \n"
47);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49#ifdef CONFIG_IKCONFIG_PROC
50
Masahiro Yamada13610aa2019-03-07 16:29:53 -080051extern char kernel_config_data;
52extern char kernel_config_data_end;
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static ssize_t
55ikconfig_read_current(struct file *file, char __user *buf,
56 size_t len, loff_t * offset)
57{
Akinobu Mita85badbd2007-05-09 02:33:33 -070058 return simple_read_from_buffer(buf, len, offset,
Masahiro Yamada13610aa2019-03-07 16:29:53 -080059 &kernel_config_data,
60 &kernel_config_data_end -
61 &kernel_config_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
63
Helge Deller15ad7cd2006-12-06 20:40:36 -080064static const struct file_operations ikconfig_file_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 .owner = THIS_MODULE,
66 .read = ikconfig_read_current,
Arnd Bergmann6038f372010-08-15 18:52:59 +020067 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070068};
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static int __init ikconfig_init(void)
71{
72 struct proc_dir_entry *entry;
73
74 /* create the current config file */
Denis V. Lunevc33fff02008-04-29 01:02:31 -070075 entry = proc_create("config.gz", S_IFREG | S_IRUGO, NULL,
76 &ikconfig_file_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 if (!entry)
78 return -ENOMEM;
79
Masahiro Yamada13610aa2019-03-07 16:29:53 -080080 proc_set_size(entry, &kernel_config_data_end - &kernel_config_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 return 0;
83}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static void __exit ikconfig_cleanup(void)
86{
Alexey Dobriyanc74c1202008-04-29 01:01:44 -070087 remove_proc_entry("config.gz", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
90module_init(ikconfig_init);
91module_exit(ikconfig_cleanup);
92
Stephen Boyd626a0312011-07-25 17:13:12 -070093#endif /* CONFIG_IKCONFIG_PROC */
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095MODULE_LICENSE("GPL");
96MODULE_AUTHOR("Randy Dunlap");
97MODULE_DESCRIPTION("Echo the kernel .config file used to build the kernel");