compile.c revision 1.22.2.1 1 1.22.2.1 jmc /* $NetBSD: compile.c,v 1.22.2.1 2004/06/14 02:50:28 jmc Exp $ */
2 1.15 tls
3 1.1 alm /*-
4 1.1 alm * Copyright (c) 1992 Diomidis Spinellis.
5 1.9 cgd * Copyright (c) 1992, 1993
6 1.9 cgd * The Regents of the University of California. All rights reserved.
7 1.1 alm *
8 1.1 alm * This code is derived from software contributed to Berkeley by
9 1.1 alm * Diomidis Spinellis of Imperial College, University of London.
10 1.1 alm *
11 1.1 alm * Redistribution and use in source and binary forms, with or without
12 1.1 alm * modification, are permitted provided that the following conditions
13 1.1 alm * are met:
14 1.1 alm * 1. Redistributions of source code must retain the above copyright
15 1.1 alm * notice, this list of conditions and the following disclaimer.
16 1.1 alm * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 alm * notice, this list of conditions and the following disclaimer in the
18 1.1 alm * documentation and/or other materials provided with the distribution.
19 1.1 alm * 3. All advertising materials mentioning features or use of this software
20 1.1 alm * must display the following acknowledgement:
21 1.1 alm * This product includes software developed by the University of
22 1.1 alm * California, Berkeley and its contributors.
23 1.1 alm * 4. Neither the name of the University nor the names of its contributors
24 1.1 alm * may be used to endorse or promote products derived from this software
25 1.1 alm * without specific prior written permission.
26 1.1 alm *
27 1.1 alm * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28 1.1 alm * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29 1.1 alm * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30 1.1 alm * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31 1.1 alm * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32 1.1 alm * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33 1.1 alm * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34 1.1 alm * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35 1.1 alm * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36 1.1 alm * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 1.1 alm * SUCH DAMAGE.
38 1.1 alm */
39 1.1 alm
40 1.17 lukem #include <sys/cdefs.h>
41 1.1 alm #ifndef lint
42 1.16 mrg #if 0
43 1.16 mrg static char sccsid[] = "@(#)compile.c 8.2 (Berkeley) 4/28/95";
44 1.16 mrg #else
45 1.22.2.1 jmc __RCSID("$NetBSD: compile.c,v 1.22.2.1 2004/06/14 02:50:28 jmc Exp $");
46 1.16 mrg #endif
47 1.1 alm #endif /* not lint */
48 1.1 alm
49 1.1 alm #include <sys/types.h>
50 1.1 alm #include <sys/stat.h>
51 1.1 alm
52 1.1 alm #include <ctype.h>
53 1.1 alm #include <errno.h>
54 1.1 alm #include <fcntl.h>
55 1.1 alm #include <limits.h>
56 1.1 alm #include <regex.h>
57 1.1 alm #include <stdio.h>
58 1.1 alm #include <stdlib.h>
59 1.1 alm #include <string.h>
60 1.1 alm
61 1.1 alm #include "defs.h"
62 1.1 alm #include "extern.h"
63 1.1 alm
64 1.9 cgd #define LHSZ 128
65 1.9 cgd #define LHMASK (LHSZ - 1)
66 1.9 cgd static struct labhash {
67 1.9 cgd struct labhash *lh_next;
68 1.9 cgd u_int lh_hash;
69 1.9 cgd struct s_command *lh_cmd;
70 1.9 cgd int lh_ref;
71 1.9 cgd } *labels[LHSZ];
72 1.9 cgd
73 1.1 alm static char *compile_addr __P((char *, struct s_addr *));
74 1.11 alm static char *compile_ccl __P((char **, char *));
75 1.1 alm static char *compile_delimited __P((char *, char *));
76 1.1 alm static char *compile_flags __P((char *, struct s_subst *));
77 1.1 alm static char *compile_re __P((char *, regex_t **));
78 1.1 alm static char *compile_subst __P((char *, struct s_subst *));
79 1.1 alm static char *compile_text __P((void));
80 1.1 alm static char *compile_tr __P((char *, char **));
81 1.1 alm static struct s_command
82 1.14 mycroft **compile_stream __P((struct s_command **));
83 1.9 cgd static char *duptoeol __P((char *, char *));
84 1.9 cgd static void enterlabel __P((struct s_command *));
85 1.1 alm static struct s_command
86 1.9 cgd *findlabel __P((char *));
87 1.9 cgd static void fixuplabel __P((struct s_command *, struct s_command *));
88 1.9 cgd static void uselabel __P((void));
89 1.1 alm
90 1.1 alm /*
91 1.1 alm * Command specification. This is used to drive the command parser.
92 1.1 alm */
93 1.1 alm struct s_format {
94 1.1 alm char code; /* Command code */
95 1.1 alm int naddr; /* Number of address args */
96 1.1 alm enum e_args args; /* Argument type */
97 1.1 alm };
98 1.1 alm
99 1.1 alm static struct s_format cmd_fmts[] = {
100 1.1 alm {'{', 2, GROUP},
101 1.14 mycroft {'}', 0, ENDGROUP},
102 1.1 alm {'a', 1, TEXT},
103 1.1 alm {'b', 2, BRANCH},
104 1.1 alm {'c', 2, TEXT},
105 1.1 alm {'d', 2, EMPTY},
106 1.1 alm {'D', 2, EMPTY},
107 1.1 alm {'g', 2, EMPTY},
108 1.1 alm {'G', 2, EMPTY},
109 1.1 alm {'h', 2, EMPTY},
110 1.1 alm {'H', 2, EMPTY},
111 1.1 alm {'i', 1, TEXT},
112 1.1 alm {'l', 2, EMPTY},
113 1.1 alm {'n', 2, EMPTY},
114 1.1 alm {'N', 2, EMPTY},
115 1.1 alm {'p', 2, EMPTY},
116 1.1 alm {'P', 2, EMPTY},
117 1.1 alm {'q', 1, EMPTY},
118 1.1 alm {'r', 1, RFILE},
119 1.1 alm {'s', 2, SUBST},
120 1.1 alm {'t', 2, BRANCH},
121 1.1 alm {'w', 2, WFILE},
122 1.1 alm {'x', 2, EMPTY},
123 1.1 alm {'y', 2, TR},
124 1.1 alm {'!', 2, NONSEL},
125 1.1 alm {':', 0, LABEL},
126 1.1 alm {'#', 0, COMMENT},
127 1.1 alm {'=', 1, EMPTY},
128 1.1 alm {'\0', 0, COMMENT},
129 1.1 alm };
130 1.1 alm
131 1.1 alm /* The compiled program. */
132 1.1 alm struct s_command *prog;
133 1.1 alm
134 1.1 alm /*
135 1.1 alm * Compile the program into prog.
136 1.1 alm * Initialise appends.
137 1.1 alm */
138 1.1 alm void
139 1.1 alm compile()
140 1.1 alm {
141 1.14 mycroft *compile_stream(&prog) = NULL;
142 1.9 cgd fixuplabel(prog, NULL);
143 1.9 cgd uselabel();
144 1.18 drochner if (appendnum > 0)
145 1.18 drochner appends = xmalloc(sizeof(struct s_appends) * appendnum);
146 1.1 alm match = xmalloc((maxnsub + 1) * sizeof(regmatch_t));
147 1.1 alm }
148 1.1 alm
149 1.1 alm #define EATSPACE() do { \
150 1.1 alm if (p) \
151 1.19 christos while (*p && isascii((unsigned char)*p) && \
152 1.19 christos isspace((unsigned char)*p)) \
153 1.1 alm p++; \
154 1.1 alm } while (0)
155 1.1 alm
156 1.1 alm static struct s_command **
157 1.14 mycroft compile_stream(link)
158 1.1 alm struct s_command **link;
159 1.14 mycroft {
160 1.17 lukem char *p;
161 1.1 alm static char lbuf[_POSIX2_LINE_MAX + 1]; /* To save stack */
162 1.14 mycroft struct s_command *cmd, *cmd2, *stack;
163 1.1 alm struct s_format *fp;
164 1.1 alm int naddr; /* Number of addresses */
165 1.1 alm
166 1.14 mycroft stack = 0;
167 1.1 alm for (;;) {
168 1.1 alm if ((p = cu_fgets(lbuf, sizeof(lbuf))) == NULL) {
169 1.14 mycroft if (stack != 0)
170 1.1 alm err(COMPILE, "unexpected EOF (pending }'s)");
171 1.1 alm return (link);
172 1.1 alm }
173 1.1 alm
174 1.1 alm semicolon: EATSPACE();
175 1.20 kleink if (p) {
176 1.20 kleink if (*p == '#' || *p == '\0')
177 1.20 kleink continue;
178 1.20 kleink else if (*p == ';') {
179 1.20 kleink p++;
180 1.20 kleink goto semicolon;
181 1.20 kleink }
182 1.20 kleink }
183 1.1 alm *link = cmd = xmalloc(sizeof(struct s_command));
184 1.1 alm link = &cmd->next;
185 1.1 alm cmd->nonsel = cmd->inrange = 0;
186 1.1 alm /* First parse the addresses */
187 1.1 alm naddr = 0;
188 1.1 alm
189 1.1 alm /* Valid characters to start an address */
190 1.1 alm #define addrchar(c) (strchr("0123456789/\\$", (c)))
191 1.1 alm if (addrchar(*p)) {
192 1.1 alm naddr++;
193 1.1 alm cmd->a1 = xmalloc(sizeof(struct s_addr));
194 1.1 alm p = compile_addr(p, cmd->a1);
195 1.1 alm EATSPACE(); /* EXTENSION */
196 1.1 alm if (*p == ',') {
197 1.1 alm p++;
198 1.1 alm EATSPACE(); /* EXTENSION */
199 1.13 mycroft naddr++;
200 1.1 alm cmd->a2 = xmalloc(sizeof(struct s_addr));
201 1.1 alm p = compile_addr(p, cmd->a2);
202 1.13 mycroft EATSPACE();
203 1.12 mycroft } else
204 1.12 mycroft cmd->a2 = 0;
205 1.12 mycroft } else
206 1.13 mycroft cmd->a1 = cmd->a2 = 0;
207 1.1 alm
208 1.1 alm nonsel: /* Now parse the command */
209 1.1 alm if (!*p)
210 1.1 alm err(COMPILE, "command expected");
211 1.1 alm cmd->code = *p;
212 1.1 alm for (fp = cmd_fmts; fp->code; fp++)
213 1.1 alm if (fp->code == *p)
214 1.1 alm break;
215 1.1 alm if (!fp->code)
216 1.1 alm err(COMPILE, "invalid command code %c", *p);
217 1.1 alm if (naddr > fp->naddr)
218 1.1 alm err(COMPILE,
219 1.1 alm "command %c expects up to %d address(es), found %d", *p, fp->naddr, naddr);
220 1.1 alm switch (fp->args) {
221 1.1 alm case NONSEL: /* ! */
222 1.13 mycroft p++;
223 1.13 mycroft EATSPACE();
224 1.1 alm cmd->nonsel = ! cmd->nonsel;
225 1.1 alm goto nonsel;
226 1.1 alm case GROUP: /* { */
227 1.1 alm p++;
228 1.1 alm EATSPACE();
229 1.14 mycroft cmd->next = stack;
230 1.14 mycroft stack = cmd;
231 1.14 mycroft link = &cmd->u.c;
232 1.14 mycroft if (*p)
233 1.14 mycroft goto semicolon;
234 1.14 mycroft break;
235 1.14 mycroft case ENDGROUP:
236 1.12 mycroft /*
237 1.12 mycroft * Short-circuit command processing, since end of
238 1.12 mycroft * group is really just a noop.
239 1.12 mycroft */
240 1.14 mycroft cmd->nonsel = 1;
241 1.14 mycroft if (stack == 0)
242 1.14 mycroft err(COMPILE, "unexpected }");
243 1.14 mycroft cmd2 = stack;
244 1.14 mycroft stack = cmd2->next;
245 1.14 mycroft cmd2->next = cmd;
246 1.14 mycroft /*FALLTHROUGH*/
247 1.1 alm case EMPTY: /* d D g G h H l n N p P q x = \0 */
248 1.1 alm p++;
249 1.1 alm EATSPACE();
250 1.1 alm if (*p == ';') {
251 1.1 alm p++;
252 1.1 alm link = &cmd->next;
253 1.1 alm goto semicolon;
254 1.1 alm }
255 1.1 alm if (*p)
256 1.1 alm err(COMPILE,
257 1.1 alm "extra characters at the end of %c command", cmd->code);
258 1.1 alm break;
259 1.1 alm case TEXT: /* a c i */
260 1.1 alm p++;
261 1.1 alm EATSPACE();
262 1.1 alm if (*p != '\\')
263 1.1 alm err(COMPILE,
264 1.1 alm "command %c expects \\ followed by text", cmd->code);
265 1.1 alm p++;
266 1.1 alm EATSPACE();
267 1.1 alm if (*p)
268 1.1 alm err(COMPILE,
269 1.1 alm "extra characters after \\ at the end of %c command", cmd->code);
270 1.1 alm cmd->t = compile_text();
271 1.1 alm break;
272 1.1 alm case COMMENT: /* \0 # */
273 1.1 alm break;
274 1.1 alm case WFILE: /* w */
275 1.1 alm p++;
276 1.1 alm EATSPACE();
277 1.1 alm if (*p == '\0')
278 1.1 alm err(COMPILE, "filename expected");
279 1.9 cgd cmd->t = duptoeol(p, "w command");
280 1.1 alm if (aflag)
281 1.1 alm cmd->u.fd = -1;
282 1.1 alm else if ((cmd->u.fd = open(p,
283 1.1 alm O_WRONLY|O_APPEND|O_CREAT|O_TRUNC,
284 1.1 alm DEFFILEMODE)) == -1)
285 1.1 alm err(FATAL, "%s: %s\n", p, strerror(errno));
286 1.1 alm break;
287 1.1 alm case RFILE: /* r */
288 1.1 alm p++;
289 1.1 alm EATSPACE();
290 1.1 alm if (*p == '\0')
291 1.1 alm err(COMPILE, "filename expected");
292 1.1 alm else
293 1.9 cgd cmd->t = duptoeol(p, "read command");
294 1.1 alm break;
295 1.1 alm case BRANCH: /* b t */
296 1.1 alm p++;
297 1.1 alm EATSPACE();
298 1.1 alm if (*p == '\0')
299 1.1 alm cmd->t = NULL;
300 1.1 alm else
301 1.9 cgd cmd->t = duptoeol(p, "branch");
302 1.1 alm break;
303 1.1 alm case LABEL: /* : */
304 1.1 alm p++;
305 1.1 alm EATSPACE();
306 1.9 cgd cmd->t = duptoeol(p, "label");
307 1.1 alm if (strlen(p) == 0)
308 1.1 alm err(COMPILE, "empty label");
309 1.9 cgd enterlabel(cmd);
310 1.1 alm break;
311 1.1 alm case SUBST: /* s */
312 1.1 alm p++;
313 1.1 alm if (*p == '\0' || *p == '\\')
314 1.1 alm err(COMPILE,
315 1.1 alm "substitute pattern can not be delimited by newline or backslash");
316 1.1 alm cmd->u.s = xmalloc(sizeof(struct s_subst));
317 1.1 alm p = compile_re(p, &cmd->u.s->re);
318 1.1 alm if (p == NULL)
319 1.1 alm err(COMPILE, "unterminated substitute pattern");
320 1.1 alm --p;
321 1.1 alm p = compile_subst(p, cmd->u.s);
322 1.1 alm p = compile_flags(p, cmd->u.s);
323 1.1 alm EATSPACE();
324 1.1 alm if (*p == ';') {
325 1.1 alm p++;
326 1.1 alm link = &cmd->next;
327 1.1 alm goto semicolon;
328 1.1 alm }
329 1.1 alm break;
330 1.1 alm case TR: /* y */
331 1.1 alm p++;
332 1.1 alm p = compile_tr(p, (char **)&cmd->u.y);
333 1.1 alm EATSPACE();
334 1.1 alm if (*p == ';') {
335 1.1 alm p++;
336 1.1 alm link = &cmd->next;
337 1.1 alm goto semicolon;
338 1.1 alm }
339 1.1 alm if (*p)
340 1.1 alm err(COMPILE,
341 1.1 alm "extra text at the end of a transform command");
342 1.1 alm break;
343 1.1 alm }
344 1.1 alm }
345 1.1 alm }
346 1.1 alm
347 1.1 alm /*
348 1.22 wiz * Get a delimited string. P points to the delimiter of the string; d points
349 1.1 alm * to a buffer area. Newline and delimiter escapes are processed; other
350 1.1 alm * escapes are ignored.
351 1.1 alm *
352 1.1 alm * Returns a pointer to the first character after the final delimiter or NULL
353 1.1 alm * in the case of a non-terminated string. The character array d is filled
354 1.1 alm * with the processed string.
355 1.1 alm */
356 1.1 alm static char *
357 1.1 alm compile_delimited(p, d)
358 1.1 alm char *p, *d;
359 1.1 alm {
360 1.1 alm char c;
361 1.1 alm
362 1.1 alm c = *p++;
363 1.1 alm if (c == '\0')
364 1.1 alm return (NULL);
365 1.1 alm else if (c == '\\')
366 1.1 alm err(COMPILE, "\\ can not be used as a string delimiter");
367 1.1 alm else if (c == '\n')
368 1.1 alm err(COMPILE, "newline can not be used as a string delimiter");
369 1.1 alm while (*p) {
370 1.11 alm if (*p == '[') {
371 1.11 alm if ((d = compile_ccl(&p, d)) == NULL)
372 1.11 alm err(COMPILE, "unbalanced brackets ([])");
373 1.11 alm continue;
374 1.11 alm } else if (*p == '\\' && p[1] == '[') {
375 1.11 alm *d++ = *p++;
376 1.11 alm } else if (*p == '\\' && p[1] == c)
377 1.1 alm p++;
378 1.1 alm else if (*p == '\\' && p[1] == 'n') {
379 1.1 alm *d++ = '\n';
380 1.1 alm p += 2;
381 1.1 alm continue;
382 1.1 alm } else if (*p == '\\' && p[1] == '\\')
383 1.1 alm *d++ = *p++;
384 1.1 alm else if (*p == c) {
385 1.1 alm *d = '\0';
386 1.1 alm return (p + 1);
387 1.1 alm }
388 1.1 alm *d++ = *p++;
389 1.1 alm }
390 1.1 alm return (NULL);
391 1.11 alm }
392 1.11 alm
393 1.11 alm
394 1.11 alm /* compile_ccl: expand a POSIX character class */
395 1.11 alm static char *
396 1.11 alm compile_ccl(sp, t)
397 1.11 alm char **sp;
398 1.11 alm char *t;
399 1.11 alm {
400 1.11 alm int c, d;
401 1.11 alm char *s = *sp;
402 1.11 alm
403 1.11 alm *t++ = *s++;
404 1.11 alm if (*s == '^')
405 1.11 alm *t++ = *s++;
406 1.11 alm if (*s == ']')
407 1.11 alm *t++ = *s++;
408 1.11 alm for (; *s && (*t = *s) != ']'; s++, t++)
409 1.11 alm if (*s == '[' && ((d = *(s+1)) == '.' || d == ':' || d == '=')) {
410 1.11 alm *++t = *++s, t++, s++;
411 1.11 alm for (c = *s; (*t = *s) != ']' || c != d; s++, t++)
412 1.11 alm if ((c = *s) == '\0')
413 1.11 alm return NULL;
414 1.11 alm } else if (*s == '\\' && s[1] == 'n')
415 1.11 alm *t = '\n', s++;
416 1.11 alm return (*s == ']') ? *sp = ++s, ++t : NULL;
417 1.2 alm }
418 1.2 alm
419 1.1 alm /*
420 1.1 alm * Get a regular expression. P points to the delimiter of the regular
421 1.1 alm * expression; repp points to the address of a regexp pointer. Newline
422 1.1 alm * and delimiter escapes are processed; other escapes are ignored.
423 1.1 alm * Returns a pointer to the first character after the final delimiter
424 1.1 alm * or NULL in the case of a non terminated regular expression. The regexp
425 1.1 alm * pointer is set to the compiled regular expression.
426 1.1 alm * Cflags are passed to regcomp.
427 1.1 alm */
428 1.1 alm static char *
429 1.1 alm compile_re(p, repp)
430 1.1 alm char *p;
431 1.1 alm regex_t **repp;
432 1.1 alm {
433 1.1 alm int eval;
434 1.1 alm char re[_POSIX2_LINE_MAX + 1];
435 1.1 alm
436 1.1 alm p = compile_delimited(p, re);
437 1.1 alm if (p && strlen(re) == 0) {
438 1.1 alm *repp = NULL;
439 1.1 alm return (p);
440 1.1 alm }
441 1.1 alm *repp = xmalloc(sizeof(regex_t));
442 1.21 atatat if (p && (eval = regcomp(*repp, re, ere)) != 0)
443 1.1 alm err(COMPILE, "RE error: %s", strregerror(eval, *repp));
444 1.1 alm if (maxnsub < (*repp)->re_nsub)
445 1.1 alm maxnsub = (*repp)->re_nsub;
446 1.1 alm return (p);
447 1.1 alm }
448 1.1 alm
449 1.1 alm /*
450 1.1 alm * Compile the substitution string of a regular expression and set res to
451 1.1 alm * point to a saved copy of it. Nsub is the number of parenthesized regular
452 1.1 alm * expressions.
453 1.1 alm */
454 1.1 alm static char *
455 1.1 alm compile_subst(p, s)
456 1.1 alm char *p;
457 1.1 alm struct s_subst *s;
458 1.1 alm {
459 1.1 alm static char lbuf[_POSIX2_LINE_MAX + 1];
460 1.1 alm int asize, ref, size;
461 1.1 alm char c, *text, *op, *sp;
462 1.22.2.1 jmc int sawesc = 0;
463 1.1 alm
464 1.1 alm c = *p++; /* Terminator character */
465 1.1 alm if (c == '\0')
466 1.1 alm return (NULL);
467 1.1 alm
468 1.1 alm s->maxbref = 0;
469 1.1 alm s->linenum = linenum;
470 1.1 alm asize = 2 * _POSIX2_LINE_MAX + 1;
471 1.1 alm text = xmalloc(asize);
472 1.1 alm size = 0;
473 1.1 alm do {
474 1.1 alm op = sp = text + size;
475 1.1 alm for (; *p; p++) {
476 1.22.2.1 jmc if (*p == '\\' || sawesc) {
477 1.22.2.1 jmc /*
478 1.22.2.1 jmc * If this is a continuation from the last
479 1.22.2.1 jmc * buffer, we won't have a character to
480 1.22.2.1 jmc * skip over.
481 1.22.2.1 jmc */
482 1.22.2.1 jmc if (sawesc)
483 1.22.2.1 jmc sawesc = 0;
484 1.22.2.1 jmc else
485 1.22.2.1 jmc p++;
486 1.22.2.1 jmc
487 1.22.2.1 jmc if (*p == '\0') {
488 1.22.2.1 jmc /*
489 1.22.2.1 jmc * This escaped character is continued
490 1.22.2.1 jmc * in the next part of the line. Note
491 1.22.2.1 jmc * this fact, then cause the loop to
492 1.22.2.1 jmc * exit w/ normal EOL case and reenter
493 1.22.2.1 jmc * above with the new buffer.
494 1.22.2.1 jmc */
495 1.22.2.1 jmc sawesc = 1;
496 1.22.2.1 jmc p--;
497 1.22.2.1 jmc continue;
498 1.22.2.1 jmc } else if (strchr("123456789", *p) != NULL) {
499 1.1 alm *sp++ = '\\';
500 1.1 alm ref = *p - '0';
501 1.1 alm if (s->re != NULL &&
502 1.1 alm ref > s->re->re_nsub)
503 1.1 alm err(COMPILE,
504 1.1 alm "\\%c not defined in the RE", *p);
505 1.1 alm if (s->maxbref < ref)
506 1.1 alm s->maxbref = ref;
507 1.1 alm } else if (*p == '&' || *p == '\\')
508 1.1 alm *sp++ = '\\';
509 1.1 alm } else if (*p == c) {
510 1.1 alm p++;
511 1.1 alm *sp++ = '\0';
512 1.1 alm size += sp - op;
513 1.1 alm s->new = xrealloc(text, size);
514 1.1 alm return (p);
515 1.1 alm } else if (*p == '\n') {
516 1.1 alm err(COMPILE,
517 1.1 alm "unescaped newline inside substitute pattern");
518 1.1 alm /* NOTREACHED */
519 1.1 alm }
520 1.1 alm *sp++ = *p;
521 1.1 alm }
522 1.1 alm size += sp - op;
523 1.1 alm if (asize - size < _POSIX2_LINE_MAX + 1) {
524 1.1 alm asize *= 2;
525 1.1 alm text = xmalloc(asize);
526 1.1 alm }
527 1.1 alm } while (cu_fgets(p = lbuf, sizeof(lbuf)));
528 1.1 alm err(COMPILE, "unterminated substitute in regular expression");
529 1.1 alm /* NOTREACHED */
530 1.17 lukem return (NULL);
531 1.1 alm }
532 1.1 alm
533 1.1 alm /*
534 1.1 alm * Compile the flags of the s command
535 1.1 alm */
536 1.1 alm static char *
537 1.1 alm compile_flags(p, s)
538 1.1 alm char *p;
539 1.1 alm struct s_subst *s;
540 1.1 alm {
541 1.1 alm int gn; /* True if we have seen g or n */
542 1.1 alm char wfile[_POSIX2_LINE_MAX + 1], *q;
543 1.1 alm
544 1.1 alm s->n = 1; /* Default */
545 1.1 alm s->p = 0;
546 1.1 alm s->wfile = NULL;
547 1.1 alm s->wfd = -1;
548 1.1 alm for (gn = 0;;) {
549 1.1 alm EATSPACE(); /* EXTENSION */
550 1.1 alm switch (*p) {
551 1.1 alm case 'g':
552 1.1 alm if (gn)
553 1.1 alm err(COMPILE,
554 1.1 alm "more than one number or 'g' in substitute flags");
555 1.1 alm gn = 1;
556 1.1 alm s->n = 0;
557 1.1 alm break;
558 1.1 alm case '\0':
559 1.1 alm case '\n':
560 1.1 alm case ';':
561 1.1 alm return (p);
562 1.1 alm case 'p':
563 1.1 alm s->p = 1;
564 1.1 alm break;
565 1.1 alm case '1': case '2': case '3':
566 1.1 alm case '4': case '5': case '6':
567 1.1 alm case '7': case '8': case '9':
568 1.1 alm if (gn)
569 1.1 alm err(COMPILE,
570 1.1 alm "more than one number or 'g' in substitute flags");
571 1.1 alm gn = 1;
572 1.1 alm /* XXX Check for overflow */
573 1.1 alm s->n = (int)strtol(p, &p, 10);
574 1.22.2.1 jmc p--;
575 1.1 alm break;
576 1.1 alm case 'w':
577 1.1 alm p++;
578 1.9 cgd #ifdef HISTORIC_PRACTICE
579 1.1 alm if (*p != ' ') {
580 1.1 alm err(WARNING, "space missing before w wfile");
581 1.1 alm return (p);
582 1.1 alm }
583 1.1 alm #endif
584 1.1 alm EATSPACE();
585 1.1 alm q = wfile;
586 1.1 alm while (*p) {
587 1.1 alm if (*p == '\n')
588 1.1 alm break;
589 1.1 alm *q++ = *p++;
590 1.1 alm }
591 1.1 alm *q = '\0';
592 1.1 alm if (q == wfile)
593 1.1 alm err(COMPILE, "no wfile specified");
594 1.1 alm s->wfile = strdup(wfile);
595 1.1 alm if (!aflag && (s->wfd = open(wfile,
596 1.1 alm O_WRONLY|O_APPEND|O_CREAT|O_TRUNC,
597 1.1 alm DEFFILEMODE)) == -1)
598 1.1 alm err(FATAL, "%s: %s\n", wfile, strerror(errno));
599 1.1 alm return (p);
600 1.1 alm default:
601 1.1 alm err(COMPILE,
602 1.1 alm "bad flag in substitute command: '%c'", *p);
603 1.1 alm break;
604 1.1 alm }
605 1.1 alm p++;
606 1.1 alm }
607 1.1 alm }
608 1.1 alm
609 1.1 alm /*
610 1.1 alm * Compile a translation set of strings into a lookup table.
611 1.1 alm */
612 1.1 alm static char *
613 1.1 alm compile_tr(p, transtab)
614 1.1 alm char *p;
615 1.1 alm char **transtab;
616 1.1 alm {
617 1.1 alm int i;
618 1.1 alm char *lt, *op, *np;
619 1.1 alm char old[_POSIX2_LINE_MAX + 1];
620 1.1 alm char new[_POSIX2_LINE_MAX + 1];
621 1.1 alm
622 1.1 alm if (*p == '\0' || *p == '\\')
623 1.1 alm err(COMPILE,
624 1.1 alm "transform pattern can not be delimited by newline or backslash");
625 1.1 alm p = compile_delimited(p, old);
626 1.1 alm if (p == NULL) {
627 1.1 alm err(COMPILE, "unterminated transform source string");
628 1.1 alm return (NULL);
629 1.1 alm }
630 1.1 alm p = compile_delimited(--p, new);
631 1.1 alm if (p == NULL) {
632 1.1 alm err(COMPILE, "unterminated transform target string");
633 1.1 alm return (NULL);
634 1.1 alm }
635 1.1 alm EATSPACE();
636 1.1 alm if (strlen(new) != strlen(old)) {
637 1.1 alm err(COMPILE, "transform strings are not the same length");
638 1.1 alm return (NULL);
639 1.1 alm }
640 1.1 alm /* We assume characters are 8 bits */
641 1.22.2.1 jmc lt = xmalloc(UCHAR_MAX+1);
642 1.1 alm for (i = 0; i <= UCHAR_MAX; i++)
643 1.1 alm lt[i] = (char)i;
644 1.1 alm for (op = old, np = new; *op; op++, np++)
645 1.1 alm lt[(u_char)*op] = *np;
646 1.1 alm *transtab = lt;
647 1.1 alm return (p);
648 1.1 alm }
649 1.1 alm
650 1.1 alm /*
651 1.1 alm * Compile the text following an a or i command.
652 1.1 alm */
653 1.1 alm static char *
654 1.1 alm compile_text()
655 1.1 alm {
656 1.1 alm int asize, size;
657 1.1 alm char *text, *p, *op, *s;
658 1.1 alm char lbuf[_POSIX2_LINE_MAX + 1];
659 1.1 alm
660 1.1 alm asize = 2 * _POSIX2_LINE_MAX + 1;
661 1.1 alm text = xmalloc(asize);
662 1.1 alm size = 0;
663 1.1 alm while (cu_fgets(lbuf, sizeof(lbuf))) {
664 1.1 alm op = s = text + size;
665 1.1 alm p = lbuf;
666 1.1 alm EATSPACE();
667 1.1 alm for (; *p; p++) {
668 1.1 alm if (*p == '\\')
669 1.1 alm p++;
670 1.1 alm *s++ = *p;
671 1.1 alm }
672 1.1 alm size += s - op;
673 1.1 alm if (p[-2] != '\\') {
674 1.1 alm *s = '\0';
675 1.1 alm break;
676 1.1 alm }
677 1.1 alm if (asize - size < _POSIX2_LINE_MAX + 1) {
678 1.1 alm asize *= 2;
679 1.1 alm text = xmalloc(asize);
680 1.1 alm }
681 1.1 alm }
682 1.1 alm return (xrealloc(text, size + 1));
683 1.1 alm }
684 1.1 alm
685 1.1 alm /*
686 1.1 alm * Get an address and return a pointer to the first character after
687 1.1 alm * it. Fill the structure pointed to according to the address.
688 1.1 alm */
689 1.1 alm static char *
690 1.1 alm compile_addr(p, a)
691 1.1 alm char *p;
692 1.1 alm struct s_addr *a;
693 1.1 alm {
694 1.1 alm char *end;
695 1.1 alm
696 1.1 alm switch (*p) {
697 1.1 alm case '\\': /* Context address */
698 1.1 alm ++p;
699 1.1 alm /* FALLTHROUGH */
700 1.1 alm case '/': /* Context address */
701 1.1 alm p = compile_re(p, &a->u.r);
702 1.1 alm if (p == NULL)
703 1.1 alm err(COMPILE, "unterminated regular expression");
704 1.1 alm a->type = AT_RE;
705 1.1 alm return (p);
706 1.1 alm
707 1.1 alm case '$': /* Last line */
708 1.1 alm a->type = AT_LAST;
709 1.1 alm return (p + 1);
710 1.1 alm /* Line number */
711 1.1 alm case '0': case '1': case '2': case '3': case '4':
712 1.1 alm case '5': case '6': case '7': case '8': case '9':
713 1.1 alm a->type = AT_LINE;
714 1.1 alm a->u.l = strtol(p, &end, 10);
715 1.1 alm return (end);
716 1.1 alm default:
717 1.1 alm err(COMPILE, "expected context address");
718 1.1 alm return (NULL);
719 1.1 alm }
720 1.1 alm }
721 1.1 alm
722 1.1 alm /*
723 1.9 cgd * duptoeol --
724 1.9 cgd * Return a copy of all the characters up to \n or \0.
725 1.1 alm */
726 1.1 alm static char *
727 1.9 cgd duptoeol(s, ctype)
728 1.17 lukem char *s;
729 1.9 cgd char *ctype;
730 1.1 alm {
731 1.1 alm size_t len;
732 1.9 cgd int ws;
733 1.1 alm char *start;
734 1.1 alm
735 1.9 cgd ws = 0;
736 1.9 cgd for (start = s; *s != '\0' && *s != '\n'; ++s)
737 1.19 christos ws = isspace((unsigned char)*s);
738 1.1 alm *s = '\0';
739 1.9 cgd if (ws)
740 1.9 cgd err(WARNING, "whitespace after %s", ctype);
741 1.1 alm len = s - start + 1;
742 1.1 alm return (memmove(xmalloc(len), start, len));
743 1.1 alm }
744 1.1 alm
745 1.1 alm /*
746 1.9 cgd * Convert goto label names to addresses, and count a and r commands, in
747 1.9 cgd * the given subset of the script. Free the memory used by labels in b
748 1.9 cgd * and t commands (but not by :).
749 1.9 cgd *
750 1.1 alm * TODO: Remove } nodes
751 1.1 alm */
752 1.1 alm static void
753 1.9 cgd fixuplabel(cp, end)
754 1.9 cgd struct s_command *cp, *end;
755 1.1 alm {
756 1.1 alm
757 1.1 alm for (; cp != end; cp = cp->next)
758 1.1 alm switch (cp->code) {
759 1.1 alm case 'a':
760 1.1 alm case 'r':
761 1.1 alm appendnum++;
762 1.1 alm break;
763 1.1 alm case 'b':
764 1.1 alm case 't':
765 1.9 cgd /* Resolve branch target. */
766 1.1 alm if (cp->t == NULL) {
767 1.1 alm cp->u.c = NULL;
768 1.1 alm break;
769 1.1 alm }
770 1.9 cgd if ((cp->u.c = findlabel(cp->t)) == NULL)
771 1.1 alm err(COMPILE2, "undefined label '%s'", cp->t);
772 1.1 alm free(cp->t);
773 1.1 alm break;
774 1.1 alm case '{':
775 1.9 cgd /* Do interior commands. */
776 1.9 cgd fixuplabel(cp->u.c, cp->next);
777 1.1 alm break;
778 1.1 alm }
779 1.9 cgd }
780 1.9 cgd
781 1.9 cgd /*
782 1.9 cgd * Associate the given command label for later lookup.
783 1.9 cgd */
784 1.9 cgd static void
785 1.9 cgd enterlabel(cp)
786 1.9 cgd struct s_command *cp;
787 1.9 cgd {
788 1.17 lukem struct labhash **lhp, *lh;
789 1.17 lukem u_char *p;
790 1.17 lukem u_int h, c;
791 1.9 cgd
792 1.9 cgd for (h = 0, p = (u_char *)cp->t; (c = *p) != 0; p++)
793 1.9 cgd h = (h << 5) + h + c;
794 1.9 cgd lhp = &labels[h & LHMASK];
795 1.9 cgd for (lh = *lhp; lh != NULL; lh = lh->lh_next)
796 1.9 cgd if (lh->lh_hash == h && strcmp(cp->t, lh->lh_cmd->t) == 0)
797 1.9 cgd err(COMPILE2, "duplicate label '%s'", cp->t);
798 1.9 cgd lh = xmalloc(sizeof *lh);
799 1.9 cgd lh->lh_next = *lhp;
800 1.9 cgd lh->lh_hash = h;
801 1.9 cgd lh->lh_cmd = cp;
802 1.9 cgd lh->lh_ref = 0;
803 1.9 cgd *lhp = lh;
804 1.9 cgd }
805 1.9 cgd
806 1.9 cgd /*
807 1.9 cgd * Find the label contained in the command l in the command linked
808 1.9 cgd * list cp. L is excluded from the search. Return NULL if not found.
809 1.9 cgd */
810 1.9 cgd static struct s_command *
811 1.9 cgd findlabel(name)
812 1.9 cgd char *name;
813 1.9 cgd {
814 1.17 lukem struct labhash *lh;
815 1.17 lukem u_char *p;
816 1.17 lukem u_int h, c;
817 1.9 cgd
818 1.9 cgd for (h = 0, p = (u_char *)name; (c = *p) != 0; p++)
819 1.9 cgd h = (h << 5) + h + c;
820 1.9 cgd for (lh = labels[h & LHMASK]; lh != NULL; lh = lh->lh_next) {
821 1.9 cgd if (lh->lh_hash == h && strcmp(name, lh->lh_cmd->t) == 0) {
822 1.9 cgd lh->lh_ref = 1;
823 1.9 cgd return (lh->lh_cmd);
824 1.9 cgd }
825 1.9 cgd }
826 1.9 cgd return (NULL);
827 1.9 cgd }
828 1.9 cgd
829 1.9 cgd /*
830 1.9 cgd * Warn about any unused labels. As a side effect, release the label hash
831 1.9 cgd * table space.
832 1.9 cgd */
833 1.9 cgd static void
834 1.9 cgd uselabel()
835 1.9 cgd {
836 1.17 lukem struct labhash *lh, *next;
837 1.17 lukem int i;
838 1.9 cgd
839 1.9 cgd for (i = 0; i < LHSZ; i++) {
840 1.9 cgd for (lh = labels[i]; lh != NULL; lh = next) {
841 1.9 cgd next = lh->lh_next;
842 1.9 cgd if (!lh->lh_ref)
843 1.9 cgd err(WARNING, "unused label '%s'",
844 1.9 cgd lh->lh_cmd->t);
845 1.9 cgd free(lh);
846 1.9 cgd }
847 1.9 cgd }
848 1.1 alm }
849