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 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 * @(#)alias.c 8.3 (Berkeley) 5/4/95
37 * $FreeBSD: src/bin/sh/alias.c,v 1.20 2005/09/02 22:43:28 stefanf Exp $
38 * $DragonFly: src/bin/sh/alias.c,v 1.5 2007/01/04 06:35:12 pavalos Exp $
49 #include "options.h" /* XXX for argptr (should remove?) */
53 STATIC
struct alias
*atab
[ATABSIZE
];
55 STATIC
void setalias(char *, char *);
56 STATIC
int unalias(char *);
57 STATIC
struct alias
**hashalias(char *);
61 setalias(char *name
, char *val
)
63 struct alias
*ap
, **app
;
65 app
= hashalias(name
);
66 for (ap
= *app
; ap
; ap
= ap
->next
) {
67 if (equal(name
, ap
->name
)) {
70 ap
->val
= savestr(val
);
77 ap
= ckmalloc(sizeof (struct alias
));
78 ap
->name
= savestr(name
);
80 * XXX - HACK: in order that the parser will not finish reading the
81 * alias value off the input before processing the next alias, we
82 * dummy up an extra space at the end of the alias. This is a crock
83 * and should be re-thought. The idea (if you feel inclined to help)
84 * is to avoid alias recursions. The mechanism used is: when
85 * expanding an alias, the value of the alias is pushed back on the
86 * input as a string and a pointer to the alias is stored with the
87 * string. The alias is marked as being in use. When the input
88 * routine finishes reading the string, it marks the alias not
89 * in use. The problem is synchronization with the parser. Since
90 * it reads ahead, the alias is marked not in use before the
91 * resulting token(s) is next checked for further alias sub. The
92 * H A C K is that we add a little fluff after the alias value
93 * so that the string will not be exhausted. This is a good
94 * idea ------- ***NOT***
97 ap
->val
= savestr(val
);
100 int len
= strlen(val
);
101 ap
->val
= ckmalloc(len
+ 2);
102 memcpy(ap
->val
, val
, len
);
103 ap
->val
[len
] = ' '; /* fluff */
104 ap
->val
[len
+1] = '\0';
116 struct alias
*ap
, **app
;
118 app
= hashalias(name
);
120 for (ap
= *app
; ap
; app
= &(ap
->next
), ap
= ap
->next
) {
121 if (equal(name
, ap
->name
)) {
123 * if the alias is currently in use (i.e. its
124 * buffer is being used by the input routine) we
125 * just null out the name instead of freeing it.
126 * We could clear it out later, but this situation
127 * is so rare that it hardly seems worth it.
129 if (ap
->flag
& ALIASINUSE
)
147 MKINIT
void rmaliases(void);
157 struct alias
*ap
, *tmp
;
161 for (i
= 0; i
< ATABSIZE
; i
++) {
176 lookupalias(char *name
, int check
)
178 struct alias
*ap
= *hashalias(name
);
180 for (; ap
; ap
= ap
->next
) {
181 if (equal(name
, ap
->name
)) {
182 if (check
&& (ap
->flag
& ALIASINUSE
))
195 aliascmd(int argc
, char **argv
)
204 for (i
= 0; i
< ATABSIZE
; i
++)
205 for (ap
= atab
[i
]; ap
; ap
= ap
->next
) {
206 if (*ap
->name
!= '\0') {
207 out1fmt("alias %s=", ap
->name
);
214 while ((n
= *++argv
) != NULL
) {
215 if ((v
= strchr(n
+1, '=')) == NULL
) /* n+1: funny ksh stuff */
216 if ((ap
= lookupalias(n
, 0)) == NULL
) {
217 outfmt(out2
, "alias: %s not found\n", n
);
220 out1fmt("alias %s=", n
);
234 unaliascmd(int argc __unused
, char **argv __unused
)
238 while ((i
= nextopt("a")) != '\0') {
244 for (i
= 0; *argptr
; argptr
++)
245 i
|= unalias(*argptr
);
250 STATIC
struct alias
**
253 unsigned int hashval
;
258 return &atab
[hashval
% ATABSIZE
];