bbconfig.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * This file was released into the public domain by Paul Fox.
  4. */
  5. //config:config BBCONFIG
  6. //config: bool "bbconfig (9.7 kb)"
  7. //config: default n
  8. //config: help
  9. //config: The bbconfig applet will print the config file with which
  10. //config: busybox was built.
  11. //config:
  12. //config:config FEATURE_COMPRESS_BBCONFIG
  13. //config: bool "Compress bbconfig data"
  14. //config: default y
  15. //config: depends on BBCONFIG
  16. //config: help
  17. //config: Store bbconfig data in compressed form, uncompress them on-the-fly
  18. //config: before output.
  19. //config:
  20. //config: If you have a really tiny busybox with few applets enabled (and
  21. //config: bunzip2 isn't one of them), the overhead of the decompressor might
  22. //config: be noticeable. Also, if you run executables directly from ROM
  23. //config: and have very little memory, this might not be a win. Otherwise,
  24. //config: you probably want this.
  25. //applet:IF_BBCONFIG(APPLET(bbconfig, BB_DIR_BIN, BB_SUID_DROP))
  26. //kbuild:lib-$(CONFIG_BBCONFIG) += bbconfig.o
  27. //usage:#define bbconfig_trivial_usage
  28. //usage: ""
  29. //usage:#define bbconfig_full_usage "\n\n"
  30. //usage: "Print the config file used by busybox build"
  31. #include "libbb.h"
  32. #include "bbconfigopts.h"
  33. #if ENABLE_FEATURE_COMPRESS_BBCONFIG
  34. # include "bb_archive.h"
  35. # include "bbconfigopts_bz2.h"
  36. #endif
  37. int bbconfig_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  38. int bbconfig_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
  39. {
  40. #if ENABLE_FEATURE_COMPRESS_BBCONFIG
  41. bunzip_data *bd;
  42. int i = start_bunzip(&bd,
  43. /* src_fd: */ -1,
  44. /* inbuf: */ bbconfig_config_bz2,
  45. /* len: */ sizeof(bbconfig_config_bz2));
  46. /* read_bunzip can longjmp to start_bunzip, and ultimately
  47. * end up here with i != 0 on read data errors! Not trivial */
  48. if (!i) {
  49. /* Cannot use xmalloc: will leak bd in NOFORK case! */
  50. char *outbuf = malloc_or_warn(sizeof(bbconfig_config));
  51. if (outbuf) {
  52. read_bunzip(bd, outbuf, sizeof(bbconfig_config));
  53. full_write1_str(outbuf);
  54. }
  55. }
  56. #else
  57. full_write1_str(bbconfig_config);
  58. #endif
  59. return 0;
  60. }