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