xref: /freebsd/usr.bin/sed/main.c (revision 0552fdc62caf034397ffd5b07dfbad853aef5aa8)
19b50d902SRodney W. Grimes /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
41a2a4fc8SPedro F. Giffuni  * Copyright (c) 2013 Johann 'Myrkraverk' Oskarsson.
59b50d902SRodney W. Grimes  * Copyright (c) 1992 Diomidis Spinellis.
69b50d902SRodney W. Grimes  * Copyright (c) 1992, 1993
79b50d902SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
89b50d902SRodney W. Grimes  *
99b50d902SRodney W. Grimes  * This code is derived from software contributed to Berkeley by
109b50d902SRodney W. Grimes  * Diomidis Spinellis of Imperial College, University of London.
119b50d902SRodney W. Grimes  *
129b50d902SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
139b50d902SRodney W. Grimes  * modification, are permitted provided that the following conditions
149b50d902SRodney W. Grimes  * are met:
159b50d902SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
169b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
179b50d902SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
189b50d902SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
199b50d902SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
20fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
219b50d902SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
229b50d902SRodney W. Grimes  *    without specific prior written permission.
239b50d902SRodney W. Grimes  *
249b50d902SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
259b50d902SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
269b50d902SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
279b50d902SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
289b50d902SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
299b50d902SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
309b50d902SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
319b50d902SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
329b50d902SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
339b50d902SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
349b50d902SRodney W. Grimes  * SUCH DAMAGE.
359b50d902SRodney W. Grimes  */
369b50d902SRodney W. Grimes 
378701af62SMaxim Sobolev #include <sys/types.h>
388701af62SMaxim Sobolev #include <sys/mman.h>
39839af0c1SJuli Mallett #include <sys/param.h>
40839af0c1SJuli Mallett #include <sys/stat.h>
419b50d902SRodney W. Grimes 
4273a08bb2SPhilippe Charnier #include <err.h>
439b50d902SRodney W. Grimes #include <errno.h>
44821df508SXin LI #include <fcntl.h>
45a3eb24c6SStefan Farfeleder #include <libgen.h>
4681a8648aSTim J. Robbins #include <limits.h>
47726aebe5SAndrey A. Chernov #include <locale.h>
489b50d902SRodney W. Grimes #include <regex.h>
49821df508SXin LI #include <stddef.h>
509b50d902SRodney W. Grimes #include <stdio.h>
519b50d902SRodney W. Grimes #include <stdlib.h>
529b50d902SRodney W. Grimes #include <string.h>
539b50d902SRodney W. Grimes #include <unistd.h>
549b50d902SRodney W. Grimes 
559b50d902SRodney W. Grimes #include "defs.h"
569b50d902SRodney W. Grimes #include "extern.h"
579b50d902SRodney W. Grimes 
589b50d902SRodney W. Grimes /*
599b50d902SRodney W. Grimes  * Linked list of units (strings and files) to be compiled
609b50d902SRodney W. Grimes  */
619b50d902SRodney W. Grimes struct s_compunit {
629b50d902SRodney W. Grimes 	struct s_compunit *next;
639b50d902SRodney W. Grimes 	enum e_cut {CU_FILE, CU_STRING} type;
64249a8a80SPedro F. Giffuni 	char *s;			/* Pointer to string or fname */
659b50d902SRodney W. Grimes };
669b50d902SRodney W. Grimes 
679b50d902SRodney W. Grimes /*
689b50d902SRodney W. Grimes  * Linked list pointer to compilation units and pointer to current
699b50d902SRodney W. Grimes  * next pointer.
709b50d902SRodney W. Grimes  */
719b50d902SRodney W. Grimes static struct s_compunit *script, **cu_nextp = &script;
729b50d902SRodney W. Grimes 
739b50d902SRodney W. Grimes /*
749b50d902SRodney W. Grimes  * Linked list of files to be processed
759b50d902SRodney W. Grimes  */
769b50d902SRodney W. Grimes struct s_flist {
77249a8a80SPedro F. Giffuni 	char *fname;
789b50d902SRodney W. Grimes 	struct s_flist *next;
799b50d902SRodney W. Grimes };
809b50d902SRodney W. Grimes 
819b50d902SRodney W. Grimes /*
829b50d902SRodney W. Grimes  * Linked list pointer to files and pointer to current
839b50d902SRodney W. Grimes  * next pointer.
849b50d902SRodney W. Grimes  */
859b50d902SRodney W. Grimes static struct s_flist *files, **fl_nextp = &files;
869b50d902SRodney W. Grimes 
87f54cda14SDag-Erling Smørgrav FILE *infile;			/* Current input file */
88f54cda14SDag-Erling Smørgrav FILE *outfile;			/* Current output file */
898523e9a6STim J. Robbins 
909b50d902SRodney W. Grimes int aflag, eflag, nflag;
91175de1e6SBrian Feldman int rflags = 0;
92b4805026SMark Johnston int quit = 0;
933af4dcb2STim J. Robbins static int rval;		/* Exit status */
949b50d902SRodney W. Grimes 
95f6703c9cSYaroslav Tykhiy static int ispan;		/* Whether inplace editing spans across files */
96f6703c9cSYaroslav Tykhiy 
979b50d902SRodney W. Grimes /*
989b50d902SRodney W. Grimes  * Current file and line number; line numbers restart across compilation
99f6703c9cSYaroslav Tykhiy  * units, but span across input files.  The latter is optional if editing
100f6703c9cSYaroslav Tykhiy  * in place.
1019b50d902SRodney W. Grimes  */
102e74bf75fSMark Murray const char *fname;		/* File name. */
103f54cda14SDag-Erling Smørgrav const char *outfname;		/* Output file name */
104f54cda14SDag-Erling Smørgrav static char oldfname[PATH_MAX];	/* Old file name (for in-place editing) */
105f54cda14SDag-Erling Smørgrav static char tmpfname[PATH_MAX];	/* Temporary file name (for in-place editing) */
106b4805026SMark Johnston const char *inplace;		/* Inplace edit file extension. */
1079b50d902SRodney W. Grimes u_long linenum;
1089b50d902SRodney W. Grimes 
109249a8a80SPedro F. Giffuni static void add_compunit(enum e_cut, char *);
110249a8a80SPedro F. Giffuni static void add_file(char *);
111cccdaf50SAlfonso Gregory static void usage(void) __dead2;
1129b50d902SRodney W. Grimes 
1139b50d902SRodney W. Grimes int
main(int argc,char * argv[])114e6478125SDag-Erling Smørgrav main(int argc, char *argv[])
1159b50d902SRodney W. Grimes {
116f9ab72bbSMateusz Piotrowski 	int c, fflag, fflagstdin;
117249a8a80SPedro F. Giffuni 	char *temp_arg;
1189b50d902SRodney W. Grimes 
119726aebe5SAndrey A. Chernov 	(void) setlocale(LC_ALL, "");
120726aebe5SAndrey A. Chernov 
1219b50d902SRodney W. Grimes 	fflag = 0;
122f9ab72bbSMateusz Piotrowski 	fflagstdin = 0;
123839af0c1SJuli Mallett 	inplace = NULL;
124839af0c1SJuli Mallett 
125fc39ce9eSPedro F. Giffuni 	while ((c = getopt(argc, argv, "EI:ae:f:i:lnru")) != -1)
1269b50d902SRodney W. Grimes 		switch (c) {
127701d73b6SWarner Losh 		case 'r':		/* Gnu sed compat */
128175de1e6SBrian Feldman 		case 'E':
129175de1e6SBrian Feldman 			rflags = REG_EXTENDED;
130175de1e6SBrian Feldman 			break;
131f6703c9cSYaroslav Tykhiy 		case 'I':
132f6703c9cSYaroslav Tykhiy 			inplace = optarg;
133f6703c9cSYaroslav Tykhiy 			ispan = 1;	/* span across input files */
134f6703c9cSYaroslav Tykhiy 			break;
1359b50d902SRodney W. Grimes 		case 'a':
1369b50d902SRodney W. Grimes 			aflag = 1;
1379b50d902SRodney W. Grimes 			break;
1389b50d902SRodney W. Grimes 		case 'e':
1399b50d902SRodney W. Grimes 			eflag = 1;
140*0552fdc6SMartin Cracauer 			if (asprintf(&temp_arg, "%s\n", optarg) == -1)
141*0552fdc6SMartin Cracauer 				err(1, "asprintf");
142637a1a74SEnji Cooper 			add_compunit(CU_STRING, temp_arg);
1439b50d902SRodney W. Grimes 			break;
1449b50d902SRodney W. Grimes 		case 'f':
1459b50d902SRodney W. Grimes 			fflag = 1;
146f9ab72bbSMateusz Piotrowski 			if (strcmp(optarg, "-") == 0)
147f9ab72bbSMateusz Piotrowski 				fflagstdin = 1;
1489b50d902SRodney W. Grimes 			add_compunit(CU_FILE, optarg);
1499b50d902SRodney W. Grimes 			break;
150839af0c1SJuli Mallett 		case 'i':
151839af0c1SJuli Mallett 			inplace = optarg;
152f6703c9cSYaroslav Tykhiy 			ispan = 0;	/* don't span across input files */
153839af0c1SJuli Mallett 			break;
1541ed86f6cSGleb Smirnoff 		case 'l':
15590d81f30SPedro F. Giffuni 			if(setvbuf(stdout, NULL, _IOLBF, 0) != 0)
15690d81f30SPedro F. Giffuni 				warnx("setting line buffered output failed");
1571ed86f6cSGleb Smirnoff 			break;
1589b50d902SRodney W. Grimes 		case 'n':
1599b50d902SRodney W. Grimes 			nflag = 1;
1609b50d902SRodney W. Grimes 			break;
161fc39ce9eSPedro F. Giffuni 		case 'u':
16290d81f30SPedro F. Giffuni 			if(setvbuf(stdout, NULL, _IONBF, 0) != 0)
163fc39ce9eSPedro F. Giffuni 				warnx("setting unbuffered output failed");
164fc39ce9eSPedro F. Giffuni 			break;
1659b50d902SRodney W. Grimes 		default:
1669b50d902SRodney W. Grimes 		case '?':
16773a08bb2SPhilippe Charnier 			usage();
1689b50d902SRodney W. Grimes 		}
1699b50d902SRodney W. Grimes 	argc -= optind;
1709b50d902SRodney W. Grimes 	argv += optind;
1719b50d902SRodney W. Grimes 
1729b50d902SRodney W. Grimes 	/* First usage case; script is the first arg */
1739b50d902SRodney W. Grimes 	if (!eflag && !fflag && *argv) {
174*0552fdc6SMartin Cracauer 		if (asprintf(&temp_arg, "%s\n", *argv) == -1)
175*0552fdc6SMartin Cracauer 			err(1, "asprintf");
176*0552fdc6SMartin Cracauer 		add_compunit(CU_STRING, temp_arg);
1779b50d902SRodney W. Grimes 		argv++;
1789b50d902SRodney W. Grimes 	}
1799b50d902SRodney W. Grimes 
1809b50d902SRodney W. Grimes 	compile();
1819b50d902SRodney W. Grimes 
1829b50d902SRodney W. Grimes 	/* Continue with first and start second usage */
1839b50d902SRodney W. Grimes 	if (*argv)
1849b50d902SRodney W. Grimes 		for (; *argv; argv++)
1859b50d902SRodney W. Grimes 			add_file(*argv);
186f9ab72bbSMateusz Piotrowski 	else if (fflagstdin)
187f9ab72bbSMateusz Piotrowski 		exit(rval);
1889b50d902SRodney W. Grimes 	else
1899b50d902SRodney W. Grimes 		add_file(NULL);
1909b50d902SRodney W. Grimes 	process();
1919b50d902SRodney W. Grimes 	cfclose(prog, NULL);
1929b50d902SRodney W. Grimes 	if (fclose(stdout))
19373a08bb2SPhilippe Charnier 		err(1, "stdout");
1943af4dcb2STim J. Robbins 	exit(rval);
1959b50d902SRodney W. Grimes }
1969b50d902SRodney W. Grimes 
19773a08bb2SPhilippe Charnier static void
usage(void)198e6478125SDag-Erling Smørgrav usage(void)
19973a08bb2SPhilippe Charnier {
200fc39ce9eSPedro F. Giffuni 	(void)fprintf(stderr,
201f2431000SPedro F. Giffuni 	    "usage: %s script [-Ealnru] [-i extension] [file ...]\n"
2029b788a2eSPedro F. Giffuni 	    "\t%s [-Ealnu] [-i extension] [-e script] ... [-f script_file]"
203fc39ce9eSPedro F. Giffuni 	    " ... [file ...]\n", getprogname(), getprogname());
20473a08bb2SPhilippe Charnier 	exit(1);
20573a08bb2SPhilippe Charnier }
20673a08bb2SPhilippe Charnier 
2079b50d902SRodney W. Grimes /*
2089b50d902SRodney W. Grimes  * Like fgets, but go through the chain of compilation units chaining them
2099b50d902SRodney W. Grimes  * together.  Empty strings and files are ignored.
2109b50d902SRodney W. Grimes  */
211249a8a80SPedro F. Giffuni char *
cu_fgets(char * buf,int n,int * more)212249a8a80SPedro F. Giffuni cu_fgets(char *buf, int n, int *more)
2139b50d902SRodney W. Grimes {
2149b50d902SRodney W. Grimes 	static enum {ST_EOF, ST_FILE, ST_STRING} state = ST_EOF;
2159b50d902SRodney W. Grimes 	static FILE *f;		/* Current open file */
216249a8a80SPedro F. Giffuni 	static char *s;		/* Current pointer inside string */
217249a8a80SPedro F. Giffuni 	static char string_ident[30];
2189b50d902SRodney W. Grimes 	char *p;
2199b50d902SRodney W. Grimes 
2209b50d902SRodney W. Grimes again:
2219b50d902SRodney W. Grimes 	switch (state) {
2229b50d902SRodney W. Grimes 	case ST_EOF:
223c56690efSArchie Cobbs 		if (script == NULL) {
224c56690efSArchie Cobbs 			if (more != NULL)
225c56690efSArchie Cobbs 				*more = 0;
2269b50d902SRodney W. Grimes 			return (NULL);
227c56690efSArchie Cobbs 		}
2289b50d902SRodney W. Grimes 		linenum = 0;
2299b50d902SRodney W. Grimes 		switch (script->type) {
2309b50d902SRodney W. Grimes 		case CU_FILE:
231f9ab72bbSMateusz Piotrowski 			if (strcmp(script->s, "-") == 0) {
232f9ab72bbSMateusz Piotrowski 				f = stdin;
233f9ab72bbSMateusz Piotrowski 				fname = "stdin";
234f9ab72bbSMateusz Piotrowski 			} else {
2359b50d902SRodney W. Grimes 				if ((f = fopen(script->s, "r")) == NULL)
23673a08bb2SPhilippe Charnier 				        err(1, "%s", script->s);
2379b50d902SRodney W. Grimes 				fname = script->s;
238f9ab72bbSMateusz Piotrowski 			}
2399b50d902SRodney W. Grimes 			state = ST_FILE;
2409b50d902SRodney W. Grimes 			goto again;
2419b50d902SRodney W. Grimes 		case CU_STRING:
242d3e5e11cSDavid Malone 			if (((size_t)snprintf(string_ident,
2439b50d902SRodney W. Grimes 			    sizeof(string_ident), "\"%s\"", script->s)) >=
2449b50d902SRodney W. Grimes 			    sizeof(string_ident) - 1)
2459b50d902SRodney W. Grimes 				(void)strcpy(string_ident +
2469b50d902SRodney W. Grimes 				    sizeof(string_ident) - 6, " ...\"");
2479b50d902SRodney W. Grimes 			fname = string_ident;
2489b50d902SRodney W. Grimes 			s = script->s;
2499b50d902SRodney W. Grimes 			state = ST_STRING;
2509b50d902SRodney W. Grimes 			goto again;
25151a8f735SPedro F. Giffuni 		default:
25251a8f735SPedro F. Giffuni 			__unreachable();
2539b50d902SRodney W. Grimes 		}
2549b50d902SRodney W. Grimes 	case ST_FILE:
255249a8a80SPedro F. Giffuni 		if ((p = fgets(buf, n, f)) != NULL) {
2569b50d902SRodney W. Grimes 			linenum++;
257249a8a80SPedro F. Giffuni 			if (linenum == 1 && buf[0] == '#' && buf[1] == 'n')
2589b50d902SRodney W. Grimes 				nflag = 1;
259c56690efSArchie Cobbs 			if (more != NULL)
260c56690efSArchie Cobbs 				*more = !feof(f);
261249a8a80SPedro F. Giffuni 			return (p);
262249a8a80SPedro F. Giffuni 		}
2639b50d902SRodney W. Grimes 		script = script->next;
2649b50d902SRodney W. Grimes 		(void)fclose(f);
2659b50d902SRodney W. Grimes 		state = ST_EOF;
2669b50d902SRodney W. Grimes 		goto again;
2679b50d902SRodney W. Grimes 	case ST_STRING:
2689b50d902SRodney W. Grimes 		if (linenum == 0 && s[0] == '#' && s[1] == 'n')
2699b50d902SRodney W. Grimes 			nflag = 1;
270249a8a80SPedro F. Giffuni 		p = buf;
271b4932d18SPedro F. Giffuni 		for (;;) {
272249a8a80SPedro F. Giffuni 			if (n-- <= 1) {
273249a8a80SPedro F. Giffuni 				*p = '\0';
274249a8a80SPedro F. Giffuni 				linenum++;
275249a8a80SPedro F. Giffuni 				if (more != NULL)
276249a8a80SPedro F. Giffuni 					*more = 1;
277249a8a80SPedro F. Giffuni 				return (buf);
278249a8a80SPedro F. Giffuni 			}
2799b50d902SRodney W. Grimes 			switch (*s) {
2809b50d902SRodney W. Grimes 			case '\0':
2819b50d902SRodney W. Grimes 				state = ST_EOF;
282249a8a80SPedro F. Giffuni 				if (s == script->s) {
2839b50d902SRodney W. Grimes 					script = script->next;
284249a8a80SPedro F. Giffuni 					goto again;
285249a8a80SPedro F. Giffuni 				} else {
286249a8a80SPedro F. Giffuni 					script = script->next;
287249a8a80SPedro F. Giffuni 					*p = '\0';
288249a8a80SPedro F. Giffuni 					linenum++;
289249a8a80SPedro F. Giffuni 					if (more != NULL)
290249a8a80SPedro F. Giffuni 						*more = 0;
291249a8a80SPedro F. Giffuni 					return (buf);
292249a8a80SPedro F. Giffuni 				}
2939b50d902SRodney W. Grimes 			case '\n':
294249a8a80SPedro F. Giffuni 				*p++ = '\n';
295249a8a80SPedro F. Giffuni 				*p = '\0';
2969b50d902SRodney W. Grimes 				s++;
2979b50d902SRodney W. Grimes 				linenum++;
298c56690efSArchie Cobbs 				if (more != NULL)
299c56690efSArchie Cobbs 					*more = 0;
300249a8a80SPedro F. Giffuni 				return (buf);
3019b50d902SRodney W. Grimes 			default:
302249a8a80SPedro F. Giffuni 				*p++ = *s++;
3039b50d902SRodney W. Grimes 			}
3049b50d902SRodney W. Grimes 		}
3059b50d902SRodney W. Grimes 	}
3069b50d902SRodney W. Grimes 	/* NOTREACHED */
30773a08bb2SPhilippe Charnier 	return (NULL);
3089b50d902SRodney W. Grimes }
3099b50d902SRodney W. Grimes 
3109b50d902SRodney W. Grimes /*
3119b50d902SRodney W. Grimes  * Like fgets, but go through the list of files chaining them together.
3129b50d902SRodney W. Grimes  * Set len to the length of the line.
3139b50d902SRodney W. Grimes  */
3149b50d902SRodney W. Grimes int
mf_fgets(SPACE * sp,enum e_spflag spflag)315e6478125SDag-Erling Smørgrav mf_fgets(SPACE *sp, enum e_spflag spflag)
3169b50d902SRodney W. Grimes {
317f54cda14SDag-Erling Smørgrav 	struct stat sb;
3181a2a4fc8SPedro F. Giffuni 	ssize_t len;
3196718ba18SEd Schouten 	char *dirbuf, *basebuf;
3201a2a4fc8SPedro F. Giffuni 	static char *p = NULL;
3211a2a4fc8SPedro F. Giffuni 	static size_t plen = 0;
3225f4cf81eSWolfram Schneider 	int c;
3238701af62SMaxim Sobolev 	static int firstfile;
3249b50d902SRodney W. Grimes 
325f54cda14SDag-Erling Smørgrav 	if (infile == NULL) {
3268701af62SMaxim Sobolev 		/* stdin? */
3279b50d902SRodney W. Grimes 		if (files->fname == NULL) {
328839af0c1SJuli Mallett 			if (inplace != NULL)
329f6703c9cSYaroslav Tykhiy 				errx(1, "-I or -i may not be used with stdin");
330f54cda14SDag-Erling Smørgrav 			infile = stdin;
3319b50d902SRodney W. Grimes 			fname = "stdin";
332f54cda14SDag-Erling Smørgrav 			outfile = stdout;
333f54cda14SDag-Erling Smørgrav 			outfname = "stdout";
3348701af62SMaxim Sobolev 		}
3358701af62SMaxim Sobolev 		firstfile = 1;
3368701af62SMaxim Sobolev 	}
3378701af62SMaxim Sobolev 
3388701af62SMaxim Sobolev 	for (;;) {
339b4805026SMark Johnston 		if (infile != NULL && (c = getc(infile)) != EOF && !quit) {
340f54cda14SDag-Erling Smørgrav 			(void)ungetc(c, infile);
3418701af62SMaxim Sobolev 			break;
3428701af62SMaxim Sobolev 		}
3438701af62SMaxim Sobolev 		/* If we are here then either eof or no files are open yet */
344f54cda14SDag-Erling Smørgrav 		if (infile == stdin) {
345254fac85STim J. Robbins 			sp->len = 0;
3468701af62SMaxim Sobolev 			return (0);
3478701af62SMaxim Sobolev 		}
348f54cda14SDag-Erling Smørgrav 		if (infile != NULL) {
349f54cda14SDag-Erling Smørgrav 			fclose(infile);
3507bbdbe14SBrian Somers 			if (*oldfname != '\0') {
351919e14f0SJilles Tjoelker 				/* if there was a backup file, remove it */
352919e14f0SJilles Tjoelker 				unlink(oldfname);
353919e14f0SJilles Tjoelker 				/*
354919e14f0SJilles Tjoelker 				 * Backup the original.  Note that hard links
355919e14f0SJilles Tjoelker 				 * are not supported on all filesystems.
356919e14f0SJilles Tjoelker 				 */
357919e14f0SJilles Tjoelker 				if ((link(fname, oldfname) != 0) &&
358919e14f0SJilles Tjoelker 				   (rename(fname, oldfname) != 0)) {
359f54cda14SDag-Erling Smørgrav 					warn("rename()");
360919e14f0SJilles Tjoelker 					if (*tmpfname)
361f54cda14SDag-Erling Smørgrav 						unlink(tmpfname);
362f54cda14SDag-Erling Smørgrav 					exit(1);
3638701af62SMaxim Sobolev 				}
3647bbdbe14SBrian Somers 				*oldfname = '\0';
3657bbdbe14SBrian Somers 			}
3667bbdbe14SBrian Somers 			if (*tmpfname != '\0') {
3677bbdbe14SBrian Somers 				if (outfile != NULL && outfile != stdout)
368919e14f0SJilles Tjoelker 					if (fclose(outfile) != 0) {
369919e14f0SJilles Tjoelker 						warn("fclose()");
370919e14f0SJilles Tjoelker 						unlink(tmpfname);
371919e14f0SJilles Tjoelker 						exit(1);
372919e14f0SJilles Tjoelker 					}
3737bbdbe14SBrian Somers 				outfile = NULL;
374919e14f0SJilles Tjoelker 				if (rename(tmpfname, fname) != 0) {
375919e14f0SJilles Tjoelker 					/* this should not happen really! */
376919e14f0SJilles Tjoelker 					warn("rename()");
377919e14f0SJilles Tjoelker 					unlink(tmpfname);
378919e14f0SJilles Tjoelker 					exit(1);
379919e14f0SJilles Tjoelker 				}
3807bbdbe14SBrian Somers 				*tmpfname = '\0';
3817bbdbe14SBrian Somers 			}
382f54cda14SDag-Erling Smørgrav 			outfname = NULL;
383f54cda14SDag-Erling Smørgrav 		}
384f54cda14SDag-Erling Smørgrav 		if (firstfile == 0)
3858701af62SMaxim Sobolev 			files = files->next;
386f54cda14SDag-Erling Smørgrav 		else
3878701af62SMaxim Sobolev 			firstfile = 0;
3888701af62SMaxim Sobolev 		if (files == NULL) {
389254fac85STim J. Robbins 			sp->len = 0;
3908701af62SMaxim Sobolev 			return (0);
3918701af62SMaxim Sobolev 		}
3929b50d902SRodney W. Grimes 		fname = files->fname;
393f54cda14SDag-Erling Smørgrav 		if (inplace != NULL) {
394f54cda14SDag-Erling Smørgrav 			if (lstat(fname, &sb) != 0)
395f54cda14SDag-Erling Smørgrav 				err(1, "%s", fname);
3968e2106f0SXin LI 			if (!S_ISREG(sb.st_mode))
397f54cda14SDag-Erling Smørgrav 				errx(1, "%s: %s %s", fname,
398f54cda14SDag-Erling Smørgrav 				    "in-place editing only",
399f54cda14SDag-Erling Smørgrav 				    "works for regular files");
400f54cda14SDag-Erling Smørgrav 			if (*inplace != '\0') {
401f54cda14SDag-Erling Smørgrav 				strlcpy(oldfname, fname,
402f54cda14SDag-Erling Smørgrav 				    sizeof(oldfname));
403f54cda14SDag-Erling Smørgrav 				len = strlcat(oldfname, inplace,
404f54cda14SDag-Erling Smørgrav 				    sizeof(oldfname));
405249a8a80SPedro F. Giffuni 				if (len > (ssize_t)sizeof(oldfname))
406f54cda14SDag-Erling Smørgrav 					errx(1, "%s: name too long", fname);
407f54cda14SDag-Erling Smørgrav 			}
4086718ba18SEd Schouten 			if ((dirbuf = strdup(fname)) == NULL ||
4096718ba18SEd Schouten 			    (basebuf = strdup(fname)) == NULL)
4106718ba18SEd Schouten 				err(1, "strdup");
411f54cda14SDag-Erling Smørgrav 			len = snprintf(tmpfname, sizeof(tmpfname),
4126718ba18SEd Schouten 			    "%s/.!%ld!%s", dirname(dirbuf), (long)getpid(),
4136718ba18SEd Schouten 			    basename(basebuf));
4146718ba18SEd Schouten 			free(dirbuf);
4156718ba18SEd Schouten 			free(basebuf);
416249a8a80SPedro F. Giffuni 			if (len >= (ssize_t)sizeof(tmpfname))
417f54cda14SDag-Erling Smørgrav 				errx(1, "%s: name too long", fname);
418f54cda14SDag-Erling Smørgrav 			unlink(tmpfname);
419fc04dce0SPedro F. Giffuni 			if (outfile != NULL && outfile != stdout)
420fc04dce0SPedro F. Giffuni 				fclose(outfile);
42176c76d54SPedro F. Giffuni 			if ((outfile = fopen(tmpfname, "w")) == NULL)
42276c76d54SPedro F. Giffuni 				err(1, "%s", fname);
423f54cda14SDag-Erling Smørgrav 			fchown(fileno(outfile), sb.st_uid, sb.st_gid);
424f54cda14SDag-Erling Smørgrav 			fchmod(fileno(outfile), sb.st_mode & ALLPERMS);
425f54cda14SDag-Erling Smørgrav 			outfname = tmpfname;
426f6703c9cSYaroslav Tykhiy 			if (!ispan) {
427f6703c9cSYaroslav Tykhiy 				linenum = 0;
42826a5710cSYaroslav Tykhiy 				resetstate();
429f6703c9cSYaroslav Tykhiy 			}
430f54cda14SDag-Erling Smørgrav 		} else {
431f54cda14SDag-Erling Smørgrav 			outfile = stdout;
432f54cda14SDag-Erling Smørgrav 			outfname = "stdout";
433f54cda14SDag-Erling Smørgrav 		}
434f54cda14SDag-Erling Smørgrav 		if ((infile = fopen(fname, "r")) == NULL) {
4353af4dcb2STim J. Robbins 			warn("%s", fname);
4366689fb2bSTim J. Robbins 			rval = 1;
4373af4dcb2STim J. Robbins 			continue;
4383af4dcb2STim J. Robbins 		}
4399b50d902SRodney W. Grimes 	}
4409b50d902SRodney W. Grimes 	/*
441f54cda14SDag-Erling Smørgrav 	 * We are here only when infile is open and we still have something
4428523e9a6STim J. Robbins 	 * to read from it.
4438701af62SMaxim Sobolev 	 *
4441a2a4fc8SPedro F. Giffuni 	 * Use getline() so that we can handle essentially infinite input
4451a2a4fc8SPedro F. Giffuni 	 * data.  The p and plen are static so each invocation gives
4461a2a4fc8SPedro F. Giffuni 	 * getline() the same buffer which is expanded as needed.
4479b50d902SRodney W. Grimes 	 */
4481a2a4fc8SPedro F. Giffuni 	len = getline(&p, &plen, infile);
4491a2a4fc8SPedro F. Giffuni 	if (len == -1)
4501a2a4fc8SPedro F. Giffuni 		err(1, "%s", fname);
45196d68291SJean-Sébastien Pédron 	if (len != 0 && p[len - 1] == '\n') {
45296d68291SJean-Sébastien Pédron 		sp->append_newline = 1;
453ed92199dSTim J. Robbins 		len--;
45496d68291SJean-Sébastien Pédron 	} else if (!lastline()) {
45596d68291SJean-Sébastien Pédron 		sp->append_newline = 1;
45696d68291SJean-Sébastien Pédron 	} else {
45796d68291SJean-Sébastien Pédron 		sp->append_newline = 0;
45896d68291SJean-Sébastien Pédron 	}
4599b50d902SRodney W. Grimes 	cspace(sp, p, len, spflag);
4609b50d902SRodney W. Grimes 
4619b50d902SRodney W. Grimes 	linenum++;
4628701af62SMaxim Sobolev 
4639b50d902SRodney W. Grimes 	return (1);
4649b50d902SRodney W. Grimes }
4659b50d902SRodney W. Grimes 
4669b50d902SRodney W. Grimes /*
4679b50d902SRodney W. Grimes  * Add a compilation unit to the linked list
4689b50d902SRodney W. Grimes  */
4699b50d902SRodney W. Grimes static void
add_compunit(enum e_cut type,char * s)470249a8a80SPedro F. Giffuni add_compunit(enum e_cut type, char *s)
4719b50d902SRodney W. Grimes {
4729b50d902SRodney W. Grimes 	struct s_compunit *cu;
4739b50d902SRodney W. Grimes 
4748e33c0a0SDavid E. O'Brien 	if ((cu = malloc(sizeof(struct s_compunit))) == NULL)
4758e33c0a0SDavid E. O'Brien 		err(1, "malloc");
4769b50d902SRodney W. Grimes 	cu->type = type;
4779b50d902SRodney W. Grimes 	cu->s = s;
4789b50d902SRodney W. Grimes 	cu->next = NULL;
4799b50d902SRodney W. Grimes 	*cu_nextp = cu;
4809b50d902SRodney W. Grimes 	cu_nextp = &cu->next;
4819b50d902SRodney W. Grimes }
4829b50d902SRodney W. Grimes 
4839b50d902SRodney W. Grimes /*
4849b50d902SRodney W. Grimes  * Add a file to the linked list
4859b50d902SRodney W. Grimes  */
4869b50d902SRodney W. Grimes static void
add_file(char * s)487249a8a80SPedro F. Giffuni add_file(char *s)
4889b50d902SRodney W. Grimes {
4899b50d902SRodney W. Grimes 	struct s_flist *fp;
4909b50d902SRodney W. Grimes 
4918e33c0a0SDavid E. O'Brien 	if ((fp = malloc(sizeof(struct s_flist))) == NULL)
4928e33c0a0SDavid E. O'Brien 		err(1, "malloc");
4939b50d902SRodney W. Grimes 	fp->next = NULL;
4949b50d902SRodney W. Grimes 	*fl_nextp = fp;
4959b50d902SRodney W. Grimes 	fp->fname = s;
4969b50d902SRodney W. Grimes 	fl_nextp = &fp->next;
4979b50d902SRodney W. Grimes }
498839af0c1SJuli Mallett 
49996d68291SJean-Sébastien Pédron static int
next_files_have_lines(void)500707c9cc5SPedro F. Giffuni next_files_have_lines(void)
50196d68291SJean-Sébastien Pédron {
50296d68291SJean-Sébastien Pédron 	struct s_flist *file;
50396d68291SJean-Sébastien Pédron 	FILE *file_fd;
50496d68291SJean-Sébastien Pédron 	int ch;
50596d68291SJean-Sébastien Pédron 
50696d68291SJean-Sébastien Pédron 	file = files;
50796d68291SJean-Sébastien Pédron 	while ((file = file->next) != NULL) {
50896d68291SJean-Sébastien Pédron 		if ((file_fd = fopen(file->fname, "r")) == NULL)
50996d68291SJean-Sébastien Pédron 			continue;
51096d68291SJean-Sébastien Pédron 
51196d68291SJean-Sébastien Pédron 		if ((ch = getc(file_fd)) != EOF) {
51296d68291SJean-Sébastien Pédron 			/*
51396d68291SJean-Sébastien Pédron 			 * This next file has content, therefore current
51496d68291SJean-Sébastien Pédron 			 * file doesn't contains the last line.
51596d68291SJean-Sébastien Pédron 			 */
51696d68291SJean-Sébastien Pédron 			ungetc(ch, file_fd);
51796d68291SJean-Sébastien Pédron 			fclose(file_fd);
51896d68291SJean-Sébastien Pédron 			return (1);
51996d68291SJean-Sébastien Pédron 		}
52096d68291SJean-Sébastien Pédron 
52196d68291SJean-Sébastien Pédron 		fclose(file_fd);
52296d68291SJean-Sébastien Pédron 	}
52396d68291SJean-Sébastien Pédron 
52496d68291SJean-Sébastien Pédron 	return (0);
52596d68291SJean-Sébastien Pédron }
52696d68291SJean-Sébastien Pédron 
5278523e9a6STim J. Robbins int
lastline(void)5288523e9a6STim J. Robbins lastline(void)
5298523e9a6STim J. Robbins {
5308523e9a6STim J. Robbins 	int ch;
5318523e9a6STim J. Robbins 
53296d68291SJean-Sébastien Pédron 	if (feof(infile)) {
53396d68291SJean-Sébastien Pédron 		return !(
53496d68291SJean-Sébastien Pédron 		    (inplace == NULL || ispan) &&
53596d68291SJean-Sébastien Pédron 		    next_files_have_lines());
53696d68291SJean-Sébastien Pédron 	}
53796d68291SJean-Sébastien Pédron 	if ((ch = getc(infile)) == EOF) {
53896d68291SJean-Sébastien Pédron 		return !(
53996d68291SJean-Sébastien Pédron 		    (inplace == NULL || ispan) &&
54096d68291SJean-Sébastien Pédron 		    next_files_have_lines());
54196d68291SJean-Sébastien Pédron 	}
542f54cda14SDag-Erling Smørgrav 	ungetc(ch, infile);
5438523e9a6STim J. Robbins 	return (0);
5448523e9a6STim J. Robbins }
545