Home | History | Annotate | Line # | Download | only in sed
process.c revision 1.40
      1  1.40  christos /*	$NetBSD: process.c,v 1.40 2014/06/06 00:13:13 christos Exp $	*/
      2  1.18       tls 
      3   1.1       alm /*-
      4  1.40  christos  * Copyright (c) 1992 Diomidis Spinellis.
      5  1.19       mrg  * Copyright (c) 1992, 1993, 1994
      6   1.8       cgd  *	The Regents of the University of California.  All rights reserved.
      7   1.1       alm  *
      8   1.1       alm  * This code is derived from software contributed to Berkeley by
      9   1.1       alm  * Diomidis Spinellis of Imperial College, University of London.
     10   1.1       alm  *
     11   1.1       alm  * Redistribution and use in source and binary forms, with or without
     12   1.1       alm  * modification, are permitted provided that the following conditions
     13   1.1       alm  * are met:
     14   1.1       alm  * 1. Redistributions of source code must retain the above copyright
     15   1.1       alm  *    notice, this list of conditions and the following disclaimer.
     16   1.1       alm  * 2. Redistributions in binary form must reproduce the above copyright
     17   1.1       alm  *    notice, this list of conditions and the following disclaimer in the
     18   1.1       alm  *    documentation and/or other materials provided with the distribution.
     19  1.33       agc  * 3. Neither the name of the University nor the names of its contributors
     20  1.33       agc  *    may be used to endorse or promote products derived from this software
     21  1.33       agc  *    without specific prior written permission.
     22  1.33       agc  *
     23  1.33       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24  1.33       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25  1.33       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26  1.33       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27  1.33       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28  1.33       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29  1.33       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30  1.33       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31  1.33       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32  1.33       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33  1.33       agc  * SUCH DAMAGE.
     34  1.33       agc  */
     35  1.33       agc 
     36  1.37   gdamore #if HAVE_NBTOOL_CONFIG_H
     37  1.37   gdamore #include "nbtool_config.h"
     38  1.37   gdamore #endif
     39  1.37   gdamore 
     40  1.20     lukem #include <sys/cdefs.h>
     41  1.40  christos __RCSID("$NetBSD: process.c,v 1.40 2014/06/06 00:13:13 christos Exp $");
     42  1.40  christos #ifdef __FBSDID
     43  1.40  christos __FBSDID("$FreeBSD: head/usr.bin/sed/process.c 192732 2009-05-25 06:45:33Z brian $");
     44  1.40  christos #endif
     45  1.40  christos 
     46   1.1       alm #ifndef lint
     47  1.40  christos static const char sccsid[] = "@(#)process.c	8.6 (Berkeley) 4/20/94";
     48  1.19       mrg #endif
     49   1.1       alm 
     50   1.1       alm #include <sys/types.h>
     51   1.1       alm #include <sys/stat.h>
     52   1.1       alm #include <sys/ioctl.h>
     53   1.1       alm #include <sys/uio.h>
     54   1.1       alm 
     55   1.1       alm #include <ctype.h>
     56  1.40  christos #include <err.h>
     57   1.1       alm #include <errno.h>
     58   1.1       alm #include <fcntl.h>
     59   1.1       alm #include <limits.h>
     60   1.1       alm #include <regex.h>
     61   1.1       alm #include <stdio.h>
     62   1.1       alm #include <stdlib.h>
     63   1.1       alm #include <string.h>
     64   1.1       alm #include <unistd.h>
     65  1.40  christos #include <wchar.h>
     66  1.40  christos #include <wctype.h>
     67   1.1       alm 
     68   1.1       alm #include "defs.h"
     69   1.1       alm #include "extern.h"
     70   1.1       alm 
     71  1.40  christos static SPACE HS, PS, SS, YS;
     72   1.1       alm #define	pd		PS.deleted
     73   1.1       alm #define	ps		PS.space
     74   1.1       alm #define	psl		PS.len
     75   1.1       alm #define	hs		HS.space
     76   1.1       alm #define	hsl		HS.len
     77   1.1       alm 
     78  1.40  christos static __inline int	 applies(struct s_command *);
     79  1.40  christos static void		 do_tr(struct s_tr *);
     80  1.32       wiz static void		 flush_appends(void);
     81  1.40  christos static void		 lputs(char *, size_t);
     82  1.40  christos static __inline int	 regexec_e(regex_t *, const char *, int, int, size_t);
     83  1.32       wiz static void		 regsub(SPACE *, char *, char *);
     84  1.32       wiz static int		 substitute(struct s_command *);
     85   1.1       alm 
     86   1.1       alm struct s_appends *appends;	/* Array of pointers to strings to append. */
     87  1.40  christos static size_t appendx;		/* Index into appends array. */
     88  1.40  christos size_t appendnum;			/* Size of appends array. */
     89   1.1       alm 
     90   1.1       alm static int lastaddr;		/* Set by applies if last address of a range. */
     91   1.1       alm static int sdone;		/* If any substitutes since last line input. */
     92   1.1       alm 				/* Iov structure for 'w' commands. */
     93   1.1       alm static regex_t *defpreg;
     94   1.1       alm size_t maxnsub;
     95   1.1       alm regmatch_t *match;
     96   1.1       alm 
     97  1.40  christos #define OUT() do {fwrite(ps, 1, psl, outfile); fputc('\n', outfile);} while (0)
     98   1.8       cgd 
     99   1.1       alm void
    100  1.32       wiz process(void)
    101   1.1       alm {
    102   1.1       alm 	struct s_command *cp;
    103   1.1       alm 	SPACE tspace;
    104  1.40  christos 	size_t oldpsl = 0;
    105  1.15   mycroft 	char *p;
    106   1.1       alm 
    107  1.40  christos 	p = NULL;
    108  1.40  christos 
    109   1.1       alm 	for (linenum = 0; mf_fgets(&PS, REPLACE);) {
    110   1.1       alm 		pd = 0;
    111  1.16   mycroft top:
    112   1.1       alm 		cp = prog;
    113   1.1       alm redirect:
    114   1.1       alm 		while (cp != NULL) {
    115   1.1       alm 			if (!applies(cp)) {
    116   1.1       alm 				cp = cp->next;
    117   1.1       alm 				continue;
    118   1.1       alm 			}
    119   1.1       alm 			switch (cp->code) {
    120   1.1       alm 			case '{':
    121   1.1       alm 				cp = cp->u.c;
    122   1.1       alm 				goto redirect;
    123   1.1       alm 			case 'a':
    124  1.40  christos 				if (appendx >= appendnum)
    125   1.1       alm 					appends = xrealloc(appends,
    126   1.1       alm 					    sizeof(struct s_appends) *
    127  1.40  christos 					    (appendnum *= 2));
    128   1.1       alm 				appends[appendx].type = AP_STRING;
    129   1.1       alm 				appends[appendx].s = cp->t;
    130   1.8       cgd 				appends[appendx].len = strlen(cp->t);
    131   1.1       alm 				appendx++;
    132   1.1       alm 				break;
    133   1.1       alm 			case 'b':
    134   1.1       alm 				cp = cp->u.c;
    135   1.1       alm 				goto redirect;
    136   1.1       alm 			case 'c':
    137   1.1       alm 				pd = 1;
    138   1.1       alm 				psl = 0;
    139  1.40  christos 				if (cp->a2 == NULL || lastaddr || lastline())
    140  1.40  christos 					(void)fprintf(outfile, "%s", cp->t);
    141  1.39       uwe 				goto new;
    142   1.1       alm 			case 'd':
    143   1.1       alm 				pd = 1;
    144   1.1       alm 				goto new;
    145   1.1       alm 			case 'D':
    146   1.1       alm 				if (pd)
    147   1.1       alm 					goto new;
    148  1.40  christos 				if (psl == 0 ||
    149  1.40  christos 				    (p = memchr(ps, '\n', psl - 1)) == NULL) {
    150   1.1       alm 					pd = 1;
    151  1.16   mycroft 					goto new;
    152  1.28    atatat 				} else {
    153  1.40  christos 					psl -= (size_t)((p + 1) - ps);
    154   1.1       alm 					memmove(ps, p + 1, psl);
    155  1.28    atatat 					goto top;
    156   1.1       alm 				}
    157   1.1       alm 			case 'g':
    158   1.1       alm 				cspace(&PS, hs, hsl, REPLACE);
    159   1.1       alm 				break;
    160   1.1       alm 			case 'G':
    161  1.25       kim 				if (hs == NULL)
    162  1.40  christos 					cspace(&PS, "\n", 1, REPLACE);
    163  1.40  christos 				cspace(&PS, hs, hsl, APPEND);
    164   1.1       alm 				break;
    165   1.1       alm 			case 'h':
    166   1.1       alm 				cspace(&HS, ps, psl, REPLACE);
    167   1.1       alm 				break;
    168   1.1       alm 			case 'H':
    169  1.40  christos 				cspace(&HS, "\n", 1, APPEND);
    170  1.40  christos 				cspace(&HS, ps, psl, APPEND);
    171   1.1       alm 				break;
    172   1.1       alm 			case 'i':
    173  1.40  christos 				(void)fprintf(outfile, "%s", cp->t);
    174   1.1       alm 				break;
    175   1.1       alm 			case 'l':
    176  1.40  christos 				lputs(ps, psl);
    177   1.1       alm 				break;
    178   1.1       alm 			case 'n':
    179   1.1       alm 				if (!nflag && !pd)
    180  1.40  christos 					OUT();
    181   1.1       alm 				flush_appends();
    182  1.14   mycroft 				if (!mf_fgets(&PS, REPLACE))
    183   1.1       alm 					exit(0);
    184   1.1       alm 				pd = 0;
    185   1.1       alm 				break;
    186   1.1       alm 			case 'N':
    187   1.1       alm 				flush_appends();
    188  1.40  christos 				cspace(&PS, "\n", 1, APPEND);
    189  1.40  christos 				if (!mf_fgets(&PS, APPEND))
    190   1.1       alm 					exit(0);
    191   1.1       alm 				break;
    192   1.1       alm 			case 'p':
    193   1.1       alm 				if (pd)
    194   1.1       alm 					break;
    195  1.40  christos 				OUT();
    196   1.1       alm 				break;
    197   1.1       alm 			case 'P':
    198   1.1       alm 				if (pd)
    199   1.1       alm 					break;
    200  1.15   mycroft 				if ((p = memchr(ps, '\n', psl - 1)) != NULL) {
    201  1.15   mycroft 					oldpsl = psl;
    202  1.40  christos 					psl = (size_t)(p - ps);
    203   1.1       alm 				}
    204  1.40  christos 				OUT();
    205   1.1       alm 				if (p != NULL)
    206  1.15   mycroft 					psl = oldpsl;
    207   1.1       alm 				break;
    208   1.1       alm 			case 'q':
    209   1.1       alm 				if (!nflag && !pd)
    210  1.40  christos 					OUT();
    211   1.1       alm 				flush_appends();
    212   1.1       alm 				exit(0);
    213   1.1       alm 			case 'r':
    214  1.40  christos 				if (appendx >= appendnum)
    215   1.1       alm 					appends = xrealloc(appends,
    216   1.1       alm 					    sizeof(struct s_appends) *
    217  1.40  christos 					    (appendnum *= 2));
    218   1.1       alm 				appends[appendx].type = AP_FILE;
    219   1.1       alm 				appends[appendx].s = cp->t;
    220   1.8       cgd 				appends[appendx].len = strlen(cp->t);
    221   1.1       alm 				appendx++;
    222   1.1       alm 				break;
    223   1.1       alm 			case 's':
    224   1.1       alm 				sdone |= substitute(cp);
    225   1.1       alm 				break;
    226   1.1       alm 			case 't':
    227   1.1       alm 				if (sdone) {
    228   1.1       alm 					sdone = 0;
    229   1.1       alm 					cp = cp->u.c;
    230   1.1       alm 					goto redirect;
    231   1.1       alm 				}
    232   1.1       alm 				break;
    233   1.1       alm 			case 'w':
    234   1.1       alm 				if (pd)
    235   1.1       alm 					break;
    236   1.1       alm 				if (cp->u.fd == -1 && (cp->u.fd = open(cp->t,
    237   1.1       alm 				    O_WRONLY|O_APPEND|O_CREAT|O_TRUNC,
    238   1.1       alm 				    DEFFILEMODE)) == -1)
    239  1.40  christos 					err(1, "%s", cp->t);
    240  1.40  christos 				if (write(cp->u.fd, ps, psl) != (ssize_t)psl ||
    241  1.40  christos 				    write(cp->u.fd, "\n", 1) != 1)
    242  1.40  christos 					err(1, "%s", cp->t);
    243   1.1       alm 				break;
    244   1.1       alm 			case 'x':
    245  1.40  christos 				/*
    246  1.40  christos 				 * If the hold space is null, make it empty
    247  1.40  christos 				 * but not null.  Otherwise the pattern space
    248  1.40  christos 				 * will become null after the swap, which is
    249  1.40  christos 				 * an abnormal condition.
    250  1.40  christos 				 */
    251   1.8       cgd 				if (hs == NULL)
    252  1.40  christos 					cspace(&HS, "", 0, REPLACE);
    253   1.1       alm 				tspace = PS;
    254   1.1       alm 				PS = HS;
    255   1.1       alm 				HS = tspace;
    256   1.1       alm 				break;
    257   1.1       alm 			case 'y':
    258  1.40  christos 				if (pd || psl == 0)
    259   1.1       alm 					break;
    260  1.40  christos 				do_tr(cp->u.y);
    261   1.1       alm 				break;
    262   1.1       alm 			case ':':
    263   1.1       alm 			case '}':
    264   1.1       alm 				break;
    265   1.1       alm 			case '=':
    266  1.40  christos 				(void)fprintf(outfile, "%lu\n", linenum);
    267   1.1       alm 			}
    268   1.1       alm 			cp = cp->next;
    269   1.1       alm 		} /* for all cp */
    270   1.1       alm 
    271   1.1       alm new:		if (!nflag && !pd)
    272  1.40  christos 			OUT();
    273   1.1       alm 		flush_appends();
    274   1.1       alm 	} /* for all lines */
    275   1.1       alm }
    276   1.1       alm 
    277   1.1       alm /*
    278   1.1       alm  * TRUE if the address passed matches the current program state
    279   1.1       alm  * (lastline, linenumber, ps).
    280   1.1       alm  */
    281  1.40  christos #define	MATCH(a)							\
    282  1.40  christos 	((a)->type == AT_RE ? regexec_e((a)->u.r, ps, 0, 1, psl) :	\
    283  1.40  christos 	    (a)->type == AT_LINE ? linenum == (a)->u.l : lastline())
    284   1.1       alm 
    285   1.1       alm /*
    286  1.40  christos  * Return TRUE if the command applies to the current line.  Sets the start
    287  1.40  christos  * line for process ranges.  Interprets the non-select (``!'') flag.
    288   1.1       alm  */
    289  1.40  christos static __inline int
    290  1.32       wiz applies(struct s_command *cp)
    291   1.1       alm {
    292   1.1       alm 	int r;
    293   1.1       alm 
    294   1.1       alm 	lastaddr = 0;
    295   1.1       alm 	if (cp->a1 == NULL && cp->a2 == NULL)
    296   1.1       alm 		r = 1;
    297  1.40  christos 	else if (cp->a2)
    298  1.40  christos 		if (cp->startline > 0) {
    299   1.1       alm 			if (MATCH(cp->a2)) {
    300  1.40  christos 				cp->startline = 0;
    301   1.1       alm 				lastaddr = 1;
    302  1.40  christos 				r = 1;
    303  1.40  christos 			} else if (linenum - cp->startline <= cp->a2->u.l)
    304  1.40  christos 				r = 1;
    305  1.40  christos 			else if ((cp->a2->type == AT_LINE &&
    306  1.40  christos 				   linenum > cp->a2->u.l) ||
    307  1.40  christos 				   (cp->a2->type == AT_RELLINE &&
    308  1.40  christos 				   linenum - cp->startline > cp->a2->u.l)) {
    309  1.40  christos 				/*
    310  1.40  christos 				 * We missed the 2nd address due to a branch,
    311  1.40  christos 				 * so just close the range and return false.
    312  1.40  christos 				 */
    313  1.40  christos 				cp->startline = 0;
    314  1.40  christos 				r = 0;
    315  1.40  christos 			} else
    316  1.40  christos 				r = 1;
    317  1.36  christos 		} else if (cp->a1 && MATCH(cp->a1)) {
    318   1.1       alm 			/*
    319   1.1       alm 			 * If the second address is a number less than or
    320   1.1       alm 			 * equal to the line number first selected, only
    321   1.1       alm 			 * one line shall be selected.
    322   1.1       alm 			 *	-- POSIX 1003.2
    323  1.40  christos 			 * Likewise if the relative second line address is zero.
    324   1.1       alm 			 */
    325  1.40  christos 			if ((cp->a2->type == AT_LINE &&
    326  1.40  christos 			    linenum >= cp->a2->u.l) ||
    327  1.40  christos 			    (cp->a2->type == AT_RELLINE && cp->a2->u.l == 0))
    328   1.1       alm 				lastaddr = 1;
    329  1.40  christos 			else {
    330  1.40  christos 				cp->startline = linenum;
    331  1.40  christos 			}
    332   1.1       alm 			r = 1;
    333   1.1       alm 		} else
    334   1.1       alm 			r = 0;
    335  1.40  christos 	else
    336   1.1       alm 		r = MATCH(cp->a1);
    337   1.1       alm 	return (cp->nonsel ? ! r : r);
    338   1.1       alm }
    339   1.1       alm 
    340   1.1       alm /*
    341  1.40  christos  * Reset the sed processor to its initial state.
    342  1.40  christos  */
    343  1.40  christos void
    344  1.40  christos resetstate(void)
    345  1.40  christos {
    346  1.40  christos 	struct s_command *cp;
    347  1.40  christos 
    348  1.40  christos 	/*
    349  1.40  christos 	 * Reset all in-range markers.
    350  1.40  christos 	 */
    351  1.40  christos 	for (cp = prog; cp; cp = cp->code == '{' ? cp->u.c : cp->next)
    352  1.40  christos 		if (cp->a2)
    353  1.40  christos 			cp->startline = 0;
    354  1.40  christos 
    355  1.40  christos 	/*
    356  1.40  christos 	 * Clear out the hold space.
    357  1.40  christos 	 */
    358  1.40  christos 	cspace(&HS, "", 0, REPLACE);
    359  1.40  christos }
    360  1.40  christos 
    361  1.40  christos /*
    362   1.1       alm  * substitute --
    363   1.1       alm  *	Do substitutions in the pattern space.  Currently, we build a
    364   1.1       alm  *	copy of the new pattern space in the substitute space structure
    365   1.1       alm  *	and then swap them.
    366   1.1       alm  */
    367   1.1       alm static int
    368  1.32       wiz substitute(struct s_command *cp)
    369   1.1       alm {
    370   1.1       alm 	SPACE tspace;
    371   1.1       alm 	regex_t *re;
    372  1.40  christos 	regoff_t re_off, slen;
    373  1.19       mrg 	int lastempty, n;
    374   1.1       alm 	char *s;
    375   1.1       alm 
    376   1.1       alm 	s = ps;
    377   1.1       alm 	re = cp->u.s->re;
    378   1.1       alm 	if (re == NULL) {
    379  1.40  christos 		if (defpreg != NULL && cp->u.s->maxbref > defpreg->re_nsub) {
    380   1.1       alm 			linenum = cp->u.s->linenum;
    381  1.40  christos 			errx(1, "%lu: %s: \\%u not defined in the RE",
    382  1.40  christos 					linenum, fname, cp->u.s->maxbref);
    383   1.1       alm 		}
    384   1.1       alm 	}
    385   1.8       cgd 	if (!regexec_e(re, s, 0, 0, psl))
    386   1.1       alm 		return (0);
    387   1.1       alm 
    388   1.1       alm 	SS.len = 0;				/* Clean substitute space. */
    389  1.40  christos 	slen = (regoff_t)psl;
    390   1.1       alm 	n = cp->u.s->n;
    391  1.12       cgd 	lastempty = 1;
    392  1.12       cgd 
    393   1.1       alm 	switch (n) {
    394   1.1       alm 	case 0:					/* Global */
    395   1.1       alm 		do {
    396  1.12       cgd 			if (lastempty || match[0].rm_so != match[0].rm_eo) {
    397  1.12       cgd 				/* Locate start of replaced string. */
    398  1.12       cgd 				re_off = match[0].rm_so;
    399  1.12       cgd 				/* Copy leading retained string. */
    400  1.40  christos 				cspace(&SS, s, (size_t)re_off, APPEND);
    401  1.12       cgd 				/* Add in regular expression. */
    402  1.12       cgd 				regsub(&SS, s, cp->u.s->new);
    403  1.12       cgd 			}
    404  1.12       cgd 
    405   1.1       alm 			/* Move past this match. */
    406  1.12       cgd 			if (match[0].rm_so != match[0].rm_eo) {
    407  1.12       cgd 				s += match[0].rm_eo;
    408  1.12       cgd 				slen -= match[0].rm_eo;
    409  1.12       cgd 				lastempty = 0;
    410  1.12       cgd 			} else {
    411  1.40  christos 				if (match[0].rm_so < slen)
    412  1.40  christos 					cspace(&SS, s + match[0].rm_so, 1,
    413  1.40  christos 					    APPEND);
    414  1.12       cgd 				s += match[0].rm_so + 1;
    415  1.12       cgd 				slen -= match[0].rm_so + 1;
    416  1.12       cgd 				lastempty = 1;
    417  1.12       cgd 			}
    418  1.40  christos 		} while (slen >= 0 && regexec_e(re, s, REG_NOTBOL, 0, (size_t)slen));
    419   1.1       alm 		/* Copy trailing retained string. */
    420  1.12       cgd 		if (slen > 0)
    421  1.40  christos 			cspace(&SS, s, (size_t)slen, APPEND);
    422   1.1       alm 		break;
    423   1.1       alm 	default:				/* Nth occurrence */
    424   1.1       alm 		while (--n) {
    425  1.40  christos 			if (match[0].rm_eo == match[0].rm_so)
    426  1.40  christos 				match[0].rm_eo = match[0].rm_so + 1;
    427   1.1       alm 			s += match[0].rm_eo;
    428   1.8       cgd 			slen -= match[0].rm_eo;
    429  1.40  christos 			if (slen < 0)
    430  1.40  christos 				return (0);
    431  1.40  christos 			if (!regexec_e(re, s, REG_NOTBOL, 0, (size_t)slen))
    432   1.1       alm 				return (0);
    433   1.1       alm 		}
    434   1.1       alm 		/* FALLTHROUGH */
    435   1.1       alm 	case 1:					/* 1st occurrence */
    436   1.1       alm 		/* Locate start of replaced string. */
    437   1.1       alm 		re_off = match[0].rm_so + (s - ps);
    438   1.1       alm 		/* Copy leading retained string. */
    439  1.40  christos 		cspace(&SS, ps, (size_t)re_off, APPEND);
    440   1.1       alm 		/* Add in regular expression. */
    441   1.1       alm 		regsub(&SS, s, cp->u.s->new);
    442   1.1       alm 		/* Copy trailing retained string. */
    443   1.1       alm 		s += match[0].rm_eo;
    444   1.8       cgd 		slen -= match[0].rm_eo;
    445  1.40  christos 		cspace(&SS, s, (size_t)slen, APPEND);
    446   1.1       alm 		break;
    447   1.1       alm 	}
    448   1.1       alm 
    449   1.1       alm 	/*
    450   1.1       alm 	 * Swap the substitute space and the pattern space, and make sure
    451   1.1       alm 	 * that any leftover pointers into stdio memory get lost.
    452   1.1       alm 	 */
    453   1.1       alm 	tspace = PS;
    454   1.1       alm 	PS = SS;
    455   1.1       alm 	SS = tspace;
    456   1.1       alm 	SS.space = SS.back;
    457   1.1       alm 
    458   1.1       alm 	/* Handle the 'p' flag. */
    459   1.1       alm 	if (cp->u.s->p)
    460  1.40  christos 		OUT();
    461   1.1       alm 
    462   1.1       alm 	/* Handle the 'w' flag. */
    463   1.1       alm 	if (cp->u.s->wfile && !pd) {
    464   1.1       alm 		if (cp->u.s->wfd == -1 && (cp->u.s->wfd = open(cp->u.s->wfile,
    465   1.1       alm 		    O_WRONLY|O_APPEND|O_CREAT|O_TRUNC, DEFFILEMODE)) == -1)
    466  1.40  christos 			err(1, "%s", cp->u.s->wfile);
    467  1.40  christos 		if (write(cp->u.s->wfd, ps, psl) != (ssize_t)psl ||
    468  1.40  christos 		    write(cp->u.s->wfd, "\n", 1) != 1)
    469  1.40  christos 			err(1, "%s", cp->u.s->wfile);
    470   1.1       alm 	}
    471   1.1       alm 	return (1);
    472   1.1       alm }
    473   1.1       alm 
    474   1.1       alm /*
    475  1.40  christos  * do_tr --
    476  1.40  christos  *	Perform translation ('y' command) in the pattern space.
    477  1.40  christos  */
    478  1.40  christos static void
    479  1.40  christos do_tr(struct s_tr *y)
    480  1.40  christos {
    481  1.40  christos 	SPACE tmp;
    482  1.40  christos 	char c, *p;
    483  1.40  christos 	size_t clen, left;
    484  1.40  christos 	size_t i;
    485  1.40  christos 
    486  1.40  christos 	if (MB_CUR_MAX == 1) {
    487  1.40  christos 		/*
    488  1.40  christos 		 * Single-byte encoding: perform in-place translation
    489  1.40  christos 		 * of the pattern space.
    490  1.40  christos 		 */
    491  1.40  christos 		for (p = ps; p < &ps[psl]; p++)
    492  1.40  christos 			*p = (char)y->bytetab[(u_char)*p];
    493  1.40  christos 	} else {
    494  1.40  christos 		/*
    495  1.40  christos 		 * Multi-byte encoding: perform translation into the
    496  1.40  christos 		 * translation space, then swap the translation and
    497  1.40  christos 		 * pattern spaces.
    498  1.40  christos 		 */
    499  1.40  christos 		/* Clean translation space. */
    500  1.40  christos 		YS.len = 0;
    501  1.40  christos 		for (p = ps, left = psl; left > 0; p += clen, left -= clen) {
    502  1.40  christos 			if ((c = (char)y->bytetab[(u_char)*p]) != '\0') {
    503  1.40  christos 				cspace(&YS, &c, 1, APPEND);
    504  1.40  christos 				clen = 1;
    505  1.40  christos 				continue;
    506  1.40  christos 			}
    507  1.40  christos 			for (i = 0; i < y->nmultis; i++)
    508  1.40  christos 				if (left >= y->multis[i].fromlen &&
    509  1.40  christos 				    memcmp(p, y->multis[i].from,
    510  1.40  christos 				    y->multis[i].fromlen) == 0)
    511  1.40  christos 					break;
    512  1.40  christos 			if (i < y->nmultis) {
    513  1.40  christos 				cspace(&YS, y->multis[i].to,
    514  1.40  christos 				    y->multis[i].tolen, APPEND);
    515  1.40  christos 				clen = y->multis[i].fromlen;
    516  1.40  christos 			} else {
    517  1.40  christos 				cspace(&YS, p, 1, APPEND);
    518  1.40  christos 				clen = 1;
    519  1.40  christos 			}
    520  1.40  christos 		}
    521  1.40  christos 		/* Swap the translation space and the pattern space. */
    522  1.40  christos 		tmp = PS;
    523  1.40  christos 		PS = YS;
    524  1.40  christos 		YS = tmp;
    525  1.40  christos 		YS.space = YS.back;
    526  1.40  christos 	}
    527  1.40  christos }
    528  1.40  christos 
    529  1.40  christos /*
    530   1.1       alm  * Flush append requests.  Always called before reading a line,
    531   1.1       alm  * therefore it also resets the substitution done (sdone) flag.
    532   1.1       alm  */
    533   1.1       alm static void
    534  1.32       wiz flush_appends(void)
    535   1.1       alm {
    536   1.1       alm 	FILE *f;
    537  1.40  christos 	size_t count, i;
    538   1.1       alm 	char buf[8 * 1024];
    539   1.1       alm 
    540  1.40  christos 	for (i = 0; i < appendx; i++)
    541   1.1       alm 		switch (appends[i].type) {
    542   1.1       alm 		case AP_STRING:
    543  1.40  christos 			fwrite(appends[i].s, sizeof(char), appends[i].len,
    544  1.40  christos 			    outfile);
    545   1.1       alm 			break;
    546   1.1       alm 		case AP_FILE:
    547   1.1       alm 			/*
    548   1.1       alm 			 * Read files probably shouldn't be cached.  Since
    549   1.1       alm 			 * it's not an error to read a non-existent file,
    550   1.1       alm 			 * it's possible that another program is interacting
    551  1.40  christos 			 * with the sed script through the filesystem.  It
    552   1.1       alm 			 * would be truly bizarre, but possible.  It's probably
    553   1.1       alm 			 * not that big a performance win, anyhow.
    554   1.1       alm 			 */
    555   1.1       alm 			if ((f = fopen(appends[i].s, "r")) == NULL)
    556   1.1       alm 				break;
    557  1.40  christos 			while ((count = fread(buf, sizeof(char), sizeof(buf), f)))
    558  1.40  christos 				(void)fwrite(buf, sizeof(char), count, outfile);
    559   1.1       alm 			(void)fclose(f);
    560   1.1       alm 			break;
    561   1.1       alm 		}
    562  1.40  christos 	if (ferror(outfile))
    563  1.40  christos 		errx(1, "%s: %s", outfname, strerror(errno ? errno : EIO));
    564  1.40  christos 	appendx = 0;
    565  1.40  christos 	sdone = 0;
    566   1.1       alm }
    567   1.1       alm 
    568   1.1       alm static void
    569  1.40  christos lputs(char *s, size_t len)
    570   1.1       alm {
    571  1.40  christos 	static const char escapes[] = "\\\a\b\f\r\t\v";
    572  1.40  christos 	int c;
    573  1.40  christos 	size_t col, width;
    574  1.40  christos 	const char *p;
    575  1.40  christos #ifdef TIOCGWINSZ
    576   1.1       alm 	struct winsize win;
    577  1.37   gdamore #endif
    578  1.40  christos 	static size_t termwidth = (size_t)-1;
    579  1.40  christos 	size_t clen, i;
    580  1.40  christos 	wchar_t wc;
    581  1.40  christos 	mbstate_t mbs;
    582  1.40  christos 
    583  1.40  christos 	if (outfile != stdout)
    584  1.40  christos 		termwidth = 60;
    585  1.40  christos 	if (termwidth == (size_t)-1) {
    586  1.40  christos 		if ((p = getenv("COLUMNS")) && *p != '\0')
    587  1.40  christos 			termwidth = (size_t)atoi(p);
    588  1.40  christos #ifdef TIOCGWINSZ
    589   1.1       alm 		else if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &win) == 0 &&
    590   1.1       alm 		    win.ws_col > 0)
    591   1.1       alm 			termwidth = win.ws_col;
    592  1.37   gdamore #endif
    593   1.1       alm 		else
    594   1.1       alm 			termwidth = 60;
    595  1.23      ross 	}
    596  1.40  christos 	if (termwidth == 0)
    597  1.40  christos 		termwidth = 1;
    598  1.40  christos 
    599  1.40  christos 	memset(&mbs, 0, sizeof(mbs));
    600  1.40  christos 	col = 0;
    601  1.40  christos 	while (len != 0) {
    602  1.40  christos 		clen = mbrtowc(&wc, s, len, &mbs);
    603  1.40  christos 		if (clen == 0)
    604  1.40  christos 			clen = 1;
    605  1.40  christos 		if (clen == (size_t)-1 || clen == (size_t)-2) {
    606  1.40  christos 			wc = (unsigned char)*s;
    607  1.40  christos 			clen = 1;
    608  1.40  christos 			memset(&mbs, 0, sizeof(mbs));
    609   1.1       alm 		}
    610  1.40  christos 		if (wc == '\n') {
    611  1.40  christos 			if (col + 1 >= termwidth)
    612  1.40  christos 				fprintf(outfile, "\\\n");
    613  1.40  christos 			fputc('$', outfile);
    614  1.40  christos 			fputc('\n', outfile);
    615  1.40  christos 			col = 0;
    616  1.40  christos 		} else if (iswprint(wc)) {
    617  1.40  christos 			width = (size_t)wcwidth(wc);
    618  1.40  christos 			if (col + width >= termwidth) {
    619  1.40  christos 				fprintf(outfile, "\\\n");
    620  1.40  christos 				col = 0;
    621  1.40  christos 			}
    622  1.40  christos 			fwrite(s, 1, clen, outfile);
    623  1.40  christos 			col += width;
    624  1.40  christos 		} else if (wc != L'\0' && (c = wctob(wc)) != EOF &&
    625  1.40  christos 		    (p = strchr(escapes, c)) != NULL) {
    626  1.40  christos 			if (col + 2 >= termwidth) {
    627  1.40  christos 				fprintf(outfile, "\\\n");
    628  1.40  christos 				col = 0;
    629  1.40  christos 			}
    630  1.40  christos 			fprintf(outfile, "\\%c", "\\abfrtv"[p - escapes]);
    631  1.40  christos 			col += 2;
    632   1.1       alm 		} else {
    633  1.40  christos 			if (col + 4 * clen >= termwidth) {
    634  1.40  christos 				fprintf(outfile, "\\\n");
    635  1.40  christos 				col = 0;
    636   1.1       alm 			}
    637  1.40  christos 			for (i = 0; i < clen; i++)
    638  1.40  christos 				fprintf(outfile, "\\%03o",
    639  1.40  christos 				    (int)(unsigned char)s[i]);
    640  1.40  christos 			col += 4 * clen;
    641   1.1       alm 		}
    642  1.40  christos 		s += clen;
    643  1.40  christos 		len -= clen;
    644   1.1       alm 	}
    645  1.40  christos 	if (col + 1 >= termwidth)
    646  1.40  christos 		fprintf(outfile, "\\\n");
    647  1.40  christos 	(void)fputc('$', outfile);
    648  1.40  christos 	(void)fputc('\n', outfile);
    649  1.40  christos 	if (ferror(outfile))
    650  1.40  christos 		errx(1, "%s: %s", outfname, strerror(errno ? errno : EIO));
    651   1.1       alm }
    652   1.1       alm 
    653  1.40  christos static __inline int
    654  1.40  christos regexec_e(regex_t *preg, const char *string, int eflags, int nomatch,
    655  1.40  christos 	size_t slen)
    656   1.1       alm {
    657   1.1       alm 	int eval;
    658  1.40  christos 
    659   1.1       alm 	if (preg == NULL) {
    660   1.1       alm 		if (defpreg == NULL)
    661  1.40  christos 			errx(1, "first RE may not be empty");
    662   1.1       alm 	} else
    663   1.1       alm 		defpreg = preg;
    664   1.1       alm 
    665  1.40  christos 	/* Set anchors */
    666   1.8       cgd 	match[0].rm_so = 0;
    667  1.40  christos 	match[0].rm_eo = (regoff_t)slen;
    668  1.40  christos 
    669   1.1       alm 	eval = regexec(defpreg, string,
    670   1.8       cgd 	    nomatch ? 0 : maxnsub + 1, match, eflags | REG_STARTEND);
    671   1.1       alm 	switch(eval) {
    672   1.1       alm 	case 0:
    673   1.1       alm 		return (1);
    674   1.1       alm 	case REG_NOMATCH:
    675   1.1       alm 		return (0);
    676   1.1       alm 	}
    677  1.40  christos 	errx(1, "RE error: %s", strregerror(eval, defpreg));
    678   1.1       alm 	/* NOTREACHED */
    679   1.1       alm }
    680   1.1       alm 
    681   1.1       alm /*
    682   1.1       alm  * regsub - perform substitutions after a regexp match
    683   1.1       alm  * Based on a routine by Henry Spencer
    684   1.1       alm  */
    685   1.1       alm static void
    686  1.32       wiz regsub(SPACE *sp, char *string, char *src)
    687   1.1       alm {
    688  1.40  christos 	size_t len;
    689  1.40  christos 	int no;
    690  1.20     lukem 	char c, *dst;
    691   1.1       alm 
    692   1.1       alm #define	NEEDSP(reqlen)							\
    693  1.40  christos 	/* XXX What is the +1 for? */					\
    694  1.34    itojun 	if (sp->len + (reqlen) + 1 >= sp->blen) {			\
    695  1.40  christos 		sp->blen += (reqlen) + 1024;				\
    696  1.40  christos 		sp->space = sp->back = xrealloc(sp->back, sp->blen);	\
    697   1.1       alm 		dst = sp->space + sp->len;				\
    698   1.1       alm 	}
    699   1.1       alm 
    700   1.1       alm 	dst = sp->space + sp->len;
    701   1.1       alm 	while ((c = *src++) != '\0') {
    702   1.1       alm 		if (c == '&')
    703   1.1       alm 			no = 0;
    704  1.24  christos 		else if (c == '\\' && isdigit((unsigned char)*src))
    705   1.1       alm 			no = *src++ - '0';
    706   1.1       alm 		else
    707   1.1       alm 			no = -1;
    708   1.1       alm 		if (no < 0) {		/* Ordinary character. */
    709  1.40  christos 			if (c == '\\' && (*src == '\\' || *src == '&'))
    710  1.40  christos 				c = *src++;
    711   1.1       alm 			NEEDSP(1);
    712  1.40  christos 			*dst++ = c;
    713   1.1       alm 			++sp->len;
    714  1.40  christos 		} else if (match[no].rm_so != -1 && match[no].rm_eo != -1) {
    715  1.40  christos 			len = (size_t)(match[no].rm_eo - match[no].rm_so);
    716   1.1       alm 			NEEDSP(len);
    717   1.1       alm 			memmove(dst, string + match[no].rm_so, len);
    718   1.1       alm 			dst += len;
    719   1.1       alm 			sp->len += len;
    720   1.1       alm 		}
    721   1.1       alm 	}
    722   1.1       alm 	NEEDSP(1);
    723   1.1       alm 	*dst = '\0';
    724   1.1       alm }
    725   1.1       alm 
    726   1.1       alm /*
    727  1.40  christos  * cspace --
    728  1.40  christos  *	Concatenate space: append the source space to the destination space,
    729  1.40  christos  *	allocating new space as necessary.
    730   1.1       alm  */
    731   1.1       alm void
    732  1.38     lukem cspace(SPACE *sp, const char *p, size_t len, enum e_spflag spflag)
    733   1.1       alm {
    734   1.1       alm 	size_t tlen;
    735   1.1       alm 
    736   1.8       cgd 	/* Make sure SPACE has enough memory and ramp up quickly. */
    737   1.8       cgd 	tlen = sp->len + len + 1;
    738   1.1       alm 	if (tlen > sp->blen) {
    739  1.40  christos 		sp->blen = tlen + 1024;
    740  1.40  christos 		sp->space = sp->back = xrealloc(sp->back, sp->blen);
    741   1.1       alm 	}
    742   1.1       alm 
    743   1.8       cgd 	if (spflag == REPLACE)
    744   1.1       alm 		sp->len = 0;
    745   1.1       alm 
    746   1.1       alm 	memmove(sp->space + sp->len, p, len);
    747   1.8       cgd 
    748   1.1       alm 	sp->space[sp->len += len] = '\0';
    749   1.1       alm }
    750   1.1       alm 
    751   1.1       alm /*
    752   1.1       alm  * Close all cached opened files and report any errors
    753   1.1       alm  */
    754   1.1       alm void
    755  1.32       wiz cfclose(struct s_command *cp, struct s_command *end)
    756   1.1       alm {
    757   1.1       alm 
    758   1.1       alm 	for (; cp != end; cp = cp->next)
    759   1.1       alm 		switch(cp->code) {
    760   1.1       alm 		case 's':
    761   1.1       alm 			if (cp->u.s->wfd != -1 && close(cp->u.s->wfd))
    762  1.40  christos 				err(1, "%s", cp->u.s->wfile);
    763   1.1       alm 			cp->u.s->wfd = -1;
    764   1.1       alm 			break;
    765   1.1       alm 		case 'w':
    766   1.1       alm 			if (cp->u.fd != -1 && close(cp->u.fd))
    767  1.40  christos 				err(1, "%s", cp->t);
    768   1.1       alm 			cp->u.fd = -1;
    769   1.1       alm 			break;
    770   1.1       alm 		case '{':
    771   1.1       alm 			cfclose(cp->u.c, cp->next);
    772   1.1       alm 			break;
    773   1.1       alm 		}
    774   1.1       alm }
    775