3 * The Regents of the University of California. All rights reserved.
5 * This code is derived from software contributed to Berkeley by
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 static char sccsid
[] = "@(#)alias.c 8.3 (Berkeley) 5/4/95";
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD$");
48 #include "options.h" /* XXX for argptr (should remove?) */
52 STATIC
struct alias
*atab
[ATABSIZE
];
54 STATIC
void setalias(char *, char *);
55 STATIC
int unalias(const char *);
56 STATIC
struct alias
**hashalias(const char *);
60 setalias(char *name
, char *val
)
62 struct alias
*ap
, **app
;
64 app
= hashalias(name
);
65 for (ap
= *app
; ap
; ap
= ap
->next
) {
66 if (equal(name
, ap
->name
)) {
69 ap
->val
= savestr(val
);
76 ap
= ckmalloc(sizeof (struct alias
));
77 ap
->name
= savestr(name
);
79 * XXX - HACK: in order that the parser will not finish reading the
80 * alias value off the input before processing the next alias, we
81 * dummy up an extra space at the end of the alias. This is a crock
82 * and should be re-thought. The idea (if you feel inclined to help)
83 * is to avoid alias recursions. The mechanism used is: when
84 * expanding an alias, the value of the alias is pushed back on the
85 * input as a string and a pointer to the alias is stored with the
86 * string. The alias is marked as being in use. When the input
87 * routine finishes reading the string, it marks the alias not
88 * in use. The problem is synchronization with the parser. Since
89 * it reads ahead, the alias is marked not in use before the
90 * resulting token(s) is next checked for further alias sub. The
91 * H A C K is that we add a little fluff after the alias value
92 * so that the string will not be exhausted. This is a good
93 * idea ------- ***NOT***
96 ap
->val
= savestr(val
);
99 int len
= strlen(val
);
100 ap
->val
= ckmalloc(len
+ 2);
101 memcpy(ap
->val
, val
, len
);
102 ap
->val
[len
] = ' '; /* fluff */
103 ap
->val
[len
+1] = '\0';
113 unalias(const char *name
)
115 struct alias
*ap
, **app
;
117 app
= hashalias(name
);
119 for (ap
= *app
; ap
; app
= &(ap
->next
), ap
= ap
->next
) {
120 if (equal(name
, ap
->name
)) {
122 * if the alias is currently in use (i.e. its
123 * buffer is being used by the input routine) we
124 * just null out the name instead of freeing it.
125 * We could clear it out later, but this situation
126 * is so rare that it hardly seems worth it.
128 if (ap
->flag
& ALIASINUSE
)
146 MKINIT
void rmaliases(void);
156 struct alias
*ap
, *tmp
;
160 for (i
= 0; i
< ATABSIZE
; i
++) {
175 lookupalias(char *name
, int check
)
177 struct alias
*ap
= *hashalias(name
);
179 for (; ap
; ap
= ap
->next
) {
180 if (equal(name
, ap
->name
)) {
181 if (check
&& (ap
->flag
& ALIASINUSE
))
194 aliascmd(int argc
, char **argv
)
203 for (i
= 0; i
< ATABSIZE
; i
++)
204 for (ap
= atab
[i
]; ap
; ap
= ap
->next
) {
205 if (*ap
->name
!= '\0') {
206 out1fmt("alias %s=", ap
->name
);
213 while ((n
= *++argv
) != NULL
) {
214 if ((v
= strchr(n
+1, '=')) == NULL
) /* n+1: funny ksh stuff */
215 if ((ap
= lookupalias(n
, 0)) == NULL
) {
216 outfmt(out2
, "alias: %s not found\n", n
);
219 out1fmt("alias %s=", n
);
233 unaliascmd(int argc __unused
, char **argv __unused
)
237 while ((i
= nextopt("a")) != '\0') {
243 for (i
= 0; *argptr
; argptr
++)
244 i
|= unalias(*argptr
);
249 STATIC
struct alias
**
250 hashalias(const char *p
)
252 unsigned int hashval
;
257 return &atab
[hashval
% ATABSIZE
];