blob: f3c3262e42785125a8e3bb72e3a4948504529232 [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 *
Erik Andersen61677fe2000-04-13 01:18:56 +00004 * Copyright (C) 1999,2000 by Lineo, inc.
Mark Whitley6315ce62000-07-10 22:55:51 +00005 * Written by Mark Whitley <markw@lineo.com>, <markw@enol.com>
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')
39 - no support for characters other than the '/' character for regex matches
40 - no pattern space hold space storing / swapping (x, etc.)
41 - no labels / branching (: label, b, t, and friends)
42 - and lots, lots more.
43
44*/
45
Eric Andersen6b6b3f61999-10-28 16:06:25 +000046#include <stdio.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000047#include <stdlib.h> /* for realloc() */
48#include <unistd.h> /* for getopt() */
49#include <regex.h>
50#include <string.h> /* for strdup() */
Eric Andersen6b6b3f61999-10-28 16:06:25 +000051#include <errno.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000052#include <ctype.h> /* for isspace() */
53#include "internal.h"
54
Pavel Roskin9c5fcc32000-07-17 23:45:12 +000055#define bb_need_full_version
56#define BB_DECLARE_EXTERN
57#include "messages.c"
Mark Whitley6315ce62000-07-10 22:55:51 +000058
59/* externs */
60extern 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 +000066static const int SUB_G = 1 << 0;
67#ifdef BB_FEATURE_SED_PATTERN_SPACE
68static const int SUB_P = 1 << 1;
69#endif
70
Mark Whitley6315ce62000-07-10 22:55:51 +000071struct sed_cmd {
72
73 /* address storage */
74 int beg_line; /* 'sed 1p' 0 == no begining line, apply commands to all lines */
75 int end_line; /* 'sed 1,3p' 0 == no end line, use only beginning. -1 == $ */
76 regex_t *beg_match; /* sed -e '/match/cmd' */
77 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
78
79 /* the command */
80 char cmd; /* p,d,s (add more at your leisure :-) */
81
82 /* substitution command specific fields */
83 regex_t *sub_match; /* sed -e 's/sub_match/replace/' */
84 char *replace; /* sed -e 's/sub_match/replace/' XXX: who will hold the \1 \2 \3s? */
Mark Whitley97562bd2000-07-17 20:06:42 +000085 unsigned int num_backrefs:4; /* how many back references (\1..\9) */
86 /* Note: GNU/POSIX sed does not save more than nine backrefs, so
87 * we only use 4 bits to hold the number */
Mark Whitley0e4cec02000-08-21 21:29:20 +000088#ifndef BB_FEATURE_SED_PATTERN_SPACE
89 unsigned int sub_flags:1; /* sed -e 's/foo/bar/g' (global) */
90#else
91 unsigned int sub_flags:2; /* sed -e 's/foo/bar/gp' (global/pattern) */
92#endif
Mark Whitley94074a92000-07-14 00:00:15 +000093
94 /* edit command (a,i,c) speicific field */
95 char *editline;
Mark Whitley6315ce62000-07-10 22:55:51 +000096};
97
98/* globals */
99static struct sed_cmd *sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */
100static int ncmds = 0; /* number of sed commands */
101
102/*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000103
Eric Andersenb040d4f2000-07-25 18:01:20 +0000104#ifdef BB_FEATURE_CLEAN_UP
Mark Whitley6315ce62000-07-10 22:55:51 +0000105static void destroy_cmd_strs()
106{
107 if (sed_cmds == NULL)
108 return;
109
110 /* destroy all the elements in the array */
111 while (--ncmds >= 0) {
112
113 if (sed_cmds[ncmds].beg_match) {
114 regfree(sed_cmds[ncmds].beg_match);
115 free(sed_cmds[ncmds].beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000116 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000117 if (sed_cmds[ncmds].end_match) {
118 regfree(sed_cmds[ncmds].end_match);
119 free(sed_cmds[ncmds].end_match);
120 }
121 if (sed_cmds[ncmds].sub_match) {
122 regfree(sed_cmds[ncmds].sub_match);
123 free(sed_cmds[ncmds].sub_match);
124 }
125 if (sed_cmds[ncmds].replace)
126 free(sed_cmds[ncmds].replace);
127 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000128
Mark Whitley6315ce62000-07-10 22:55:51 +0000129 /* destroy the array */
130 free(sed_cmds);
131 sed_cmds = NULL;
132}
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000133#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000134
Mark Whitley70705d72000-07-14 19:06:30 +0000135#if 0
Mark Whitley6315ce62000-07-10 22:55:51 +0000136/*
137 * trim_str - trims leading and trailing space from a string
138 *
139 * Note: This returns a malloc'ed string so you must store and free it
140 * XXX: This should be in the utility.c file.
Mark Whitley70705d72000-07-14 19:06:30 +0000141 * XXX: This is now obsolete. Maybe it belongs nowhere.
Mark Whitley6315ce62000-07-10 22:55:51 +0000142 */
143static char *trim_str(const char *str)
144{
145 int i;
146 char *retstr = strdup(str);
147
148 /* trim leading whitespace */
149 memmove(retstr, &retstr[strspn(retstr, " \n\t\v")], strlen(retstr));
150
151 /* trim trailing whitespace */
152 i = strlen(retstr) - 1;
153 while (isspace(retstr[i]))
154 i--;
155 retstr[++i] = 0;
156
157 /* Aside:
158 *
159 * you know, a strrspn() would really be nice cuz then we could say:
160 *
Mark Whitley70705d72000-07-14 19:06:30 +0000161 * retstr[strrspn(retstr, " \n\t\v") + 1] = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +0000162 */
163
164 return retstr;
165}
Mark Whitley70705d72000-07-14 19:06:30 +0000166#endif
167
168#if 0
169/*
170 * strrspn - works just like strspn() but goes from right to left instead of
171 * left to right
172 */
173static size_t strrspn(const char *s, const char *accept)
174{
175 size_t i = strlen(s);
176
177 while (strchr(accept, s[--i]))
178 ;
179
180 return i;
181}
182#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000183
184/*
Mark Whitley97562bd2000-07-17 20:06:42 +0000185 * index_of_next_unescaped_slash - walks left to right through a string
186 * beginning at a specified index and returns the index of the next forward
187 * slash ('/') not preceeded by a backslash ('\').
Mark Whitley6315ce62000-07-10 22:55:51 +0000188 */
Mark Whitley06f35292000-07-13 19:58:04 +0000189static int index_of_next_unescaped_slash(const char *str, int idx)
Mark Whitley6315ce62000-07-10 22:55:51 +0000190{
Mark Whitley97562bd2000-07-17 20:06:42 +0000191 for ( ; str[idx]; idx++) {
192 if (str[idx] == '/' && str[idx-1] != '\\')
193 return idx;
194 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000195
Mark Whitley97562bd2000-07-17 20:06:42 +0000196 /* if we make it to here, we've hit the end of the string */
197 return -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000198}
199
200/*
201 * returns the index in the string just past where the address ends.
202 */
203static int get_address(const char *str, int *line, regex_t **regex)
204{
205 char *my_str = strdup(str);
206 int idx = 0;
207
208 if (isdigit(my_str[idx])) {
209 do {
210 idx++;
211 } while (isdigit(my_str[idx]));
212 my_str[idx] = 0;
213 *line = atoi(my_str);
Mark Whitley6315ce62000-07-10 22:55:51 +0000214 }
215 else if (my_str[idx] == '$') {
216 *line = -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000217 idx++;
218 }
219 else if (my_str[idx] == '/') {
Mark Whitley97562bd2000-07-17 20:06:42 +0000220 idx = index_of_next_unescaped_slash(my_str, ++idx);
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000221 if (idx == -1)
Matt Kraaibe84cd42000-07-12 17:02:35 +0000222 fatalError("unterminated match expression\n");
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000223 my_str[idx] = '\0';
224 *regex = (regex_t *)xmalloc(sizeof(regex_t));
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000225 xregcomp(*regex, my_str+1, REG_NEWLINE);
Mark Whitley496e33f2000-07-13 22:52:02 +0000226 idx++; /* so it points to the next character after the last '/' */
Mark Whitley6315ce62000-07-10 22:55:51 +0000227 }
228 else {
Matt Kraaid537a952000-07-14 01:51:25 +0000229 errorMsg("get_address: no address found in string\n"
230 "\t(you probably didn't check the string you passed me)\n");
Mark Whitley6315ce62000-07-10 22:55:51 +0000231 idx = -1;
232 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000233
Mark Whitley6315ce62000-07-10 22:55:51 +0000234 free(my_str);
235 return idx;
236}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000237
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000238static char *strdup_substr(const char *str, int start, int end)
239{
240 int size = end - start + 1;
241 char *newstr = xmalloc(size);
242 memcpy(newstr, str+start, size-1);
243 newstr[size-1] = '\0';
244 return newstr;
245}
246
Mark Whitley70705d72000-07-14 19:06:30 +0000247static int parse_subst_cmd(struct sed_cmd *sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000248{
249 int oldidx, cflags = REG_NEWLINE;
250 char *match;
251 int idx = 0;
Mark Whitley97562bd2000-07-17 20:06:42 +0000252 int j;
Mark Whitley06f35292000-07-13 19:58:04 +0000253
254 /*
255 * the string that gets passed to this function should look like this:
Mark Whitley0e4cec02000-08-21 21:29:20 +0000256 * s/match/replace/gIp
257 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000258 * mandatory optional
259 *
260 * (all three of the '/' slashes are mandatory)
261 */
262
263 /* verify that the 's' is followed by a 'slash' */
264 if (substr[++idx] != '/')
265 fatalError("bad format in substitution expression\n");
266
267 /* save the match string */
268 oldidx = idx+1;
Mark Whitley97562bd2000-07-17 20:06:42 +0000269 idx = index_of_next_unescaped_slash(substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000270 if (idx == -1)
271 fatalError("bad format in substitution expression\n");
272 match = strdup_substr(substr, oldidx, idx);
273
Mark Whitley97562bd2000-07-17 20:06:42 +0000274 /* determine the number of back references in the match string */
275 /* Note: we compute this here rather than in the do_subst_command()
276 * function to save processor time, at the expense of a little more memory
277 * (4 bits) per sed_cmd */
278
279 /* sed_cmd->num_backrefs = 0; */ /* XXX: not needed? --apparently not */
280 for (j = 0; match[j]; j++) {
281 /* GNU/POSIX sed does not save more than nine backrefs */
282 if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs < 9)
283 sed_cmd->num_backrefs++;
284 }
285
Mark Whitley06f35292000-07-13 19:58:04 +0000286 /* save the replacement string */
287 oldidx = idx+1;
Mark Whitley97562bd2000-07-17 20:06:42 +0000288 idx = index_of_next_unescaped_slash(substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000289 if (idx == -1)
290 fatalError("bad format in substitution expression\n");
291 sed_cmd->replace = strdup_substr(substr, oldidx, idx);
292
293 /* process the flags */
294 while (substr[++idx]) {
295 switch (substr[idx]) {
Mark Whitley70705d72000-07-14 19:06:30 +0000296 case 'g':
Mark Whitley0e4cec02000-08-21 21:29:20 +0000297 sed_cmd->sub_flags = SUB_G;
Mark Whitley70705d72000-07-14 19:06:30 +0000298 break;
299 case 'I':
300 cflags |= REG_ICASE;
301 break;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000302#ifdef BB_FEATURE_SED_PATTERN_SPACE
303 case 'p':
304 sed_cmd->sub_flags = SUB_P;
305 break;
306#endif
Mark Whitley70705d72000-07-14 19:06:30 +0000307 default:
308 /* any whitespace or semicolon trailing after a s/// is ok */
309 if (strchr("; \t\v\n\r", substr[idx]))
310 goto out;
311 /* else */
312 fatalError("bad option in substitution expression\n");
Mark Whitley06f35292000-07-13 19:58:04 +0000313 }
314 }
Mark Whitley70705d72000-07-14 19:06:30 +0000315
316out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000317 /* compile the match string into a regex */
Mark Whitley06f35292000-07-13 19:58:04 +0000318 sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t));
319 xregcomp(sed_cmd->sub_match, match, cflags);
320 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000321
322 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000323}
324
Mark Whitley70705d72000-07-14 19:06:30 +0000325static int parse_edit_cmd(struct sed_cmd *sed_cmd, const char *editstr)
Mark Whitley94074a92000-07-14 00:00:15 +0000326{
327 int idx = 0;
Mark Whitley464c5de2000-07-14 23:24:00 +0000328 int slashes_eaten = 0;
Mark Whitley94074a92000-07-14 00:00:15 +0000329 char *ptr; /* shorthand */
330
331 /*
332 * the string that gets passed to this function should look like this:
333 *
334 * need one of these
335 * |
336 * | this backslash (immediately following the edit command) is mandatory
337 * | |
338 * [aic]\
339 * TEXT1\
340 * TEXT2\
341 * TEXTN
342 *
343 * as soon as we hit a TEXT line that has no trailing '\', we're done.
344 * this means a command like:
345 *
346 * i\
347 * INSERTME
348 *
349 * is a-ok.
350 *
351 */
352
353 if (editstr[1] != '\\' && (editstr[2] != '\n' || editstr[2] != '\r'))
354 fatalError("bad format in edit expression\n");
355
356 /* store the edit line text */
Mark Whitley34623db2000-07-14 00:49:59 +0000357 /* make editline big enough to accomodate the extra '\n' we will tack on
358 * to the end */
359 sed_cmd->editline = xmalloc(strlen(&editstr[3]) + 2);
360 strcpy(sed_cmd->editline, &editstr[3]);
Mark Whitley94074a92000-07-14 00:00:15 +0000361 ptr = sed_cmd->editline;
362
363 /* now we need to go through * and: s/\\[\r\n]$/\n/g on the edit line */
364 while (ptr[idx]) {
365 while (ptr[idx] != '\\' && (ptr[idx+1] != '\n' || ptr[idx+1] != '\r')) {
366 idx++;
367 if (!ptr[idx]) {
Mark Whitley464c5de2000-07-14 23:24:00 +0000368 goto out;
Mark Whitley94074a92000-07-14 00:00:15 +0000369 }
370 }
371 /* move the newline over the '\' before it (effectively eats the '\') */
372 memmove(&ptr[idx], &ptr[idx+1], strlen(&ptr[idx+1]));
373 ptr[strlen(ptr)-1] = 0;
Mark Whitley464c5de2000-07-14 23:24:00 +0000374 slashes_eaten++;
Mark Whitley94074a92000-07-14 00:00:15 +0000375 /* substitue \r for \n if needed */
376 if (ptr[idx] == '\r')
377 ptr[idx] = '\n';
378 }
Mark Whitley70705d72000-07-14 19:06:30 +0000379
Mark Whitley464c5de2000-07-14 23:24:00 +0000380out:
381 ptr[idx] = '\n';
382 ptr[idx+1] = 0;
383
384 /* this accounts for discrepancies between the modified string and the
385 * original string passed in to this function */
386 idx += slashes_eaten;
387
388 /* this accounts for the fact that A) we started at index 3, not at index
389 * 0 and B) that we added an extra '\n' at the end (if you think the next
390 * line should read 'idx += 4' remember, arrays are zero-based) */
391
392 idx += 3;
393
Mark Whitley70705d72000-07-14 19:06:30 +0000394 return idx;
Mark Whitley94074a92000-07-14 00:00:15 +0000395}
396
Mark Whitley70705d72000-07-14 19:06:30 +0000397static char *parse_cmd_str(struct sed_cmd *sed_cmd, const char *cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000398{
399 int idx = 0;
400
401 /* parse the command
402 * format is: [addr][,addr]cmd
403 * |----||-----||-|
404 * part1 part2 part3
405 */
406
Mark Whitley70705d72000-07-14 19:06:30 +0000407
Mark Whitley6315ce62000-07-10 22:55:51 +0000408 /* first part (if present) is an address: either a number or a /regex/ */
409 if (isdigit(cmdstr[idx]) || cmdstr[idx] == '/')
410 idx = get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
411
412 /* second part (if present) will begin with a comma */
413 if (cmdstr[idx] == ',')
414 idx += get_address(&cmdstr[++idx], &sed_cmd->end_line, &sed_cmd->end_match);
415
416 /* last part (mandatory) will be a command */
417 if (cmdstr[idx] == '\0')
Matt Kraaibe84cd42000-07-12 17:02:35 +0000418 fatalError("missing command\n");
Mark Whitley94074a92000-07-14 00:00:15 +0000419 if (!strchr("pdsaic", cmdstr[idx])) /* <-- XXX add new commands here */
Matt Kraaibe84cd42000-07-12 17:02:35 +0000420 fatalError("invalid command\n");
Mark Whitley6315ce62000-07-10 22:55:51 +0000421 sed_cmd->cmd = cmdstr[idx];
Mark Whitley6315ce62000-07-10 22:55:51 +0000422
Mark Whitley06f35292000-07-13 19:58:04 +0000423 /* special-case handling for (s)ubstitution */
Mark Whitley70705d72000-07-14 19:06:30 +0000424 if (sed_cmd->cmd == 's') {
425 idx += parse_subst_cmd(sed_cmd, &cmdstr[idx]);
426 }
Mark Whitley94074a92000-07-14 00:00:15 +0000427 /* special-case handling for (a)ppend, (i)nsert, and (c)hange */
Mark Whitley70705d72000-07-14 19:06:30 +0000428 else if (strchr("aic", cmdstr[idx])) {
Mark Whitley02008342000-07-14 00:13:52 +0000429 if (sed_cmd->end_line || sed_cmd->end_match)
430 fatalError("only a beginning address can be specified for edit commands\n");
Mark Whitley70705d72000-07-14 19:06:30 +0000431 idx += parse_edit_cmd(sed_cmd, &cmdstr[idx]);
Mark Whitley02008342000-07-14 00:13:52 +0000432 }
Mark Whitley464c5de2000-07-14 23:24:00 +0000433 /* if it was a single-letter command (such as 'p' or 'd') we need to
434 * increment the index past that command */
435 else
436 idx++;
Mark Whitley70705d72000-07-14 19:06:30 +0000437
438 /* give back whatever's left over */
Mark Whitley464c5de2000-07-14 23:24:00 +0000439 return (char *)&cmdstr[idx];
Eric Andersen50d63601999-11-09 01:47:36 +0000440}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000441
Mark Whitley6315ce62000-07-10 22:55:51 +0000442static void add_cmd_str(const char *cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000443{
Mark Whitley70705d72000-07-14 19:06:30 +0000444 char *mystr = (char *)cmdstr;
Erik Andersen1266a131999-12-29 22:19:46 +0000445
Mark Whitley70705d72000-07-14 19:06:30 +0000446 do {
Mark Whitley6315ce62000-07-10 22:55:51 +0000447
Mark Whitley70705d72000-07-14 19:06:30 +0000448 /* trim leading whitespace and semicolons */
449 memmove(mystr, &mystr[strspn(mystr, "; \n\r\t\v")], strlen(mystr));
450 /* if we ate the whole thing, that means there was just trailing
Mark Whitley464c5de2000-07-14 23:24:00 +0000451 * whitespace or a final / no-op semicolon. either way, get out */
Mark Whitley70705d72000-07-14 19:06:30 +0000452 if (strlen(mystr) == 0)
453 return;
454 /* if this is a comment, jump past it and keep going */
455 if (mystr[0] == '#') {
456 mystr = strpbrk(mystr, ";\n\r");
457 continue;
458 }
459 /* grow the array */
460 sed_cmds = realloc(sed_cmds, sizeof(struct sed_cmd) * (++ncmds));
461 /* zero new element */
462 memset(&sed_cmds[ncmds-1], 0, sizeof(struct sed_cmd));
463 /* load command string into new array element, get remainder */
464 mystr = parse_cmd_str(&sed_cmds[ncmds-1], mystr);
465
Mark Whitley464c5de2000-07-14 23:24:00 +0000466 } while (mystr && strlen(mystr));
Mark Whitley6315ce62000-07-10 22:55:51 +0000467}
468
469
470static void load_cmd_file(char *filename)
471{
472 FILE *cmdfile;
473 char *line;
Mark Whitley94074a92000-07-14 00:00:15 +0000474 char *nextline;
Mark Whitley6315ce62000-07-10 22:55:51 +0000475
476 cmdfile = fopen(filename, "r");
477 if (cmdfile == NULL)
Mark Whitley858c1ad2000-07-11 21:38:47 +0000478 fatalError(strerror(errno));
Mark Whitley6315ce62000-07-10 22:55:51 +0000479
480 while ((line = get_line_from_file(cmdfile)) != NULL) {
Mark Whitley94074a92000-07-14 00:00:15 +0000481 /* if a line ends with '\' it needs the next line appended to it */
482 while (line[strlen(line)-2] == '\\' &&
483 (nextline = get_line_from_file(cmdfile)) != NULL) {
484 line = realloc(line, strlen(line) + strlen(nextline) + 1);
485 strcat(line, nextline);
Mark Whitley464c5de2000-07-14 23:24:00 +0000486 free(nextline);
Mark Whitley94074a92000-07-14 00:00:15 +0000487 }
Mark Whitley464c5de2000-07-14 23:24:00 +0000488 /* eat trailing newline (if any) --if I don't do this, edit commands
489 * (aic) will print an extra newline */
490 if (line[strlen(line)-1] == '\n')
491 line[strlen(line)-1] = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +0000492 add_cmd_str(line);
493 free(line);
494 }
495}
496
Mark Whitley97562bd2000-07-17 20:06:42 +0000497static void print_subst_w_backrefs(const char *line, const char *replace, regmatch_t *regmatch)
498{
499 int i;
500
501 /* go through the replacement string */
502 for (i = 0; replace[i]; i++) {
503 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
504 if (replace[i] == '\\' && isdigit(replace[i+1])) {
505 int j;
506 char tmpstr[2];
507 int backref;
508 ++i; /* i now indexes the backref number, instead of the leading slash */
509 tmpstr[0] = replace[i];
510 tmpstr[1] = 0;
511 backref = atoi(tmpstr);
512 /* print out the text held in regmatch[backref] */
513 for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++)
514 fputc(line[j], stdout);
515 }
516
Mark Whitley83e85f62000-07-25 20:48:44 +0000517 /* if we find a backslash escaped character, print the character */
518 else if (replace[i] == '\\') {
519 ++i;
520 fputc(replace[i], stdout);
521 }
522
Mark Whitley97562bd2000-07-17 20:06:42 +0000523 /* if we find an unescaped '&' print out the whole matched text.
524 * fortunately, regmatch[0] contains the indicies to the whole matched
525 * expression (kinda seems like it was designed for just such a
526 * purpose...) */
527 else if (replace[i] == '&' && replace[i-1] != '\\') {
528 int j;
529 for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++)
530 fputc(line[j], stdout);
531 }
532 /* nothing special, just print this char of the replacement string to stdout */
533 else
534 fputc(replace[i], stdout);
535 }
536}
537
Mark Whitley4f7fe772000-07-13 20:01:58 +0000538static int do_subst_command(const struct sed_cmd *sed_cmd, const char *line)
539{
540 int altered = 0;
541
542 /* we only substitute if the substitution 'search' expression matches */
543 if (regexec(sed_cmd->sub_match, line, 0, NULL, 0) == 0) {
Mark Whitley97562bd2000-07-17 20:06:42 +0000544 regmatch_t *regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs+1));
Mark Whitley4f7fe772000-07-13 20:01:58 +0000545 int i;
546 char *ptr = (char *)line;
547
548 while (*ptr) {
549 /* if we can match the search string... */
Mark Whitley97562bd2000-07-17 20:06:42 +0000550 if (regexec(sed_cmd->sub_match, ptr, sed_cmd->num_backrefs+1, regmatch, 0) == 0) {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000551 /* print everything before the match, */
Mark Whitley0e4cec02000-08-21 21:29:20 +0000552 for (i = 0; i < regmatch[0].rm_so; i++) {
553#ifdef BB_FEATURE_SED_PATTERN_SPACE
554 if(!be_quiet || (sed_cmd->sub_flags & SUB_P))
555#endif
Mark Whitley4f7fe772000-07-13 20:01:58 +0000556 fputc(ptr[i], stdout);
Mark Whitley0e4cec02000-08-21 21:29:20 +0000557 }
Mark Whitley97562bd2000-07-17 20:06:42 +0000558
Mark Whitley4f7fe772000-07-13 20:01:58 +0000559 /* then print the substitution in its place */
Mark Whitley0e4cec02000-08-21 21:29:20 +0000560#ifdef BB_FEATURE_SED_PATTERN_SPACE
561 if(!be_quiet || (sed_cmd->sub_flags & SUB_P))
562#endif
Mark Whitley97562bd2000-07-17 20:06:42 +0000563 print_subst_w_backrefs(ptr, sed_cmd->replace, regmatch);
564
Mark Whitley4f7fe772000-07-13 20:01:58 +0000565 /* then advance past the match */
Mark Whitley97562bd2000-07-17 20:06:42 +0000566 ptr += regmatch[0].rm_eo;
567
Mark Whitley94074a92000-07-14 00:00:15 +0000568 /* and flag that something has changed */
Mark Whitley4f7fe772000-07-13 20:01:58 +0000569 altered++;
570
571 /* if we're not doing this globally... */
Mark Whitley0e4cec02000-08-21 21:29:20 +0000572 if (!sed_cmd->sub_flags & SUB_G)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000573 break;
574 }
575 /* if we COULD NOT match the search string (meaning we've gone past
576 * all previous instances), get out */
577 else
578 break;
579 }
580
581 /* is there anything left to print? */
Mark Whitley0e4cec02000-08-21 21:29:20 +0000582#ifdef BB_FEATURE_SED_PATTERN_SPACE
583 if (*ptr && (!be_quiet || sed_cmds->sub_flags & SUB_P))
584#else
Mark Whitley4f7fe772000-07-13 20:01:58 +0000585 if (*ptr)
Mark Whitley0e4cec02000-08-21 21:29:20 +0000586#endif
Mark Whitley4f7fe772000-07-13 20:01:58 +0000587 fputs(ptr, stdout);
Mark Whitley97562bd2000-07-17 20:06:42 +0000588
589 /* cleanup */
590 free(regmatch);
Mark Whitley4f7fe772000-07-13 20:01:58 +0000591 }
592
593 return altered;
594}
Mark Whitley6315ce62000-07-10 22:55:51 +0000595
596static int do_sed_command(const struct sed_cmd *sed_cmd, const char *line)
597{
598 int altered = 0;
599
600 switch (sed_cmd->cmd) {
601
602 case 'p':
603 fputs(line, stdout);
604 break;
605
606 case 'd':
607 altered++;
608 break;
609
Mark Whitley4f7fe772000-07-13 20:01:58 +0000610 case 's':
611 altered = do_subst_command(sed_cmd, line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000612 break;
Mark Whitley94074a92000-07-14 00:00:15 +0000613
614 case 'a':
615 fputs(line, stdout);
616 fputs(sed_cmd->editline, stdout);
617 altered++;
618 break;
619
620 case 'i':
621 fputs(sed_cmd->editline, stdout);
622 break;
623
624 case 'c':
625 fputs(sed_cmd->editline, stdout);
626 altered++;
627 break;
Mark Whitley6315ce62000-07-10 22:55:51 +0000628 }
629
630 return altered;
631}
632
633static void process_file(FILE *file)
634{
635 char *line = NULL;
636 static int linenum = 0; /* GNU sed does not restart counting lines at EOF */
637 unsigned int still_in_range = 0;
638 int line_altered;
639 int i;
640
641 /* go through every line in the file */
642 while ((line = get_line_from_file(file)) != NULL) {
643
644 linenum++;
645 line_altered = 0;
646
647 /* for every line, go through all the commands */
648 for (i = 0; i < ncmds; i++) {
649
650 /* are we acting on a range of matched lines? */
651 if (sed_cmds[i].beg_match && sed_cmds[i].end_match) {
652 if (still_in_range || regexec(sed_cmds[i].beg_match, line, 0, NULL, 0) == 0) {
653 line_altered += do_sed_command(&sed_cmds[i], line);
654 still_in_range = 1;
655 if (regexec(sed_cmds[i].end_match, line, 0, NULL, 0) == 0)
656 still_in_range = 0;
657 }
658 }
659
660 /* are we trying to match a single line? */
661 else if (sed_cmds[i].beg_match) {
662 if (regexec(sed_cmds[i].beg_match, line, 0, NULL, 0) == 0)
663 line_altered += do_sed_command(&sed_cmds[i], line);
664 }
665
666 /* are we acting on a range of line numbers? */
Mark Whitley40406e62000-08-10 00:09:47 +0000667 else if (sed_cmds[i].beg_line > 0 && sed_cmds[i].end_line != 0) {
668 if (linenum >= sed_cmds[i].beg_line && (sed_cmds[i].end_line == -1 || linenum <= sed_cmds[i].end_line))
Mark Whitley6315ce62000-07-10 22:55:51 +0000669 line_altered += do_sed_command(&sed_cmds[i], line);
670 }
671
672 /* are we acting on a specified line number */
673 else if (sed_cmds[i].beg_line > 0) {
674 if (linenum == sed_cmds[i].beg_line)
675 line_altered += do_sed_command(&sed_cmds[i], line);
676 }
677
678 /* not acting on matches or line numbers. act on every line */
679 else
680 line_altered += do_sed_command(&sed_cmds[i], line);
681
Erik Andersene49d5ec2000-02-08 19:58:47 +0000682 }
Erik Andersen1266a131999-12-29 22:19:46 +0000683
Mark Whitley0e4cec02000-08-21 21:29:20 +0000684 /* we will print the line unless we were told to be quiet or if
685 * the line was altered (via a 'd'elete or 's'ubstitution) */
686#ifndef BB_FEATURE_SED_PATTERN_SPACE
687 if (!be_quiet &&!line_altered)
688#else
689 /* we where specificly requested to print the output */
690 if ((!be_quiet || (sed_cmds[i].sub_flags & SUB_P)) && !line_altered)
691#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000692 fputs(line, stdout);
693
694 free(line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000695 }
Erik Andersen1266a131999-12-29 22:19:46 +0000696}
697
698extern int sed_main(int argc, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000699{
Mark Whitley6315ce62000-07-10 22:55:51 +0000700 int opt;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000701
Eric Andersenb040d4f2000-07-25 18:01:20 +0000702#ifdef BB_FEATURE_CLEAN_UP
Mark Whitley858c1ad2000-07-11 21:38:47 +0000703 /* destroy command strings on exit */
704 if (atexit(destroy_cmd_strs) == -1) {
705 perror("sed");
706 exit(1);
707 }
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000708#endif
Mark Whitley858c1ad2000-07-11 21:38:47 +0000709
Mark Whitley6315ce62000-07-10 22:55:51 +0000710 /* do normal option parsing */
Mark Whitley1f45b262000-07-20 23:08:40 +0000711 while ((opt = getopt(argc, argv, "hne:f:")) > 0) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000712 switch (opt) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000713 case 'h':
714 usage(sed_usage);
715 break;
Erik Andersene916d242000-03-06 19:20:35 +0000716 case 'n':
Mark Whitley6315ce62000-07-10 22:55:51 +0000717 be_quiet++;
Erik Andersene916d242000-03-06 19:20:35 +0000718 break;
719 case 'e':
Mark Whitley6315ce62000-07-10 22:55:51 +0000720 add_cmd_str(optarg);
Erik Andersene916d242000-03-06 19:20:35 +0000721 break;
Mark Whitley6315ce62000-07-10 22:55:51 +0000722 case 'f':
723 load_cmd_file(optarg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000724 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000725 }
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000726 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000727
728 /* if we didn't get a pattern from a -e and no command file was specified,
729 * argv[optind] should be the pattern. no pattern, no worky */
730 if (ncmds == 0) {
731 if (argv[optind] == NULL)
732 usage(sed_usage);
733 else {
734 add_cmd_str(argv[optind]);
735 optind++;
736 }
737 }
738
739
740 /* argv[(optind)..(argc-1)] should be names of file to process. If no
741 * files were specified or '-' was specified, take input from stdin.
742 * Otherwise, we process all the files specified. */
743 if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) {
744 process_file(stdin);
745 }
746 else {
747 int i;
748 FILE *file;
749 for (i = optind; i < argc; i++) {
750 file = fopen(argv[i], "r");
751 if (file == NULL) {
Matt Kraaid537a952000-07-14 01:51:25 +0000752 errorMsg("%s: %s\n", argv[i], strerror(errno));
Mark Whitley6315ce62000-07-10 22:55:51 +0000753 } else {
754 process_file(file);
755 fclose(file);
756 }
757 }
758 }
759
Mark Whitley6315ce62000-07-10 22:55:51 +0000760 return 0;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000761}