setenv.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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. #define strndup __strndup
  18. #define _GNU_SOURCE
  19. #include <features.h>
  20. #include <errno.h>
  21. #include <stdlib.h>
  22. #include <string.h>
  23. #include <unistd.h>
  24. #ifdef __UCLIBC_HAS_THREADS__
  25. # include <pthread.h>
  26. static pthread_mutex_t mylock = PTHREAD_MUTEX_INITIALIZER;
  27. #endif
  28. #define LOCK __pthread_mutex_lock(&mylock)
  29. #define UNLOCK __pthread_mutex_unlock(&mylock)
  30. extern int __unsetenv (__const char *__name) attribute_hidden;
  31. /* If this variable is not a null pointer we allocated the current
  32. environment. */
  33. static char **last_environ;
  34. /* This function is used by `setenv' and `putenv'. The difference between
  35. the two functions is that for the former must create a new string which
  36. is then placed in the environment, while the argument of `putenv'
  37. must be used directly. This is all complicated by the fact that we try
  38. to reuse values once generated for a `setenv' call since we can never
  39. free the strings. */
  40. int attribute_hidden __add_to_environ (const char *name, const char *value,
  41. const char *combined, int replace)
  42. {
  43. register char **ep;
  44. register size_t size;
  45. const size_t namelen = __strlen (name);
  46. const size_t vallen = value != NULL ? __strlen (value) + 1 : 0;
  47. LOCK;
  48. /* We have to get the pointer now that we have the lock and not earlier
  49. since another thread might have created a new environment. */
  50. ep = __environ;
  51. size = 0;
  52. if (ep != NULL) {
  53. for (; *ep != NULL; ++ep) {
  54. if (!__strncmp (*ep, name, namelen) && (*ep)[namelen] == '=')
  55. break;
  56. else
  57. ++size;
  58. }
  59. }
  60. if (ep == NULL || *ep == NULL) {
  61. char **new_environ;
  62. /* We allocated this space; we can extend it. */
  63. new_environ = (char **) realloc (last_environ,
  64. (size + 2) * sizeof (char *));
  65. if (new_environ == NULL) {
  66. UNLOCK;
  67. return -1;
  68. }
  69. /* If the whole entry is given add it. */
  70. if (combined != NULL) {
  71. /* We must not add the string to the search tree since it belongs
  72. to the user. */
  73. new_environ[size] = (char *) combined;
  74. } else {
  75. /* See whether the value is already known. */
  76. new_environ[size] = (char *) malloc (namelen + 1 + vallen);
  77. if (new_environ[size] == NULL) {
  78. __set_errno (ENOMEM);
  79. UNLOCK;
  80. return -1;
  81. }
  82. __memcpy (new_environ[size], name, namelen);
  83. new_environ[size][namelen] = '=';
  84. __memcpy (&new_environ[size][namelen + 1], value, vallen);
  85. }
  86. if (__environ != last_environ) {
  87. __memcpy ((char *) new_environ, (char *) __environ,
  88. size * sizeof (char *));
  89. }
  90. new_environ[size + 1] = NULL;
  91. last_environ = __environ = new_environ;
  92. } else if (replace) {
  93. char *np;
  94. /* Use the user string if given. */
  95. if (combined != NULL) {
  96. np = (char *) combined;
  97. } else {
  98. np = malloc (namelen + 1 + vallen);
  99. if (np == NULL) {
  100. UNLOCK;
  101. return -1;
  102. }
  103. __memcpy (np, name, namelen);
  104. np[namelen] = '=';
  105. __memcpy (&np[namelen + 1], value, vallen);
  106. }
  107. *ep = np;
  108. }
  109. UNLOCK;
  110. return 0;
  111. }
  112. int attribute_hidden __setenv (const char *name, const char *value, int replace)
  113. {
  114. return __add_to_environ (name, value, NULL, replace);
  115. }
  116. strong_alias(__setenv,setenv)
  117. int attribute_hidden __unsetenv (const char *name)
  118. {
  119. size_t len;
  120. char **ep;
  121. if (name == NULL || *name == '\0' || __strchr (name, '=') != NULL) {
  122. __set_errno (EINVAL);
  123. return -1;
  124. }
  125. len = __strlen (name);
  126. LOCK;
  127. ep = __environ;
  128. while (*ep != NULL) {
  129. if (!__strncmp (*ep, name, len) && (*ep)[len] == '=') {
  130. /* Found it. Remove this pointer by moving later ones back. */
  131. char **dp = ep;
  132. do {
  133. dp[0] = dp[1];
  134. } while (*dp++);
  135. /* Continue the loop in case NAME appears again. */
  136. } else {
  137. ++ep;
  138. }
  139. }
  140. UNLOCK;
  141. return 0;
  142. }
  143. strong_alias(__unsetenv,unsetenv)
  144. /* The `clearenv' was planned to be added to POSIX.1 but probably
  145. never made it. Nevertheless the POSIX.9 standard (POSIX bindings
  146. for Fortran 77) requires this function. */
  147. int clearenv (void)
  148. {
  149. LOCK;
  150. if (__environ == last_environ && __environ != NULL) {
  151. /* We allocated this environment so we can free it. */
  152. free (__environ);
  153. last_environ = NULL;
  154. }
  155. /* Clear the environment pointer removes the whole environment. */
  156. __environ = NULL;
  157. UNLOCK;
  158. return 0;
  159. }
  160. /* Put STRING, which is of the form "NAME=VALUE", in the environment. */
  161. int putenv (char *string)
  162. {
  163. int result;
  164. const char *const name_end = __strchr (string, '=');
  165. if (name_end != NULL) {
  166. char *name = strndup(string, name_end - string);
  167. result = __add_to_environ (name, NULL, string, 1);
  168. free(name);
  169. return(result);
  170. }
  171. __unsetenv (string);
  172. return 0;
  173. }