2005-02-17 22:58:21 +03:00
|
|
|
/* $NetBSD: setenv.c,v 1.28 2005/02/17 19:58:21 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.
|
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
|
2005-02-17 22:58:21 +03:00
|
|
|
__RCSID("$NetBSD: setenv.c,v 1.28 2005/02/17 19:58:21 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 */
|
|
|
|
|
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;
|
|
|
|
{
|
2005-02-17 05:17:43 +03:00
|
|
|
static char **saveenv; /* copy of previously allocated space */
|
2005-02-17 07:16:09 +03:00
|
|
|
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;
|
2002-11-11 23:34:10 +03:00
|
|
|
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) {
|
2005-02-17 05:17:43 +03:00
|
|
|
if (!rewrite)
|
|
|
|
goto good;
|
2005-02-17 07:30:23 +03:00
|
|
|
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
|
|
|
|
2005-02-17 05:17:43 +03:00
|
|
|
for (cnt = 0; *environ[cnt]; ++cnt)
|
|
|
|
continue;
|
2005-02-17 22:58:21 +03:00
|
|
|
size = (size_t)(sizeof(char *) * (cnt + 2));
|
2005-02-17 05:17:43 +03:00
|
|
|
if (saveenv == environ) { /* just increase size */
|
2005-02-17 22:58:21 +03:00
|
|
|
if ((newenv = realloc(saveenv, size)) == NULL)
|
2005-02-17 05:17:43 +03:00
|
|
|
goto bad;
|
2005-02-17 07:16:09 +03:00
|
|
|
saveenv = newenv;
|
|
|
|
} else { /* get new space */
|
|
|
|
free(saveenv);
|
2005-02-17 22:58:21 +03:00
|
|
|
if ((saveenv = malloc(size)) == NULL)
|
2005-02-17 05:17:43 +03:00
|
|
|
goto bad;
|
|
|
|
(void)memcpy(saveenv, environ, cnt * sizeof(char *));
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
2005-02-17 05:17:43 +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
|
|
|
}
|
2005-02-17 05:17:43 +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)
|
2005-02-17 05:17:43 +03:00
|
|
|
goto bad;
|
2005-02-17 07:16:09 +03:00
|
|
|
c = environ[offset];
|
2005-02-17 22:58:21 +03:00
|
|
|
(void)memcpy(c, name, size);
|
|
|
|
c += size;
|
2005-02-17 07:16:09 +03:00
|
|
|
*c++ = '=';
|
2005-02-17 07:30:23 +03:00
|
|
|
copy:
|
2005-02-17 07:16:09 +03:00
|
|
|
(void)memcpy(c, value, l_value + 1);
|
2005-02-17 05:17:43 +03:00
|
|
|
good:
|
|
|
|
rwlock_unlock(&__environ_lock);
|
|
|
|
return 0;
|
|
|
|
bad:
|
1998-09-12 01:03:18 +04:00
|
|
|
rwlock_unlock(&__environ_lock);
|
2005-02-17 05:17:43 +03:00
|
|
|
return -1;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|