blob: 1552cf3703cf9b4d1c5c35bdb57b60c0a5177208 [file] [log] [blame]
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001/* vi: set sw=4 ts=4: */
Eric Andersen6b6b3f61999-10-28 16:06:25 +00002/*
Mark Whitley6315ce62000-07-10 22:55:51 +00003 * sed.c - very minimalist version of sed
Eric Andersen6b6b3f61999-10-28 16:06:25 +00004 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
6 * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
Matt Kraai5ed78ad2002-01-03 21:12:34 +00007 * Copyright (C) 2002 Matt Kraai
Denis Vlasenko0beaff82007-09-21 13:16:32 +00008 * Copyright (C) 2003 by Glenn McGrath
Rob Landley25d82392004-04-01 09:23:30 +00009 * Copyright (C) 2003,2004 by Rob Landley <rob@landley.net>
Erik Andersen1266a131999-12-29 22:19:46 +000010 *
Rob Landley2b26fd52006-02-24 02:30:39 +000011 * MAINTAINER: Rob Landley <rob@landley.net>
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +000012 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020013 * Licensed under GPLv2, see file LICENSE in this source tree.
Eric Andersen6b6b3f61999-10-28 16:06:25 +000014 */
15
Glenn L McGrathaa5a6022003-10-01 03:06:16 +000016/* Code overview.
Denys Vlasenko52d83702011-05-03 00:51:43 +020017 *
18 * Files are laid out to avoid unnecessary function declarations. So for
19 * example, every function add_cmd calls occurs before add_cmd in this file.
20 *
21 * add_cmd() is called on each line of sed command text (from a file or from
22 * the command line). It calls get_address() and parse_cmd_args(). The
23 * resulting sed_cmd_t structures are appended to a linked list
24 * (G.sed_cmd_head/G.sed_cmd_tail).
25 *
26 * add_input_file() adds a FILE* to the list of input files. We need to
27 * know all input sources ahead of time to find the last line for the $ match.
28 *
29 * process_files() does actual sedding, reading data lines from each input FILE *
30 * (which could be stdin) and applying the sed command list (sed_cmd_head) to
31 * each of the resulting lines.
32 *
33 * sed_main() is where external code calls into this, with a command line.
34 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +000035
Denys Vlasenko52d83702011-05-03 00:51:43 +020036/* Supported features and commands in this version of sed:
37 *
38 * - comments ('#')
39 * - address matching: num|/matchstr/[,num|/matchstr/|$]command
40 * - commands: (p)rint, (d)elete, (s)ubstitue (with g & I flags)
41 * - edit commands: (a)ppend, (i)nsert, (c)hange
42 * - file commands: (r)ead
43 * - backreferences in substitution expressions (\0, \1, \2...\9)
44 * - grouped commands: {cmd1;cmd2}
45 * - transliteration (y/source-chars/dest-chars/)
46 * - pattern space hold space storing / swapping (g, h, x)
47 * - labels / branching (: label, b, t, T)
48 *
49 * (Note: Specifying an address (range) to match is *optional*; commands
50 * default to the whole pattern space if no specific address match was
51 * requested.)
52 *
53 * Todo:
54 * - Create a wrapper around regex to make libc's regex conform with sed
55 *
56 * Reference http://www.opengroup.org/onlinepubs/007904975/utilities/sed.html
57 */
Mark Whitley6315ce62000-07-10 22:55:51 +000058
Pere Orga6a3e01d2011-04-01 22:56:30 +020059//usage:#define sed_trivial_usage
60//usage: "[-efinr] SED_CMD [FILE]..."
61//usage:#define sed_full_usage "\n\n"
Denys Vlasenko66426762011-06-05 03:58:28 +020062//usage: " -e CMD Add CMD to sed commands to be executed"
Pere Orga6a3e01d2011-04-01 22:56:30 +020063//usage: "\n -f FILE Add FILE contents to sed commands to be executed"
64//usage: "\n -i Edit files in-place (else sends result to stdout)"
65//usage: "\n -n Suppress automatic printing of pattern space"
66//usage: "\n -r Use extended regex syntax"
67//usage: "\n"
68//usage: "\nIf no -e or -f, the first non-option argument is the sed command string."
69//usage: "\nRemaining arguments are input files (stdin if none)."
70//usage:
71//usage:#define sed_example_usage
72//usage: "$ echo \"foo\" | sed -e 's/f[a-zA-Z]o/bar/g'\n"
73//usage: "bar\n"
74
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000075#include "libbb.h"
"Vladimir N. Oleynik"23f62fc2005-09-14 16:59:11 +000076#include "xregex.h"
Mark Whitley6315ce62000-07-10 22:55:51 +000077
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +020078#if 0
79# define dbg(...) bb_error_msg(__VA_ARGS__)
80#else
81# define dbg(...) ((void)0)
82#endif
83
84
Denys Vlasenko2e284a42010-08-01 04:14:46 +020085enum {
86 OPT_in_place = 1 << 0,
87};
88
Rob Landleye3f5a3f2006-05-09 03:53:55 +000089/* Each sed command turns into one of these structures. */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +000090typedef struct sed_cmd_s {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000091 /* Ordered by alignment requirements: currently 36 bytes on x86 */
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +000092 struct sed_cmd_s *next; /* Next command (linked list, NULL terminated) */
Mark Whitley2dc192f2000-11-03 19:47:00 +000093
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000094 /* address storage */
95 regex_t *beg_match; /* sed -e '/match/cmd' */
96 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
97 regex_t *sub_match; /* For 's/sub_match/string/' */
98 int beg_line; /* 'sed 1p' 0 == apply commands to all lines */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +020099 int beg_line_orig; /* copy of the above, needed for -i */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000100 int end_line; /* 'sed 1,3p' 0 == one line only. -1 = last line ($) */
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +0000101
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000102 FILE *sw_file; /* File (sw) command writes to, -1 for none. */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000103 char *string; /* Data string for (saicytb) commands. */
Glenn L McGrathfc4cb4d2003-04-12 16:10:42 +0000104
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000105 unsigned which_match; /* (s) Which match to replace (0 for all) */
Glenn L McGrathfc4cb4d2003-04-12 16:10:42 +0000106
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000107 /* Bitfields (gcc won't group them if we don't) */
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +0000108 unsigned invert:1; /* the '!' after the address */
109 unsigned in_match:1; /* Next line also included in match? */
110 unsigned sub_p:1; /* (s) print option */
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000111
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +0000112 char sw_last_char; /* Last line written by (sw) had no '\n' */
Glenn L McGrathc18ce372003-09-13 06:57:39 +0000113
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000114 /* GENERAL FIELDS */
115 char cmd; /* The command char: abcdDgGhHilnNpPqrstwxy:={} */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000116} sed_cmd_t;
Mark Whitley6315ce62000-07-10 22:55:51 +0000117
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000118static const char semicolon_whitespace[] ALIGN1 = "; \n\r\t\v";
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000119
Denis Vlasenko17a15262007-03-26 20:48:46 +0000120struct globals {
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000121 /* options */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000122 int be_quiet, regex_type;
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000123 FILE *nonstdout;
124 char *outname, *hold_space;
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000125
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000126 /* List of input files */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000127 int input_file_count, current_input_file;
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000128 FILE **input_file_list;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000129
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000130 regmatch_t regmatch[10];
131 regex_t *previous_regex_ptr;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000132
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000133 /* linked list of sed commands */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200134 sed_cmd_t *sed_cmd_head, **sed_cmd_tail;
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000135
136 /* Linked list of append lines */
137 llist_t *append_head;
138
139 char *add_cmd_line;
140
141 struct pipeline {
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200142 char *buf; /* Space to hold string */
143 int idx; /* Space used */
144 int len; /* Space allocated */
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000145 } pipeline;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100146} FIX_ALIASING;
Denis Vlasenko17a15262007-03-26 20:48:46 +0000147#define G (*(struct globals*)&bb_common_bufsiz1)
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200148struct BUG_G_too_big {
Denys Vlasenkob7c9fb22011-02-03 00:05:48 +0100149 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200150};
Denis Vlasenko74324c82007-06-04 10:16:52 +0000151#define INIT_G() do { \
Denis Vlasenko74324c82007-06-04 10:16:52 +0000152 G.sed_cmd_tail = &G.sed_cmd_head; \
153} while (0)
154
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000155
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +0000156#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000157static void sed_free_and_close_stuff(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000158{
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200159 sed_cmd_t *sed_cmd = G.sed_cmd_head;
Mark Whitley6315ce62000-07-10 22:55:51 +0000160
Denis Vlasenko17a15262007-03-26 20:48:46 +0000161 llist_free(G.append_head, free);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000162
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000163 while (sed_cmd) {
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000164 sed_cmd_t *sed_cmd_next = sed_cmd->next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000165
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000166 if (sed_cmd->sw_file)
167 xprint_and_close_file(sed_cmd->sw_file);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000168
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000169 if (sed_cmd->beg_match) {
170 regfree(sed_cmd->beg_match);
171 free(sed_cmd->beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000172 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000173 if (sed_cmd->end_match) {
174 regfree(sed_cmd->end_match);
175 free(sed_cmd->end_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000176 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000177 if (sed_cmd->sub_match) {
178 regfree(sed_cmd->sub_match);
179 free(sed_cmd->sub_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000180 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000181 free(sed_cmd->string);
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000182 free(sed_cmd);
183 sed_cmd = sed_cmd_next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000184 }
Rob Landleyce4f0e92004-10-30 06:54:19 +0000185
Denis Vlasenko60818682007-09-28 22:07:23 +0000186 free(G.hold_space);
Rob Landleydcc28662004-11-25 07:21:47 +0000187
Denis Vlasenko17a15262007-03-26 20:48:46 +0000188 while (G.current_input_file < G.input_file_count)
189 fclose(G.input_file_list[G.current_input_file++]);
Mark Whitley6315ce62000-07-10 22:55:51 +0000190}
Denis Vlasenko666da5e2006-12-26 18:17:42 +0000191#else
192void sed_free_and_close_stuff(void);
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000193#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000194
Rob Landley53302f82004-02-18 09:54:15 +0000195/* If something bad happens during -i operation, delete temp file */
196
197static void cleanup_outname(void)
198{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000199 if (G.outname) unlink(G.outname);
Rob Landley53302f82004-02-18 09:54:15 +0000200}
201
Denis Vlasenko40276642007-11-13 16:48:10 +0000202/* strcpy, replacing "\from" with 'to'. If to is NUL, replacing "\any" with 'any' */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000203
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000204static void parse_escapes(char *dest, const char *string, int len, char from, char to)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000205{
Denis Vlasenko80778502006-10-25 12:46:46 +0000206 int i = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000207
Denis Vlasenko80778502006-10-25 12:46:46 +0000208 while (i < len) {
209 if (string[i] == '\\') {
210 if (!to || string[i+1] == from) {
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000211 *dest++ = to ? to : string[i+1];
Denis Vlasenko80778502006-10-25 12:46:46 +0000212 i += 2;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000213 continue;
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000214 }
215 *dest++ = string[i++];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000216 }
Denis Vlasenko40276642007-11-13 16:48:10 +0000217 /* TODO: is it safe wrt a string with trailing '\\' ? */
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000218 *dest++ = string[i++];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000219 }
Denis Vlasenko40276642007-11-13 16:48:10 +0000220 *dest = '\0';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000221}
222
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000223static char *copy_parsing_escapes(const char *string, int len)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000224{
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200225 const char *s;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000226 char *dest = xmalloc(len + 1);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000227
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200228 /* sed recognizes \n */
Denys Vlasenko6a0abcc2011-05-03 00:52:22 +0200229 /* GNU sed also recognizes \t and \r */
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200230 for (s = "\nn\tt\rr"; *s; s += 2) {
231 parse_escapes(dest, string, len, s[1], s[0]);
232 string = dest;
233 len = strlen(dest);
234 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000235 return dest;
236}
237
238
Mark Whitley6315ce62000-07-10 22:55:51 +0000239/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000240 * index_of_next_unescaped_regexp_delim - walks left to right through a string
241 * beginning at a specified index and returns the index of the next regular
Denis Vlasenko40276642007-11-13 16:48:10 +0000242 * expression delimiter (typically a forward slash ('/')) not preceded by
Rob Landley4795e4e2006-07-26 17:25:08 +0000243 * a backslash ('\'). A negative delimiter disables square bracket checking.
Mark Whitley6315ce62000-07-10 22:55:51 +0000244 */
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000245static int index_of_next_unescaped_regexp_delim(int delimiter, const char *str)
Mark Whitley6315ce62000-07-10 22:55:51 +0000246{
Matt Kraaia0065d52001-08-24 14:45:50 +0000247 int bracket = -1;
248 int escaped = 0;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000249 int idx = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000250 char ch;
Matt Kraaia0065d52001-08-24 14:45:50 +0000251
Rob Landley4795e4e2006-07-26 17:25:08 +0000252 if (delimiter < 0) {
253 bracket--;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000254 delimiter = -delimiter;
Rob Landley4795e4e2006-07-26 17:25:08 +0000255 }
256
Denys Vlasenko52d83702011-05-03 00:51:43 +0200257 for (; (ch = str[idx]) != '\0'; idx++) {
Rob Landley4795e4e2006-07-26 17:25:08 +0000258 if (bracket >= 0) {
Denys Vlasenko52d83702011-05-03 00:51:43 +0200259 if (ch == ']'
260 && !(bracket == idx - 1 || (bracket == idx - 2 && str[idx - 1] == '^'))
261 ) {
Matt Kraaia0065d52001-08-24 14:45:50 +0000262 bracket = -1;
Denys Vlasenko52d83702011-05-03 00:51:43 +0200263 }
Matt Kraaia0065d52001-08-24 14:45:50 +0000264 } else if (escaped)
265 escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000266 else if (ch == '\\')
Matt Kraaia0065d52001-08-24 14:45:50 +0000267 escaped = 1;
Rob Landley4795e4e2006-07-26 17:25:08 +0000268 else if (bracket == -1 && ch == '[')
Matt Kraaia0065d52001-08-24 14:45:50 +0000269 bracket = idx;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000270 else if (ch == delimiter)
Mark Whitley97562bd2000-07-17 20:06:42 +0000271 return idx;
272 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000273
Mark Whitley97562bd2000-07-17 20:06:42 +0000274 /* if we make it to here, we've hit the end of the string */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000275 bb_error_msg_and_die("unmatched '%c'", delimiter);
Mark Whitley6315ce62000-07-10 22:55:51 +0000276}
277
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000278/*
279 * Returns the index of the third delimiter
280 */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000281static int parse_regex_delim(const char *cmdstr, char **match, char **replace)
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000282{
Denis Vlasenko9356b502007-01-29 23:44:38 +0000283 const char *cmdstr_ptr = cmdstr;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000284 char delimiter;
285 int idx = 0;
286
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000287 /* verify that the 's' or 'y' is followed by something. That something
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000288 * (typically a 'slash') is now our regexp delimiter... */
Rob Landley4795e4e2006-07-26 17:25:08 +0000289 if (*cmdstr == '\0')
290 bb_error_msg_and_die("bad format in substitution expression");
Denis Vlasenko80778502006-10-25 12:46:46 +0000291 delimiter = *cmdstr_ptr++;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000292
293 /* save the match string */
294 idx = index_of_next_unescaped_regexp_delim(delimiter, cmdstr_ptr);
Rob Landleyfae1dc82005-11-20 07:44:35 +0000295 *match = copy_parsing_escapes(cmdstr_ptr, idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000296
297 /* save the replacement string */
298 cmdstr_ptr += idx + 1;
Rob Landley4795e4e2006-07-26 17:25:08 +0000299 idx = index_of_next_unescaped_regexp_delim(-delimiter, cmdstr_ptr);
Rob Landleyfae1dc82005-11-20 07:44:35 +0000300 *replace = copy_parsing_escapes(cmdstr_ptr, idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000301
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000302 return ((cmdstr_ptr - cmdstr) + idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000303}
304
Mark Whitley6315ce62000-07-10 22:55:51 +0000305/*
306 * returns the index in the string just past where the address ends.
307 */
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000308static int get_address(const char *my_str, int *linenum, regex_t ** regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000309{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000310 const char *pos = my_str;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000311
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000312 if (isdigit(*my_str)) {
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000313 *linenum = strtol(my_str, (char**)&pos, 10);
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000314 /* endstr shouldnt ever equal NULL */
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000315 } else if (*my_str == '$') {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000316 *linenum = -1;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000317 pos++;
318 } else if (*my_str == '/' || *my_str == '\\') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000319 int next;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000320 char delimiter;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000321 char *temp;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000322
Denis Vlasenko80778502006-10-25 12:46:46 +0000323 delimiter = '/';
324 if (*my_str == '\\') delimiter = *++pos;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000325 next = index_of_next_unescaped_regexp_delim(delimiter, ++pos);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000326 temp = copy_parsing_escapes(pos, next);
Denis Vlasenko80778502006-10-25 12:46:46 +0000327 *regex = xmalloc(sizeof(regex_t));
Denis Vlasenko17a15262007-03-26 20:48:46 +0000328 xregcomp(*regex, temp, G.regex_type|REG_NEWLINE);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000329 free(temp);
330 /* Move position to next character after last delimiter */
Rob Landley4795e4e2006-07-26 17:25:08 +0000331 pos += (next+1);
Mark Whitley6315ce62000-07-10 22:55:51 +0000332 }
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000333 return pos - my_str;
Mark Whitley6315ce62000-07-10 22:55:51 +0000334}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000335
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000336/* Grab a filename. Whitespace at start is skipped, then goes to EOL. */
Denis Vlasenko68404f12008-03-17 09:00:54 +0000337static int parse_file_cmd(/*sed_cmd_t *sed_cmd,*/ const char *filecmdstr, char **retval)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000338{
Denis Vlasenko80778502006-10-25 12:46:46 +0000339 int start = 0, idx, hack = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000340
341 /* Skip whitespace, then grab filename to end of line */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000342 while (isspace(filecmdstr[start]))
343 start++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000344 idx = start;
Denis Vlasenko9356b502007-01-29 23:44:38 +0000345 while (filecmdstr[idx] && filecmdstr[idx] != '\n')
346 idx++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000347
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000348 /* If lines glued together, put backslash back. */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000349 if (filecmdstr[idx] == '\n')
350 hack = 1;
Denis Vlasenko80778502006-10-25 12:46:46 +0000351 if (idx == start)
352 bb_error_msg_and_die("empty filename");
Rob Landleyd921b2e2006-08-03 15:41:12 +0000353 *retval = xstrndup(filecmdstr+start, idx-start+hack+1);
Denis Vlasenko9356b502007-01-29 23:44:38 +0000354 if (hack)
355 (*retval)[idx] = '\\';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000356
357 return idx;
358}
359
Denis Vlasenko9356b502007-01-29 23:44:38 +0000360static int parse_subst_cmd(sed_cmd_t *sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000361{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000362 int cflags = G.regex_type;
Mark Whitley06f35292000-07-13 19:58:04 +0000363 char *match;
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000364 int idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000365
366 /*
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000367 * A substitution command should look something like this:
368 * s/match/replace/ #gIpw
Mark Whitley0e4cec02000-08-21 21:29:20 +0000369 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000370 * mandatory optional
Mark Whitley06f35292000-07-13 19:58:04 +0000371 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000372 idx = parse_regex_delim(substr, &match, &sed_cmd->string);
Mark Whitley06f35292000-07-13 19:58:04 +0000373
Mark Whitley97562bd2000-07-17 20:06:42 +0000374 /* determine the number of back references in the match string */
375 /* Note: we compute this here rather than in the do_subst_command()
376 * function to save processor time, at the expense of a little more memory
377 * (4 bits) per sed_cmd */
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000378
Mark Whitley06f35292000-07-13 19:58:04 +0000379 /* process the flags */
Mark Whitley70705d72000-07-14 19:06:30 +0000380
Denis Vlasenko80778502006-10-25 12:46:46 +0000381 sed_cmd->which_match = 1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000382 while (substr[++idx]) {
383 /* Parse match number */
Denis Vlasenko80778502006-10-25 12:46:46 +0000384 if (isdigit(substr[idx])) {
385 if (match[0] != '^') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000386 /* Match 0 treated as all, multiple matches we take the last one. */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000387 const char *pos = substr + idx;
388/* FIXME: error check? */
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000389 sed_cmd->which_match = (unsigned)strtol(substr+idx, (char**) &pos, 10);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000390 idx = pos - substr;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000391 }
392 continue;
393 }
Rob Landley40ec4ae2004-01-04 06:42:14 +0000394 /* Skip spaces */
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200395 if (isspace(substr[idx]))
396 continue;
Rob Landley40ec4ae2004-01-04 06:42:14 +0000397
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000398 switch (substr[idx]) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000399 /* Replace all occurrences */
400 case 'g':
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000401 if (match[0] != '^')
402 sed_cmd->which_match = 0;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000403 break;
404 /* Print pattern space */
405 case 'p':
406 sed_cmd->sub_p = 1;
407 break;
408 /* Write to file */
409 case 'w':
410 {
411 char *temp;
Denis Vlasenko68404f12008-03-17 09:00:54 +0000412 idx += parse_file_cmd(/*sed_cmd,*/ substr+idx, &temp);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000413 break;
414 }
415 /* Ignore case (gnu exension) */
416 case 'I':
417 cflags |= REG_ICASE;
418 break;
419 /* Comment */
420 case '#':
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200421 // while (substr[++idx]) continue;
422 idx += strlen(substr + idx); // same
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000423 /* Fall through */
424 /* End of command */
425 case ';':
426 case '}':
427 goto out;
428 default:
429 bb_error_msg_and_die("bad option in substitution expression");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000430 }
431 }
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200432 out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000433 /* compile the match string into a regex */
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000434 if (*match != '\0') {
435 /* If match is empty, we use last regex used at runtime */
Denis Vlasenkob95636c2006-12-19 23:36:04 +0000436 sed_cmd->sub_match = xmalloc(sizeof(regex_t));
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000437 xregcomp(sed_cmd->sub_match, match, cflags);
438 }
Mark Whitley06f35292000-07-13 19:58:04 +0000439 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000440
441 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000442}
443
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000444/*
445 * Process the commands arguments
446 */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000447static const char *parse_cmd_args(sed_cmd_t *sed_cmd, const char *cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000448{
Denys Vlasenko52d83702011-05-03 00:51:43 +0200449 static const char cmd_letters[] = "saicrw:btTydDgGhHlnNpPqx={}";
450 enum {
451 IDX_s = 0,
452 IDX_a,
453 IDX_i,
454 IDX_c,
455 IDX_r,
456 IDX_w,
457 IDX_colon,
458 IDX_b,
459 IDX_t,
460 IDX_T,
461 IDX_y,
462 IDX_d,
463 IDX_D,
464 IDX_g,
465 IDX_G,
466 IDX_h,
467 IDX_H,
468 IDX_l,
469 IDX_n,
470 IDX_N,
471 IDX_p,
472 IDX_P,
473 IDX_q,
474 IDX_x,
475 IDX_equal,
476 IDX_lbrace,
477 IDX_rbrace,
478 IDX_nul
479 };
480 struct chk { char chk[sizeof(cmd_letters)-1 == IDX_nul ? 1 : -1]; };
481
482 unsigned idx = strchrnul(cmd_letters, sed_cmd->cmd) - cmd_letters;
483
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000484 /* handle (s)ubstitution command */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200485 if (idx == IDX_s) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000486 cmdstr += parse_subst_cmd(sed_cmd, cmdstr);
Denys Vlasenko52d83702011-05-03 00:51:43 +0200487 }
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000488 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200489 else if (idx <= IDX_c) { /* a,i,c */
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000490 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c')
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200491 bb_error_msg_and_die("only a beginning address can be specified for edit commands");
Denis Vlasenko80778502006-10-25 12:46:46 +0000492 for (;;) {
493 if (*cmdstr == '\n' || *cmdstr == '\\') {
Rob Landley25d82392004-04-01 09:23:30 +0000494 cmdstr++;
495 break;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +0200496 }
497 if (!isspace(*cmdstr))
Denis Vlasenko80778502006-10-25 12:46:46 +0000498 break;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +0200499 cmdstr++;
Rob Landley25d82392004-04-01 09:23:30 +0000500 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000501 sed_cmd->string = xstrdup(cmdstr);
Denis Vlasenko40276642007-11-13 16:48:10 +0000502 /* "\anychar" -> "anychar" */
503 parse_escapes(sed_cmd->string, sed_cmd->string, strlen(cmdstr), '\0', '\0');
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000504 cmdstr += strlen(cmdstr);
Denys Vlasenko52d83702011-05-03 00:51:43 +0200505 }
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000506 /* handle file cmds: (r)ead */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200507 else if (idx <= IDX_w) { /* r,w */
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000508 if (sed_cmd->end_line || sed_cmd->end_match)
Denis Vlasenko80778502006-10-25 12:46:46 +0000509 bb_error_msg_and_die("command only uses one address");
Denis Vlasenko68404f12008-03-17 09:00:54 +0000510 cmdstr += parse_file_cmd(/*sed_cmd,*/ cmdstr, &sed_cmd->string);
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000511 if (sed_cmd->cmd == 'w') {
Denis Vlasenko5415c852008-07-21 23:05:26 +0000512 sed_cmd->sw_file = xfopen_for_write(sed_cmd->string);
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000513 sed_cmd->sw_last_char = '\n';
514 }
Denys Vlasenko52d83702011-05-03 00:51:43 +0200515 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000516 /* handle branch commands */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200517 else if (idx <= IDX_T) { /* :,b,t,T */
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000518 int length;
519
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000520 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000521 length = strcspn(cmdstr, semicolon_whitespace);
522 if (length) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000523 sed_cmd->string = xstrndup(cmdstr, length);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000524 cmdstr += length;
525 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000526 }
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000527 /* translation command */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200528 else if (idx == IDX_y) {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000529 char *match, *replace;
Denis Vlasenko80778502006-10-25 12:46:46 +0000530 int i = cmdstr[0];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000531
Denis Vlasenko80778502006-10-25 12:46:46 +0000532 cmdstr += parse_regex_delim(cmdstr, &match, &replace)+1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000533 /* \n already parsed, but \delimiter needs unescaping. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000534 parse_escapes(match, match, strlen(match), i, i);
535 parse_escapes(replace, replace, strlen(replace), i, i);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000536
Rob Landley9ffd4232006-05-21 18:30:35 +0000537 sed_cmd->string = xzalloc((strlen(match) + 1) * 2);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000538 for (i = 0; match[i] && replace[i]; i++) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000539 sed_cmd->string[i*2] = match[i];
540 sed_cmd->string[i*2+1] = replace[i];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000541 }
542 free(match);
543 free(replace);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000544 }
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000545 /* if it wasnt a single-letter command that takes no arguments
546 * then it must be an invalid command.
547 */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200548 else if (idx >= IDX_nul) { /* not d,D,g,G,h,H,l,n,N,p,P,q,x,=,{,} */
Denis Vlasenko80778502006-10-25 12:46:46 +0000549 bb_error_msg_and_die("unsupported command %c", sed_cmd->cmd);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000550 }
Mark Whitley70705d72000-07-14 19:06:30 +0000551
552 /* give back whatever's left over */
Denis Vlasenko80778502006-10-25 12:46:46 +0000553 return cmdstr;
Eric Andersen50d63601999-11-09 01:47:36 +0000554}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000555
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000556
557/* Parse address+command sets, skipping comment lines. */
558
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000559static void add_cmd(const char *cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000560{
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000561 sed_cmd_t *sed_cmd;
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200562 unsigned len, n;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000563
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000564 /* Append this line to any unfinished line from last time. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000565 if (G.add_cmd_line) {
566 char *tp = xasprintf("%s\n%s", G.add_cmd_line, cmdstr);
567 free(G.add_cmd_line);
Denis Vlasenko945bd3d2007-04-12 21:20:25 +0000568 cmdstr = G.add_cmd_line = tp;
Rob Landley12d87552006-06-05 17:32:44 +0000569 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000570
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200571 /* If this line ends with unescaped backslash, request next line. */
572 n = len = strlen(cmdstr);
573 while (n && cmdstr[n-1] == '\\')
574 n--;
575 if ((len - n) & 1) { /* if odd number of trailing backslashes */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000576 if (!G.add_cmd_line)
577 G.add_cmd_line = xstrdup(cmdstr);
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200578 G.add_cmd_line[len-1] = '\0';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000579 return;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000580 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000581
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000582 /* Loop parsing all commands in this line. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000583 while (*cmdstr) {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000584 /* Skip leading whitespace and semicolons */
585 cmdstr += strspn(cmdstr, semicolon_whitespace);
586
587 /* If no more commands, exit. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000588 if (!*cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000589
590 /* if this is a comment, jump past it and keep going */
591 if (*cmdstr == '#') {
592 /* "#n" is the same as using -n on the command line */
Denis Vlasenko80778502006-10-25 12:46:46 +0000593 if (cmdstr[1] == 'n')
Denis Vlasenko17a15262007-03-26 20:48:46 +0000594 G.be_quiet++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000595 cmdstr = strpbrk(cmdstr, "\n\r");
596 if (!cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000597 continue;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000598 }
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000599
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000600 /* parse the command
601 * format is: [addr][,addr][!]cmd
602 * |----||-----||-|
603 * part1 part2 part3
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000604 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000605
Rob Landley9ffd4232006-05-21 18:30:35 +0000606 sed_cmd = xzalloc(sizeof(sed_cmd_t));
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000607
608 /* first part (if present) is an address: either a '$', a number or a /regex/ */
609 cmdstr += get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200610 sed_cmd->beg_line_orig = sed_cmd->beg_line;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000611
612 /* second part (if present) will begin with a comma */
613 if (*cmdstr == ',') {
614 int idx;
615
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000616 cmdstr++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000617 idx = get_address(cmdstr, &sed_cmd->end_line, &sed_cmd->end_match);
Denis Vlasenko80778502006-10-25 12:46:46 +0000618 if (!idx)
619 bb_error_msg_and_die("no address after comma");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000620 cmdstr += idx;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000621 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000622
623 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000624 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000625
626 /* Check for inversion flag */
627 if (*cmdstr == '!') {
628 sed_cmd->invert = 1;
629 cmdstr++;
630
631 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000632 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000633 }
634
635 /* last part (mandatory) will be a command */
Denis Vlasenko80778502006-10-25 12:46:46 +0000636 if (!*cmdstr)
637 bb_error_msg_and_die("missing command");
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200638 sed_cmd->cmd = *cmdstr++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000639 cmdstr = parse_cmd_args(sed_cmd, cmdstr);
640
641 /* Add the command to the command array */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200642 *G.sed_cmd_tail = sed_cmd;
643 G.sed_cmd_tail = &sed_cmd->next;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000644 }
645
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000646 /* If we glued multiple lines together, free the memory. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000647 free(G.add_cmd_line);
648 G.add_cmd_line = NULL;
Mark Whitley6315ce62000-07-10 22:55:51 +0000649}
650
Rob Landleydcc28662004-11-25 07:21:47 +0000651/* Append to a string, reallocating memory as necessary. */
652
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000653#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000654
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000655static void pipe_putc(char c)
Eric Andersenc52a6b02001-11-10 10:49:42 +0000656{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000657 if (G.pipeline.idx == G.pipeline.len) {
658 G.pipeline.buf = xrealloc(G.pipeline.buf,
659 G.pipeline.len + PIPE_GROW);
660 G.pipeline.len += PIPE_GROW;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000661 }
Denis Vlasenko17a15262007-03-26 20:48:46 +0000662 G.pipeline.buf[G.pipeline.idx++] = c;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000663}
664
Rob Landley4795e4e2006-07-26 17:25:08 +0000665static void do_subst_w_backrefs(char *line, char *replace)
Mark Whitley97562bd2000-07-17 20:06:42 +0000666{
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200667 int i, j;
Mark Whitley97562bd2000-07-17 20:06:42 +0000668
669 /* go through the replacement string */
670 for (i = 0; replace[i]; i++) {
671 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000672 if (replace[i] == '\\') {
673 unsigned backref = replace[++i] - '0';
674 if (backref <= 9) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000675 /* print out the text held in G.regmatch[backref] */
676 if (G.regmatch[backref].rm_so != -1) {
677 j = G.regmatch[backref].rm_so;
678 while (j < G.regmatch[backref].rm_eo)
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000679 pipe_putc(line[j++]);
680 }
681 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000682 }
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000683 /* I _think_ it is impossible to get '\' to be
684 * the last char in replace string. Thus we dont check
685 * for replace[i] == NUL. (counterexample anyone?) */
686 /* if we find a backslash escaped character, print the character */
687 pipe_putc(replace[i]);
688 continue;
Mark Whitley97562bd2000-07-17 20:06:42 +0000689 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000690 /* if we find an unescaped '&' print out the whole matched text. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000691 if (replace[i] == '&') {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000692 j = G.regmatch[0].rm_so;
693 while (j < G.regmatch[0].rm_eo)
Denis Vlasenko80778502006-10-25 12:46:46 +0000694 pipe_putc(line[j++]);
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000695 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000696 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000697 /* Otherwise just output the character. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000698 pipe_putc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000699 }
700}
701
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200702static int do_subst_command(sed_cmd_t *sed_cmd, char **line_p)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000703{
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200704 char *line = *line_p;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000705 int altered = 0;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000706 unsigned match_count = 0;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000707 regex_t *current_regex;
708
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200709 current_regex = sed_cmd->sub_match;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000710 /* Handle empty regex. */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200711 if (!current_regex) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000712 current_regex = G.previous_regex_ptr;
Denis Vlasenko80778502006-10-25 12:46:46 +0000713 if (!current_regex)
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000714 bb_error_msg_and_die("no previous regexp");
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200715 }
716 G.previous_regex_ptr = current_regex;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000717
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000718 /* Find the first match */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200719 if (REG_NOMATCH == regexec(current_regex, line, 10, G.regmatch, 0))
Mark Whitley2dc192f2000-11-03 19:47:00 +0000720 return 0;
721
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000722 /* Initialize temporary output buffer. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000723 G.pipeline.buf = xmalloc(PIPE_GROW);
724 G.pipeline.len = PIPE_GROW;
725 G.pipeline.idx = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000726
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000727 /* Now loop through, substituting for matches */
728 do {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000729 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000730
Eric Andersenc06f5682004-02-04 10:57:46 +0000731 /* Work around bug in glibc regexec, demonstrated by:
732 echo " a.b" | busybox sed 's [^ .]* x g'
733 The match_count check is so not to break
734 echo "hi" | busybox sed 's/^/!/g' */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000735 if (!G.regmatch[0].rm_so && !G.regmatch[0].rm_eo && match_count) {
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200736 pipe_putc(*line++);
Eric Andersenc06f5682004-02-04 10:57:46 +0000737 continue;
738 }
739
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000740 match_count++;
741
742 /* If we aren't interested in this match, output old line to
743 end of match and continue */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000744 if (sed_cmd->which_match
745 && (sed_cmd->which_match != match_count)
746 ) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000747 for (i = 0; i < G.regmatch[0].rm_eo; i++)
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200748 pipe_putc(*line++);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000749 continue;
750 }
751
Mark Whitley2dc192f2000-11-03 19:47:00 +0000752 /* print everything before the match */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000753 for (i = 0; i < G.regmatch[0].rm_so; i++)
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200754 pipe_putc(line[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000755
Mark Whitley2dc192f2000-11-03 19:47:00 +0000756 /* then print the substitution string */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200757 do_subst_w_backrefs(line, sed_cmd->string);
Mark Whitley97562bd2000-07-17 20:06:42 +0000758
Mark Whitley2dc192f2000-11-03 19:47:00 +0000759 /* advance past the match */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200760 line += G.regmatch[0].rm_eo;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000761 /* flag that something has changed */
762 altered++;
Mark Whitley97562bd2000-07-17 20:06:42 +0000763
Mark Whitley2dc192f2000-11-03 19:47:00 +0000764 /* if we're not doing this globally, get out now */
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000765 if (sed_cmd->which_match)
766 break;
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200767
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200768//maybe (G.regmatch[0].rm_eo ? REG_NOTBOL : 0) instead of unconditional REG_NOTBOL?
Denys Vlasenko11c82382009-09-22 03:02:21 +0200769 } while (*line && regexec(current_regex, line, 10, G.regmatch, REG_NOTBOL) != REG_NOMATCH);
Mark Whitley2dc192f2000-11-03 19:47:00 +0000770
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000771 /* Copy rest of string into output pipeline */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200772 while (1) {
773 char c = *line++;
774 pipe_putc(c);
775 if (c == '\0')
776 break;
777 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000778
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200779 free(*line_p);
780 *line_p = G.pipeline.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000781 return altered;
782}
Mark Whitley6315ce62000-07-10 22:55:51 +0000783
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000784/* Set command pointer to point to this label. (Does not handle null label.) */
Rob Landley4795e4e2006-07-26 17:25:08 +0000785static sed_cmd_t *branch_to(char *label)
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000786{
787 sed_cmd_t *sed_cmd;
Glenn L McGrathd4185b02003-04-11 17:10:23 +0000788
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200789 for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000790 if (sed_cmd->cmd == ':' && sed_cmd->string && !strcmp(sed_cmd->string, label)) {
791 return sed_cmd;
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000792 }
793 }
Denis Vlasenko80778502006-10-25 12:46:46 +0000794 bb_error_msg_and_die("can't find label for jump to '%s'", label);
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000795}
Mark Whitley6315ce62000-07-10 22:55:51 +0000796
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000797static void append(char *s)
798{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000799 llist_add_to_end(&G.append_head, xstrdup(s));
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000800}
801
802static void flush_append(void)
803{
Rob Landley0b656282006-05-08 22:17:23 +0000804 char *data;
805
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000806 /* Output appended lines. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000807 while ((data = (char *)llist_pop(&G.append_head))) {
808 fprintf(G.nonstdout, "%s\n", data);
Rob Landley0b656282006-05-08 22:17:23 +0000809 free(data);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000810 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000811}
812
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000813static void add_input_file(FILE *file)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000814{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000815 G.input_file_list = xrealloc_vector(G.input_file_list, 2, G.input_file_count);
Denis Vlasenko17a15262007-03-26 20:48:46 +0000816 G.input_file_list[G.input_file_count++] = file;
Rob Landleydcc28662004-11-25 07:21:47 +0000817}
818
Denis Vlasenko17a15262007-03-26 20:48:46 +0000819/* Get next line of input from G.input_file_list, flushing append buffer and
Rob Landleydcc28662004-11-25 07:21:47 +0000820 * noting if we ran out of files without a newline on the last line we read.
821 */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000822enum {
823 NO_EOL_CHAR = 1,
Denis Vlasenko86811802007-01-29 17:10:19 +0000824 LAST_IS_NUL = 2,
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000825};
826static char *get_next_line(char *gets_char)
Rob Landleydcc28662004-11-25 07:21:47 +0000827{
Denis Vlasenko80778502006-10-25 12:46:46 +0000828 char *temp = NULL;
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000829 int len;
830 char gc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000831
832 flush_append();
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000833
834 /* will be returned if last line in the file
835 * doesn't end with either '\n' or '\0' */
836 gc = NO_EOL_CHAR;
Denis Vlasenko17a15262007-03-26 20:48:46 +0000837 while (G.current_input_file < G.input_file_count) {
838 FILE *fp = G.input_file_list[G.current_input_file];
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000839 /* Read line up to a newline or NUL byte, inclusive,
840 * return malloc'ed char[]. length of the chunk read
841 * is stored in len. NULL if EOF/error */
Denis Vlasenko86811802007-01-29 17:10:19 +0000842 temp = bb_get_chunk_from_file(fp, &len);
Rob Landley2b26fd52006-02-24 02:30:39 +0000843 if (temp) {
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000844 /* len > 0 here, it's ok to do temp[len-1] */
845 char c = temp[len-1];
846 if (c == '\n' || c == '\0') {
847 temp[len-1] = '\0';
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000848 gc = c;
Denis Vlasenko86811802007-01-29 17:10:19 +0000849 if (c == '\0') {
850 int ch = fgetc(fp);
851 if (ch != EOF)
852 ungetc(ch, fp);
853 else
854 gc = LAST_IS_NUL;
855 }
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000856 }
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000857 /* else we put NO_EOL_CHAR into *gets_char */
858 break;
859
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000860 /* NB: I had the idea of peeking next file(s) and returning
861 * NO_EOL_CHAR only if it is the *last* non-empty
862 * input file. But there is a case where this won't work:
863 * file1: "a woo\nb woo"
864 * file2: "c no\nd no"
865 * sed -ne 's/woo/bang/p' input1 input2 => "a bang\nb bang"
866 * (note: *no* newline after "b bang"!) */
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000867 }
868 /* Close this file and advance to next one */
Denis Vlasenko86811802007-01-29 17:10:19 +0000869 fclose(fp);
Denis Vlasenko17a15262007-03-26 20:48:46 +0000870 G.current_input_file++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000871 }
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000872 *gets_char = gc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000873 return temp;
874}
875
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000876/* Output line of text. */
877/* Note:
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000878 * The tricks with NO_EOL_CHAR and last_puts_char are there to emulate gnu sed.
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000879 * Without them, we had this:
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000880 * echo -n thingy >z1
881 * echo -n again >z2
882 * >znull
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000883 * sed "s/i/z/" z1 z2 znull | hexdump -vC
884 * output:
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000885 * gnu sed 4.1.5:
886 * 00000000 74 68 7a 6e 67 79 0a 61 67 61 7a 6e |thzngy.agazn|
887 * bbox:
888 * 00000000 74 68 7a 6e 67 79 61 67 61 7a 6e |thzngyagazn|
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000889 */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000890static void puts_maybe_newline(char *s, FILE *file, char *last_puts_char, char last_gets_char)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000891{
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000892 char lpc = *last_puts_char;
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000893
Denis Vlasenko86811802007-01-29 17:10:19 +0000894 /* Need to insert a '\n' between two files because first file's
895 * last line wasn't terminated? */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000896 if (lpc != '\n' && lpc != '\0') {
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000897 fputc('\n', file);
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000898 lpc = '\n';
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000899 }
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000900 fputs(s, file);
Denis Vlasenko86811802007-01-29 17:10:19 +0000901
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000902 /* 'x' - just something which is not '\n', '\0' or NO_EOL_CHAR */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000903 if (s[0])
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000904 lpc = 'x';
Denis Vlasenko86811802007-01-29 17:10:19 +0000905
906 /* had trailing '\0' and it was last char of file? */
907 if (last_gets_char == LAST_IS_NUL) {
908 fputc('\0', file);
909 lpc = 'x'; /* */
910 } else
911 /* had trailing '\n' or '\0'? */
912 if (last_gets_char != NO_EOL_CHAR) {
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000913 fputc(last_gets_char, file);
914 lpc = last_gets_char;
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000915 }
Denis Vlasenko86811802007-01-29 17:10:19 +0000916
Denis Vlasenko80778502006-10-25 12:46:46 +0000917 if (ferror(file)) {
Denis Vlasenko40920822006-10-03 20:28:06 +0000918 xfunc_error_retval = 4; /* It's what gnu sed exits with... */
Bernhard Reutner-Fischera3d4bf32006-06-03 21:40:11 +0000919 bb_error_msg_and_die(bb_msg_write_error);
Rob Landley53302f82004-02-18 09:54:15 +0000920 }
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000921 *last_puts_char = lpc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000922}
923
Denis Vlasenko17a15262007-03-26 20:48:46 +0000924#define sed_puts(s, n) (puts_maybe_newline(s, G.nonstdout, &last_puts_char, n))
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000925
Denis Vlasenko8274e062007-08-06 03:41:08 +0000926static int beg_match(sed_cmd_t *sed_cmd, const char *pattern_space)
927{
928 int retval = sed_cmd->beg_match && !regexec(sed_cmd->beg_match, pattern_space, 0, NULL, 0);
929 if (retval)
930 G.previous_regex_ptr = sed_cmd->beg_match;
931 return retval;
932}
933
Rob Landley2b26fd52006-02-24 02:30:39 +0000934/* Process all the lines in all the files */
935
Rob Landleydcc28662004-11-25 07:21:47 +0000936static void process_files(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000937{
Rob Landleyce4f0e92004-10-30 06:54:19 +0000938 char *pattern_space, *next_line;
Denis Vlasenko826c85f2007-01-28 23:26:15 +0000939 int linenum = 0;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000940 char last_puts_char = '\n';
941 char last_gets_char, next_gets_char;
Denis Vlasenko2ea630f2006-12-10 02:52:19 +0000942 sed_cmd_t *sed_cmd;
943 int substituted;
Mark Whitley6315ce62000-07-10 22:55:51 +0000944
Rob Landley2b26fd52006-02-24 02:30:39 +0000945 /* Prime the pump */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000946 next_line = get_next_line(&next_gets_char);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000947
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200948 /* Go through every line in each file */
Denis Vlasenkof39c7c02008-02-28 17:59:01 +0000949 again:
Denis Vlasenko2ea630f2006-12-10 02:52:19 +0000950 substituted = 0;
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000951
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000952 /* Advance to next line. Stop if out of lines. */
953 pattern_space = next_line;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200954 if (!pattern_space)
955 return;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000956 last_gets_char = next_gets_char;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000957
958 /* Read one line in advance so we can act on the last line,
959 * the '$' address */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000960 next_line = get_next_line(&next_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000961 linenum++;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200962
963 /* For every line, go through all the commands */
Denis Vlasenkof39c7c02008-02-28 17:59:01 +0000964 restart:
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200965 for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000966 int old_matched, matched;
Eric Andersen52a3c272003-12-23 08:53:51 +0000967
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000968 old_matched = sed_cmd->in_match;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000969
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000970 /* Determine if this command matches this line: */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200971
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200972 dbg("match1:%d", sed_cmd->in_match);
973 dbg("match2:%d", (!sed_cmd->beg_line && !sed_cmd->end_line
974 && !sed_cmd->beg_match && !sed_cmd->end_match));
975 dbg("match3:%d", (sed_cmd->beg_line > 0
976 && (sed_cmd->end_line || sed_cmd->end_match
977 ? (sed_cmd->beg_line <= linenum)
978 : (sed_cmd->beg_line == linenum)
979 )
980 ));
981 dbg("match4:%d", (beg_match(sed_cmd, pattern_space)));
982 dbg("match5:%d", (sed_cmd->beg_line == -1 && next_line == NULL));
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200983
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200984 /* Are we continuing a previous multi-line match? */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000985 sed_cmd->in_match = sed_cmd->in_match
986 /* Or is no range necessary? */
987 || (!sed_cmd->beg_line && !sed_cmd->end_line
988 && !sed_cmd->beg_match && !sed_cmd->end_match)
989 /* Or did we match the start of a numerical range? */
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200990 || (sed_cmd->beg_line > 0
991 && (sed_cmd->end_line || sed_cmd->end_match
Denys Vlasenkoc4679242010-06-04 01:31:48 +0200992 /* note: even if end is numeric and is < linenum too,
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200993 * GNU sed matches! We match too, therefore we don't
994 * check here that linenum <= end.
995 * Example:
996 * printf '1\n2\n3\n4\n' | sed -n '1{N;N;d};1p;2,3p;3p;4p'
997 * first three input lines are deleted;
998 * 4th line is matched and printed
999 * by "2,3" (!) and by "4" ranges
1000 */
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001001 ? (sed_cmd->beg_line <= linenum) /* N,end */
1002 : (sed_cmd->beg_line == linenum) /* N */
1003 )
1004 )
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001005 /* Or does this line match our begin address regex? */
Denis Vlasenko8274e062007-08-06 03:41:08 +00001006 || (beg_match(sed_cmd, pattern_space))
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001007 /* Or did we match last line of input? */
1008 || (sed_cmd->beg_line == -1 && next_line == NULL);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001009
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001010 /* Snapshot the value */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001011 matched = sed_cmd->in_match;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001012
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001013 dbg("cmd:'%c' matched:%d beg_line:%d end_line:%d linenum:%d",
1014 sed_cmd->cmd, matched, sed_cmd->beg_line, sed_cmd->end_line, linenum);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001015
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001016 /* Is this line the end of the current match? */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001017
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001018 if (matched) {
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001019 /* once matched, "n,xxx" range is dead, disabling it */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001020 if (sed_cmd->beg_line > 0) {
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001021 sed_cmd->beg_line = -2;
Denys Vlasenko2e284a42010-08-01 04:14:46 +02001022 }
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001023 sed_cmd->in_match = !(
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001024 /* has the ending line come, or is this a single address command? */
Denys Vlasenko52d83702011-05-03 00:51:43 +02001025 (sed_cmd->end_line
1026 ? sed_cmd->end_line == -1
1027 ? !next_line
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001028 : (sed_cmd->end_line <= linenum)
1029 : !sed_cmd->end_match
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001030 )
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001031 /* or does this line matches our last address regex */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001032 || (sed_cmd->end_match && old_matched
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001033 && (regexec(sed_cmd->end_match,
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001034 pattern_space, 0, NULL, 0) == 0)
1035 )
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001036 );
Erik Andersene49d5ec2000-02-08 19:58:47 +00001037 }
Erik Andersen1266a131999-12-29 22:19:46 +00001038
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001039 /* Skip blocks of commands we didn't match */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001040 if (sed_cmd->cmd == '{') {
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001041 if (sed_cmd->invert ? matched : !matched) {
Denys Vlasenkof2c16ed2010-04-20 04:00:03 -04001042 unsigned nest_cnt = 0;
1043 while (1) {
1044 if (sed_cmd->cmd == '{')
1045 nest_cnt++;
1046 if (sed_cmd->cmd == '}') {
1047 nest_cnt--;
1048 if (nest_cnt == 0)
1049 break;
1050 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001051 sed_cmd = sed_cmd->next;
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001052 if (!sed_cmd)
1053 bb_error_msg_and_die("unterminated {");
1054 }
1055 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001056 continue;
1057 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001058
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001059 /* Okay, so did this line match? */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001060 if (sed_cmd->invert ? matched : !matched)
1061 continue; /* no */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001062
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001063 /* Update last used regex in case a blank substitute BRE is found */
1064 if (sed_cmd->beg_match) {
1065 G.previous_regex_ptr = sed_cmd->beg_match;
1066 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001067
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001068 /* actual sedding */
Denys Vlasenko0d555fc2010-08-16 16:26:33 +02001069 //bb_error_msg("pattern_space:'%s' next_line:'%s' cmd:%c",
1070 //pattern_space, next_line, sed_cmd->cmd);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001071 switch (sed_cmd->cmd) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001072
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001073 /* Print line number */
1074 case '=':
1075 fprintf(G.nonstdout, "%d\n", linenum);
1076 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001077
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001078 /* Write the current pattern space up to the first newline */
1079 case 'P':
1080 {
1081 char *tmp = strchr(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001082 if (tmp) {
1083 *tmp = '\0';
1084 /* TODO: explain why '\n' below */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001085 sed_puts(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001086 *tmp = '\n';
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001087 break;
1088 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001089 /* Fall Through */
1090 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001091
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001092 /* Write the current pattern space to output */
1093 case 'p':
1094 /* NB: we print this _before_ the last line
1095 * (of current file) is printed. Even if
1096 * that line is nonterminated, we print
1097 * '\n' here (gnu sed does the same) */
1098 sed_puts(pattern_space, '\n');
1099 break;
1100 /* Delete up through first newline */
1101 case 'D':
1102 {
1103 char *tmp = strchr(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001104 if (tmp) {
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001105 overlapping_strcpy(pattern_space, tmp + 1);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001106 goto restart;
1107 }
1108 }
1109 /* discard this line. */
1110 case 'd':
1111 goto discard_line;
1112
1113 /* Substitute with regex */
1114 case 's':
1115 if (!do_subst_command(sed_cmd, &pattern_space))
1116 break;
1117 substituted |= 1;
1118
1119 /* handle p option */
1120 if (sed_cmd->sub_p)
1121 sed_puts(pattern_space, last_gets_char);
1122 /* handle w option */
1123 if (sed_cmd->sw_file)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001124 puts_maybe_newline(
1125 pattern_space, sed_cmd->sw_file,
1126 &sed_cmd->sw_last_char, last_gets_char);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001127 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001128
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001129 /* Append line to linked list to be printed later */
1130 case 'a':
1131 append(sed_cmd->string);
1132 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001133
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001134 /* Insert text before this line */
1135 case 'i':
1136 sed_puts(sed_cmd->string, '\n');
1137 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001138
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001139 /* Cut and paste text (replace) */
1140 case 'c':
1141 /* Only triggers on last line of a matching range. */
1142 if (!sed_cmd->in_match)
Denys Vlasenko96a18332010-04-19 22:36:07 -04001143 sed_puts(sed_cmd->string, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001144 goto discard_line;
1145
1146 /* Read file, append contents to output */
1147 case 'r':
1148 {
1149 FILE *rfile;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001150 rfile = fopen_for_read(sed_cmd->string);
1151 if (rfile) {
1152 char *line;
1153
1154 while ((line = xmalloc_fgetline(rfile))
1155 != NULL)
1156 append(line);
1157 xprint_and_close_file(rfile);
1158 }
1159
1160 break;
1161 }
1162
1163 /* Write pattern space to file. */
1164 case 'w':
1165 puts_maybe_newline(
1166 pattern_space, sed_cmd->sw_file,
1167 &sed_cmd->sw_last_char, last_gets_char);
1168 break;
1169
1170 /* Read next line from input */
1171 case 'n':
1172 if (!G.be_quiet)
1173 sed_puts(pattern_space, last_gets_char);
1174 if (next_line) {
1175 free(pattern_space);
1176 pattern_space = next_line;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001177 last_gets_char = next_gets_char;
1178 next_line = get_next_line(&next_gets_char);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001179 substituted = 0;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001180 linenum++;
1181 break;
1182 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001183 /* fall through */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001184
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001185 /* Quit. End of script, end of input. */
1186 case 'q':
1187 /* Exit the outer while loop */
1188 free(next_line);
1189 next_line = NULL;
1190 goto discard_commands;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001191
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001192 /* Append the next line to the current line */
1193 case 'N':
1194 {
1195 int len;
1196 /* If no next line, jump to end of script and exit. */
Denys Vlasenko0d555fc2010-08-16 16:26:33 +02001197 /* http://www.gnu.org/software/sed/manual/sed.html:
1198 * "Most versions of sed exit without printing anything
1199 * when the N command is issued on the last line of
1200 * a file. GNU sed prints pattern space before exiting
1201 * unless of course the -n command switch has been
1202 * specified. This choice is by design."
1203 */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001204 if (next_line == NULL) {
Denys Vlasenko0d555fc2010-08-16 16:26:33 +02001205 //goto discard_line;
1206 goto discard_commands; /* GNU behavior */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001207 }
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001208 /* Append next_line, read new next_line. */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001209 len = strlen(pattern_space);
Denys Vlasenko90377872010-01-08 09:07:50 +01001210 pattern_space = xrealloc(pattern_space, len + strlen(next_line) + 2);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001211 pattern_space[len] = '\n';
1212 strcpy(pattern_space + len+1, next_line);
1213 last_gets_char = next_gets_char;
1214 next_line = get_next_line(&next_gets_char);
1215 linenum++;
1216 break;
1217 }
1218
1219 /* Test/branch if substitution occurred */
1220 case 't':
1221 if (!substituted) break;
1222 substituted = 0;
1223 /* Fall through */
1224 /* Test/branch if substitution didn't occur */
1225 case 'T':
1226 if (substituted) break;
1227 /* Fall through */
1228 /* Branch to label */
1229 case 'b':
1230 if (!sed_cmd->string) goto discard_commands;
1231 else sed_cmd = branch_to(sed_cmd->string);
1232 break;
1233 /* Transliterate characters */
1234 case 'y':
1235 {
1236 int i, j;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001237 for (i = 0; pattern_space[i]; i++) {
1238 for (j = 0; sed_cmd->string[j]; j += 2) {
1239 if (pattern_space[i] == sed_cmd->string[j]) {
1240 pattern_space[i] = sed_cmd->string[j + 1];
1241 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001242 }
1243 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001244 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001245
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001246 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001247 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001248 case 'g': /* Replace pattern space with hold space */
1249 free(pattern_space);
1250 pattern_space = xstrdup(G.hold_space ? G.hold_space : "");
1251 break;
1252 case 'G': /* Append newline and hold space to pattern space */
1253 {
1254 int pattern_space_size = 2;
1255 int hold_space_size = 0;
1256
1257 if (pattern_space)
1258 pattern_space_size += strlen(pattern_space);
1259 if (G.hold_space)
1260 hold_space_size = strlen(G.hold_space);
1261 pattern_space = xrealloc(pattern_space,
1262 pattern_space_size + hold_space_size);
1263 if (pattern_space_size == 2)
1264 pattern_space[0] = 0;
1265 strcat(pattern_space, "\n");
1266 if (G.hold_space)
1267 strcat(pattern_space, G.hold_space);
1268 last_gets_char = '\n';
1269
1270 break;
1271 }
1272 case 'h': /* Replace hold space with pattern space */
1273 free(G.hold_space);
1274 G.hold_space = xstrdup(pattern_space);
1275 break;
1276 case 'H': /* Append newline and pattern space to hold space */
1277 {
1278 int hold_space_size = 2;
1279 int pattern_space_size = 0;
1280
1281 if (G.hold_space)
1282 hold_space_size += strlen(G.hold_space);
1283 if (pattern_space)
1284 pattern_space_size = strlen(pattern_space);
1285 G.hold_space = xrealloc(G.hold_space,
1286 hold_space_size + pattern_space_size);
1287
1288 if (hold_space_size == 2)
1289 *G.hold_space = 0;
1290 strcat(G.hold_space, "\n");
1291 if (pattern_space)
1292 strcat(G.hold_space, pattern_space);
1293
1294 break;
1295 }
1296 case 'x': /* Exchange hold and pattern space */
1297 {
1298 char *tmp = pattern_space;
Denys Vlasenko90a99042009-09-06 02:36:23 +02001299 pattern_space = G.hold_space ? G.hold_space : xzalloc(1);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001300 last_gets_char = '\n';
1301 G.hold_space = tmp;
1302 break;
1303 }
1304 } /* switch */
1305 } /* for each cmd */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001306
1307 /*
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001308 * Exit point from sedding...
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001309 */
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001310 discard_commands:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001311 /* we will print the line unless we were told to be quiet ('-n')
1312 or if the line was suppressed (ala 'd'elete) */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001313 if (!G.be_quiet)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001314 sed_puts(pattern_space, last_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001315
1316 /* Delete and such jump here. */
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001317 discard_line:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001318 flush_append();
1319 free(pattern_space);
1320
1321 goto again;
Erik Andersen1266a131999-12-29 22:19:46 +00001322}
1323
Glenn L McGrath42c25732003-10-04 05:27:56 +00001324/* It is possible to have a command line argument with embedded
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001325 * newlines. This counts as multiple command lines.
1326 * However, newline can be escaped: 's/e/z\<newline>z/'
1327 * We check for this.
1328 */
Glenn L McGrath42c25732003-10-04 05:27:56 +00001329
1330static void add_cmd_block(char *cmdstr)
1331{
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001332 char *sv, *eol;
Glenn L McGrath42c25732003-10-04 05:27:56 +00001333
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001334 cmdstr = sv = xstrdup(cmdstr);
1335 do {
1336 eol = strchr(cmdstr, '\n');
1337 next:
1338 if (eol) {
1339 /* Count preceding slashes */
1340 int slashes = 0;
1341 char *sl = eol;
1342
1343 while (sl != cmdstr && *--sl == '\\')
1344 slashes++;
1345 /* Odd number of preceding slashes - newline is escaped */
1346 if (slashes & 1) {
Denis Vlasenko0f293b92008-07-22 20:16:55 +00001347 overlapping_strcpy(eol - 1, eol);
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001348 eol = strchr(eol, '\n');
1349 goto next;
1350 }
1351 *eol = '\0';
1352 }
1353 add_cmd(cmdstr);
1354 cmdstr = eol + 1;
1355 } while (eol);
1356 free(sv);
Glenn L McGrath42c25732003-10-04 05:27:56 +00001357}
1358
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001359int sed_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001360int sed_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001361{
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001362 unsigned opt;
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001363 llist_t *opt_e, *opt_f;
1364 int status = EXIT_SUCCESS;
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001365
Denis Vlasenko74324c82007-06-04 10:16:52 +00001366 INIT_G();
Rob Landleye3f5a3f2006-05-09 03:53:55 +00001367
Mark Whitley858c1ad2000-07-11 21:38:47 +00001368 /* destroy command strings on exit */
Rob Landley0b656282006-05-08 22:17:23 +00001369 if (ENABLE_FEATURE_CLEAN_UP) atexit(sed_free_and_close_stuff);
Mark Whitley858c1ad2000-07-11 21:38:47 +00001370
Rob Landleyfae1dc82005-11-20 07:44:35 +00001371 /* Lie to autoconf when it starts asking stupid questions. */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001372 if (argv[1] && !strcmp(argv[1], "--version")) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001373 puts("This is not GNU sed version 4.0");
1374 return 0;
Eric Andersenc06f5682004-02-04 10:57:46 +00001375 }
Eric Andersenc06f5682004-02-04 10:57:46 +00001376
Mark Whitley6315ce62000-07-10 22:55:51 +00001377 /* do normal option parsing */
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001378 opt_e = opt_f = NULL;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001379 opt_complementary = "e::f::" /* can occur multiple times */
1380 "nn"; /* count -n */
Denys Vlasenko2e284a42010-08-01 04:14:46 +02001381 /* -i must be first, to match OPT_in_place definition */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00001382 opt = getopt32(argv, "irne:f:", &opt_e, &opt_f,
Denis Vlasenko17a15262007-03-26 20:48:46 +00001383 &G.be_quiet); /* counter for -n */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001384 //argc -= optind;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001385 argv += optind;
1386 if (opt & OPT_in_place) { // -i
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001387 atexit(cleanup_outname);
1388 }
Denis Vlasenko17a15262007-03-26 20:48:46 +00001389 if (opt & 0x2) G.regex_type |= REG_EXTENDED; // -r
1390 //if (opt & 0x4) G.be_quiet++; // -n
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001391 while (opt_e) { // -e
Denis Vlasenkod50dda82008-06-15 05:40:56 +00001392 add_cmd_block(llist_pop(&opt_e));
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001393 }
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001394 while (opt_f) { // -f
1395 char *line;
1396 FILE *cmdfile;
Denis Vlasenko5415c852008-07-21 23:05:26 +00001397 cmdfile = xfopen_for_read(llist_pop(&opt_f));
Denis Vlasenko8ee649a2008-03-26 20:04:27 +00001398 while ((line = xmalloc_fgetline(cmdfile)) != NULL) {
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001399 add_cmd(line);
1400 free(line);
1401 }
1402 fclose(cmdfile);
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001403 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001404 /* if we didn't get a pattern from -e or -f, use argv[0] */
Denis Vlasenko80778502006-10-25 12:46:46 +00001405 if (!(opt & 0x18)) {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001406 if (!*argv)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001407 bb_show_usage();
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001408 add_cmd_block(*argv++);
Mark Whitley6315ce62000-07-10 22:55:51 +00001409 }
Glenn L McGrath42c25732003-10-04 05:27:56 +00001410 /* Flush any unfinished commands. */
1411 add_cmd("");
Mark Whitley6315ce62000-07-10 22:55:51 +00001412
Rob Landley53302f82004-02-18 09:54:15 +00001413 /* By default, we write to stdout */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001414 G.nonstdout = stdout;
Rob Landley53302f82004-02-18 09:54:15 +00001415
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001416 /* argv[0..(argc-1)] should be names of file to process. If no
Mark Whitley6315ce62000-07-10 22:55:51 +00001417 * files were specified or '-' was specified, take input from stdin.
1418 * Otherwise, we process all the files specified. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001419 if (argv[0] == NULL) {
1420 if (opt & OPT_in_place)
Denis Vlasenko80778502006-10-25 12:46:46 +00001421 bb_error_msg_and_die(bb_msg_requires_arg, "-i");
Rob Landleydcc28662004-11-25 07:21:47 +00001422 add_input_file(stdin);
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001423 } else {
Mark Whitley6315ce62000-07-10 22:55:51 +00001424 int i;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001425
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001426 for (i = 0; argv[i]; i++) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001427 struct stat statbuf;
1428 int nonstdoutfd;
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001429 FILE *file;
1430 sed_cmd_t *sed_cmd;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001431
Denis Vlasenko9f739442006-12-16 23:49:13 +00001432 if (LONE_DASH(argv[i]) && !(opt & OPT_in_place)) {
Rob Landleydcc28662004-11-25 07:21:47 +00001433 add_input_file(stdin);
1434 process_files();
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001435 continue;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +00001436 }
Denis Vlasenkoddec5af2006-10-26 23:25:17 +00001437 file = fopen_or_warn(argv[i], "r");
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001438 if (!file) {
1439 status = EXIT_FAILURE;
1440 continue;
1441 }
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001442 add_input_file(file);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001443 if (!(opt & OPT_in_place)) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001444 continue;
1445 }
1446
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001447 /* -i: process each FILE separately: */
1448
Denis Vlasenko17a15262007-03-26 20:48:46 +00001449 G.outname = xasprintf("%sXXXXXX", argv[i]);
Alexander Shishkin67227372010-10-22 13:27:16 +02001450 nonstdoutfd = xmkstemp(G.outname);
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01001451 G.nonstdout = xfdopen_for_write(nonstdoutfd);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001452
Denys Vlasenko57992482009-11-13 09:09:07 +01001453 /* Set permissions/owner of output file */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001454 fstat(fileno(file), &statbuf);
Denys Vlasenko3b727cc2010-06-18 02:12:56 +02001455 /* chmod'ing AFTER chown would preserve suid/sgid bits,
1456 * but GNU sed 4.2.1 does not preserve them either */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001457 fchmod(nonstdoutfd, statbuf.st_mode);
Denys Vlasenko57992482009-11-13 09:09:07 +01001458 fchown(nonstdoutfd, statbuf.st_uid, statbuf.st_gid);
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001459
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001460 process_files();
Denis Vlasenko17a15262007-03-26 20:48:46 +00001461 fclose(G.nonstdout);
Denis Vlasenko17a15262007-03-26 20:48:46 +00001462 G.nonstdout = stdout;
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001463
Denis Vlasenko80778502006-10-25 12:46:46 +00001464 /* unlink(argv[i]); */
Denis Vlasenkocb448fe2008-02-17 14:28:53 +00001465 xrename(G.outname, argv[i]);
Denis Vlasenko17a15262007-03-26 20:48:46 +00001466 free(G.outname);
Denis Vlasenko40276642007-11-13 16:48:10 +00001467 G.outname = NULL;
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001468
1469 /* Re-enable disabled range matches */
1470 for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) {
1471 sed_cmd->beg_line = sed_cmd->beg_line_orig;
1472 }
Mark Whitley6315ce62000-07-10 22:55:51 +00001473 }
Denys Vlasenkoeb08b6e2010-06-19 17:51:06 +02001474 /* Here, to handle "sed 'cmds' nonexistent_file" case we did:
1475 * if (G.current_input_file >= G.input_file_count)
1476 * return status;
1477 * but it's not needed since process_files() works correctly
1478 * in this case too. */
Mark Whitley6315ce62000-07-10 22:55:51 +00001479 }
Denys Vlasenkoeb08b6e2010-06-19 17:51:06 +02001480 process_files();
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001481
Matt Kraaia5f09c62001-11-12 16:44:55 +00001482 return status;
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001483}