blob: 4e9babb9d02f63dbc46a0d0a4b8059c4d432653f [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 *
Denys Vlasenkoa221bc52011-09-13 18:40:22 +020029 * process_files() does actual sedding, reading data lines from each input FILE*
Denys Vlasenko52d83702011-05-03 00:51:43 +020030 * (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
Denys Vlasenkoa221bc52011-09-13 18:40:22 +020060//usage: "[-inr] [-f FILE]... [-e CMD]... [FILE]...\n"
61//usage: "or: sed [-inr] CMD [FILE]..."
Pere Orga6a3e01d2011-04-01 22:56:30 +020062//usage:#define sed_full_usage "\n\n"
Denys Vlasenko66426762011-06-05 03:58:28 +020063//usage: " -e CMD Add CMD to sed commands to be executed"
Pere Orga6a3e01d2011-04-01 22:56:30 +020064//usage: "\n -f FILE Add FILE contents to sed commands to be executed"
65//usage: "\n -i Edit files in-place (else sends result to stdout)"
66//usage: "\n -n Suppress automatic printing of pattern space"
67//usage: "\n -r Use extended regex syntax"
68//usage: "\n"
69//usage: "\nIf no -e or -f, the first non-option argument is the sed command string."
70//usage: "\nRemaining arguments are input files (stdin if none)."
71//usage:
72//usage:#define sed_example_usage
73//usage: "$ echo \"foo\" | sed -e 's/f[a-zA-Z]o/bar/g'\n"
74//usage: "bar\n"
75
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000076#include "libbb.h"
"Vladimir N. Oleynik"23f62fc2005-09-14 16:59:11 +000077#include "xregex.h"
Mark Whitley6315ce62000-07-10 22:55:51 +000078
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +020079#if 0
80# define dbg(...) bb_error_msg(__VA_ARGS__)
81#else
82# define dbg(...) ((void)0)
83#endif
84
85
Denys Vlasenko2e284a42010-08-01 04:14:46 +020086enum {
87 OPT_in_place = 1 << 0,
88};
89
Rob Landleye3f5a3f2006-05-09 03:53:55 +000090/* Each sed command turns into one of these structures. */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +000091typedef struct sed_cmd_s {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000092 /* Ordered by alignment requirements: currently 36 bytes on x86 */
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +000093 struct sed_cmd_s *next; /* Next command (linked list, NULL terminated) */
Mark Whitley2dc192f2000-11-03 19:47:00 +000094
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000095 /* address storage */
96 regex_t *beg_match; /* sed -e '/match/cmd' */
97 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
98 regex_t *sub_match; /* For 's/sub_match/string/' */
99 int beg_line; /* 'sed 1p' 0 == apply commands to all lines */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200100 int beg_line_orig; /* copy of the above, needed for -i */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000101 int end_line; /* 'sed 1,3p' 0 == one line only. -1 = last line ($) */
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +0000102
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000103 FILE *sw_file; /* File (sw) command writes to, -1 for none. */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000104 char *string; /* Data string for (saicytb) commands. */
Glenn L McGrathfc4cb4d2003-04-12 16:10:42 +0000105
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000106 unsigned which_match; /* (s) Which match to replace (0 for all) */
Glenn L McGrathfc4cb4d2003-04-12 16:10:42 +0000107
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000108 /* Bitfields (gcc won't group them if we don't) */
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +0000109 unsigned invert:1; /* the '!' after the address */
110 unsigned in_match:1; /* Next line also included in match? */
111 unsigned sub_p:1; /* (s) print option */
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000112
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +0000113 char sw_last_char; /* Last line written by (sw) had no '\n' */
Glenn L McGrathc18ce372003-09-13 06:57:39 +0000114
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000115 /* GENERAL FIELDS */
116 char cmd; /* The command char: abcdDgGhHilnNpPqrstwxy:={} */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000117} sed_cmd_t;
Mark Whitley6315ce62000-07-10 22:55:51 +0000118
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000119static const char semicolon_whitespace[] ALIGN1 = "; \n\r\t\v";
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000120
Denis Vlasenko17a15262007-03-26 20:48:46 +0000121struct globals {
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000122 /* options */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000123 int be_quiet, regex_type;
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000124 FILE *nonstdout;
125 char *outname, *hold_space;
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000126
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000127 /* List of input files */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000128 int input_file_count, current_input_file;
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000129 FILE **input_file_list;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000130
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000131 regmatch_t regmatch[10];
132 regex_t *previous_regex_ptr;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000133
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000134 /* linked list of sed commands */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200135 sed_cmd_t *sed_cmd_head, **sed_cmd_tail;
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000136
137 /* Linked list of append lines */
138 llist_t *append_head;
139
140 char *add_cmd_line;
141
142 struct pipeline {
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200143 char *buf; /* Space to hold string */
144 int idx; /* Space used */
145 int len; /* Space allocated */
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000146 } pipeline;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100147} FIX_ALIASING;
Denis Vlasenko17a15262007-03-26 20:48:46 +0000148#define G (*(struct globals*)&bb_common_bufsiz1)
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200149struct BUG_G_too_big {
Denys Vlasenkob7c9fb22011-02-03 00:05:48 +0100150 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200151};
Denis Vlasenko74324c82007-06-04 10:16:52 +0000152#define INIT_G() do { \
Denis Vlasenko74324c82007-06-04 10:16:52 +0000153 G.sed_cmd_tail = &G.sed_cmd_head; \
154} while (0)
155
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000156
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +0000157#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000158static void sed_free_and_close_stuff(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000159{
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200160 sed_cmd_t *sed_cmd = G.sed_cmd_head;
Mark Whitley6315ce62000-07-10 22:55:51 +0000161
Denis Vlasenko17a15262007-03-26 20:48:46 +0000162 llist_free(G.append_head, free);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000163
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000164 while (sed_cmd) {
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000165 sed_cmd_t *sed_cmd_next = sed_cmd->next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000166
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000167 if (sed_cmd->sw_file)
168 xprint_and_close_file(sed_cmd->sw_file);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000169
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000170 if (sed_cmd->beg_match) {
171 regfree(sed_cmd->beg_match);
172 free(sed_cmd->beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000173 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000174 if (sed_cmd->end_match) {
175 regfree(sed_cmd->end_match);
176 free(sed_cmd->end_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000177 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000178 if (sed_cmd->sub_match) {
179 regfree(sed_cmd->sub_match);
180 free(sed_cmd->sub_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000181 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000182 free(sed_cmd->string);
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000183 free(sed_cmd);
184 sed_cmd = sed_cmd_next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000185 }
Rob Landleyce4f0e92004-10-30 06:54:19 +0000186
Denis Vlasenko60818682007-09-28 22:07:23 +0000187 free(G.hold_space);
Rob Landleydcc28662004-11-25 07:21:47 +0000188
Denis Vlasenko17a15262007-03-26 20:48:46 +0000189 while (G.current_input_file < G.input_file_count)
190 fclose(G.input_file_list[G.current_input_file++]);
Mark Whitley6315ce62000-07-10 22:55:51 +0000191}
Denis Vlasenko666da5e2006-12-26 18:17:42 +0000192#else
193void sed_free_and_close_stuff(void);
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000194#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000195
Rob Landley53302f82004-02-18 09:54:15 +0000196/* If something bad happens during -i operation, delete temp file */
197
198static void cleanup_outname(void)
199{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000200 if (G.outname) unlink(G.outname);
Rob Landley53302f82004-02-18 09:54:15 +0000201}
202
Denis Vlasenko40276642007-11-13 16:48:10 +0000203/* strcpy, replacing "\from" with 'to'. If to is NUL, replacing "\any" with 'any' */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000204
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000205static void parse_escapes(char *dest, const char *string, int len, char from, char to)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000206{
Denis Vlasenko80778502006-10-25 12:46:46 +0000207 int i = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000208
Denis Vlasenko80778502006-10-25 12:46:46 +0000209 while (i < len) {
210 if (string[i] == '\\') {
211 if (!to || string[i+1] == from) {
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000212 *dest++ = to ? to : string[i+1];
Denis Vlasenko80778502006-10-25 12:46:46 +0000213 i += 2;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000214 continue;
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000215 }
216 *dest++ = string[i++];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000217 }
Denis Vlasenko40276642007-11-13 16:48:10 +0000218 /* TODO: is it safe wrt a string with trailing '\\' ? */
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000219 *dest++ = string[i++];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000220 }
Denis Vlasenko40276642007-11-13 16:48:10 +0000221 *dest = '\0';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000222}
223
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000224static char *copy_parsing_escapes(const char *string, int len)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000225{
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200226 const char *s;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000227 char *dest = xmalloc(len + 1);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000228
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200229 /* sed recognizes \n */
Denys Vlasenko6a0abcc2011-05-03 00:52:22 +0200230 /* GNU sed also recognizes \t and \r */
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200231 for (s = "\nn\tt\rr"; *s; s += 2) {
232 parse_escapes(dest, string, len, s[1], s[0]);
233 string = dest;
234 len = strlen(dest);
235 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000236 return dest;
237}
238
239
Mark Whitley6315ce62000-07-10 22:55:51 +0000240/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000241 * index_of_next_unescaped_regexp_delim - walks left to right through a string
242 * beginning at a specified index and returns the index of the next regular
Denis Vlasenko40276642007-11-13 16:48:10 +0000243 * expression delimiter (typically a forward slash ('/')) not preceded by
Rob Landley4795e4e2006-07-26 17:25:08 +0000244 * a backslash ('\'). A negative delimiter disables square bracket checking.
Mark Whitley6315ce62000-07-10 22:55:51 +0000245 */
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000246static int index_of_next_unescaped_regexp_delim(int delimiter, const char *str)
Mark Whitley6315ce62000-07-10 22:55:51 +0000247{
Matt Kraaia0065d52001-08-24 14:45:50 +0000248 int bracket = -1;
249 int escaped = 0;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000250 int idx = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000251 char ch;
Matt Kraaia0065d52001-08-24 14:45:50 +0000252
Rob Landley4795e4e2006-07-26 17:25:08 +0000253 if (delimiter < 0) {
254 bracket--;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000255 delimiter = -delimiter;
Rob Landley4795e4e2006-07-26 17:25:08 +0000256 }
257
Denys Vlasenko52d83702011-05-03 00:51:43 +0200258 for (; (ch = str[idx]) != '\0'; idx++) {
Rob Landley4795e4e2006-07-26 17:25:08 +0000259 if (bracket >= 0) {
Denys Vlasenko52d83702011-05-03 00:51:43 +0200260 if (ch == ']'
261 && !(bracket == idx - 1 || (bracket == idx - 2 && str[idx - 1] == '^'))
262 ) {
Matt Kraaia0065d52001-08-24 14:45:50 +0000263 bracket = -1;
Denys Vlasenko52d83702011-05-03 00:51:43 +0200264 }
Matt Kraaia0065d52001-08-24 14:45:50 +0000265 } else if (escaped)
266 escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000267 else if (ch == '\\')
Matt Kraaia0065d52001-08-24 14:45:50 +0000268 escaped = 1;
Rob Landley4795e4e2006-07-26 17:25:08 +0000269 else if (bracket == -1 && ch == '[')
Matt Kraaia0065d52001-08-24 14:45:50 +0000270 bracket = idx;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000271 else if (ch == delimiter)
Mark Whitley97562bd2000-07-17 20:06:42 +0000272 return idx;
273 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000274
Mark Whitley97562bd2000-07-17 20:06:42 +0000275 /* if we make it to here, we've hit the end of the string */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000276 bb_error_msg_and_die("unmatched '%c'", delimiter);
Mark Whitley6315ce62000-07-10 22:55:51 +0000277}
278
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000279/*
280 * Returns the index of the third delimiter
281 */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000282static int parse_regex_delim(const char *cmdstr, char **match, char **replace)
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000283{
Denis Vlasenko9356b502007-01-29 23:44:38 +0000284 const char *cmdstr_ptr = cmdstr;
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100285 unsigned char delimiter;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000286 int idx = 0;
287
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000288 /* verify that the 's' or 'y' is followed by something. That something
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000289 * (typically a 'slash') is now our regexp delimiter... */
Rob Landley4795e4e2006-07-26 17:25:08 +0000290 if (*cmdstr == '\0')
291 bb_error_msg_and_die("bad format in substitution expression");
Denis Vlasenko80778502006-10-25 12:46:46 +0000292 delimiter = *cmdstr_ptr++;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000293
294 /* save the match string */
295 idx = index_of_next_unescaped_regexp_delim(delimiter, cmdstr_ptr);
Rob Landleyfae1dc82005-11-20 07:44:35 +0000296 *match = copy_parsing_escapes(cmdstr_ptr, idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000297
298 /* save the replacement string */
299 cmdstr_ptr += idx + 1;
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100300 idx = index_of_next_unescaped_regexp_delim(- (int)delimiter, cmdstr_ptr);
Rob Landleyfae1dc82005-11-20 07:44:35 +0000301 *replace = copy_parsing_escapes(cmdstr_ptr, idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000302
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000303 return ((cmdstr_ptr - cmdstr) + idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000304}
305
Mark Whitley6315ce62000-07-10 22:55:51 +0000306/*
307 * returns the index in the string just past where the address ends.
308 */
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000309static int get_address(const char *my_str, int *linenum, regex_t ** regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000310{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000311 const char *pos = my_str;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000312
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000313 if (isdigit(*my_str)) {
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000314 *linenum = strtol(my_str, (char**)&pos, 10);
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000315 /* endstr shouldnt ever equal NULL */
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000316 } else if (*my_str == '$') {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000317 *linenum = -1;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000318 pos++;
319 } else if (*my_str == '/' || *my_str == '\\') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000320 int next;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000321 char delimiter;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000322 char *temp;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000323
Denis Vlasenko80778502006-10-25 12:46:46 +0000324 delimiter = '/';
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100325 if (*my_str == '\\')
326 delimiter = *++pos;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000327 next = index_of_next_unescaped_regexp_delim(delimiter, ++pos);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000328 temp = copy_parsing_escapes(pos, next);
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100329 *regex = xzalloc(sizeof(regex_t));
Denis Vlasenko17a15262007-03-26 20:48:46 +0000330 xregcomp(*regex, temp, G.regex_type|REG_NEWLINE);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000331 free(temp);
332 /* Move position to next character after last delimiter */
Rob Landley4795e4e2006-07-26 17:25:08 +0000333 pos += (next+1);
Mark Whitley6315ce62000-07-10 22:55:51 +0000334 }
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000335 return pos - my_str;
Mark Whitley6315ce62000-07-10 22:55:51 +0000336}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000337
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000338/* Grab a filename. Whitespace at start is skipped, then goes to EOL. */
Denis Vlasenko68404f12008-03-17 09:00:54 +0000339static int parse_file_cmd(/*sed_cmd_t *sed_cmd,*/ const char *filecmdstr, char **retval)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000340{
Denis Vlasenko80778502006-10-25 12:46:46 +0000341 int start = 0, idx, hack = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000342
343 /* Skip whitespace, then grab filename to end of line */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000344 while (isspace(filecmdstr[start]))
345 start++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000346 idx = start;
Denis Vlasenko9356b502007-01-29 23:44:38 +0000347 while (filecmdstr[idx] && filecmdstr[idx] != '\n')
348 idx++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000349
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000350 /* If lines glued together, put backslash back. */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000351 if (filecmdstr[idx] == '\n')
352 hack = 1;
Denis Vlasenko80778502006-10-25 12:46:46 +0000353 if (idx == start)
354 bb_error_msg_and_die("empty filename");
Rob Landleyd921b2e2006-08-03 15:41:12 +0000355 *retval = xstrndup(filecmdstr+start, idx-start+hack+1);
Denis Vlasenko9356b502007-01-29 23:44:38 +0000356 if (hack)
357 (*retval)[idx] = '\\';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000358
359 return idx;
360}
361
Denis Vlasenko9356b502007-01-29 23:44:38 +0000362static int parse_subst_cmd(sed_cmd_t *sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000363{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000364 int cflags = G.regex_type;
Mark Whitley06f35292000-07-13 19:58:04 +0000365 char *match;
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000366 int idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000367
368 /*
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000369 * A substitution command should look something like this:
370 * s/match/replace/ #gIpw
Mark Whitley0e4cec02000-08-21 21:29:20 +0000371 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000372 * mandatory optional
Mark Whitley06f35292000-07-13 19:58:04 +0000373 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000374 idx = parse_regex_delim(substr, &match, &sed_cmd->string);
Mark Whitley06f35292000-07-13 19:58:04 +0000375
Mark Whitley97562bd2000-07-17 20:06:42 +0000376 /* determine the number of back references in the match string */
377 /* Note: we compute this here rather than in the do_subst_command()
378 * function to save processor time, at the expense of a little more memory
379 * (4 bits) per sed_cmd */
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000380
Mark Whitley06f35292000-07-13 19:58:04 +0000381 /* process the flags */
Mark Whitley70705d72000-07-14 19:06:30 +0000382
Denis Vlasenko80778502006-10-25 12:46:46 +0000383 sed_cmd->which_match = 1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000384 while (substr[++idx]) {
385 /* Parse match number */
Denis Vlasenko80778502006-10-25 12:46:46 +0000386 if (isdigit(substr[idx])) {
387 if (match[0] != '^') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000388 /* Match 0 treated as all, multiple matches we take the last one. */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000389 const char *pos = substr + idx;
390/* FIXME: error check? */
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000391 sed_cmd->which_match = (unsigned)strtol(substr+idx, (char**) &pos, 10);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000392 idx = pos - substr;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000393 }
394 continue;
395 }
Rob Landley40ec4ae2004-01-04 06:42:14 +0000396 /* Skip spaces */
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200397 if (isspace(substr[idx]))
398 continue;
Rob Landley40ec4ae2004-01-04 06:42:14 +0000399
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000400 switch (substr[idx]) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000401 /* Replace all occurrences */
402 case 'g':
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000403 if (match[0] != '^')
404 sed_cmd->which_match = 0;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000405 break;
406 /* Print pattern space */
407 case 'p':
408 sed_cmd->sub_p = 1;
409 break;
410 /* Write to file */
411 case 'w':
412 {
413 char *temp;
Denis Vlasenko68404f12008-03-17 09:00:54 +0000414 idx += parse_file_cmd(/*sed_cmd,*/ substr+idx, &temp);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000415 break;
416 }
417 /* Ignore case (gnu exension) */
418 case 'I':
419 cflags |= REG_ICASE;
420 break;
421 /* Comment */
422 case '#':
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200423 // while (substr[++idx]) continue;
424 idx += strlen(substr + idx); // same
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000425 /* Fall through */
426 /* End of command */
427 case ';':
428 case '}':
429 goto out;
430 default:
431 bb_error_msg_and_die("bad option in substitution expression");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000432 }
433 }
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200434 out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000435 /* compile the match string into a regex */
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000436 if (*match != '\0') {
437 /* If match is empty, we use last regex used at runtime */
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100438 sed_cmd->sub_match = xzalloc(sizeof(regex_t));
439 dbg("xregcomp('%s',%x)", match, cflags);
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000440 xregcomp(sed_cmd->sub_match, match, cflags);
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100441 dbg("regcomp ok");
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000442 }
Mark Whitley06f35292000-07-13 19:58:04 +0000443 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000444
445 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000446}
447
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000448/*
449 * Process the commands arguments
450 */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000451static const char *parse_cmd_args(sed_cmd_t *sed_cmd, const char *cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000452{
Denys Vlasenko52d83702011-05-03 00:51:43 +0200453 static const char cmd_letters[] = "saicrw:btTydDgGhHlnNpPqx={}";
454 enum {
455 IDX_s = 0,
456 IDX_a,
457 IDX_i,
458 IDX_c,
459 IDX_r,
460 IDX_w,
461 IDX_colon,
462 IDX_b,
463 IDX_t,
464 IDX_T,
465 IDX_y,
466 IDX_d,
467 IDX_D,
468 IDX_g,
469 IDX_G,
470 IDX_h,
471 IDX_H,
472 IDX_l,
473 IDX_n,
474 IDX_N,
475 IDX_p,
476 IDX_P,
477 IDX_q,
478 IDX_x,
479 IDX_equal,
480 IDX_lbrace,
481 IDX_rbrace,
482 IDX_nul
483 };
484 struct chk { char chk[sizeof(cmd_letters)-1 == IDX_nul ? 1 : -1]; };
485
486 unsigned idx = strchrnul(cmd_letters, sed_cmd->cmd) - cmd_letters;
487
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000488 /* handle (s)ubstitution command */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200489 if (idx == IDX_s) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000490 cmdstr += parse_subst_cmd(sed_cmd, cmdstr);
Denys Vlasenko52d83702011-05-03 00:51:43 +0200491 }
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000492 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200493 else if (idx <= IDX_c) { /* a,i,c */
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000494 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c')
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200495 bb_error_msg_and_die("only a beginning address can be specified for edit commands");
Denis Vlasenko80778502006-10-25 12:46:46 +0000496 for (;;) {
497 if (*cmdstr == '\n' || *cmdstr == '\\') {
Rob Landley25d82392004-04-01 09:23:30 +0000498 cmdstr++;
499 break;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +0200500 }
501 if (!isspace(*cmdstr))
Denis Vlasenko80778502006-10-25 12:46:46 +0000502 break;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +0200503 cmdstr++;
Rob Landley25d82392004-04-01 09:23:30 +0000504 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000505 sed_cmd->string = xstrdup(cmdstr);
Denis Vlasenko40276642007-11-13 16:48:10 +0000506 /* "\anychar" -> "anychar" */
507 parse_escapes(sed_cmd->string, sed_cmd->string, strlen(cmdstr), '\0', '\0');
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000508 cmdstr += strlen(cmdstr);
Denys Vlasenko52d83702011-05-03 00:51:43 +0200509 }
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000510 /* handle file cmds: (r)ead */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200511 else if (idx <= IDX_w) { /* r,w */
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000512 if (sed_cmd->end_line || sed_cmd->end_match)
Denis Vlasenko80778502006-10-25 12:46:46 +0000513 bb_error_msg_and_die("command only uses one address");
Denis Vlasenko68404f12008-03-17 09:00:54 +0000514 cmdstr += parse_file_cmd(/*sed_cmd,*/ cmdstr, &sed_cmd->string);
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000515 if (sed_cmd->cmd == 'w') {
Denis Vlasenko5415c852008-07-21 23:05:26 +0000516 sed_cmd->sw_file = xfopen_for_write(sed_cmd->string);
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000517 sed_cmd->sw_last_char = '\n';
518 }
Denys Vlasenko52d83702011-05-03 00:51:43 +0200519 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000520 /* handle branch commands */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200521 else if (idx <= IDX_T) { /* :,b,t,T */
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000522 int length;
523
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000524 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000525 length = strcspn(cmdstr, semicolon_whitespace);
526 if (length) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000527 sed_cmd->string = xstrndup(cmdstr, length);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000528 cmdstr += length;
529 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000530 }
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000531 /* translation command */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200532 else if (idx == IDX_y) {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000533 char *match, *replace;
Denis Vlasenko80778502006-10-25 12:46:46 +0000534 int i = cmdstr[0];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000535
Denis Vlasenko80778502006-10-25 12:46:46 +0000536 cmdstr += parse_regex_delim(cmdstr, &match, &replace)+1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000537 /* \n already parsed, but \delimiter needs unescaping. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000538 parse_escapes(match, match, strlen(match), i, i);
539 parse_escapes(replace, replace, strlen(replace), i, i);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000540
Rob Landley9ffd4232006-05-21 18:30:35 +0000541 sed_cmd->string = xzalloc((strlen(match) + 1) * 2);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000542 for (i = 0; match[i] && replace[i]; i++) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000543 sed_cmd->string[i*2] = match[i];
544 sed_cmd->string[i*2+1] = replace[i];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000545 }
546 free(match);
547 free(replace);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000548 }
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000549 /* if it wasnt a single-letter command that takes no arguments
550 * then it must be an invalid command.
551 */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200552 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 +0000553 bb_error_msg_and_die("unsupported command %c", sed_cmd->cmd);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000554 }
Mark Whitley70705d72000-07-14 19:06:30 +0000555
556 /* give back whatever's left over */
Denis Vlasenko80778502006-10-25 12:46:46 +0000557 return cmdstr;
Eric Andersen50d63601999-11-09 01:47:36 +0000558}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000559
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000560
561/* Parse address+command sets, skipping comment lines. */
562
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000563static void add_cmd(const char *cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000564{
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000565 sed_cmd_t *sed_cmd;
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200566 unsigned len, n;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000567
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000568 /* Append this line to any unfinished line from last time. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000569 if (G.add_cmd_line) {
570 char *tp = xasprintf("%s\n%s", G.add_cmd_line, cmdstr);
571 free(G.add_cmd_line);
Denis Vlasenko945bd3d2007-04-12 21:20:25 +0000572 cmdstr = G.add_cmd_line = tp;
Rob Landley12d87552006-06-05 17:32:44 +0000573 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000574
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200575 /* If this line ends with unescaped backslash, request next line. */
576 n = len = strlen(cmdstr);
577 while (n && cmdstr[n-1] == '\\')
578 n--;
579 if ((len - n) & 1) { /* if odd number of trailing backslashes */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000580 if (!G.add_cmd_line)
581 G.add_cmd_line = xstrdup(cmdstr);
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200582 G.add_cmd_line[len-1] = '\0';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000583 return;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000584 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000585
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000586 /* Loop parsing all commands in this line. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000587 while (*cmdstr) {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000588 /* Skip leading whitespace and semicolons */
589 cmdstr += strspn(cmdstr, semicolon_whitespace);
590
591 /* If no more commands, exit. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000592 if (!*cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000593
594 /* if this is a comment, jump past it and keep going */
595 if (*cmdstr == '#') {
596 /* "#n" is the same as using -n on the command line */
Denis Vlasenko80778502006-10-25 12:46:46 +0000597 if (cmdstr[1] == 'n')
Denis Vlasenko17a15262007-03-26 20:48:46 +0000598 G.be_quiet++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000599 cmdstr = strpbrk(cmdstr, "\n\r");
600 if (!cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000601 continue;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000602 }
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000603
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000604 /* parse the command
605 * format is: [addr][,addr][!]cmd
606 * |----||-----||-|
607 * part1 part2 part3
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000608 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000609
Rob Landley9ffd4232006-05-21 18:30:35 +0000610 sed_cmd = xzalloc(sizeof(sed_cmd_t));
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000611
612 /* first part (if present) is an address: either a '$', a number or a /regex/ */
613 cmdstr += get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200614 sed_cmd->beg_line_orig = sed_cmd->beg_line;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000615
616 /* second part (if present) will begin with a comma */
617 if (*cmdstr == ',') {
618 int idx;
619
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000620 cmdstr++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000621 idx = get_address(cmdstr, &sed_cmd->end_line, &sed_cmd->end_match);
Denis Vlasenko80778502006-10-25 12:46:46 +0000622 if (!idx)
623 bb_error_msg_and_die("no address after comma");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000624 cmdstr += idx;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000625 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000626
627 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000628 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000629
630 /* Check for inversion flag */
631 if (*cmdstr == '!') {
632 sed_cmd->invert = 1;
633 cmdstr++;
634
635 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000636 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000637 }
638
639 /* last part (mandatory) will be a command */
Denis Vlasenko80778502006-10-25 12:46:46 +0000640 if (!*cmdstr)
641 bb_error_msg_and_die("missing command");
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200642 sed_cmd->cmd = *cmdstr++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000643 cmdstr = parse_cmd_args(sed_cmd, cmdstr);
644
645 /* Add the command to the command array */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200646 *G.sed_cmd_tail = sed_cmd;
647 G.sed_cmd_tail = &sed_cmd->next;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000648 }
649
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000650 /* If we glued multiple lines together, free the memory. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000651 free(G.add_cmd_line);
652 G.add_cmd_line = NULL;
Mark Whitley6315ce62000-07-10 22:55:51 +0000653}
654
Rob Landleydcc28662004-11-25 07:21:47 +0000655/* Append to a string, reallocating memory as necessary. */
656
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000657#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000658
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000659static void pipe_putc(char c)
Eric Andersenc52a6b02001-11-10 10:49:42 +0000660{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000661 if (G.pipeline.idx == G.pipeline.len) {
662 G.pipeline.buf = xrealloc(G.pipeline.buf,
663 G.pipeline.len + PIPE_GROW);
664 G.pipeline.len += PIPE_GROW;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000665 }
Denis Vlasenko17a15262007-03-26 20:48:46 +0000666 G.pipeline.buf[G.pipeline.idx++] = c;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000667}
668
Rob Landley4795e4e2006-07-26 17:25:08 +0000669static void do_subst_w_backrefs(char *line, char *replace)
Mark Whitley97562bd2000-07-17 20:06:42 +0000670{
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200671 int i, j;
Mark Whitley97562bd2000-07-17 20:06:42 +0000672
673 /* go through the replacement string */
674 for (i = 0; replace[i]; i++) {
675 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000676 if (replace[i] == '\\') {
677 unsigned backref = replace[++i] - '0';
678 if (backref <= 9) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000679 /* print out the text held in G.regmatch[backref] */
680 if (G.regmatch[backref].rm_so != -1) {
681 j = G.regmatch[backref].rm_so;
682 while (j < G.regmatch[backref].rm_eo)
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000683 pipe_putc(line[j++]);
684 }
685 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000686 }
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000687 /* I _think_ it is impossible to get '\' to be
688 * the last char in replace string. Thus we dont check
689 * for replace[i] == NUL. (counterexample anyone?) */
690 /* if we find a backslash escaped character, print the character */
691 pipe_putc(replace[i]);
692 continue;
Mark Whitley97562bd2000-07-17 20:06:42 +0000693 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000694 /* if we find an unescaped '&' print out the whole matched text. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000695 if (replace[i] == '&') {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000696 j = G.regmatch[0].rm_so;
697 while (j < G.regmatch[0].rm_eo)
Denis Vlasenko80778502006-10-25 12:46:46 +0000698 pipe_putc(line[j++]);
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000699 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000700 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000701 /* Otherwise just output the character. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000702 pipe_putc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000703 }
704}
705
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200706static int do_subst_command(sed_cmd_t *sed_cmd, char **line_p)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000707{
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200708 char *line = *line_p;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000709 int altered = 0;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000710 unsigned match_count = 0;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000711 regex_t *current_regex;
712
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200713 current_regex = sed_cmd->sub_match;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000714 /* Handle empty regex. */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200715 if (!current_regex) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000716 current_regex = G.previous_regex_ptr;
Denis Vlasenko80778502006-10-25 12:46:46 +0000717 if (!current_regex)
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000718 bb_error_msg_and_die("no previous regexp");
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200719 }
720 G.previous_regex_ptr = current_regex;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000721
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000722 /* Find the first match */
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100723 dbg("matching '%s'", line);
724 if (REG_NOMATCH == regexec(current_regex, line, 10, G.regmatch, 0)) {
725 dbg("no match");
Mark Whitley2dc192f2000-11-03 19:47:00 +0000726 return 0;
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100727 }
728 dbg("match");
Mark Whitley2dc192f2000-11-03 19:47:00 +0000729
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000730 /* Initialize temporary output buffer. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000731 G.pipeline.buf = xmalloc(PIPE_GROW);
732 G.pipeline.len = PIPE_GROW;
733 G.pipeline.idx = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000734
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000735 /* Now loop through, substituting for matches */
736 do {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000737 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000738
Eric Andersenc06f5682004-02-04 10:57:46 +0000739 /* Work around bug in glibc regexec, demonstrated by:
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100740 * echo " a.b" | busybox sed 's [^ .]* x g'
741 * The match_count check is so not to break
742 * echo "hi" | busybox sed 's/^/!/g'
743 */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000744 if (!G.regmatch[0].rm_so && !G.regmatch[0].rm_eo && match_count) {
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200745 pipe_putc(*line++);
Eric Andersenc06f5682004-02-04 10:57:46 +0000746 continue;
747 }
748
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000749 match_count++;
750
751 /* If we aren't interested in this match, output old line to
752 end of match and continue */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000753 if (sed_cmd->which_match
754 && (sed_cmd->which_match != match_count)
755 ) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000756 for (i = 0; i < G.regmatch[0].rm_eo; i++)
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200757 pipe_putc(*line++);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000758 continue;
759 }
760
Mark Whitley2dc192f2000-11-03 19:47:00 +0000761 /* print everything before the match */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000762 for (i = 0; i < G.regmatch[0].rm_so; i++)
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200763 pipe_putc(line[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000764
Mark Whitley2dc192f2000-11-03 19:47:00 +0000765 /* then print the substitution string */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200766 do_subst_w_backrefs(line, sed_cmd->string);
Mark Whitley97562bd2000-07-17 20:06:42 +0000767
Mark Whitley2dc192f2000-11-03 19:47:00 +0000768 /* advance past the match */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200769 line += G.regmatch[0].rm_eo;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000770 /* flag that something has changed */
771 altered++;
Mark Whitley97562bd2000-07-17 20:06:42 +0000772
Mark Whitley2dc192f2000-11-03 19:47:00 +0000773 /* if we're not doing this globally, get out now */
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100774 if (sed_cmd->which_match != 0)
775 break;
776
777 if (*line == '\0')
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000778 break;
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200779
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200780//maybe (G.regmatch[0].rm_eo ? REG_NOTBOL : 0) instead of unconditional REG_NOTBOL?
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100781 } while (regexec(current_regex, line, 10, G.regmatch, REG_NOTBOL) != REG_NOMATCH);
Mark Whitley2dc192f2000-11-03 19:47:00 +0000782
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000783 /* Copy rest of string into output pipeline */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200784 while (1) {
785 char c = *line++;
786 pipe_putc(c);
787 if (c == '\0')
788 break;
789 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000790
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200791 free(*line_p);
792 *line_p = G.pipeline.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000793 return altered;
794}
Mark Whitley6315ce62000-07-10 22:55:51 +0000795
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000796/* Set command pointer to point to this label. (Does not handle null label.) */
Rob Landley4795e4e2006-07-26 17:25:08 +0000797static sed_cmd_t *branch_to(char *label)
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000798{
799 sed_cmd_t *sed_cmd;
Glenn L McGrathd4185b02003-04-11 17:10:23 +0000800
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200801 for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000802 if (sed_cmd->cmd == ':' && sed_cmd->string && !strcmp(sed_cmd->string, label)) {
803 return sed_cmd;
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000804 }
805 }
Denis Vlasenko80778502006-10-25 12:46:46 +0000806 bb_error_msg_and_die("can't find label for jump to '%s'", label);
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000807}
Mark Whitley6315ce62000-07-10 22:55:51 +0000808
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000809static void append(char *s)
810{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000811 llist_add_to_end(&G.append_head, xstrdup(s));
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000812}
813
814static void flush_append(void)
815{
Rob Landley0b656282006-05-08 22:17:23 +0000816 char *data;
817
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000818 /* Output appended lines. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000819 while ((data = (char *)llist_pop(&G.append_head))) {
820 fprintf(G.nonstdout, "%s\n", data);
Rob Landley0b656282006-05-08 22:17:23 +0000821 free(data);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000822 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000823}
824
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000825static void add_input_file(FILE *file)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000826{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000827 G.input_file_list = xrealloc_vector(G.input_file_list, 2, G.input_file_count);
Denis Vlasenko17a15262007-03-26 20:48:46 +0000828 G.input_file_list[G.input_file_count++] = file;
Rob Landleydcc28662004-11-25 07:21:47 +0000829}
830
Denis Vlasenko17a15262007-03-26 20:48:46 +0000831/* Get next line of input from G.input_file_list, flushing append buffer and
Rob Landleydcc28662004-11-25 07:21:47 +0000832 * noting if we ran out of files without a newline on the last line we read.
833 */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000834enum {
835 NO_EOL_CHAR = 1,
Denis Vlasenko86811802007-01-29 17:10:19 +0000836 LAST_IS_NUL = 2,
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000837};
838static char *get_next_line(char *gets_char)
Rob Landleydcc28662004-11-25 07:21:47 +0000839{
Denis Vlasenko80778502006-10-25 12:46:46 +0000840 char *temp = NULL;
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000841 int len;
842 char gc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000843
844 flush_append();
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000845
846 /* will be returned if last line in the file
847 * doesn't end with either '\n' or '\0' */
848 gc = NO_EOL_CHAR;
Denis Vlasenko17a15262007-03-26 20:48:46 +0000849 while (G.current_input_file < G.input_file_count) {
850 FILE *fp = G.input_file_list[G.current_input_file];
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000851 /* Read line up to a newline or NUL byte, inclusive,
852 * return malloc'ed char[]. length of the chunk read
853 * is stored in len. NULL if EOF/error */
Denis Vlasenko86811802007-01-29 17:10:19 +0000854 temp = bb_get_chunk_from_file(fp, &len);
Rob Landley2b26fd52006-02-24 02:30:39 +0000855 if (temp) {
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000856 /* len > 0 here, it's ok to do temp[len-1] */
857 char c = temp[len-1];
858 if (c == '\n' || c == '\0') {
859 temp[len-1] = '\0';
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000860 gc = c;
Denis Vlasenko86811802007-01-29 17:10:19 +0000861 if (c == '\0') {
862 int ch = fgetc(fp);
863 if (ch != EOF)
864 ungetc(ch, fp);
865 else
866 gc = LAST_IS_NUL;
867 }
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000868 }
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000869 /* else we put NO_EOL_CHAR into *gets_char */
870 break;
871
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000872 /* NB: I had the idea of peeking next file(s) and returning
873 * NO_EOL_CHAR only if it is the *last* non-empty
874 * input file. But there is a case where this won't work:
875 * file1: "a woo\nb woo"
876 * file2: "c no\nd no"
877 * sed -ne 's/woo/bang/p' input1 input2 => "a bang\nb bang"
878 * (note: *no* newline after "b bang"!) */
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000879 }
880 /* Close this file and advance to next one */
Denis Vlasenko86811802007-01-29 17:10:19 +0000881 fclose(fp);
Denis Vlasenko17a15262007-03-26 20:48:46 +0000882 G.current_input_file++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000883 }
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000884 *gets_char = gc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000885 return temp;
886}
887
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000888/* Output line of text. */
889/* Note:
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000890 * The tricks with NO_EOL_CHAR and last_puts_char are there to emulate gnu sed.
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000891 * Without them, we had this:
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000892 * echo -n thingy >z1
893 * echo -n again >z2
894 * >znull
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000895 * sed "s/i/z/" z1 z2 znull | hexdump -vC
896 * output:
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000897 * gnu sed 4.1.5:
898 * 00000000 74 68 7a 6e 67 79 0a 61 67 61 7a 6e |thzngy.agazn|
899 * bbox:
900 * 00000000 74 68 7a 6e 67 79 61 67 61 7a 6e |thzngyagazn|
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000901 */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000902static void puts_maybe_newline(char *s, FILE *file, char *last_puts_char, char last_gets_char)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000903{
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000904 char lpc = *last_puts_char;
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000905
Denis Vlasenko86811802007-01-29 17:10:19 +0000906 /* Need to insert a '\n' between two files because first file's
907 * last line wasn't terminated? */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000908 if (lpc != '\n' && lpc != '\0') {
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000909 fputc('\n', file);
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000910 lpc = '\n';
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000911 }
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000912 fputs(s, file);
Denis Vlasenko86811802007-01-29 17:10:19 +0000913
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000914 /* 'x' - just something which is not '\n', '\0' or NO_EOL_CHAR */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000915 if (s[0])
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000916 lpc = 'x';
Denis Vlasenko86811802007-01-29 17:10:19 +0000917
918 /* had trailing '\0' and it was last char of file? */
919 if (last_gets_char == LAST_IS_NUL) {
920 fputc('\0', file);
921 lpc = 'x'; /* */
922 } else
923 /* had trailing '\n' or '\0'? */
924 if (last_gets_char != NO_EOL_CHAR) {
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000925 fputc(last_gets_char, file);
926 lpc = last_gets_char;
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000927 }
Denis Vlasenko86811802007-01-29 17:10:19 +0000928
Denis Vlasenko80778502006-10-25 12:46:46 +0000929 if (ferror(file)) {
Denis Vlasenko40920822006-10-03 20:28:06 +0000930 xfunc_error_retval = 4; /* It's what gnu sed exits with... */
Bernhard Reutner-Fischera3d4bf32006-06-03 21:40:11 +0000931 bb_error_msg_and_die(bb_msg_write_error);
Rob Landley53302f82004-02-18 09:54:15 +0000932 }
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000933 *last_puts_char = lpc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000934}
935
Denis Vlasenko17a15262007-03-26 20:48:46 +0000936#define sed_puts(s, n) (puts_maybe_newline(s, G.nonstdout, &last_puts_char, n))
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000937
Denis Vlasenko8274e062007-08-06 03:41:08 +0000938static int beg_match(sed_cmd_t *sed_cmd, const char *pattern_space)
939{
940 int retval = sed_cmd->beg_match && !regexec(sed_cmd->beg_match, pattern_space, 0, NULL, 0);
941 if (retval)
942 G.previous_regex_ptr = sed_cmd->beg_match;
943 return retval;
944}
945
Rob Landley2b26fd52006-02-24 02:30:39 +0000946/* Process all the lines in all the files */
947
Rob Landleydcc28662004-11-25 07:21:47 +0000948static void process_files(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000949{
Rob Landleyce4f0e92004-10-30 06:54:19 +0000950 char *pattern_space, *next_line;
Denis Vlasenko826c85f2007-01-28 23:26:15 +0000951 int linenum = 0;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000952 char last_puts_char = '\n';
953 char last_gets_char, next_gets_char;
Denis Vlasenko2ea630f2006-12-10 02:52:19 +0000954 sed_cmd_t *sed_cmd;
955 int substituted;
Mark Whitley6315ce62000-07-10 22:55:51 +0000956
Rob Landley2b26fd52006-02-24 02:30:39 +0000957 /* Prime the pump */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000958 next_line = get_next_line(&next_gets_char);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000959
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200960 /* Go through every line in each file */
Denis Vlasenkof39c7c02008-02-28 17:59:01 +0000961 again:
Denis Vlasenko2ea630f2006-12-10 02:52:19 +0000962 substituted = 0;
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000963
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000964 /* Advance to next line. Stop if out of lines. */
965 pattern_space = next_line;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200966 if (!pattern_space)
967 return;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000968 last_gets_char = next_gets_char;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000969
970 /* Read one line in advance so we can act on the last line,
971 * the '$' address */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000972 next_line = get_next_line(&next_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000973 linenum++;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200974
975 /* For every line, go through all the commands */
Denis Vlasenkof39c7c02008-02-28 17:59:01 +0000976 restart:
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200977 for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000978 int old_matched, matched;
Eric Andersen52a3c272003-12-23 08:53:51 +0000979
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000980 old_matched = sed_cmd->in_match;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000981
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000982 /* Determine if this command matches this line: */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200983
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200984 dbg("match1:%d", sed_cmd->in_match);
985 dbg("match2:%d", (!sed_cmd->beg_line && !sed_cmd->end_line
986 && !sed_cmd->beg_match && !sed_cmd->end_match));
987 dbg("match3:%d", (sed_cmd->beg_line > 0
988 && (sed_cmd->end_line || sed_cmd->end_match
989 ? (sed_cmd->beg_line <= linenum)
990 : (sed_cmd->beg_line == linenum)
991 )
992 ));
993 dbg("match4:%d", (beg_match(sed_cmd, pattern_space)));
994 dbg("match5:%d", (sed_cmd->beg_line == -1 && next_line == NULL));
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200995
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200996 /* Are we continuing a previous multi-line match? */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000997 sed_cmd->in_match = sed_cmd->in_match
998 /* Or is no range necessary? */
999 || (!sed_cmd->beg_line && !sed_cmd->end_line
1000 && !sed_cmd->beg_match && !sed_cmd->end_match)
1001 /* Or did we match the start of a numerical range? */
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001002 || (sed_cmd->beg_line > 0
1003 && (sed_cmd->end_line || sed_cmd->end_match
Denys Vlasenkoc4679242010-06-04 01:31:48 +02001004 /* note: even if end is numeric and is < linenum too,
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001005 * GNU sed matches! We match too, therefore we don't
1006 * check here that linenum <= end.
1007 * Example:
1008 * printf '1\n2\n3\n4\n' | sed -n '1{N;N;d};1p;2,3p;3p;4p'
1009 * first three input lines are deleted;
1010 * 4th line is matched and printed
1011 * by "2,3" (!) and by "4" ranges
1012 */
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001013 ? (sed_cmd->beg_line <= linenum) /* N,end */
1014 : (sed_cmd->beg_line == linenum) /* N */
1015 )
1016 )
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001017 /* Or does this line match our begin address regex? */
Denis Vlasenko8274e062007-08-06 03:41:08 +00001018 || (beg_match(sed_cmd, pattern_space))
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001019 /* Or did we match last line of input? */
1020 || (sed_cmd->beg_line == -1 && next_line == NULL);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001021
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001022 /* Snapshot the value */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001023 matched = sed_cmd->in_match;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001024
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001025 dbg("cmd:'%c' matched:%d beg_line:%d end_line:%d linenum:%d",
1026 sed_cmd->cmd, matched, sed_cmd->beg_line, sed_cmd->end_line, linenum);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001027
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001028 /* Is this line the end of the current match? */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001029
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001030 if (matched) {
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001031 /* once matched, "n,xxx" range is dead, disabling it */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001032 if (sed_cmd->beg_line > 0) {
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001033 sed_cmd->beg_line = -2;
Denys Vlasenko2e284a42010-08-01 04:14:46 +02001034 }
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001035 sed_cmd->in_match = !(
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001036 /* has the ending line come, or is this a single address command? */
Denys Vlasenko52d83702011-05-03 00:51:43 +02001037 (sed_cmd->end_line
1038 ? sed_cmd->end_line == -1
1039 ? !next_line
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001040 : (sed_cmd->end_line <= linenum)
1041 : !sed_cmd->end_match
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001042 )
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001043 /* or does this line matches our last address regex */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001044 || (sed_cmd->end_match && old_matched
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001045 && (regexec(sed_cmd->end_match,
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001046 pattern_space, 0, NULL, 0) == 0)
1047 )
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001048 );
Erik Andersene49d5ec2000-02-08 19:58:47 +00001049 }
Erik Andersen1266a131999-12-29 22:19:46 +00001050
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001051 /* Skip blocks of commands we didn't match */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001052 if (sed_cmd->cmd == '{') {
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001053 if (sed_cmd->invert ? matched : !matched) {
Denys Vlasenkof2c16ed2010-04-20 04:00:03 -04001054 unsigned nest_cnt = 0;
1055 while (1) {
1056 if (sed_cmd->cmd == '{')
1057 nest_cnt++;
1058 if (sed_cmd->cmd == '}') {
1059 nest_cnt--;
1060 if (nest_cnt == 0)
1061 break;
1062 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001063 sed_cmd = sed_cmd->next;
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001064 if (!sed_cmd)
1065 bb_error_msg_and_die("unterminated {");
1066 }
1067 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001068 continue;
1069 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001070
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001071 /* Okay, so did this line match? */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001072 if (sed_cmd->invert ? matched : !matched)
1073 continue; /* no */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001074
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001075 /* Update last used regex in case a blank substitute BRE is found */
1076 if (sed_cmd->beg_match) {
1077 G.previous_regex_ptr = sed_cmd->beg_match;
1078 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001079
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001080 /* actual sedding */
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +01001081 dbg("pattern_space:'%s' next_line:'%s' cmd:%c",
1082 pattern_space, next_line, sed_cmd->cmd);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001083 switch (sed_cmd->cmd) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001084
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001085 /* Print line number */
1086 case '=':
1087 fprintf(G.nonstdout, "%d\n", linenum);
1088 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001089
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001090 /* Write the current pattern space up to the first newline */
1091 case 'P':
1092 {
1093 char *tmp = strchr(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001094 if (tmp) {
1095 *tmp = '\0';
1096 /* TODO: explain why '\n' below */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001097 sed_puts(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001098 *tmp = '\n';
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001099 break;
1100 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001101 /* Fall Through */
1102 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001103
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001104 /* Write the current pattern space to output */
1105 case 'p':
1106 /* NB: we print this _before_ the last line
1107 * (of current file) is printed. Even if
1108 * that line is nonterminated, we print
1109 * '\n' here (gnu sed does the same) */
1110 sed_puts(pattern_space, '\n');
1111 break;
1112 /* Delete up through first newline */
1113 case 'D':
1114 {
1115 char *tmp = strchr(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001116 if (tmp) {
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001117 overlapping_strcpy(pattern_space, tmp + 1);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001118 goto restart;
1119 }
1120 }
1121 /* discard this line. */
1122 case 'd':
1123 goto discard_line;
1124
1125 /* Substitute with regex */
1126 case 's':
1127 if (!do_subst_command(sed_cmd, &pattern_space))
1128 break;
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +01001129 dbg("do_subst_command succeeeded:'%s'", pattern_space);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001130 substituted |= 1;
1131
1132 /* handle p option */
1133 if (sed_cmd->sub_p)
1134 sed_puts(pattern_space, last_gets_char);
1135 /* handle w option */
1136 if (sed_cmd->sw_file)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001137 puts_maybe_newline(
1138 pattern_space, sed_cmd->sw_file,
1139 &sed_cmd->sw_last_char, last_gets_char);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001140 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001141
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001142 /* Append line to linked list to be printed later */
1143 case 'a':
1144 append(sed_cmd->string);
1145 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001146
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001147 /* Insert text before this line */
1148 case 'i':
1149 sed_puts(sed_cmd->string, '\n');
1150 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001151
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001152 /* Cut and paste text (replace) */
1153 case 'c':
1154 /* Only triggers on last line of a matching range. */
1155 if (!sed_cmd->in_match)
Denys Vlasenko96a18332010-04-19 22:36:07 -04001156 sed_puts(sed_cmd->string, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001157 goto discard_line;
1158
1159 /* Read file, append contents to output */
1160 case 'r':
1161 {
1162 FILE *rfile;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001163 rfile = fopen_for_read(sed_cmd->string);
1164 if (rfile) {
1165 char *line;
1166
1167 while ((line = xmalloc_fgetline(rfile))
1168 != NULL)
1169 append(line);
1170 xprint_and_close_file(rfile);
1171 }
1172
1173 break;
1174 }
1175
1176 /* Write pattern space to file. */
1177 case 'w':
1178 puts_maybe_newline(
1179 pattern_space, sed_cmd->sw_file,
1180 &sed_cmd->sw_last_char, last_gets_char);
1181 break;
1182
1183 /* Read next line from input */
1184 case 'n':
1185 if (!G.be_quiet)
1186 sed_puts(pattern_space, last_gets_char);
1187 if (next_line) {
1188 free(pattern_space);
1189 pattern_space = next_line;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001190 last_gets_char = next_gets_char;
1191 next_line = get_next_line(&next_gets_char);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001192 substituted = 0;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001193 linenum++;
1194 break;
1195 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001196 /* fall through */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001197
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001198 /* Quit. End of script, end of input. */
1199 case 'q':
1200 /* Exit the outer while loop */
1201 free(next_line);
1202 next_line = NULL;
1203 goto discard_commands;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001204
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001205 /* Append the next line to the current line */
1206 case 'N':
1207 {
1208 int len;
1209 /* If no next line, jump to end of script and exit. */
Denys Vlasenko0d555fc2010-08-16 16:26:33 +02001210 /* http://www.gnu.org/software/sed/manual/sed.html:
1211 * "Most versions of sed exit without printing anything
1212 * when the N command is issued on the last line of
1213 * a file. GNU sed prints pattern space before exiting
1214 * unless of course the -n command switch has been
1215 * specified. This choice is by design."
1216 */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001217 if (next_line == NULL) {
Denys Vlasenko0d555fc2010-08-16 16:26:33 +02001218 //goto discard_line;
1219 goto discard_commands; /* GNU behavior */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001220 }
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001221 /* Append next_line, read new next_line. */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001222 len = strlen(pattern_space);
Denys Vlasenko90377872010-01-08 09:07:50 +01001223 pattern_space = xrealloc(pattern_space, len + strlen(next_line) + 2);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001224 pattern_space[len] = '\n';
1225 strcpy(pattern_space + len+1, next_line);
1226 last_gets_char = next_gets_char;
1227 next_line = get_next_line(&next_gets_char);
1228 linenum++;
1229 break;
1230 }
1231
1232 /* Test/branch if substitution occurred */
1233 case 't':
1234 if (!substituted) break;
1235 substituted = 0;
1236 /* Fall through */
1237 /* Test/branch if substitution didn't occur */
1238 case 'T':
1239 if (substituted) break;
1240 /* Fall through */
1241 /* Branch to label */
1242 case 'b':
1243 if (!sed_cmd->string) goto discard_commands;
1244 else sed_cmd = branch_to(sed_cmd->string);
1245 break;
1246 /* Transliterate characters */
1247 case 'y':
1248 {
1249 int i, j;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001250 for (i = 0; pattern_space[i]; i++) {
1251 for (j = 0; sed_cmd->string[j]; j += 2) {
1252 if (pattern_space[i] == sed_cmd->string[j]) {
1253 pattern_space[i] = sed_cmd->string[j + 1];
1254 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001255 }
1256 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001257 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001258
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001259 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001260 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001261 case 'g': /* Replace pattern space with hold space */
1262 free(pattern_space);
1263 pattern_space = xstrdup(G.hold_space ? G.hold_space : "");
1264 break;
1265 case 'G': /* Append newline and hold space to pattern space */
1266 {
1267 int pattern_space_size = 2;
1268 int hold_space_size = 0;
1269
1270 if (pattern_space)
1271 pattern_space_size += strlen(pattern_space);
1272 if (G.hold_space)
1273 hold_space_size = strlen(G.hold_space);
1274 pattern_space = xrealloc(pattern_space,
1275 pattern_space_size + hold_space_size);
1276 if (pattern_space_size == 2)
1277 pattern_space[0] = 0;
1278 strcat(pattern_space, "\n");
1279 if (G.hold_space)
1280 strcat(pattern_space, G.hold_space);
1281 last_gets_char = '\n';
1282
1283 break;
1284 }
1285 case 'h': /* Replace hold space with pattern space */
1286 free(G.hold_space);
1287 G.hold_space = xstrdup(pattern_space);
1288 break;
1289 case 'H': /* Append newline and pattern space to hold space */
1290 {
1291 int hold_space_size = 2;
1292 int pattern_space_size = 0;
1293
1294 if (G.hold_space)
1295 hold_space_size += strlen(G.hold_space);
1296 if (pattern_space)
1297 pattern_space_size = strlen(pattern_space);
1298 G.hold_space = xrealloc(G.hold_space,
1299 hold_space_size + pattern_space_size);
1300
1301 if (hold_space_size == 2)
1302 *G.hold_space = 0;
1303 strcat(G.hold_space, "\n");
1304 if (pattern_space)
1305 strcat(G.hold_space, pattern_space);
1306
1307 break;
1308 }
1309 case 'x': /* Exchange hold and pattern space */
1310 {
1311 char *tmp = pattern_space;
Denys Vlasenko90a99042009-09-06 02:36:23 +02001312 pattern_space = G.hold_space ? G.hold_space : xzalloc(1);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001313 last_gets_char = '\n';
1314 G.hold_space = tmp;
1315 break;
1316 }
1317 } /* switch */
1318 } /* for each cmd */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001319
1320 /*
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001321 * Exit point from sedding...
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001322 */
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001323 discard_commands:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001324 /* we will print the line unless we were told to be quiet ('-n')
1325 or if the line was suppressed (ala 'd'elete) */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001326 if (!G.be_quiet)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001327 sed_puts(pattern_space, last_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001328
1329 /* Delete and such jump here. */
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001330 discard_line:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001331 flush_append();
1332 free(pattern_space);
1333
1334 goto again;
Erik Andersen1266a131999-12-29 22:19:46 +00001335}
1336
Glenn L McGrath42c25732003-10-04 05:27:56 +00001337/* It is possible to have a command line argument with embedded
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001338 * newlines. This counts as multiple command lines.
1339 * However, newline can be escaped: 's/e/z\<newline>z/'
1340 * We check for this.
1341 */
Glenn L McGrath42c25732003-10-04 05:27:56 +00001342
1343static void add_cmd_block(char *cmdstr)
1344{
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001345 char *sv, *eol;
Glenn L McGrath42c25732003-10-04 05:27:56 +00001346
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001347 cmdstr = sv = xstrdup(cmdstr);
1348 do {
1349 eol = strchr(cmdstr, '\n');
1350 next:
1351 if (eol) {
1352 /* Count preceding slashes */
1353 int slashes = 0;
1354 char *sl = eol;
1355
1356 while (sl != cmdstr && *--sl == '\\')
1357 slashes++;
1358 /* Odd number of preceding slashes - newline is escaped */
1359 if (slashes & 1) {
Denis Vlasenko0f293b92008-07-22 20:16:55 +00001360 overlapping_strcpy(eol - 1, eol);
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001361 eol = strchr(eol, '\n');
1362 goto next;
1363 }
1364 *eol = '\0';
1365 }
1366 add_cmd(cmdstr);
1367 cmdstr = eol + 1;
1368 } while (eol);
1369 free(sv);
Glenn L McGrath42c25732003-10-04 05:27:56 +00001370}
1371
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001372int sed_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001373int sed_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001374{
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001375 unsigned opt;
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001376 llist_t *opt_e, *opt_f;
1377 int status = EXIT_SUCCESS;
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001378
Denis Vlasenko74324c82007-06-04 10:16:52 +00001379 INIT_G();
Rob Landleye3f5a3f2006-05-09 03:53:55 +00001380
Mark Whitley858c1ad2000-07-11 21:38:47 +00001381 /* destroy command strings on exit */
Rob Landley0b656282006-05-08 22:17:23 +00001382 if (ENABLE_FEATURE_CLEAN_UP) atexit(sed_free_and_close_stuff);
Mark Whitley858c1ad2000-07-11 21:38:47 +00001383
Rob Landleyfae1dc82005-11-20 07:44:35 +00001384 /* Lie to autoconf when it starts asking stupid questions. */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001385 if (argv[1] && !strcmp(argv[1], "--version")) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001386 puts("This is not GNU sed version 4.0");
1387 return 0;
Eric Andersenc06f5682004-02-04 10:57:46 +00001388 }
Eric Andersenc06f5682004-02-04 10:57:46 +00001389
Mark Whitley6315ce62000-07-10 22:55:51 +00001390 /* do normal option parsing */
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001391 opt_e = opt_f = NULL;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001392 opt_complementary = "e::f::" /* can occur multiple times */
1393 "nn"; /* count -n */
Denys Vlasenko2e284a42010-08-01 04:14:46 +02001394 /* -i must be first, to match OPT_in_place definition */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00001395 opt = getopt32(argv, "irne:f:", &opt_e, &opt_f,
Denis Vlasenko17a15262007-03-26 20:48:46 +00001396 &G.be_quiet); /* counter for -n */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001397 //argc -= optind;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001398 argv += optind;
1399 if (opt & OPT_in_place) { // -i
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001400 atexit(cleanup_outname);
1401 }
Denis Vlasenko17a15262007-03-26 20:48:46 +00001402 if (opt & 0x2) G.regex_type |= REG_EXTENDED; // -r
1403 //if (opt & 0x4) G.be_quiet++; // -n
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001404 while (opt_e) { // -e
Denis Vlasenkod50dda82008-06-15 05:40:56 +00001405 add_cmd_block(llist_pop(&opt_e));
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001406 }
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001407 while (opt_f) { // -f
1408 char *line;
1409 FILE *cmdfile;
Denis Vlasenko5415c852008-07-21 23:05:26 +00001410 cmdfile = xfopen_for_read(llist_pop(&opt_f));
Denis Vlasenko8ee649a2008-03-26 20:04:27 +00001411 while ((line = xmalloc_fgetline(cmdfile)) != NULL) {
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001412 add_cmd(line);
1413 free(line);
1414 }
1415 fclose(cmdfile);
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001416 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001417 /* if we didn't get a pattern from -e or -f, use argv[0] */
Denis Vlasenko80778502006-10-25 12:46:46 +00001418 if (!(opt & 0x18)) {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001419 if (!*argv)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001420 bb_show_usage();
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001421 add_cmd_block(*argv++);
Mark Whitley6315ce62000-07-10 22:55:51 +00001422 }
Glenn L McGrath42c25732003-10-04 05:27:56 +00001423 /* Flush any unfinished commands. */
1424 add_cmd("");
Mark Whitley6315ce62000-07-10 22:55:51 +00001425
Rob Landley53302f82004-02-18 09:54:15 +00001426 /* By default, we write to stdout */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001427 G.nonstdout = stdout;
Rob Landley53302f82004-02-18 09:54:15 +00001428
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001429 /* argv[0..(argc-1)] should be names of file to process. If no
Mark Whitley6315ce62000-07-10 22:55:51 +00001430 * files were specified or '-' was specified, take input from stdin.
1431 * Otherwise, we process all the files specified. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001432 if (argv[0] == NULL) {
1433 if (opt & OPT_in_place)
Denis Vlasenko80778502006-10-25 12:46:46 +00001434 bb_error_msg_and_die(bb_msg_requires_arg, "-i");
Rob Landleydcc28662004-11-25 07:21:47 +00001435 add_input_file(stdin);
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001436 } else {
Mark Whitley6315ce62000-07-10 22:55:51 +00001437 int i;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001438
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001439 for (i = 0; argv[i]; i++) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001440 struct stat statbuf;
1441 int nonstdoutfd;
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001442 FILE *file;
1443 sed_cmd_t *sed_cmd;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001444
Denis Vlasenko9f739442006-12-16 23:49:13 +00001445 if (LONE_DASH(argv[i]) && !(opt & OPT_in_place)) {
Rob Landleydcc28662004-11-25 07:21:47 +00001446 add_input_file(stdin);
1447 process_files();
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001448 continue;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +00001449 }
Denis Vlasenkoddec5af2006-10-26 23:25:17 +00001450 file = fopen_or_warn(argv[i], "r");
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001451 if (!file) {
1452 status = EXIT_FAILURE;
1453 continue;
1454 }
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001455 add_input_file(file);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001456 if (!(opt & OPT_in_place)) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001457 continue;
1458 }
1459
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001460 /* -i: process each FILE separately: */
1461
Denis Vlasenko17a15262007-03-26 20:48:46 +00001462 G.outname = xasprintf("%sXXXXXX", argv[i]);
Alexander Shishkin67227372010-10-22 13:27:16 +02001463 nonstdoutfd = xmkstemp(G.outname);
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01001464 G.nonstdout = xfdopen_for_write(nonstdoutfd);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001465
Denys Vlasenko57992482009-11-13 09:09:07 +01001466 /* Set permissions/owner of output file */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001467 fstat(fileno(file), &statbuf);
Denys Vlasenko3b727cc2010-06-18 02:12:56 +02001468 /* chmod'ing AFTER chown would preserve suid/sgid bits,
1469 * but GNU sed 4.2.1 does not preserve them either */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001470 fchmod(nonstdoutfd, statbuf.st_mode);
Denys Vlasenko57992482009-11-13 09:09:07 +01001471 fchown(nonstdoutfd, statbuf.st_uid, statbuf.st_gid);
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001472
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001473 process_files();
Denis Vlasenko17a15262007-03-26 20:48:46 +00001474 fclose(G.nonstdout);
Denis Vlasenko17a15262007-03-26 20:48:46 +00001475 G.nonstdout = stdout;
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001476
Denis Vlasenko80778502006-10-25 12:46:46 +00001477 /* unlink(argv[i]); */
Denis Vlasenkocb448fe2008-02-17 14:28:53 +00001478 xrename(G.outname, argv[i]);
Denis Vlasenko17a15262007-03-26 20:48:46 +00001479 free(G.outname);
Denis Vlasenko40276642007-11-13 16:48:10 +00001480 G.outname = NULL;
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001481
1482 /* Re-enable disabled range matches */
1483 for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) {
1484 sed_cmd->beg_line = sed_cmd->beg_line_orig;
1485 }
Mark Whitley6315ce62000-07-10 22:55:51 +00001486 }
Denys Vlasenkoeb08b6e2010-06-19 17:51:06 +02001487 /* Here, to handle "sed 'cmds' nonexistent_file" case we did:
1488 * if (G.current_input_file >= G.input_file_count)
1489 * return status;
1490 * but it's not needed since process_files() works correctly
1491 * in this case too. */
Mark Whitley6315ce62000-07-10 22:55:51 +00001492 }
Denys Vlasenkoeb08b6e2010-06-19 17:51:06 +02001493 process_files();
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001494
Matt Kraaia5f09c62001-11-12 16:44:55 +00001495 return status;
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001496}