configs.c 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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/kernel.h>
  26. #include <linux/module.h>
  27. #include <linux/proc_fs.h>
  28. #include <linux/seq_file.h>
  29. #include <linux/init.h>
  30. #include <asm/uaccess.h>
  31. /**************************************************/
  32. /* the actual current config file */
  33. /*
  34. * Define kernel_config_data and kernel_config_data_size, which contains the
  35. * wrapped and compressed configuration file. The file is first compressed
  36. * with gzip and then bounded by two eight byte magic numbers to allow
  37. * extraction from a binary kernel image:
  38. *
  39. * IKCFG_ST
  40. * <image>
  41. * IKCFG_ED
  42. */
  43. #define MAGIC_START "IKCFG_ST"
  44. #define MAGIC_END "IKCFG_ED"
  45. #include "config_data.h"
  46. #define MAGIC_SIZE (sizeof(MAGIC_START) - 1)
  47. #define kernel_config_data_size \
  48. (sizeof(kernel_config_data) - 1 - MAGIC_SIZE * 2)
  49. #ifdef CONFIG_IKCONFIG_PROC
  50. static ssize_t
  51. ikconfig_read_current(struct file *file, char __user *buf,
  52. size_t len, loff_t * offset)
  53. {
  54. return simple_read_from_buffer(buf, len, offset,
  55. kernel_config_data + MAGIC_SIZE,
  56. kernel_config_data_size);
  57. }
  58. static const struct file_operations ikconfig_file_ops = {
  59. .owner = THIS_MODULE,
  60. .read = ikconfig_read_current,
  61. };
  62. static int __init ikconfig_init(void)
  63. {
  64. struct proc_dir_entry *entry;
  65. /* create the current config file */
  66. entry = proc_create("config.gz", S_IFREG | S_IRUGO, NULL,
  67. &ikconfig_file_ops);
  68. if (!entry)
  69. return -ENOMEM;
  70. entry->size = kernel_config_data_size;
  71. return 0;
  72. }
  73. static void __exit ikconfig_cleanup(void)
  74. {
  75. remove_proc_entry("config.gz", NULL);
  76. }
  77. module_init(ikconfig_init);
  78. module_exit(ikconfig_cleanup);
  79. MODULE_LICENSE("GPL");
  80. MODULE_AUTHOR("Randy Dunlap");
  81. MODULE_DESCRIPTION("Echo the kernel .config file used to build the kernel");
  82. #endif /* CONFIG_IKCONFIG_PROC */