blob: 5c4e9cc3ba35c038d69d0b6ec3a8e5105a24bd05 [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 Vlasenko2e284a42010-08-01 04:14:46 +020078enum {
79 OPT_in_place = 1 << 0,
80};
81
Rob Landleye3f5a3f2006-05-09 03:53:55 +000082/* Each sed command turns into one of these structures. */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +000083typedef struct sed_cmd_s {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000084 /* Ordered by alignment requirements: currently 36 bytes on x86 */
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +000085 struct sed_cmd_s *next; /* Next command (linked list, NULL terminated) */
Mark Whitley2dc192f2000-11-03 19:47:00 +000086
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000087 /* address storage */
88 regex_t *beg_match; /* sed -e '/match/cmd' */
89 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
90 regex_t *sub_match; /* For 's/sub_match/string/' */
91 int beg_line; /* 'sed 1p' 0 == apply commands to all lines */
92 int end_line; /* 'sed 1,3p' 0 == one line only. -1 = last line ($) */
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +000093
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +000094 FILE *sw_file; /* File (sw) command writes to, -1 for none. */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000095 char *string; /* Data string for (saicytb) commands. */
Glenn L McGrathfc4cb4d2003-04-12 16:10:42 +000096
Denis Vlasenko284d0fa2008-02-16 13:18:17 +000097 unsigned which_match; /* (s) Which match to replace (0 for all) */
Glenn L McGrathfc4cb4d2003-04-12 16:10:42 +000098
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000099 /* Bitfields (gcc won't group them if we don't) */
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +0000100 unsigned invert:1; /* the '!' after the address */
101 unsigned in_match:1; /* Next line also included in match? */
102 unsigned sub_p:1; /* (s) print option */
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000103
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +0000104 char sw_last_char; /* Last line written by (sw) had no '\n' */
Glenn L McGrathc18ce372003-09-13 06:57:39 +0000105
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000106 /* GENERAL FIELDS */
107 char cmd; /* The command char: abcdDgGhHilnNpPqrstwxy:={} */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000108} sed_cmd_t;
Mark Whitley6315ce62000-07-10 22:55:51 +0000109
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000110static const char semicolon_whitespace[] ALIGN1 = "; \n\r\t\v";
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000111
Denis Vlasenko17a15262007-03-26 20:48:46 +0000112struct globals {
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000113 /* options */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000114 int be_quiet, regex_type;
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000115 FILE *nonstdout;
116 char *outname, *hold_space;
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000117
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000118 /* List of input files */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000119 int input_file_count, current_input_file;
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000120 FILE **input_file_list;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000121
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000122 regmatch_t regmatch[10];
123 regex_t *previous_regex_ptr;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000124
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000125 /* linked list of sed commands */
126 sed_cmd_t sed_cmd_head, *sed_cmd_tail;
127
128 /* Linked list of append lines */
129 llist_t *append_head;
130
131 char *add_cmd_line;
132
133 struct pipeline {
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200134 char *buf; /* Space to hold string */
135 int idx; /* Space used */
136 int len; /* Space allocated */
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000137 } pipeline;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100138} FIX_ALIASING;
Denis Vlasenko17a15262007-03-26 20:48:46 +0000139#define G (*(struct globals*)&bb_common_bufsiz1)
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200140struct BUG_G_too_big {
Denys Vlasenkob7c9fb22011-02-03 00:05:48 +0100141 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200142};
Denis Vlasenko74324c82007-06-04 10:16:52 +0000143#define INIT_G() do { \
Denis Vlasenko74324c82007-06-04 10:16:52 +0000144 G.sed_cmd_tail = &G.sed_cmd_head; \
145} while (0)
146
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000147
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +0000148#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000149static void sed_free_and_close_stuff(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000150{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000151 sed_cmd_t *sed_cmd = G.sed_cmd_head.next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000152
Denis Vlasenko17a15262007-03-26 20:48:46 +0000153 llist_free(G.append_head, free);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000154
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000155 while (sed_cmd) {
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000156 sed_cmd_t *sed_cmd_next = sed_cmd->next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000157
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000158 if (sed_cmd->sw_file)
159 xprint_and_close_file(sed_cmd->sw_file);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000160
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000161 if (sed_cmd->beg_match) {
162 regfree(sed_cmd->beg_match);
163 free(sed_cmd->beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000164 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000165 if (sed_cmd->end_match) {
166 regfree(sed_cmd->end_match);
167 free(sed_cmd->end_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000168 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000169 if (sed_cmd->sub_match) {
170 regfree(sed_cmd->sub_match);
171 free(sed_cmd->sub_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000172 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000173 free(sed_cmd->string);
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000174 free(sed_cmd);
175 sed_cmd = sed_cmd_next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000176 }
Rob Landleyce4f0e92004-10-30 06:54:19 +0000177
Denis Vlasenko60818682007-09-28 22:07:23 +0000178 free(G.hold_space);
Rob Landleydcc28662004-11-25 07:21:47 +0000179
Denis Vlasenko17a15262007-03-26 20:48:46 +0000180 while (G.current_input_file < G.input_file_count)
181 fclose(G.input_file_list[G.current_input_file++]);
Mark Whitley6315ce62000-07-10 22:55:51 +0000182}
Denis Vlasenko666da5e2006-12-26 18:17:42 +0000183#else
184void sed_free_and_close_stuff(void);
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000185#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000186
Rob Landley53302f82004-02-18 09:54:15 +0000187/* If something bad happens during -i operation, delete temp file */
188
189static void cleanup_outname(void)
190{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000191 if (G.outname) unlink(G.outname);
Rob Landley53302f82004-02-18 09:54:15 +0000192}
193
Denis Vlasenko40276642007-11-13 16:48:10 +0000194/* strcpy, replacing "\from" with 'to'. If to is NUL, replacing "\any" with 'any' */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000195
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000196static void parse_escapes(char *dest, const char *string, int len, char from, char to)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000197{
Denis Vlasenko80778502006-10-25 12:46:46 +0000198 int i = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000199
Denis Vlasenko80778502006-10-25 12:46:46 +0000200 while (i < len) {
201 if (string[i] == '\\') {
202 if (!to || string[i+1] == from) {
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000203 *dest++ = to ? to : string[i+1];
Denis Vlasenko80778502006-10-25 12:46:46 +0000204 i += 2;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000205 continue;
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000206 }
207 *dest++ = string[i++];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000208 }
Denis Vlasenko40276642007-11-13 16:48:10 +0000209 /* TODO: is it safe wrt a string with trailing '\\' ? */
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000210 *dest++ = string[i++];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000211 }
Denis Vlasenko40276642007-11-13 16:48:10 +0000212 *dest = '\0';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000213}
214
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000215static char *copy_parsing_escapes(const char *string, int len)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000216{
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200217 const char *s;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000218 char *dest = xmalloc(len + 1);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000219
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200220 /* sed recognizes \n */
Denys Vlasenko6a0abcc2011-05-03 00:52:22 +0200221 /* GNU sed also recognizes \t and \r */
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200222 for (s = "\nn\tt\rr"; *s; s += 2) {
223 parse_escapes(dest, string, len, s[1], s[0]);
224 string = dest;
225 len = strlen(dest);
226 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000227 return dest;
228}
229
230
Mark Whitley6315ce62000-07-10 22:55:51 +0000231/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000232 * index_of_next_unescaped_regexp_delim - walks left to right through a string
233 * beginning at a specified index and returns the index of the next regular
Denis Vlasenko40276642007-11-13 16:48:10 +0000234 * expression delimiter (typically a forward slash ('/')) not preceded by
Rob Landley4795e4e2006-07-26 17:25:08 +0000235 * a backslash ('\'). A negative delimiter disables square bracket checking.
Mark Whitley6315ce62000-07-10 22:55:51 +0000236 */
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000237static int index_of_next_unescaped_regexp_delim(int delimiter, const char *str)
Mark Whitley6315ce62000-07-10 22:55:51 +0000238{
Matt Kraaia0065d52001-08-24 14:45:50 +0000239 int bracket = -1;
240 int escaped = 0;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000241 int idx = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000242 char ch;
Matt Kraaia0065d52001-08-24 14:45:50 +0000243
Rob Landley4795e4e2006-07-26 17:25:08 +0000244 if (delimiter < 0) {
245 bracket--;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000246 delimiter = -delimiter;
Rob Landley4795e4e2006-07-26 17:25:08 +0000247 }
248
Denys Vlasenko52d83702011-05-03 00:51:43 +0200249 for (; (ch = str[idx]) != '\0'; idx++) {
Rob Landley4795e4e2006-07-26 17:25:08 +0000250 if (bracket >= 0) {
Denys Vlasenko52d83702011-05-03 00:51:43 +0200251 if (ch == ']'
252 && !(bracket == idx - 1 || (bracket == idx - 2 && str[idx - 1] == '^'))
253 ) {
Matt Kraaia0065d52001-08-24 14:45:50 +0000254 bracket = -1;
Denys Vlasenko52d83702011-05-03 00:51:43 +0200255 }
Matt Kraaia0065d52001-08-24 14:45:50 +0000256 } else if (escaped)
257 escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000258 else if (ch == '\\')
Matt Kraaia0065d52001-08-24 14:45:50 +0000259 escaped = 1;
Rob Landley4795e4e2006-07-26 17:25:08 +0000260 else if (bracket == -1 && ch == '[')
Matt Kraaia0065d52001-08-24 14:45:50 +0000261 bracket = idx;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000262 else if (ch == delimiter)
Mark Whitley97562bd2000-07-17 20:06:42 +0000263 return idx;
264 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000265
Mark Whitley97562bd2000-07-17 20:06:42 +0000266 /* if we make it to here, we've hit the end of the string */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000267 bb_error_msg_and_die("unmatched '%c'", delimiter);
Mark Whitley6315ce62000-07-10 22:55:51 +0000268}
269
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000270/*
271 * Returns the index of the third delimiter
272 */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000273static int parse_regex_delim(const char *cmdstr, char **match, char **replace)
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000274{
Denis Vlasenko9356b502007-01-29 23:44:38 +0000275 const char *cmdstr_ptr = cmdstr;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000276 char delimiter;
277 int idx = 0;
278
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000279 /* verify that the 's' or 'y' is followed by something. That something
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000280 * (typically a 'slash') is now our regexp delimiter... */
Rob Landley4795e4e2006-07-26 17:25:08 +0000281 if (*cmdstr == '\0')
282 bb_error_msg_and_die("bad format in substitution expression");
Denis Vlasenko80778502006-10-25 12:46:46 +0000283 delimiter = *cmdstr_ptr++;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000284
285 /* save the match string */
286 idx = index_of_next_unescaped_regexp_delim(delimiter, cmdstr_ptr);
Rob Landleyfae1dc82005-11-20 07:44:35 +0000287 *match = copy_parsing_escapes(cmdstr_ptr, idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000288
289 /* save the replacement string */
290 cmdstr_ptr += idx + 1;
Rob Landley4795e4e2006-07-26 17:25:08 +0000291 idx = index_of_next_unescaped_regexp_delim(-delimiter, cmdstr_ptr);
Rob Landleyfae1dc82005-11-20 07:44:35 +0000292 *replace = copy_parsing_escapes(cmdstr_ptr, idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000293
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000294 return ((cmdstr_ptr - cmdstr) + idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000295}
296
Mark Whitley6315ce62000-07-10 22:55:51 +0000297/*
298 * returns the index in the string just past where the address ends.
299 */
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000300static int get_address(const char *my_str, int *linenum, regex_t ** regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000301{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000302 const char *pos = my_str;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000303
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000304 if (isdigit(*my_str)) {
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000305 *linenum = strtol(my_str, (char**)&pos, 10);
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000306 /* endstr shouldnt ever equal NULL */
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000307 } else if (*my_str == '$') {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000308 *linenum = -1;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000309 pos++;
310 } else if (*my_str == '/' || *my_str == '\\') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000311 int next;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000312 char delimiter;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000313 char *temp;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000314
Denis Vlasenko80778502006-10-25 12:46:46 +0000315 delimiter = '/';
316 if (*my_str == '\\') delimiter = *++pos;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000317 next = index_of_next_unescaped_regexp_delim(delimiter, ++pos);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000318 temp = copy_parsing_escapes(pos, next);
Denis Vlasenko80778502006-10-25 12:46:46 +0000319 *regex = xmalloc(sizeof(regex_t));
Denis Vlasenko17a15262007-03-26 20:48:46 +0000320 xregcomp(*regex, temp, G.regex_type|REG_NEWLINE);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000321 free(temp);
322 /* Move position to next character after last delimiter */
Rob Landley4795e4e2006-07-26 17:25:08 +0000323 pos += (next+1);
Mark Whitley6315ce62000-07-10 22:55:51 +0000324 }
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000325 return pos - my_str;
Mark Whitley6315ce62000-07-10 22:55:51 +0000326}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000327
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000328/* Grab a filename. Whitespace at start is skipped, then goes to EOL. */
Denis Vlasenko68404f12008-03-17 09:00:54 +0000329static int parse_file_cmd(/*sed_cmd_t *sed_cmd,*/ const char *filecmdstr, char **retval)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000330{
Denis Vlasenko80778502006-10-25 12:46:46 +0000331 int start = 0, idx, hack = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000332
333 /* Skip whitespace, then grab filename to end of line */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000334 while (isspace(filecmdstr[start]))
335 start++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000336 idx = start;
Denis Vlasenko9356b502007-01-29 23:44:38 +0000337 while (filecmdstr[idx] && filecmdstr[idx] != '\n')
338 idx++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000339
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000340 /* If lines glued together, put backslash back. */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000341 if (filecmdstr[idx] == '\n')
342 hack = 1;
Denis Vlasenko80778502006-10-25 12:46:46 +0000343 if (idx == start)
344 bb_error_msg_and_die("empty filename");
Rob Landleyd921b2e2006-08-03 15:41:12 +0000345 *retval = xstrndup(filecmdstr+start, idx-start+hack+1);
Denis Vlasenko9356b502007-01-29 23:44:38 +0000346 if (hack)
347 (*retval)[idx] = '\\';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000348
349 return idx;
350}
351
Denis Vlasenko9356b502007-01-29 23:44:38 +0000352static int parse_subst_cmd(sed_cmd_t *sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000353{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000354 int cflags = G.regex_type;
Mark Whitley06f35292000-07-13 19:58:04 +0000355 char *match;
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000356 int idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000357
358 /*
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000359 * A substitution command should look something like this:
360 * s/match/replace/ #gIpw
Mark Whitley0e4cec02000-08-21 21:29:20 +0000361 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000362 * mandatory optional
Mark Whitley06f35292000-07-13 19:58:04 +0000363 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000364 idx = parse_regex_delim(substr, &match, &sed_cmd->string);
Mark Whitley06f35292000-07-13 19:58:04 +0000365
Mark Whitley97562bd2000-07-17 20:06:42 +0000366 /* determine the number of back references in the match string */
367 /* Note: we compute this here rather than in the do_subst_command()
368 * function to save processor time, at the expense of a little more memory
369 * (4 bits) per sed_cmd */
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000370
Mark Whitley06f35292000-07-13 19:58:04 +0000371 /* process the flags */
Mark Whitley70705d72000-07-14 19:06:30 +0000372
Denis Vlasenko80778502006-10-25 12:46:46 +0000373 sed_cmd->which_match = 1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000374 while (substr[++idx]) {
375 /* Parse match number */
Denis Vlasenko80778502006-10-25 12:46:46 +0000376 if (isdigit(substr[idx])) {
377 if (match[0] != '^') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000378 /* Match 0 treated as all, multiple matches we take the last one. */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000379 const char *pos = substr + idx;
380/* FIXME: error check? */
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000381 sed_cmd->which_match = (unsigned)strtol(substr+idx, (char**) &pos, 10);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000382 idx = pos - substr;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000383 }
384 continue;
385 }
Rob Landley40ec4ae2004-01-04 06:42:14 +0000386 /* Skip spaces */
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200387 if (isspace(substr[idx]))
388 continue;
Rob Landley40ec4ae2004-01-04 06:42:14 +0000389
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000390 switch (substr[idx]) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000391 /* Replace all occurrences */
392 case 'g':
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000393 if (match[0] != '^')
394 sed_cmd->which_match = 0;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000395 break;
396 /* Print pattern space */
397 case 'p':
398 sed_cmd->sub_p = 1;
399 break;
400 /* Write to file */
401 case 'w':
402 {
403 char *temp;
Denis Vlasenko68404f12008-03-17 09:00:54 +0000404 idx += parse_file_cmd(/*sed_cmd,*/ substr+idx, &temp);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000405 break;
406 }
407 /* Ignore case (gnu exension) */
408 case 'I':
409 cflags |= REG_ICASE;
410 break;
411 /* Comment */
412 case '#':
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200413 // while (substr[++idx]) continue;
414 idx += strlen(substr + idx); // same
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000415 /* Fall through */
416 /* End of command */
417 case ';':
418 case '}':
419 goto out;
420 default:
421 bb_error_msg_and_die("bad option in substitution expression");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000422 }
423 }
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200424 out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000425 /* compile the match string into a regex */
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000426 if (*match != '\0') {
427 /* If match is empty, we use last regex used at runtime */
Denis Vlasenkob95636c2006-12-19 23:36:04 +0000428 sed_cmd->sub_match = xmalloc(sizeof(regex_t));
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000429 xregcomp(sed_cmd->sub_match, match, cflags);
430 }
Mark Whitley06f35292000-07-13 19:58:04 +0000431 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000432
433 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000434}
435
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000436/*
437 * Process the commands arguments
438 */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000439static const char *parse_cmd_args(sed_cmd_t *sed_cmd, const char *cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000440{
Denys Vlasenko52d83702011-05-03 00:51:43 +0200441 static const char cmd_letters[] = "saicrw:btTydDgGhHlnNpPqx={}";
442 enum {
443 IDX_s = 0,
444 IDX_a,
445 IDX_i,
446 IDX_c,
447 IDX_r,
448 IDX_w,
449 IDX_colon,
450 IDX_b,
451 IDX_t,
452 IDX_T,
453 IDX_y,
454 IDX_d,
455 IDX_D,
456 IDX_g,
457 IDX_G,
458 IDX_h,
459 IDX_H,
460 IDX_l,
461 IDX_n,
462 IDX_N,
463 IDX_p,
464 IDX_P,
465 IDX_q,
466 IDX_x,
467 IDX_equal,
468 IDX_lbrace,
469 IDX_rbrace,
470 IDX_nul
471 };
472 struct chk { char chk[sizeof(cmd_letters)-1 == IDX_nul ? 1 : -1]; };
473
474 unsigned idx = strchrnul(cmd_letters, sed_cmd->cmd) - cmd_letters;
475
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000476 /* handle (s)ubstitution command */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200477 if (idx == IDX_s) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000478 cmdstr += parse_subst_cmd(sed_cmd, cmdstr);
Denys Vlasenko52d83702011-05-03 00:51:43 +0200479 }
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000480 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200481 else if (idx <= IDX_c) { /* a,i,c */
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000482 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c')
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200483 bb_error_msg_and_die("only a beginning address can be specified for edit commands");
Denis Vlasenko80778502006-10-25 12:46:46 +0000484 for (;;) {
485 if (*cmdstr == '\n' || *cmdstr == '\\') {
Rob Landley25d82392004-04-01 09:23:30 +0000486 cmdstr++;
487 break;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +0200488 }
489 if (!isspace(*cmdstr))
Denis Vlasenko80778502006-10-25 12:46:46 +0000490 break;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +0200491 cmdstr++;
Rob Landley25d82392004-04-01 09:23:30 +0000492 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000493 sed_cmd->string = xstrdup(cmdstr);
Denis Vlasenko40276642007-11-13 16:48:10 +0000494 /* "\anychar" -> "anychar" */
495 parse_escapes(sed_cmd->string, sed_cmd->string, strlen(cmdstr), '\0', '\0');
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000496 cmdstr += strlen(cmdstr);
Denys Vlasenko52d83702011-05-03 00:51:43 +0200497 }
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000498 /* handle file cmds: (r)ead */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200499 else if (idx <= IDX_w) { /* r,w */
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000500 if (sed_cmd->end_line || sed_cmd->end_match)
Denis Vlasenko80778502006-10-25 12:46:46 +0000501 bb_error_msg_and_die("command only uses one address");
Denis Vlasenko68404f12008-03-17 09:00:54 +0000502 cmdstr += parse_file_cmd(/*sed_cmd,*/ cmdstr, &sed_cmd->string);
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000503 if (sed_cmd->cmd == 'w') {
Denis Vlasenko5415c852008-07-21 23:05:26 +0000504 sed_cmd->sw_file = xfopen_for_write(sed_cmd->string);
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000505 sed_cmd->sw_last_char = '\n';
506 }
Denys Vlasenko52d83702011-05-03 00:51:43 +0200507 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000508 /* handle branch commands */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200509 else if (idx <= IDX_T) { /* :,b,t,T */
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000510 int length;
511
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000512 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000513 length = strcspn(cmdstr, semicolon_whitespace);
514 if (length) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000515 sed_cmd->string = xstrndup(cmdstr, length);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000516 cmdstr += length;
517 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000518 }
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000519 /* translation command */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200520 else if (idx == IDX_y) {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000521 char *match, *replace;
Denis Vlasenko80778502006-10-25 12:46:46 +0000522 int i = cmdstr[0];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000523
Denis Vlasenko80778502006-10-25 12:46:46 +0000524 cmdstr += parse_regex_delim(cmdstr, &match, &replace)+1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000525 /* \n already parsed, but \delimiter needs unescaping. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000526 parse_escapes(match, match, strlen(match), i, i);
527 parse_escapes(replace, replace, strlen(replace), i, i);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000528
Rob Landley9ffd4232006-05-21 18:30:35 +0000529 sed_cmd->string = xzalloc((strlen(match) + 1) * 2);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000530 for (i = 0; match[i] && replace[i]; i++) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000531 sed_cmd->string[i*2] = match[i];
532 sed_cmd->string[i*2+1] = replace[i];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000533 }
534 free(match);
535 free(replace);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000536 }
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000537 /* if it wasnt a single-letter command that takes no arguments
538 * then it must be an invalid command.
539 */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200540 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 +0000541 bb_error_msg_and_die("unsupported command %c", sed_cmd->cmd);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000542 }
Mark Whitley70705d72000-07-14 19:06:30 +0000543
544 /* give back whatever's left over */
Denis Vlasenko80778502006-10-25 12:46:46 +0000545 return cmdstr;
Eric Andersen50d63601999-11-09 01:47:36 +0000546}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000547
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000548
549/* Parse address+command sets, skipping comment lines. */
550
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000551static void add_cmd(const char *cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000552{
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000553 sed_cmd_t *sed_cmd;
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200554 unsigned len, n;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000555
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000556 /* Append this line to any unfinished line from last time. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000557 if (G.add_cmd_line) {
558 char *tp = xasprintf("%s\n%s", G.add_cmd_line, cmdstr);
559 free(G.add_cmd_line);
Denis Vlasenko945bd3d2007-04-12 21:20:25 +0000560 cmdstr = G.add_cmd_line = tp;
Rob Landley12d87552006-06-05 17:32:44 +0000561 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000562
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200563 /* If this line ends with unescaped backslash, request next line. */
564 n = len = strlen(cmdstr);
565 while (n && cmdstr[n-1] == '\\')
566 n--;
567 if ((len - n) & 1) { /* if odd number of trailing backslashes */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000568 if (!G.add_cmd_line)
569 G.add_cmd_line = xstrdup(cmdstr);
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200570 G.add_cmd_line[len-1] = '\0';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000571 return;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000572 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000573
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000574 /* Loop parsing all commands in this line. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000575 while (*cmdstr) {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000576 /* Skip leading whitespace and semicolons */
577 cmdstr += strspn(cmdstr, semicolon_whitespace);
578
579 /* If no more commands, exit. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000580 if (!*cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000581
582 /* if this is a comment, jump past it and keep going */
583 if (*cmdstr == '#') {
584 /* "#n" is the same as using -n on the command line */
Denis Vlasenko80778502006-10-25 12:46:46 +0000585 if (cmdstr[1] == 'n')
Denis Vlasenko17a15262007-03-26 20:48:46 +0000586 G.be_quiet++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000587 cmdstr = strpbrk(cmdstr, "\n\r");
588 if (!cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000589 continue;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000590 }
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000591
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000592 /* parse the command
593 * format is: [addr][,addr][!]cmd
594 * |----||-----||-|
595 * part1 part2 part3
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000596 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000597
Rob Landley9ffd4232006-05-21 18:30:35 +0000598 sed_cmd = xzalloc(sizeof(sed_cmd_t));
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000599
600 /* first part (if present) is an address: either a '$', a number or a /regex/ */
601 cmdstr += get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
602
603 /* second part (if present) will begin with a comma */
604 if (*cmdstr == ',') {
605 int idx;
606
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000607 cmdstr++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000608 idx = get_address(cmdstr, &sed_cmd->end_line, &sed_cmd->end_match);
Denis Vlasenko80778502006-10-25 12:46:46 +0000609 if (!idx)
610 bb_error_msg_and_die("no address after comma");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000611 cmdstr += idx;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000612 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000613
614 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000615 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000616
617 /* Check for inversion flag */
618 if (*cmdstr == '!') {
619 sed_cmd->invert = 1;
620 cmdstr++;
621
622 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000623 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000624 }
625
626 /* last part (mandatory) will be a command */
Denis Vlasenko80778502006-10-25 12:46:46 +0000627 if (!*cmdstr)
628 bb_error_msg_and_die("missing command");
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200629 sed_cmd->cmd = *cmdstr++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000630 cmdstr = parse_cmd_args(sed_cmd, cmdstr);
631
632 /* Add the command to the command array */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000633 G.sed_cmd_tail->next = sed_cmd;
634 G.sed_cmd_tail = G.sed_cmd_tail->next;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000635 }
636
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000637 /* If we glued multiple lines together, free the memory. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000638 free(G.add_cmd_line);
639 G.add_cmd_line = NULL;
Mark Whitley6315ce62000-07-10 22:55:51 +0000640}
641
Rob Landleydcc28662004-11-25 07:21:47 +0000642/* Append to a string, reallocating memory as necessary. */
643
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000644#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000645
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000646static void pipe_putc(char c)
Eric Andersenc52a6b02001-11-10 10:49:42 +0000647{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000648 if (G.pipeline.idx == G.pipeline.len) {
649 G.pipeline.buf = xrealloc(G.pipeline.buf,
650 G.pipeline.len + PIPE_GROW);
651 G.pipeline.len += PIPE_GROW;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000652 }
Denis Vlasenko17a15262007-03-26 20:48:46 +0000653 G.pipeline.buf[G.pipeline.idx++] = c;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000654}
655
Rob Landley4795e4e2006-07-26 17:25:08 +0000656static void do_subst_w_backrefs(char *line, char *replace)
Mark Whitley97562bd2000-07-17 20:06:42 +0000657{
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200658 int i, j;
Mark Whitley97562bd2000-07-17 20:06:42 +0000659
660 /* go through the replacement string */
661 for (i = 0; replace[i]; i++) {
662 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000663 if (replace[i] == '\\') {
664 unsigned backref = replace[++i] - '0';
665 if (backref <= 9) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000666 /* print out the text held in G.regmatch[backref] */
667 if (G.regmatch[backref].rm_so != -1) {
668 j = G.regmatch[backref].rm_so;
669 while (j < G.regmatch[backref].rm_eo)
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000670 pipe_putc(line[j++]);
671 }
672 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000673 }
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000674 /* I _think_ it is impossible to get '\' to be
675 * the last char in replace string. Thus we dont check
676 * for replace[i] == NUL. (counterexample anyone?) */
677 /* if we find a backslash escaped character, print the character */
678 pipe_putc(replace[i]);
679 continue;
Mark Whitley97562bd2000-07-17 20:06:42 +0000680 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000681 /* if we find an unescaped '&' print out the whole matched text. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000682 if (replace[i] == '&') {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000683 j = G.regmatch[0].rm_so;
684 while (j < G.regmatch[0].rm_eo)
Denis Vlasenko80778502006-10-25 12:46:46 +0000685 pipe_putc(line[j++]);
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000686 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000687 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000688 /* Otherwise just output the character. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000689 pipe_putc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000690 }
691}
692
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200693static int do_subst_command(sed_cmd_t *sed_cmd, char **line_p)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000694{
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200695 char *line = *line_p;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000696 int altered = 0;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000697 unsigned match_count = 0;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000698 regex_t *current_regex;
699
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200700 current_regex = sed_cmd->sub_match;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000701 /* Handle empty regex. */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200702 if (!current_regex) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000703 current_regex = G.previous_regex_ptr;
Denis Vlasenko80778502006-10-25 12:46:46 +0000704 if (!current_regex)
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000705 bb_error_msg_and_die("no previous regexp");
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200706 }
707 G.previous_regex_ptr = current_regex;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000708
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000709 /* Find the first match */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200710 if (REG_NOMATCH == regexec(current_regex, line, 10, G.regmatch, 0))
Mark Whitley2dc192f2000-11-03 19:47:00 +0000711 return 0;
712
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000713 /* Initialize temporary output buffer. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000714 G.pipeline.buf = xmalloc(PIPE_GROW);
715 G.pipeline.len = PIPE_GROW;
716 G.pipeline.idx = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000717
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000718 /* Now loop through, substituting for matches */
719 do {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000720 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000721
Eric Andersenc06f5682004-02-04 10:57:46 +0000722 /* Work around bug in glibc regexec, demonstrated by:
723 echo " a.b" | busybox sed 's [^ .]* x g'
724 The match_count check is so not to break
725 echo "hi" | busybox sed 's/^/!/g' */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000726 if (!G.regmatch[0].rm_so && !G.regmatch[0].rm_eo && match_count) {
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200727 pipe_putc(*line++);
Eric Andersenc06f5682004-02-04 10:57:46 +0000728 continue;
729 }
730
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000731 match_count++;
732
733 /* If we aren't interested in this match, output old line to
734 end of match and continue */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000735 if (sed_cmd->which_match
736 && (sed_cmd->which_match != match_count)
737 ) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000738 for (i = 0; i < G.regmatch[0].rm_eo; i++)
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200739 pipe_putc(*line++);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000740 continue;
741 }
742
Mark Whitley2dc192f2000-11-03 19:47:00 +0000743 /* print everything before the match */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000744 for (i = 0; i < G.regmatch[0].rm_so; i++)
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200745 pipe_putc(line[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000746
Mark Whitley2dc192f2000-11-03 19:47:00 +0000747 /* then print the substitution string */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200748 do_subst_w_backrefs(line, sed_cmd->string);
Mark Whitley97562bd2000-07-17 20:06:42 +0000749
Mark Whitley2dc192f2000-11-03 19:47:00 +0000750 /* advance past the match */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200751 line += G.regmatch[0].rm_eo;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000752 /* flag that something has changed */
753 altered++;
Mark Whitley97562bd2000-07-17 20:06:42 +0000754
Mark Whitley2dc192f2000-11-03 19:47:00 +0000755 /* if we're not doing this globally, get out now */
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000756 if (sed_cmd->which_match)
757 break;
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200758
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200759//maybe (G.regmatch[0].rm_eo ? REG_NOTBOL : 0) instead of unconditional REG_NOTBOL?
Denys Vlasenko11c82382009-09-22 03:02:21 +0200760 } while (*line && regexec(current_regex, line, 10, G.regmatch, REG_NOTBOL) != REG_NOMATCH);
Mark Whitley2dc192f2000-11-03 19:47:00 +0000761
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000762 /* Copy rest of string into output pipeline */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200763 while (1) {
764 char c = *line++;
765 pipe_putc(c);
766 if (c == '\0')
767 break;
768 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000769
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200770 free(*line_p);
771 *line_p = G.pipeline.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000772 return altered;
773}
Mark Whitley6315ce62000-07-10 22:55:51 +0000774
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000775/* Set command pointer to point to this label. (Does not handle null label.) */
Rob Landley4795e4e2006-07-26 17:25:08 +0000776static sed_cmd_t *branch_to(char *label)
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000777{
778 sed_cmd_t *sed_cmd;
Glenn L McGrathd4185b02003-04-11 17:10:23 +0000779
Denis Vlasenko17a15262007-03-26 20:48:46 +0000780 for (sed_cmd = G.sed_cmd_head.next; sed_cmd; sed_cmd = sed_cmd->next) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000781 if (sed_cmd->cmd == ':' && sed_cmd->string && !strcmp(sed_cmd->string, label)) {
782 return sed_cmd;
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000783 }
784 }
Denis Vlasenko80778502006-10-25 12:46:46 +0000785 bb_error_msg_and_die("can't find label for jump to '%s'", label);
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000786}
Mark Whitley6315ce62000-07-10 22:55:51 +0000787
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000788static void append(char *s)
789{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000790 llist_add_to_end(&G.append_head, xstrdup(s));
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000791}
792
793static void flush_append(void)
794{
Rob Landley0b656282006-05-08 22:17:23 +0000795 char *data;
796
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000797 /* Output appended lines. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000798 while ((data = (char *)llist_pop(&G.append_head))) {
799 fprintf(G.nonstdout, "%s\n", data);
Rob Landley0b656282006-05-08 22:17:23 +0000800 free(data);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000801 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000802}
803
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000804static void add_input_file(FILE *file)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000805{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000806 G.input_file_list = xrealloc_vector(G.input_file_list, 2, G.input_file_count);
Denis Vlasenko17a15262007-03-26 20:48:46 +0000807 G.input_file_list[G.input_file_count++] = file;
Rob Landleydcc28662004-11-25 07:21:47 +0000808}
809
Denis Vlasenko17a15262007-03-26 20:48:46 +0000810/* Get next line of input from G.input_file_list, flushing append buffer and
Rob Landleydcc28662004-11-25 07:21:47 +0000811 * noting if we ran out of files without a newline on the last line we read.
812 */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000813enum {
814 NO_EOL_CHAR = 1,
Denis Vlasenko86811802007-01-29 17:10:19 +0000815 LAST_IS_NUL = 2,
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000816};
817static char *get_next_line(char *gets_char)
Rob Landleydcc28662004-11-25 07:21:47 +0000818{
Denis Vlasenko80778502006-10-25 12:46:46 +0000819 char *temp = NULL;
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000820 int len;
821 char gc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000822
823 flush_append();
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000824
825 /* will be returned if last line in the file
826 * doesn't end with either '\n' or '\0' */
827 gc = NO_EOL_CHAR;
Denis Vlasenko17a15262007-03-26 20:48:46 +0000828 while (G.current_input_file < G.input_file_count) {
829 FILE *fp = G.input_file_list[G.current_input_file];
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000830 /* Read line up to a newline or NUL byte, inclusive,
831 * return malloc'ed char[]. length of the chunk read
832 * is stored in len. NULL if EOF/error */
Denis Vlasenko86811802007-01-29 17:10:19 +0000833 temp = bb_get_chunk_from_file(fp, &len);
Rob Landley2b26fd52006-02-24 02:30:39 +0000834 if (temp) {
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000835 /* len > 0 here, it's ok to do temp[len-1] */
836 char c = temp[len-1];
837 if (c == '\n' || c == '\0') {
838 temp[len-1] = '\0';
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000839 gc = c;
Denis Vlasenko86811802007-01-29 17:10:19 +0000840 if (c == '\0') {
841 int ch = fgetc(fp);
842 if (ch != EOF)
843 ungetc(ch, fp);
844 else
845 gc = LAST_IS_NUL;
846 }
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000847 }
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000848 /* else we put NO_EOL_CHAR into *gets_char */
849 break;
850
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000851 /* NB: I had the idea of peeking next file(s) and returning
852 * NO_EOL_CHAR only if it is the *last* non-empty
853 * input file. But there is a case where this won't work:
854 * file1: "a woo\nb woo"
855 * file2: "c no\nd no"
856 * sed -ne 's/woo/bang/p' input1 input2 => "a bang\nb bang"
857 * (note: *no* newline after "b bang"!) */
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000858 }
859 /* Close this file and advance to next one */
Denis Vlasenko86811802007-01-29 17:10:19 +0000860 fclose(fp);
Denis Vlasenko17a15262007-03-26 20:48:46 +0000861 G.current_input_file++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000862 }
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000863 *gets_char = gc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000864 return temp;
865}
866
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000867/* Output line of text. */
868/* Note:
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000869 * The tricks with NO_EOL_CHAR and last_puts_char are there to emulate gnu sed.
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000870 * Without them, we had this:
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000871 * echo -n thingy >z1
872 * echo -n again >z2
873 * >znull
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000874 * sed "s/i/z/" z1 z2 znull | hexdump -vC
875 * output:
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000876 * gnu sed 4.1.5:
877 * 00000000 74 68 7a 6e 67 79 0a 61 67 61 7a 6e |thzngy.agazn|
878 * bbox:
879 * 00000000 74 68 7a 6e 67 79 61 67 61 7a 6e |thzngyagazn|
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000880 */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000881static void puts_maybe_newline(char *s, FILE *file, char *last_puts_char, char last_gets_char)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000882{
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000883 char lpc = *last_puts_char;
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000884
Denis Vlasenko86811802007-01-29 17:10:19 +0000885 /* Need to insert a '\n' between two files because first file's
886 * last line wasn't terminated? */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000887 if (lpc != '\n' && lpc != '\0') {
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000888 fputc('\n', file);
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000889 lpc = '\n';
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000890 }
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000891 fputs(s, file);
Denis Vlasenko86811802007-01-29 17:10:19 +0000892
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000893 /* 'x' - just something which is not '\n', '\0' or NO_EOL_CHAR */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000894 if (s[0])
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000895 lpc = 'x';
Denis Vlasenko86811802007-01-29 17:10:19 +0000896
897 /* had trailing '\0' and it was last char of file? */
898 if (last_gets_char == LAST_IS_NUL) {
899 fputc('\0', file);
900 lpc = 'x'; /* */
901 } else
902 /* had trailing '\n' or '\0'? */
903 if (last_gets_char != NO_EOL_CHAR) {
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000904 fputc(last_gets_char, file);
905 lpc = last_gets_char;
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000906 }
Denis Vlasenko86811802007-01-29 17:10:19 +0000907
Denis Vlasenko80778502006-10-25 12:46:46 +0000908 if (ferror(file)) {
Denis Vlasenko40920822006-10-03 20:28:06 +0000909 xfunc_error_retval = 4; /* It's what gnu sed exits with... */
Bernhard Reutner-Fischera3d4bf32006-06-03 21:40:11 +0000910 bb_error_msg_and_die(bb_msg_write_error);
Rob Landley53302f82004-02-18 09:54:15 +0000911 }
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000912 *last_puts_char = lpc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000913}
914
Denis Vlasenko17a15262007-03-26 20:48:46 +0000915#define sed_puts(s, n) (puts_maybe_newline(s, G.nonstdout, &last_puts_char, n))
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000916
Denis Vlasenko8274e062007-08-06 03:41:08 +0000917static int beg_match(sed_cmd_t *sed_cmd, const char *pattern_space)
918{
919 int retval = sed_cmd->beg_match && !regexec(sed_cmd->beg_match, pattern_space, 0, NULL, 0);
920 if (retval)
921 G.previous_regex_ptr = sed_cmd->beg_match;
922 return retval;
923}
924
Rob Landley2b26fd52006-02-24 02:30:39 +0000925/* Process all the lines in all the files */
926
Rob Landleydcc28662004-11-25 07:21:47 +0000927static void process_files(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000928{
Rob Landleyce4f0e92004-10-30 06:54:19 +0000929 char *pattern_space, *next_line;
Denis Vlasenko826c85f2007-01-28 23:26:15 +0000930 int linenum = 0;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000931 char last_puts_char = '\n';
932 char last_gets_char, next_gets_char;
Denis Vlasenko2ea630f2006-12-10 02:52:19 +0000933 sed_cmd_t *sed_cmd;
934 int substituted;
Mark Whitley6315ce62000-07-10 22:55:51 +0000935
Rob Landley2b26fd52006-02-24 02:30:39 +0000936 /* Prime the pump */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000937 next_line = get_next_line(&next_gets_char);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000938
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200939 /* Go through every line in each file */
Denis Vlasenkof39c7c02008-02-28 17:59:01 +0000940 again:
Denis Vlasenko2ea630f2006-12-10 02:52:19 +0000941 substituted = 0;
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000942
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000943 /* Advance to next line. Stop if out of lines. */
944 pattern_space = next_line;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200945 if (!pattern_space)
946 return;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000947 last_gets_char = next_gets_char;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000948
949 /* Read one line in advance so we can act on the last line,
950 * the '$' address */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000951 next_line = get_next_line(&next_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000952 linenum++;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200953
954 /* For every line, go through all the commands */
Denis Vlasenkof39c7c02008-02-28 17:59:01 +0000955 restart:
Denis Vlasenko17a15262007-03-26 20:48:46 +0000956 for (sed_cmd = G.sed_cmd_head.next; sed_cmd; sed_cmd = sed_cmd->next) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000957 int old_matched, matched;
Eric Andersen52a3c272003-12-23 08:53:51 +0000958
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000959 old_matched = sed_cmd->in_match;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000960
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000961 /* Determine if this command matches this line: */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200962
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200963 //bb_error_msg("match1:%d", sed_cmd->in_match);
964 //bb_error_msg("match2:%d", (!sed_cmd->beg_line && !sed_cmd->end_line
965 // && !sed_cmd->beg_match && !sed_cmd->end_match));
966 //bb_error_msg("match3:%d", (sed_cmd->beg_line > 0
967 // && (sed_cmd->end_line || sed_cmd->end_match
968 // ? (sed_cmd->beg_line <= linenum)
969 // : (sed_cmd->beg_line == linenum)
970 // )
971 // )
972 //bb_error_msg("match4:%d", (beg_match(sed_cmd, pattern_space)));
973 //bb_error_msg("match5:%d", (sed_cmd->beg_line == -1 && next_line == NULL));
974
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200975 /* Are we continuing a previous multi-line match? */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000976 sed_cmd->in_match = sed_cmd->in_match
977 /* Or is no range necessary? */
978 || (!sed_cmd->beg_line && !sed_cmd->end_line
979 && !sed_cmd->beg_match && !sed_cmd->end_match)
980 /* Or did we match the start of a numerical range? */
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200981 || (sed_cmd->beg_line > 0
982 && (sed_cmd->end_line || sed_cmd->end_match
Denys Vlasenkoc4679242010-06-04 01:31:48 +0200983 /* note: even if end is numeric and is < linenum too,
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200984 * GNU sed matches! We match too */
985 ? (sed_cmd->beg_line <= linenum) /* N,end */
986 : (sed_cmd->beg_line == linenum) /* N */
987 )
988 )
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000989 /* Or does this line match our begin address regex? */
Denis Vlasenko8274e062007-08-06 03:41:08 +0000990 || (beg_match(sed_cmd, pattern_space))
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000991 /* Or did we match last line of input? */
992 || (sed_cmd->beg_line == -1 && next_line == NULL);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000993
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200994 /* Snapshot the value */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000995 matched = sed_cmd->in_match;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000996
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200997 //bb_error_msg("cmd:'%c' matched:%d beg_line:%d end_line:%d linenum:%d",
998 //sed_cmd->cmd, matched, sed_cmd->beg_line, sed_cmd->end_line, linenum);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000999
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001000 /* Is this line the end of the current match? */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001001
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001002 if (matched) {
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001003 /* once matched, "n,xxx" range is dead, disabling it */
Denys Vlasenko2e284a42010-08-01 04:14:46 +02001004 if (sed_cmd->beg_line > 0
1005 && !(option_mask32 & OPT_in_place) /* but not for -i */
1006 ) {
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001007 sed_cmd->beg_line = -2;
Denys Vlasenko2e284a42010-08-01 04:14:46 +02001008 }
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001009 sed_cmd->in_match = !(
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001010 /* has the ending line come, or is this a single address command? */
Denys Vlasenko52d83702011-05-03 00:51:43 +02001011 (sed_cmd->end_line
1012 ? sed_cmd->end_line == -1
1013 ? !next_line
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001014 : (sed_cmd->end_line <= linenum)
1015 : !sed_cmd->end_match
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001016 )
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001017 /* or does this line matches our last address regex */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001018 || (sed_cmd->end_match && old_matched
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001019 && (regexec(sed_cmd->end_match,
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001020 pattern_space, 0, NULL, 0) == 0))
1021 );
Erik Andersene49d5ec2000-02-08 19:58:47 +00001022 }
Erik Andersen1266a131999-12-29 22:19:46 +00001023
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001024 /* Skip blocks of commands we didn't match */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001025 if (sed_cmd->cmd == '{') {
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001026 if (sed_cmd->invert ? matched : !matched) {
Denys Vlasenkof2c16ed2010-04-20 04:00:03 -04001027 unsigned nest_cnt = 0;
1028 while (1) {
1029 if (sed_cmd->cmd == '{')
1030 nest_cnt++;
1031 if (sed_cmd->cmd == '}') {
1032 nest_cnt--;
1033 if (nest_cnt == 0)
1034 break;
1035 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001036 sed_cmd = sed_cmd->next;
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001037 if (!sed_cmd)
1038 bb_error_msg_and_die("unterminated {");
1039 }
1040 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001041 continue;
1042 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001043
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001044 /* Okay, so did this line match? */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001045 if (sed_cmd->invert ? matched : !matched)
1046 continue; /* no */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001047
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001048 /* Update last used regex in case a blank substitute BRE is found */
1049 if (sed_cmd->beg_match) {
1050 G.previous_regex_ptr = sed_cmd->beg_match;
1051 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001052
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001053 /* actual sedding */
Denys Vlasenko0d555fc2010-08-16 16:26:33 +02001054 //bb_error_msg("pattern_space:'%s' next_line:'%s' cmd:%c",
1055 //pattern_space, next_line, sed_cmd->cmd);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001056 switch (sed_cmd->cmd) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001057
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001058 /* Print line number */
1059 case '=':
1060 fprintf(G.nonstdout, "%d\n", linenum);
1061 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001062
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001063 /* Write the current pattern space up to the first newline */
1064 case 'P':
1065 {
1066 char *tmp = strchr(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001067 if (tmp) {
1068 *tmp = '\0';
1069 /* TODO: explain why '\n' below */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001070 sed_puts(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001071 *tmp = '\n';
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001072 break;
1073 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001074 /* Fall Through */
1075 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001076
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001077 /* Write the current pattern space to output */
1078 case 'p':
1079 /* NB: we print this _before_ the last line
1080 * (of current file) is printed. Even if
1081 * that line is nonterminated, we print
1082 * '\n' here (gnu sed does the same) */
1083 sed_puts(pattern_space, '\n');
1084 break;
1085 /* Delete up through first newline */
1086 case 'D':
1087 {
1088 char *tmp = strchr(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001089 if (tmp) {
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001090 overlapping_strcpy(pattern_space, tmp + 1);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001091 goto restart;
1092 }
1093 }
1094 /* discard this line. */
1095 case 'd':
1096 goto discard_line;
1097
1098 /* Substitute with regex */
1099 case 's':
1100 if (!do_subst_command(sed_cmd, &pattern_space))
1101 break;
1102 substituted |= 1;
1103
1104 /* handle p option */
1105 if (sed_cmd->sub_p)
1106 sed_puts(pattern_space, last_gets_char);
1107 /* handle w option */
1108 if (sed_cmd->sw_file)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001109 puts_maybe_newline(
1110 pattern_space, sed_cmd->sw_file,
1111 &sed_cmd->sw_last_char, last_gets_char);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001112 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001113
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001114 /* Append line to linked list to be printed later */
1115 case 'a':
1116 append(sed_cmd->string);
1117 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001118
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001119 /* Insert text before this line */
1120 case 'i':
1121 sed_puts(sed_cmd->string, '\n');
1122 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001123
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001124 /* Cut and paste text (replace) */
1125 case 'c':
1126 /* Only triggers on last line of a matching range. */
1127 if (!sed_cmd->in_match)
Denys Vlasenko96a18332010-04-19 22:36:07 -04001128 sed_puts(sed_cmd->string, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001129 goto discard_line;
1130
1131 /* Read file, append contents to output */
1132 case 'r':
1133 {
1134 FILE *rfile;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001135 rfile = fopen_for_read(sed_cmd->string);
1136 if (rfile) {
1137 char *line;
1138
1139 while ((line = xmalloc_fgetline(rfile))
1140 != NULL)
1141 append(line);
1142 xprint_and_close_file(rfile);
1143 }
1144
1145 break;
1146 }
1147
1148 /* Write pattern space to file. */
1149 case 'w':
1150 puts_maybe_newline(
1151 pattern_space, sed_cmd->sw_file,
1152 &sed_cmd->sw_last_char, last_gets_char);
1153 break;
1154
1155 /* Read next line from input */
1156 case 'n':
1157 if (!G.be_quiet)
1158 sed_puts(pattern_space, last_gets_char);
1159 if (next_line) {
1160 free(pattern_space);
1161 pattern_space = next_line;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001162 last_gets_char = next_gets_char;
1163 next_line = get_next_line(&next_gets_char);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001164 substituted = 0;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001165 linenum++;
1166 break;
1167 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001168 /* fall through */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001169
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001170 /* Quit. End of script, end of input. */
1171 case 'q':
1172 /* Exit the outer while loop */
1173 free(next_line);
1174 next_line = NULL;
1175 goto discard_commands;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001176
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001177 /* Append the next line to the current line */
1178 case 'N':
1179 {
1180 int len;
1181 /* If no next line, jump to end of script and exit. */
Denys Vlasenko0d555fc2010-08-16 16:26:33 +02001182 /* http://www.gnu.org/software/sed/manual/sed.html:
1183 * "Most versions of sed exit without printing anything
1184 * when the N command is issued on the last line of
1185 * a file. GNU sed prints pattern space before exiting
1186 * unless of course the -n command switch has been
1187 * specified. This choice is by design."
1188 */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001189 if (next_line == NULL) {
Denys Vlasenko0d555fc2010-08-16 16:26:33 +02001190 //goto discard_line;
1191 goto discard_commands; /* GNU behavior */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001192 }
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001193 /* Append next_line, read new next_line. */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001194 len = strlen(pattern_space);
Denys Vlasenko90377872010-01-08 09:07:50 +01001195 pattern_space = xrealloc(pattern_space, len + strlen(next_line) + 2);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001196 pattern_space[len] = '\n';
1197 strcpy(pattern_space + len+1, next_line);
1198 last_gets_char = next_gets_char;
1199 next_line = get_next_line(&next_gets_char);
1200 linenum++;
1201 break;
1202 }
1203
1204 /* Test/branch if substitution occurred */
1205 case 't':
1206 if (!substituted) break;
1207 substituted = 0;
1208 /* Fall through */
1209 /* Test/branch if substitution didn't occur */
1210 case 'T':
1211 if (substituted) break;
1212 /* Fall through */
1213 /* Branch to label */
1214 case 'b':
1215 if (!sed_cmd->string) goto discard_commands;
1216 else sed_cmd = branch_to(sed_cmd->string);
1217 break;
1218 /* Transliterate characters */
1219 case 'y':
1220 {
1221 int i, j;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001222 for (i = 0; pattern_space[i]; i++) {
1223 for (j = 0; sed_cmd->string[j]; j += 2) {
1224 if (pattern_space[i] == sed_cmd->string[j]) {
1225 pattern_space[i] = sed_cmd->string[j + 1];
1226 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001227 }
1228 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001229 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001230
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001231 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001232 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001233 case 'g': /* Replace pattern space with hold space */
1234 free(pattern_space);
1235 pattern_space = xstrdup(G.hold_space ? G.hold_space : "");
1236 break;
1237 case 'G': /* Append newline and hold space to pattern space */
1238 {
1239 int pattern_space_size = 2;
1240 int hold_space_size = 0;
1241
1242 if (pattern_space)
1243 pattern_space_size += strlen(pattern_space);
1244 if (G.hold_space)
1245 hold_space_size = strlen(G.hold_space);
1246 pattern_space = xrealloc(pattern_space,
1247 pattern_space_size + hold_space_size);
1248 if (pattern_space_size == 2)
1249 pattern_space[0] = 0;
1250 strcat(pattern_space, "\n");
1251 if (G.hold_space)
1252 strcat(pattern_space, G.hold_space);
1253 last_gets_char = '\n';
1254
1255 break;
1256 }
1257 case 'h': /* Replace hold space with pattern space */
1258 free(G.hold_space);
1259 G.hold_space = xstrdup(pattern_space);
1260 break;
1261 case 'H': /* Append newline and pattern space to hold space */
1262 {
1263 int hold_space_size = 2;
1264 int pattern_space_size = 0;
1265
1266 if (G.hold_space)
1267 hold_space_size += strlen(G.hold_space);
1268 if (pattern_space)
1269 pattern_space_size = strlen(pattern_space);
1270 G.hold_space = xrealloc(G.hold_space,
1271 hold_space_size + pattern_space_size);
1272
1273 if (hold_space_size == 2)
1274 *G.hold_space = 0;
1275 strcat(G.hold_space, "\n");
1276 if (pattern_space)
1277 strcat(G.hold_space, pattern_space);
1278
1279 break;
1280 }
1281 case 'x': /* Exchange hold and pattern space */
1282 {
1283 char *tmp = pattern_space;
Denys Vlasenko90a99042009-09-06 02:36:23 +02001284 pattern_space = G.hold_space ? G.hold_space : xzalloc(1);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001285 last_gets_char = '\n';
1286 G.hold_space = tmp;
1287 break;
1288 }
1289 } /* switch */
1290 } /* for each cmd */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001291
1292 /*
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001293 * Exit point from sedding...
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001294 */
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001295 discard_commands:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001296 /* we will print the line unless we were told to be quiet ('-n')
1297 or if the line was suppressed (ala 'd'elete) */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001298 if (!G.be_quiet)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001299 sed_puts(pattern_space, last_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001300
1301 /* Delete and such jump here. */
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001302 discard_line:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001303 flush_append();
1304 free(pattern_space);
1305
1306 goto again;
Erik Andersen1266a131999-12-29 22:19:46 +00001307}
1308
Glenn L McGrath42c25732003-10-04 05:27:56 +00001309/* It is possible to have a command line argument with embedded
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001310 * newlines. This counts as multiple command lines.
1311 * However, newline can be escaped: 's/e/z\<newline>z/'
1312 * We check for this.
1313 */
Glenn L McGrath42c25732003-10-04 05:27:56 +00001314
1315static void add_cmd_block(char *cmdstr)
1316{
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001317 char *sv, *eol;
Glenn L McGrath42c25732003-10-04 05:27:56 +00001318
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001319 cmdstr = sv = xstrdup(cmdstr);
1320 do {
1321 eol = strchr(cmdstr, '\n');
1322 next:
1323 if (eol) {
1324 /* Count preceding slashes */
1325 int slashes = 0;
1326 char *sl = eol;
1327
1328 while (sl != cmdstr && *--sl == '\\')
1329 slashes++;
1330 /* Odd number of preceding slashes - newline is escaped */
1331 if (slashes & 1) {
Denis Vlasenko0f293b92008-07-22 20:16:55 +00001332 overlapping_strcpy(eol - 1, eol);
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001333 eol = strchr(eol, '\n');
1334 goto next;
1335 }
1336 *eol = '\0';
1337 }
1338 add_cmd(cmdstr);
1339 cmdstr = eol + 1;
1340 } while (eol);
1341 free(sv);
Glenn L McGrath42c25732003-10-04 05:27:56 +00001342}
1343
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001344int sed_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001345int sed_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001346{
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001347 unsigned opt;
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001348 llist_t *opt_e, *opt_f;
1349 int status = EXIT_SUCCESS;
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001350
Denis Vlasenko74324c82007-06-04 10:16:52 +00001351 INIT_G();
Rob Landleye3f5a3f2006-05-09 03:53:55 +00001352
Mark Whitley858c1ad2000-07-11 21:38:47 +00001353 /* destroy command strings on exit */
Rob Landley0b656282006-05-08 22:17:23 +00001354 if (ENABLE_FEATURE_CLEAN_UP) atexit(sed_free_and_close_stuff);
Mark Whitley858c1ad2000-07-11 21:38:47 +00001355
Rob Landleyfae1dc82005-11-20 07:44:35 +00001356 /* Lie to autoconf when it starts asking stupid questions. */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001357 if (argv[1] && !strcmp(argv[1], "--version")) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001358 puts("This is not GNU sed version 4.0");
1359 return 0;
Eric Andersenc06f5682004-02-04 10:57:46 +00001360 }
Eric Andersenc06f5682004-02-04 10:57:46 +00001361
Mark Whitley6315ce62000-07-10 22:55:51 +00001362 /* do normal option parsing */
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001363 opt_e = opt_f = NULL;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001364 opt_complementary = "e::f::" /* can occur multiple times */
1365 "nn"; /* count -n */
Denys Vlasenko2e284a42010-08-01 04:14:46 +02001366 /* -i must be first, to match OPT_in_place definition */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00001367 opt = getopt32(argv, "irne:f:", &opt_e, &opt_f,
Denis Vlasenko17a15262007-03-26 20:48:46 +00001368 &G.be_quiet); /* counter for -n */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001369 //argc -= optind;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001370 argv += optind;
1371 if (opt & OPT_in_place) { // -i
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001372 atexit(cleanup_outname);
1373 }
Denis Vlasenko17a15262007-03-26 20:48:46 +00001374 if (opt & 0x2) G.regex_type |= REG_EXTENDED; // -r
1375 //if (opt & 0x4) G.be_quiet++; // -n
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001376 while (opt_e) { // -e
Denis Vlasenkod50dda82008-06-15 05:40:56 +00001377 add_cmd_block(llist_pop(&opt_e));
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001378 }
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001379 while (opt_f) { // -f
1380 char *line;
1381 FILE *cmdfile;
Denis Vlasenko5415c852008-07-21 23:05:26 +00001382 cmdfile = xfopen_for_read(llist_pop(&opt_f));
Denis Vlasenko8ee649a2008-03-26 20:04:27 +00001383 while ((line = xmalloc_fgetline(cmdfile)) != NULL) {
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001384 add_cmd(line);
1385 free(line);
1386 }
1387 fclose(cmdfile);
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001388 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001389 /* if we didn't get a pattern from -e or -f, use argv[0] */
Denis Vlasenko80778502006-10-25 12:46:46 +00001390 if (!(opt & 0x18)) {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001391 if (!*argv)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001392 bb_show_usage();
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001393 add_cmd_block(*argv++);
Mark Whitley6315ce62000-07-10 22:55:51 +00001394 }
Glenn L McGrath42c25732003-10-04 05:27:56 +00001395 /* Flush any unfinished commands. */
1396 add_cmd("");
Mark Whitley6315ce62000-07-10 22:55:51 +00001397
Rob Landley53302f82004-02-18 09:54:15 +00001398 /* By default, we write to stdout */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001399 G.nonstdout = stdout;
Rob Landley53302f82004-02-18 09:54:15 +00001400
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001401 /* argv[0..(argc-1)] should be names of file to process. If no
Mark Whitley6315ce62000-07-10 22:55:51 +00001402 * files were specified or '-' was specified, take input from stdin.
1403 * Otherwise, we process all the files specified. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001404 if (argv[0] == NULL) {
1405 if (opt & OPT_in_place)
Denis Vlasenko80778502006-10-25 12:46:46 +00001406 bb_error_msg_and_die(bb_msg_requires_arg, "-i");
Rob Landleydcc28662004-11-25 07:21:47 +00001407 add_input_file(stdin);
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001408 } else {
Mark Whitley6315ce62000-07-10 22:55:51 +00001409 int i;
1410 FILE *file;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001411
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001412 for (i = 0; argv[i]; i++) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001413 struct stat statbuf;
1414 int nonstdoutfd;
1415
Denis Vlasenko9f739442006-12-16 23:49:13 +00001416 if (LONE_DASH(argv[i]) && !(opt & OPT_in_place)) {
Rob Landleydcc28662004-11-25 07:21:47 +00001417 add_input_file(stdin);
1418 process_files();
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001419 continue;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +00001420 }
Denis Vlasenkoddec5af2006-10-26 23:25:17 +00001421 file = fopen_or_warn(argv[i], "r");
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001422 if (!file) {
1423 status = EXIT_FAILURE;
1424 continue;
1425 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001426 if (!(opt & OPT_in_place)) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001427 add_input_file(file);
1428 continue;
1429 }
1430
Denis Vlasenko17a15262007-03-26 20:48:46 +00001431 G.outname = xasprintf("%sXXXXXX", argv[i]);
Alexander Shishkin67227372010-10-22 13:27:16 +02001432 nonstdoutfd = xmkstemp(G.outname);
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01001433 G.nonstdout = xfdopen_for_write(nonstdoutfd);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001434
Denys Vlasenko57992482009-11-13 09:09:07 +01001435 /* Set permissions/owner of output file */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001436 fstat(fileno(file), &statbuf);
Denys Vlasenko3b727cc2010-06-18 02:12:56 +02001437 /* chmod'ing AFTER chown would preserve suid/sgid bits,
1438 * but GNU sed 4.2.1 does not preserve them either */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001439 fchmod(nonstdoutfd, statbuf.st_mode);
Denys Vlasenko57992482009-11-13 09:09:07 +01001440 fchown(nonstdoutfd, statbuf.st_uid, statbuf.st_gid);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001441 add_input_file(file);
1442 process_files();
Denis Vlasenko17a15262007-03-26 20:48:46 +00001443 fclose(G.nonstdout);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001444
Denis Vlasenko17a15262007-03-26 20:48:46 +00001445 G.nonstdout = stdout;
Denis Vlasenko80778502006-10-25 12:46:46 +00001446 /* unlink(argv[i]); */
Denis Vlasenkocb448fe2008-02-17 14:28:53 +00001447 xrename(G.outname, argv[i]);
Denis Vlasenko17a15262007-03-26 20:48:46 +00001448 free(G.outname);
Denis Vlasenko40276642007-11-13 16:48:10 +00001449 G.outname = NULL;
Mark Whitley6315ce62000-07-10 22:55:51 +00001450 }
Denys Vlasenkoeb08b6e2010-06-19 17:51:06 +02001451 /* Here, to handle "sed 'cmds' nonexistent_file" case we did:
1452 * if (G.current_input_file >= G.input_file_count)
1453 * return status;
1454 * but it's not needed since process_files() works correctly
1455 * in this case too. */
Mark Whitley6315ce62000-07-10 22:55:51 +00001456 }
Denys Vlasenkoeb08b6e2010-06-19 17:51:06 +02001457 process_files();
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001458
Matt Kraaia5f09c62001-11-12 16:44:55 +00001459 return status;
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001460}