blob: b17c8c79408b489121fa10cc2cfa90588dcba9d2 [file] [log] [blame]
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001/*
Mark Whitley6315ce62000-07-10 22:55:51 +00002 * sed.c - very minimalist version of sed
Eric Andersen6b6b3f61999-10-28 16:06:25 +00003 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00004 * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
5 * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
Matt Kraai5ed78ad2002-01-03 21:12:34 +00006 * Copyright (C) 2002 Matt Kraai
Erik Andersen1266a131999-12-29 22:19:46 +00007 *
Eric Andersen6b6b3f61999-10-28 16:06:25 +00008 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
Mark Whitley6315ce62000-07-10 22:55:51 +000024/*
25 Supported features and commands in this version of sed:
26
27 - comments ('#')
Mark Whitley94074a92000-07-14 00:00:15 +000028 - address matching: num|/matchstr/[,num|/matchstr/|$]command
29 - commands: (p)rint, (d)elete, (s)ubstitue (with g & I flags)
30 - edit commands: (a)ppend, (i)nsert, (c)hange
Mark Whitley1f3b9f22001-05-11 22:27:13 +000031 - file commands: (r)ead
Mark Whitley97562bd2000-07-17 20:06:42 +000032 - backreferences in substitution expressions (\1, \2...\9)
Mark Whitley6315ce62000-07-10 22:55:51 +000033
34 (Note: Specifying an address (range) to match is *optional*; commands
35 default to the whole pattern space if no specific address match was
36 requested.)
37
38 Unsupported features:
39
40 - transliteration (y/source-chars/dest-chars/) (use 'tr')
Mark Whitley6315ce62000-07-10 22:55:51 +000041 - no pattern space hold space storing / swapping (x, etc.)
42 - no labels / branching (: label, b, t, and friends)
43 - and lots, lots more.
Glenn L McGrathd5eadea2003-03-09 02:39:29 +000044
45 Reference http://www.opengroup.org/onlinepubs/007904975/utilities/sed.html
Mark Whitley6315ce62000-07-10 22:55:51 +000046*/
47
Eric Andersen6b6b3f61999-10-28 16:06:25 +000048#include <stdio.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000049#include <unistd.h> /* for getopt() */
50#include <regex.h>
51#include <string.h> /* for strdup() */
Eric Andersen6b6b3f61999-10-28 16:06:25 +000052#include <errno.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000053#include <ctype.h> /* for isspace() */
Eric Andersened3ef502001-01-27 08:24:39 +000054#include <stdlib.h>
Eric Andersen3570a342000-09-25 21:45:58 +000055#include "busybox.h"
Mark Whitley6315ce62000-07-10 22:55:51 +000056
Mark Whitley6315ce62000-07-10 22:55:51 +000057/* externs */
Eric Andersened3ef502001-01-27 08:24:39 +000058extern void xregcomp(regex_t *preg, const char *regex, int cflags);
Mark Whitley6315ce62000-07-10 22:55:51 +000059extern int optind; /* in unistd.h */
60extern char *optarg; /* ditto */
61
62/* options */
63static int be_quiet = 0;
64
Mark Whitley0e4cec02000-08-21 21:29:20 +000065
Mark Whitley6315ce62000-07-10 22:55:51 +000066struct sed_cmd {
Eric Andersenc52a6b02001-11-10 10:49:42 +000067 /* Order by alignment requirements */
Mark Whitley2dc192f2000-11-03 19:47:00 +000068
Mark Whitley6315ce62000-07-10 22:55:51 +000069 /* address storage */
Mark Whitley6315ce62000-07-10 22:55:51 +000070 regex_t *beg_match; /* sed -e '/match/cmd' */
71 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
72
Mark Whitley2dc192f2000-11-03 19:47:00 +000073 /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
74
75 /* sed -e 's/sub_match/replace/' */
76 regex_t *sub_match;
77 char *replace;
Eric Andersenc52a6b02001-11-10 10:49:42 +000078
79 /* EDIT COMMAND (a,i,c) SPECIFIC FIELDS */
80 char *editline;
81
82 /* FILE COMMAND (r) SPECIFIC FIELDS */
83 char *filename;
84
85 /* address storage */
86 int beg_line; /* 'sed 1p' 0 == no begining line, apply commands to all lines */
87 int end_line; /* 'sed 1,3p' 0 == no end line, use only beginning. -1 == $ */
88 /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
89
Mark Whitley97562bd2000-07-17 20:06:42 +000090 unsigned int num_backrefs:4; /* how many back references (\1..\9) */
91 /* Note: GNU/POSIX sed does not save more than nine backrefs, so
92 * we only use 4 bits to hold the number */
Mark Whitley2dc192f2000-11-03 19:47:00 +000093 unsigned int sub_g:1; /* sed -e 's/foo/bar/g' (global) */
94 unsigned int sub_p:2; /* sed -e 's/foo/bar/p' (print substitution) */
Mark Whitley94074a92000-07-14 00:00:15 +000095
Eric Andersenc52a6b02001-11-10 10:49:42 +000096 /* GENERAL FIELDS */
97 char delimiter; /* The delimiter used to separate regexps */
Mark Whitley2dc192f2000-11-03 19:47:00 +000098
Eric Andersenc52a6b02001-11-10 10:49:42 +000099 /* the command */
100 char cmd; /* p,d,s (add more at your leisure :-) */
Robert Griebl47abc492002-06-11 23:43:27 +0000101
102 /* inversion flag */
103 int invert; /* the '!' after the address */
Mark Whitley6315ce62000-07-10 22:55:51 +0000104};
105
106/* globals */
107static struct sed_cmd *sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */
108static int ncmds = 0; /* number of sed commands */
109
110/*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000111
Eric Andersenc52a6b02001-11-10 10:49:42 +0000112const char * const semicolon_whitespace = "; \n\r\t\v\0";
113
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000114#ifdef CONFIG_FEATURE_CLEAN_UP
Matt Kraai0c390a72001-11-20 16:00:19 +0000115static void destroy_cmd_strs(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000116{
117 if (sed_cmds == NULL)
118 return;
119
120 /* destroy all the elements in the array */
121 while (--ncmds >= 0) {
122
123 if (sed_cmds[ncmds].beg_match) {
124 regfree(sed_cmds[ncmds].beg_match);
125 free(sed_cmds[ncmds].beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000126 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000127 if (sed_cmds[ncmds].end_match) {
128 regfree(sed_cmds[ncmds].end_match);
129 free(sed_cmds[ncmds].end_match);
130 }
131 if (sed_cmds[ncmds].sub_match) {
132 regfree(sed_cmds[ncmds].sub_match);
133 free(sed_cmds[ncmds].sub_match);
134 }
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000135 free(sed_cmds[ncmds].replace);
Mark Whitley6315ce62000-07-10 22:55:51 +0000136 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000137
Mark Whitley6315ce62000-07-10 22:55:51 +0000138 /* destroy the array */
139 free(sed_cmds);
140 sed_cmds = NULL;
141}
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000142#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000143
Mark Whitley6315ce62000-07-10 22:55:51 +0000144
145/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000146 * index_of_next_unescaped_regexp_delim - walks left to right through a string
147 * beginning at a specified index and returns the index of the next regular
148 * expression delimiter (typically a forward * slash ('/')) not preceeded by
149 * a backslash ('\').
Mark Whitley6315ce62000-07-10 22:55:51 +0000150 */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000151static int index_of_next_unescaped_regexp_delim(const struct sed_cmd * const sed_cmd, const char *str, int idx)
Mark Whitley6315ce62000-07-10 22:55:51 +0000152{
Matt Kraaia0065d52001-08-24 14:45:50 +0000153 int bracket = -1;
154 int escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000155 char ch;
Matt Kraaia0065d52001-08-24 14:45:50 +0000156
Eric Andersenc52a6b02001-11-10 10:49:42 +0000157 for ( ; (ch = str[idx]); idx++) {
Matt Kraaia0065d52001-08-24 14:45:50 +0000158 if (bracket != -1) {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000159 if (ch == ']' && !(bracket == idx - 1 ||
Matt Kraaia0065d52001-08-24 14:45:50 +0000160 (bracket == idx - 2 && str[idx-1] == '^')))
161 bracket = -1;
162 } else if (escaped)
163 escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000164 else if (ch == '\\')
Matt Kraaia0065d52001-08-24 14:45:50 +0000165 escaped = 1;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000166 else if (ch == '[')
Matt Kraaia0065d52001-08-24 14:45:50 +0000167 bracket = idx;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000168 else if (ch == sed_cmd->delimiter)
Mark Whitley97562bd2000-07-17 20:06:42 +0000169 return idx;
170 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000171
Mark Whitley97562bd2000-07-17 20:06:42 +0000172 /* if we make it to here, we've hit the end of the string */
173 return -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000174}
175
176/*
177 * returns the index in the string just past where the address ends.
178 */
Mark Whitley0915c4b2001-06-11 23:50:06 +0000179static int get_address(struct sed_cmd *sed_cmd, const char *str, int *linenum, regex_t **regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000180{
Matt Kraaic8227632001-11-12 16:57:27 +0000181 char *my_str = xstrdup(str);
Robert Griebl00f5ecb2002-08-06 23:13:31 +0000182 int idx = 0, idx_start = 1;
Mark Whitley038c8eb2001-03-14 21:11:49 +0000183 char olddelimiter;
184 olddelimiter = sed_cmd->delimiter;
185 sed_cmd->delimiter = '/';
Mark Whitley6315ce62000-07-10 22:55:51 +0000186
187 if (isdigit(my_str[idx])) {
188 do {
189 idx++;
190 } while (isdigit(my_str[idx]));
191 my_str[idx] = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000192 *linenum = atoi(my_str);
Mark Whitley6315ce62000-07-10 22:55:51 +0000193 }
194 else if (my_str[idx] == '$') {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000195 *linenum = -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000196 idx++;
197 }
Robert Griebl79401472002-08-06 21:07:17 +0000198 else if (my_str[idx] == '/' || my_str[idx] == '\\') {
199 if (my_str[idx] == '\\') {
Robert Griebl00f5ecb2002-08-06 23:13:31 +0000200 idx_start++;
Robert Griebl79401472002-08-06 21:07:17 +0000201 sed_cmd-> delimiter = my_str[++idx];
202 }
Eric Andersen28b3c532001-01-02 11:01:31 +0000203 idx = index_of_next_unescaped_regexp_delim(sed_cmd, my_str, ++idx);
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000204 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000205 error_msg_and_die("unterminated match expression");
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000206 my_str[idx] = '\0';
207 *regex = (regex_t *)xmalloc(sizeof(regex_t));
Robert Griebl00f5ecb2002-08-06 23:13:31 +0000208 xregcomp(*regex, my_str+idx_start, REG_NEWLINE);
Mark Whitley496e33f2000-07-13 22:52:02 +0000209 idx++; /* so it points to the next character after the last '/' */
Mark Whitley6315ce62000-07-10 22:55:51 +0000210 }
211 else {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000212 error_msg("get_address: no address found in string\n"
Matt Kraaidd19c692001-01-31 19:00:21 +0000213 "\t(you probably didn't check the string you passed me)");
Mark Whitley6315ce62000-07-10 22:55:51 +0000214 idx = -1;
215 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000216
Mark Whitley6315ce62000-07-10 22:55:51 +0000217 free(my_str);
Mark Whitley038c8eb2001-03-14 21:11:49 +0000218 sed_cmd->delimiter = olddelimiter;
Mark Whitley6315ce62000-07-10 22:55:51 +0000219 return idx;
220}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000221
Eric Andersenc52a6b02001-11-10 10:49:42 +0000222static int parse_subst_cmd(struct sed_cmd * const sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000223{
224 int oldidx, cflags = REG_NEWLINE;
225 char *match;
226 int idx = 0;
Mark Whitley97562bd2000-07-17 20:06:42 +0000227 int j;
Mark Whitley06f35292000-07-13 19:58:04 +0000228
229 /*
230 * the string that gets passed to this function should look like this:
Mark Whitley0e4cec02000-08-21 21:29:20 +0000231 * s/match/replace/gIp
232 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000233 * mandatory optional
234 *
235 * (all three of the '/' slashes are mandatory)
236 */
237
Eric Andersen28b3c532001-01-02 11:01:31 +0000238 /* verify that the 's' is followed by something. That something
239 * (typically a 'slash') is now our regexp delimiter... */
240 if (!substr[++idx])
Matt Kraaidd19c692001-01-31 19:00:21 +0000241 error_msg_and_die("bad format in substitution expression");
Eric Andersen28b3c532001-01-02 11:01:31 +0000242 else
243 sed_cmd->delimiter=substr[idx];
Mark Whitley06f35292000-07-13 19:58:04 +0000244
245 /* save the match string */
246 oldidx = idx+1;
Eric Andersen28b3c532001-01-02 11:01:31 +0000247 idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000248 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000249 error_msg_and_die("bad format in substitution expression");
Matt Kraai5009f902001-07-05 19:00:47 +0000250 match = xstrndup(substr + oldidx, idx - oldidx);
Mark Whitley06f35292000-07-13 19:58:04 +0000251
Mark Whitley97562bd2000-07-17 20:06:42 +0000252 /* determine the number of back references in the match string */
253 /* Note: we compute this here rather than in the do_subst_command()
254 * function to save processor time, at the expense of a little more memory
255 * (4 bits) per sed_cmd */
256
257 /* sed_cmd->num_backrefs = 0; */ /* XXX: not needed? --apparently not */
258 for (j = 0; match[j]; j++) {
259 /* GNU/POSIX sed does not save more than nine backrefs */
Mark Whitley2dc192f2000-11-03 19:47:00 +0000260 if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs <= 9)
Mark Whitley97562bd2000-07-17 20:06:42 +0000261 sed_cmd->num_backrefs++;
262 }
263
Mark Whitley06f35292000-07-13 19:58:04 +0000264 /* save the replacement string */
265 oldidx = idx+1;
Eric Andersen28b3c532001-01-02 11:01:31 +0000266 idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000267 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000268 error_msg_and_die("bad format in substitution expression");
Matt Kraai5009f902001-07-05 19:00:47 +0000269 sed_cmd->replace = xstrndup(substr + oldidx, idx - oldidx);
Mark Whitley06f35292000-07-13 19:58:04 +0000270
271 /* process the flags */
272 while (substr[++idx]) {
273 switch (substr[idx]) {
Mark Whitley70705d72000-07-14 19:06:30 +0000274 case 'g':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000275 sed_cmd->sub_g = 1;
Mark Whitley70705d72000-07-14 19:06:30 +0000276 break;
277 case 'I':
278 cflags |= REG_ICASE;
279 break;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000280 case 'p':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000281 sed_cmd->sub_p = 1;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000282 break;
Mark Whitley70705d72000-07-14 19:06:30 +0000283 default:
284 /* any whitespace or semicolon trailing after a s/// is ok */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000285 if (strchr(semicolon_whitespace, substr[idx]))
Mark Whitley70705d72000-07-14 19:06:30 +0000286 goto out;
287 /* else */
Matt Kraaidd19c692001-01-31 19:00:21 +0000288 error_msg_and_die("bad option in substitution expression");
Mark Whitley06f35292000-07-13 19:58:04 +0000289 }
290 }
Mark Whitley70705d72000-07-14 19:06:30 +0000291
292out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000293 /* compile the match string into a regex */
Mark Whitley06f35292000-07-13 19:58:04 +0000294 sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t));
295 xregcomp(sed_cmd->sub_match, match, cflags);
296 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000297
298 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000299}
300
Eric Andersenc52a6b02001-11-10 10:49:42 +0000301static void move_back(char *str, int offset)
302{
303 memmove(str, str + offset, strlen(str + offset) + 1);
304}
305
Mark Whitley70705d72000-07-14 19:06:30 +0000306static int parse_edit_cmd(struct sed_cmd *sed_cmd, const char *editstr)
Mark Whitley94074a92000-07-14 00:00:15 +0000307{
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000308 int i, j;
Mark Whitley94074a92000-07-14 00:00:15 +0000309
310 /*
311 * the string that gets passed to this function should look like this:
312 *
313 * need one of these
314 * |
315 * | this backslash (immediately following the edit command) is mandatory
316 * | |
317 * [aic]\
318 * TEXT1\
319 * TEXT2\
320 * TEXTN
321 *
322 * as soon as we hit a TEXT line that has no trailing '\', we're done.
323 * this means a command like:
324 *
325 * i\
326 * INSERTME
327 *
328 * is a-ok.
329 *
330 */
331
Matt Kraaid21735d2002-01-02 17:56:38 +0000332 if (editstr[1] != '\\' || (editstr[2] != '\n' && editstr[2] != '\r'))
Matt Kraaidd19c692001-01-31 19:00:21 +0000333 error_msg_and_die("bad format in edit expression");
Mark Whitley94074a92000-07-14 00:00:15 +0000334
335 /* store the edit line text */
Mark Whitley34623db2000-07-14 00:49:59 +0000336 sed_cmd->editline = xmalloc(strlen(&editstr[3]) + 2);
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000337 for (i = 3, j = 0; editstr[i] != '\0' && strchr("\r\n", editstr[i]) == NULL;
338 i++, j++) {
339 if (editstr[i] == '\\' && strchr("\n\r", editstr[i+1]) != NULL) {
340 sed_cmd->editline[j] = '\n';
341 i++;
342 } else
343 sed_cmd->editline[j] = editstr[i];
Mark Whitley94074a92000-07-14 00:00:15 +0000344 }
Mark Whitley70705d72000-07-14 19:06:30 +0000345
Mark Whitley56c14a62001-04-20 23:41:44 +0000346 /* figure out if we need to add a newline */
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000347 if (sed_cmd->editline[j-1] != '\n')
348 sed_cmd->editline[j++] = '\n';
Mark Whitley56c14a62001-04-20 23:41:44 +0000349
350 /* terminate string */
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000351 sed_cmd->editline[j] = '\0';
Mark Whitley464c5de2000-07-14 23:24:00 +0000352
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000353 return i;
Mark Whitley94074a92000-07-14 00:00:15 +0000354}
355
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000356
357static int parse_file_cmd(struct sed_cmd *sed_cmd, const char *filecmdstr)
358{
359 int idx = 0;
360 int filenamelen = 0;
361
362 /*
363 * the string that gets passed to this function should look like this:
364 * '[ ]filename'
365 * | |
366 * | a filename
367 * |
368 * optional whitespace
369
370 * re: the file to be read, the GNU manual says the following: "Note that
371 * if filename cannot be read, it is treated as if it were an empty file,
372 * without any error indication." Thus, all of the following commands are
373 * perfectly leagal:
374 *
375 * sed -e '1r noexist'
376 * sed -e '1r ;'
377 * sed -e '1r'
378 */
379
380 /* the file command may be followed by whitespace; move past it. */
381 while (isspace(filecmdstr[++idx]))
382 { ; }
383
384 /* the first non-whitespace we get is a filename. the filename ends when we
385 * hit a normal sed command terminator or end of string */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000386 filenamelen = strcspn(&filecmdstr[idx], semicolon_whitespace);
Matt Kraai6e9e1362001-05-27 14:11:52 +0000387 sed_cmd->filename = xmalloc(filenamelen + 1);
388 safe_strncpy(sed_cmd->filename, &filecmdstr[idx], filenamelen + 1);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000389
390 return idx + filenamelen;
391}
392
393
Eric Andersenc52a6b02001-11-10 10:49:42 +0000394static char *parse_cmd_str(struct sed_cmd * const sed_cmd, const char *const cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000395{
396 int idx = 0;
397
398 /* parse the command
399 * format is: [addr][,addr]cmd
400 * |----||-----||-|
401 * part1 part2 part3
402 */
403
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000404 /* first part (if present) is an address: either a '$', a number or a /regex/ */
405 if ((cmdstr[idx] == '$') || (isdigit(cmdstr[idx])) || (cmdstr[idx] == '/') || ((cmdstr[idx] == '\\') && (cmdstr[idx+1] != '\\')))
Eric Andersen28b3c532001-01-02 11:01:31 +0000406 idx = get_address(sed_cmd, cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000407
408 /* second part (if present) will begin with a comma */
Eric Andersen2276d832002-07-11 11:11:56 +0000409 if (cmdstr[idx] == ',') {
410 idx++;
411 idx += get_address(sed_cmd, &cmdstr[idx], &sed_cmd->end_line, &sed_cmd->end_match);
412 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000413
Matt Kraai70624842001-12-21 16:04:12 +0000414 /* skip whitespace before the command */
415 while (isspace(cmdstr[idx]))
416 idx++;
417
Robert Griebl47abc492002-06-11 23:43:27 +0000418 /* there my be the inversion flag between part2 and part3 */
419 sed_cmd->invert = 0;
420 if (cmdstr[idx] == '!') {
421 sed_cmd->invert = 1;
422 idx++;
423
Glenn L McGrathd5eadea2003-03-09 02:39:29 +0000424#ifdef SED_FEATURE_STRICT_CHECKING
425 /* According to the spec
426 * It is unspecified whether <blank>s can follow a '!' character,
427 * and conforming applications shall not follow a '!' character
428 * with <blank>s.
429 */
430 if (isblank(cmdstr[idx]) {
431 error_msg_and_die("blank follows '!'");
432 }
433#else
Robert Griebl47abc492002-06-11 23:43:27 +0000434 /* skip whitespace before the command */
435 while (isspace(cmdstr[idx]))
436 idx++;
Glenn L McGrathd5eadea2003-03-09 02:39:29 +0000437#endif
Robert Griebl47abc492002-06-11 23:43:27 +0000438 }
439
Mark Whitley6315ce62000-07-10 22:55:51 +0000440 /* last part (mandatory) will be a command */
441 if (cmdstr[idx] == '\0')
Matt Kraaidd19c692001-01-31 19:00:21 +0000442 error_msg_and_die("missing command");
Mark Whitley6315ce62000-07-10 22:55:51 +0000443 sed_cmd->cmd = cmdstr[idx];
Mark Whitley6315ce62000-07-10 22:55:51 +0000444
Glenn L McGrathd5eadea2003-03-09 02:39:29 +0000445 switch (sed_cmd->cmd) {
446 /* if it was a single-letter command that takes no arguments (such as 'p'
447 * or 'd') all we need to do is increment the index past that command */
448 case 'p':
449 case 'd':
450 case '=':
451 idx++;
452 break;
453 /* handle (s)ubstitution command */
454 case 's':
455 idx += parse_subst_cmd(sed_cmd, &cmdstr[idx]);
456 break;
457 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
458 case 'a':
459 case 'i':
460 case 'c':
461 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c') {
462 error_msg_and_die("only a beginning address can be specified for edit commands");
463 }
464 idx += parse_edit_cmd(sed_cmd, &cmdstr[idx]);
465 break;
466 /* handle file cmds: (r)ead */
467 case 'r':
468 if (sed_cmd->end_line || sed_cmd->end_match) {
469 error_msg_and_die("Command only uses one address");
470 }
471 idx += parse_file_cmd(sed_cmd, &cmdstr[idx]);
472 break;
473 default:
474 error_msg_and_die("Unsupported command %c", sed_cmd->cmd);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000475 }
Mark Whitley70705d72000-07-14 19:06:30 +0000476
477 /* give back whatever's left over */
Mark Whitley464c5de2000-07-14 23:24:00 +0000478 return (char *)&cmdstr[idx];
Eric Andersen50d63601999-11-09 01:47:36 +0000479}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000480
Eric Andersenc52a6b02001-11-10 10:49:42 +0000481static void add_cmd_str(const char * const cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000482{
Mark Whitley70705d72000-07-14 19:06:30 +0000483 char *mystr = (char *)cmdstr;
Erik Andersen1266a131999-12-29 22:19:46 +0000484
Mark Whitley70705d72000-07-14 19:06:30 +0000485 do {
Mark Whitley6315ce62000-07-10 22:55:51 +0000486
Mark Whitley70705d72000-07-14 19:06:30 +0000487 /* trim leading whitespace and semicolons */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000488 move_back(mystr, strspn(mystr, semicolon_whitespace));
Mark Whitley70705d72000-07-14 19:06:30 +0000489 /* if we ate the whole thing, that means there was just trailing
Mark Whitley464c5de2000-07-14 23:24:00 +0000490 * whitespace or a final / no-op semicolon. either way, get out */
Mark Whitley70705d72000-07-14 19:06:30 +0000491 if (strlen(mystr) == 0)
492 return;
493 /* if this is a comment, jump past it and keep going */
494 if (mystr[0] == '#') {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000495 mystr = strpbrk(mystr, "\n\r");
Mark Whitley70705d72000-07-14 19:06:30 +0000496 continue;
497 }
498 /* grow the array */
Matt Kraai322ae932000-09-13 02:46:14 +0000499 sed_cmds = xrealloc(sed_cmds, sizeof(struct sed_cmd) * (++ncmds));
Mark Whitley70705d72000-07-14 19:06:30 +0000500 /* zero new element */
501 memset(&sed_cmds[ncmds-1], 0, sizeof(struct sed_cmd));
502 /* load command string into new array element, get remainder */
503 mystr = parse_cmd_str(&sed_cmds[ncmds-1], mystr);
504
Mark Whitley464c5de2000-07-14 23:24:00 +0000505 } while (mystr && strlen(mystr));
Mark Whitley6315ce62000-07-10 22:55:51 +0000506}
507
508
509static void load_cmd_file(char *filename)
510{
511 FILE *cmdfile;
512 char *line;
Mark Whitley94074a92000-07-14 00:00:15 +0000513 char *nextline;
Mark Whitley6315ce62000-07-10 22:55:51 +0000514
Matt Kraaibbaef662000-09-27 02:43:35 +0000515 cmdfile = xfopen(filename, "r");
Mark Whitley6315ce62000-07-10 22:55:51 +0000516
517 while ((line = get_line_from_file(cmdfile)) != NULL) {
Mark Whitley94074a92000-07-14 00:00:15 +0000518 /* if a line ends with '\' it needs the next line appended to it */
519 while (line[strlen(line)-2] == '\\' &&
520 (nextline = get_line_from_file(cmdfile)) != NULL) {
Matt Kraai322ae932000-09-13 02:46:14 +0000521 line = xrealloc(line, strlen(line) + strlen(nextline) + 1);
Mark Whitley94074a92000-07-14 00:00:15 +0000522 strcat(line, nextline);
Mark Whitley464c5de2000-07-14 23:24:00 +0000523 free(nextline);
Mark Whitley94074a92000-07-14 00:00:15 +0000524 }
Mark Whitley464c5de2000-07-14 23:24:00 +0000525 /* eat trailing newline (if any) --if I don't do this, edit commands
526 * (aic) will print an extra newline */
Matt Kraai05e782d2001-02-01 16:49:30 +0000527 chomp(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000528 add_cmd_str(line);
529 free(line);
530 }
531}
532
Eric Andersenc52a6b02001-11-10 10:49:42 +0000533struct pipeline {
534 char *buf;
535 int idx;
536 int len;
537};
538
Eric Andersenb76cb682001-08-22 05:58:16 +0000539#define PIPE_MAGIC 0x7f
540#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000541
542void pipe_putc(struct pipeline *const pipeline, char c)
543{
544 if (pipeline->buf[pipeline->idx] == PIPE_MAGIC) {
545 pipeline->buf =
546 xrealloc(pipeline->buf, pipeline->len + PIPE_GROW);
547 memset(pipeline->buf + pipeline->len, 0, PIPE_GROW);
548 pipeline->len += PIPE_GROW;
549 pipeline->buf[pipeline->len - 1] = PIPE_MAGIC;
550 }
551 pipeline->buf[pipeline->idx++] = (c);
552}
553
554#define pipeputc(c) pipe_putc(pipeline, c)
555
556#if 0
Eric Andersenb76cb682001-08-22 05:58:16 +0000557{ if (pipeline[pipeline_idx] == PIPE_MAGIC) { \
558 pipeline = xrealloc(pipeline, pipeline_len+PIPE_GROW); \
559 memset(pipeline+pipeline_len, 0, PIPE_GROW); \
560 pipeline_len += PIPE_GROW; \
561 pipeline[pipeline_len-1] = PIPE_MAGIC; } \
562 pipeline[pipeline_idx++] = (c); }
Eric Andersenc52a6b02001-11-10 10:49:42 +0000563#endif
Eric Andersenb76cb682001-08-22 05:58:16 +0000564
565static void print_subst_w_backrefs(const char *line, const char *replace,
Eric Andersenc52a6b02001-11-10 10:49:42 +0000566 regmatch_t *regmatch, struct pipeline *const pipeline, int matches)
Mark Whitley97562bd2000-07-17 20:06:42 +0000567{
568 int i;
569
570 /* go through the replacement string */
571 for (i = 0; replace[i]; i++) {
572 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
573 if (replace[i] == '\\' && isdigit(replace[i+1])) {
574 int j;
575 char tmpstr[2];
576 int backref;
577 ++i; /* i now indexes the backref number, instead of the leading slash */
578 tmpstr[0] = replace[i];
579 tmpstr[1] = 0;
580 backref = atoi(tmpstr);
581 /* print out the text held in regmatch[backref] */
Matt Kraaia3e4f452001-08-20 21:21:06 +0000582 if (backref <= matches && regmatch[backref].rm_so != -1)
583 for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000584 pipeputc(line[j]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000585 }
586
Mark Whitley83e85f62000-07-25 20:48:44 +0000587 /* if we find a backslash escaped character, print the character */
588 else if (replace[i] == '\\') {
589 ++i;
Eric Andersenb76cb682001-08-22 05:58:16 +0000590 pipeputc(replace[i]);
Mark Whitley83e85f62000-07-25 20:48:44 +0000591 }
592
Mark Whitley97562bd2000-07-17 20:06:42 +0000593 /* if we find an unescaped '&' print out the whole matched text.
594 * fortunately, regmatch[0] contains the indicies to the whole matched
595 * expression (kinda seems like it was designed for just such a
596 * purpose...) */
597 else if (replace[i] == '&' && replace[i-1] != '\\') {
598 int j;
599 for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000600 pipeputc(line[j]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000601 }
602 /* nothing special, just print this char of the replacement string to stdout */
603 else
Eric Andersenb76cb682001-08-22 05:58:16 +0000604 pipeputc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000605 }
606}
607
Eric Andersenb76cb682001-08-22 05:58:16 +0000608static int do_subst_command(const struct sed_cmd *sed_cmd, char **line)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000609{
Eric Andersenb76cb682001-08-22 05:58:16 +0000610 char *hackline = *line;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000611 struct pipeline thepipe = { NULL, 0 , 0};
612 struct pipeline *const pipeline = &thepipe;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000613 int altered = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000614 regmatch_t *regmatch = NULL;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000615
Mark Whitley2dc192f2000-11-03 19:47:00 +0000616 /* we only proceed if the substitution 'search' expression matches */
Eric Andersenb76cb682001-08-22 05:58:16 +0000617 if (regexec(sed_cmd->sub_match, hackline, 0, NULL, 0) == REG_NOMATCH)
Mark Whitley2dc192f2000-11-03 19:47:00 +0000618 return 0;
619
620 /* whaddaya know, it matched. get the number of back references */
621 regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs+1));
622
Eric Andersenb76cb682001-08-22 05:58:16 +0000623 /* allocate more PIPE_GROW bytes
624 if replaced string is larger than original */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000625 thepipe.len = strlen(hackline)+PIPE_GROW;
626 thepipe.buf = xcalloc(1, thepipe.len);
Eric Andersenb76cb682001-08-22 05:58:16 +0000627 /* buffer magic */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000628 thepipe.buf[thepipe.len-1] = PIPE_MAGIC;
Eric Andersenb76cb682001-08-22 05:58:16 +0000629
Mark Whitley2dc192f2000-11-03 19:47:00 +0000630 /* and now, as long as we've got a line to try matching and if we can match
631 * the search string, we make substitutions */
Matt Kraai8470b9a2001-10-23 21:12:07 +0000632 while ((*hackline || !altered) && (regexec(sed_cmd->sub_match, hackline,
633 sed_cmd->num_backrefs+1, regmatch, 0) != REG_NOMATCH) ) {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000634 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000635
Mark Whitley2dc192f2000-11-03 19:47:00 +0000636 /* print everything before the match */
637 for (i = 0; i < regmatch[0].rm_so; i++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000638 pipeputc(hackline[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000639
Mark Whitley2dc192f2000-11-03 19:47:00 +0000640 /* then print the substitution string */
Eric Andersenb76cb682001-08-22 05:58:16 +0000641 print_subst_w_backrefs(hackline, sed_cmd->replace, regmatch,
Eric Andersenc52a6b02001-11-10 10:49:42 +0000642 pipeline, sed_cmd->num_backrefs);
Mark Whitley97562bd2000-07-17 20:06:42 +0000643
Mark Whitley2dc192f2000-11-03 19:47:00 +0000644 /* advance past the match */
645 hackline += regmatch[0].rm_eo;
646 /* flag that something has changed */
647 altered++;
Mark Whitley97562bd2000-07-17 20:06:42 +0000648
Mark Whitley2dc192f2000-11-03 19:47:00 +0000649 /* if we're not doing this globally, get out now */
650 if (!sed_cmd->sub_g)
651 break;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000652 }
653
Eric Andersenb76cb682001-08-22 05:58:16 +0000654 for (; *hackline; hackline++) pipeputc(*hackline);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000655 if (thepipe.buf[thepipe.idx] == PIPE_MAGIC) thepipe.buf[thepipe.idx] = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000656
657 /* cleanup */
658 free(regmatch);
659
Eric Andersenb76cb682001-08-22 05:58:16 +0000660 free(*line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000661 *line = thepipe.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000662 return altered;
663}
Mark Whitley6315ce62000-07-10 22:55:51 +0000664
Mark Whitley6315ce62000-07-10 22:55:51 +0000665
666static void process_file(FILE *file)
667{
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000668 char *line;
Mark Whitley6315ce62000-07-10 22:55:51 +0000669 static int linenum = 0; /* GNU sed does not restart counting lines at EOF */
670 unsigned int still_in_range = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000671 int altered;
Mark Whitley6315ce62000-07-10 22:55:51 +0000672 int i;
673
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000674 line = get_line_from_file(file);
675 if (line == NULL) {
676 return;
677 }
678
Mark Whitley6315ce62000-07-10 22:55:51 +0000679 /* go through every line in the file */
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000680 do {
681 char *next_line;
682
683 /* Read one line in advance so we can act on the last line, the '$' address */
684 next_line = get_line_from_file(file);
Mark Whitley6315ce62000-07-10 22:55:51 +0000685
Mark Whitley9de26592001-05-14 19:44:44 +0000686 chomp(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000687 linenum++;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000688 altered = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +0000689
690 /* for every line, go through all the commands */
691 for (i = 0; i < ncmds; i++) {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000692 struct sed_cmd *sed_cmd = &sed_cmds[i];
Robert Griebl47abc492002-06-11 23:43:27 +0000693 int deleted = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000694
695 /*
696 * entry point into sedding...
697 */
Robert Griebl47abc492002-06-11 23:43:27 +0000698 int matched = (
Matt Kraai02c40a72001-06-21 13:57:51 +0000699 /* no range necessary */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000700 (sed_cmd->beg_line == 0 && sed_cmd->end_line == 0 &&
701 sed_cmd->beg_match == NULL &&
702 sed_cmd->end_match == NULL) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000703 /* this line number is the first address we're looking for */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000704 (sed_cmd->beg_line && (sed_cmd->beg_line == linenum)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000705 /* this line matches our first address regex */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000706 (sed_cmd->beg_match && (regexec(sed_cmd->beg_match, line, 0, NULL, 0) == 0)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000707 /* we are currently within the beginning & ending address range */
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000708 still_in_range || ((sed_cmd->beg_line == -1) && (next_line == NULL))
Robert Griebl47abc492002-06-11 23:43:27 +0000709 );
710
711 if (sed_cmd->invert ^ matched) {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000712
713 /*
714 * actual sedding
715 */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000716 switch (sed_cmd->cmd) {
Glenn L McGrath0a65e192002-12-23 10:16:12 +0000717 case '=':
718 printf("%d\n", linenum);
719 break;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000720 case 'p':
721 puts(line);
722 break;
723
724 case 'd':
725 altered++;
Matt Kraai5c69cd82002-04-01 16:17:37 +0000726 deleted = 1;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000727 break;
728
729 case 's':
730
731 /*
732 * Some special cases for 's' printing to make it compliant with
733 * GNU sed printing behavior (aka "The -n | s///p Matrix"):
734 *
735 * -n ONLY = never print anything regardless of any successful
736 * substitution
737 *
738 * s///p ONLY = always print successful substitutions, even if
739 * the line is going to be printed anyway (line will be printed
740 * twice).
741 *
742 * -n AND s///p = print ONLY a successful substitution ONE TIME;
743 * no other lines are printed - this is the reason why the 'p'
744 * flag exists in the first place.
745 */
746
747 /* if the user specified that they didn't want anything printed (i.e., a -n
748 * flag and no 'p' flag after the s///), then there's really no point doing
749 * anything here. */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000750 if (be_quiet && !sed_cmd->sub_p)
Mark Whitley0915c4b2001-06-11 23:50:06 +0000751 break;
752
753 /* we print the line once, unless we were told to be quiet */
754 if (!be_quiet)
Eric Andersenc52a6b02001-11-10 10:49:42 +0000755 altered |= do_subst_command(sed_cmd, &line);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000756
757 /* we also print the line if we were given the 'p' flag
758 * (this is quite possibly the second printing) */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000759 if (sed_cmd->sub_p)
760 altered |= do_subst_command(sed_cmd, &line);
Eric Andersenb76cb682001-08-22 05:58:16 +0000761 if (altered && (i+1 >= ncmds || sed_cmds[i+1].cmd != 's'))
762 puts(line);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000763
764 break;
765
766 case 'a':
767 puts(line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000768 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000769 altered++;
770 break;
771
772 case 'i':
Eric Andersenc52a6b02001-11-10 10:49:42 +0000773 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000774 break;
775
776 case 'c':
777 /* single-address case */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000778 if ((sed_cmd->end_match == NULL && sed_cmd->end_line == 0)
Mark Whitley0915c4b2001-06-11 23:50:06 +0000779 /* multi-address case */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000780 /* - matching text */
781 || (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
782 /* - matching line numbers */
783 || (sed_cmd->end_line > 0 && sed_cmd->end_line == linenum))
784 {
785 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000786 }
787 altered++;
788
789 break;
790
791 case 'r': {
792 FILE *outfile;
793 puts(line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000794 outfile = fopen(sed_cmd->filename, "r");
Mark Whitley0915c4b2001-06-11 23:50:06 +0000795 if (outfile)
796 print_file(outfile);
797 /* else if we couldn't open the output file,
798 * no biggie, just don't print anything */
799 altered++;
Robert Griebl47abc492002-06-11 23:43:27 +0000800 }
Mark Whitley0915c4b2001-06-11 23:50:06 +0000801 break;
802 }
Robert Griebl47abc492002-06-11 23:43:27 +0000803 }
Mark Whitley0915c4b2001-06-11 23:50:06 +0000804
Robert Griebl47abc492002-06-11 23:43:27 +0000805 /*
806 * exit point from sedding...
807 */
808 if (matched) {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000809 if (
810 /* this is a single-address command or... */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000811 (sed_cmd->end_line == 0 && sed_cmd->end_match == NULL) || (
Mark Whitley0915c4b2001-06-11 23:50:06 +0000812 /* we were in the middle of our address range (this
813 * isn't the first time through) and.. */
814 (still_in_range == 1) && (
815 /* this line number is the last address we're looking for or... */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000816 (sed_cmd->end_line && (sed_cmd->end_line == linenum)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000817 /* this line matches our last address regex */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000818 (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
Mark Whitley0915c4b2001-06-11 23:50:06 +0000819 )
820 )
821 ) {
822 /* we're out of our address range */
823 still_in_range = 0;
824 }
825
826 /* didn't hit the exit? then we're still in the middle of an address range */
827 else {
828 still_in_range = 1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000829 }
830 }
Robert Griebl47abc492002-06-11 23:43:27 +0000831
832 if (deleted)
833 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000834 }
Erik Andersen1266a131999-12-29 22:19:46 +0000835
Mark Whitley2dc192f2000-11-03 19:47:00 +0000836 /* we will print the line unless we were told to be quiet or if the
837 * line was altered (via a 'd'elete or 's'ubstitution), in which case
838 * the altered line was already printed */
Mark Whitley0915c4b2001-06-11 23:50:06 +0000839 if (!be_quiet && !altered)
Mark Whitleydd527d32001-05-14 19:53:08 +0000840 puts(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000841
842 free(line);
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000843 line = next_line;
844 } while (line);
Erik Andersen1266a131999-12-29 22:19:46 +0000845}
846
847extern int sed_main(int argc, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000848{
Matt Kraaia5f09c62001-11-12 16:44:55 +0000849 int opt, status = EXIT_SUCCESS;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000850
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000851#ifdef CONFIG_FEATURE_CLEAN_UP
Mark Whitley858c1ad2000-07-11 21:38:47 +0000852 /* destroy command strings on exit */
Matt Kraaia9819b22000-12-22 01:48:07 +0000853 if (atexit(destroy_cmd_strs) == -1)
854 perror_msg_and_die("atexit");
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000855#endif
Mark Whitley858c1ad2000-07-11 21:38:47 +0000856
Mark Whitley6315ce62000-07-10 22:55:51 +0000857 /* do normal option parsing */
Eric Andersenb50da532001-02-17 16:52:35 +0000858 while ((opt = getopt(argc, argv, "ne:f:")) > 0) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000859 switch (opt) {
Erik Andersene916d242000-03-06 19:20:35 +0000860 case 'n':
Mark Whitley6315ce62000-07-10 22:55:51 +0000861 be_quiet++;
Erik Andersene916d242000-03-06 19:20:35 +0000862 break;
863 case 'e':
Mark Whitley6315ce62000-07-10 22:55:51 +0000864 add_cmd_str(optarg);
Erik Andersene916d242000-03-06 19:20:35 +0000865 break;
Mark Whitley6315ce62000-07-10 22:55:51 +0000866 case 'f':
867 load_cmd_file(optarg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000868 break;
Eric Andersenb50da532001-02-17 16:52:35 +0000869 default:
870 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000871 }
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000872 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000873
874 /* if we didn't get a pattern from a -e and no command file was specified,
875 * argv[optind] should be the pattern. no pattern, no worky */
876 if (ncmds == 0) {
877 if (argv[optind] == NULL)
Eric Andersen67991cf2001-02-14 21:23:06 +0000878 show_usage();
Mark Whitley6315ce62000-07-10 22:55:51 +0000879 else {
880 add_cmd_str(argv[optind]);
881 optind++;
882 }
883 }
884
885
886 /* argv[(optind)..(argc-1)] should be names of file to process. If no
887 * files were specified or '-' was specified, take input from stdin.
888 * Otherwise, we process all the files specified. */
889 if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) {
890 process_file(stdin);
891 }
892 else {
893 int i;
894 FILE *file;
895 for (i = optind; i < argc; i++) {
Eric Andersen9c6b5fc2001-11-17 07:23:46 +0000896 file = wfopen(argv[i], "r");
897 if (file) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000898 process_file(file);
899 fclose(file);
Matt Kraaia5f09c62001-11-12 16:44:55 +0000900 } else
901 status = EXIT_FAILURE;
Mark Whitley6315ce62000-07-10 22:55:51 +0000902 }
903 }
904
Matt Kraaia5f09c62001-11-12 16:44:55 +0000905 return status;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000906}