blob: 7bbf820d8571627ef127d771cb4e67aac4938580 [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 *
Denys Vlasenkoa221bc52011-09-13 18:40:22 +020026 * process_files() does actual sedding, reading data lines from each input FILE*
Denys Vlasenko52d83702011-05-03 00:51:43 +020027 * (which could be stdin) and applying the sed command list (sed_cmd_head) to
28 * each of the resulting lines.
29 *
30 * sed_main() is where external code calls into this, with a command line.
31 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +000032
Denys Vlasenko52d83702011-05-03 00:51:43 +020033/* Supported features and commands in this version of sed:
34 *
35 * - comments ('#')
36 * - address matching: num|/matchstr/[,num|/matchstr/|$]command
37 * - commands: (p)rint, (d)elete, (s)ubstitue (with g & I flags)
38 * - edit commands: (a)ppend, (i)nsert, (c)hange
39 * - file commands: (r)ead
40 * - backreferences in substitution expressions (\0, \1, \2...\9)
41 * - grouped commands: {cmd1;cmd2}
42 * - transliteration (y/source-chars/dest-chars/)
43 * - pattern space hold space storing / swapping (g, h, x)
44 * - labels / branching (: label, b, t, T)
45 *
46 * (Note: Specifying an address (range) to match is *optional*; commands
47 * default to the whole pattern space if no specific address match was
48 * requested.)
49 *
50 * Todo:
51 * - Create a wrapper around regex to make libc's regex conform with sed
52 *
Mimi Li37a79c02012-07-24 13:20:12 +020053 * Reference
54 * http://www.opengroup.org/onlinepubs/007904975/utilities/sed.html
55 * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sed.html
Denys Vlasenko63f4d322015-04-17 14:24:55 +020056 * http://sed.sourceforge.net/sedfaq3.html
Denys Vlasenko52d83702011-05-03 00:51:43 +020057 */
Mark Whitley6315ce62000-07-10 22:55:51 +000058
Denys Vlasenko73225b62013-11-13 12:45:33 +010059//config:config SED
60//config: bool "sed"
61//config: default y
62//config: help
63//config: sed is used to perform text transformations on a file
64//config: or input from a pipeline.
65
66//kbuild:lib-$(CONFIG_SED) += sed.o
67
68//applet:IF_SED(APPLET(sed, BB_DIR_BIN, BB_SUID_DROP))
69
Pere Orga6a3e01d2011-04-01 22:56:30 +020070//usage:#define sed_trivial_usage
Denys Vlasenkoa82e32d2013-10-30 13:00:00 +010071//usage: "[-inrE] [-f FILE]... [-e CMD]... [FILE]...\n"
72//usage: "or: sed [-inrE] CMD [FILE]..."
Pere Orga6a3e01d2011-04-01 22:56:30 +020073//usage:#define sed_full_usage "\n\n"
Denys Vlasenko66426762011-06-05 03:58:28 +020074//usage: " -e CMD Add CMD to sed commands to be executed"
Pere Orga6a3e01d2011-04-01 22:56:30 +020075//usage: "\n -f FILE Add FILE contents to sed commands to be executed"
Simon B8c343952012-05-06 13:59:15 +020076//usage: "\n -i[SFX] Edit files in-place (otherwise sends to stdout)"
Denys Vlasenko1d7ad7a2012-06-21 09:45:11 +020077//usage: "\n Optionally back files up, appending SFX"
Pere Orga6a3e01d2011-04-01 22:56:30 +020078//usage: "\n -n Suppress automatic printing of pattern space"
Denys Vlasenkoa82e32d2013-10-30 13:00:00 +010079//usage: "\n -r,-E Use extended regex syntax"
Pere Orga6a3e01d2011-04-01 22:56:30 +020080//usage: "\n"
81//usage: "\nIf no -e or -f, the first non-option argument is the sed command string."
82//usage: "\nRemaining arguments are input files (stdin if none)."
83//usage:
84//usage:#define sed_example_usage
85//usage: "$ echo \"foo\" | sed -e 's/f[a-zA-Z]o/bar/g'\n"
86//usage: "bar\n"
87
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000088#include "libbb.h"
"Vladimir N. Oleynik"23f62fc2005-09-14 16:59:11 +000089#include "xregex.h"
Mark Whitley6315ce62000-07-10 22:55:51 +000090
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +020091#if 0
92# define dbg(...) bb_error_msg(__VA_ARGS__)
93#else
94# define dbg(...) ((void)0)
95#endif
96
97
Denys Vlasenko2e284a42010-08-01 04:14:46 +020098enum {
99 OPT_in_place = 1 << 0,
100};
101
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000102/* Each sed command turns into one of these structures. */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000103typedef struct sed_cmd_s {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000104 /* Ordered by alignment requirements: currently 36 bytes on x86 */
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +0000105 struct sed_cmd_s *next; /* Next command (linked list, NULL terminated) */
Mark Whitley2dc192f2000-11-03 19:47:00 +0000106
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000107 /* address storage */
108 regex_t *beg_match; /* sed -e '/match/cmd' */
109 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
110 regex_t *sub_match; /* For 's/sub_match/string/' */
111 int beg_line; /* 'sed 1p' 0 == apply commands to all lines */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200112 int beg_line_orig; /* copy of the above, needed for -i */
Denys Vlasenko63f4d322015-04-17 14:24:55 +0200113 int end_line; /* 'sed 1,3p' 0 == one line only. -1 = last line ($). -2-N = +N */
114 int end_line_orig;
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +0000115
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000116 FILE *sw_file; /* File (sw) command writes to, -1 for none. */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000117 char *string; /* Data string for (saicytb) commands. */
Glenn L McGrathfc4cb4d2003-04-12 16:10:42 +0000118
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000119 unsigned which_match; /* (s) Which match to replace (0 for all) */
Glenn L McGrathfc4cb4d2003-04-12 16:10:42 +0000120
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000121 /* Bitfields (gcc won't group them if we don't) */
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +0000122 unsigned invert:1; /* the '!' after the address */
123 unsigned in_match:1; /* Next line also included in match? */
124 unsigned sub_p:1; /* (s) print option */
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000125
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +0000126 char sw_last_char; /* Last line written by (sw) had no '\n' */
Glenn L McGrathc18ce372003-09-13 06:57:39 +0000127
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000128 /* GENERAL FIELDS */
129 char cmd; /* The command char: abcdDgGhHilnNpPqrstwxy:={} */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000130} sed_cmd_t;
Mark Whitley6315ce62000-07-10 22:55:51 +0000131
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000132static const char semicolon_whitespace[] ALIGN1 = "; \n\r\t\v";
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000133
Denis Vlasenko17a15262007-03-26 20:48:46 +0000134struct globals {
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000135 /* options */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000136 int be_quiet, regex_type;
Denys Vlasenko259b3c02013-11-28 03:14:16 +0100137
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000138 FILE *nonstdout;
139 char *outname, *hold_space;
Denys Vlasenko259b3c02013-11-28 03:14:16 +0100140 smallint exitcode;
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000141
Denys Vlasenko259b3c02013-11-28 03:14:16 +0100142 /* list of input files */
Denys Vlasenkodeb07692013-11-28 12:08:51 +0100143 int current_input_file, last_input_file;
144 char **input_file_list;
Denys Vlasenko259b3c02013-11-28 03:14:16 +0100145 FILE *current_fp;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000146
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000147 regmatch_t regmatch[10];
148 regex_t *previous_regex_ptr;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000149
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000150 /* linked list of sed commands */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200151 sed_cmd_t *sed_cmd_head, **sed_cmd_tail;
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000152
Denys Vlasenko259b3c02013-11-28 03:14:16 +0100153 /* linked list of append lines */
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000154 llist_t *append_head;
155
156 char *add_cmd_line;
157
158 struct pipeline {
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200159 char *buf; /* Space to hold string */
160 int idx; /* Space used */
161 int len; /* Space allocated */
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000162 } pipeline;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100163} FIX_ALIASING;
Denis Vlasenko17a15262007-03-26 20:48:46 +0000164#define G (*(struct globals*)&bb_common_bufsiz1)
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200165struct BUG_G_too_big {
Denys Vlasenkob7c9fb22011-02-03 00:05:48 +0100166 char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1];
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200167};
Denis Vlasenko74324c82007-06-04 10:16:52 +0000168#define INIT_G() do { \
Denis Vlasenko74324c82007-06-04 10:16:52 +0000169 G.sed_cmd_tail = &G.sed_cmd_head; \
170} while (0)
171
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000172
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +0000173#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000174static void sed_free_and_close_stuff(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000175{
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200176 sed_cmd_t *sed_cmd = G.sed_cmd_head;
Mark Whitley6315ce62000-07-10 22:55:51 +0000177
Denis Vlasenko17a15262007-03-26 20:48:46 +0000178 llist_free(G.append_head, free);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000179
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000180 while (sed_cmd) {
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000181 sed_cmd_t *sed_cmd_next = sed_cmd->next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000182
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000183 if (sed_cmd->sw_file)
184 xprint_and_close_file(sed_cmd->sw_file);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000185
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000186 if (sed_cmd->beg_match) {
187 regfree(sed_cmd->beg_match);
188 free(sed_cmd->beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000189 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000190 if (sed_cmd->end_match) {
191 regfree(sed_cmd->end_match);
192 free(sed_cmd->end_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000193 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000194 if (sed_cmd->sub_match) {
195 regfree(sed_cmd->sub_match);
196 free(sed_cmd->sub_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000197 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000198 free(sed_cmd->string);
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000199 free(sed_cmd);
200 sed_cmd = sed_cmd_next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000201 }
Rob Landleyce4f0e92004-10-30 06:54:19 +0000202
Denis Vlasenko60818682007-09-28 22:07:23 +0000203 free(G.hold_space);
Rob Landleydcc28662004-11-25 07:21:47 +0000204
Denys Vlasenko259b3c02013-11-28 03:14:16 +0100205 if (G.current_fp)
206 fclose(G.current_fp);
Mark Whitley6315ce62000-07-10 22:55:51 +0000207}
Denis Vlasenko666da5e2006-12-26 18:17:42 +0000208#else
209void sed_free_and_close_stuff(void);
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000210#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000211
Rob Landley53302f82004-02-18 09:54:15 +0000212/* If something bad happens during -i operation, delete temp file */
213
214static void cleanup_outname(void)
215{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000216 if (G.outname) unlink(G.outname);
Rob Landley53302f82004-02-18 09:54:15 +0000217}
218
Denis Vlasenko40276642007-11-13 16:48:10 +0000219/* strcpy, replacing "\from" with 'to'. If to is NUL, replacing "\any" with 'any' */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000220
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000221static void parse_escapes(char *dest, const char *string, int len, char from, char to)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000222{
Denis Vlasenko80778502006-10-25 12:46:46 +0000223 int i = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000224
Denis Vlasenko80778502006-10-25 12:46:46 +0000225 while (i < len) {
226 if (string[i] == '\\') {
227 if (!to || string[i+1] == from) {
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000228 *dest++ = to ? to : string[i+1];
Denis Vlasenko80778502006-10-25 12:46:46 +0000229 i += 2;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000230 continue;
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000231 }
232 *dest++ = string[i++];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000233 }
Denis Vlasenko40276642007-11-13 16:48:10 +0000234 /* TODO: is it safe wrt a string with trailing '\\' ? */
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000235 *dest++ = string[i++];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000236 }
Denis Vlasenko40276642007-11-13 16:48:10 +0000237 *dest = '\0';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000238}
239
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000240static char *copy_parsing_escapes(const char *string, int len)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000241{
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200242 const char *s;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000243 char *dest = xmalloc(len + 1);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000244
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200245 /* sed recognizes \n */
Denys Vlasenko6a0abcc2011-05-03 00:52:22 +0200246 /* GNU sed also recognizes \t and \r */
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200247 for (s = "\nn\tt\rr"; *s; s += 2) {
248 parse_escapes(dest, string, len, s[1], s[0]);
249 string = dest;
250 len = strlen(dest);
251 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000252 return dest;
253}
254
255
Mark Whitley6315ce62000-07-10 22:55:51 +0000256/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000257 * index_of_next_unescaped_regexp_delim - walks left to right through a string
258 * beginning at a specified index and returns the index of the next regular
Denis Vlasenko40276642007-11-13 16:48:10 +0000259 * expression delimiter (typically a forward slash ('/')) not preceded by
Rob Landley4795e4e2006-07-26 17:25:08 +0000260 * a backslash ('\'). A negative delimiter disables square bracket checking.
Mark Whitley6315ce62000-07-10 22:55:51 +0000261 */
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000262static int index_of_next_unescaped_regexp_delim(int delimiter, const char *str)
Mark Whitley6315ce62000-07-10 22:55:51 +0000263{
Matt Kraaia0065d52001-08-24 14:45:50 +0000264 int bracket = -1;
265 int escaped = 0;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000266 int idx = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000267 char ch;
Matt Kraaia0065d52001-08-24 14:45:50 +0000268
Rob Landley4795e4e2006-07-26 17:25:08 +0000269 if (delimiter < 0) {
270 bracket--;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000271 delimiter = -delimiter;
Rob Landley4795e4e2006-07-26 17:25:08 +0000272 }
273
Denys Vlasenko52d83702011-05-03 00:51:43 +0200274 for (; (ch = str[idx]) != '\0'; idx++) {
Rob Landley4795e4e2006-07-26 17:25:08 +0000275 if (bracket >= 0) {
Denys Vlasenko52d83702011-05-03 00:51:43 +0200276 if (ch == ']'
277 && !(bracket == idx - 1 || (bracket == idx - 2 && str[idx - 1] == '^'))
278 ) {
Matt Kraaia0065d52001-08-24 14:45:50 +0000279 bracket = -1;
Denys Vlasenko52d83702011-05-03 00:51:43 +0200280 }
Matt Kraaia0065d52001-08-24 14:45:50 +0000281 } else if (escaped)
282 escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000283 else if (ch == '\\')
Matt Kraaia0065d52001-08-24 14:45:50 +0000284 escaped = 1;
Rob Landley4795e4e2006-07-26 17:25:08 +0000285 else if (bracket == -1 && ch == '[')
Matt Kraaia0065d52001-08-24 14:45:50 +0000286 bracket = idx;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000287 else if (ch == delimiter)
Mark Whitley97562bd2000-07-17 20:06:42 +0000288 return idx;
289 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000290
Mark Whitley97562bd2000-07-17 20:06:42 +0000291 /* if we make it to here, we've hit the end of the string */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000292 bb_error_msg_and_die("unmatched '%c'", delimiter);
Mark Whitley6315ce62000-07-10 22:55:51 +0000293}
294
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000295/*
296 * Returns the index of the third delimiter
297 */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000298static int parse_regex_delim(const char *cmdstr, char **match, char **replace)
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000299{
Denis Vlasenko9356b502007-01-29 23:44:38 +0000300 const char *cmdstr_ptr = cmdstr;
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100301 unsigned char delimiter;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000302 int idx = 0;
303
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000304 /* verify that the 's' or 'y' is followed by something. That something
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000305 * (typically a 'slash') is now our regexp delimiter... */
Rob Landley4795e4e2006-07-26 17:25:08 +0000306 if (*cmdstr == '\0')
307 bb_error_msg_and_die("bad format in substitution expression");
Denis Vlasenko80778502006-10-25 12:46:46 +0000308 delimiter = *cmdstr_ptr++;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000309
310 /* save the match string */
311 idx = index_of_next_unescaped_regexp_delim(delimiter, cmdstr_ptr);
Rob Landleyfae1dc82005-11-20 07:44:35 +0000312 *match = copy_parsing_escapes(cmdstr_ptr, idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000313
314 /* save the replacement string */
315 cmdstr_ptr += idx + 1;
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100316 idx = index_of_next_unescaped_regexp_delim(- (int)delimiter, cmdstr_ptr);
Rob Landleyfae1dc82005-11-20 07:44:35 +0000317 *replace = copy_parsing_escapes(cmdstr_ptr, idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000318
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000319 return ((cmdstr_ptr - cmdstr) + idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000320}
321
Mark Whitley6315ce62000-07-10 22:55:51 +0000322/*
323 * returns the index in the string just past where the address ends.
324 */
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000325static int get_address(const char *my_str, int *linenum, regex_t ** regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000326{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000327 const char *pos = my_str;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000328
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000329 if (isdigit(*my_str)) {
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000330 *linenum = strtol(my_str, (char**)&pos, 10);
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000331 /* endstr shouldnt ever equal NULL */
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000332 } else if (*my_str == '$') {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000333 *linenum = -1;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000334 pos++;
335 } else if (*my_str == '/' || *my_str == '\\') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000336 int next;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000337 char delimiter;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000338 char *temp;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000339
Denis Vlasenko80778502006-10-25 12:46:46 +0000340 delimiter = '/';
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100341 if (*my_str == '\\')
342 delimiter = *++pos;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000343 next = index_of_next_unescaped_regexp_delim(delimiter, ++pos);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000344 temp = copy_parsing_escapes(pos, next);
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100345 *regex = xzalloc(sizeof(regex_t));
Denys Vlasenkob0e9b722013-07-21 22:09:44 +0200346 xregcomp(*regex, temp, G.regex_type);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000347 free(temp);
348 /* Move position to next character after last delimiter */
Rob Landley4795e4e2006-07-26 17:25:08 +0000349 pos += (next+1);
Mark Whitley6315ce62000-07-10 22:55:51 +0000350 }
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000351 return pos - my_str;
Mark Whitley6315ce62000-07-10 22:55:51 +0000352}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000353
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000354/* Grab a filename. Whitespace at start is skipped, then goes to EOL. */
Denis Vlasenko68404f12008-03-17 09:00:54 +0000355static int parse_file_cmd(/*sed_cmd_t *sed_cmd,*/ const char *filecmdstr, char **retval)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000356{
Denis Vlasenko80778502006-10-25 12:46:46 +0000357 int start = 0, idx, hack = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000358
359 /* Skip whitespace, then grab filename to end of line */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000360 while (isspace(filecmdstr[start]))
361 start++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000362 idx = start;
Denis Vlasenko9356b502007-01-29 23:44:38 +0000363 while (filecmdstr[idx] && filecmdstr[idx] != '\n')
364 idx++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000365
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000366 /* If lines glued together, put backslash back. */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000367 if (filecmdstr[idx] == '\n')
368 hack = 1;
Denis Vlasenko80778502006-10-25 12:46:46 +0000369 if (idx == start)
370 bb_error_msg_and_die("empty filename");
Rob Landleyd921b2e2006-08-03 15:41:12 +0000371 *retval = xstrndup(filecmdstr+start, idx-start+hack+1);
Denis Vlasenko9356b502007-01-29 23:44:38 +0000372 if (hack)
373 (*retval)[idx] = '\\';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000374
375 return idx;
376}
377
Denis Vlasenko9356b502007-01-29 23:44:38 +0000378static int parse_subst_cmd(sed_cmd_t *sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000379{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000380 int cflags = G.regex_type;
Mark Whitley06f35292000-07-13 19:58:04 +0000381 char *match;
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000382 int idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000383
384 /*
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000385 * A substitution command should look something like this:
David A. Wheeler80a068d2013-12-05 20:42:17 -0500386 * s/match/replace/ #giIpw
Mark Whitley0e4cec02000-08-21 21:29:20 +0000387 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000388 * mandatory optional
Mark Whitley06f35292000-07-13 19:58:04 +0000389 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000390 idx = parse_regex_delim(substr, &match, &sed_cmd->string);
Mark Whitley06f35292000-07-13 19:58:04 +0000391
Mark Whitley97562bd2000-07-17 20:06:42 +0000392 /* determine the number of back references in the match string */
393 /* Note: we compute this here rather than in the do_subst_command()
394 * function to save processor time, at the expense of a little more memory
395 * (4 bits) per sed_cmd */
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000396
Mark Whitley06f35292000-07-13 19:58:04 +0000397 /* process the flags */
Mark Whitley70705d72000-07-14 19:06:30 +0000398
Denis Vlasenko80778502006-10-25 12:46:46 +0000399 sed_cmd->which_match = 1;
Denys Vlasenko9caea242014-09-16 01:11:13 +0200400 dbg("s flags:'%s'", substr + idx + 1);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000401 while (substr[++idx]) {
Denys Vlasenko9caea242014-09-16 01:11:13 +0200402 dbg("s flag:'%c'", substr[idx]);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000403 /* Parse match number */
Denis Vlasenko80778502006-10-25 12:46:46 +0000404 if (isdigit(substr[idx])) {
405 if (match[0] != '^') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000406 /* Match 0 treated as all, multiple matches we take the last one. */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000407 const char *pos = substr + idx;
408/* FIXME: error check? */
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000409 sed_cmd->which_match = (unsigned)strtol(substr+idx, (char**) &pos, 10);
Denys Vlasenko9caea242014-09-16 01:11:13 +0200410 idx = pos - substr - 1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000411 }
412 continue;
413 }
Rob Landley40ec4ae2004-01-04 06:42:14 +0000414 /* Skip spaces */
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200415 if (isspace(substr[idx]))
416 continue;
Rob Landley40ec4ae2004-01-04 06:42:14 +0000417
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000418 switch (substr[idx]) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000419 /* Replace all occurrences */
420 case 'g':
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000421 if (match[0] != '^')
422 sed_cmd->which_match = 0;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000423 break;
424 /* Print pattern space */
425 case 'p':
426 sed_cmd->sub_p = 1;
427 break;
428 /* Write to file */
429 case 'w':
430 {
431 char *temp;
Denis Vlasenko68404f12008-03-17 09:00:54 +0000432 idx += parse_file_cmd(/*sed_cmd,*/ substr+idx, &temp);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000433 break;
434 }
435 /* Ignore case (gnu exension) */
David A. Wheeler80a068d2013-12-05 20:42:17 -0500436 case 'i':
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000437 case 'I':
438 cflags |= REG_ICASE;
439 break;
440 /* Comment */
441 case '#':
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200442 // while (substr[++idx]) continue;
443 idx += strlen(substr + idx); // same
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000444 /* Fall through */
445 /* End of command */
446 case ';':
447 case '}':
448 goto out;
449 default:
Denys Vlasenko9caea242014-09-16 01:11:13 +0200450 dbg("s bad flags:'%s'", substr + idx);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000451 bb_error_msg_and_die("bad option in substitution expression");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000452 }
453 }
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200454 out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000455 /* compile the match string into a regex */
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000456 if (*match != '\0') {
457 /* If match is empty, we use last regex used at runtime */
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100458 sed_cmd->sub_match = xzalloc(sizeof(regex_t));
459 dbg("xregcomp('%s',%x)", match, cflags);
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000460 xregcomp(sed_cmd->sub_match, match, cflags);
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100461 dbg("regcomp ok");
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000462 }
Mark Whitley06f35292000-07-13 19:58:04 +0000463 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000464
465 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000466}
467
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000468/*
469 * Process the commands arguments
470 */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000471static const char *parse_cmd_args(sed_cmd_t *sed_cmd, const char *cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000472{
Denys Vlasenko52d83702011-05-03 00:51:43 +0200473 static const char cmd_letters[] = "saicrw:btTydDgGhHlnNpPqx={}";
474 enum {
475 IDX_s = 0,
476 IDX_a,
477 IDX_i,
478 IDX_c,
479 IDX_r,
480 IDX_w,
481 IDX_colon,
482 IDX_b,
483 IDX_t,
484 IDX_T,
485 IDX_y,
486 IDX_d,
487 IDX_D,
488 IDX_g,
489 IDX_G,
490 IDX_h,
491 IDX_H,
492 IDX_l,
493 IDX_n,
494 IDX_N,
495 IDX_p,
496 IDX_P,
497 IDX_q,
498 IDX_x,
499 IDX_equal,
500 IDX_lbrace,
501 IDX_rbrace,
502 IDX_nul
503 };
504 struct chk { char chk[sizeof(cmd_letters)-1 == IDX_nul ? 1 : -1]; };
505
506 unsigned idx = strchrnul(cmd_letters, sed_cmd->cmd) - cmd_letters;
507
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000508 /* handle (s)ubstitution command */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200509 if (idx == IDX_s) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000510 cmdstr += parse_subst_cmd(sed_cmd, cmdstr);
Denys Vlasenko52d83702011-05-03 00:51:43 +0200511 }
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000512 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200513 else if (idx <= IDX_c) { /* a,i,c */
Mimi Li37a79c02012-07-24 13:20:12 +0200514 if (idx < IDX_c) { /* a,i */
515 if (sed_cmd->end_line || sed_cmd->end_match)
516 bb_error_msg_and_die("command '%c' uses only one address", sed_cmd->cmd);
517 }
Denis Vlasenko80778502006-10-25 12:46:46 +0000518 for (;;) {
519 if (*cmdstr == '\n' || *cmdstr == '\\') {
Rob Landley25d82392004-04-01 09:23:30 +0000520 cmdstr++;
521 break;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +0200522 }
523 if (!isspace(*cmdstr))
Denis Vlasenko80778502006-10-25 12:46:46 +0000524 break;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +0200525 cmdstr++;
Rob Landley25d82392004-04-01 09:23:30 +0000526 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000527 sed_cmd->string = xstrdup(cmdstr);
Denis Vlasenko40276642007-11-13 16:48:10 +0000528 /* "\anychar" -> "anychar" */
529 parse_escapes(sed_cmd->string, sed_cmd->string, strlen(cmdstr), '\0', '\0');
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000530 cmdstr += strlen(cmdstr);
Denys Vlasenko52d83702011-05-03 00:51:43 +0200531 }
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000532 /* handle file cmds: (r)ead */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200533 else if (idx <= IDX_w) { /* r,w */
Mimi Li37a79c02012-07-24 13:20:12 +0200534 if (idx < IDX_w) { /* r */
535 if (sed_cmd->end_line || sed_cmd->end_match)
536 bb_error_msg_and_die("command '%c' uses only one address", sed_cmd->cmd);
537 }
Denis Vlasenko68404f12008-03-17 09:00:54 +0000538 cmdstr += parse_file_cmd(/*sed_cmd,*/ cmdstr, &sed_cmd->string);
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000539 if (sed_cmd->cmd == 'w') {
Denis Vlasenko5415c852008-07-21 23:05:26 +0000540 sed_cmd->sw_file = xfopen_for_write(sed_cmd->string);
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000541 sed_cmd->sw_last_char = '\n';
542 }
Denys Vlasenko52d83702011-05-03 00:51:43 +0200543 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000544 /* handle branch commands */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200545 else if (idx <= IDX_T) { /* :,b,t,T */
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000546 int length;
547
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000548 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000549 length = strcspn(cmdstr, semicolon_whitespace);
550 if (length) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000551 sed_cmd->string = xstrndup(cmdstr, length);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000552 cmdstr += length;
553 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000554 }
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000555 /* translation command */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200556 else if (idx == IDX_y) {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000557 char *match, *replace;
Denis Vlasenko80778502006-10-25 12:46:46 +0000558 int i = cmdstr[0];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000559
Denis Vlasenko80778502006-10-25 12:46:46 +0000560 cmdstr += parse_regex_delim(cmdstr, &match, &replace)+1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000561 /* \n already parsed, but \delimiter needs unescaping. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000562 parse_escapes(match, match, strlen(match), i, i);
563 parse_escapes(replace, replace, strlen(replace), i, i);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000564
Rob Landley9ffd4232006-05-21 18:30:35 +0000565 sed_cmd->string = xzalloc((strlen(match) + 1) * 2);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000566 for (i = 0; match[i] && replace[i]; i++) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000567 sed_cmd->string[i*2] = match[i];
568 sed_cmd->string[i*2+1] = replace[i];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000569 }
570 free(match);
571 free(replace);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000572 }
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000573 /* if it wasnt a single-letter command that takes no arguments
574 * then it must be an invalid command.
575 */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200576 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 +0000577 bb_error_msg_and_die("unsupported command %c", sed_cmd->cmd);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000578 }
Mark Whitley70705d72000-07-14 19:06:30 +0000579
580 /* give back whatever's left over */
Denis Vlasenko80778502006-10-25 12:46:46 +0000581 return cmdstr;
Eric Andersen50d63601999-11-09 01:47:36 +0000582}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000583
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000584
585/* Parse address+command sets, skipping comment lines. */
586
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000587static void add_cmd(const char *cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000588{
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000589 sed_cmd_t *sed_cmd;
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200590 unsigned len, n;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000591
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000592 /* Append this line to any unfinished line from last time. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000593 if (G.add_cmd_line) {
594 char *tp = xasprintf("%s\n%s", G.add_cmd_line, cmdstr);
595 free(G.add_cmd_line);
Denis Vlasenko945bd3d2007-04-12 21:20:25 +0000596 cmdstr = G.add_cmd_line = tp;
Rob Landley12d87552006-06-05 17:32:44 +0000597 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000598
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200599 /* If this line ends with unescaped backslash, request next line. */
600 n = len = strlen(cmdstr);
601 while (n && cmdstr[n-1] == '\\')
602 n--;
603 if ((len - n) & 1) { /* if odd number of trailing backslashes */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000604 if (!G.add_cmd_line)
605 G.add_cmd_line = xstrdup(cmdstr);
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200606 G.add_cmd_line[len-1] = '\0';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000607 return;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000608 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000609
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000610 /* Loop parsing all commands in this line. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000611 while (*cmdstr) {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000612 /* Skip leading whitespace and semicolons */
613 cmdstr += strspn(cmdstr, semicolon_whitespace);
614
615 /* If no more commands, exit. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000616 if (!*cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000617
618 /* if this is a comment, jump past it and keep going */
619 if (*cmdstr == '#') {
620 /* "#n" is the same as using -n on the command line */
Denis Vlasenko80778502006-10-25 12:46:46 +0000621 if (cmdstr[1] == 'n')
Denis Vlasenko17a15262007-03-26 20:48:46 +0000622 G.be_quiet++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000623 cmdstr = strpbrk(cmdstr, "\n\r");
624 if (!cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000625 continue;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000626 }
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000627
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000628 /* parse the command
629 * format is: [addr][,addr][!]cmd
630 * |----||-----||-|
631 * part1 part2 part3
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000632 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000633
Rob Landley9ffd4232006-05-21 18:30:35 +0000634 sed_cmd = xzalloc(sizeof(sed_cmd_t));
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000635
636 /* first part (if present) is an address: either a '$', a number or a /regex/ */
637 cmdstr += get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200638 sed_cmd->beg_line_orig = sed_cmd->beg_line;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000639
640 /* second part (if present) will begin with a comma */
641 if (*cmdstr == ',') {
642 int idx;
643
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000644 cmdstr++;
Denys Vlasenko63f4d322015-04-17 14:24:55 +0200645 if (*cmdstr == '+' && isdigit(cmdstr[1])) {
646 /* http://sed.sourceforge.net/sedfaq3.html#s3.3
647 * Under GNU sed 3.02+, ssed, and sed15+, <address2>
648 * may also be a notation of the form +num,
649 * indicating the next num lines after <address1> is
650 * matched.
651 * GNU sed 4.2.1 accepts even "+" (meaning "+0").
652 * We don't (we check for isdigit, see above), think
653 * about the "+-3" case.
654 */
655 char *end;
656 /* code is smaller compared to using &cmdstr here: */
657 idx = strtol(cmdstr+1, &end, 10);
658 sed_cmd->end_line = -2 - idx;
659 cmdstr = end;
660 } else {
661 idx = get_address(cmdstr, &sed_cmd->end_line, &sed_cmd->end_match);
662 cmdstr += idx;
663 idx--; /* if 0, trigger error check below */
664 }
665 if (idx < 0)
Denis Vlasenko80778502006-10-25 12:46:46 +0000666 bb_error_msg_and_die("no address after comma");
Denys Vlasenko63f4d322015-04-17 14:24:55 +0200667 sed_cmd->end_line_orig = sed_cmd->end_line;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000668 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000669
670 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000671 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000672
673 /* Check for inversion flag */
674 if (*cmdstr == '!') {
675 sed_cmd->invert = 1;
676 cmdstr++;
677
678 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000679 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000680 }
681
682 /* last part (mandatory) will be a command */
Denis Vlasenko80778502006-10-25 12:46:46 +0000683 if (!*cmdstr)
684 bb_error_msg_and_die("missing command");
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200685 sed_cmd->cmd = *cmdstr++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000686 cmdstr = parse_cmd_args(sed_cmd, cmdstr);
687
Denys Vlasenkoe93d1562013-07-08 01:43:40 +0200688 /* cmdstr now points past args.
689 * GNU sed requires a separator, if there are more commands,
690 * else it complains "char N: extra characters after command".
691 * Example: "sed 'p;d'". We also allow "sed 'pd'".
692 */
693
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000694 /* Add the command to the command array */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200695 *G.sed_cmd_tail = sed_cmd;
696 G.sed_cmd_tail = &sed_cmd->next;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000697 }
698
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000699 /* If we glued multiple lines together, free the memory. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000700 free(G.add_cmd_line);
701 G.add_cmd_line = NULL;
Mark Whitley6315ce62000-07-10 22:55:51 +0000702}
703
Rob Landleydcc28662004-11-25 07:21:47 +0000704/* Append to a string, reallocating memory as necessary. */
705
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000706#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000707
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000708static void pipe_putc(char c)
Eric Andersenc52a6b02001-11-10 10:49:42 +0000709{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000710 if (G.pipeline.idx == G.pipeline.len) {
711 G.pipeline.buf = xrealloc(G.pipeline.buf,
712 G.pipeline.len + PIPE_GROW);
713 G.pipeline.len += PIPE_GROW;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000714 }
Denis Vlasenko17a15262007-03-26 20:48:46 +0000715 G.pipeline.buf[G.pipeline.idx++] = c;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000716}
717
Rob Landley4795e4e2006-07-26 17:25:08 +0000718static void do_subst_w_backrefs(char *line, char *replace)
Mark Whitley97562bd2000-07-17 20:06:42 +0000719{
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200720 int i, j;
Mark Whitley97562bd2000-07-17 20:06:42 +0000721
722 /* go through the replacement string */
723 for (i = 0; replace[i]; i++) {
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200724 /* if we find a backreference (\1, \2, etc.) print the backref'ed text */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000725 if (replace[i] == '\\') {
726 unsigned backref = replace[++i] - '0';
727 if (backref <= 9) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000728 /* print out the text held in G.regmatch[backref] */
729 if (G.regmatch[backref].rm_so != -1) {
730 j = G.regmatch[backref].rm_so;
731 while (j < G.regmatch[backref].rm_eo)
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000732 pipe_putc(line[j++]);
733 }
734 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000735 }
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000736 /* I _think_ it is impossible to get '\' to be
737 * the last char in replace string. Thus we dont check
738 * for replace[i] == NUL. (counterexample anyone?) */
739 /* if we find a backslash escaped character, print the character */
740 pipe_putc(replace[i]);
741 continue;
Mark Whitley97562bd2000-07-17 20:06:42 +0000742 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000743 /* if we find an unescaped '&' print out the whole matched text. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000744 if (replace[i] == '&') {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000745 j = G.regmatch[0].rm_so;
746 while (j < G.regmatch[0].rm_eo)
Denis Vlasenko80778502006-10-25 12:46:46 +0000747 pipe_putc(line[j++]);
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000748 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000749 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000750 /* Otherwise just output the character. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000751 pipe_putc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000752 }
753}
754
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200755static int do_subst_command(sed_cmd_t *sed_cmd, char **line_p)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000756{
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200757 char *line = *line_p;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000758 unsigned match_count = 0;
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200759 bool altered = 0;
760 bool prev_match_empty = 1;
761 bool tried_at_eol = 0;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000762 regex_t *current_regex;
763
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200764 current_regex = sed_cmd->sub_match;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000765 /* Handle empty regex. */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200766 if (!current_regex) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000767 current_regex = G.previous_regex_ptr;
Denis Vlasenko80778502006-10-25 12:46:46 +0000768 if (!current_regex)
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000769 bb_error_msg_and_die("no previous regexp");
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200770 }
771 G.previous_regex_ptr = current_regex;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000772
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000773 /* Find the first match */
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100774 dbg("matching '%s'", line);
775 if (REG_NOMATCH == regexec(current_regex, line, 10, G.regmatch, 0)) {
776 dbg("no match");
Mark Whitley2dc192f2000-11-03 19:47:00 +0000777 return 0;
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100778 }
779 dbg("match");
Mark Whitley2dc192f2000-11-03 19:47:00 +0000780
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000781 /* Initialize temporary output buffer. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000782 G.pipeline.buf = xmalloc(PIPE_GROW);
783 G.pipeline.len = PIPE_GROW;
784 G.pipeline.idx = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000785
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000786 /* Now loop through, substituting for matches */
787 do {
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200788 int start = G.regmatch[0].rm_so;
789 int end = G.regmatch[0].rm_eo;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000790 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000791
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000792 match_count++;
793
794 /* If we aren't interested in this match, output old line to
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200795 * end of match and continue */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000796 if (sed_cmd->which_match
797 && (sed_cmd->which_match != match_count)
798 ) {
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200799 for (i = 0; i < end; i++)
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200800 pipe_putc(*line++);
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200801 /* Null match? Print one more char */
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200802 if (start == end && *line)
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200803 pipe_putc(*line++);
Denys Vlasenkob84dafb2012-04-24 19:27:34 +0200804 goto next;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000805 }
806
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200807 /* Print everything before the match */
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200808 for (i = 0; i < start; i++)
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200809 pipe_putc(line[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000810
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200811 /* Then print the substitution string,
812 * unless we just matched empty string after non-empty one.
813 * Example: string "cccd", pattern "c*", repl "R":
814 * result is "RdR", not "RRdR": first match "ccc",
815 * second is "" before "d", third is "" after "d".
816 * Second match is NOT replaced!
817 */
Denys Vlasenko84406e42012-06-07 16:34:57 +0200818 if (prev_match_empty || start != 0 || start != end) {
Denys Vlasenko37ca36a2012-06-08 10:25:31 +0200819 //dbg("%d %d %d", prev_match_empty, start, end);
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200820 dbg("inserting replacement at %d in '%s'", start, line);
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200821 do_subst_w_backrefs(line, sed_cmd->string);
Denys Vlasenko37ca36a2012-06-08 10:25:31 +0200822 /* Flag that something has changed */
823 altered = 1;
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200824 } else {
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200825 dbg("NOT inserting replacement at %d in '%s'", start, line);
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200826 }
Mark Whitley97562bd2000-07-17 20:06:42 +0000827
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200828 /* If matched string is empty (f.e. "c*" pattern),
829 * copy verbatim one char after it before attempting more matches
830 */
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200831 prev_match_empty = (start == end);
Denys Vlasenko37ca36a2012-06-08 10:25:31 +0200832 if (prev_match_empty) {
833 if (!line[end]) {
834 tried_at_eol = 1;
835 } else {
836 pipe_putc(line[end]);
837 end++;
838 }
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200839 }
840
841 /* Advance past the match */
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200842 dbg("line += %d", end);
843 line += end;
Mark Whitley97562bd2000-07-17 20:06:42 +0000844
Mark Whitley2dc192f2000-11-03 19:47:00 +0000845 /* if we're not doing this globally, get out now */
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100846 if (sed_cmd->which_match != 0)
847 break;
Denys Vlasenkob84dafb2012-04-24 19:27:34 +0200848 next:
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200849 /* Exit if we are at EOL and already tried matching at it */
850 if (*line == '\0') {
851 if (tried_at_eol)
852 break;
853 tried_at_eol = 1;
854 }
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200855
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200856//maybe (end ? REG_NOTBOL : 0) instead of unconditional REG_NOTBOL?
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100857 } while (regexec(current_regex, line, 10, G.regmatch, REG_NOTBOL) != REG_NOMATCH);
Mark Whitley2dc192f2000-11-03 19:47:00 +0000858
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000859 /* Copy rest of string into output pipeline */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200860 while (1) {
861 char c = *line++;
862 pipe_putc(c);
863 if (c == '\0')
864 break;
865 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000866
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200867 free(*line_p);
868 *line_p = G.pipeline.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000869 return altered;
870}
Mark Whitley6315ce62000-07-10 22:55:51 +0000871
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000872/* Set command pointer to point to this label. (Does not handle null label.) */
Rob Landley4795e4e2006-07-26 17:25:08 +0000873static sed_cmd_t *branch_to(char *label)
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000874{
875 sed_cmd_t *sed_cmd;
Glenn L McGrathd4185b02003-04-11 17:10:23 +0000876
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200877 for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000878 if (sed_cmd->cmd == ':' && sed_cmd->string && !strcmp(sed_cmd->string, label)) {
879 return sed_cmd;
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000880 }
881 }
Denis Vlasenko80778502006-10-25 12:46:46 +0000882 bb_error_msg_and_die("can't find label for jump to '%s'", label);
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000883}
Mark Whitley6315ce62000-07-10 22:55:51 +0000884
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000885static void append(char *s)
886{
Denys Vlasenko9d46a7a2013-10-30 10:22:47 +0100887 llist_add_to_end(&G.append_head, s);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000888}
889
Denys Vlasenkoc44539f2013-10-30 14:25:22 +0100890/* Output line of text. */
891/* Note:
892 * The tricks with NO_EOL_CHAR and last_puts_char are there to emulate gnu sed.
893 * Without them, we had this:
894 * echo -n thingy >z1
895 * echo -n again >z2
896 * >znull
897 * sed "s/i/z/" z1 z2 znull | hexdump -vC
898 * output:
899 * gnu sed 4.1.5:
900 * 00000000 74 68 7a 6e 67 79 0a 61 67 61 7a 6e |thzngy.agazn|
901 * bbox:
902 * 00000000 74 68 7a 6e 67 79 61 67 61 7a 6e |thzngyagazn|
Rob Landleydcc28662004-11-25 07:21:47 +0000903 */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000904enum {
905 NO_EOL_CHAR = 1,
Denis Vlasenko86811802007-01-29 17:10:19 +0000906 LAST_IS_NUL = 2,
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000907};
Denys Vlasenkoc44539f2013-10-30 14:25:22 +0100908static void puts_maybe_newline(char *s, FILE *file, char *last_puts_char, char last_gets_char)
909{
910 char lpc = *last_puts_char;
911
912 /* Need to insert a '\n' between two files because first file's
913 * last line wasn't terminated? */
914 if (lpc != '\n' && lpc != '\0') {
915 fputc('\n', file);
916 lpc = '\n';
917 }
918 fputs(s, file);
919
920 /* 'x' - just something which is not '\n', '\0' or NO_EOL_CHAR */
921 if (s[0])
922 lpc = 'x';
923
924 /* had trailing '\0' and it was last char of file? */
925 if (last_gets_char == LAST_IS_NUL) {
926 fputc('\0', file);
927 lpc = 'x'; /* */
928 } else
929 /* had trailing '\n' or '\0'? */
930 if (last_gets_char != NO_EOL_CHAR) {
931 fputc(last_gets_char, file);
932 lpc = last_gets_char;
933 }
934
935 if (ferror(file)) {
936 xfunc_error_retval = 4; /* It's what gnu sed exits with... */
937 bb_error_msg_and_die(bb_msg_write_error);
938 }
939 *last_puts_char = lpc;
940}
941
942static void flush_append(char *last_puts_char, char last_gets_char)
943{
944 char *data;
945
946 /* Output appended lines. */
947 while ((data = (char *)llist_pop(&G.append_head))) {
948 puts_maybe_newline(data, G.nonstdout, last_puts_char, last_gets_char);
949 free(data);
950 }
951}
952
953/* Get next line of input from G.input_file_list, flushing append buffer and
954 * noting if we ran out of files without a newline on the last line we read.
955 */
956static char *get_next_line(char *gets_char, char *last_puts_char, char last_gets_char)
Rob Landleydcc28662004-11-25 07:21:47 +0000957{
Denis Vlasenko80778502006-10-25 12:46:46 +0000958 char *temp = NULL;
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000959 int len;
960 char gc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000961
Denys Vlasenkoc44539f2013-10-30 14:25:22 +0100962 flush_append(last_puts_char, last_gets_char);
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000963
964 /* will be returned if last line in the file
965 * doesn't end with either '\n' or '\0' */
966 gc = NO_EOL_CHAR;
Denys Vlasenkodeb07692013-11-28 12:08:51 +0100967 for (; G.current_input_file <= G.last_input_file; G.current_input_file++) {
Denys Vlasenko259b3c02013-11-28 03:14:16 +0100968 FILE *fp = G.current_fp;
969 if (!fp) {
970 const char *path = G.input_file_list[G.current_input_file];
971 fp = stdin;
972 if (path != bb_msg_standard_input) {
973 fp = fopen_or_warn(path, "r");
974 if (!fp) {
975 G.exitcode = EXIT_FAILURE;
976 continue;
977 }
978 }
979 G.current_fp = fp;
980 }
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000981 /* Read line up to a newline or NUL byte, inclusive,
982 * return malloc'ed char[]. length of the chunk read
983 * is stored in len. NULL if EOF/error */
Denis Vlasenko86811802007-01-29 17:10:19 +0000984 temp = bb_get_chunk_from_file(fp, &len);
Rob Landley2b26fd52006-02-24 02:30:39 +0000985 if (temp) {
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000986 /* len > 0 here, it's ok to do temp[len-1] */
987 char c = temp[len-1];
988 if (c == '\n' || c == '\0') {
989 temp[len-1] = '\0';
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000990 gc = c;
Denis Vlasenko86811802007-01-29 17:10:19 +0000991 if (c == '\0') {
992 int ch = fgetc(fp);
993 if (ch != EOF)
994 ungetc(ch, fp);
995 else
996 gc = LAST_IS_NUL;
997 }
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000998 }
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000999 /* else we put NO_EOL_CHAR into *gets_char */
1000 break;
1001
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001002 /* NB: I had the idea of peeking next file(s) and returning
1003 * NO_EOL_CHAR only if it is the *last* non-empty
1004 * input file. But there is a case where this won't work:
1005 * file1: "a woo\nb woo"
1006 * file2: "c no\nd no"
1007 * sed -ne 's/woo/bang/p' input1 input2 => "a bang\nb bang"
1008 * (note: *no* newline after "b bang"!) */
Denis Vlasenko8b22b072006-12-02 17:58:10 +00001009 }
1010 /* Close this file and advance to next one */
Denys Vlasenko259b3c02013-11-28 03:14:16 +01001011 fclose_if_not_stdin(fp);
1012 G.current_fp = NULL;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001013 }
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001014 *gets_char = gc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001015 return temp;
1016}
1017
Denis Vlasenko17a15262007-03-26 20:48:46 +00001018#define sed_puts(s, n) (puts_maybe_newline(s, G.nonstdout, &last_puts_char, n))
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001019
Denis Vlasenko8274e062007-08-06 03:41:08 +00001020static int beg_match(sed_cmd_t *sed_cmd, const char *pattern_space)
1021{
1022 int retval = sed_cmd->beg_match && !regexec(sed_cmd->beg_match, pattern_space, 0, NULL, 0);
1023 if (retval)
1024 G.previous_regex_ptr = sed_cmd->beg_match;
1025 return retval;
1026}
1027
Rob Landley2b26fd52006-02-24 02:30:39 +00001028/* Process all the lines in all the files */
1029
Rob Landleydcc28662004-11-25 07:21:47 +00001030static void process_files(void)
Mark Whitley6315ce62000-07-10 22:55:51 +00001031{
Rob Landleyce4f0e92004-10-30 06:54:19 +00001032 char *pattern_space, *next_line;
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001033 int linenum = 0;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001034 char last_puts_char = '\n';
1035 char last_gets_char, next_gets_char;
Denis Vlasenko2ea630f2006-12-10 02:52:19 +00001036 sed_cmd_t *sed_cmd;
1037 int substituted;
Mark Whitley6315ce62000-07-10 22:55:51 +00001038
Rob Landley2b26fd52006-02-24 02:30:39 +00001039 /* Prime the pump */
Denys Vlasenkoc44539f2013-10-30 14:25:22 +01001040 next_line = get_next_line(&next_gets_char, &last_puts_char, '\n' /*last_gets_char*/);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001041
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001042 /* Go through every line in each file */
Denis Vlasenkof39c7c02008-02-28 17:59:01 +00001043 again:
Denis Vlasenko2ea630f2006-12-10 02:52:19 +00001044 substituted = 0;
Glenn L McGrath505bd0f2003-03-08 05:21:02 +00001045
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001046 /* Advance to next line. Stop if out of lines. */
1047 pattern_space = next_line;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001048 if (!pattern_space)
1049 return;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001050 last_gets_char = next_gets_char;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001051
1052 /* Read one line in advance so we can act on the last line,
1053 * the '$' address */
Denys Vlasenkoc44539f2013-10-30 14:25:22 +01001054 next_line = get_next_line(&next_gets_char, &last_puts_char, last_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001055 linenum++;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001056
1057 /* For every line, go through all the commands */
Denis Vlasenkof39c7c02008-02-28 17:59:01 +00001058 restart:
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001059 for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001060 int old_matched, matched;
Eric Andersen52a3c272003-12-23 08:53:51 +00001061
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001062 old_matched = sed_cmd->in_match;
Mark Whitley0915c4b2001-06-11 23:50:06 +00001063
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001064 /* Determine if this command matches this line: */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001065
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001066 dbg("match1:%d", sed_cmd->in_match);
1067 dbg("match2:%d", (!sed_cmd->beg_line && !sed_cmd->end_line
1068 && !sed_cmd->beg_match && !sed_cmd->end_match));
1069 dbg("match3:%d", (sed_cmd->beg_line > 0
1070 && (sed_cmd->end_line || sed_cmd->end_match
1071 ? (sed_cmd->beg_line <= linenum)
1072 : (sed_cmd->beg_line == linenum)
1073 )
1074 ));
1075 dbg("match4:%d", (beg_match(sed_cmd, pattern_space)));
1076 dbg("match5:%d", (sed_cmd->beg_line == -1 && next_line == NULL));
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001077
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001078 /* Are we continuing a previous multi-line match? */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001079 sed_cmd->in_match = sed_cmd->in_match
1080 /* Or is no range necessary? */
1081 || (!sed_cmd->beg_line && !sed_cmd->end_line
1082 && !sed_cmd->beg_match && !sed_cmd->end_match)
1083 /* Or did we match the start of a numerical range? */
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001084 || (sed_cmd->beg_line > 0
1085 && (sed_cmd->end_line || sed_cmd->end_match
Denys Vlasenkoc4679242010-06-04 01:31:48 +02001086 /* note: even if end is numeric and is < linenum too,
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001087 * GNU sed matches! We match too, therefore we don't
1088 * check here that linenum <= end.
1089 * Example:
1090 * printf '1\n2\n3\n4\n' | sed -n '1{N;N;d};1p;2,3p;3p;4p'
1091 * first three input lines are deleted;
1092 * 4th line is matched and printed
1093 * by "2,3" (!) and by "4" ranges
1094 */
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001095 ? (sed_cmd->beg_line <= linenum) /* N,end */
1096 : (sed_cmd->beg_line == linenum) /* N */
1097 )
1098 )
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001099 /* Or does this line match our begin address regex? */
Denis Vlasenko8274e062007-08-06 03:41:08 +00001100 || (beg_match(sed_cmd, pattern_space))
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001101 /* Or did we match last line of input? */
1102 || (sed_cmd->beg_line == -1 && next_line == NULL);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001103
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001104 /* Snapshot the value */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001105 matched = sed_cmd->in_match;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001106
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001107 dbg("cmd:'%c' matched:%d beg_line:%d end_line:%d linenum:%d",
1108 sed_cmd->cmd, matched, sed_cmd->beg_line, sed_cmd->end_line, linenum);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001109
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001110 /* Is this line the end of the current match? */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001111
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001112 if (matched) {
Denys Vlasenko63f4d322015-04-17 14:24:55 +02001113 if (sed_cmd->end_line <= -2) {
1114 /* address2 is +N, i.e. N lines from beg_line */
1115 sed_cmd->end_line = linenum + (-sed_cmd->end_line - 2);
1116 }
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001117 /* once matched, "n,xxx" range is dead, disabling it */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001118 if (sed_cmd->beg_line > 0) {
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001119 sed_cmd->beg_line = -2;
Denys Vlasenko2e284a42010-08-01 04:14:46 +02001120 }
Denys Vlasenko63f4d322015-04-17 14:24:55 +02001121 dbg("end1:%d", sed_cmd->end_line ? sed_cmd->end_line == -1
1122 ? !next_line : (sed_cmd->end_line <= linenum)
1123 : !sed_cmd->end_match);
1124 dbg("end2:%d", sed_cmd->end_match && old_matched
1125 && !regexec(sed_cmd->end_match,pattern_space, 0, NULL, 0));
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001126 sed_cmd->in_match = !(
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001127 /* has the ending line come, or is this a single address command? */
Denys Vlasenko52d83702011-05-03 00:51:43 +02001128 (sed_cmd->end_line
1129 ? sed_cmd->end_line == -1
1130 ? !next_line
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001131 : (sed_cmd->end_line <= linenum)
1132 : !sed_cmd->end_match
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001133 )
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001134 /* or does this line matches our last address regex */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001135 || (sed_cmd->end_match && old_matched
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001136 && (regexec(sed_cmd->end_match,
Denys Vlasenko6830ade2013-01-15 13:58:01 +01001137 pattern_space, 0, NULL, 0) == 0)
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001138 )
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001139 );
Erik Andersene49d5ec2000-02-08 19:58:47 +00001140 }
Erik Andersen1266a131999-12-29 22:19:46 +00001141
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001142 /* Skip blocks of commands we didn't match */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001143 if (sed_cmd->cmd == '{') {
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001144 if (sed_cmd->invert ? matched : !matched) {
Denys Vlasenkof2c16ed2010-04-20 04:00:03 -04001145 unsigned nest_cnt = 0;
1146 while (1) {
1147 if (sed_cmd->cmd == '{')
1148 nest_cnt++;
1149 if (sed_cmd->cmd == '}') {
1150 nest_cnt--;
1151 if (nest_cnt == 0)
1152 break;
1153 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001154 sed_cmd = sed_cmd->next;
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001155 if (!sed_cmd)
1156 bb_error_msg_and_die("unterminated {");
1157 }
1158 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001159 continue;
1160 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001161
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001162 /* Okay, so did this line match? */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001163 if (sed_cmd->invert ? matched : !matched)
1164 continue; /* no */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001165
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001166 /* Update last used regex in case a blank substitute BRE is found */
1167 if (sed_cmd->beg_match) {
1168 G.previous_regex_ptr = sed_cmd->beg_match;
1169 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001170
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001171 /* actual sedding */
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +01001172 dbg("pattern_space:'%s' next_line:'%s' cmd:%c",
1173 pattern_space, next_line, sed_cmd->cmd);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001174 switch (sed_cmd->cmd) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001175
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001176 /* Print line number */
1177 case '=':
1178 fprintf(G.nonstdout, "%d\n", linenum);
1179 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001180
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001181 /* Write the current pattern space up to the first newline */
1182 case 'P':
1183 {
1184 char *tmp = strchr(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001185 if (tmp) {
1186 *tmp = '\0';
1187 /* TODO: explain why '\n' below */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001188 sed_puts(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001189 *tmp = '\n';
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001190 break;
1191 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001192 /* Fall Through */
1193 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001194
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001195 /* Write the current pattern space to output */
1196 case 'p':
1197 /* NB: we print this _before_ the last line
1198 * (of current file) is printed. Even if
1199 * that line is nonterminated, we print
1200 * '\n' here (gnu sed does the same) */
1201 sed_puts(pattern_space, '\n');
1202 break;
1203 /* Delete up through first newline */
1204 case 'D':
1205 {
1206 char *tmp = strchr(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001207 if (tmp) {
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001208 overlapping_strcpy(pattern_space, tmp + 1);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001209 goto restart;
1210 }
1211 }
1212 /* discard this line. */
1213 case 'd':
1214 goto discard_line;
1215
1216 /* Substitute with regex */
1217 case 's':
1218 if (!do_subst_command(sed_cmd, &pattern_space))
1219 break;
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +02001220 dbg("do_subst_command succeeded:'%s'", pattern_space);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001221 substituted |= 1;
1222
1223 /* handle p option */
1224 if (sed_cmd->sub_p)
1225 sed_puts(pattern_space, last_gets_char);
1226 /* handle w option */
1227 if (sed_cmd->sw_file)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001228 puts_maybe_newline(
1229 pattern_space, sed_cmd->sw_file,
1230 &sed_cmd->sw_last_char, last_gets_char);
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 /* Append line to linked list to be printed later */
1234 case 'a':
Denys Vlasenko9d46a7a2013-10-30 10:22:47 +01001235 append(xstrdup(sed_cmd->string));
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001236 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001237
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001238 /* Insert text before this line */
1239 case 'i':
1240 sed_puts(sed_cmd->string, '\n');
1241 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001242
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001243 /* Cut and paste text (replace) */
1244 case 'c':
1245 /* Only triggers on last line of a matching range. */
1246 if (!sed_cmd->in_match)
Denys Vlasenko96a18332010-04-19 22:36:07 -04001247 sed_puts(sed_cmd->string, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001248 goto discard_line;
1249
1250 /* Read file, append contents to output */
1251 case 'r':
1252 {
1253 FILE *rfile;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001254 rfile = fopen_for_read(sed_cmd->string);
1255 if (rfile) {
1256 char *line;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001257 while ((line = xmalloc_fgetline(rfile))
1258 != NULL)
1259 append(line);
Denys Vlasenko9d46a7a2013-10-30 10:22:47 +01001260 fclose(rfile);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001261 }
1262
1263 break;
1264 }
1265
1266 /* Write pattern space to file. */
1267 case 'w':
1268 puts_maybe_newline(
1269 pattern_space, sed_cmd->sw_file,
1270 &sed_cmd->sw_last_char, last_gets_char);
1271 break;
1272
1273 /* Read next line from input */
1274 case 'n':
1275 if (!G.be_quiet)
1276 sed_puts(pattern_space, last_gets_char);
1277 if (next_line) {
1278 free(pattern_space);
1279 pattern_space = next_line;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001280 last_gets_char = next_gets_char;
Denys Vlasenkoc44539f2013-10-30 14:25:22 +01001281 next_line = get_next_line(&next_gets_char, &last_puts_char, last_gets_char);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001282 substituted = 0;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001283 linenum++;
1284 break;
1285 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001286 /* fall through */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001287
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001288 /* Quit. End of script, end of input. */
1289 case 'q':
1290 /* Exit the outer while loop */
1291 free(next_line);
1292 next_line = NULL;
1293 goto discard_commands;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001294
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001295 /* Append the next line to the current line */
1296 case 'N':
1297 {
1298 int len;
1299 /* If no next line, jump to end of script and exit. */
Denys Vlasenko0d555fc2010-08-16 16:26:33 +02001300 /* http://www.gnu.org/software/sed/manual/sed.html:
1301 * "Most versions of sed exit without printing anything
1302 * when the N command is issued on the last line of
1303 * a file. GNU sed prints pattern space before exiting
1304 * unless of course the -n command switch has been
1305 * specified. This choice is by design."
1306 */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001307 if (next_line == NULL) {
Denys Vlasenko0d555fc2010-08-16 16:26:33 +02001308 //goto discard_line;
1309 goto discard_commands; /* GNU behavior */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001310 }
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001311 /* Append next_line, read new next_line. */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001312 len = strlen(pattern_space);
Denys Vlasenko90377872010-01-08 09:07:50 +01001313 pattern_space = xrealloc(pattern_space, len + strlen(next_line) + 2);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001314 pattern_space[len] = '\n';
1315 strcpy(pattern_space + len+1, next_line);
1316 last_gets_char = next_gets_char;
Denys Vlasenkoc44539f2013-10-30 14:25:22 +01001317 next_line = get_next_line(&next_gets_char, &last_puts_char, last_gets_char);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001318 linenum++;
1319 break;
1320 }
1321
1322 /* Test/branch if substitution occurred */
1323 case 't':
1324 if (!substituted) break;
1325 substituted = 0;
1326 /* Fall through */
1327 /* Test/branch if substitution didn't occur */
1328 case 'T':
1329 if (substituted) break;
1330 /* Fall through */
1331 /* Branch to label */
1332 case 'b':
1333 if (!sed_cmd->string) goto discard_commands;
1334 else sed_cmd = branch_to(sed_cmd->string);
1335 break;
1336 /* Transliterate characters */
1337 case 'y':
1338 {
1339 int i, j;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001340 for (i = 0; pattern_space[i]; i++) {
1341 for (j = 0; sed_cmd->string[j]; j += 2) {
1342 if (pattern_space[i] == sed_cmd->string[j]) {
1343 pattern_space[i] = sed_cmd->string[j + 1];
1344 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001345 }
1346 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001347 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001348
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001349 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001350 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001351 case 'g': /* Replace pattern space with hold space */
1352 free(pattern_space);
1353 pattern_space = xstrdup(G.hold_space ? G.hold_space : "");
1354 break;
1355 case 'G': /* Append newline and hold space to pattern space */
1356 {
1357 int pattern_space_size = 2;
1358 int hold_space_size = 0;
1359
1360 if (pattern_space)
1361 pattern_space_size += strlen(pattern_space);
1362 if (G.hold_space)
1363 hold_space_size = strlen(G.hold_space);
1364 pattern_space = xrealloc(pattern_space,
1365 pattern_space_size + hold_space_size);
1366 if (pattern_space_size == 2)
1367 pattern_space[0] = 0;
1368 strcat(pattern_space, "\n");
1369 if (G.hold_space)
1370 strcat(pattern_space, G.hold_space);
1371 last_gets_char = '\n';
1372
1373 break;
1374 }
1375 case 'h': /* Replace hold space with pattern space */
1376 free(G.hold_space);
1377 G.hold_space = xstrdup(pattern_space);
1378 break;
1379 case 'H': /* Append newline and pattern space to hold space */
1380 {
1381 int hold_space_size = 2;
1382 int pattern_space_size = 0;
1383
1384 if (G.hold_space)
1385 hold_space_size += strlen(G.hold_space);
1386 if (pattern_space)
1387 pattern_space_size = strlen(pattern_space);
1388 G.hold_space = xrealloc(G.hold_space,
1389 hold_space_size + pattern_space_size);
1390
1391 if (hold_space_size == 2)
1392 *G.hold_space = 0;
1393 strcat(G.hold_space, "\n");
1394 if (pattern_space)
1395 strcat(G.hold_space, pattern_space);
1396
1397 break;
1398 }
1399 case 'x': /* Exchange hold and pattern space */
1400 {
1401 char *tmp = pattern_space;
Denys Vlasenko90a99042009-09-06 02:36:23 +02001402 pattern_space = G.hold_space ? G.hold_space : xzalloc(1);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001403 last_gets_char = '\n';
1404 G.hold_space = tmp;
1405 break;
1406 }
1407 } /* switch */
1408 } /* for each cmd */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001409
1410 /*
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001411 * Exit point from sedding...
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001412 */
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001413 discard_commands:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001414 /* we will print the line unless we were told to be quiet ('-n')
1415 or if the line was suppressed (ala 'd'elete) */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001416 if (!G.be_quiet)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001417 sed_puts(pattern_space, last_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001418
1419 /* Delete and such jump here. */
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001420 discard_line:
Denys Vlasenkoc44539f2013-10-30 14:25:22 +01001421 flush_append(&last_puts_char, last_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001422 free(pattern_space);
1423
1424 goto again;
Erik Andersen1266a131999-12-29 22:19:46 +00001425}
1426
Glenn L McGrath42c25732003-10-04 05:27:56 +00001427/* It is possible to have a command line argument with embedded
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001428 * newlines. This counts as multiple command lines.
1429 * However, newline can be escaped: 's/e/z\<newline>z/'
Denys Vlasenko40ab27a2013-07-08 02:04:44 +02001430 * add_cmd() handles this.
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001431 */
Glenn L McGrath42c25732003-10-04 05:27:56 +00001432
1433static void add_cmd_block(char *cmdstr)
1434{
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001435 char *sv, *eol;
Glenn L McGrath42c25732003-10-04 05:27:56 +00001436
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001437 cmdstr = sv = xstrdup(cmdstr);
1438 do {
1439 eol = strchr(cmdstr, '\n');
Denys Vlasenko40ab27a2013-07-08 02:04:44 +02001440 if (eol)
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001441 *eol = '\0';
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001442 add_cmd(cmdstr);
1443 cmdstr = eol + 1;
1444 } while (eol);
1445 free(sv);
Glenn L McGrath42c25732003-10-04 05:27:56 +00001446}
1447
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001448int sed_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001449int sed_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001450{
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001451 unsigned opt;
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001452 llist_t *opt_e, *opt_f;
Simon B8c343952012-05-06 13:59:15 +02001453 char *opt_i;
1454
1455#if ENABLE_LONG_OPTS
1456 static const char sed_longopts[] ALIGN1 =
1457 /* name has_arg short */
1458 "in-place\0" Optional_argument "i"
1459 "regexp-extended\0" No_argument "r"
1460 "quiet\0" No_argument "n"
1461 "silent\0" No_argument "n"
1462 "expression\0" Required_argument "e"
1463 "file\0" Required_argument "f";
1464#endif
1465
Denis Vlasenko74324c82007-06-04 10:16:52 +00001466 INIT_G();
Rob Landleye3f5a3f2006-05-09 03:53:55 +00001467
Mark Whitley858c1ad2000-07-11 21:38:47 +00001468 /* destroy command strings on exit */
Rob Landley0b656282006-05-08 22:17:23 +00001469 if (ENABLE_FEATURE_CLEAN_UP) atexit(sed_free_and_close_stuff);
Mark Whitley858c1ad2000-07-11 21:38:47 +00001470
Rob Landleyfae1dc82005-11-20 07:44:35 +00001471 /* Lie to autoconf when it starts asking stupid questions. */
Simon B8c343952012-05-06 13:59:15 +02001472 if (argv[1] && strcmp(argv[1], "--version") == 0) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001473 puts("This is not GNU sed version 4.0");
1474 return 0;
Eric Andersenc06f5682004-02-04 10:57:46 +00001475 }
Eric Andersenc06f5682004-02-04 10:57:46 +00001476
Mark Whitley6315ce62000-07-10 22:55:51 +00001477 /* do normal option parsing */
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001478 opt_e = opt_f = NULL;
Simon B8c343952012-05-06 13:59:15 +02001479 opt_i = NULL;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001480 opt_complementary = "e::f::" /* can occur multiple times */
1481 "nn"; /* count -n */
Simon B8c343952012-05-06 13:59:15 +02001482
1483 IF_LONG_OPTS(applet_long_options = sed_longopts);
1484
Denys Vlasenko2e284a42010-08-01 04:14:46 +02001485 /* -i must be first, to match OPT_in_place definition */
David A. Wheeleraf0cdee2013-10-29 00:52:48 +01001486 /* -E is a synonym of -r:
1487 * GNU sed 4.2.1 mentions it in neither --help
1488 * nor manpage, but does recognize it.
1489 */
1490 opt = getopt32(argv, "i::rEne:f:", &opt_i, &opt_e, &opt_f,
Denis Vlasenko17a15262007-03-26 20:48:46 +00001491 &G.be_quiet); /* counter for -n */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001492 //argc -= optind;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001493 argv += optind;
1494 if (opt & OPT_in_place) { // -i
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001495 atexit(cleanup_outname);
1496 }
David A. Wheeleraf0cdee2013-10-29 00:52:48 +01001497 if (opt & (2|4))
1498 G.regex_type |= REG_EXTENDED; // -r or -E
1499 //if (opt & 8)
1500 // G.be_quiet++; // -n (implemented with a counter instead)
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001501 while (opt_e) { // -e
Denis Vlasenkod50dda82008-06-15 05:40:56 +00001502 add_cmd_block(llist_pop(&opt_e));
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001503 }
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001504 while (opt_f) { // -f
1505 char *line;
1506 FILE *cmdfile;
Denis Vlasenko5415c852008-07-21 23:05:26 +00001507 cmdfile = xfopen_for_read(llist_pop(&opt_f));
Denis Vlasenko8ee649a2008-03-26 20:04:27 +00001508 while ((line = xmalloc_fgetline(cmdfile)) != NULL) {
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001509 add_cmd(line);
1510 free(line);
1511 }
1512 fclose(cmdfile);
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001513 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001514 /* if we didn't get a pattern from -e or -f, use argv[0] */
David A. Wheeleraf0cdee2013-10-29 00:52:48 +01001515 if (!(opt & 0x30)) {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001516 if (!*argv)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001517 bb_show_usage();
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001518 add_cmd_block(*argv++);
Mark Whitley6315ce62000-07-10 22:55:51 +00001519 }
Glenn L McGrath42c25732003-10-04 05:27:56 +00001520 /* Flush any unfinished commands. */
1521 add_cmd("");
Mark Whitley6315ce62000-07-10 22:55:51 +00001522
Rob Landley53302f82004-02-18 09:54:15 +00001523 /* By default, we write to stdout */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001524 G.nonstdout = stdout;
Rob Landley53302f82004-02-18 09:54:15 +00001525
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001526 /* argv[0..(argc-1)] should be names of file to process. If no
Mark Whitley6315ce62000-07-10 22:55:51 +00001527 * files were specified or '-' was specified, take input from stdin.
1528 * Otherwise, we process all the files specified. */
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001529 G.input_file_list = argv;
1530 if (!argv[0]) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001531 if (opt & OPT_in_place)
Denis Vlasenko80778502006-10-25 12:46:46 +00001532 bb_error_msg_and_die(bb_msg_requires_arg, "-i");
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001533 argv[0] = (char*)bb_msg_standard_input;
1534 /* G.last_input_file = 0; - already is */
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001535 } else {
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001536 goto start;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001537
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001538 for (; *argv; argv++) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001539 struct stat statbuf;
1540 int nonstdoutfd;
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001541 sed_cmd_t *sed_cmd;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001542
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001543 G.last_input_file++;
1544 start:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001545 if (!(opt & OPT_in_place)) {
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001546 if (LONE_DASH(*argv)) {
1547 *argv = (char*)bb_msg_standard_input;
1548 process_files();
1549 }
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001550 continue;
1551 }
1552
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001553 /* -i: process each FILE separately: */
1554
Denys Vlasenkocd738712014-10-05 02:44:34 +02001555 if (stat(*argv, &statbuf) != 0) {
1556 bb_simple_perror_msg(*argv);
1557 G.exitcode = EXIT_FAILURE;
1558 G.current_input_file++;
1559 continue;
1560 }
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001561 G.outname = xasprintf("%sXXXXXX", *argv);
Alexander Shishkin67227372010-10-22 13:27:16 +02001562 nonstdoutfd = xmkstemp(G.outname);
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01001563 G.nonstdout = xfdopen_for_write(nonstdoutfd);
Denys Vlasenko57992482009-11-13 09:09:07 +01001564 /* Set permissions/owner of output file */
Denys Vlasenko3b727cc2010-06-18 02:12:56 +02001565 /* chmod'ing AFTER chown would preserve suid/sgid bits,
1566 * but GNU sed 4.2.1 does not preserve them either */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001567 fchmod(nonstdoutfd, statbuf.st_mode);
Denys Vlasenko57992482009-11-13 09:09:07 +01001568 fchown(nonstdoutfd, statbuf.st_uid, statbuf.st_gid);
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001569
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001570 process_files();
Denis Vlasenko17a15262007-03-26 20:48:46 +00001571 fclose(G.nonstdout);
Denis Vlasenko17a15262007-03-26 20:48:46 +00001572 G.nonstdout = stdout;
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001573
Simon B8c343952012-05-06 13:59:15 +02001574 if (opt_i) {
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001575 char *backupname = xasprintf("%s%s", *argv, opt_i);
1576 xrename(*argv, backupname);
Simon B8c343952012-05-06 13:59:15 +02001577 free(backupname);
1578 }
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001579 /* else unlink(*argv); - rename below does this */
1580 xrename(G.outname, *argv); //TODO: rollback backup on error?
Denis Vlasenko17a15262007-03-26 20:48:46 +00001581 free(G.outname);
Denis Vlasenko40276642007-11-13 16:48:10 +00001582 G.outname = NULL;
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001583
Denys Vlasenko63f4d322015-04-17 14:24:55 +02001584 /* Fix disabled range matches and mangled ",+N" ranges */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001585 for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) {
1586 sed_cmd->beg_line = sed_cmd->beg_line_orig;
Denys Vlasenko63f4d322015-04-17 14:24:55 +02001587 sed_cmd->end_line = sed_cmd->end_line_orig;
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001588 }
Mark Whitley6315ce62000-07-10 22:55:51 +00001589 }
Denys Vlasenkoeb08b6e2010-06-19 17:51:06 +02001590 /* Here, to handle "sed 'cmds' nonexistent_file" case we did:
Denys Vlasenko259b3c02013-11-28 03:14:16 +01001591 * if (G.current_input_file[G.current_input_file] == NULL)
1592 * return G.exitcode;
Denys Vlasenkoeb08b6e2010-06-19 17:51:06 +02001593 * but it's not needed since process_files() works correctly
1594 * in this case too. */
Mark Whitley6315ce62000-07-10 22:55:51 +00001595 }
Denys Vlasenko259b3c02013-11-28 03:14:16 +01001596
Denys Vlasenkoeb08b6e2010-06-19 17:51:06 +02001597 process_files();
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001598
Denys Vlasenko259b3c02013-11-28 03:14:16 +01001599 return G.exitcode;
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001600}