freebsd-dev/bin/sh/var.c

950 lines
18 KiB
C
Raw Normal View History

1994-05-26 06:18:55 +00:00
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Kenneth Almquist.
*
* 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.
* 4. Neither the name of the University nor the names of its contributors
* 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.
*/
#ifndef lint
1998-05-18 06:44:24 +00:00
#if 0
static char sccsid[] = "@(#)var.c 8.3 (Berkeley) 5/4/95";
#endif
1994-05-26 06:18:55 +00:00
#endif /* not lint */
2002-06-30 05:15:05 +00:00
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
1994-05-26 06:18:55 +00:00
#include <unistd.h>
#include <stdlib.h>
#include <paths.h>
1994-05-26 06:18:55 +00:00
/*
* Shell variables.
*/
1996-08-11 22:51:00 +00:00
#include <locale.h>
1994-05-26 06:18:55 +00:00
#include "shell.h"
#include "output.h"
#include "expand.h"
#include "nodes.h" /* for other headers */
#include "eval.h" /* defines cmdenviron */
#include "exec.h"
#include "syntax.h"
#include "options.h"
#include "mail.h"
#include "var.h"
#include "memalloc.h"
#include "error.h"
#include "mystring.h"
#include "parser.h"
#ifndef NO_HISTORY
#include "myhistedit.h"
#endif
1994-05-26 06:18:55 +00:00
#define VTABSIZE 39
struct varinit {
struct var *var;
int flags;
const char *text;
void (*func)(const char *);
1994-05-26 06:18:55 +00:00
};
#ifndef NO_HISTORY
1994-05-26 06:18:55 +00:00
struct var vhistsize;
struct var vterm;
#endif
1994-05-26 06:18:55 +00:00
struct var vifs;
struct var vmail;
struct var vmpath;
struct var vpath;
struct var vppid;
1994-05-26 06:18:55 +00:00
struct var vps1;
struct var vps2;
struct var vps4;
1994-05-26 06:18:55 +00:00
struct var vvers;
static struct var voptind;
1994-05-26 06:18:55 +00:00
static const struct varinit varinit[] = {
#ifndef NO_HISTORY
{ &vhistsize, VUNSET, "HISTSIZE=",
sethistsize },
#endif
{ &vifs, 0, "IFS= \t\n",
NULL },
{ &vmail, VUNSET, "MAIL=",
NULL },
{ &vmpath, VUNSET, "MAILPATH=",
NULL },
{ &vpath, 0, "PATH=" _PATH_DEFPATH,
changepath },
{ &vppid, VUNSET, "PPID=",
NULL },
/*
1994-05-26 06:18:55 +00:00
* vps1 depends on uid
*/
{ &vps2, 0, "PS2=> ",
NULL },
{ &vps4, 0, "PS4=+ ",
NULL },
#ifndef NO_HISTORY
{ &vterm, VUNSET, "TERM=",
setterm },
#endif
{ &voptind, 0, "OPTIND=1",
getoptsreset },
{ NULL, 0, NULL,
NULL }
1994-05-26 06:18:55 +00:00
};
static struct var *vartab[VTABSIZE];
1994-05-26 06:18:55 +00:00
static const char *const locale_names[7] = {
"LC_COLLATE", "LC_CTYPE", "LC_MONETARY",
"LC_NUMERIC", "LC_TIME", "LC_MESSAGES", NULL
};
static const int locale_categories[7] = {
LC_COLLATE, LC_CTYPE, LC_MONETARY, LC_NUMERIC, LC_TIME, LC_MESSAGES, 0
};
static struct var **hashvar(const char *);
static int varequal(const char *, const char *);
static int localevar(const char *);
1994-05-26 06:18:55 +00:00
/*
2006-02-04 14:38:37 +00:00
* Initialize the variable symbol tables and import the environment.
1994-05-26 06:18:55 +00:00
*/
#ifdef mkinit
INCLUDE "var.h"
MKINIT char **environ;
1994-05-26 06:18:55 +00:00
INIT {
char **envp;
initvar();
for (envp = environ ; *envp ; envp++) {
if (strchr(*envp, '=')) {
setvareq(*envp, VEXPORT|VTEXTFIXED);
}
}
}
#endif
/*
* This routine initializes the builtin variables. It is called when the
* shell is initialized and again when a shell procedure is spawned.
*/
void
initvar(void)
{
char ppid[20];
1994-05-26 06:18:55 +00:00
const struct varinit *ip;
struct var *vp;
struct var **vpp;
for (ip = varinit ; (vp = ip->var) != NULL ; ip++) {
if ((vp->flags & VEXPORT) == 0) {
vpp = hashvar(ip->text);
vp->next = *vpp;
*vpp = vp;
vp->text = __DECONST(char *, ip->text);
vp->flags = ip->flags | VSTRFIXED | VTEXTFIXED;
vp->func = ip->func;
1994-05-26 06:18:55 +00:00
}
}
/*
* PS1 depends on uid
*/
if ((vps1.flags & VEXPORT) == 0) {
vpp = hashvar("PS1=");
vps1.next = *vpp;
*vpp = &vps1;
vps1.text = __DECONST(char *, geteuid() ? "PS1=$ " : "PS1=# ");
1994-05-26 06:18:55 +00:00
vps1.flags = VSTRFIXED|VTEXTFIXED;
}
if ((vppid.flags & VEXPORT) == 0) {
fmtstr(ppid, sizeof(ppid), "%d", (int)getppid());
setvarsafe("PPID", ppid, 0);
}
1994-05-26 06:18:55 +00:00
}
/*
* Safe version of setvar, returns 1 on success 0 on failure.
*/
int
setvarsafe(const char *name, const char *val, int flags)
{
struct jmploc jmploc;
struct jmploc *const savehandler = handler;
int err = 0;
int inton;
inton = is_int_on();
if (setjmp(jmploc.loc))
err = 1;
else {
handler = &jmploc;
setvar(name, val, flags);
}
handler = savehandler;
SETINTON(inton);
return err;
}
1994-05-26 06:18:55 +00:00
/*
2006-02-04 14:38:37 +00:00
* Set the value of a variable. The flags argument is stored with the
1994-05-26 06:18:55 +00:00
* flags of the variable. If val is NULL, the variable is unset.
*/
void
setvar(const char *name, const char *val, int flags)
{
const char *p;
1994-05-26 06:18:55 +00:00
int len;
int namelen;
char *nameeq;
int isbad;
isbad = 0;
p = name;
1996-08-11 22:51:00 +00:00
if (! is_name(*p))
1994-05-26 06:18:55 +00:00
isbad = 1;
1996-08-11 22:51:00 +00:00
p++;
1994-05-26 06:18:55 +00:00
for (;;) {
if (! is_in_name(*p)) {
if (*p == '\0' || *p == '=')
break;
isbad = 1;
}
p++;
}
namelen = p - name;
if (isbad)
error("%.*s: bad variable name", namelen, name);
len = namelen + 2; /* 2 is space for '=' and '\0' */
if (val == NULL) {
flags |= VUNSET;
} else {
len += strlen(val);
}
nameeq = ckmalloc(len);
memcpy(nameeq, name, namelen);
nameeq[namelen] = '=';
1994-05-26 06:18:55 +00:00
if (val)
scopy(val, nameeq + namelen + 1);
else
nameeq[namelen + 1] = '\0';
1994-05-26 06:18:55 +00:00
setvareq(nameeq, flags);
}
static int
localevar(const char *s)
{
const char *const *ss;
1996-08-11 22:51:00 +00:00
if (*s != 'L')
return 0;
if (varequal(s + 1, "ANG"))
return 1;
if (strncmp(s + 1, "C_", 2) != 0)
return 0;
if (varequal(s + 3, "ALL"))
return 1;
for (ss = locale_names; *ss ; ss++)
if (varequal(s + 3, *ss + 3))
1996-08-11 22:51:00 +00:00
return 1;
return 0;
}
1994-05-26 06:18:55 +00:00
/*
* Sets/unsets an environment variable from a pointer that may actually be a
* pointer into environ where the string should not be manipulated.
*/
static void
change_env(const char *s, int set)
{
char *eqp;
char *ss;
ss = savestr(s);
if ((eqp = strchr(ss, '=')) != NULL)
*eqp = '\0';
if (set && eqp != NULL)
(void) setenv(ss, eqp + 1, 1);
else
(void) unsetenv(ss);
ckfree(ss);
return;
}
1994-05-26 06:18:55 +00:00
/*
* Same as setvar except that the variable and value are passed in
* the first argument as name=value. Since the first argument will
* be actually stored in the table, it should not be a string that
* will go away.
*/
void
setvareq(char *s, int flags)
{
1994-05-26 06:18:55 +00:00
struct var *vp, **vpp;
2002-02-02 07:06:58 +00:00
int len;
1994-05-26 06:18:55 +00:00
if (aflag)
flags |= VEXPORT;
1994-05-26 06:18:55 +00:00
vpp = hashvar(s);
for (vp = *vpp ; vp ; vp = vp->next) {
if (varequal(s, vp->text)) {
if (vp->flags & VREADONLY) {
2002-02-02 07:06:58 +00:00
len = strchr(s, '=') - s;
1994-05-26 06:18:55 +00:00
error("%.*s: is read only", len, s);
}
if (flags & VNOSET)
return;
1994-05-26 06:18:55 +00:00
INTOFF;
if (vp->func && (flags & VNOFUNC) == 0)
(*vp->func)(strchr(s, '=') + 1);
1994-05-26 06:18:55 +00:00
if ((vp->flags & (VTEXTFIXED|VSTACK)) == 0)
ckfree(vp->text);
vp->flags &= ~(VTEXTFIXED|VSTACK|VUNSET);
1994-05-26 06:18:55 +00:00
vp->flags |= flags;
vp->text = s;
/*
* We could roll this to a function, to handle it as
* a regular variable function callback, but why bother?
*
* Note: this assumes iflag is not set to 1 initially.
* As part of init(), this is called before arguments
* are looked at.
*/
if ((vp == &vmpath || (vp == &vmail && ! mpathset())) &&
iflag == 1)
1994-05-26 06:18:55 +00:00
chkmail(1);
1996-08-11 22:51:00 +00:00
if ((vp->flags & VEXPORT) && localevar(s)) {
change_env(s, 1);
1996-08-11 22:51:00 +00:00
(void) setlocale(LC_ALL, "");
}
1994-05-26 06:18:55 +00:00
INTON;
return;
}
}
/* not found */
if (flags & VNOSET)
return;
1994-05-26 06:18:55 +00:00
vp = ckmalloc(sizeof (*vp));
vp->flags = flags;
vp->text = s;
vp->next = *vpp;
vp->func = NULL;
1996-08-11 22:51:00 +00:00
INTOFF;
1994-05-26 06:18:55 +00:00
*vpp = vp;
1996-08-11 22:51:00 +00:00
if ((vp->flags & VEXPORT) && localevar(s)) {
change_env(s, 1);
1996-08-11 22:51:00 +00:00
(void) setlocale(LC_ALL, "");
}
INTON;
1994-05-26 06:18:55 +00:00
}
/*
* Process a linked list of variable assignments.
*/
void
listsetvar(struct strlist *list, int flags)
{
1994-05-26 06:18:55 +00:00
struct strlist *lp;
INTOFF;
for (lp = list ; lp ; lp = lp->next) {
setvareq(savestr(lp->text), flags);
1994-05-26 06:18:55 +00:00
}
INTON;
}
/*
* Find the value of a variable. Returns NULL if not set.
*/
char *
lookupvar(const char *name)
{
1994-05-26 06:18:55 +00:00
struct var *v;
for (v = *hashvar(name) ; v ; v = v->next) {
if (varequal(v->text, name)) {
if (v->flags & VUNSET)
return NULL;
return strchr(v->text, '=') + 1;
}
}
return NULL;
}
/*
* Search the environment of a builtin command. If the second argument
* is nonzero, return the value of a variable even if it hasn't been
* exported.
*/
char *
bltinlookup(const char *name, int doall)
{
1994-05-26 06:18:55 +00:00
struct strlist *sp;
struct var *v;
char *result;
1994-05-26 06:18:55 +00:00
result = NULL;
1994-05-26 06:18:55 +00:00
for (sp = cmdenviron ; sp ; sp = sp->next) {
if (varequal(sp->text, name))
result = strchr(sp->text, '=') + 1;
1994-05-26 06:18:55 +00:00
}
if (result != NULL)
return result;
1994-05-26 06:18:55 +00:00
for (v = *hashvar(name) ; v ; v = v->next) {
if (varequal(v->text, name)) {
if ((v->flags & VUNSET)
|| (!doall && (v->flags & VEXPORT) == 0))
1994-05-26 06:18:55 +00:00
return NULL;
return strchr(v->text, '=') + 1;
}
}
return NULL;
}
/*
* Set up locale for a builtin (LANG/LC_* assignments).
*/
void
bltinsetlocale(void)
{
struct strlist *lp;
int act = 0;
char *loc, *locdef;
int i;
for (lp = cmdenviron ; lp ; lp = lp->next) {
if (localevar(lp->text)) {
act = 1;
break;
}
}
if (!act)
return;
loc = bltinlookup("LC_ALL", 0);
INTOFF;
if (loc != NULL) {
setlocale(LC_ALL, loc);
INTON;
return;
}
locdef = bltinlookup("LANG", 0);
for (i = 0; locale_names[i] != NULL; i++) {
loc = bltinlookup(locale_names[i], 0);
if (loc == NULL)
loc = locdef;
if (loc != NULL)
setlocale(locale_categories[i], loc);
}
INTON;
}
/*
* Undo the effect of bltinlocaleset().
*/
void
bltinunsetlocale(void)
{
struct strlist *lp;
INTOFF;
for (lp = cmdenviron ; lp ; lp = lp->next) {
if (localevar(lp->text)) {
setlocale(LC_ALL, "");
return;
}
}
INTON;
}
1994-05-26 06:18:55 +00:00
/*
* Generate a list of exported variables. This routine is used to construct
* the third argument to execve when executing a program.
*/
char **
environment(void)
{
1994-05-26 06:18:55 +00:00
int nenv;
struct var **vpp;
struct var *vp;
char **env, **ep;
nenv = 0;
for (vpp = vartab ; vpp < vartab + VTABSIZE ; vpp++) {
for (vp = *vpp ; vp ; vp = vp->next)
if (vp->flags & VEXPORT)
nenv++;
}
ep = env = stalloc((nenv + 1) * sizeof *env);
for (vpp = vartab ; vpp < vartab + VTABSIZE ; vpp++) {
for (vp = *vpp ; vp ; vp = vp->next)
if (vp->flags & VEXPORT)
*ep++ = vp->text;
}
*ep = NULL;
return env;
}
/*
* Called when a shell procedure is invoked to clear out nonexported
* variables. It is also necessary to reallocate variables of with
* VSTACK set since these are currently allocated on the stack.
*/
MKINIT void shprocvar(void);
1994-05-26 06:18:55 +00:00
#ifdef mkinit
1994-05-26 06:18:55 +00:00
SHELLPROC {
shprocvar();
}
#endif
void
shprocvar(void)
{
1994-05-26 06:18:55 +00:00
struct var **vpp;
struct var *vp, **prev;
for (vpp = vartab ; vpp < vartab + VTABSIZE ; vpp++) {
for (prev = vpp ; (vp = *prev) != NULL ; ) {
if ((vp->flags & VEXPORT) == 0) {
*prev = vp->next;
if ((vp->flags & VTEXTFIXED) == 0)
ckfree(vp->text);
if ((vp->flags & VSTRFIXED) == 0)
ckfree(vp);
} else {
if (vp->flags & VSTACK) {
vp->text = savestr(vp->text);
vp->flags &=~ VSTACK;
}
prev = &vp->next;
}
}
}
initvar();
}
static int
var_compare(const void *a, const void *b)
{
const char *const *sa, *const *sb;
sa = a;
sb = b;
/*
* This compares two var=value strings which creates a different
* order from what you would probably expect. POSIX is somewhat
* ambiguous on what should be sorted exactly.
*/
return strcoll(*sa, *sb);
}
1994-05-26 06:18:55 +00:00
/*
* Command to list all variables which are set. Currently this command
* is invoked from the set command when the set command is called without
* any variables.
*/
int
showvarscmd(int argc __unused, char **argv __unused)
{
1994-05-26 06:18:55 +00:00
struct var **vpp;
struct var *vp;
const char *s;
const char **vars;
int i, n;
1994-05-26 06:18:55 +00:00
/*
* POSIX requires us to sort the variables.
*/
n = 0;
for (vpp = vartab; vpp < vartab + VTABSIZE; vpp++) {
for (vp = *vpp; vp; vp = vp->next) {
if (!(vp->flags & VUNSET))
n++;
1994-05-26 06:18:55 +00:00
}
}
INTON;
vars = ckmalloc(n * sizeof(*vars));
i = 0;
for (vpp = vartab; vpp < vartab + VTABSIZE; vpp++) {
for (vp = *vpp; vp; vp = vp->next) {
if (!(vp->flags & VUNSET))
vars[i++] = vp->text;
}
}
qsort(vars, n, sizeof(*vars), var_compare);
for (i = 0; i < n; i++) {
s = strchr(vars[i], '=');
s++;
outbin(vars[i], s - vars[i], out1);
out1qstr(s);
out1c('\n');
}
ckfree(vars);
INTOFF;
1994-05-26 06:18:55 +00:00
return 0;
}
/*
* The export and readonly commands.
*/
int
exportcmd(int argc, char **argv)
{
1994-05-26 06:18:55 +00:00
struct var **vpp;
struct var *vp;
char *name;
char *p;
char *cmdname;
int ch, values;
1994-05-26 06:18:55 +00:00
int flag = argv[0][0] == 'r'? VREADONLY : VEXPORT;
cmdname = argv[0];
optreset = optind = 1;
opterr = 0;
values = 0;
while ((ch = getopt(argc, argv, "p")) != -1) {
switch (ch) {
case 'p':
values = 1;
break;
case '?':
default:
error("unknown option: -%c", optopt);
}
}
argc -= optind;
argv += optind;
if (values && argc != 0)
error("-p requires no arguments");
if (argc != 0) {
while ((name = *argv++) != NULL) {
1994-05-26 06:18:55 +00:00
if ((p = strchr(name, '=')) != NULL) {
p++;
} else {
vpp = hashvar(name);
for (vp = *vpp ; vp ; vp = vp->next) {
if (varequal(vp->text, name)) {
1994-05-26 06:18:55 +00:00
vp->flags |= flag;
1996-08-11 22:51:00 +00:00
if ((vp->flags & VEXPORT) && localevar(vp->text)) {
change_env(vp->text, 1);
1996-08-11 22:51:00 +00:00
(void) setlocale(LC_ALL, "");
}
1994-05-26 06:18:55 +00:00
goto found;
}
}
}
setvar(name, p, flag);
found:;
}
} else {
for (vpp = vartab ; vpp < vartab + VTABSIZE ; vpp++) {
for (vp = *vpp ; vp ; vp = vp->next) {
if (vp->flags & flag) {
if (values) {
out1str(cmdname);
out1c(' ');
}
p = strchr(vp->text, '=');
if (values && !(vp->flags & VUNSET)) {
p++;
outbin(vp->text, p - vp->text,
out1);
out1qstr(p);
} else
outbin(vp->text, p - vp->text,
out1);
1994-05-26 06:18:55 +00:00
out1c('\n');
}
}
}
}
return 0;
}
/*
* The "local" command.
*/
int
localcmd(int argc __unused, char **argv __unused)
{
1994-05-26 06:18:55 +00:00
char *name;
if (! in_function())
error("Not in a function");
while ((name = *argptr++) != NULL) {
mklocal(name);
}
return 0;
}
/*
* Make a variable a local variable. When a variable is made local, it's
* value and flags are saved in a localvar structure. The saved values
* will be restored when the shell function returns. We handle the name
* "-" as a special case.
*/
void
mklocal(char *name)
{
1994-05-26 06:18:55 +00:00
struct localvar *lvp;
struct var **vpp;
struct var *vp;
INTOFF;
lvp = ckmalloc(sizeof (struct localvar));
if (name[0] == '-' && name[1] == '\0') {
lvp->text = ckmalloc(sizeof optlist);
memcpy(lvp->text, optlist, sizeof optlist);
1994-05-26 06:18:55 +00:00
vp = NULL;
} else {
vpp = hashvar(name);
for (vp = *vpp ; vp && ! varequal(vp->text, name) ; vp = vp->next);
if (vp == NULL) {
if (strchr(name, '='))
setvareq(savestr(name), VSTRFIXED);
else
setvar(name, NULL, VSTRFIXED);
vp = *vpp; /* the new variable */
lvp->text = NULL;
lvp->flags = VUNSET;
} else {
lvp->text = vp->text;
lvp->flags = vp->flags;
vp->flags |= VSTRFIXED|VTEXTFIXED;
if (strchr(name, '='))
setvareq(savestr(name), 0);
}
}
lvp->vp = vp;
lvp->next = localvars;
localvars = lvp;
INTON;
}
/*
* Called after a function returns.
*/
void
poplocalvars(void)
{
1994-05-26 06:18:55 +00:00
struct localvar *lvp;
struct var *vp;
while ((lvp = localvars) != NULL) {
localvars = lvp->next;
vp = lvp->vp;
if (vp == NULL) { /* $- saved */
memcpy(optlist, lvp->text, sizeof optlist);
1994-05-26 06:18:55 +00:00
ckfree(lvp->text);
optschanged();
1994-05-26 06:18:55 +00:00
} else if ((lvp->flags & (VUNSET|VSTRFIXED)) == VUNSET) {
(void)unsetvar(vp->text);
} else {
if ((vp->flags & VTEXTFIXED) == 0)
ckfree(vp->text);
vp->flags = lvp->flags;
vp->text = lvp->text;
}
ckfree(lvp);
}
}
int
setvarcmd(int argc, char **argv)
{
1994-05-26 06:18:55 +00:00
if (argc <= 2)
return unsetcmd(argc, argv);
else if (argc == 3)
setvar(argv[1], argv[2], 0);
else
error("too many arguments");
1994-05-26 06:18:55 +00:00
return 0;
}
/*
* The unset builtin command. We unset the function before we unset the
* variable to allow a function to be unset when there is a readonly variable
* with the same name.
*/
int
unsetcmd(int argc __unused, char **argv __unused)
{
1994-05-26 06:18:55 +00:00
char **ap;
int i;
int flg_func = 0;
int flg_var = 0;
int ret = 0;
while ((i = nextopt("vf")) != '\0') {
if (i == 'f')
flg_func = 1;
else
flg_var = 1;
}
if (flg_func == 0 && flg_var == 0)
flg_var = 1;
1994-05-26 06:18:55 +00:00
for (ap = argptr; *ap ; ap++) {
if (flg_func)
ret |= unsetfunc(*ap);
if (flg_var)
ret |= unsetvar(*ap);
}
return ret;
}
/*
* Unset the specified variable.
*/
int
unsetvar(const char *s)
{
1994-05-26 06:18:55 +00:00
struct var **vpp;
struct var *vp;
vpp = hashvar(s);
for (vp = *vpp ; vp ; vpp = &vp->next, vp = *vpp) {
if (varequal(vp->text, s)) {
if (vp->flags & VREADONLY)
return (1);
INTOFF;
if (*(strchr(vp->text, '=') + 1) != '\0')
setvar(s, nullstr, 0);
1996-08-11 22:51:00 +00:00
if ((vp->flags & VEXPORT) && localevar(vp->text)) {
change_env(s, 0);
1996-08-11 22:51:00 +00:00
setlocale(LC_ALL, "");
}
vp->flags &= ~VEXPORT;
1994-05-26 06:18:55 +00:00
vp->flags |= VUNSET;
if ((vp->flags & VSTRFIXED) == 0) {
if ((vp->flags & VTEXTFIXED) == 0)
ckfree(vp->text);
*vpp = vp->next;
ckfree(vp);
}
INTON;
return (0);
}
}
return (0);
1994-05-26 06:18:55 +00:00
}
/*
* Find the appropriate entry in the hash table from the name.
*/
static struct var **
hashvar(const char *p)
{
1994-05-26 06:18:55 +00:00
unsigned int hashval;
hashval = ((unsigned char) *p) << 4;
1994-05-26 06:18:55 +00:00
while (*p && *p != '=')
hashval += (unsigned char) *p++;
1994-05-26 06:18:55 +00:00
return &vartab[hashval % VTABSIZE];
}
/*
* Returns true if the two strings specify the same varable. The first
* variable name is terminated by '='; the second may be terminated by
* either '=' or '\0'.
*/
static int
varequal(const char *p, const char *q)
{
1994-05-26 06:18:55 +00:00
while (*p == *q++) {
if (*p++ == '=')
return 1;
}
if (*p == '=' && *(q - 1) == '\0')
return 1;
return 0;
}