]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - bin/sh/alias.c
Sync sh(1) in stable/10 to head.
[FreeBSD/stable/10.git] / bin / sh / alias.c
1 /*-
2  * Copyright (c) 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Kenneth Almquist.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
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.
19  *
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
30  * SUCH DAMAGE.
31  */
32
33 #ifndef lint
34 #if 0
35 static char sccsid[] = "@(#)alias.c     8.3 (Berkeley) 5/4/95";
36 #endif
37 #endif /* not lint */
38 #include <sys/cdefs.h>
39 __FBSDID("$FreeBSD$");
40
41 #include <stdlib.h>
42 #include "shell.h"
43 #include "output.h"
44 #include "error.h"
45 #include "memalloc.h"
46 #include "mystring.h"
47 #include "alias.h"
48 #include "options.h"    /* XXX for argptr (should remove?) */
49 #include "builtins.h"
50
51 #define ATABSIZE 39
52
53 static struct alias *atab[ATABSIZE];
54 static int aliases;
55
56 static void setalias(const char *, const char *);
57 static int unalias(const char *);
58 static struct alias **hashalias(const char *);
59
60 static
61 void
62 setalias(const char *name, const char *val)
63 {
64         struct alias *ap, **app;
65
66         app = hashalias(name);
67         for (ap = *app; ap; ap = ap->next) {
68                 if (equal(name, ap->name)) {
69                         INTOFF;
70                         ckfree(ap->val);
71                         ap->val = savestr(val);
72                         INTON;
73                         return;
74                 }
75         }
76         /* not found */
77         INTOFF;
78         ap = ckmalloc(sizeof (struct alias));
79         ap->name = savestr(name);
80         ap->val = savestr(val);
81         ap->flag = 0;
82         ap->next = *app;
83         *app = ap;
84         aliases++;
85         INTON;
86 }
87
88 static int
89 unalias(const char *name)
90 {
91         struct alias *ap, **app;
92
93         app = hashalias(name);
94
95         for (ap = *app; ap; app = &(ap->next), ap = ap->next) {
96                 if (equal(name, ap->name)) {
97                         /*
98                          * if the alias is currently in use (i.e. its
99                          * buffer is being used by the input routine) we
100                          * just null out the name instead of freeing it.
101                          * We could clear it out later, but this situation
102                          * is so rare that it hardly seems worth it.
103                          */
104                         if (ap->flag & ALIASINUSE)
105                                 *ap->name = '\0';
106                         else {
107                                 INTOFF;
108                                 *app = ap->next;
109                                 ckfree(ap->name);
110                                 ckfree(ap->val);
111                                 ckfree(ap);
112                                 INTON;
113                         }
114                         aliases--;
115                         return (0);
116                 }
117         }
118
119         return (1);
120 }
121
122 static void
123 rmaliases(void)
124 {
125         struct alias *ap, *tmp;
126         int i;
127
128         INTOFF;
129         for (i = 0; i < ATABSIZE; i++) {
130                 ap = atab[i];
131                 atab[i] = NULL;
132                 while (ap) {
133                         ckfree(ap->name);
134                         ckfree(ap->val);
135                         tmp = ap;
136                         ap = ap->next;
137                         ckfree(tmp);
138                 }
139         }
140         aliases = 0;
141         INTON;
142 }
143
144 struct alias *
145 lookupalias(const char *name, int check)
146 {
147         struct alias *ap = *hashalias(name);
148
149         for (; ap; ap = ap->next) {
150                 if (equal(name, ap->name)) {
151                         if (check && (ap->flag & ALIASINUSE))
152                                 return (NULL);
153                         return (ap);
154                 }
155         }
156
157         return (NULL);
158 }
159
160 static int
161 comparealiases(const void *p1, const void *p2)
162 {
163         const struct alias *const *a1 = p1;
164         const struct alias *const *a2 = p2;
165
166         return strcmp((*a1)->name, (*a2)->name);
167 }
168
169 static void
170 printalias(const struct alias *a)
171 {
172         out1fmt("%s=", a->name);
173         out1qstr(a->val);
174         out1c('\n');
175 }
176
177 static void
178 printaliases(void)
179 {
180         int i, j;
181         struct alias **sorted, *ap;
182
183         sorted = ckmalloc(aliases * sizeof(*sorted));
184         j = 0;
185         for (i = 0; i < ATABSIZE; i++)
186                 for (ap = atab[i]; ap; ap = ap->next)
187                         if (*ap->name != '\0')
188                                 sorted[j++] = ap;
189         qsort(sorted, aliases, sizeof(*sorted), comparealiases);
190         for (i = 0; i < aliases; i++)
191                 printalias(sorted[i]);
192         ckfree(sorted);
193 }
194
195 int
196 aliascmd(int argc __unused, char **argv __unused)
197 {
198         char *n, *v;
199         int ret = 0;
200         struct alias *ap;
201
202         nextopt("");
203
204         if (*argptr == NULL) {
205                 printaliases();
206                 return (0);
207         }
208         while ((n = *argptr++) != NULL) {
209                 if ((v = strchr(n+1, '=')) == NULL) /* n+1: funny ksh stuff */
210                         if ((ap = lookupalias(n, 0)) == NULL) {
211                                 warning("%s: not found", n);
212                                 ret = 1;
213                         } else
214                                 printalias(ap);
215                 else {
216                         *v++ = '\0';
217                         setalias(n, v);
218                 }
219         }
220
221         return (ret);
222 }
223
224 int
225 unaliascmd(int argc __unused, char **argv __unused)
226 {
227         int i;
228
229         while ((i = nextopt("a")) != '\0') {
230                 if (i == 'a') {
231                         rmaliases();
232                         return (0);
233                 }
234         }
235         for (i = 0; *argptr; argptr++)
236                 i |= unalias(*argptr);
237
238         return (i);
239 }
240
241 static struct alias **
242 hashalias(const char *p)
243 {
244         unsigned int hashval;
245
246         hashval = *p << 4;
247         while (*p)
248                 hashval+= *p++;
249         return &atab[hashval % ATABSIZE];
250 }