blob: 1342a66433554a7bf9dce8fb02cfaee22ac2427f [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 Andersen8ec10a92001-01-27 09:33:39 +00004 * Copyright (C) 1999,2000,2001 by Lineo, inc.
Mark Whitley6c6ea6c2001-01-04 22:21:13 +00005 * Written by Mark Whitley <markw@lineo.com>, <markw@codepoet.org>
Erik Andersen1266a131999-12-29 22:19:46 +00006 *
Eric Andersen6b6b3f61999-10-28 16:06:25 +00007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Mark Whitley6315ce62000-07-10 22:55:51 +000023/*
24 Supported features and commands in this version of sed:
25
26 - comments ('#')
Mark Whitley94074a92000-07-14 00:00:15 +000027 - address matching: num|/matchstr/[,num|/matchstr/|$]command
28 - commands: (p)rint, (d)elete, (s)ubstitue (with g & I flags)
29 - edit commands: (a)ppend, (i)nsert, (c)hange
Mark Whitley97562bd2000-07-17 20:06:42 +000030 - backreferences in substitution expressions (\1, \2...\9)
Mark Whitley6315ce62000-07-10 22:55:51 +000031
32 (Note: Specifying an address (range) to match is *optional*; commands
33 default to the whole pattern space if no specific address match was
34 requested.)
35
36 Unsupported features:
37
38 - transliteration (y/source-chars/dest-chars/) (use 'tr')
Mark Whitley6315ce62000-07-10 22:55:51 +000039 - no pattern space hold space storing / swapping (x, etc.)
40 - no labels / branching (: label, b, t, and friends)
41 - and lots, lots more.
Mark Whitley6315ce62000-07-10 22:55:51 +000042*/
43
Eric Andersen6b6b3f61999-10-28 16:06:25 +000044#include <stdio.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000045#include <unistd.h> /* for getopt() */
46#include <regex.h>
47#include <string.h> /* for strdup() */
Eric Andersen6b6b3f61999-10-28 16:06:25 +000048#include <errno.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000049#include <ctype.h> /* for isspace() */
Eric Andersened3ef502001-01-27 08:24:39 +000050#include <stdlib.h>
Eric Andersen3570a342000-09-25 21:45:58 +000051#include "busybox.h"
Mark Whitley6315ce62000-07-10 22:55:51 +000052
Mark Whitley6315ce62000-07-10 22:55:51 +000053/* externs */
Eric Andersened3ef502001-01-27 08:24:39 +000054extern void xregcomp(regex_t *preg, const char *regex, int cflags);
Mark Whitley6315ce62000-07-10 22:55:51 +000055extern int optind; /* in unistd.h */
56extern char *optarg; /* ditto */
57
58/* options */
59static int be_quiet = 0;
60
Mark Whitley0e4cec02000-08-21 21:29:20 +000061
Mark Whitley6315ce62000-07-10 22:55:51 +000062struct sed_cmd {
63
Mark Whitley2dc192f2000-11-03 19:47:00 +000064
65 /* GENERAL FIELDS */
Eric Andersen28b3c532001-01-02 11:01:31 +000066 char delimiter; /* The delimiter used to separate regexps */
Mark Whitley2dc192f2000-11-03 19:47:00 +000067
Mark Whitley6315ce62000-07-10 22:55:51 +000068 /* address storage */
69 int beg_line; /* 'sed 1p' 0 == no begining line, apply commands to all lines */
70 int end_line; /* 'sed 1,3p' 0 == no end line, use only beginning. -1 == $ */
71 regex_t *beg_match; /* sed -e '/match/cmd' */
72 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
73
74 /* the command */
75 char cmd; /* p,d,s (add more at your leisure :-) */
76
Mark Whitley2dc192f2000-11-03 19:47:00 +000077
78 /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
79
80 /* sed -e 's/sub_match/replace/' */
81 regex_t *sub_match;
82 char *replace;
Mark Whitley97562bd2000-07-17 20:06:42 +000083 unsigned int num_backrefs:4; /* how many back references (\1..\9) */
84 /* Note: GNU/POSIX sed does not save more than nine backrefs, so
85 * we only use 4 bits to hold the number */
Mark Whitley2dc192f2000-11-03 19:47:00 +000086 unsigned int sub_g:1; /* sed -e 's/foo/bar/g' (global) */
87 unsigned int sub_p:2; /* sed -e 's/foo/bar/p' (print substitution) */
Mark Whitley94074a92000-07-14 00:00:15 +000088
Mark Whitley2dc192f2000-11-03 19:47:00 +000089
90 /* EDIT COMMAND (a,i,c) SPEICIFIC FIELDS */
91
Mark Whitley94074a92000-07-14 00:00:15 +000092 char *editline;
Mark Whitley6315ce62000-07-10 22:55:51 +000093};
94
95/* globals */
96static struct sed_cmd *sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */
97static int ncmds = 0; /* number of sed commands */
98
99/*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000100
Eric Andersenb040d4f2000-07-25 18:01:20 +0000101#ifdef BB_FEATURE_CLEAN_UP
Mark Whitley6315ce62000-07-10 22:55:51 +0000102static void destroy_cmd_strs()
103{
104 if (sed_cmds == NULL)
105 return;
106
107 /* destroy all the elements in the array */
108 while (--ncmds >= 0) {
109
110 if (sed_cmds[ncmds].beg_match) {
111 regfree(sed_cmds[ncmds].beg_match);
112 free(sed_cmds[ncmds].beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000113 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000114 if (sed_cmds[ncmds].end_match) {
115 regfree(sed_cmds[ncmds].end_match);
116 free(sed_cmds[ncmds].end_match);
117 }
118 if (sed_cmds[ncmds].sub_match) {
119 regfree(sed_cmds[ncmds].sub_match);
120 free(sed_cmds[ncmds].sub_match);
121 }
122 if (sed_cmds[ncmds].replace)
123 free(sed_cmds[ncmds].replace);
124 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000125
Mark Whitley6315ce62000-07-10 22:55:51 +0000126 /* destroy the array */
127 free(sed_cmds);
128 sed_cmds = NULL;
129}
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000130#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000131
Mark Whitley6315ce62000-07-10 22:55:51 +0000132
133/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000134 * index_of_next_unescaped_regexp_delim - walks left to right through a string
135 * beginning at a specified index and returns the index of the next regular
136 * expression delimiter (typically a forward * slash ('/')) not preceeded by
137 * a backslash ('\').
Mark Whitley6315ce62000-07-10 22:55:51 +0000138 */
Eric Andersen28b3c532001-01-02 11:01:31 +0000139static int index_of_next_unescaped_regexp_delim(struct sed_cmd *sed_cmd, const char *str, int idx)
Mark Whitley6315ce62000-07-10 22:55:51 +0000140{
Mark Whitley97562bd2000-07-17 20:06:42 +0000141 for ( ; str[idx]; idx++) {
Eric Andersen28b3c532001-01-02 11:01:31 +0000142 if (str[idx] == sed_cmd->delimiter && str[idx-1] != '\\')
Mark Whitley97562bd2000-07-17 20:06:42 +0000143 return idx;
144 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000145
Mark Whitley97562bd2000-07-17 20:06:42 +0000146 /* if we make it to here, we've hit the end of the string */
147 return -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000148}
149
150/*
151 * returns the index in the string just past where the address ends.
152 */
Eric Andersen28b3c532001-01-02 11:01:31 +0000153static int get_address(struct sed_cmd *sed_cmd, const char *str, int *line, regex_t **regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000154{
155 char *my_str = strdup(str);
156 int idx = 0;
Mark Whitley038c8eb2001-03-14 21:11:49 +0000157 char olddelimiter;
158 olddelimiter = sed_cmd->delimiter;
159 sed_cmd->delimiter = '/';
Mark Whitley6315ce62000-07-10 22:55:51 +0000160
161 if (isdigit(my_str[idx])) {
162 do {
163 idx++;
164 } while (isdigit(my_str[idx]));
165 my_str[idx] = 0;
166 *line = atoi(my_str);
Mark Whitley6315ce62000-07-10 22:55:51 +0000167 }
168 else if (my_str[idx] == '$') {
169 *line = -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000170 idx++;
171 }
172 else if (my_str[idx] == '/') {
Eric Andersen28b3c532001-01-02 11:01:31 +0000173 idx = index_of_next_unescaped_regexp_delim(sed_cmd, my_str, ++idx);
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000174 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000175 error_msg_and_die("unterminated match expression");
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000176 my_str[idx] = '\0';
177 *regex = (regex_t *)xmalloc(sizeof(regex_t));
Mark Whitleyeb69ead2000-11-03 20:23:49 +0000178 xregcomp(*regex, my_str+1, 0);
Mark Whitley496e33f2000-07-13 22:52:02 +0000179 idx++; /* so it points to the next character after the last '/' */
Mark Whitley6315ce62000-07-10 22:55:51 +0000180 }
181 else {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000182 error_msg("get_address: no address found in string\n"
Matt Kraaidd19c692001-01-31 19:00:21 +0000183 "\t(you probably didn't check the string you passed me)");
Mark Whitley6315ce62000-07-10 22:55:51 +0000184 idx = -1;
185 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000186
Mark Whitley6315ce62000-07-10 22:55:51 +0000187 free(my_str);
Mark Whitley038c8eb2001-03-14 21:11:49 +0000188 sed_cmd->delimiter = olddelimiter;
Mark Whitley6315ce62000-07-10 22:55:51 +0000189 return idx;
190}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000191
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000192static char *strdup_substr(const char *str, int start, int end)
193{
194 int size = end - start + 1;
195 char *newstr = xmalloc(size);
196 memcpy(newstr, str+start, size-1);
197 newstr[size-1] = '\0';
198 return newstr;
199}
200
Mark Whitley70705d72000-07-14 19:06:30 +0000201static int parse_subst_cmd(struct sed_cmd *sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000202{
203 int oldidx, cflags = REG_NEWLINE;
204 char *match;
205 int idx = 0;
Mark Whitley97562bd2000-07-17 20:06:42 +0000206 int j;
Mark Whitley06f35292000-07-13 19:58:04 +0000207
208 /*
209 * the string that gets passed to this function should look like this:
Mark Whitley0e4cec02000-08-21 21:29:20 +0000210 * s/match/replace/gIp
211 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000212 * mandatory optional
213 *
214 * (all three of the '/' slashes are mandatory)
215 */
216
Eric Andersen28b3c532001-01-02 11:01:31 +0000217 /* verify that the 's' is followed by something. That something
218 * (typically a 'slash') is now our regexp delimiter... */
219 if (!substr[++idx])
Matt Kraaidd19c692001-01-31 19:00:21 +0000220 error_msg_and_die("bad format in substitution expression");
Eric Andersen28b3c532001-01-02 11:01:31 +0000221 else
222 sed_cmd->delimiter=substr[idx];
Mark Whitley06f35292000-07-13 19:58:04 +0000223
224 /* save the match string */
225 oldidx = idx+1;
Eric Andersen28b3c532001-01-02 11:01:31 +0000226 idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000227 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000228 error_msg_and_die("bad format in substitution expression");
Mark Whitley06f35292000-07-13 19:58:04 +0000229 match = strdup_substr(substr, oldidx, idx);
230
Mark Whitley97562bd2000-07-17 20:06:42 +0000231 /* determine the number of back references in the match string */
232 /* Note: we compute this here rather than in the do_subst_command()
233 * function to save processor time, at the expense of a little more memory
234 * (4 bits) per sed_cmd */
235
236 /* sed_cmd->num_backrefs = 0; */ /* XXX: not needed? --apparently not */
237 for (j = 0; match[j]; j++) {
238 /* GNU/POSIX sed does not save more than nine backrefs */
Mark Whitley2dc192f2000-11-03 19:47:00 +0000239 if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs <= 9)
Mark Whitley97562bd2000-07-17 20:06:42 +0000240 sed_cmd->num_backrefs++;
241 }
242
Mark Whitley06f35292000-07-13 19:58:04 +0000243 /* save the replacement string */
244 oldidx = idx+1;
Eric Andersen28b3c532001-01-02 11:01:31 +0000245 idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000246 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000247 error_msg_and_die("bad format in substitution expression");
Mark Whitley06f35292000-07-13 19:58:04 +0000248 sed_cmd->replace = strdup_substr(substr, oldidx, idx);
249
250 /* process the flags */
251 while (substr[++idx]) {
252 switch (substr[idx]) {
Mark Whitley70705d72000-07-14 19:06:30 +0000253 case 'g':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000254 sed_cmd->sub_g = 1;
Mark Whitley70705d72000-07-14 19:06:30 +0000255 break;
256 case 'I':
257 cflags |= REG_ICASE;
258 break;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000259 case 'p':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000260 sed_cmd->sub_p = 1;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000261 break;
Mark Whitley70705d72000-07-14 19:06:30 +0000262 default:
263 /* any whitespace or semicolon trailing after a s/// is ok */
264 if (strchr("; \t\v\n\r", substr[idx]))
265 goto out;
266 /* else */
Matt Kraaidd19c692001-01-31 19:00:21 +0000267 error_msg_and_die("bad option in substitution expression");
Mark Whitley06f35292000-07-13 19:58:04 +0000268 }
269 }
Mark Whitley70705d72000-07-14 19:06:30 +0000270
271out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000272 /* compile the match string into a regex */
Mark Whitley06f35292000-07-13 19:58:04 +0000273 sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t));
274 xregcomp(sed_cmd->sub_match, match, cflags);
275 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000276
277 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000278}
279
Mark Whitley70705d72000-07-14 19:06:30 +0000280static int parse_edit_cmd(struct sed_cmd *sed_cmd, const char *editstr)
Mark Whitley94074a92000-07-14 00:00:15 +0000281{
282 int idx = 0;
Mark Whitley464c5de2000-07-14 23:24:00 +0000283 int slashes_eaten = 0;
Mark Whitley94074a92000-07-14 00:00:15 +0000284 char *ptr; /* shorthand */
285
286 /*
287 * the string that gets passed to this function should look like this:
288 *
289 * need one of these
290 * |
291 * | this backslash (immediately following the edit command) is mandatory
292 * | |
293 * [aic]\
294 * TEXT1\
295 * TEXT2\
296 * TEXTN
297 *
298 * as soon as we hit a TEXT line that has no trailing '\', we're done.
299 * this means a command like:
300 *
301 * i\
302 * INSERTME
303 *
304 * is a-ok.
305 *
306 */
307
308 if (editstr[1] != '\\' && (editstr[2] != '\n' || editstr[2] != '\r'))
Matt Kraaidd19c692001-01-31 19:00:21 +0000309 error_msg_and_die("bad format in edit expression");
Mark Whitley94074a92000-07-14 00:00:15 +0000310
311 /* store the edit line text */
Mark Whitley34623db2000-07-14 00:49:59 +0000312 /* make editline big enough to accomodate the extra '\n' we will tack on
313 * to the end */
314 sed_cmd->editline = xmalloc(strlen(&editstr[3]) + 2);
315 strcpy(sed_cmd->editline, &editstr[3]);
Mark Whitley94074a92000-07-14 00:00:15 +0000316 ptr = sed_cmd->editline;
317
318 /* now we need to go through * and: s/\\[\r\n]$/\n/g on the edit line */
319 while (ptr[idx]) {
Mark Whitley497ef462001-04-20 23:27:17 +0000320 while (ptr[idx] != '\\' || (ptr[idx+1] != '\n' && ptr[idx+1] != '\r')) {
Mark Whitley94074a92000-07-14 00:00:15 +0000321 idx++;
322 if (!ptr[idx]) {
Mark Whitley464c5de2000-07-14 23:24:00 +0000323 goto out;
Mark Whitley94074a92000-07-14 00:00:15 +0000324 }
325 }
326 /* move the newline over the '\' before it (effectively eats the '\') */
327 memmove(&ptr[idx], &ptr[idx+1], strlen(&ptr[idx+1]));
328 ptr[strlen(ptr)-1] = 0;
Mark Whitley464c5de2000-07-14 23:24:00 +0000329 slashes_eaten++;
Mark Whitley94074a92000-07-14 00:00:15 +0000330 /* substitue \r for \n if needed */
331 if (ptr[idx] == '\r')
332 ptr[idx] = '\n';
333 }
Mark Whitley70705d72000-07-14 19:06:30 +0000334
Mark Whitley464c5de2000-07-14 23:24:00 +0000335out:
Mark Whitley464c5de2000-07-14 23:24:00 +0000336 /* this accounts for discrepancies between the modified string and the
337 * original string passed in to this function */
338 idx += slashes_eaten;
339
Mark Whitley56c14a62001-04-20 23:41:44 +0000340 /* figure out if we need to add a newline */
341 if (ptr[idx-1] != '\n') {
342 ptr[idx] = '\n';
343 idx++;
344 }
345
346 /* terminate string */
347 ptr[idx]= 0;
348 /* adjust for opening 2 chars [aic]\ */
349 idx += 2;
Mark Whitley464c5de2000-07-14 23:24:00 +0000350
Mark Whitley70705d72000-07-14 19:06:30 +0000351 return idx;
Mark Whitley94074a92000-07-14 00:00:15 +0000352}
353
Mark Whitley70705d72000-07-14 19:06:30 +0000354static char *parse_cmd_str(struct sed_cmd *sed_cmd, const char *cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000355{
356 int idx = 0;
357
358 /* parse the command
359 * format is: [addr][,addr]cmd
360 * |----||-----||-|
361 * part1 part2 part3
362 */
363
Mark Whitley70705d72000-07-14 19:06:30 +0000364
Mark Whitley6315ce62000-07-10 22:55:51 +0000365 /* first part (if present) is an address: either a number or a /regex/ */
366 if (isdigit(cmdstr[idx]) || cmdstr[idx] == '/')
Eric Andersen28b3c532001-01-02 11:01:31 +0000367 idx = get_address(sed_cmd, cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000368
369 /* second part (if present) will begin with a comma */
370 if (cmdstr[idx] == ',')
Eric Andersen28b3c532001-01-02 11:01:31 +0000371 idx += get_address(sed_cmd, &cmdstr[++idx], &sed_cmd->end_line, &sed_cmd->end_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000372
373 /* last part (mandatory) will be a command */
374 if (cmdstr[idx] == '\0')
Matt Kraaidd19c692001-01-31 19:00:21 +0000375 error_msg_and_die("missing command");
Mark Whitley94074a92000-07-14 00:00:15 +0000376 if (!strchr("pdsaic", cmdstr[idx])) /* <-- XXX add new commands here */
Matt Kraaidd19c692001-01-31 19:00:21 +0000377 error_msg_and_die("invalid command");
Mark Whitley6315ce62000-07-10 22:55:51 +0000378 sed_cmd->cmd = cmdstr[idx];
Mark Whitley6315ce62000-07-10 22:55:51 +0000379
Mark Whitley06f35292000-07-13 19:58:04 +0000380 /* special-case handling for (s)ubstitution */
Mark Whitley70705d72000-07-14 19:06:30 +0000381 if (sed_cmd->cmd == 's') {
382 idx += parse_subst_cmd(sed_cmd, &cmdstr[idx]);
383 }
Mark Whitley94074a92000-07-14 00:00:15 +0000384 /* special-case handling for (a)ppend, (i)nsert, and (c)hange */
Mark Whitley70705d72000-07-14 19:06:30 +0000385 else if (strchr("aic", cmdstr[idx])) {
Mark Whitley02008342000-07-14 00:13:52 +0000386 if (sed_cmd->end_line || sed_cmd->end_match)
Matt Kraaidd19c692001-01-31 19:00:21 +0000387 error_msg_and_die("only a beginning address can be specified for edit commands");
Mark Whitley70705d72000-07-14 19:06:30 +0000388 idx += parse_edit_cmd(sed_cmd, &cmdstr[idx]);
Mark Whitley02008342000-07-14 00:13:52 +0000389 }
Mark Whitley464c5de2000-07-14 23:24:00 +0000390 /* if it was a single-letter command (such as 'p' or 'd') we need to
391 * increment the index past that command */
392 else
393 idx++;
Mark Whitley70705d72000-07-14 19:06:30 +0000394
395 /* give back whatever's left over */
Mark Whitley464c5de2000-07-14 23:24:00 +0000396 return (char *)&cmdstr[idx];
Eric Andersen50d63601999-11-09 01:47:36 +0000397}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000398
Mark Whitley6315ce62000-07-10 22:55:51 +0000399static void add_cmd_str(const char *cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000400{
Mark Whitley70705d72000-07-14 19:06:30 +0000401 char *mystr = (char *)cmdstr;
Erik Andersen1266a131999-12-29 22:19:46 +0000402
Mark Whitley70705d72000-07-14 19:06:30 +0000403 do {
Mark Whitley6315ce62000-07-10 22:55:51 +0000404
Mark Whitley70705d72000-07-14 19:06:30 +0000405 /* trim leading whitespace and semicolons */
406 memmove(mystr, &mystr[strspn(mystr, "; \n\r\t\v")], strlen(mystr));
407 /* if we ate the whole thing, that means there was just trailing
Mark Whitley464c5de2000-07-14 23:24:00 +0000408 * whitespace or a final / no-op semicolon. either way, get out */
Mark Whitley70705d72000-07-14 19:06:30 +0000409 if (strlen(mystr) == 0)
410 return;
411 /* if this is a comment, jump past it and keep going */
412 if (mystr[0] == '#') {
413 mystr = strpbrk(mystr, ";\n\r");
414 continue;
415 }
416 /* grow the array */
Matt Kraai322ae932000-09-13 02:46:14 +0000417 sed_cmds = xrealloc(sed_cmds, sizeof(struct sed_cmd) * (++ncmds));
Mark Whitley70705d72000-07-14 19:06:30 +0000418 /* zero new element */
419 memset(&sed_cmds[ncmds-1], 0, sizeof(struct sed_cmd));
420 /* load command string into new array element, get remainder */
421 mystr = parse_cmd_str(&sed_cmds[ncmds-1], mystr);
422
Mark Whitley464c5de2000-07-14 23:24:00 +0000423 } while (mystr && strlen(mystr));
Mark Whitley6315ce62000-07-10 22:55:51 +0000424}
425
426
427static void load_cmd_file(char *filename)
428{
429 FILE *cmdfile;
430 char *line;
Mark Whitley94074a92000-07-14 00:00:15 +0000431 char *nextline;
Mark Whitley6315ce62000-07-10 22:55:51 +0000432
Matt Kraaibbaef662000-09-27 02:43:35 +0000433 cmdfile = xfopen(filename, "r");
Mark Whitley6315ce62000-07-10 22:55:51 +0000434
435 while ((line = get_line_from_file(cmdfile)) != NULL) {
Mark Whitley94074a92000-07-14 00:00:15 +0000436 /* if a line ends with '\' it needs the next line appended to it */
437 while (line[strlen(line)-2] == '\\' &&
438 (nextline = get_line_from_file(cmdfile)) != NULL) {
Matt Kraai322ae932000-09-13 02:46:14 +0000439 line = xrealloc(line, strlen(line) + strlen(nextline) + 1);
Mark Whitley94074a92000-07-14 00:00:15 +0000440 strcat(line, nextline);
Mark Whitley464c5de2000-07-14 23:24:00 +0000441 free(nextline);
Mark Whitley94074a92000-07-14 00:00:15 +0000442 }
Mark Whitley464c5de2000-07-14 23:24:00 +0000443 /* eat trailing newline (if any) --if I don't do this, edit commands
444 * (aic) will print an extra newline */
Matt Kraai05e782d2001-02-01 16:49:30 +0000445 chomp(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000446 add_cmd_str(line);
447 free(line);
448 }
449}
450
Mark Whitley97562bd2000-07-17 20:06:42 +0000451static void print_subst_w_backrefs(const char *line, const char *replace, regmatch_t *regmatch)
452{
453 int i;
454
455 /* go through the replacement string */
456 for (i = 0; replace[i]; i++) {
457 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
458 if (replace[i] == '\\' && isdigit(replace[i+1])) {
459 int j;
460 char tmpstr[2];
461 int backref;
462 ++i; /* i now indexes the backref number, instead of the leading slash */
463 tmpstr[0] = replace[i];
464 tmpstr[1] = 0;
465 backref = atoi(tmpstr);
466 /* print out the text held in regmatch[backref] */
467 for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++)
468 fputc(line[j], stdout);
469 }
470
Mark Whitley83e85f62000-07-25 20:48:44 +0000471 /* if we find a backslash escaped character, print the character */
472 else if (replace[i] == '\\') {
473 ++i;
474 fputc(replace[i], stdout);
475 }
476
Mark Whitley97562bd2000-07-17 20:06:42 +0000477 /* if we find an unescaped '&' print out the whole matched text.
478 * fortunately, regmatch[0] contains the indicies to the whole matched
479 * expression (kinda seems like it was designed for just such a
480 * purpose...) */
481 else if (replace[i] == '&' && replace[i-1] != '\\') {
482 int j;
483 for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++)
484 fputc(line[j], stdout);
485 }
486 /* nothing special, just print this char of the replacement string to stdout */
487 else
488 fputc(replace[i], stdout);
489 }
490}
491
Mark Whitley4f7fe772000-07-13 20:01:58 +0000492static int do_subst_command(const struct sed_cmd *sed_cmd, const char *line)
493{
Mark Whitley2dc192f2000-11-03 19:47:00 +0000494 char *hackline = (char *)line;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000495 int altered = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000496 regmatch_t *regmatch = NULL;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000497
Mark Whitley2dc192f2000-11-03 19:47:00 +0000498 /* we only proceed if the substitution 'search' expression matches */
499 if (regexec(sed_cmd->sub_match, line, 0, NULL, 0) == REG_NOMATCH)
500 return 0;
501
502 /* whaddaya know, it matched. get the number of back references */
503 regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs+1));
504
505 /* and now, as long as we've got a line to try matching and if we can match
506 * the search string, we make substitutions */
507 while (*hackline && (regexec(sed_cmd->sub_match, hackline,
508 sed_cmd->num_backrefs+1, regmatch, 0) == 0) ) {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000509 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000510
Mark Whitley2dc192f2000-11-03 19:47:00 +0000511 /* print everything before the match */
512 for (i = 0; i < regmatch[0].rm_so; i++)
513 fputc(hackline[i], stdout);
Mark Whitley97562bd2000-07-17 20:06:42 +0000514
Mark Whitley2dc192f2000-11-03 19:47:00 +0000515 /* then print the substitution string */
516 print_subst_w_backrefs(hackline, sed_cmd->replace, regmatch);
Mark Whitley97562bd2000-07-17 20:06:42 +0000517
Mark Whitley2dc192f2000-11-03 19:47:00 +0000518 /* advance past the match */
519 hackline += regmatch[0].rm_eo;
520 /* flag that something has changed */
521 altered++;
Mark Whitley97562bd2000-07-17 20:06:42 +0000522
Mark Whitley2dc192f2000-11-03 19:47:00 +0000523 /* if we're not doing this globally, get out now */
524 if (!sed_cmd->sub_g)
525 break;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000526 }
527
Mark Whitley2dc192f2000-11-03 19:47:00 +0000528 /* if there's anything left of the line, print it */
529 if (*hackline)
530 fputs(hackline, stdout);
531
532 /* cleanup */
533 free(regmatch);
534
Mark Whitley4f7fe772000-07-13 20:01:58 +0000535 return altered;
536}
Mark Whitley6315ce62000-07-10 22:55:51 +0000537
538static int do_sed_command(const struct sed_cmd *sed_cmd, const char *line)
539{
540 int altered = 0;
541
542 switch (sed_cmd->cmd) {
543
544 case 'p':
545 fputs(line, stdout);
546 break;
547
548 case 'd':
549 altered++;
550 break;
551
Mark Whitley4f7fe772000-07-13 20:01:58 +0000552 case 's':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000553
554 /*
555 * Some special cases for 's' printing to make it compliant with
556 * GNU sed printing behavior (aka "The -n | s///p Matrix"):
557 *
558 * -n ONLY = never print anything regardless of any successful
559 * substitution
560 *
561 * s///p ONLY = always print successful substitutions, even if
562 * the line is going to be printed anyway (line will be printed
563 * twice).
564 *
565 * -n AND s///p = print ONLY a successful substitution ONE TIME;
566 * no other lines are printed - this is the reason why the 'p'
567 * flag exists in the first place.
568 */
569
Mark Whitleye7ff2842000-11-03 20:02:35 +0000570 /* if the user specified that they didn't want anything printed (i.e. a -n
571 * flag and no 'p' flag after the s///), then there's really no point doing
572 * anything here. */
573 if (be_quiet && !sed_cmd->sub_p)
574 break;
575
Mark Whitley2dc192f2000-11-03 19:47:00 +0000576 /* we print the line once, unless we were told to be quiet */
577 if (!be_quiet)
578 altered = do_subst_command(sed_cmd, line);
579
580 /* we also print the line if we were given the 'p' flag
581 * (this is quite possibly the second printing) */
582 if (sed_cmd->sub_p)
583 altered = do_subst_command(sed_cmd, line);
584
Mark Whitley6315ce62000-07-10 22:55:51 +0000585 break;
Mark Whitley94074a92000-07-14 00:00:15 +0000586
587 case 'a':
588 fputs(line, stdout);
589 fputs(sed_cmd->editline, stdout);
590 altered++;
591 break;
592
593 case 'i':
594 fputs(sed_cmd->editline, stdout);
595 break;
596
597 case 'c':
598 fputs(sed_cmd->editline, stdout);
599 altered++;
600 break;
Mark Whitley6315ce62000-07-10 22:55:51 +0000601 }
602
603 return altered;
604}
605
606static void process_file(FILE *file)
607{
608 char *line = NULL;
609 static int linenum = 0; /* GNU sed does not restart counting lines at EOF */
610 unsigned int still_in_range = 0;
611 int line_altered;
612 int i;
613
614 /* go through every line in the file */
615 while ((line = get_line_from_file(file)) != NULL) {
616
617 linenum++;
618 line_altered = 0;
619
620 /* for every line, go through all the commands */
621 for (i = 0; i < ncmds; i++) {
622
623 /* are we acting on a range of matched lines? */
624 if (sed_cmds[i].beg_match && sed_cmds[i].end_match) {
625 if (still_in_range || regexec(sed_cmds[i].beg_match, line, 0, NULL, 0) == 0) {
626 line_altered += do_sed_command(&sed_cmds[i], line);
Mark Whitleyaf633752001-03-26 16:47:57 +0000627 if (still_in_range && regexec(sed_cmds[i].end_match, line, 0, NULL, 0) == 0)
Mark Whitley6315ce62000-07-10 22:55:51 +0000628 still_in_range = 0;
Mark Whitleyaf633752001-03-26 16:47:57 +0000629 else
630 still_in_range = 1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000631 }
632 }
633
634 /* are we trying to match a single line? */
635 else if (sed_cmds[i].beg_match) {
636 if (regexec(sed_cmds[i].beg_match, line, 0, NULL, 0) == 0)
637 line_altered += do_sed_command(&sed_cmds[i], line);
638 }
639
640 /* are we acting on a range of line numbers? */
Mark Whitley40406e62000-08-10 00:09:47 +0000641 else if (sed_cmds[i].beg_line > 0 && sed_cmds[i].end_line != 0) {
Mark Whitley2dc192f2000-11-03 19:47:00 +0000642 if (linenum >= sed_cmds[i].beg_line &&
643 (sed_cmds[i].end_line == -1 || linenum <= sed_cmds[i].end_line))
Mark Whitley6315ce62000-07-10 22:55:51 +0000644 line_altered += do_sed_command(&sed_cmds[i], line);
645 }
646
647 /* are we acting on a specified line number */
648 else if (sed_cmds[i].beg_line > 0) {
649 if (linenum == sed_cmds[i].beg_line)
650 line_altered += do_sed_command(&sed_cmds[i], line);
651 }
652
653 /* not acting on matches or line numbers. act on every line */
654 else
655 line_altered += do_sed_command(&sed_cmds[i], line);
656
Erik Andersene49d5ec2000-02-08 19:58:47 +0000657 }
Erik Andersen1266a131999-12-29 22:19:46 +0000658
Mark Whitley2dc192f2000-11-03 19:47:00 +0000659 /* we will print the line unless we were told to be quiet or if the
660 * line was altered (via a 'd'elete or 's'ubstitution), in which case
661 * the altered line was already printed */
662 if (!be_quiet && !line_altered)
Mark Whitley6315ce62000-07-10 22:55:51 +0000663 fputs(line, stdout);
664
665 free(line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000666 }
Erik Andersen1266a131999-12-29 22:19:46 +0000667}
668
669extern int sed_main(int argc, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000670{
Mark Whitley6315ce62000-07-10 22:55:51 +0000671 int opt;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000672
Eric Andersenb040d4f2000-07-25 18:01:20 +0000673#ifdef BB_FEATURE_CLEAN_UP
Mark Whitley858c1ad2000-07-11 21:38:47 +0000674 /* destroy command strings on exit */
Matt Kraaia9819b22000-12-22 01:48:07 +0000675 if (atexit(destroy_cmd_strs) == -1)
676 perror_msg_and_die("atexit");
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000677#endif
Mark Whitley858c1ad2000-07-11 21:38:47 +0000678
Mark Whitley6315ce62000-07-10 22:55:51 +0000679 /* do normal option parsing */
Eric Andersenb50da532001-02-17 16:52:35 +0000680 while ((opt = getopt(argc, argv, "ne:f:")) > 0) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000681 switch (opt) {
Erik Andersene916d242000-03-06 19:20:35 +0000682 case 'n':
Mark Whitley6315ce62000-07-10 22:55:51 +0000683 be_quiet++;
Erik Andersene916d242000-03-06 19:20:35 +0000684 break;
685 case 'e':
Mark Whitley6315ce62000-07-10 22:55:51 +0000686 add_cmd_str(optarg);
Erik Andersene916d242000-03-06 19:20:35 +0000687 break;
Mark Whitley6315ce62000-07-10 22:55:51 +0000688 case 'f':
689 load_cmd_file(optarg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000690 break;
Eric Andersenb50da532001-02-17 16:52:35 +0000691 default:
692 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000693 }
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000694 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000695
696 /* if we didn't get a pattern from a -e and no command file was specified,
697 * argv[optind] should be the pattern. no pattern, no worky */
698 if (ncmds == 0) {
699 if (argv[optind] == NULL)
Eric Andersen67991cf2001-02-14 21:23:06 +0000700 show_usage();
Mark Whitley6315ce62000-07-10 22:55:51 +0000701 else {
702 add_cmd_str(argv[optind]);
703 optind++;
704 }
705 }
706
707
708 /* argv[(optind)..(argc-1)] should be names of file to process. If no
709 * files were specified or '-' was specified, take input from stdin.
710 * Otherwise, we process all the files specified. */
711 if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) {
712 process_file(stdin);
713 }
714 else {
715 int i;
716 FILE *file;
717 for (i = optind; i < argc; i++) {
718 file = fopen(argv[i], "r");
719 if (file == NULL) {
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000720 perror_msg("%s", argv[i]);
Mark Whitley6315ce62000-07-10 22:55:51 +0000721 } else {
722 process_file(file);
723 fclose(file);
724 }
725 }
726 }
727
Mark Whitley6315ce62000-07-10 22:55:51 +0000728 return 0;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000729}