blob: a28c79c5f713a2f8b70b18beca1827a75c96b8f2 [file] [log] [blame]
Thomas Huth2b089bf2019-07-22 11:20:08 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * kernel/configs.c
4 * Echo the kernel .config file used to build the kernel
5 *
6 * Copyright (C) 2002 Khalid Aziz <khalid_aziz@hp.com>
Adrian Bunkf4b09eb2006-01-03 13:37:51 +01007 * Copyright (C) 2002 Randy Dunlap <rdunlap@xenotime.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * Copyright (C) 2002 Al Stone <ahs3@fc.hp.com>
9 * Copyright (C) 2002 Hewlett-Packard Company
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/proc_fs.h>
15#include <linux/seq_file.h>
16#include <linux/init.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080017#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019/*
Masahiro Yamada13610aa2019-03-07 16:29:53 -080020 * "IKCFG_ST" and "IKCFG_ED" are used to extract the config data from
21 * a binary kernel image or a module. See scripts/extract-ikconfig.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
Masahiro Yamada13610aa2019-03-07 16:29:53 -080023asm (
24" .pushsection .rodata, \"a\" \n"
25" .ascii \"IKCFG_ST\" \n"
26" .global kernel_config_data \n"
27"kernel_config_data: \n"
28" .incbin \"kernel/config_data.gz\" \n"
29" .global kernel_config_data_end \n"
30"kernel_config_data_end: \n"
31" .ascii \"IKCFG_ED\" \n"
32" .popsection \n"
33);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#ifdef CONFIG_IKCONFIG_PROC
36
Masahiro Yamada13610aa2019-03-07 16:29:53 -080037extern char kernel_config_data;
38extern char kernel_config_data_end;
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040static ssize_t
41ikconfig_read_current(struct file *file, char __user *buf,
42 size_t len, loff_t * offset)
43{
Akinobu Mita85badbd2007-05-09 02:33:33 -070044 return simple_read_from_buffer(buf, len, offset,
Masahiro Yamada13610aa2019-03-07 16:29:53 -080045 &kernel_config_data,
46 &kernel_config_data_end -
47 &kernel_config_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048}
49
Alexey Dobriyan97a32532020-02-03 17:37:17 -080050static const struct proc_ops config_gz_proc_ops = {
51 .proc_read = ikconfig_read_current,
52 .proc_lseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053};
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055static int __init ikconfig_init(void)
56{
57 struct proc_dir_entry *entry;
58
59 /* create the current config file */
Denis V. Lunevc33fff02008-04-29 01:02:31 -070060 entry = proc_create("config.gz", S_IFREG | S_IRUGO, NULL,
Alexey Dobriyan97a32532020-02-03 17:37:17 -080061 &config_gz_proc_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 if (!entry)
63 return -ENOMEM;
64
Masahiro Yamada13610aa2019-03-07 16:29:53 -080065 proc_set_size(entry, &kernel_config_data_end - &kernel_config_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67 return 0;
68}
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070static void __exit ikconfig_cleanup(void)
71{
Alexey Dobriyanc74c1202008-04-29 01:01:44 -070072 remove_proc_entry("config.gz", NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
75module_init(ikconfig_init);
76module_exit(ikconfig_cleanup);
77
Stephen Boyd626a0312011-07-25 17:13:12 -070078#endif /* CONFIG_IKCONFIG_PROC */
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080MODULE_LICENSE("GPL");
81MODULE_AUTHOR("Randy Dunlap");
82MODULE_DESCRIPTION("Echo the kernel .config file used to build the kernel");