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