env.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * env implementation for busybox
  4. *
  5. * Copyright (c) 1988, 1993, 1994
  6. * The Regents of the University of California. All rights reserved.
  7. *
  8. * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  9. *
  10. * Original copyright notice is retained at the end of this file.
  11. *
  12. * Modified for BusyBox by Erik Andersen <andersen@codepoet.org>
  13. */
  14. /* BB_AUDIT SUSv3 compliant */
  15. /* http://www.opengroup.org/onlinepubs/007904975/utilities/env.html */
  16. /* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org)
  17. *
  18. * Fixed bug involving exit return codes if execvp fails. Also added
  19. * output error checking.
  20. */
  21. /*
  22. * Modified by Vladimir Oleynik <dzo@simtreas.ru> (C) 2003
  23. * - correct "-" option usage
  24. * - multiple "-u unsetenv" support
  25. * - GNU long option support
  26. * - use xfunc_error_retval
  27. */
  28. #include "libbb.h"
  29. #if ENABLE_FEATURE_ENV_LONG_OPTIONS
  30. static const char env_longopts[] ALIGN1 =
  31. "ignore-environment\0" No_argument "i"
  32. "unset\0" Required_argument "u"
  33. ;
  34. #endif
  35. int env_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  36. int env_main(int argc ATTRIBUTE_UNUSED, char **argv)
  37. {
  38. /* cleanenv was static - why? */
  39. char *cleanenv[1];
  40. char **ep;
  41. unsigned opt;
  42. llist_t *unset_env = NULL;
  43. opt_complementary = "u::";
  44. #if ENABLE_FEATURE_ENV_LONG_OPTIONS
  45. applet_long_options = env_longopts;
  46. #endif
  47. opt = getopt32(argv, "+iu:", &unset_env);
  48. argv += optind;
  49. if (*argv && LONE_DASH(argv[0])) {
  50. opt |= 1;
  51. ++argv;
  52. }
  53. if (opt & 1) {
  54. cleanenv[0] = NULL;
  55. environ = cleanenv;
  56. } else {
  57. while (unset_env) {
  58. unsetenv(llist_pop(&unset_env));
  59. }
  60. }
  61. while (*argv && (strchr(*argv, '=') != NULL)) {
  62. if (putenv(*argv) < 0) {
  63. bb_perror_msg_and_die("putenv");
  64. }
  65. ++argv;
  66. }
  67. if (*argv) {
  68. BB_EXECVP(*argv, argv);
  69. /* SUSv3-mandated exit codes. */
  70. xfunc_error_retval = (errno == ENOENT) ? 127 : 126;
  71. bb_simple_perror_msg_and_die(*argv);
  72. }
  73. for (ep = environ; *ep; ep++) {
  74. puts(*ep);
  75. }
  76. fflush_stdout_and_exit(EXIT_SUCCESS);
  77. }
  78. /*
  79. * Copyright (c) 1988, 1993, 1994
  80. * The Regents of the University of California. All rights reserved.
  81. *
  82. * Redistribution and use in source and binary forms, with or without
  83. * modification, are permitted provided that the following conditions
  84. * are met:
  85. * 1. Redistributions of source code must retain the above copyright
  86. * notice, this list of conditions and the following disclaimer.
  87. * 2. Redistributions in binary form must reproduce the above copyright
  88. * notice, this list of conditions and the following disclaimer in the
  89. * documentation and/or other materials provided with the distribution.
  90. *
  91. * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
  92. * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
  93. *
  94. * 4. Neither the name of the University nor the names of its contributors
  95. * may be used to endorse or promote products derived from this software
  96. * without specific prior written permission.
  97. *
  98. * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  99. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  100. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  101. * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  102. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  103. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  104. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  105. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  106. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  107. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  108. * SUCH DAMAGE.
  109. */