blob: 5b08c8ee15a4ec3bf4fb155c65e488112c899d80 [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)
Glenn L McGrathf50ce312003-03-09 15:12:24 +000033 - grouped commands: {cmd1;cmd2}
34
Mark Whitley6315ce62000-07-10 22:55:51 +000035 (Note: Specifying an address (range) to match is *optional*; commands
36 default to the whole pattern space if no specific address match was
37 requested.)
38
39 Unsupported features:
40
41 - transliteration (y/source-chars/dest-chars/) (use 'tr')
Mark Whitley6315ce62000-07-10 22:55:51 +000042 - no pattern space hold space storing / swapping (x, etc.)
43 - no labels / branching (: label, b, t, and friends)
44 - and lots, lots more.
Glenn L McGrathd5eadea2003-03-09 02:39:29 +000045
46 Reference http://www.opengroup.org/onlinepubs/007904975/utilities/sed.html
Mark Whitley6315ce62000-07-10 22:55:51 +000047*/
48
Eric Andersen6b6b3f61999-10-28 16:06:25 +000049#include <stdio.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000050#include <unistd.h> /* for getopt() */
51#include <regex.h>
52#include <string.h> /* for strdup() */
Eric Andersen6b6b3f61999-10-28 16:06:25 +000053#include <errno.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000054#include <ctype.h> /* for isspace() */
Eric Andersened3ef502001-01-27 08:24:39 +000055#include <stdlib.h>
Eric Andersen3570a342000-09-25 21:45:58 +000056#include "busybox.h"
Mark Whitley6315ce62000-07-10 22:55:51 +000057
Mark Whitley6315ce62000-07-10 22:55:51 +000058/* externs */
Eric Andersened3ef502001-01-27 08:24:39 +000059extern void xregcomp(regex_t *preg, const char *regex, int cflags);
Mark Whitley6315ce62000-07-10 22:55:51 +000060extern int optind; /* in unistd.h */
61extern char *optarg; /* ditto */
62
63/* options */
64static int be_quiet = 0;
65
Mark Whitley0e4cec02000-08-21 21:29:20 +000066
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +000067typedef struct sed_cmd_s {
Eric Andersenc52a6b02001-11-10 10:49:42 +000068 /* Order by alignment requirements */
Mark Whitley2dc192f2000-11-03 19:47:00 +000069
Mark Whitley6315ce62000-07-10 22:55:51 +000070 /* address storage */
Mark Whitley6315ce62000-07-10 22:55:51 +000071 regex_t *beg_match; /* sed -e '/match/cmd' */
72 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
73
Mark Whitley2dc192f2000-11-03 19:47:00 +000074 /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
75
76 /* sed -e 's/sub_match/replace/' */
77 regex_t *sub_match;
78 char *replace;
Eric Andersenc52a6b02001-11-10 10:49:42 +000079
80 /* EDIT COMMAND (a,i,c) SPECIFIC FIELDS */
81 char *editline;
82
83 /* FILE COMMAND (r) SPECIFIC FIELDS */
84 char *filename;
85
86 /* address storage */
87 int beg_line; /* 'sed 1p' 0 == no begining line, apply commands to all lines */
88 int end_line; /* 'sed 1,3p' 0 == no end line, use only beginning. -1 == $ */
89 /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
90
Mark Whitley97562bd2000-07-17 20:06:42 +000091 unsigned int num_backrefs:4; /* how many back references (\1..\9) */
92 /* Note: GNU/POSIX sed does not save more than nine backrefs, so
93 * we only use 4 bits to hold the number */
Mark Whitley2dc192f2000-11-03 19:47:00 +000094 unsigned int sub_g:1; /* sed -e 's/foo/bar/g' (global) */
95 unsigned int sub_p:2; /* sed -e 's/foo/bar/p' (print substitution) */
Mark Whitley94074a92000-07-14 00:00:15 +000096
Eric Andersenc52a6b02001-11-10 10:49:42 +000097 /* GENERAL FIELDS */
98 char delimiter; /* The delimiter used to separate regexps */
Mark Whitley2dc192f2000-11-03 19:47:00 +000099
Eric Andersenc52a6b02001-11-10 10:49:42 +0000100 /* the command */
101 char cmd; /* p,d,s (add more at your leisure :-) */
Robert Griebl47abc492002-06-11 23:43:27 +0000102
103 /* inversion flag */
104 int invert; /* the '!' after the address */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000105} sed_cmd_t;
Mark Whitley6315ce62000-07-10 22:55:51 +0000106
107/* globals */
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000108static sed_cmd_t **sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */
Mark Whitley6315ce62000-07-10 22:55:51 +0000109static int ncmds = 0; /* number of sed commands */
110
111/*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000112
Eric Andersenc52a6b02001-11-10 10:49:42 +0000113const char * const semicolon_whitespace = "; \n\r\t\v\0";
114
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000115#ifdef CONFIG_FEATURE_CLEAN_UP
Matt Kraai0c390a72001-11-20 16:00:19 +0000116static void destroy_cmd_strs(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000117{
118 if (sed_cmds == NULL)
119 return;
120
121 /* destroy all the elements in the array */
122 while (--ncmds >= 0) {
123
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000124 if (sed_cmds[ncmds]->beg_match) {
125 regfree(sed_cmds[ncmds]->beg_match);
126 free(sed_cmds[ncmds]->beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000127 }
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000128 if (sed_cmds[ncmds]->end_match) {
129 regfree(sed_cmds[ncmds]->end_match);
130 free(sed_cmds[ncmds]->end_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000131 }
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000132 if (sed_cmds[ncmds]->sub_match) {
133 regfree(sed_cmds[ncmds]->sub_match);
134 free(sed_cmds[ncmds]->sub_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000135 }
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000136 free(sed_cmds[ncmds]->replace);
Mark Whitley6315ce62000-07-10 22:55:51 +0000137 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000138
Mark Whitley6315ce62000-07-10 22:55:51 +0000139 /* destroy the array */
140 free(sed_cmds);
141 sed_cmds = NULL;
142}
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000143#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000144
Mark Whitley6315ce62000-07-10 22:55:51 +0000145
146/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000147 * index_of_next_unescaped_regexp_delim - walks left to right through a string
148 * beginning at a specified index and returns the index of the next regular
149 * expression delimiter (typically a forward * slash ('/')) not preceeded by
150 * a backslash ('\').
Mark Whitley6315ce62000-07-10 22:55:51 +0000151 */
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000152static int index_of_next_unescaped_regexp_delim(const char delimiter, const char *str, int idx)
Mark Whitley6315ce62000-07-10 22:55:51 +0000153{
Matt Kraaia0065d52001-08-24 14:45:50 +0000154 int bracket = -1;
155 int escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000156 char ch;
Matt Kraaia0065d52001-08-24 14:45:50 +0000157
Eric Andersenc52a6b02001-11-10 10:49:42 +0000158 for ( ; (ch = str[idx]); idx++) {
Matt Kraaia0065d52001-08-24 14:45:50 +0000159 if (bracket != -1) {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000160 if (ch == ']' && !(bracket == idx - 1 ||
Matt Kraaia0065d52001-08-24 14:45:50 +0000161 (bracket == idx - 2 && str[idx-1] == '^')))
162 bracket = -1;
163 } else if (escaped)
164 escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000165 else if (ch == '\\')
Matt Kraaia0065d52001-08-24 14:45:50 +0000166 escaped = 1;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000167 else if (ch == '[')
Matt Kraaia0065d52001-08-24 14:45:50 +0000168 bracket = idx;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000169 else if (ch == delimiter)
Mark Whitley97562bd2000-07-17 20:06:42 +0000170 return idx;
171 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000172
Mark Whitley97562bd2000-07-17 20:06:42 +0000173 /* if we make it to here, we've hit the end of the string */
174 return -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000175}
176
177/*
178 * returns the index in the string just past where the address ends.
179 */
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000180static int get_address(char *delimiter, char *my_str, int *linenum, regex_t **regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000181{
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000182 int idx = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +0000183 if (isdigit(my_str[idx])) {
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000184 char *endstr;
185 *linenum = strtol(my_str, &endstr, 10);
186 /* endstr shouldnt ever equal NULL */
187 idx = endstr - my_str;
Mark Whitley6315ce62000-07-10 22:55:51 +0000188 }
189 else if (my_str[idx] == '$') {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000190 *linenum = -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000191 idx++;
192 }
Robert Griebl79401472002-08-06 21:07:17 +0000193 else if (my_str[idx] == '/' || my_str[idx] == '\\') {
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000194 int idx_start = 1;
195
Glenn L McGrathf3bd7c42003-03-09 15:40:40 +0000196 *delimiter = '/';
Robert Griebl79401472002-08-06 21:07:17 +0000197 if (my_str[idx] == '\\') {
Robert Griebl00f5ecb2002-08-06 23:13:31 +0000198 idx_start++;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000199 *delimiter = my_str[++idx];
Robert Griebl79401472002-08-06 21:07:17 +0000200 }
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000201 idx = index_of_next_unescaped_regexp_delim(*delimiter, my_str, ++idx);
202 if (idx == -1) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000203 error_msg_and_die("unterminated match expression");
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000204 }
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000205 my_str[idx] = '\0';
206 *regex = (regex_t *)xmalloc(sizeof(regex_t));
Robert Griebl00f5ecb2002-08-06 23:13:31 +0000207 xregcomp(*regex, my_str+idx_start, REG_NEWLINE);
Mark Whitley496e33f2000-07-13 22:52:02 +0000208 idx++; /* so it points to the next character after the last '/' */
Mark Whitley6315ce62000-07-10 22:55:51 +0000209 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000210 return idx;
211}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000212
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000213static int parse_subst_cmd(sed_cmd_t * const sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000214{
215 int oldidx, cflags = REG_NEWLINE;
216 char *match;
217 int idx = 0;
Mark Whitley97562bd2000-07-17 20:06:42 +0000218 int j;
Mark Whitley06f35292000-07-13 19:58:04 +0000219
220 /*
221 * the string that gets passed to this function should look like this:
Mark Whitley0e4cec02000-08-21 21:29:20 +0000222 * s/match/replace/gIp
223 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000224 * mandatory optional
225 *
226 * (all three of the '/' slashes are mandatory)
227 */
228
Eric Andersen28b3c532001-01-02 11:01:31 +0000229 /* verify that the 's' is followed by something. That something
230 * (typically a 'slash') is now our regexp delimiter... */
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000231 if (substr[idx] == '\0')
Matt Kraaidd19c692001-01-31 19:00:21 +0000232 error_msg_and_die("bad format in substitution expression");
Eric Andersen28b3c532001-01-02 11:01:31 +0000233 else
234 sed_cmd->delimiter=substr[idx];
Mark Whitley06f35292000-07-13 19:58:04 +0000235
236 /* save the match string */
237 oldidx = idx+1;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000238 idx = index_of_next_unescaped_regexp_delim(sed_cmd->delimiter, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000239 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000240 error_msg_and_die("bad format in substitution expression");
Matt Kraai5009f902001-07-05 19:00:47 +0000241 match = xstrndup(substr + oldidx, idx - oldidx);
Mark Whitley06f35292000-07-13 19:58:04 +0000242
Mark Whitley97562bd2000-07-17 20:06:42 +0000243 /* determine the number of back references in the match string */
244 /* Note: we compute this here rather than in the do_subst_command()
245 * function to save processor time, at the expense of a little more memory
246 * (4 bits) per sed_cmd */
247
248 /* sed_cmd->num_backrefs = 0; */ /* XXX: not needed? --apparently not */
249 for (j = 0; match[j]; j++) {
250 /* GNU/POSIX sed does not save more than nine backrefs */
Mark Whitley2dc192f2000-11-03 19:47:00 +0000251 if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs <= 9)
Mark Whitley97562bd2000-07-17 20:06:42 +0000252 sed_cmd->num_backrefs++;
253 }
254
Mark Whitley06f35292000-07-13 19:58:04 +0000255 /* save the replacement string */
256 oldidx = idx+1;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000257 idx = index_of_next_unescaped_regexp_delim(sed_cmd->delimiter, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000258 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000259 error_msg_and_die("bad format in substitution expression");
Matt Kraai5009f902001-07-05 19:00:47 +0000260 sed_cmd->replace = xstrndup(substr + oldidx, idx - oldidx);
Mark Whitley06f35292000-07-13 19:58:04 +0000261
262 /* process the flags */
263 while (substr[++idx]) {
264 switch (substr[idx]) {
Mark Whitley70705d72000-07-14 19:06:30 +0000265 case 'g':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000266 sed_cmd->sub_g = 1;
Mark Whitley70705d72000-07-14 19:06:30 +0000267 break;
Glenn L McGrathbed40332003-03-10 02:21:14 +0000268 /* Hmm, i dont see the I option mentioned in the standard */
Mark Whitley70705d72000-07-14 19:06:30 +0000269 case 'I':
270 cflags |= REG_ICASE;
271 break;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000272 case 'p':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000273 sed_cmd->sub_p = 1;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000274 break;
Mark Whitley70705d72000-07-14 19:06:30 +0000275 default:
276 /* any whitespace or semicolon trailing after a s/// is ok */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000277 if (strchr(semicolon_whitespace, substr[idx]))
Mark Whitley70705d72000-07-14 19:06:30 +0000278 goto out;
279 /* else */
Matt Kraaidd19c692001-01-31 19:00:21 +0000280 error_msg_and_die("bad option in substitution expression");
Mark Whitley06f35292000-07-13 19:58:04 +0000281 }
282 }
Mark Whitley70705d72000-07-14 19:06:30 +0000283
284out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000285 /* compile the match string into a regex */
Mark Whitley06f35292000-07-13 19:58:04 +0000286 sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t));
287 xregcomp(sed_cmd->sub_match, match, cflags);
288 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000289
290 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000291}
292
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000293static int parse_edit_cmd(sed_cmd_t *sed_cmd, const char *editstr)
Mark Whitley94074a92000-07-14 00:00:15 +0000294{
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000295 int i, j;
Mark Whitley94074a92000-07-14 00:00:15 +0000296
297 /*
298 * the string that gets passed to this function should look like this:
299 *
300 * need one of these
301 * |
302 * | this backslash (immediately following the edit command) is mandatory
303 * | |
304 * [aic]\
305 * TEXT1\
306 * TEXT2\
307 * TEXTN
308 *
309 * as soon as we hit a TEXT line that has no trailing '\', we're done.
310 * this means a command like:
311 *
312 * i\
313 * INSERTME
314 *
315 * is a-ok.
316 *
317 */
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000318 if ((*editstr != '\\') || ((editstr[1] != '\n') && (editstr[1] != '\r'))) {
Matt Kraaidd19c692001-01-31 19:00:21 +0000319 error_msg_and_die("bad format in edit expression");
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000320 }
Mark Whitley94074a92000-07-14 00:00:15 +0000321
322 /* store the edit line text */
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000323 sed_cmd->editline = xmalloc(strlen(&editstr[2]) + 2);
324 for (i = 2, j = 0; editstr[i] != '\0' && strchr("\r\n", editstr[i]) == NULL;
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000325 i++, j++) {
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000326 if ((editstr[i] == '\\') && strchr("\n\r", editstr[i+1]) != NULL) {
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000327 sed_cmd->editline[j] = '\n';
328 i++;
329 } else
330 sed_cmd->editline[j] = editstr[i];
Mark Whitley94074a92000-07-14 00:00:15 +0000331 }
Mark Whitley70705d72000-07-14 19:06:30 +0000332
Mark Whitley56c14a62001-04-20 23:41:44 +0000333 /* figure out if we need to add a newline */
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000334 if (sed_cmd->editline[j-1] != '\n')
335 sed_cmd->editline[j++] = '\n';
Mark Whitley56c14a62001-04-20 23:41:44 +0000336
337 /* terminate string */
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000338 sed_cmd->editline[j] = '\0';
Mark Whitley464c5de2000-07-14 23:24:00 +0000339
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000340 return i;
Mark Whitley94074a92000-07-14 00:00:15 +0000341}
342
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000343
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000344static int parse_file_cmd(sed_cmd_t *sed_cmd, const char *filecmdstr)
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000345{
346 int idx = 0;
347 int filenamelen = 0;
348
349 /*
350 * the string that gets passed to this function should look like this:
351 * '[ ]filename'
352 * | |
353 * | a filename
354 * |
355 * optional whitespace
356
357 * re: the file to be read, the GNU manual says the following: "Note that
358 * if filename cannot be read, it is treated as if it were an empty file,
359 * without any error indication." Thus, all of the following commands are
360 * perfectly leagal:
361 *
362 * sed -e '1r noexist'
363 * sed -e '1r ;'
364 * sed -e '1r'
365 */
366
367 /* the file command may be followed by whitespace; move past it. */
368 while (isspace(filecmdstr[++idx]))
369 { ; }
370
371 /* the first non-whitespace we get is a filename. the filename ends when we
372 * hit a normal sed command terminator or end of string */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000373 filenamelen = strcspn(&filecmdstr[idx], semicolon_whitespace);
Matt Kraai6e9e1362001-05-27 14:11:52 +0000374 sed_cmd->filename = xmalloc(filenamelen + 1);
375 safe_strncpy(sed_cmd->filename, &filecmdstr[idx], filenamelen + 1);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000376
377 return idx + filenamelen;
378}
379
380
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000381static char *parse_cmd_str(sed_cmd_t * const sed_cmd, char *cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000382{
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000383 /* if it was a single-letter command that takes no arguments (such as 'p'
384 * or 'd') all we need to do is increment the index past that command */
Glenn L McGrathff724fb2003-03-10 02:56:56 +0000385 if (strchr("npqd=", sed_cmd->cmd)) {
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000386 cmdstr++;
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000387 }
388 /* handle (s)ubstitution command */
389 else if (sed_cmd->cmd == 's') {
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000390 cmdstr += parse_subst_cmd(sed_cmd, cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000391 }
392 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
393 else if (strchr("aic", sed_cmd->cmd)) {
394 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c')
395 error_msg_and_die("only a beginning address can be specified for edit commands");
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000396 cmdstr += parse_edit_cmd(sed_cmd, cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000397 }
398 /* handle file cmds: (r)ead */
399 else if (sed_cmd->cmd == 'r') {
400 if (sed_cmd->end_line || sed_cmd->end_match)
401 error_msg_and_die("Command only uses one address");
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000402 cmdstr += parse_file_cmd(sed_cmd, cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000403 }
404 else {
405 error_msg_and_die("Unsupported command %c", sed_cmd->cmd);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000406 }
Mark Whitley70705d72000-07-14 19:06:30 +0000407
408 /* give back whatever's left over */
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000409 return(cmdstr);
Eric Andersen50d63601999-11-09 01:47:36 +0000410}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000411
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000412static char *add_cmd(sed_cmd_t *sed_cmd, char *cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000413{
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000414
415 /* Skip over leading whitespace and semicolons */
416 cmdstr += strspn(cmdstr, semicolon_whitespace);
Erik Andersen1266a131999-12-29 22:19:46 +0000417
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000418 /* if we ate the whole thing, that means there was just trailing
419 * whitespace or a final / no-op semicolon. either way, get out */
420 if (*cmdstr == '\0') {
421 return(NULL);
422 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000423
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000424 /* if this is a comment, jump past it and keep going */
425 if (*cmdstr == '#') {
426 return(strpbrk(cmdstr, "\n\r"));
427 }
428
429 /* parse the command
430 * format is: [addr][,addr]cmd
431 * |----||-----||-|
432 * part1 part2 part3
433 */
434
435 /* first part (if present) is an address: either a '$', a number or a /regex/ */
436 cmdstr += get_address(&(sed_cmd->delimiter), cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
437
438 /* second part (if present) will begin with a comma */
439 if (*cmdstr == ',') {
440 int idx;
441 cmdstr++;
442 idx = get_address(&(sed_cmd->delimiter), cmdstr, &sed_cmd->end_line, &sed_cmd->end_match);
443 if (idx == 0) {
444 error_msg_and_die("get_address: no address found in string\n"
445 "\t(you probably didn't check the string you passed me)");
Mark Whitley70705d72000-07-14 19:06:30 +0000446 }
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000447 cmdstr += idx;
448 }
Mark Whitley70705d72000-07-14 19:06:30 +0000449
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000450 /* skip whitespace before the command */
451 while (isspace(*cmdstr)) {
452 cmdstr++;
453 }
454
455 /* there my be the inversion flag between part2 and part3 */
456 if (*cmdstr == '!') {
457 sed_cmd->invert = 1;
458 cmdstr++;
459
460#ifdef SED_FEATURE_STRICT_CHECKING
461 /* According to the spec
462 * It is unspecified whether <blank>s can follow a '!' character,
463 * and conforming applications shall not follow a '!' character
464 * with <blank>s.
465 */
466 if (isblank(cmdstr[idx]) {
467 error_msg_and_die("blank follows '!'");
468 }
469#else
470 /* skip whitespace before the command */
471 while (isspace(*cmdstr)) {
472 cmdstr++;
473 }
474#endif
475
476 }
477
478 /* last part (mandatory) will be a command */
479 if (*cmdstr == '\0')
480 error_msg_and_die("missing command");
481
482 sed_cmd->cmd = *cmdstr;
483 cmdstr++;
484
485 if (sed_cmd->cmd == '{') {
486 do {
487 char *end_ptr = strpbrk(cmdstr, ";}");
488 *end_ptr = '\0';
489 add_cmd(sed_cmd, cmdstr);
490 cmdstr = end_ptr + 1;
491 } while (*cmdstr != '\0');
492 } else {
493
494 cmdstr = parse_cmd_str(sed_cmd, cmdstr);
495
496 /* Add the command to the command array */
497 sed_cmds = xrealloc(sed_cmds, sizeof(sed_cmd_t) * (++ncmds));
498 sed_cmds[ncmds-1] = xmalloc(sizeof(sed_cmd_t));
499 memcpy(sed_cmds[ncmds-1], sed_cmd, sizeof(sed_cmd_t));
500 }
501 return(cmdstr);
502}
503
504static void add_cmd_str(char *cmdstr)
505{
506 do {
507 sed_cmd_t *sed_cmd;
508 sed_cmd = xcalloc(1, sizeof(sed_cmd_t));
509 cmdstr = add_cmd(sed_cmd, cmdstr);
510 } while (cmdstr && strlen(cmdstr));
Mark Whitley6315ce62000-07-10 22:55:51 +0000511}
512
513
514static void load_cmd_file(char *filename)
515{
516 FILE *cmdfile;
517 char *line;
Mark Whitley94074a92000-07-14 00:00:15 +0000518 char *nextline;
Mark Whitley6315ce62000-07-10 22:55:51 +0000519
Matt Kraaibbaef662000-09-27 02:43:35 +0000520 cmdfile = xfopen(filename, "r");
Mark Whitley6315ce62000-07-10 22:55:51 +0000521
522 while ((line = get_line_from_file(cmdfile)) != NULL) {
Mark Whitley94074a92000-07-14 00:00:15 +0000523 /* if a line ends with '\' it needs the next line appended to it */
524 while (line[strlen(line)-2] == '\\' &&
525 (nextline = get_line_from_file(cmdfile)) != NULL) {
Matt Kraai322ae932000-09-13 02:46:14 +0000526 line = xrealloc(line, strlen(line) + strlen(nextline) + 1);
Mark Whitley94074a92000-07-14 00:00:15 +0000527 strcat(line, nextline);
Mark Whitley464c5de2000-07-14 23:24:00 +0000528 free(nextline);
Mark Whitley94074a92000-07-14 00:00:15 +0000529 }
Mark Whitley464c5de2000-07-14 23:24:00 +0000530 /* eat trailing newline (if any) --if I don't do this, edit commands
531 * (aic) will print an extra newline */
Matt Kraai05e782d2001-02-01 16:49:30 +0000532 chomp(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000533 add_cmd_str(line);
534 free(line);
535 }
536}
537
Eric Andersenc52a6b02001-11-10 10:49:42 +0000538struct pipeline {
539 char *buf;
540 int idx;
541 int len;
542};
543
Eric Andersenb76cb682001-08-22 05:58:16 +0000544#define PIPE_MAGIC 0x7f
545#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000546
547void pipe_putc(struct pipeline *const pipeline, char c)
548{
549 if (pipeline->buf[pipeline->idx] == PIPE_MAGIC) {
550 pipeline->buf =
551 xrealloc(pipeline->buf, pipeline->len + PIPE_GROW);
552 memset(pipeline->buf + pipeline->len, 0, PIPE_GROW);
553 pipeline->len += PIPE_GROW;
554 pipeline->buf[pipeline->len - 1] = PIPE_MAGIC;
555 }
556 pipeline->buf[pipeline->idx++] = (c);
557}
558
559#define pipeputc(c) pipe_putc(pipeline, c)
560
561#if 0
Eric Andersenb76cb682001-08-22 05:58:16 +0000562{ if (pipeline[pipeline_idx] == PIPE_MAGIC) { \
563 pipeline = xrealloc(pipeline, pipeline_len+PIPE_GROW); \
564 memset(pipeline+pipeline_len, 0, PIPE_GROW); \
565 pipeline_len += PIPE_GROW; \
566 pipeline[pipeline_len-1] = PIPE_MAGIC; } \
567 pipeline[pipeline_idx++] = (c); }
Eric Andersenc52a6b02001-11-10 10:49:42 +0000568#endif
Eric Andersenb76cb682001-08-22 05:58:16 +0000569
570static void print_subst_w_backrefs(const char *line, const char *replace,
Eric Andersenc52a6b02001-11-10 10:49:42 +0000571 regmatch_t *regmatch, struct pipeline *const pipeline, int matches)
Mark Whitley97562bd2000-07-17 20:06:42 +0000572{
573 int i;
574
575 /* go through the replacement string */
576 for (i = 0; replace[i]; i++) {
577 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
578 if (replace[i] == '\\' && isdigit(replace[i+1])) {
579 int j;
580 char tmpstr[2];
581 int backref;
582 ++i; /* i now indexes the backref number, instead of the leading slash */
583 tmpstr[0] = replace[i];
584 tmpstr[1] = 0;
585 backref = atoi(tmpstr);
586 /* print out the text held in regmatch[backref] */
Matt Kraaia3e4f452001-08-20 21:21:06 +0000587 if (backref <= matches && regmatch[backref].rm_so != -1)
588 for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000589 pipeputc(line[j]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000590 }
591
Mark Whitley83e85f62000-07-25 20:48:44 +0000592 /* if we find a backslash escaped character, print the character */
593 else if (replace[i] == '\\') {
594 ++i;
Eric Andersenb76cb682001-08-22 05:58:16 +0000595 pipeputc(replace[i]);
Mark Whitley83e85f62000-07-25 20:48:44 +0000596 }
597
Mark Whitley97562bd2000-07-17 20:06:42 +0000598 /* if we find an unescaped '&' print out the whole matched text.
599 * fortunately, regmatch[0] contains the indicies to the whole matched
600 * expression (kinda seems like it was designed for just such a
601 * purpose...) */
602 else if (replace[i] == '&' && replace[i-1] != '\\') {
603 int j;
604 for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000605 pipeputc(line[j]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000606 }
607 /* nothing special, just print this char of the replacement string to stdout */
608 else
Eric Andersenb76cb682001-08-22 05:58:16 +0000609 pipeputc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000610 }
611}
612
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000613static int do_subst_command(const sed_cmd_t *sed_cmd, char **line)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000614{
Eric Andersenb76cb682001-08-22 05:58:16 +0000615 char *hackline = *line;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000616 struct pipeline thepipe = { NULL, 0 , 0};
617 struct pipeline *const pipeline = &thepipe;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000618 int altered = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000619 regmatch_t *regmatch = NULL;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000620
Mark Whitley2dc192f2000-11-03 19:47:00 +0000621 /* we only proceed if the substitution 'search' expression matches */
Eric Andersenb76cb682001-08-22 05:58:16 +0000622 if (regexec(sed_cmd->sub_match, hackline, 0, NULL, 0) == REG_NOMATCH)
Mark Whitley2dc192f2000-11-03 19:47:00 +0000623 return 0;
624
625 /* whaddaya know, it matched. get the number of back references */
626 regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs+1));
627
Eric Andersenb76cb682001-08-22 05:58:16 +0000628 /* allocate more PIPE_GROW bytes
629 if replaced string is larger than original */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000630 thepipe.len = strlen(hackline)+PIPE_GROW;
631 thepipe.buf = xcalloc(1, thepipe.len);
Eric Andersenb76cb682001-08-22 05:58:16 +0000632 /* buffer magic */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000633 thepipe.buf[thepipe.len-1] = PIPE_MAGIC;
Eric Andersenb76cb682001-08-22 05:58:16 +0000634
Mark Whitley2dc192f2000-11-03 19:47:00 +0000635 /* and now, as long as we've got a line to try matching and if we can match
636 * the search string, we make substitutions */
Matt Kraai8470b9a2001-10-23 21:12:07 +0000637 while ((*hackline || !altered) && (regexec(sed_cmd->sub_match, hackline,
638 sed_cmd->num_backrefs+1, regmatch, 0) != REG_NOMATCH) ) {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000639 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000640
Mark Whitley2dc192f2000-11-03 19:47:00 +0000641 /* print everything before the match */
642 for (i = 0; i < regmatch[0].rm_so; i++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000643 pipeputc(hackline[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000644
Mark Whitley2dc192f2000-11-03 19:47:00 +0000645 /* then print the substitution string */
Eric Andersenb76cb682001-08-22 05:58:16 +0000646 print_subst_w_backrefs(hackline, sed_cmd->replace, regmatch,
Eric Andersenc52a6b02001-11-10 10:49:42 +0000647 pipeline, sed_cmd->num_backrefs);
Mark Whitley97562bd2000-07-17 20:06:42 +0000648
Mark Whitley2dc192f2000-11-03 19:47:00 +0000649 /* advance past the match */
650 hackline += regmatch[0].rm_eo;
651 /* flag that something has changed */
652 altered++;
Mark Whitley97562bd2000-07-17 20:06:42 +0000653
Mark Whitley2dc192f2000-11-03 19:47:00 +0000654 /* if we're not doing this globally, get out now */
655 if (!sed_cmd->sub_g)
656 break;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000657 }
658
Eric Andersenb76cb682001-08-22 05:58:16 +0000659 for (; *hackline; hackline++) pipeputc(*hackline);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000660 if (thepipe.buf[thepipe.idx] == PIPE_MAGIC) thepipe.buf[thepipe.idx] = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000661
662 /* cleanup */
663 free(regmatch);
664
Eric Andersenb76cb682001-08-22 05:58:16 +0000665 free(*line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000666 *line = thepipe.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000667 return altered;
668}
Mark Whitley6315ce62000-07-10 22:55:51 +0000669
Mark Whitley6315ce62000-07-10 22:55:51 +0000670
671static void process_file(FILE *file)
672{
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000673 char *line;
Mark Whitley6315ce62000-07-10 22:55:51 +0000674 static int linenum = 0; /* GNU sed does not restart counting lines at EOF */
675 unsigned int still_in_range = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000676 int altered;
Mark Whitley6315ce62000-07-10 22:55:51 +0000677 int i;
678
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000679 line = get_line_from_file(file);
680 if (line == NULL) {
681 return;
682 }
683
Mark Whitley6315ce62000-07-10 22:55:51 +0000684 /* go through every line in the file */
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000685 do {
686 char *next_line;
687
688 /* Read one line in advance so we can act on the last line, the '$' address */
689 next_line = get_line_from_file(file);
Mark Whitley6315ce62000-07-10 22:55:51 +0000690
Mark Whitley9de26592001-05-14 19:44:44 +0000691 chomp(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000692 linenum++;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000693 altered = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +0000694
695 /* for every line, go through all the commands */
696 for (i = 0; i < ncmds; i++) {
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000697 sed_cmd_t *sed_cmd = sed_cmds[i];
Robert Griebl47abc492002-06-11 23:43:27 +0000698 int deleted = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000699
700 /*
701 * entry point into sedding...
702 */
Robert Griebl47abc492002-06-11 23:43:27 +0000703 int matched = (
Matt Kraai02c40a72001-06-21 13:57:51 +0000704 /* no range necessary */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000705 (sed_cmd->beg_line == 0 && sed_cmd->end_line == 0 &&
706 sed_cmd->beg_match == NULL &&
707 sed_cmd->end_match == NULL) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000708 /* this line number is the first address we're looking for */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000709 (sed_cmd->beg_line && (sed_cmd->beg_line == linenum)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000710 /* this line matches our first address regex */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000711 (sed_cmd->beg_match && (regexec(sed_cmd->beg_match, line, 0, NULL, 0) == 0)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000712 /* we are currently within the beginning & ending address range */
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000713 still_in_range || ((sed_cmd->beg_line == -1) && (next_line == NULL))
Robert Griebl47abc492002-06-11 23:43:27 +0000714 );
715
716 if (sed_cmd->invert ^ matched) {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000717
718 /*
719 * actual sedding
720 */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000721 switch (sed_cmd->cmd) {
Glenn L McGrath0a65e192002-12-23 10:16:12 +0000722 case '=':
723 printf("%d\n", linenum);
724 break;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000725 case 'p':
726 puts(line);
727 break;
728
729 case 'd':
730 altered++;
Matt Kraai5c69cd82002-04-01 16:17:37 +0000731 deleted = 1;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000732 break;
733
734 case 's':
735
736 /*
737 * Some special cases for 's' printing to make it compliant with
738 * GNU sed printing behavior (aka "The -n | s///p Matrix"):
739 *
740 * -n ONLY = never print anything regardless of any successful
741 * substitution
742 *
743 * s///p ONLY = always print successful substitutions, even if
744 * the line is going to be printed anyway (line will be printed
745 * twice).
746 *
747 * -n AND s///p = print ONLY a successful substitution ONE TIME;
748 * no other lines are printed - this is the reason why the 'p'
749 * flag exists in the first place.
750 */
751
752 /* if the user specified that they didn't want anything printed (i.e., a -n
753 * flag and no 'p' flag after the s///), then there's really no point doing
754 * anything here. */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000755 if (be_quiet && !sed_cmd->sub_p)
Mark Whitley0915c4b2001-06-11 23:50:06 +0000756 break;
757
758 /* we print the line once, unless we were told to be quiet */
759 if (!be_quiet)
Eric Andersenc52a6b02001-11-10 10:49:42 +0000760 altered |= do_subst_command(sed_cmd, &line);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000761
762 /* we also print the line if we were given the 'p' flag
763 * (this is quite possibly the second printing) */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000764 if (sed_cmd->sub_p)
765 altered |= do_subst_command(sed_cmd, &line);
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000766 if (altered && (i+1 >= ncmds || sed_cmds[i+1]->cmd != 's'))
Eric Andersenb76cb682001-08-22 05:58:16 +0000767 puts(line);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000768
769 break;
770
771 case 'a':
772 puts(line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000773 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000774 altered++;
775 break;
776
777 case 'i':
Eric Andersenc52a6b02001-11-10 10:49:42 +0000778 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000779 break;
780
781 case 'c':
782 /* single-address case */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000783 if ((sed_cmd->end_match == NULL && sed_cmd->end_line == 0)
Mark Whitley0915c4b2001-06-11 23:50:06 +0000784 /* multi-address case */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000785 /* - matching text */
786 || (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
787 /* - matching line numbers */
788 || (sed_cmd->end_line > 0 && sed_cmd->end_line == linenum))
789 {
790 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000791 }
792 altered++;
793
794 break;
795
796 case 'r': {
Glenn L McGrathbed40332003-03-10 02:21:14 +0000797 FILE *outfile;
798 puts(line);
799 outfile = fopen(sed_cmd->filename, "r");
800 if (outfile)
801 print_file(outfile);
802 /* else if we couldn't open the output file,
803 * no biggie, just don't print anything */
804 altered++;
805 }
806 break;
807 case 'q': /* Branch to end of script and quit */
808 free(line);
809 return;
Glenn L McGrathff724fb2003-03-10 02:56:56 +0000810 case 'n': /* Read next line from input */
811 i = ncmds;
812 break;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000813 }
Robert Griebl47abc492002-06-11 23:43:27 +0000814 }
Mark Whitley0915c4b2001-06-11 23:50:06 +0000815
Robert Griebl47abc492002-06-11 23:43:27 +0000816 /*
817 * exit point from sedding...
818 */
819 if (matched) {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000820 if (
821 /* this is a single-address command or... */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000822 (sed_cmd->end_line == 0 && sed_cmd->end_match == NULL) || (
Mark Whitley0915c4b2001-06-11 23:50:06 +0000823 /* we were in the middle of our address range (this
824 * isn't the first time through) and.. */
825 (still_in_range == 1) && (
826 /* this line number is the last address we're looking for or... */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000827 (sed_cmd->end_line && (sed_cmd->end_line == linenum)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000828 /* this line matches our last address regex */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000829 (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
Mark Whitley0915c4b2001-06-11 23:50:06 +0000830 )
831 )
832 ) {
833 /* we're out of our address range */
834 still_in_range = 0;
835 }
836
837 /* didn't hit the exit? then we're still in the middle of an address range */
838 else {
839 still_in_range = 1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000840 }
841 }
Robert Griebl47abc492002-06-11 23:43:27 +0000842
843 if (deleted)
844 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000845 }
Erik Andersen1266a131999-12-29 22:19:46 +0000846
Mark Whitley2dc192f2000-11-03 19:47:00 +0000847 /* we will print the line unless we were told to be quiet or if the
848 * line was altered (via a 'd'elete or 's'ubstitution), in which case
849 * the altered line was already printed */
Mark Whitley0915c4b2001-06-11 23:50:06 +0000850 if (!be_quiet && !altered)
Mark Whitleydd527d32001-05-14 19:53:08 +0000851 puts(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000852
853 free(line);
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000854 line = next_line;
855 } while (line);
Erik Andersen1266a131999-12-29 22:19:46 +0000856}
857
858extern int sed_main(int argc, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000859{
Matt Kraaia5f09c62001-11-12 16:44:55 +0000860 int opt, status = EXIT_SUCCESS;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000861
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000862#ifdef CONFIG_FEATURE_CLEAN_UP
Mark Whitley858c1ad2000-07-11 21:38:47 +0000863 /* destroy command strings on exit */
Matt Kraaia9819b22000-12-22 01:48:07 +0000864 if (atexit(destroy_cmd_strs) == -1)
865 perror_msg_and_die("atexit");
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000866#endif
Mark Whitley858c1ad2000-07-11 21:38:47 +0000867
Mark Whitley6315ce62000-07-10 22:55:51 +0000868 /* do normal option parsing */
Eric Andersenb50da532001-02-17 16:52:35 +0000869 while ((opt = getopt(argc, argv, "ne:f:")) > 0) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000870 switch (opt) {
Erik Andersene916d242000-03-06 19:20:35 +0000871 case 'n':
Mark Whitley6315ce62000-07-10 22:55:51 +0000872 be_quiet++;
Erik Andersene916d242000-03-06 19:20:35 +0000873 break;
874 case 'e':
Mark Whitley6315ce62000-07-10 22:55:51 +0000875 add_cmd_str(optarg);
Erik Andersene916d242000-03-06 19:20:35 +0000876 break;
Mark Whitley6315ce62000-07-10 22:55:51 +0000877 case 'f':
878 load_cmd_file(optarg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000879 break;
Eric Andersenb50da532001-02-17 16:52:35 +0000880 default:
881 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000882 }
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000883 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000884
885 /* if we didn't get a pattern from a -e and no command file was specified,
886 * argv[optind] should be the pattern. no pattern, no worky */
887 if (ncmds == 0) {
888 if (argv[optind] == NULL)
Eric Andersen67991cf2001-02-14 21:23:06 +0000889 show_usage();
Mark Whitley6315ce62000-07-10 22:55:51 +0000890 else {
891 add_cmd_str(argv[optind]);
892 optind++;
893 }
894 }
895
Mark Whitley6315ce62000-07-10 22:55:51 +0000896 /* argv[(optind)..(argc-1)] should be names of file to process. If no
897 * files were specified or '-' was specified, take input from stdin.
898 * Otherwise, we process all the files specified. */
899 if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) {
900 process_file(stdin);
901 }
902 else {
903 int i;
904 FILE *file;
905 for (i = optind; i < argc; i++) {
Eric Andersen9c6b5fc2001-11-17 07:23:46 +0000906 file = wfopen(argv[i], "r");
907 if (file) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000908 process_file(file);
909 fclose(file);
Matt Kraaia5f09c62001-11-12 16:44:55 +0000910 } else
911 status = EXIT_FAILURE;
Mark Whitley6315ce62000-07-10 22:55:51 +0000912 }
913 }
914
Matt Kraaia5f09c62001-11-12 16:44:55 +0000915 return status;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000916}