var.c revision 215266
1103398Sphk/*-
2103398Sphk * Copyright (c) 1991, 1993
3103398Sphk *	The Regents of the University of California.  All rights reserved.
4103398Sphk *
5103398Sphk * This code is derived from software contributed to Berkeley by
6103398Sphk * Kenneth Almquist.
7103398Sphk *
8103398Sphk * Redistribution and use in source and binary forms, with or without
9103398Sphk * modification, are permitted provided that the following conditions
10103398Sphk * are met:
11103398Sphk * 1. Redistributions of source code must retain the above copyright
12103398Sphk *    notice, this list of conditions and the following disclaimer.
13103398Sphk * 2. Redistributions in binary form must reproduce the above copyright
14103398Sphk *    notice, this list of conditions and the following disclaimer in the
15103398Sphk *    documentation and/or other materials provided with the distribution.
16103398Sphk * 4. Neither the name of the University nor the names of its contributors
17103398Sphk *    may be used to endorse or promote products derived from this software
18103398Sphk *    without specific prior written permission.
19103398Sphk *
20103398Sphk * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21103398Sphk * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22103398Sphk * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23103398Sphk * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24103398Sphk * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25103398Sphk * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26103398Sphk * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27103398Sphk * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28103398Sphk * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29103398Sphk * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30103398Sphk * SUCH DAMAGE.
31103398Sphk */
32103398Sphk
33103398Sphk#ifndef lint
34103398Sphk#if 0
35103398Sphkstatic char sccsid[] = "@(#)var.c	8.3 (Berkeley) 5/4/95";
36114589Sobrien#endif
37114589Sobrien#endif /* not lint */
38103398Sphk#include <sys/cdefs.h>
39103398Sphk__FBSDID("$FreeBSD: head/bin/sh/var.c 215266 2010-11-13 22:10:26Z jilles $");
40103398Sphk
41103398Sphk#include <unistd.h>
42103398Sphk#include <stdlib.h>
43103398Sphk#include <paths.h>
44103398Sphk
45103398Sphk/*
46103398Sphk * Shell variables.
47103398Sphk */
48103398Sphk
49103398Sphk#include <locale.h>
50103398Sphk
51103398Sphk#include "shell.h"
52103398Sphk#include "output.h"
53103398Sphk#include "expand.h"
54103398Sphk#include "nodes.h"	/* for other headers */
55103398Sphk#include "eval.h"	/* defines cmdenviron */
56103398Sphk#include "exec.h"
57103398Sphk#include "syntax.h"
58103398Sphk#include "options.h"
59103398Sphk#include "mail.h"
60103398Sphk#include "var.h"
61103398Sphk#include "memalloc.h"
62103398Sphk#include "error.h"
63103398Sphk#include "mystring.h"
64103398Sphk#include "parser.h"
65103398Sphk#ifndef NO_HISTORY
66103398Sphk#include "myhistedit.h"
67103398Sphk#endif
68103398Sphk
69103398Sphk
70103398Sphk#define VTABSIZE 39
71103398Sphk
72103398Sphk
73103398Sphkstruct varinit {
74103398Sphk	struct var *var;
75103398Sphk	int flags;
76249788Smckusick	const char *text;
77103398Sphk	void (*func)(const char *);
78103398Sphk};
79103398Sphk
80103398Sphk
81103398Sphk#ifndef NO_HISTORY
82103398Sphkstruct var vhistsize;
83103398Sphkstruct var vterm;
84103398Sphk#endif
85103398Sphkstruct var vifs;
86struct var vmail;
87struct var vmpath;
88struct var vpath;
89struct var vppid;
90struct var vps1;
91struct var vps2;
92struct var vps4;
93struct var vvers;
94static struct var voptind;
95
96static const struct varinit varinit[] = {
97#ifndef NO_HISTORY
98	{ &vhistsize,	VUNSET,				"HISTSIZE=",
99	  sethistsize },
100#endif
101	{ &vifs,	0,				"IFS= \t\n",
102	  NULL },
103	{ &vmail,	VUNSET,				"MAIL=",
104	  NULL },
105	{ &vmpath,	VUNSET,				"MAILPATH=",
106	  NULL },
107	{ &vpath,	0,				"PATH=" _PATH_DEFPATH,
108	  changepath },
109	{ &vppid,	VUNSET,				"PPID=",
110	  NULL },
111	/*
112	 * vps1 depends on uid
113	 */
114	{ &vps2,	0,				"PS2=> ",
115	  NULL },
116	{ &vps4,	0,				"PS4=+ ",
117	  NULL },
118#ifndef NO_HISTORY
119	{ &vterm,	VUNSET,				"TERM=",
120	  setterm },
121#endif
122	{ &voptind,	0,				"OPTIND=1",
123	  getoptsreset },
124	{ NULL,	0,				NULL,
125	  NULL }
126};
127
128static struct var *vartab[VTABSIZE];
129
130static const char *const locale_names[7] = {
131	"LC_COLLATE", "LC_CTYPE", "LC_MONETARY",
132	"LC_NUMERIC", "LC_TIME", "LC_MESSAGES", NULL
133};
134static const int locale_categories[7] = {
135	LC_COLLATE, LC_CTYPE, LC_MONETARY, LC_NUMERIC, LC_TIME, LC_MESSAGES, 0
136};
137
138static struct var **hashvar(const char *);
139static int varequal(const char *, const char *);
140static int localevar(const char *);
141
142/*
143 * Initialize the variable symbol tables and import the environment.
144 */
145
146#ifdef mkinit
147INCLUDE "var.h"
148MKINIT char **environ;
149INIT {
150	char **envp;
151
152	initvar();
153	for (envp = environ ; *envp ; envp++) {
154		if (strchr(*envp, '=')) {
155			setvareq(*envp, VEXPORT|VTEXTFIXED);
156		}
157	}
158}
159#endif
160
161
162/*
163 * This routine initializes the builtin variables.  It is called when the
164 * shell is initialized and again when a shell procedure is spawned.
165 */
166
167void
168initvar(void)
169{
170	char ppid[20];
171	const struct varinit *ip;
172	struct var *vp;
173	struct var **vpp;
174
175	for (ip = varinit ; (vp = ip->var) != NULL ; ip++) {
176		if ((vp->flags & VEXPORT) == 0) {
177			vpp = hashvar(ip->text);
178			vp->next = *vpp;
179			*vpp = vp;
180			vp->text = __DECONST(char *, ip->text);
181			vp->flags = ip->flags | VSTRFIXED | VTEXTFIXED;
182			vp->func = ip->func;
183		}
184	}
185	/*
186	 * PS1 depends on uid
187	 */
188	if ((vps1.flags & VEXPORT) == 0) {
189		vpp = hashvar("PS1=");
190		vps1.next = *vpp;
191		*vpp = &vps1;
192		vps1.text = __DECONST(char *, geteuid() ? "PS1=$ " : "PS1=# ");
193		vps1.flags = VSTRFIXED|VTEXTFIXED;
194	}
195	if ((vppid.flags & VEXPORT) == 0) {
196		fmtstr(ppid, sizeof(ppid), "%d", (int)getppid());
197		setvarsafe("PPID", ppid, 0);
198	}
199}
200
201/*
202 * Safe version of setvar, returns 1 on success 0 on failure.
203 */
204
205int
206setvarsafe(const char *name, const char *val, int flags)
207{
208	struct jmploc jmploc;
209	struct jmploc *const savehandler = handler;
210	int err = 0;
211	int inton;
212
213	inton = is_int_on();
214	if (setjmp(jmploc.loc))
215		err = 1;
216	else {
217		handler = &jmploc;
218		setvar(name, val, flags);
219	}
220	handler = savehandler;
221	SETINTON(inton);
222	return err;
223}
224
225/*
226 * Set the value of a variable.  The flags argument is stored with the
227 * flags of the variable.  If val is NULL, the variable is unset.
228 */
229
230void
231setvar(const char *name, const char *val, int flags)
232{
233	const char *p;
234	int len;
235	int namelen;
236	char *nameeq;
237	int isbad;
238
239	isbad = 0;
240	p = name;
241	if (! is_name(*p))
242		isbad = 1;
243	p++;
244	for (;;) {
245		if (! is_in_name(*p)) {
246			if (*p == '\0' || *p == '=')
247				break;
248			isbad = 1;
249		}
250		p++;
251	}
252	namelen = p - name;
253	if (isbad)
254		error("%.*s: bad variable name", namelen, name);
255	len = namelen + 2;		/* 2 is space for '=' and '\0' */
256	if (val == NULL) {
257		flags |= VUNSET;
258	} else {
259		len += strlen(val);
260	}
261	nameeq = ckmalloc(len);
262	memcpy(nameeq, name, namelen);
263	nameeq[namelen] = '=';
264	if (val)
265		scopy(val, nameeq + namelen + 1);
266	else
267		nameeq[namelen + 1] = '\0';
268	setvareq(nameeq, flags);
269}
270
271static int
272localevar(const char *s)
273{
274	const char *const *ss;
275
276	if (*s != 'L')
277		return 0;
278	if (varequal(s + 1, "ANG"))
279		return 1;
280	if (strncmp(s + 1, "C_", 2) != 0)
281		return 0;
282	if (varequal(s + 3, "ALL"))
283		return 1;
284	for (ss = locale_names; *ss ; ss++)
285		if (varequal(s + 3, *ss + 3))
286			return 1;
287	return 0;
288}
289
290
291/*
292 * Sets/unsets an environment variable from a pointer that may actually be a
293 * pointer into environ where the string should not be manipulated.
294 */
295static void
296change_env(const char *s, int set)
297{
298	char *eqp;
299	char *ss;
300
301	ss = savestr(s);
302	if ((eqp = strchr(ss, '=')) != NULL)
303		*eqp = '\0';
304	if (set && eqp != NULL)
305		(void) setenv(ss, eqp + 1, 1);
306	else
307		(void) unsetenv(ss);
308	ckfree(ss);
309
310	return;
311}
312
313
314/*
315 * Same as setvar except that the variable and value are passed in
316 * the first argument as name=value.  Since the first argument will
317 * be actually stored in the table, it should not be a string that
318 * will go away.
319 */
320
321void
322setvareq(char *s, int flags)
323{
324	struct var *vp, **vpp;
325	int len;
326
327	if (aflag)
328		flags |= VEXPORT;
329	vpp = hashvar(s);
330	for (vp = *vpp ; vp ; vp = vp->next) {
331		if (varequal(s, vp->text)) {
332			if (vp->flags & VREADONLY) {
333				len = strchr(s, '=') - s;
334				error("%.*s: is read only", len, s);
335			}
336			INTOFF;
337
338			if (vp->func && (flags & VNOFUNC) == 0)
339				(*vp->func)(strchr(s, '=') + 1);
340
341			if ((vp->flags & (VTEXTFIXED|VSTACK)) == 0)
342				ckfree(vp->text);
343
344			vp->flags &= ~(VTEXTFIXED|VSTACK|VUNSET);
345			vp->flags |= flags;
346			vp->text = s;
347
348			/*
349			 * We could roll this to a function, to handle it as
350			 * a regular variable function callback, but why bother?
351			 *
352			 * Note: this assumes iflag is not set to 1 initially.
353			 * As part of init(), this is called before arguments
354			 * are looked at.
355			 */
356			if ((vp == &vmpath || (vp == &vmail && ! mpathset())) &&
357			    iflag == 1)
358				chkmail(1);
359			if ((vp->flags & VEXPORT) && localevar(s)) {
360				change_env(s, 1);
361				(void) setlocale(LC_ALL, "");
362			}
363			INTON;
364			return;
365		}
366	}
367	/* not found */
368	vp = ckmalloc(sizeof (*vp));
369	vp->flags = flags;
370	vp->text = s;
371	vp->next = *vpp;
372	vp->func = NULL;
373	INTOFF;
374	*vpp = vp;
375	if ((vp->flags & VEXPORT) && localevar(s)) {
376		change_env(s, 1);
377		(void) setlocale(LC_ALL, "");
378	}
379	INTON;
380}
381
382
383
384/*
385 * Process a linked list of variable assignments.
386 */
387
388void
389listsetvar(struct strlist *list)
390{
391	struct strlist *lp;
392
393	INTOFF;
394	for (lp = list ; lp ; lp = lp->next) {
395		setvareq(savestr(lp->text), 0);
396	}
397	INTON;
398}
399
400
401
402/*
403 * Find the value of a variable.  Returns NULL if not set.
404 */
405
406char *
407lookupvar(const char *name)
408{
409	struct var *v;
410
411	for (v = *hashvar(name) ; v ; v = v->next) {
412		if (varequal(v->text, name)) {
413			if (v->flags & VUNSET)
414				return NULL;
415			return strchr(v->text, '=') + 1;
416		}
417	}
418	return NULL;
419}
420
421
422
423/*
424 * Search the environment of a builtin command.  If the second argument
425 * is nonzero, return the value of a variable even if it hasn't been
426 * exported.
427 */
428
429char *
430bltinlookup(const char *name, int doall)
431{
432	struct strlist *sp;
433	struct var *v;
434	char *result;
435
436	result = NULL;
437	for (sp = cmdenviron ; sp ; sp = sp->next) {
438		if (varequal(sp->text, name))
439			result = strchr(sp->text, '=') + 1;
440	}
441	if (result != NULL)
442		return result;
443	for (v = *hashvar(name) ; v ; v = v->next) {
444		if (varequal(v->text, name)) {
445			if ((v->flags & VUNSET)
446			 || (!doall && (v->flags & VEXPORT) == 0))
447				return NULL;
448			return strchr(v->text, '=') + 1;
449		}
450	}
451	return NULL;
452}
453
454
455/*
456 * Set up locale for a builtin (LANG/LC_* assignments).
457 */
458void
459bltinsetlocale(void)
460{
461	struct strlist *lp;
462	int act = 0;
463	char *loc, *locdef;
464	int i;
465
466	for (lp = cmdenviron ; lp ; lp = lp->next) {
467		if (localevar(lp->text)) {
468			act = 1;
469			break;
470		}
471	}
472	if (!act)
473		return;
474	loc = bltinlookup("LC_ALL", 0);
475	INTOFF;
476	if (loc != NULL) {
477		setlocale(LC_ALL, loc);
478		INTON;
479		return;
480	}
481	locdef = bltinlookup("LANG", 0);
482	for (i = 0; locale_names[i] != NULL; i++) {
483		loc = bltinlookup(locale_names[i], 0);
484		if (loc == NULL)
485			loc = locdef;
486		if (loc != NULL)
487			setlocale(locale_categories[i], loc);
488	}
489	INTON;
490}
491
492/*
493 * Undo the effect of bltinlocaleset().
494 */
495void
496bltinunsetlocale(void)
497{
498	struct strlist *lp;
499
500	INTOFF;
501	for (lp = cmdenviron ; lp ; lp = lp->next) {
502		if (localevar(lp->text)) {
503			setlocale(LC_ALL, "");
504			return;
505		}
506	}
507	INTON;
508}
509
510
511/*
512 * Generate a list of exported variables.  This routine is used to construct
513 * the third argument to execve when executing a program.
514 */
515
516char **
517environment(void)
518{
519	int nenv;
520	struct var **vpp;
521	struct var *vp;
522	char **env, **ep;
523
524	nenv = 0;
525	for (vpp = vartab ; vpp < vartab + VTABSIZE ; vpp++) {
526		for (vp = *vpp ; vp ; vp = vp->next)
527			if (vp->flags & VEXPORT)
528				nenv++;
529	}
530	ep = env = stalloc((nenv + 1) * sizeof *env);
531	for (vpp = vartab ; vpp < vartab + VTABSIZE ; vpp++) {
532		for (vp = *vpp ; vp ; vp = vp->next)
533			if (vp->flags & VEXPORT)
534				*ep++ = vp->text;
535	}
536	*ep = NULL;
537	return env;
538}
539
540
541/*
542 * Called when a shell procedure is invoked to clear out nonexported
543 * variables.  It is also necessary to reallocate variables of with
544 * VSTACK set since these are currently allocated on the stack.
545 */
546
547MKINIT void shprocvar(void);
548
549#ifdef mkinit
550SHELLPROC {
551	shprocvar();
552}
553#endif
554
555void
556shprocvar(void)
557{
558	struct var **vpp;
559	struct var *vp, **prev;
560
561	for (vpp = vartab ; vpp < vartab + VTABSIZE ; vpp++) {
562		for (prev = vpp ; (vp = *prev) != NULL ; ) {
563			if ((vp->flags & VEXPORT) == 0) {
564				*prev = vp->next;
565				if ((vp->flags & VTEXTFIXED) == 0)
566					ckfree(vp->text);
567				if ((vp->flags & VSTRFIXED) == 0)
568					ckfree(vp);
569			} else {
570				if (vp->flags & VSTACK) {
571					vp->text = savestr(vp->text);
572					vp->flags &=~ VSTACK;
573				}
574				prev = &vp->next;
575			}
576		}
577	}
578	initvar();
579}
580
581
582static int
583var_compare(const void *a, const void *b)
584{
585	const char *const *sa, *const *sb;
586
587	sa = a;
588	sb = b;
589	/*
590	 * This compares two var=value strings which creates a different
591	 * order from what you would probably expect.  POSIX is somewhat
592	 * ambiguous on what should be sorted exactly.
593	 */
594	return strcoll(*sa, *sb);
595}
596
597
598/*
599 * Command to list all variables which are set.  Currently this command
600 * is invoked from the set command when the set command is called without
601 * any variables.
602 */
603
604int
605showvarscmd(int argc __unused, char **argv __unused)
606{
607	struct var **vpp;
608	struct var *vp;
609	const char *s;
610	const char **vars;
611	int i, n;
612
613	/*
614	 * POSIX requires us to sort the variables.
615	 */
616	n = 0;
617	for (vpp = vartab; vpp < vartab + VTABSIZE; vpp++) {
618		for (vp = *vpp; vp; vp = vp->next) {
619			if (!(vp->flags & VUNSET))
620				n++;
621		}
622	}
623
624	INTON;
625	vars = ckmalloc(n * sizeof(*vars));
626	i = 0;
627	for (vpp = vartab; vpp < vartab + VTABSIZE; vpp++) {
628		for (vp = *vpp; vp; vp = vp->next) {
629			if (!(vp->flags & VUNSET))
630				vars[i++] = vp->text;
631		}
632	}
633
634	qsort(vars, n, sizeof(*vars), var_compare);
635	for (i = 0; i < n; i++) {
636		for (s = vars[i]; *s != '='; s++)
637			out1c(*s);
638		out1c('=');
639		out1qstr(s + 1);
640		out1c('\n');
641	}
642	ckfree(vars);
643	INTOFF;
644
645	return 0;
646}
647
648
649
650/*
651 * The export and readonly commands.
652 */
653
654int
655exportcmd(int argc, char **argv)
656{
657	struct var **vpp;
658	struct var *vp;
659	char *name;
660	char *p;
661	char *cmdname;
662	int ch, values;
663	int flag = argv[0][0] == 'r'? VREADONLY : VEXPORT;
664
665	cmdname = argv[0];
666	optreset = optind = 1;
667	opterr = 0;
668	values = 0;
669	while ((ch = getopt(argc, argv, "p")) != -1) {
670		switch (ch) {
671		case 'p':
672			values = 1;
673			break;
674		case '?':
675		default:
676			error("unknown option: -%c", optopt);
677		}
678	}
679	argc -= optind;
680	argv += optind;
681
682	if (values && argc != 0)
683		error("-p requires no arguments");
684	if (argc != 0) {
685		while ((name = *argv++) != NULL) {
686			if ((p = strchr(name, '=')) != NULL) {
687				p++;
688			} else {
689				vpp = hashvar(name);
690				for (vp = *vpp ; vp ; vp = vp->next) {
691					if (varequal(vp->text, name)) {
692
693						vp->flags |= flag;
694						if ((vp->flags & VEXPORT) && localevar(vp->text)) {
695							change_env(vp->text, 1);
696							(void) setlocale(LC_ALL, "");
697						}
698						goto found;
699					}
700				}
701			}
702			setvar(name, p, flag);
703found:;
704		}
705	} else {
706		for (vpp = vartab ; vpp < vartab + VTABSIZE ; vpp++) {
707			for (vp = *vpp ; vp ; vp = vp->next) {
708				if (vp->flags & flag) {
709					if (values) {
710						out1str(cmdname);
711						out1c(' ');
712					}
713					for (p = vp->text ; *p != '=' ; p++)
714						out1c(*p);
715					if (values && !(vp->flags & VUNSET)) {
716						out1c('=');
717						out1qstr(p + 1);
718					}
719					out1c('\n');
720				}
721			}
722		}
723	}
724	return 0;
725}
726
727
728/*
729 * The "local" command.
730 */
731
732int
733localcmd(int argc __unused, char **argv __unused)
734{
735	char *name;
736
737	if (! in_function())
738		error("Not in a function");
739	while ((name = *argptr++) != NULL) {
740		mklocal(name);
741	}
742	return 0;
743}
744
745
746/*
747 * Make a variable a local variable.  When a variable is made local, it's
748 * value and flags are saved in a localvar structure.  The saved values
749 * will be restored when the shell function returns.  We handle the name
750 * "-" as a special case.
751 */
752
753void
754mklocal(char *name)
755{
756	struct localvar *lvp;
757	struct var **vpp;
758	struct var *vp;
759
760	INTOFF;
761	lvp = ckmalloc(sizeof (struct localvar));
762	if (name[0] == '-' && name[1] == '\0') {
763		lvp->text = ckmalloc(sizeof optlist);
764		memcpy(lvp->text, optlist, sizeof optlist);
765		vp = NULL;
766	} else {
767		vpp = hashvar(name);
768		for (vp = *vpp ; vp && ! varequal(vp->text, name) ; vp = vp->next);
769		if (vp == NULL) {
770			if (strchr(name, '='))
771				setvareq(savestr(name), VSTRFIXED);
772			else
773				setvar(name, NULL, VSTRFIXED);
774			vp = *vpp;	/* the new variable */
775			lvp->text = NULL;
776			lvp->flags = VUNSET;
777		} else {
778			lvp->text = vp->text;
779			lvp->flags = vp->flags;
780			vp->flags |= VSTRFIXED|VTEXTFIXED;
781			if (strchr(name, '='))
782				setvareq(savestr(name), 0);
783		}
784	}
785	lvp->vp = vp;
786	lvp->next = localvars;
787	localvars = lvp;
788	INTON;
789}
790
791
792/*
793 * Called after a function returns.
794 */
795
796void
797poplocalvars(void)
798{
799	struct localvar *lvp;
800	struct var *vp;
801
802	while ((lvp = localvars) != NULL) {
803		localvars = lvp->next;
804		vp = lvp->vp;
805		if (vp == NULL) {	/* $- saved */
806			memcpy(optlist, lvp->text, sizeof optlist);
807			ckfree(lvp->text);
808			optschanged();
809		} else if ((lvp->flags & (VUNSET|VSTRFIXED)) == VUNSET) {
810			(void)unsetvar(vp->text);
811		} else {
812			if ((vp->flags & VTEXTFIXED) == 0)
813				ckfree(vp->text);
814			vp->flags = lvp->flags;
815			vp->text = lvp->text;
816		}
817		ckfree(lvp);
818	}
819}
820
821
822int
823setvarcmd(int argc, char **argv)
824{
825	if (argc <= 2)
826		return unsetcmd(argc, argv);
827	else if (argc == 3)
828		setvar(argv[1], argv[2], 0);
829	else
830		error("too many arguments");
831	return 0;
832}
833
834
835/*
836 * The unset builtin command.  We unset the function before we unset the
837 * variable to allow a function to be unset when there is a readonly variable
838 * with the same name.
839 */
840
841int
842unsetcmd(int argc __unused, char **argv __unused)
843{
844	char **ap;
845	int i;
846	int flg_func = 0;
847	int flg_var = 0;
848	int ret = 0;
849
850	while ((i = nextopt("vf")) != '\0') {
851		if (i == 'f')
852			flg_func = 1;
853		else
854			flg_var = 1;
855	}
856	if (flg_func == 0 && flg_var == 0)
857		flg_var = 1;
858
859	for (ap = argptr; *ap ; ap++) {
860		if (flg_func)
861			ret |= unsetfunc(*ap);
862		if (flg_var)
863			ret |= unsetvar(*ap);
864	}
865	return ret;
866}
867
868
869/*
870 * Unset the specified variable.
871 */
872
873int
874unsetvar(const char *s)
875{
876	struct var **vpp;
877	struct var *vp;
878
879	vpp = hashvar(s);
880	for (vp = *vpp ; vp ; vpp = &vp->next, vp = *vpp) {
881		if (varequal(vp->text, s)) {
882			if (vp->flags & VREADONLY)
883				return (1);
884			INTOFF;
885			if (*(strchr(vp->text, '=') + 1) != '\0')
886				setvar(s, nullstr, 0);
887			if ((vp->flags & VEXPORT) && localevar(vp->text)) {
888				change_env(s, 0);
889				setlocale(LC_ALL, "");
890			}
891			vp->flags &= ~VEXPORT;
892			vp->flags |= VUNSET;
893			if ((vp->flags & VSTRFIXED) == 0) {
894				if ((vp->flags & VTEXTFIXED) == 0)
895					ckfree(vp->text);
896				*vpp = vp->next;
897				ckfree(vp);
898			}
899			INTON;
900			return (0);
901		}
902	}
903
904	return (0);
905}
906
907
908
909/*
910 * Find the appropriate entry in the hash table from the name.
911 */
912
913static struct var **
914hashvar(const char *p)
915{
916	unsigned int hashval;
917
918	hashval = ((unsigned char) *p) << 4;
919	while (*p && *p != '=')
920		hashval += (unsigned char) *p++;
921	return &vartab[hashval % VTABSIZE];
922}
923
924
925
926/*
927 * Returns true if the two strings specify the same varable.  The first
928 * variable name is terminated by '='; the second may be terminated by
929 * either '=' or '\0'.
930 */
931
932static int
933varequal(const char *p, const char *q)
934{
935	while (*p == *q++) {
936		if (*p++ == '=')
937			return 1;
938	}
939	if (*p == '=' && *(q - 1) == '\0')
940		return 1;
941	return 0;
942}
943