2003-08-07 20:42:00 +04:00
|
|
|
/* $NetBSD: setenv.c,v 1.23 2003/08/07 16:43:44 agc Exp $ */
|
1995-12-28 11:51:55 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1998-01-31 02:37:40 +03:00
|
|
|
* Copyright (c) 1987, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 20:42:00 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-03-21 12:45:37 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-07-14 00:16:31 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
1995-12-28 11:51:55 +03:00
|
|
|
#if 0
|
1998-01-31 02:37:40 +03:00
|
|
|
static char sccsid[] = "@(#)setenv.c 8.1 (Berkeley) 6/4/93";
|
1995-12-28 11:51:55 +03:00
|
|
|
#else
|
2003-08-07 20:42:00 +04:00
|
|
|
__RCSID("$NetBSD: setenv.c,v 1.23 2003/08/07 16:43:44 agc Exp $");
|
1995-12-28 11:51:55 +03:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
|
1997-07-21 18:06:24 +04:00
|
|
|
#include "namespace.h"
|
1999-09-16 15:44:54 +04:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <errno.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1997-07-14 00:16:31 +04:00
|
|
|
#include "local.h"
|
1998-09-12 01:03:18 +04:00
|
|
|
#include "reentrant.h"
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-07-21 18:06:24 +04:00
|
|
|
#ifdef __weak_alias
|
2000-01-23 01:19:07 +03:00
|
|
|
__weak_alias(setenv,_setenv)
|
1997-07-21 18:06:24 +04:00
|
|
|
#endif
|
|
|
|
|
2003-01-18 13:52:16 +03:00
|
|
|
#ifdef _REENTRANT
|
1998-09-12 01:03:18 +04:00
|
|
|
extern rwlock_t __environ_lock;
|
|
|
|
#endif
|
|
|
|
|
2000-12-20 21:38:30 +03:00
|
|
|
extern char **environ;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* setenv --
|
|
|
|
* Set the value of the environmental variable "name" to be
|
|
|
|
* "value". If rewrite is set, replace any current value.
|
|
|
|
*/
|
1995-06-14 09:19:52 +04:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
setenv(name, value, rewrite)
|
1998-02-03 21:38:12 +03:00
|
|
|
const char *name;
|
|
|
|
const char *value;
|
1993-03-21 12:45:37 +03:00
|
|
|
int rewrite;
|
|
|
|
{
|
|
|
|
static int alloced; /* if allocated space before */
|
1998-02-03 21:38:12 +03:00
|
|
|
char *c;
|
1998-11-15 20:13:51 +03:00
|
|
|
const char *cc;
|
2002-11-11 23:34:10 +03:00
|
|
|
size_t l_value;
|
|
|
|
int offset;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1999-09-16 15:44:54 +04:00
|
|
|
_DIAGASSERT(name != NULL);
|
|
|
|
_DIAGASSERT(value != NULL);
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
if (*value == '=') /* no `=' in value */
|
|
|
|
++value;
|
|
|
|
l_value = strlen(value);
|
1998-09-12 01:03:18 +04:00
|
|
|
rwlock_wrlock(&__environ_lock);
|
1998-11-15 20:13:51 +03:00
|
|
|
/* find if already exists */
|
|
|
|
if ((c = __findenv(name, &offset)) != NULL) {
|
1998-09-12 01:03:18 +04:00
|
|
|
if (!rewrite) {
|
|
|
|
rwlock_unlock(&__environ_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
1998-09-12 01:03:18 +04:00
|
|
|
}
|
1998-01-31 02:37:40 +03:00
|
|
|
if (strlen(c) >= l_value) { /* old larger; copy over */
|
|
|
|
while ((*c++ = *value++) != '\0');
|
1998-09-12 01:03:18 +04:00
|
|
|
rwlock_unlock(&__environ_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
} else { /* create new slot */
|
1998-02-03 21:38:12 +03:00
|
|
|
int cnt;
|
|
|
|
char **p;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-01-31 02:37:40 +03:00
|
|
|
for (p = environ, cnt = 0; *p; ++p, ++cnt);
|
1993-03-21 12:45:37 +03:00
|
|
|
if (alloced) { /* just increase size */
|
1998-11-15 20:13:51 +03:00
|
|
|
environ = realloc(environ,
|
1993-03-21 12:45:37 +03:00
|
|
|
(size_t)(sizeof(char *) * (cnt + 2)));
|
1998-09-12 01:03:18 +04:00
|
|
|
if (!environ) {
|
|
|
|
rwlock_unlock(&__environ_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (-1);
|
1998-09-12 01:03:18 +04:00
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
else { /* get new space */
|
|
|
|
alloced = 1; /* copy old entries into it */
|
1998-01-31 02:37:40 +03:00
|
|
|
p = malloc((size_t)(sizeof(char *) * (cnt + 2)));
|
1998-09-12 01:03:18 +04:00
|
|
|
if (!p) {
|
|
|
|
rwlock_unlock(&__environ_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (-1);
|
1998-09-12 01:03:18 +04:00
|
|
|
}
|
1998-08-10 06:43:08 +04:00
|
|
|
memcpy(p, environ, cnt * sizeof(char *));
|
1998-01-31 02:37:40 +03:00
|
|
|
environ = p;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
environ[cnt + 1] = NULL;
|
|
|
|
offset = cnt;
|
|
|
|
}
|
1998-11-15 20:13:51 +03:00
|
|
|
for (cc = name; *cc && *cc != '='; ++cc)/* no `=' in name */
|
|
|
|
continue;
|
1993-03-21 12:45:37 +03:00
|
|
|
if (!(environ[offset] = /* name + `=' + value */
|
1998-11-15 20:13:51 +03:00
|
|
|
malloc((size_t)((int)(cc - name) + l_value + 2)))) {
|
1998-09-12 01:03:18 +04:00
|
|
|
rwlock_unlock(&__environ_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (-1);
|
1998-09-12 01:03:18 +04:00
|
|
|
}
|
1998-01-31 02:37:40 +03:00
|
|
|
for (c = environ[offset]; (*c = *name++) && *c != '='; ++c);
|
|
|
|
for (*c++ = '='; (*c++ = *value++) != '\0'; );
|
1998-09-12 01:03:18 +04:00
|
|
|
rwlock_unlock(&__environ_lock);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
}
|