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