blob: 1cbf974b650755183e0fd4e0874282365ff368a7 [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
Glenn L McGrath961c6c12003-03-28 04:43:39 +000058/* the spec says label must be at least 8 chars, behavious is unspecified if more than 8 chars */
59#define SED_LABEL_LENGTH 8
60
Mark Whitley6315ce62000-07-10 22:55:51 +000061/* externs */
Eric Andersened3ef502001-01-27 08:24:39 +000062extern void xregcomp(regex_t *preg, const char *regex, int cflags);
Mark Whitley6315ce62000-07-10 22:55:51 +000063extern int optind; /* in unistd.h */
64extern char *optarg; /* ditto */
65
66/* options */
67static int be_quiet = 0;
68
Mark Whitley0e4cec02000-08-21 21:29:20 +000069
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +000070typedef struct sed_cmd_s {
Eric Andersenc52a6b02001-11-10 10:49:42 +000071 /* Order by alignment requirements */
Mark Whitley2dc192f2000-11-03 19:47:00 +000072
Mark Whitley6315ce62000-07-10 22:55:51 +000073 /* address storage */
Mark Whitley6315ce62000-07-10 22:55:51 +000074 regex_t *beg_match; /* sed -e '/match/cmd' */
75 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
76
Mark Whitley2dc192f2000-11-03 19:47:00 +000077 /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
78
79 /* sed -e 's/sub_match/replace/' */
80 regex_t *sub_match;
81 char *replace;
Eric Andersenc52a6b02001-11-10 10:49:42 +000082
83 /* EDIT COMMAND (a,i,c) SPECIFIC FIELDS */
84 char *editline;
85
86 /* FILE COMMAND (r) SPECIFIC FIELDS */
87 char *filename;
88
89 /* address storage */
90 int beg_line; /* 'sed 1p' 0 == no begining line, apply commands to all lines */
91 int end_line; /* 'sed 1,3p' 0 == no end line, use only beginning. -1 == $ */
92 /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
93
Mark Whitley97562bd2000-07-17 20:06:42 +000094 unsigned int num_backrefs:4; /* how many back references (\1..\9) */
95 /* Note: GNU/POSIX sed does not save more than nine backrefs, so
96 * we only use 4 bits to hold the number */
Mark Whitley2dc192f2000-11-03 19:47:00 +000097 unsigned int sub_g:1; /* sed -e 's/foo/bar/g' (global) */
98 unsigned int sub_p:2; /* sed -e 's/foo/bar/p' (print substitution) */
Mark Whitley94074a92000-07-14 00:00:15 +000099
Eric Andersenc52a6b02001-11-10 10:49:42 +0000100 /* GENERAL FIELDS */
101 char delimiter; /* The delimiter used to separate regexps */
Mark Whitley2dc192f2000-11-03 19:47:00 +0000102
Eric Andersenc52a6b02001-11-10 10:49:42 +0000103 /* the command */
104 char cmd; /* p,d,s (add more at your leisure :-) */
Robert Griebl47abc492002-06-11 23:43:27 +0000105
106 /* inversion flag */
Glenn L McGrathc949bfa2003-03-28 03:53:31 +0000107 int invert; /* the '!' after the address */
108
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000109 /* Branch commands */
110 char label[SED_LABEL_LENGTH + 1];
111
Glenn L McGrathc949bfa2003-03-28 03:53:31 +0000112 /* next command in list (sequential list of specified commands) */
113 struct sed_cmd_s *linear;
114
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000115} sed_cmd_t;
Mark Whitley6315ce62000-07-10 22:55:51 +0000116
117/* globals */
Glenn L McGrathc949bfa2003-03-28 03:53:31 +0000118/* linked list of sed commands */
119static sed_cmd_t sed_cmd_head;
120static sed_cmd_t *sed_cmd_tail = &sed_cmd_head;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000121
Eric Andersenc52a6b02001-11-10 10:49:42 +0000122const char * const semicolon_whitespace = "; \n\r\t\v\0";
123
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000124#ifdef CONFIG_FEATURE_CLEAN_UP
Matt Kraai0c390a72001-11-20 16:00:19 +0000125static void destroy_cmd_strs(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000126{
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000127 sed_cmd_t *sed_cmd = sed_cmd_head.linear;
Mark Whitley6315ce62000-07-10 22:55:51 +0000128
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000129 while (sed_cmd) {
130 sed_cmd_t *sed_cmd_next = sed_cmd->linear;
Mark Whitley6315ce62000-07-10 22:55:51 +0000131
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000132 if (sed_cmd->beg_match) {
133 regfree(sed_cmd->beg_match);
134 free(sed_cmd->beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000135 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000136 if (sed_cmd->end_match) {
137 regfree(sed_cmd->end_match);
138 free(sed_cmd->end_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000139 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000140 if (sed_cmd->sub_match) {
141 regfree(sed_cmd->sub_match);
142 free(sed_cmd->sub_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000143 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000144 free(sed_cmd->replace);
145 free(sed_cmd);
146 sed_cmd = sed_cmd_next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000147 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000148}
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000149#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000150
Mark Whitley6315ce62000-07-10 22:55:51 +0000151
152/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000153 * index_of_next_unescaped_regexp_delim - walks left to right through a string
154 * beginning at a specified index and returns the index of the next regular
155 * expression delimiter (typically a forward * slash ('/')) not preceeded by
156 * a backslash ('\').
Mark Whitley6315ce62000-07-10 22:55:51 +0000157 */
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000158static int index_of_next_unescaped_regexp_delim(const char delimiter, const char *str, int idx)
Mark Whitley6315ce62000-07-10 22:55:51 +0000159{
Matt Kraaia0065d52001-08-24 14:45:50 +0000160 int bracket = -1;
161 int escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000162 char ch;
Matt Kraaia0065d52001-08-24 14:45:50 +0000163
Eric Andersenc52a6b02001-11-10 10:49:42 +0000164 for ( ; (ch = str[idx]); idx++) {
Matt Kraaia0065d52001-08-24 14:45:50 +0000165 if (bracket != -1) {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000166 if (ch == ']' && !(bracket == idx - 1 ||
Matt Kraaia0065d52001-08-24 14:45:50 +0000167 (bracket == idx - 2 && str[idx-1] == '^')))
168 bracket = -1;
169 } else if (escaped)
170 escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000171 else if (ch == '\\')
Matt Kraaia0065d52001-08-24 14:45:50 +0000172 escaped = 1;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000173 else if (ch == '[')
Matt Kraaia0065d52001-08-24 14:45:50 +0000174 bracket = idx;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000175 else if (ch == delimiter)
Mark Whitley97562bd2000-07-17 20:06:42 +0000176 return idx;
177 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000178
Mark Whitley97562bd2000-07-17 20:06:42 +0000179 /* if we make it to here, we've hit the end of the string */
180 return -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000181}
182
183/*
184 * returns the index in the string just past where the address ends.
185 */
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000186static int get_address(char *delimiter, char *my_str, int *linenum, regex_t **regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000187{
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000188 int idx = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +0000189 if (isdigit(my_str[idx])) {
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000190 char *endstr;
191 *linenum = strtol(my_str, &endstr, 10);
192 /* endstr shouldnt ever equal NULL */
193 idx = endstr - my_str;
Mark Whitley6315ce62000-07-10 22:55:51 +0000194 }
195 else if (my_str[idx] == '$') {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000196 *linenum = -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000197 idx++;
198 }
Robert Griebl79401472002-08-06 21:07:17 +0000199 else if (my_str[idx] == '/' || my_str[idx] == '\\') {
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000200 int idx_start = 1;
201
Glenn L McGrathf3bd7c42003-03-09 15:40:40 +0000202 *delimiter = '/';
Robert Griebl79401472002-08-06 21:07:17 +0000203 if (my_str[idx] == '\\') {
Robert Griebl00f5ecb2002-08-06 23:13:31 +0000204 idx_start++;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000205 *delimiter = my_str[++idx];
Robert Griebl79401472002-08-06 21:07:17 +0000206 }
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000207 idx = index_of_next_unescaped_regexp_delim(*delimiter, my_str, ++idx);
208 if (idx == -1) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000209 bb_error_msg_and_die("unterminated match expression");
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000210 }
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000211 my_str[idx] = '\0';
212 *regex = (regex_t *)xmalloc(sizeof(regex_t));
Robert Griebl00f5ecb2002-08-06 23:13:31 +0000213 xregcomp(*regex, my_str+idx_start, REG_NEWLINE);
Mark Whitley496e33f2000-07-13 22:52:02 +0000214 idx++; /* so it points to the next character after the last '/' */
Mark Whitley6315ce62000-07-10 22:55:51 +0000215 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000216 return idx;
217}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000218
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000219static int parse_subst_cmd(sed_cmd_t * const sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000220{
Glenn L McGrathe01f9662003-03-18 08:37:57 +0000221 int oldidx;
222 int cflags = 0;
Mark Whitley06f35292000-07-13 19:58:04 +0000223 char *match;
224 int idx = 0;
Mark Whitley97562bd2000-07-17 20:06:42 +0000225 int j;
Mark Whitley06f35292000-07-13 19:58:04 +0000226
227 /*
228 * the string that gets passed to this function should look like this:
Mark Whitley0e4cec02000-08-21 21:29:20 +0000229 * s/match/replace/gIp
230 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000231 * mandatory optional
232 *
233 * (all three of the '/' slashes are mandatory)
234 */
235
Eric Andersen28b3c532001-01-02 11:01:31 +0000236 /* verify that the 's' is followed by something. That something
237 * (typically a 'slash') is now our regexp delimiter... */
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000238 if (substr[idx] == '\0')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000239 bb_error_msg_and_die("bad format in substitution expression");
Eric Andersen28b3c532001-01-02 11:01:31 +0000240 else
241 sed_cmd->delimiter=substr[idx];
Mark Whitley06f35292000-07-13 19:58:04 +0000242
243 /* save the match string */
244 oldidx = idx+1;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000245 idx = index_of_next_unescaped_regexp_delim(sed_cmd->delimiter, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000246 if (idx == -1)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000247 bb_error_msg_and_die("bad format in substitution expression");
248 match = bb_xstrndup(substr + oldidx, idx - oldidx);
Mark Whitley06f35292000-07-13 19:58:04 +0000249
Mark Whitley97562bd2000-07-17 20:06:42 +0000250 /* determine the number of back references in the match string */
251 /* Note: we compute this here rather than in the do_subst_command()
252 * function to save processor time, at the expense of a little more memory
253 * (4 bits) per sed_cmd */
254
255 /* sed_cmd->num_backrefs = 0; */ /* XXX: not needed? --apparently not */
256 for (j = 0; match[j]; j++) {
257 /* GNU/POSIX sed does not save more than nine backrefs */
Mark Whitley2dc192f2000-11-03 19:47:00 +0000258 if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs <= 9)
Mark Whitley97562bd2000-07-17 20:06:42 +0000259 sed_cmd->num_backrefs++;
260 }
261
Mark Whitley06f35292000-07-13 19:58:04 +0000262 /* save the replacement string */
263 oldidx = idx+1;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000264 idx = index_of_next_unescaped_regexp_delim(sed_cmd->delimiter, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000265 if (idx == -1)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000266 bb_error_msg_and_die("bad format in substitution expression");
267 sed_cmd->replace = bb_xstrndup(substr + oldidx, idx - oldidx);
Mark Whitley06f35292000-07-13 19:58:04 +0000268
269 /* process the flags */
270 while (substr[++idx]) {
271 switch (substr[idx]) {
Mark Whitley70705d72000-07-14 19:06:30 +0000272 case 'g':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000273 sed_cmd->sub_g = 1;
Mark Whitley70705d72000-07-14 19:06:30 +0000274 break;
Glenn L McGrathbed40332003-03-10 02:21:14 +0000275 /* Hmm, i dont see the I option mentioned in the standard */
Mark Whitley70705d72000-07-14 19:06:30 +0000276 case 'I':
277 cflags |= REG_ICASE;
278 break;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000279 case 'p':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000280 sed_cmd->sub_p = 1;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000281 break;
Mark Whitley70705d72000-07-14 19:06:30 +0000282 default:
283 /* any whitespace or semicolon trailing after a s/// is ok */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000284 if (strchr(semicolon_whitespace, substr[idx]))
Mark Whitley70705d72000-07-14 19:06:30 +0000285 goto out;
286 /* else */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000287 bb_error_msg_and_die("bad option in substitution expression");
Mark Whitley06f35292000-07-13 19:58:04 +0000288 }
289 }
Mark Whitley70705d72000-07-14 19:06:30 +0000290
291out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000292 /* compile the match string into a regex */
Mark Whitley06f35292000-07-13 19:58:04 +0000293 sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t));
294 xregcomp(sed_cmd->sub_match, match, cflags);
295 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000296
297 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000298}
299
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000300static int parse_edit_cmd(sed_cmd_t *sed_cmd, const char *editstr)
Mark Whitley94074a92000-07-14 00:00:15 +0000301{
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000302 int i, j;
Mark Whitley94074a92000-07-14 00:00:15 +0000303
304 /*
305 * the string that gets passed to this function should look like this:
306 *
307 * need one of these
308 * |
309 * | this backslash (immediately following the edit command) is mandatory
310 * | |
311 * [aic]\
312 * TEXT1\
313 * TEXT2\
314 * TEXTN
315 *
316 * as soon as we hit a TEXT line that has no trailing '\', we're done.
317 * this means a command like:
318 *
319 * i\
320 * INSERTME
321 *
322 * is a-ok.
323 *
324 */
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000325 if ((*editstr != '\\') || ((editstr[1] != '\n') && (editstr[1] != '\r'))) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000326 bb_error_msg_and_die("bad format in edit expression");
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000327 }
Mark Whitley94074a92000-07-14 00:00:15 +0000328
329 /* store the edit line text */
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000330 sed_cmd->editline = xmalloc(strlen(&editstr[2]) + 2);
331 for (i = 2, j = 0; editstr[i] != '\0' && strchr("\r\n", editstr[i]) == NULL;
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000332 i++, j++) {
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000333 if ((editstr[i] == '\\') && strchr("\n\r", editstr[i+1]) != NULL) {
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000334 sed_cmd->editline[j] = '\n';
335 i++;
336 } else
337 sed_cmd->editline[j] = editstr[i];
Mark Whitley94074a92000-07-14 00:00:15 +0000338 }
Mark Whitley70705d72000-07-14 19:06:30 +0000339
Mark Whitley56c14a62001-04-20 23:41:44 +0000340 /* figure out if we need to add a newline */
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000341 if (sed_cmd->editline[j-1] != '\n')
342 sed_cmd->editline[j++] = '\n';
Mark Whitley56c14a62001-04-20 23:41:44 +0000343
344 /* terminate string */
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000345 sed_cmd->editline[j] = '\0';
Mark Whitley464c5de2000-07-14 23:24:00 +0000346
Matt Kraai5ed78ad2002-01-03 21:12:34 +0000347 return i;
Mark Whitley94074a92000-07-14 00:00:15 +0000348}
349
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000350
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000351static int parse_file_cmd(sed_cmd_t *sed_cmd, const char *filecmdstr)
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000352{
353 int idx = 0;
354 int filenamelen = 0;
355
356 /*
357 * the string that gets passed to this function should look like this:
358 * '[ ]filename'
359 * | |
360 * | a filename
361 * |
362 * optional whitespace
363
364 * re: the file to be read, the GNU manual says the following: "Note that
365 * if filename cannot be read, it is treated as if it were an empty file,
366 * without any error indication." Thus, all of the following commands are
367 * perfectly leagal:
368 *
369 * sed -e '1r noexist'
370 * sed -e '1r ;'
371 * sed -e '1r'
372 */
373
374 /* the file command may be followed by whitespace; move past it. */
375 while (isspace(filecmdstr[++idx]))
376 { ; }
377
378 /* the first non-whitespace we get is a filename. the filename ends when we
379 * hit a normal sed command terminator or end of string */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000380 filenamelen = strcspn(&filecmdstr[idx], semicolon_whitespace);
Matt Kraai6e9e1362001-05-27 14:11:52 +0000381 sed_cmd->filename = xmalloc(filenamelen + 1);
382 safe_strncpy(sed_cmd->filename, &filecmdstr[idx], filenamelen + 1);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000383
384 return idx + filenamelen;
385}
386
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000387/*
388 * Process the commands arguments
389 */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000390static char *parse_cmd_str(sed_cmd_t * const sed_cmd, char *cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000391{
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000392 /* handle (s)ubstitution command */
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000393 if (sed_cmd->cmd == 's') {
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000394 cmdstr += parse_subst_cmd(sed_cmd, cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000395 }
396 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
397 else if (strchr("aic", sed_cmd->cmd)) {
398 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000399 bb_error_msg_and_die("only a beginning address can be specified for edit commands");
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000400 cmdstr += parse_edit_cmd(sed_cmd, cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000401 }
402 /* handle file cmds: (r)ead */
403 else if (sed_cmd->cmd == 'r') {
404 if (sed_cmd->end_line || sed_cmd->end_match)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000405 bb_error_msg_and_die("Command only uses one address");
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000406 cmdstr += parse_file_cmd(sed_cmd, cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000407 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000408 /* handle branch commands */
Glenn L McGrath595a6a42003-03-28 08:36:52 +0000409 else if (strchr(":bt", sed_cmd->cmd)) {
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000410 int length;
411
412 cmdstr += strspn(cmdstr, " ");
413 length = strcspn(cmdstr, "; ");
414 if (length > SED_LABEL_LENGTH) {
415 length = SED_LABEL_LENGTH;
416 }
417 strncpy(sed_cmd->label, cmdstr, length);
418 cmdstr += length;
419 }
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000420 /* if it wasnt a single-letter command that takes no arguments
421 * then it must be an invalid command.
422 */
423 else if (strchr("nNpPqd=", sed_cmd->cmd) == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000424 bb_error_msg_and_die("Unsupported command %c", sed_cmd->cmd);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000425 }
Mark Whitley70705d72000-07-14 19:06:30 +0000426
427 /* give back whatever's left over */
Glenn L McGrath4c6523a2003-03-09 11:06:38 +0000428 return(cmdstr);
Eric Andersen50d63601999-11-09 01:47:36 +0000429}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000430
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000431static char *add_cmd(sed_cmd_t *sed_cmd, char *cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000432{
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000433
434 /* Skip over leading whitespace and semicolons */
435 cmdstr += strspn(cmdstr, semicolon_whitespace);
Erik Andersen1266a131999-12-29 22:19:46 +0000436
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000437 /* if we ate the whole thing, that means there was just trailing
438 * whitespace or a final / no-op semicolon. either way, get out */
439 if (*cmdstr == '\0') {
440 return(NULL);
441 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000442
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000443 /* if this is a comment, jump past it and keep going */
444 if (*cmdstr == '#') {
445 return(strpbrk(cmdstr, "\n\r"));
446 }
447
448 /* parse the command
449 * format is: [addr][,addr]cmd
450 * |----||-----||-|
451 * part1 part2 part3
452 */
453
454 /* first part (if present) is an address: either a '$', a number or a /regex/ */
455 cmdstr += get_address(&(sed_cmd->delimiter), cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
456
457 /* second part (if present) will begin with a comma */
458 if (*cmdstr == ',') {
459 int idx;
460 cmdstr++;
461 idx = get_address(&(sed_cmd->delimiter), cmdstr, &sed_cmd->end_line, &sed_cmd->end_match);
462 if (idx == 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000463 bb_error_msg_and_die("get_address: no address found in string\n"
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000464 "\t(you probably didn't check the string you passed me)");
Mark Whitley70705d72000-07-14 19:06:30 +0000465 }
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000466 cmdstr += idx;
467 }
Mark Whitley70705d72000-07-14 19:06:30 +0000468
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000469 /* skip whitespace before the command */
470 while (isspace(*cmdstr)) {
471 cmdstr++;
472 }
473
474 /* there my be the inversion flag between part2 and part3 */
475 if (*cmdstr == '!') {
476 sed_cmd->invert = 1;
477 cmdstr++;
478
479#ifdef SED_FEATURE_STRICT_CHECKING
480 /* According to the spec
481 * It is unspecified whether <blank>s can follow a '!' character,
482 * and conforming applications shall not follow a '!' character
483 * with <blank>s.
484 */
485 if (isblank(cmdstr[idx]) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000486 bb_error_msg_and_die("blank follows '!'");
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000487 }
488#else
489 /* skip whitespace before the command */
490 while (isspace(*cmdstr)) {
491 cmdstr++;
492 }
493#endif
494
495 }
496
497 /* last part (mandatory) will be a command */
498 if (*cmdstr == '\0')
Manuel Novoa III cad53642003-03-19 09:13:01 +0000499 bb_error_msg_and_die("missing command");
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000500
501 sed_cmd->cmd = *cmdstr;
502 cmdstr++;
503
504 if (sed_cmd->cmd == '{') {
505 do {
Glenn L McGrathc949bfa2003-03-28 03:53:31 +0000506 sed_cmd_t *sed_cmd_new;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000507 char *end_ptr = strpbrk(cmdstr, ";}");
Glenn L McGrathc949bfa2003-03-28 03:53:31 +0000508
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000509 *end_ptr = '\0';
Glenn L McGrathc949bfa2003-03-28 03:53:31 +0000510 sed_cmd_new = xcalloc(1, sizeof(sed_cmd_t));
511 sed_cmd_new->beg_match = sed_cmd->beg_match;
512 sed_cmd_new->end_match = sed_cmd->end_match;
513 sed_cmd_new->beg_line = sed_cmd->beg_line;
514 sed_cmd_new->end_line = sed_cmd->end_line;
515 sed_cmd_new->invert = sed_cmd->invert;
516
517 add_cmd(sed_cmd_new, cmdstr);
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000518 cmdstr = end_ptr + 1;
519 } while (*cmdstr != '\0');
520 } else {
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000521 cmdstr = parse_cmd_str(sed_cmd, cmdstr);
522
523 /* Add the command to the command array */
Glenn L McGrathc949bfa2003-03-28 03:53:31 +0000524 sed_cmd_tail->linear = sed_cmd;
525 sed_cmd_tail = sed_cmd_tail->linear;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000526 }
527 return(cmdstr);
528}
529
530static void add_cmd_str(char *cmdstr)
531{
532 do {
533 sed_cmd_t *sed_cmd;
534 sed_cmd = xcalloc(1, sizeof(sed_cmd_t));
535 cmdstr = add_cmd(sed_cmd, cmdstr);
536 } while (cmdstr && strlen(cmdstr));
Mark Whitley6315ce62000-07-10 22:55:51 +0000537}
538
539
540static void load_cmd_file(char *filename)
541{
542 FILE *cmdfile;
543 char *line;
Mark Whitley94074a92000-07-14 00:00:15 +0000544 char *nextline;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000545 char *e;
Mark Whitley6315ce62000-07-10 22:55:51 +0000546
Manuel Novoa III cad53642003-03-19 09:13:01 +0000547 cmdfile = bb_xfopen(filename, "r");
Mark Whitley6315ce62000-07-10 22:55:51 +0000548
Manuel Novoa III cad53642003-03-19 09:13:01 +0000549 while ((line = bb_get_line_from_file(cmdfile)) != NULL) {
Mark Whitley94074a92000-07-14 00:00:15 +0000550 /* if a line ends with '\' it needs the next line appended to it */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000551 while (((e = last_char_is(line, '\n')) != NULL)
552 && (e > line) && (e[-1] == '\\')
553 && ((nextline = bb_get_line_from_file(cmdfile)) != NULL)) {
554 line = xrealloc(line, (e - line) + 1 + strlen(nextline) + 1);
Mark Whitley94074a92000-07-14 00:00:15 +0000555 strcat(line, nextline);
Mark Whitley464c5de2000-07-14 23:24:00 +0000556 free(nextline);
Mark Whitley94074a92000-07-14 00:00:15 +0000557 }
Mark Whitley464c5de2000-07-14 23:24:00 +0000558 /* eat trailing newline (if any) --if I don't do this, edit commands
559 * (aic) will print an extra newline */
Matt Kraai05e782d2001-02-01 16:49:30 +0000560 chomp(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000561 add_cmd_str(line);
562 free(line);
563 }
564}
565
Eric Andersenc52a6b02001-11-10 10:49:42 +0000566struct pipeline {
567 char *buf;
568 int idx;
569 int len;
570};
571
Eric Andersenb76cb682001-08-22 05:58:16 +0000572#define PIPE_MAGIC 0x7f
573#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000574
575void pipe_putc(struct pipeline *const pipeline, char c)
576{
577 if (pipeline->buf[pipeline->idx] == PIPE_MAGIC) {
578 pipeline->buf =
579 xrealloc(pipeline->buf, pipeline->len + PIPE_GROW);
580 memset(pipeline->buf + pipeline->len, 0, PIPE_GROW);
581 pipeline->len += PIPE_GROW;
582 pipeline->buf[pipeline->len - 1] = PIPE_MAGIC;
583 }
584 pipeline->buf[pipeline->idx++] = (c);
585}
586
587#define pipeputc(c) pipe_putc(pipeline, c)
588
589#if 0
Eric Andersenb76cb682001-08-22 05:58:16 +0000590{ if (pipeline[pipeline_idx] == PIPE_MAGIC) { \
591 pipeline = xrealloc(pipeline, pipeline_len+PIPE_GROW); \
592 memset(pipeline+pipeline_len, 0, PIPE_GROW); \
593 pipeline_len += PIPE_GROW; \
594 pipeline[pipeline_len-1] = PIPE_MAGIC; } \
595 pipeline[pipeline_idx++] = (c); }
Eric Andersenc52a6b02001-11-10 10:49:42 +0000596#endif
Eric Andersenb76cb682001-08-22 05:58:16 +0000597
598static void print_subst_w_backrefs(const char *line, const char *replace,
Eric Andersenc52a6b02001-11-10 10:49:42 +0000599 regmatch_t *regmatch, struct pipeline *const pipeline, int matches)
Mark Whitley97562bd2000-07-17 20:06:42 +0000600{
601 int i;
602
603 /* go through the replacement string */
604 for (i = 0; replace[i]; i++) {
605 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
606 if (replace[i] == '\\' && isdigit(replace[i+1])) {
607 int j;
608 char tmpstr[2];
609 int backref;
610 ++i; /* i now indexes the backref number, instead of the leading slash */
611 tmpstr[0] = replace[i];
612 tmpstr[1] = 0;
613 backref = atoi(tmpstr);
614 /* print out the text held in regmatch[backref] */
Matt Kraaia3e4f452001-08-20 21:21:06 +0000615 if (backref <= matches && regmatch[backref].rm_so != -1)
616 for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000617 pipeputc(line[j]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000618 }
619
Mark Whitley83e85f62000-07-25 20:48:44 +0000620 /* if we find a backslash escaped character, print the character */
621 else if (replace[i] == '\\') {
622 ++i;
Eric Andersenb76cb682001-08-22 05:58:16 +0000623 pipeputc(replace[i]);
Mark Whitley83e85f62000-07-25 20:48:44 +0000624 }
625
Mark Whitley97562bd2000-07-17 20:06:42 +0000626 /* if we find an unescaped '&' print out the whole matched text.
627 * fortunately, regmatch[0] contains the indicies to the whole matched
628 * expression (kinda seems like it was designed for just such a
629 * purpose...) */
630 else if (replace[i] == '&' && replace[i-1] != '\\') {
631 int j;
632 for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000633 pipeputc(line[j]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000634 }
635 /* nothing special, just print this char of the replacement string to stdout */
636 else
Eric Andersenb76cb682001-08-22 05:58:16 +0000637 pipeputc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000638 }
639}
640
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000641static int do_subst_command(const sed_cmd_t *sed_cmd, char **line)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000642{
Eric Andersenb76cb682001-08-22 05:58:16 +0000643 char *hackline = *line;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000644 struct pipeline thepipe = { NULL, 0 , 0};
645 struct pipeline *const pipeline = &thepipe;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000646 int altered = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000647 regmatch_t *regmatch = NULL;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000648
Mark Whitley2dc192f2000-11-03 19:47:00 +0000649 /* we only proceed if the substitution 'search' expression matches */
Eric Andersenb76cb682001-08-22 05:58:16 +0000650 if (regexec(sed_cmd->sub_match, hackline, 0, NULL, 0) == REG_NOMATCH)
Mark Whitley2dc192f2000-11-03 19:47:00 +0000651 return 0;
652
653 /* whaddaya know, it matched. get the number of back references */
654 regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs+1));
655
Eric Andersenb76cb682001-08-22 05:58:16 +0000656 /* allocate more PIPE_GROW bytes
657 if replaced string is larger than original */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000658 thepipe.len = strlen(hackline)+PIPE_GROW;
659 thepipe.buf = xcalloc(1, thepipe.len);
Eric Andersenb76cb682001-08-22 05:58:16 +0000660 /* buffer magic */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000661 thepipe.buf[thepipe.len-1] = PIPE_MAGIC;
Eric Andersenb76cb682001-08-22 05:58:16 +0000662
Mark Whitley2dc192f2000-11-03 19:47:00 +0000663 /* and now, as long as we've got a line to try matching and if we can match
664 * the search string, we make substitutions */
Matt Kraai8470b9a2001-10-23 21:12:07 +0000665 while ((*hackline || !altered) && (regexec(sed_cmd->sub_match, hackline,
666 sed_cmd->num_backrefs+1, regmatch, 0) != REG_NOMATCH) ) {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000667 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000668
Mark Whitley2dc192f2000-11-03 19:47:00 +0000669 /* print everything before the match */
670 for (i = 0; i < regmatch[0].rm_so; i++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000671 pipeputc(hackline[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000672
Mark Whitley2dc192f2000-11-03 19:47:00 +0000673 /* then print the substitution string */
Eric Andersenb76cb682001-08-22 05:58:16 +0000674 print_subst_w_backrefs(hackline, sed_cmd->replace, regmatch,
Eric Andersenc52a6b02001-11-10 10:49:42 +0000675 pipeline, sed_cmd->num_backrefs);
Mark Whitley97562bd2000-07-17 20:06:42 +0000676
Mark Whitley2dc192f2000-11-03 19:47:00 +0000677 /* advance past the match */
678 hackline += regmatch[0].rm_eo;
679 /* flag that something has changed */
680 altered++;
Mark Whitley97562bd2000-07-17 20:06:42 +0000681
Mark Whitley2dc192f2000-11-03 19:47:00 +0000682 /* if we're not doing this globally, get out now */
683 if (!sed_cmd->sub_g)
684 break;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000685 }
686
Eric Andersenb76cb682001-08-22 05:58:16 +0000687 for (; *hackline; hackline++) pipeputc(*hackline);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000688 if (thepipe.buf[thepipe.idx] == PIPE_MAGIC) thepipe.buf[thepipe.idx] = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000689
690 /* cleanup */
691 free(regmatch);
692
Eric Andersenb76cb682001-08-22 05:58:16 +0000693 free(*line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000694 *line = thepipe.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000695 return altered;
696}
Mark Whitley6315ce62000-07-10 22:55:51 +0000697
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000698static sed_cmd_t *branch_to(const char *label)
699{
700 sed_cmd_t *sed_cmd;
701 for(sed_cmd = sed_cmd_head.linear; sed_cmd; sed_cmd = sed_cmd->linear) {
702 if (strcmp(sed_cmd->label, label) == 0) {
703 break;
704 }
705 }
706
707 /* If no match returns last command */
708 return(sed_cmd);
709}
Mark Whitley6315ce62000-07-10 22:55:51 +0000710
711static void process_file(FILE *file)
712{
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000713 char *line;
Mark Whitley6315ce62000-07-10 22:55:51 +0000714 static int linenum = 0; /* GNU sed does not restart counting lines at EOF */
715 unsigned int still_in_range = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000716 int altered;
Glenn L McGratha0f0f0c2003-03-28 14:11:34 +0000717 int force_print;
Mark Whitley6315ce62000-07-10 22:55:51 +0000718
Manuel Novoa III cad53642003-03-19 09:13:01 +0000719 line = bb_get_chomped_line_from_file(file);
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000720 if (line == NULL) {
721 return;
722 }
723
Mark Whitley6315ce62000-07-10 22:55:51 +0000724 /* go through every line in the file */
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000725 do {
726 char *next_line;
Glenn L McGrathc949bfa2003-03-28 03:53:31 +0000727 sed_cmd_t *sed_cmd;
Glenn L McGrath595a6a42003-03-28 08:36:52 +0000728 int substituted = 0;
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000729
730 /* Read one line in advance so we can act on the last line, the '$' address */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000731 next_line = bb_get_chomped_line_from_file(file);
Mark Whitley6315ce62000-07-10 22:55:51 +0000732
733 linenum++;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000734 altered = 0;
Glenn L McGratha0f0f0c2003-03-28 14:11:34 +0000735 force_print = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +0000736
737 /* for every line, go through all the commands */
Glenn L McGrathc949bfa2003-03-28 03:53:31 +0000738 for (sed_cmd = sed_cmd_head.linear; sed_cmd; sed_cmd = sed_cmd->linear) {
Robert Griebl47abc492002-06-11 23:43:27 +0000739 int deleted = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000740
741 /*
742 * entry point into sedding...
743 */
Robert Griebl47abc492002-06-11 23:43:27 +0000744 int matched = (
Matt Kraai02c40a72001-06-21 13:57:51 +0000745 /* no range necessary */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000746 (sed_cmd->beg_line == 0 && sed_cmd->end_line == 0 &&
747 sed_cmd->beg_match == NULL &&
748 sed_cmd->end_match == NULL) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000749 /* this line number is the first address we're looking for */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000750 (sed_cmd->beg_line && (sed_cmd->beg_line == linenum)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000751 /* this line matches our first address regex */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000752 (sed_cmd->beg_match && (regexec(sed_cmd->beg_match, line, 0, NULL, 0) == 0)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000753 /* we are currently within the beginning & ending address range */
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000754 still_in_range || ((sed_cmd->beg_line == -1) && (next_line == NULL))
Robert Griebl47abc492002-06-11 23:43:27 +0000755 );
756
757 if (sed_cmd->invert ^ matched) {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000758
759 /*
760 * actual sedding
761 */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000762 switch (sed_cmd->cmd) {
Glenn L McGrath0a65e192002-12-23 10:16:12 +0000763 case '=':
764 printf("%d\n", linenum);
765 break;
Glenn L McGrath4157a8a2003-03-10 04:12:35 +0000766 case 'P': { /* Write the current pattern space upto the first newline */
767 char *tmp = strchr(line, '\n');
768 if (tmp) {
769 *tmp = '\0';
770 }
771 }
772 case 'p': /* Write the current pattern space to output */
Mark Whitley0915c4b2001-06-11 23:50:06 +0000773 puts(line);
774 break;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000775 case 'd':
776 altered++;
Matt Kraai5c69cd82002-04-01 16:17:37 +0000777 deleted = 1;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000778 break;
779
780 case 's':
781
782 /*
783 * Some special cases for 's' printing to make it compliant with
784 * GNU sed printing behavior (aka "The -n | s///p Matrix"):
785 *
786 * -n ONLY = never print anything regardless of any successful
787 * substitution
788 *
789 * s///p ONLY = always print successful substitutions, even if
790 * the line is going to be printed anyway (line will be printed
791 * twice).
792 *
793 * -n AND s///p = print ONLY a successful substitution ONE TIME;
794 * no other lines are printed - this is the reason why the 'p'
795 * flag exists in the first place.
796 */
797
Mark Whitley0915c4b2001-06-11 23:50:06 +0000798 /* we print the line once, unless we were told to be quiet */
Glenn L McGrath595a6a42003-03-28 08:36:52 +0000799 substituted = do_subst_command(sed_cmd, &line);
800 altered |= substituted;
801 if (!be_quiet && altered && ((sed_cmd->linear == NULL) || (sed_cmd->linear->cmd != 's'))) {
Glenn L McGratha0f0f0c2003-03-28 14:11:34 +0000802 force_print = 1;
Glenn L McGrathccd43a82003-03-28 07:44:03 +0000803 }
Mark Whitley0915c4b2001-06-11 23:50:06 +0000804
805 /* we also print the line if we were given the 'p' flag
806 * (this is quite possibly the second printing) */
Glenn L McGrath595a6a42003-03-28 08:36:52 +0000807 if ((sed_cmd->sub_p) && altered) {
808 puts(line);
Glenn L McGrathccd43a82003-03-28 07:44:03 +0000809 }
Mark Whitley0915c4b2001-06-11 23:50:06 +0000810 break;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000811 case 'a':
812 puts(line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000813 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000814 altered++;
815 break;
816
817 case 'i':
Eric Andersenc52a6b02001-11-10 10:49:42 +0000818 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000819 break;
820
821 case 'c':
822 /* single-address case */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000823 if ((sed_cmd->end_match == NULL && sed_cmd->end_line == 0)
Mark Whitley0915c4b2001-06-11 23:50:06 +0000824 /* multi-address case */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000825 /* - matching text */
826 || (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
827 /* - matching line numbers */
828 || (sed_cmd->end_line > 0 && sed_cmd->end_line == linenum))
829 {
830 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000831 }
832 altered++;
833
834 break;
835
836 case 'r': {
Glenn L McGrathbed40332003-03-10 02:21:14 +0000837 FILE *outfile;
838 puts(line);
839 outfile = fopen(sed_cmd->filename, "r");
840 if (outfile)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000841 bb_xprint_and_close_file(outfile);
Glenn L McGrathbed40332003-03-10 02:21:14 +0000842 /* else if we couldn't open the output file,
843 * no biggie, just don't print anything */
844 altered++;
845 }
846 break;
847 case 'q': /* Branch to end of script and quit */
Glenn L McGrathb08e3e82003-03-28 04:57:52 +0000848 deleted = 1;
849 /* Exit the outer while loop */
850 free(next_line);
851 next_line = NULL;
852 break;
Glenn L McGrathff724fb2003-03-10 02:56:56 +0000853 case 'n': /* Read next line from input */
Glenn L McGrath4157a8a2003-03-10 04:12:35 +0000854 free(line);
855 line = next_line;
Manuel Novoa III cad53642003-03-19 09:13:01 +0000856 next_line = bb_get_chomped_line_from_file(file);
Glenn L McGrath4157a8a2003-03-10 04:12:35 +0000857 linenum++;
Glenn L McGrathff724fb2003-03-10 02:56:56 +0000858 break;
Glenn L McGrath4157a8a2003-03-10 04:12:35 +0000859 case 'N': /* Append the next line to the current line */
860 line = realloc(line, strlen(line) + strlen(next_line) + 2);
861 strcat(line, "\n");
862 strcat(line, next_line);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000863 next_line = bb_get_chomped_line_from_file(file);
Glenn L McGrath4157a8a2003-03-10 04:12:35 +0000864 linenum++;
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000865 break;
866 case 'b':
867 sed_cmd = branch_to(sed_cmd->label);
868 break;
Glenn L McGrath595a6a42003-03-28 08:36:52 +0000869 case 't':
870 if (substituted) {
871 sed_cmd = branch_to(sed_cmd->label);
872 }
873 break;
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000874// case ':':
875// break;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000876 }
Robert Griebl47abc492002-06-11 23:43:27 +0000877 }
Mark Whitley0915c4b2001-06-11 23:50:06 +0000878
Robert Griebl47abc492002-06-11 23:43:27 +0000879 /*
880 * exit point from sedding...
881 */
882 if (matched) {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000883 if (
884 /* this is a single-address command or... */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000885 (sed_cmd->end_line == 0 && sed_cmd->end_match == NULL) || (
Mark Whitley0915c4b2001-06-11 23:50:06 +0000886 /* we were in the middle of our address range (this
887 * isn't the first time through) and.. */
888 (still_in_range == 1) && (
889 /* this line number is the last address we're looking for or... */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000890 (sed_cmd->end_line && (sed_cmd->end_line == linenum)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000891 /* this line matches our last address regex */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000892 (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
Mark Whitley0915c4b2001-06-11 23:50:06 +0000893 )
894 )
895 ) {
896 /* we're out of our address range */
897 still_in_range = 0;
898 }
899
900 /* didn't hit the exit? then we're still in the middle of an address range */
901 else {
902 still_in_range = 1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000903 }
904 }
Robert Griebl47abc492002-06-11 23:43:27 +0000905
906 if (deleted)
907 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000908 }
Erik Andersen1266a131999-12-29 22:19:46 +0000909
Mark Whitley2dc192f2000-11-03 19:47:00 +0000910 /* we will print the line unless we were told to be quiet or if the
911 * line was altered (via a 'd'elete or 's'ubstitution), in which case
912 * the altered line was already printed */
Glenn L McGratha0f0f0c2003-03-28 14:11:34 +0000913 if ((!be_quiet && !altered) || force_print){
Mark Whitleydd527d32001-05-14 19:53:08 +0000914 puts(line);
Glenn L McGratha0f0f0c2003-03-28 14:11:34 +0000915 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000916 free(line);
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000917 line = next_line;
918 } while (line);
Erik Andersen1266a131999-12-29 22:19:46 +0000919}
920
921extern int sed_main(int argc, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000922{
Matt Kraaia5f09c62001-11-12 16:44:55 +0000923 int opt, status = EXIT_SUCCESS;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000924
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000925#ifdef CONFIG_FEATURE_CLEAN_UP
Mark Whitley858c1ad2000-07-11 21:38:47 +0000926 /* destroy command strings on exit */
Matt Kraaia9819b22000-12-22 01:48:07 +0000927 if (atexit(destroy_cmd_strs) == -1)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000928 bb_perror_msg_and_die("atexit");
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000929#endif
Mark Whitley858c1ad2000-07-11 21:38:47 +0000930
Mark Whitley6315ce62000-07-10 22:55:51 +0000931 /* do normal option parsing */
Eric Andersenb50da532001-02-17 16:52:35 +0000932 while ((opt = getopt(argc, argv, "ne:f:")) > 0) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000933 switch (opt) {
Erik Andersene916d242000-03-06 19:20:35 +0000934 case 'n':
Mark Whitley6315ce62000-07-10 22:55:51 +0000935 be_quiet++;
Erik Andersene916d242000-03-06 19:20:35 +0000936 break;
937 case 'e':
Mark Whitley6315ce62000-07-10 22:55:51 +0000938 add_cmd_str(optarg);
Erik Andersene916d242000-03-06 19:20:35 +0000939 break;
Mark Whitley6315ce62000-07-10 22:55:51 +0000940 case 'f':
941 load_cmd_file(optarg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000942 break;
Eric Andersenb50da532001-02-17 16:52:35 +0000943 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000944 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000945 }
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000946 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000947
948 /* if we didn't get a pattern from a -e and no command file was specified,
949 * argv[optind] should be the pattern. no pattern, no worky */
Glenn L McGrathc949bfa2003-03-28 03:53:31 +0000950 if (sed_cmd_head.linear == NULL) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000951 if (argv[optind] == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000952 bb_show_usage();
Mark Whitley6315ce62000-07-10 22:55:51 +0000953 else {
954 add_cmd_str(argv[optind]);
955 optind++;
956 }
957 }
958
Mark Whitley6315ce62000-07-10 22:55:51 +0000959 /* argv[(optind)..(argc-1)] should be names of file to process. If no
960 * files were specified or '-' was specified, take input from stdin.
961 * Otherwise, we process all the files specified. */
962 if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) {
963 process_file(stdin);
964 }
965 else {
966 int i;
967 FILE *file;
968 for (i = optind; i < argc; i++) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000969 file = bb_wfopen(argv[i], "r");
Eric Andersen9c6b5fc2001-11-17 07:23:46 +0000970 if (file) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000971 process_file(file);
972 fclose(file);
Matt Kraaia5f09c62001-11-12 16:44:55 +0000973 } else
974 status = EXIT_FAILURE;
Mark Whitley6315ce62000-07-10 22:55:51 +0000975 }
976 }
977
Matt Kraaia5f09c62001-11-12 16:44:55 +0000978 return status;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000979}