NetBSD/lib/libc/stdlib/setenv.c

129 lines
3.8 KiB
C
Raw Normal View History

/* $NetBSD: setenv.c,v 1.29 2005/02/17 21:22:25 christos 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.
* 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.
*/
#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
__RCSID("$NetBSD: setenv.c,v 1.29 2005/02/17 21:22:25 christos Exp $");
1995-12-28 11:51:55 +03:00
#endif
1993-03-21 12:45:37 +03:00
#endif /* LIBC_SCCS and not lint */
#include "namespace.h"
#include <assert.h>
#include <errno.h>
1993-03-21 12:45:37 +03:00
#include <stdlib.h>
#include <string.h>
#include "local.h"
#include "reentrant.h"
1993-03-21 12:45:37 +03:00
#ifdef __weak_alias
__weak_alias(setenv,_setenv)
#endif
2003-01-18 13:52:16 +03:00
#ifdef _REENTRANT
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 char **saveenv; /* copy of previously allocated space */
char *c, **newenv;
1998-11-15 20:13:51 +03:00
const char *cc;
2005-02-17 22:58:21 +03:00
size_t l_value, size;
int offset;
1993-03-21 12:45:37 +03: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);
rwlock_wrlock(&__environ_lock);
1998-11-15 20:13:51 +03:00
/* find if already exists */
if ((c = __findenv(name, &offset)) != NULL) {
if (!rewrite)
goto good;
if (strlen(c) >= l_value) /* old larger; copy over */
goto copy;
1993-03-21 12:45:37 +03:00
} else { /* create new slot */
2005-02-17 22:58:21 +03:00
size_t cnt;
1993-03-21 12:45:37 +03:00
for (cnt = 0; environ[cnt]; ++cnt)
continue;
2005-02-17 22:58:21 +03:00
size = (size_t)(sizeof(char *) * (cnt + 2));
if (saveenv == environ) { /* just increase size */
2005-02-17 22:58:21 +03:00
if ((newenv = realloc(saveenv, size)) == NULL)
goto bad;
saveenv = newenv;
} else { /* get new space */
free(saveenv);
2005-02-17 22:58:21 +03:00
if ((saveenv = malloc(size)) == NULL)
goto bad;
(void)memcpy(saveenv, environ, cnt * sizeof(char *));
1993-03-21 12:45:37 +03:00
}
environ = saveenv;
1993-03-21 12:45:37 +03:00
environ[cnt + 1] = NULL;
2005-02-17 22:58:21 +03:00
offset = (int)cnt;
1993-03-21 12:45:37 +03:00
}
for (cc = name; *cc && *cc != '='; ++cc) /* no `=' in name */
1998-11-15 20:13:51 +03:00
continue;
2005-02-17 22:58:21 +03:00
size = cc - name;
/* name + `=' + value */
if ((environ[offset] = malloc(size + l_value + 2)) == NULL)
goto bad;
c = environ[offset];
2005-02-17 22:58:21 +03:00
(void)memcpy(c, name, size);
c += size;
*c++ = '=';
copy:
(void)memcpy(c, value, l_value + 1);
good:
rwlock_unlock(&__environ_lock);
return 0;
bad:
rwlock_unlock(&__environ_lock);
return -1;
1993-03-21 12:45:37 +03:00
}