Thomas Huth | 2b089bf | 2019-07-22 11:20:08 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 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 Bunk | f4b09eb | 2006-01-03 13:37:51 +0100 | [diff] [blame] | 7 | * Copyright (C) 2002 Randy Dunlap <rdunlap@xenotime.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * Copyright (C) 2002 Al Stone <ahs3@fc.hp.com> |
| 9 | * Copyright (C) 2002 Hewlett-Packard Company |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | */ |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #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 Torvalds | 7c0f6ba | 2016-12-24 11:46:01 -0800 | [diff] [blame] | 17 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | /* |
Masahiro Yamada | 13610aa | 2019-03-07 16:29:53 -0800 | [diff] [blame] | 20 | * "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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | */ |
Masahiro Yamada | 13610aa | 2019-03-07 16:29:53 -0800 | [diff] [blame] | 23 | asm ( |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
| 35 | #ifdef CONFIG_IKCONFIG_PROC |
| 36 | |
Masahiro Yamada | 13610aa | 2019-03-07 16:29:53 -0800 | [diff] [blame] | 37 | extern char kernel_config_data; |
| 38 | extern char kernel_config_data_end; |
| 39 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | static ssize_t |
| 41 | ikconfig_read_current(struct file *file, char __user *buf, |
| 42 | size_t len, loff_t * offset) |
| 43 | { |
Akinobu Mita | 85badbd | 2007-05-09 02:33:33 -0700 | [diff] [blame] | 44 | return simple_read_from_buffer(buf, len, offset, |
Masahiro Yamada | 13610aa | 2019-03-07 16:29:53 -0800 | [diff] [blame] | 45 | &kernel_config_data, |
| 46 | &kernel_config_data_end - |
| 47 | &kernel_config_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | } |
| 49 | |
Helge Deller | 15ad7cd | 2006-12-06 20:40:36 -0800 | [diff] [blame] | 50 | static const struct file_operations ikconfig_file_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | .owner = THIS_MODULE, |
| 52 | .read = ikconfig_read_current, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 53 | .llseek = default_llseek, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | }; |
| 55 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | static int __init ikconfig_init(void) |
| 57 | { |
| 58 | struct proc_dir_entry *entry; |
| 59 | |
| 60 | /* create the current config file */ |
Denis V. Lunev | c33fff0 | 2008-04-29 01:02:31 -0700 | [diff] [blame] | 61 | entry = proc_create("config.gz", S_IFREG | S_IRUGO, NULL, |
| 62 | &ikconfig_file_ops); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | if (!entry) |
| 64 | return -ENOMEM; |
| 65 | |
Masahiro Yamada | 13610aa | 2019-03-07 16:29:53 -0800 | [diff] [blame] | 66 | proc_set_size(entry, &kernel_config_data_end - &kernel_config_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
| 68 | return 0; |
| 69 | } |
| 70 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | static void __exit ikconfig_cleanup(void) |
| 72 | { |
Alexey Dobriyan | c74c120 | 2008-04-29 01:01:44 -0700 | [diff] [blame] | 73 | remove_proc_entry("config.gz", NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | module_init(ikconfig_init); |
| 77 | module_exit(ikconfig_cleanup); |
| 78 | |
Stephen Boyd | 626a031 | 2011-07-25 17:13:12 -0700 | [diff] [blame] | 79 | #endif /* CONFIG_IKCONFIG_PROC */ |
| 80 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | MODULE_LICENSE("GPL"); |
| 82 | MODULE_AUTHOR("Randy Dunlap"); |
| 83 | MODULE_DESCRIPTION("Echo the kernel .config file used to build the kernel"); |