configs.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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 <rdunlap@xenotime.net>
  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. #include <linux/config.h>
  26. #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>
  31. #include <asm/uaccess.h>
  32. /**************************************************/
  33. /* the actual current config file */
  34. /*
  35. * Define kernel_config_data and kernel_config_data_size, which contains the
  36. * wrapped and compressed configuration file. The file is first compressed
  37. * with gzip and then bounded by two eight byte magic numbers to allow
  38. * extraction from a binary kernel image:
  39. *
  40. * IKCFG_ST
  41. * <image>
  42. * IKCFG_ED
  43. */
  44. #define MAGIC_START "IKCFG_ST"
  45. #define MAGIC_END "IKCFG_ED"
  46. #include "config_data.h"
  47. #define MAGIC_SIZE (sizeof(MAGIC_START) - 1)
  48. #define kernel_config_data_size \
  49. (sizeof(kernel_config_data) - 1 - MAGIC_SIZE * 2)
  50. #ifdef CONFIG_IKCONFIG_PROC
  51. /**************************************************/
  52. /* globals and useful constants */
  53. static ssize_t
  54. ikconfig_read_current(struct file *file, char __user *buf,
  55. size_t len, loff_t * offset)
  56. {
  57. loff_t pos = *offset;
  58. ssize_t count;
  59. if (pos >= kernel_config_data_size)
  60. return 0;
  61. count = min(len, (size_t)(kernel_config_data_size - pos));
  62. if (copy_to_user(buf, kernel_config_data + MAGIC_SIZE + pos, count))
  63. return -EFAULT;
  64. *offset += count;
  65. return count;
  66. }
  67. static struct file_operations ikconfig_file_ops = {
  68. .owner = THIS_MODULE,
  69. .read = ikconfig_read_current,
  70. };
  71. /***************************************************/
  72. /* ikconfig_init: start up everything we need to */
  73. static int __init ikconfig_init(void)
  74. {
  75. struct proc_dir_entry *entry;
  76. /* create the current config file */
  77. entry = create_proc_entry("config.gz", S_IFREG | S_IRUGO,
  78. &proc_root);
  79. if (!entry)
  80. return -ENOMEM;
  81. entry->proc_fops = &ikconfig_file_ops;
  82. entry->size = kernel_config_data_size;
  83. return 0;
  84. }
  85. /***************************************************/
  86. /* ikconfig_cleanup: clean up our mess */
  87. static void __exit ikconfig_cleanup(void)
  88. {
  89. remove_proc_entry("config.gz", &proc_root);
  90. }
  91. module_init(ikconfig_init);
  92. module_exit(ikconfig_cleanup);
  93. MODULE_LICENSE("GPL");
  94. MODULE_AUTHOR("Randy Dunlap");
  95. MODULE_DESCRIPTION("Echo the kernel .config file used to build the kernel");
  96. #endif /* CONFIG_IKCONFIG_PROC */