setenv.c 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. /* Copyright (C) 1992,95,96,97,98,99,2000,2001 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, write to the Free
  13. Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  14. 02111-1307 USA.
  15. modified for uClibc by Erik Andersen <andersen@codepoet.org>
  16. */
  17. #include <features.h>
  18. #include <errno.h>
  19. #include <stdlib.h>
  20. #include <string.h>
  21. #include <unistd.h>
  22. /* Experimentally off - libc_hidden_proto(memcpy) */
  23. /* Experimentally off - libc_hidden_proto(strchr) */
  24. /* Experimentally off - libc_hidden_proto(strlen) */
  25. /* Experimentally off - libc_hidden_proto(strncmp) */
  26. /* Experimentally off - libc_hidden_proto(strndup) */
  27. /* libc_hidden_proto(unsetenv) */
  28. #include <bits/uClibc_mutex.h>
  29. __UCLIBC_MUTEX_STATIC(mylock, PTHREAD_MUTEX_INITIALIZER);
  30. /* If this variable is not a null pointer we allocated the current
  31. environment. */
  32. static char **last_environ;
  33. /* This function is used by `setenv' and `putenv'. The difference between
  34. the two functions is that for the former must create a new string which
  35. is then placed in the environment, while the argument of `putenv'
  36. must be used directly. This is all complicated by the fact that we try
  37. to reuse values once generated for a `setenv' call since we can never
  38. free the strings. */
  39. int __add_to_environ(const char *name, const char *value,
  40. char *combined, int replace) attribute_hidden;
  41. int __add_to_environ(const char *name, const char *value,
  42. char *combined, int replace)
  43. {
  44. register char **ep;
  45. register size_t size;
  46. /* name may come from putenv() and thus may contain "=VAL" part */
  47. const size_t namelen = strchrnul(name, '=') - name;
  48. const size_t vallen = value != NULL ? strlen(value) + 1 : 0;
  49. int rv = -1;
  50. __UCLIBC_MUTEX_LOCK(mylock);
  51. /* We have to get the pointer now that we have the lock and not earlier
  52. since another thread might have created a new environment. */
  53. ep = __environ;
  54. size = 0;
  55. if (ep != NULL) {
  56. for (; *ep != NULL; ++ep) {
  57. if (!strncmp(*ep, name, namelen) && (*ep)[namelen] == '=')
  58. break;
  59. ++size;
  60. }
  61. }
  62. if (ep == NULL || *ep == NULL) {
  63. /* Not found, add at the end */
  64. char **new_environ;
  65. /* We allocated this space; we can extend it. */
  66. new_environ = realloc(last_environ, (size + 2) * sizeof(char *));
  67. if (new_environ == NULL) {
  68. __set_errno(ENOMEM);
  69. goto DONE;
  70. }
  71. if (__environ != last_environ) {
  72. memcpy(new_environ, __environ, size * sizeof(char *));
  73. }
  74. last_environ = __environ = new_environ;
  75. if (combined != NULL) {
  76. /* If the whole "VAR=VAL" is given, add it. */
  77. /* We must not add the string to the search tree
  78. * since it belongs to the user.
  79. * [glibc comment, uclibc doesnt track ptrs] */
  80. new_environ[size] = combined;
  81. } else {
  82. /* Build new "VAR=VAL" string. */
  83. new_environ[size] = malloc(namelen + 1 + vallen);
  84. if (new_environ[size] == NULL) {
  85. __set_errno(ENOMEM);
  86. goto DONE;
  87. }
  88. memcpy(new_environ[size], name, namelen);
  89. new_environ[size][namelen] = '=';
  90. memcpy(&new_environ[size][namelen + 1], value, vallen);
  91. }
  92. new_environ[size + 1] = NULL;
  93. } else if (replace) {
  94. /* Build the name if needed. */
  95. if (combined == NULL) {
  96. combined = malloc(namelen + 1 + vallen);
  97. if (combined == NULL) {
  98. __set_errno(ENOMEM);
  99. goto DONE;
  100. }
  101. memcpy(combined, name, namelen);
  102. combined[namelen] = '=';
  103. memcpy(&combined[namelen + 1], value, vallen);
  104. }
  105. *ep = combined;
  106. }
  107. rv = 0;
  108. DONE:
  109. __UCLIBC_MUTEX_UNLOCK(mylock);
  110. return rv;
  111. }
  112. /* libc_hidden_proto(setenv) */
  113. int setenv(const char *name, const char *value, int replace)
  114. {
  115. return __add_to_environ(name, value, NULL, replace);
  116. }
  117. libc_hidden_def(setenv)
  118. /* libc_hidden_proto(unsetenv) */
  119. int unsetenv(const char *name)
  120. {
  121. const char *eq;
  122. size_t len;
  123. char **ep;
  124. if (name == NULL || *name == '\0'
  125. || *(eq = strchrnul(name, '=')) == '='
  126. ) {
  127. __set_errno(EINVAL);
  128. return -1;
  129. }
  130. len = eq - name; /* avoiding strlen this way */
  131. __UCLIBC_MUTEX_LOCK(mylock);
  132. ep = __environ;
  133. /* NB: clearenv(); unsetenv("foo"); should not segfault */
  134. if (ep) while (*ep != NULL) {
  135. if (!strncmp(*ep, name, len) && (*ep)[len] == '=') {
  136. /* Found it. Remove this pointer by moving later ones back. */
  137. char **dp = ep;
  138. do {
  139. dp[0] = dp[1];
  140. } while (*dp++);
  141. /* Continue the loop in case NAME appears again. */
  142. } else {
  143. ++ep;
  144. }
  145. }
  146. __UCLIBC_MUTEX_UNLOCK(mylock);
  147. return 0;
  148. }
  149. libc_hidden_def(unsetenv)
  150. /* The `clearenv' was planned to be added to POSIX.1 but probably
  151. never made it. Nevertheless the POSIX.9 standard (POSIX bindings
  152. for Fortran 77) requires this function. */
  153. int clearenv(void)
  154. {
  155. __UCLIBC_MUTEX_LOCK(mylock);
  156. /* If we allocated this environment we can free it.
  157. * If we did not allocate this environment, it's NULL already
  158. * and is safe to free(). */
  159. free(last_environ);
  160. last_environ = NULL;
  161. /* Clear the environment pointer removes the whole environment. */
  162. __environ = NULL;
  163. __UCLIBC_MUTEX_UNLOCK(mylock);
  164. return 0;
  165. }
  166. /* Put STRING, which is of the form "NAME=VALUE", in the environment. */
  167. int putenv(char *string)
  168. {
  169. if (strchr(string, '=') != NULL) {
  170. return __add_to_environ(string, NULL, string, 1);
  171. }
  172. return unsetenv(string);
  173. }