blob: 00dde60be3295e0e15f6fe99f3be80fc421eaed5 [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 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +000015/* Code overview.
Denys Vlasenko52d83702011-05-03 00:51:43 +020016 *
17 * Files are laid out to avoid unnecessary function declarations. So for
18 * example, every function add_cmd calls occurs before add_cmd in this file.
19 *
20 * add_cmd() is called on each line of sed command text (from a file or from
21 * the command line). It calls get_address() and parse_cmd_args(). The
22 * resulting sed_cmd_t structures are appended to a linked list
23 * (G.sed_cmd_head/G.sed_cmd_tail).
24 *
Denys Vlasenkoa221bc52011-09-13 18:40:22 +020025 * process_files() does actual sedding, reading data lines from each input FILE*
Denys Vlasenko52d83702011-05-03 00:51:43 +020026 * (which could be stdin) and applying the sed command list (sed_cmd_head) to
27 * each of the resulting lines.
28 *
29 * sed_main() is where external code calls into this, with a command line.
30 */
Denys Vlasenko52d83702011-05-03 00:51:43 +020031/* Supported features and commands in this version of sed:
32 *
33 * - comments ('#')
34 * - address matching: num|/matchstr/[,num|/matchstr/|$]command
35 * - commands: (p)rint, (d)elete, (s)ubstitue (with g & I flags)
36 * - edit commands: (a)ppend, (i)nsert, (c)hange
37 * - file commands: (r)ead
38 * - backreferences in substitution expressions (\0, \1, \2...\9)
39 * - grouped commands: {cmd1;cmd2}
40 * - transliteration (y/source-chars/dest-chars/)
41 * - pattern space hold space storing / swapping (g, h, x)
42 * - labels / branching (: label, b, t, T)
43 *
44 * (Note: Specifying an address (range) to match is *optional*; commands
45 * default to the whole pattern space if no specific address match was
46 * requested.)
47 *
48 * Todo:
49 * - Create a wrapper around regex to make libc's regex conform with sed
50 *
Mimi Li37a79c02012-07-24 13:20:12 +020051 * Reference
52 * http://www.opengroup.org/onlinepubs/007904975/utilities/sed.html
53 * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sed.html
Denys Vlasenko63f4d322015-04-17 14:24:55 +020054 * http://sed.sourceforge.net/sedfaq3.html
Denys Vlasenko52d83702011-05-03 00:51:43 +020055 */
Denys Vlasenko73225b62013-11-13 12:45:33 +010056//config:config SED
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020057//config: bool "sed (12 kb)"
Denys Vlasenko73225b62013-11-13 12:45:33 +010058//config: default y
59//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020060//config: sed is used to perform text transformations on a file
61//config: or input from a pipeline.
Denys Vlasenko73225b62013-11-13 12:45:33 +010062
Denys Vlasenko73225b62013-11-13 12:45:33 +010063//applet:IF_SED(APPLET(sed, BB_DIR_BIN, BB_SUID_DROP))
64
Denys Vlasenko0c4dbd42017-09-18 16:28:43 +020065//kbuild:lib-$(CONFIG_SED) += sed.o
66
Pere Orga6a3e01d2011-04-01 22:56:30 +020067//usage:#define sed_trivial_usage
Denys Vlasenko269b36a2017-08-07 02:12:36 +020068//usage: "[-i[SFX]] [-nrE] [-f FILE]... [-e CMD]... [FILE]...\n"
69//usage: "or: sed [-i[SFX]] [-nrE] CMD [FILE]..."
Pere Orga6a3e01d2011-04-01 22:56:30 +020070//usage:#define sed_full_usage "\n\n"
Denys Vlasenko66426762011-06-05 03:58:28 +020071//usage: " -e CMD Add CMD to sed commands to be executed"
Pere Orga6a3e01d2011-04-01 22:56:30 +020072//usage: "\n -f FILE Add FILE contents to sed commands to be executed"
Denys Vlasenko6b6826f2021-06-13 01:08:48 +020073//usage: "\n -i[SFX] Edit files in-place (otherwise write to stdout)"
Denys Vlasenko1d7ad7a2012-06-21 09:45:11 +020074//usage: "\n Optionally back files up, appending SFX"
Pere Orga6a3e01d2011-04-01 22:56:30 +020075//usage: "\n -n Suppress automatic printing of pattern space"
Denys Vlasenkoa82e32d2013-10-30 13:00:00 +010076//usage: "\n -r,-E Use extended regex syntax"
Pere Orga6a3e01d2011-04-01 22:56:30 +020077//usage: "\n"
78//usage: "\nIf no -e or -f, the first non-option argument is the sed command string."
79//usage: "\nRemaining arguments are input files (stdin if none)."
80//usage:
81//usage:#define sed_example_usage
82//usage: "$ echo \"foo\" | sed -e 's/f[a-zA-Z]o/bar/g'\n"
83//usage: "bar\n"
84
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000085#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020086#include "common_bufsiz.h"
"Vladimir N. Oleynik"23f62fc2005-09-14 16:59:11 +000087#include "xregex.h"
Mark Whitley6315ce62000-07-10 22:55:51 +000088
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +020089#if 0
90# define dbg(...) bb_error_msg(__VA_ARGS__)
91#else
92# define dbg(...) ((void)0)
93#endif
94
95
Denys Vlasenko2e284a42010-08-01 04:14:46 +020096enum {
97 OPT_in_place = 1 << 0,
98};
99
Denys Vlasenko286b3372022-01-04 19:42:36 +0100100struct sed_FILE {
101 struct sed_FILE *next; /* Next (linked list, NULL terminated) */
Denys Vlasenko9b2d7662023-01-02 17:05:55 +0100102 char *fname;
Denys Vlasenko286b3372022-01-04 19:42:36 +0100103 FILE *fp;
104};
105
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000106/* Each sed command turns into one of these structures. */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000107typedef struct sed_cmd_s {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000108 /* Ordered by alignment requirements: currently 36 bytes on x86 */
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +0000109 struct sed_cmd_s *next; /* Next command (linked list, NULL terminated) */
Mark Whitley2dc192f2000-11-03 19:47:00 +0000110
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000111 /* address storage */
112 regex_t *beg_match; /* sed -e '/match/cmd' */
113 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
114 regex_t *sub_match; /* For 's/sub_match/string/' */
115 int beg_line; /* 'sed 1p' 0 == apply commands to all lines */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200116 int beg_line_orig; /* copy of the above, needed for -i */
Denys Vlasenko63f4d322015-04-17 14:24:55 +0200117 int end_line; /* 'sed 1,3p' 0 == one line only. -1 = last line ($). -2-N = +N */
118 int end_line_orig;
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +0000119
Denys Vlasenko2a4bba32016-01-24 15:52:16 +0100120 FILE *sw_file; /* File (sw) command writes to, NULL for none. */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000121 char *string; /* Data string for (saicytb) commands. */
Glenn L McGrathfc4cb4d2003-04-12 16:10:42 +0000122
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000123 unsigned which_match; /* (s) Which match to replace (0 for all) */
Glenn L McGrathfc4cb4d2003-04-12 16:10:42 +0000124
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000125 /* Bitfields (gcc won't group them if we don't) */
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +0000126 unsigned invert:1; /* the '!' after the address */
127 unsigned in_match:1; /* Next line also included in match? */
128 unsigned sub_p:1; /* (s) print option */
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000129
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +0000130 char sw_last_char; /* Last line written by (sw) had no '\n' */
Glenn L McGrathc18ce372003-09-13 06:57:39 +0000131
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000132 /* GENERAL FIELDS */
133 char cmd; /* The command char: abcdDgGhHilnNpPqrstwxy:={} */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +0000134} sed_cmd_t;
Mark Whitley6315ce62000-07-10 22:55:51 +0000135
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000136static const char semicolon_whitespace[] ALIGN1 = "; \n\r\t\v";
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000137
Denis Vlasenko17a15262007-03-26 20:48:46 +0000138struct globals {
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000139 /* options */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000140 int be_quiet, regex_type;
Denys Vlasenko259b3c02013-11-28 03:14:16 +0100141
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000142 FILE *nonstdout;
143 char *outname, *hold_space;
Denys Vlasenko259b3c02013-11-28 03:14:16 +0100144 smallint exitcode;
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000145
Denys Vlasenko259b3c02013-11-28 03:14:16 +0100146 /* list of input files */
Denys Vlasenkodeb07692013-11-28 12:08:51 +0100147 int current_input_file, last_input_file;
148 char **input_file_list;
Denys Vlasenko259b3c02013-11-28 03:14:16 +0100149 FILE *current_fp;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000150
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000151 regmatch_t regmatch[10];
152 regex_t *previous_regex_ptr;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000153
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000154 /* linked list of sed commands */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200155 sed_cmd_t *sed_cmd_head, **sed_cmd_tail;
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000156
Denys Vlasenko259b3c02013-11-28 03:14:16 +0100157 /* linked list of append lines */
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000158 llist_t *append_head;
159
Denys Vlasenko286b3372022-01-04 19:42:36 +0100160 /* linked list of FILEs opened for 'w' and s///w'.
161 * Needed to handle duplicate fnames: sed '/a/w F;/b/w F'
162 */
163 struct sed_FILE *FILE_head;
164
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000165 char *add_cmd_line;
166
167 struct pipeline {
Denys Vlasenkofb132e42010-10-29 11:46:52 +0200168 char *buf; /* Space to hold string */
169 int idx; /* Space used */
170 int len; /* Space allocated */
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000171 } pipeline;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100172} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200173#define G (*(struct globals*)bb_common_bufsiz1)
Denis Vlasenko74324c82007-06-04 10:16:52 +0000174#define INIT_G() do { \
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200175 setup_common_bufsiz(); \
Denys Vlasenko7b85ec32015-10-13 17:17:34 +0200176 BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \
Denis Vlasenko74324c82007-06-04 10:16:52 +0000177 G.sed_cmd_tail = &G.sed_cmd_head; \
178} while (0)
179
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000180
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +0000181#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000182static void sed_free_and_close_stuff(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000183{
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200184 sed_cmd_t *sed_cmd = G.sed_cmd_head;
Mark Whitley6315ce62000-07-10 22:55:51 +0000185
Denis Vlasenko17a15262007-03-26 20:48:46 +0000186 llist_free(G.append_head, free);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000187
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000188 while (sed_cmd) {
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000189 sed_cmd_t *sed_cmd_next = sed_cmd->next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000190
Denys Vlasenko706a9a02018-09-25 12:50:54 +0200191 /* Used to free regexps, but now there is code
192 * in get_address() which can reuse a regexp
193 * for constructs as /regexp/cmd1;//cmd2
194 * leading to double-frees here:
195 */
196 //if (sed_cmd->beg_match) {
197 // regfree(sed_cmd->beg_match);
198 // free(sed_cmd->beg_match);
199 //}
200 //if (sed_cmd->end_match) {
201 // regfree(sed_cmd->end_match);
202 // free(sed_cmd->end_match);
203 //}
204 //if (sed_cmd->sub_match) {
205 // regfree(sed_cmd->sub_match);
206 // free(sed_cmd->sub_match);
207 //}
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000208 free(sed_cmd->string);
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000209 free(sed_cmd);
210 sed_cmd = sed_cmd_next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000211 }
Rob Landleyce4f0e92004-10-30 06:54:19 +0000212
Denis Vlasenko60818682007-09-28 22:07:23 +0000213 free(G.hold_space);
Rob Landleydcc28662004-11-25 07:21:47 +0000214
Denys Vlasenko259b3c02013-11-28 03:14:16 +0100215 if (G.current_fp)
216 fclose(G.current_fp);
Denys Vlasenko9b2d7662023-01-02 17:05:55 +0100217
218 if (G.FILE_head) {
219 struct sed_FILE *cur = G.FILE_head;
220 do {
221 struct sed_FILE *p;
222 fclose(cur->fp);
223 free(cur->fname);
224 p = cur;
225 cur = cur->next;
226 free(p);
227 } while (cur);
228 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000229}
Denis Vlasenko666da5e2006-12-26 18:17:42 +0000230#else
231void sed_free_and_close_stuff(void);
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000232#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000233
Denys Vlasenko286b3372022-01-04 19:42:36 +0100234static FILE *sed_xfopen_w(const char *fname)
235{
236 struct sed_FILE **pp = &G.FILE_head;
237 struct sed_FILE *cur;
238 while ((cur = *pp) != NULL) {
239 if (strcmp(cur->fname, fname) == 0)
240 return cur->fp;
241 pp = &cur->next;
242 }
243 *pp = cur = xzalloc(sizeof(*cur));
244 /*cur->next = NULL; - already is */
245 cur->fname = xstrdup(fname);
246 cur->fp = xfopen_for_write(fname);
247 return cur->fp;
248}
249
Rob Landley53302f82004-02-18 09:54:15 +0000250/* If something bad happens during -i operation, delete temp file */
251
252static void cleanup_outname(void)
253{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000254 if (G.outname) unlink(G.outname);
Rob Landley53302f82004-02-18 09:54:15 +0000255}
256
Denis Vlasenko40276642007-11-13 16:48:10 +0000257/* strcpy, replacing "\from" with 'to'. If to is NUL, replacing "\any" with 'any' */
Denys Vlasenkocbdff152016-04-24 16:18:03 +0200258static unsigned parse_escapes(char *dest, const char *string, int len, char from, char to)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000259{
Denys Vlasenkocbdff152016-04-24 16:18:03 +0200260 char *d = dest;
Denis Vlasenko80778502006-10-25 12:46:46 +0000261 int i = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000262
Denys Vlasenkocbdff152016-04-24 16:18:03 +0200263 if (len == -1)
264 len = strlen(string);
265
Denis Vlasenko80778502006-10-25 12:46:46 +0000266 while (i < len) {
267 if (string[i] == '\\') {
268 if (!to || string[i+1] == from) {
Denys Vlasenkocbdff152016-04-24 16:18:03 +0200269 if ((*d = to ? to : string[i+1]) == '\0')
270 return d - dest;
Denis Vlasenko80778502006-10-25 12:46:46 +0000271 i += 2;
Denys Vlasenkocbdff152016-04-24 16:18:03 +0200272 d++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000273 continue;
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000274 }
Denys Vlasenkocbdff152016-04-24 16:18:03 +0200275 i++; /* skip backslash in string[] */
276 *d++ = '\\';
277 /* fall through: copy next char verbatim */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000278 }
Denys Vlasenkocbdff152016-04-24 16:18:03 +0200279 if ((*d = string[i++]) == '\0')
280 return d - dest;
281 d++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000282 }
Denys Vlasenkocbdff152016-04-24 16:18:03 +0200283 *d = '\0';
284 return d - dest;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000285}
286
Denys Vlasenkoe998c7c2022-01-23 18:48:49 +0100287static char *copy_parsing_escapes(const char *string, int len, char delim)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000288{
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200289 const char *s;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000290 char *dest = xmalloc(len + 1);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000291
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200292 /* sed recognizes \n */
Denys Vlasenko6a0abcc2011-05-03 00:52:22 +0200293 /* GNU sed also recognizes \t and \r */
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200294 for (s = "\nn\tt\rr"; *s; s += 2) {
Denys Vlasenkocbdff152016-04-24 16:18:03 +0200295 len = parse_escapes(dest, string, len, s[1], s[0]);
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200296 string = dest;
Pascal Bellardd3e4be32011-05-05 00:26:37 +0200297 }
Denys Vlasenkoe998c7c2022-01-23 18:48:49 +0100298 if (delim) {
299 /* we additionally unescape any instances of escaped delimiter.
300 * For example, in 's+9\++X+' the pattern is "9+", not "9\+".
301 */
302 len = parse_escapes(dest, string, len, delim, delim);
303 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000304 return dest;
305}
306
Mark Whitley6315ce62000-07-10 22:55:51 +0000307/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000308 * index_of_next_unescaped_regexp_delim - walks left to right through a string
309 * beginning at a specified index and returns the index of the next regular
Denis Vlasenko40276642007-11-13 16:48:10 +0000310 * expression delimiter (typically a forward slash ('/')) not preceded by
Rob Landley4795e4e2006-07-26 17:25:08 +0000311 * a backslash ('\'). A negative delimiter disables square bracket checking.
Mark Whitley6315ce62000-07-10 22:55:51 +0000312 */
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000313static int index_of_next_unescaped_regexp_delim(int delimiter, const char *str)
Mark Whitley6315ce62000-07-10 22:55:51 +0000314{
Matt Kraaia0065d52001-08-24 14:45:50 +0000315 int bracket = -1;
316 int escaped = 0;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000317 int idx = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000318 char ch;
Matt Kraaia0065d52001-08-24 14:45:50 +0000319
Rob Landley4795e4e2006-07-26 17:25:08 +0000320 if (delimiter < 0) {
321 bracket--;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000322 delimiter = -delimiter;
Rob Landley4795e4e2006-07-26 17:25:08 +0000323 }
324
Denys Vlasenko52d83702011-05-03 00:51:43 +0200325 for (; (ch = str[idx]) != '\0'; idx++) {
Rob Landley4795e4e2006-07-26 17:25:08 +0000326 if (bracket >= 0) {
Denys Vlasenko52d83702011-05-03 00:51:43 +0200327 if (ch == ']'
328 && !(bracket == idx - 1 || (bracket == idx - 2 && str[idx - 1] == '^'))
329 ) {
Matt Kraaia0065d52001-08-24 14:45:50 +0000330 bracket = -1;
Denys Vlasenko52d83702011-05-03 00:51:43 +0200331 }
Matt Kraaia0065d52001-08-24 14:45:50 +0000332 } else if (escaped)
333 escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000334 else if (ch == '\\')
Matt Kraaia0065d52001-08-24 14:45:50 +0000335 escaped = 1;
Rob Landley4795e4e2006-07-26 17:25:08 +0000336 else if (bracket == -1 && ch == '[')
Matt Kraaia0065d52001-08-24 14:45:50 +0000337 bracket = idx;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000338 else if (ch == delimiter)
Mark Whitley97562bd2000-07-17 20:06:42 +0000339 return idx;
340 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000341
Mark Whitley97562bd2000-07-17 20:06:42 +0000342 /* if we make it to here, we've hit the end of the string */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000343 bb_error_msg_and_die("unmatched '%c'", delimiter);
Mark Whitley6315ce62000-07-10 22:55:51 +0000344}
345
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000346/*
347 * Returns the index of the third delimiter
348 */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000349static int parse_regex_delim(const char *cmdstr, char **match, char **replace)
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000350{
Denis Vlasenko9356b502007-01-29 23:44:38 +0000351 const char *cmdstr_ptr = cmdstr;
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100352 unsigned char delimiter;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000353 int idx = 0;
354
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000355 /* verify that the 's' or 'y' is followed by something. That something
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000356 * (typically a 'slash') is now our regexp delimiter... */
Rob Landley4795e4e2006-07-26 17:25:08 +0000357 if (*cmdstr == '\0')
James Byrne69374872019-07-02 11:35:03 +0200358 bb_simple_error_msg_and_die("bad format in substitution expression");
Denis Vlasenko80778502006-10-25 12:46:46 +0000359 delimiter = *cmdstr_ptr++;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000360
361 /* save the match string */
362 idx = index_of_next_unescaped_regexp_delim(delimiter, cmdstr_ptr);
Denys Vlasenkoe998c7c2022-01-23 18:48:49 +0100363 *match = copy_parsing_escapes(cmdstr_ptr, idx, delimiter);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000364 /* save the replacement string */
365 cmdstr_ptr += idx + 1;
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100366 idx = index_of_next_unescaped_regexp_delim(- (int)delimiter, cmdstr_ptr);
Denys Vlasenkof12fb1e2022-01-23 19:04:27 +0100367//GNU sed 4.8:
368// echo 789 | sed 's&8&\&&' - 7&9 ("\&" remained "\&")
369// echo 789 | sed 's1\(8\)1\1\11' - 7119 ("\1\1" become "11")
370 *replace = copy_parsing_escapes(cmdstr_ptr, idx, delimiter != '&' ? delimiter : 0);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000371
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000372 return ((cmdstr_ptr - cmdstr) + idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000373}
374
Mark Whitley6315ce62000-07-10 22:55:51 +0000375/*
376 * returns the index in the string just past where the address ends.
377 */
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000378static int get_address(const char *my_str, int *linenum, regex_t ** regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000379{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000380 const char *pos = my_str;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000381
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000382 if (isdigit(*my_str)) {
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000383 *linenum = strtol(my_str, (char**)&pos, 10);
Denys Vlasenko10ad6222017-04-17 16:13:32 +0200384 /* endstr shouldn't ever equal NULL */
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000385 } else if (*my_str == '$') {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000386 *linenum = -1;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000387 pos++;
388 } else if (*my_str == '/' || *my_str == '\\') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000389 int next;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000390 char delimiter;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000391 char *temp;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000392
Denis Vlasenko80778502006-10-25 12:46:46 +0000393 delimiter = '/';
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100394 if (*my_str == '\\')
395 delimiter = *++pos;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000396 next = index_of_next_unescaped_regexp_delim(delimiter, ++pos);
Denys Vlasenko9c47c432017-08-23 17:56:03 +0200397 if (next != 0) {
Denys Vlasenkoe998c7c2022-01-23 18:48:49 +0100398 temp = copy_parsing_escapes(pos, next, 0);
Denys Vlasenko9c47c432017-08-23 17:56:03 +0200399 G.previous_regex_ptr = *regex = xzalloc(sizeof(regex_t));
400 xregcomp(*regex, temp, G.regex_type);
401 free(temp);
402 } else {
403 *regex = G.previous_regex_ptr;
404 if (!G.previous_regex_ptr)
James Byrne69374872019-07-02 11:35:03 +0200405 bb_simple_error_msg_and_die("no previous regexp");
Denys Vlasenko9c47c432017-08-23 17:56:03 +0200406 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000407 /* Move position to next character after last delimiter */
Rob Landley4795e4e2006-07-26 17:25:08 +0000408 pos += (next+1);
Mark Whitley6315ce62000-07-10 22:55:51 +0000409 }
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000410 return pos - my_str;
Mark Whitley6315ce62000-07-10 22:55:51 +0000411}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000412
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000413/* Grab a filename. Whitespace at start is skipped, then goes to EOL. */
Denis Vlasenko68404f12008-03-17 09:00:54 +0000414static int parse_file_cmd(/*sed_cmd_t *sed_cmd,*/ const char *filecmdstr, char **retval)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000415{
Denys Vlasenko4906faa2019-01-21 13:49:28 +0100416 const char *start;
417 const char *eol;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000418
419 /* Skip whitespace, then grab filename to end of line */
Denys Vlasenko4906faa2019-01-21 13:49:28 +0100420 start = skip_whitespace(filecmdstr);
421 eol = strchrnul(start, '\n');
422 if (eol == start)
James Byrne69374872019-07-02 11:35:03 +0200423 bb_simple_error_msg_and_die("empty filename");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000424
Denys Vlasenko4906faa2019-01-21 13:49:28 +0100425 if (*eol) {
426 /* If lines glued together, put backslash back. */
427 *retval = xstrndup(start, eol-start + 1);
428 (*retval)[eol-start] = '\\';
429 } else {
430 /* eol is NUL */
431 *retval = xstrdup(start);
432 }
433
434 return eol - filecmdstr;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000435}
436
Denis Vlasenko9356b502007-01-29 23:44:38 +0000437static int parse_subst_cmd(sed_cmd_t *sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000438{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000439 int cflags = G.regex_type;
Mark Whitley06f35292000-07-13 19:58:04 +0000440 char *match;
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000441 int idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000442
443 /*
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000444 * A substitution command should look something like this:
David A. Wheeler80a068d2013-12-05 20:42:17 -0500445 * s/match/replace/ #giIpw
Mark Whitley0e4cec02000-08-21 21:29:20 +0000446 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000447 * mandatory optional
Mark Whitley06f35292000-07-13 19:58:04 +0000448 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000449 idx = parse_regex_delim(substr, &match, &sed_cmd->string);
Mark Whitley06f35292000-07-13 19:58:04 +0000450
Mark Whitley97562bd2000-07-17 20:06:42 +0000451 /* determine the number of back references in the match string */
452 /* Note: we compute this here rather than in the do_subst_command()
453 * function to save processor time, at the expense of a little more memory
454 * (4 bits) per sed_cmd */
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000455
Mark Whitley06f35292000-07-13 19:58:04 +0000456 /* process the flags */
Mark Whitley70705d72000-07-14 19:06:30 +0000457
Denis Vlasenko80778502006-10-25 12:46:46 +0000458 sed_cmd->which_match = 1;
Denys Vlasenko9caea242014-09-16 01:11:13 +0200459 dbg("s flags:'%s'", substr + idx + 1);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000460 while (substr[++idx]) {
Denys Vlasenko9caea242014-09-16 01:11:13 +0200461 dbg("s flag:'%c'", substr[idx]);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000462 /* Parse match number */
Denis Vlasenko80778502006-10-25 12:46:46 +0000463 if (isdigit(substr[idx])) {
464 if (match[0] != '^') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000465 /* Match 0 treated as all, multiple matches we take the last one. */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000466 const char *pos = substr + idx;
467/* FIXME: error check? */
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000468 sed_cmd->which_match = (unsigned)strtol(substr+idx, (char**) &pos, 10);
Denys Vlasenko9caea242014-09-16 01:11:13 +0200469 idx = pos - substr - 1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000470 }
471 continue;
472 }
Rob Landley40ec4ae2004-01-04 06:42:14 +0000473 /* Skip spaces */
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200474 if (isspace(substr[idx]))
475 continue;
Rob Landley40ec4ae2004-01-04 06:42:14 +0000476
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000477 switch (substr[idx]) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000478 /* Replace all occurrences */
479 case 'g':
Dominique Martinet4fe954c2021-12-21 21:52:29 +0900480 sed_cmd->which_match = 0;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000481 break;
482 /* Print pattern space */
483 case 'p':
484 sed_cmd->sub_p = 1;
485 break;
486 /* Write to file */
487 case 'w':
488 {
Denys Vlasenko2a4bba32016-01-24 15:52:16 +0100489 char *fname;
490 idx += parse_file_cmd(/*sed_cmd,*/ substr+idx+1, &fname);
Denys Vlasenko286b3372022-01-04 19:42:36 +0100491 sed_cmd->sw_file = sed_xfopen_w(fname);
Denys Vlasenko2a4bba32016-01-24 15:52:16 +0100492 sed_cmd->sw_last_char = '\n';
493 free(fname);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000494 break;
495 }
Denys Vlasenko10ad6222017-04-17 16:13:32 +0200496 /* Ignore case (gnu extension) */
David A. Wheeler80a068d2013-12-05 20:42:17 -0500497 case 'i':
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000498 case 'I':
499 cflags |= REG_ICASE;
500 break;
501 /* Comment */
502 case '#':
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200503 // while (substr[++idx]) continue;
504 idx += strlen(substr + idx); // same
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000505 /* Fall through */
506 /* End of command */
507 case ';':
508 case '}':
509 goto out;
510 default:
Denys Vlasenko9caea242014-09-16 01:11:13 +0200511 dbg("s bad flags:'%s'", substr + idx);
James Byrne69374872019-07-02 11:35:03 +0200512 bb_simple_error_msg_and_die("bad option in substitution expression");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000513 }
514 }
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +0200515 out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000516 /* compile the match string into a regex */
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000517 if (*match != '\0') {
518 /* If match is empty, we use last regex used at runtime */
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100519 sed_cmd->sub_match = xzalloc(sizeof(regex_t));
520 dbg("xregcomp('%s',%x)", match, cflags);
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000521 xregcomp(sed_cmd->sub_match, match, cflags);
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100522 dbg("regcomp ok");
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000523 }
Mark Whitley06f35292000-07-13 19:58:04 +0000524 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000525
526 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000527}
528
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000529/*
530 * Process the commands arguments
531 */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000532static const char *parse_cmd_args(sed_cmd_t *sed_cmd, const char *cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000533{
Denys Vlasenko3e134eb2016-04-22 18:09:21 +0200534 static const char cmd_letters[] ALIGN1 = "saicrw:btTydDgGhHlnNpPqx={}";
Denys Vlasenko52d83702011-05-03 00:51:43 +0200535 enum {
536 IDX_s = 0,
537 IDX_a,
538 IDX_i,
539 IDX_c,
540 IDX_r,
541 IDX_w,
542 IDX_colon,
543 IDX_b,
544 IDX_t,
545 IDX_T,
546 IDX_y,
547 IDX_d,
548 IDX_D,
549 IDX_g,
550 IDX_G,
551 IDX_h,
552 IDX_H,
553 IDX_l,
554 IDX_n,
555 IDX_N,
556 IDX_p,
557 IDX_P,
558 IDX_q,
559 IDX_x,
560 IDX_equal,
561 IDX_lbrace,
562 IDX_rbrace,
563 IDX_nul
564 };
Denys Vlasenko7b85ec32015-10-13 17:17:34 +0200565 unsigned idx;
Denys Vlasenko52d83702011-05-03 00:51:43 +0200566
Denys Vlasenko7b85ec32015-10-13 17:17:34 +0200567 BUILD_BUG_ON(sizeof(cmd_letters)-1 != IDX_nul);
568
569 idx = strchrnul(cmd_letters, sed_cmd->cmd) - cmd_letters;
Denys Vlasenko52d83702011-05-03 00:51:43 +0200570
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000571 /* handle (s)ubstitution command */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200572 if (idx == IDX_s) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000573 cmdstr += parse_subst_cmd(sed_cmd, cmdstr);
Denys Vlasenko52d83702011-05-03 00:51:43 +0200574 }
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000575 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200576 else if (idx <= IDX_c) { /* a,i,c */
Denys Vlasenkocbdff152016-04-24 16:18:03 +0200577 unsigned len;
578
Mimi Li37a79c02012-07-24 13:20:12 +0200579 if (idx < IDX_c) { /* a,i */
580 if (sed_cmd->end_line || sed_cmd->end_match)
581 bb_error_msg_and_die("command '%c' uses only one address", sed_cmd->cmd);
582 }
Denis Vlasenko80778502006-10-25 12:46:46 +0000583 for (;;) {
584 if (*cmdstr == '\n' || *cmdstr == '\\') {
Rob Landley25d82392004-04-01 09:23:30 +0000585 cmdstr++;
586 break;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +0200587 }
588 if (!isspace(*cmdstr))
Denis Vlasenko80778502006-10-25 12:46:46 +0000589 break;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +0200590 cmdstr++;
Rob Landley25d82392004-04-01 09:23:30 +0000591 }
Denys Vlasenkocbdff152016-04-24 16:18:03 +0200592 len = strlen(cmdstr);
Denys Vlasenkoe998c7c2022-01-23 18:48:49 +0100593 sed_cmd->string = copy_parsing_escapes(cmdstr, len, 0);
Denys Vlasenkocbdff152016-04-24 16:18:03 +0200594 cmdstr += len;
Denis Vlasenko40276642007-11-13 16:48:10 +0000595 /* "\anychar" -> "anychar" */
Denys Vlasenkocbdff152016-04-24 16:18:03 +0200596 parse_escapes(sed_cmd->string, sed_cmd->string, -1, '\0', '\0');
Denys Vlasenko52d83702011-05-03 00:51:43 +0200597 }
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000598 /* handle file cmds: (r)ead */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200599 else if (idx <= IDX_w) { /* r,w */
Mimi Li37a79c02012-07-24 13:20:12 +0200600 if (idx < IDX_w) { /* r */
601 if (sed_cmd->end_line || sed_cmd->end_match)
602 bb_error_msg_and_die("command '%c' uses only one address", sed_cmd->cmd);
603 }
Denis Vlasenko68404f12008-03-17 09:00:54 +0000604 cmdstr += parse_file_cmd(/*sed_cmd,*/ cmdstr, &sed_cmd->string);
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000605 if (sed_cmd->cmd == 'w') {
Denys Vlasenko286b3372022-01-04 19:42:36 +0100606 sed_cmd->sw_file = sed_xfopen_w(sed_cmd->string);
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000607 sed_cmd->sw_last_char = '\n';
608 }
Denys Vlasenko52d83702011-05-03 00:51:43 +0200609 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000610 /* handle branch commands */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200611 else if (idx <= IDX_T) { /* :,b,t,T */
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000612 int length;
613
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000614 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000615 length = strcspn(cmdstr, semicolon_whitespace);
616 if (length) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000617 sed_cmd->string = xstrndup(cmdstr, length);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000618 cmdstr += length;
619 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000620 }
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000621 /* translation command */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200622 else if (idx == IDX_y) {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000623 char *match, *replace;
Denis Vlasenko80778502006-10-25 12:46:46 +0000624 int i = cmdstr[0];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000625
Denis Vlasenko80778502006-10-25 12:46:46 +0000626 cmdstr += parse_regex_delim(cmdstr, &match, &replace)+1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000627 /* \n already parsed, but \delimiter needs unescaping. */
Denys Vlasenkocbdff152016-04-24 16:18:03 +0200628 parse_escapes(match, match, -1, i, i);
629 parse_escapes(replace, replace, -1, i, i);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000630
Rob Landley9ffd4232006-05-21 18:30:35 +0000631 sed_cmd->string = xzalloc((strlen(match) + 1) * 2);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000632 for (i = 0; match[i] && replace[i]; i++) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000633 sed_cmd->string[i*2] = match[i];
634 sed_cmd->string[i*2+1] = replace[i];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000635 }
636 free(match);
637 free(replace);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000638 }
Denys Vlasenko10ad6222017-04-17 16:13:32 +0200639 /* if it wasn't a single-letter command that takes no arguments
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000640 * then it must be an invalid command.
641 */
Denys Vlasenko52d83702011-05-03 00:51:43 +0200642 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 +0000643 bb_error_msg_and_die("unsupported command %c", sed_cmd->cmd);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000644 }
Mark Whitley70705d72000-07-14 19:06:30 +0000645
646 /* give back whatever's left over */
Denis Vlasenko80778502006-10-25 12:46:46 +0000647 return cmdstr;
Eric Andersen50d63601999-11-09 01:47:36 +0000648}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000649
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000650
651/* Parse address+command sets, skipping comment lines. */
652
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000653static void add_cmd(const char *cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000654{
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000655 sed_cmd_t *sed_cmd;
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200656 unsigned len, n;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000657
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000658 /* Append this line to any unfinished line from last time. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000659 if (G.add_cmd_line) {
660 char *tp = xasprintf("%s\n%s", G.add_cmd_line, cmdstr);
661 free(G.add_cmd_line);
Denis Vlasenko945bd3d2007-04-12 21:20:25 +0000662 cmdstr = G.add_cmd_line = tp;
Rob Landley12d87552006-06-05 17:32:44 +0000663 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000664
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200665 /* If this line ends with unescaped backslash, request next line. */
666 n = len = strlen(cmdstr);
667 while (n && cmdstr[n-1] == '\\')
668 n--;
669 if ((len - n) & 1) { /* if odd number of trailing backslashes */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000670 if (!G.add_cmd_line)
671 G.add_cmd_line = xstrdup(cmdstr);
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200672 G.add_cmd_line[len-1] = '\0';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000673 return;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000674 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000675
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000676 /* Loop parsing all commands in this line. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000677 while (*cmdstr) {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000678 /* Skip leading whitespace and semicolons */
679 cmdstr += strspn(cmdstr, semicolon_whitespace);
680
681 /* If no more commands, exit. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000682 if (!*cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000683
684 /* if this is a comment, jump past it and keep going */
685 if (*cmdstr == '#') {
686 /* "#n" is the same as using -n on the command line */
Denis Vlasenko80778502006-10-25 12:46:46 +0000687 if (cmdstr[1] == 'n')
Denis Vlasenko17a15262007-03-26 20:48:46 +0000688 G.be_quiet++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000689 cmdstr = strpbrk(cmdstr, "\n\r");
690 if (!cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000691 continue;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000692 }
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000693
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000694 /* parse the command
695 * format is: [addr][,addr][!]cmd
696 * |----||-----||-|
697 * part1 part2 part3
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000698 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000699
Rob Landley9ffd4232006-05-21 18:30:35 +0000700 sed_cmd = xzalloc(sizeof(sed_cmd_t));
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000701
702 /* first part (if present) is an address: either a '$', a number or a /regex/ */
703 cmdstr += get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200704 sed_cmd->beg_line_orig = sed_cmd->beg_line;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000705
706 /* second part (if present) will begin with a comma */
707 if (*cmdstr == ',') {
708 int idx;
709
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000710 cmdstr++;
Denys Vlasenko63f4d322015-04-17 14:24:55 +0200711 if (*cmdstr == '+' && isdigit(cmdstr[1])) {
712 /* http://sed.sourceforge.net/sedfaq3.html#s3.3
713 * Under GNU sed 3.02+, ssed, and sed15+, <address2>
714 * may also be a notation of the form +num,
715 * indicating the next num lines after <address1> is
716 * matched.
717 * GNU sed 4.2.1 accepts even "+" (meaning "+0").
718 * We don't (we check for isdigit, see above), think
719 * about the "+-3" case.
720 */
721 char *end;
722 /* code is smaller compared to using &cmdstr here: */
723 idx = strtol(cmdstr+1, &end, 10);
724 sed_cmd->end_line = -2 - idx;
725 cmdstr = end;
726 } else {
727 idx = get_address(cmdstr, &sed_cmd->end_line, &sed_cmd->end_match);
728 cmdstr += idx;
729 idx--; /* if 0, trigger error check below */
730 }
731 if (idx < 0)
James Byrne69374872019-07-02 11:35:03 +0200732 bb_simple_error_msg_and_die("no address after comma");
Denys Vlasenko63f4d322015-04-17 14:24:55 +0200733 sed_cmd->end_line_orig = sed_cmd->end_line;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000734 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000735
736 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000737 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000738
739 /* Check for inversion flag */
740 if (*cmdstr == '!') {
741 sed_cmd->invert = 1;
742 cmdstr++;
743
744 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000745 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000746 }
747
748 /* last part (mandatory) will be a command */
Denis Vlasenko80778502006-10-25 12:46:46 +0000749 if (!*cmdstr)
James Byrne69374872019-07-02 11:35:03 +0200750 bb_simple_error_msg_and_die("missing command");
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200751 sed_cmd->cmd = *cmdstr++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000752 cmdstr = parse_cmd_args(sed_cmd, cmdstr);
753
Denys Vlasenkoe93d1562013-07-08 01:43:40 +0200754 /* cmdstr now points past args.
755 * GNU sed requires a separator, if there are more commands,
756 * else it complains "char N: extra characters after command".
757 * Example: "sed 'p;d'". We also allow "sed 'pd'".
758 */
759
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000760 /* Add the command to the command array */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200761 *G.sed_cmd_tail = sed_cmd;
762 G.sed_cmd_tail = &sed_cmd->next;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000763 }
764
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000765 /* If we glued multiple lines together, free the memory. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000766 free(G.add_cmd_line);
767 G.add_cmd_line = NULL;
Mark Whitley6315ce62000-07-10 22:55:51 +0000768}
769
Rob Landleydcc28662004-11-25 07:21:47 +0000770/* Append to a string, reallocating memory as necessary. */
771
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000772#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000773
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000774static void pipe_putc(char c)
Eric Andersenc52a6b02001-11-10 10:49:42 +0000775{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000776 if (G.pipeline.idx == G.pipeline.len) {
777 G.pipeline.buf = xrealloc(G.pipeline.buf,
778 G.pipeline.len + PIPE_GROW);
779 G.pipeline.len += PIPE_GROW;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000780 }
Denis Vlasenko17a15262007-03-26 20:48:46 +0000781 G.pipeline.buf[G.pipeline.idx++] = c;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000782}
783
Rob Landley4795e4e2006-07-26 17:25:08 +0000784static void do_subst_w_backrefs(char *line, char *replace)
Mark Whitley97562bd2000-07-17 20:06:42 +0000785{
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200786 int i, j;
Mark Whitley97562bd2000-07-17 20:06:42 +0000787
788 /* go through the replacement string */
789 for (i = 0; replace[i]; i++) {
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200790 /* if we find a backreference (\1, \2, etc.) print the backref'ed text */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000791 if (replace[i] == '\\') {
792 unsigned backref = replace[++i] - '0';
793 if (backref <= 9) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000794 /* print out the text held in G.regmatch[backref] */
795 if (G.regmatch[backref].rm_so != -1) {
796 j = G.regmatch[backref].rm_so;
797 while (j < G.regmatch[backref].rm_eo)
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000798 pipe_putc(line[j++]);
799 }
800 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000801 }
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000802 /* I _think_ it is impossible to get '\' to be
Denys Vlasenko10ad6222017-04-17 16:13:32 +0200803 * the last char in replace string. Thus we don't check
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000804 * for replace[i] == NUL. (counterexample anyone?) */
805 /* if we find a backslash escaped character, print the character */
806 pipe_putc(replace[i]);
807 continue;
Mark Whitley97562bd2000-07-17 20:06:42 +0000808 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000809 /* if we find an unescaped '&' print out the whole matched text. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000810 if (replace[i] == '&') {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000811 j = G.regmatch[0].rm_so;
812 while (j < G.regmatch[0].rm_eo)
Denis Vlasenko80778502006-10-25 12:46:46 +0000813 pipe_putc(line[j++]);
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000814 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000815 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000816 /* Otherwise just output the character. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000817 pipe_putc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000818 }
819}
820
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200821static int do_subst_command(sed_cmd_t *sed_cmd, char **line_p)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000822{
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200823 char *line = *line_p;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000824 unsigned match_count = 0;
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200825 bool altered = 0;
826 bool prev_match_empty = 1;
827 bool tried_at_eol = 0;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000828 regex_t *current_regex;
829
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200830 current_regex = sed_cmd->sub_match;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000831 /* Handle empty regex. */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200832 if (!current_regex) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000833 current_regex = G.previous_regex_ptr;
Denis Vlasenko80778502006-10-25 12:46:46 +0000834 if (!current_regex)
James Byrne69374872019-07-02 11:35:03 +0200835 bb_simple_error_msg_and_die("no previous regexp");
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200836 }
837 G.previous_regex_ptr = current_regex;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000838
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000839 /* Find the first match */
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100840 dbg("matching '%s'", line);
841 if (REG_NOMATCH == regexec(current_regex, line, 10, G.regmatch, 0)) {
842 dbg("no match");
Mark Whitley2dc192f2000-11-03 19:47:00 +0000843 return 0;
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100844 }
845 dbg("match");
Mark Whitley2dc192f2000-11-03 19:47:00 +0000846
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000847 /* Initialize temporary output buffer. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000848 G.pipeline.buf = xmalloc(PIPE_GROW);
849 G.pipeline.len = PIPE_GROW;
850 G.pipeline.idx = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000851
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000852 /* Now loop through, substituting for matches */
853 do {
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200854 int start = G.regmatch[0].rm_so;
855 int end = G.regmatch[0].rm_eo;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000856 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000857
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000858 match_count++;
859
860 /* If we aren't interested in this match, output old line to
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200861 * end of match and continue */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000862 if (sed_cmd->which_match
863 && (sed_cmd->which_match != match_count)
864 ) {
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200865 for (i = 0; i < end; i++)
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200866 pipe_putc(*line++);
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200867 /* Null match? Print one more char */
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200868 if (start == end && *line)
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200869 pipe_putc(*line++);
Denys Vlasenkob84dafb2012-04-24 19:27:34 +0200870 goto next;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000871 }
872
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200873 /* Print everything before the match */
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200874 for (i = 0; i < start; i++)
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200875 pipe_putc(line[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000876
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200877 /* Then print the substitution string,
878 * unless we just matched empty string after non-empty one.
879 * Example: string "cccd", pattern "c*", repl "R":
880 * result is "RdR", not "RRdR": first match "ccc",
881 * second is "" before "d", third is "" after "d".
882 * Second match is NOT replaced!
883 */
Denys Vlasenko84406e42012-06-07 16:34:57 +0200884 if (prev_match_empty || start != 0 || start != end) {
Denys Vlasenko37ca36a2012-06-08 10:25:31 +0200885 //dbg("%d %d %d", prev_match_empty, start, end);
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200886 dbg("inserting replacement at %d in '%s'", start, line);
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200887 do_subst_w_backrefs(line, sed_cmd->string);
Denys Vlasenko37ca36a2012-06-08 10:25:31 +0200888 /* Flag that something has changed */
889 altered = 1;
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200890 } else {
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200891 dbg("NOT inserting replacement at %d in '%s'", start, line);
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200892 }
Mark Whitley97562bd2000-07-17 20:06:42 +0000893
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200894 /* If matched string is empty (f.e. "c*" pattern),
895 * copy verbatim one char after it before attempting more matches
896 */
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200897 prev_match_empty = (start == end);
Denys Vlasenko37ca36a2012-06-08 10:25:31 +0200898 if (prev_match_empty) {
899 if (!line[end]) {
900 tried_at_eol = 1;
901 } else {
902 pipe_putc(line[end]);
903 end++;
904 }
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200905 }
906
907 /* Advance past the match */
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200908 dbg("line += %d", end);
909 line += end;
Mark Whitley97562bd2000-07-17 20:06:42 +0000910
Mark Whitley2dc192f2000-11-03 19:47:00 +0000911 /* if we're not doing this globally, get out now */
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100912 if (sed_cmd->which_match != 0)
913 break;
Denys Vlasenkob84dafb2012-04-24 19:27:34 +0200914 next:
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +0200915 /* Exit if we are at EOL and already tried matching at it */
916 if (*line == '\0') {
917 if (tried_at_eol)
918 break;
919 tried_at_eol = 1;
920 }
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200921
Denys Vlasenkoc35545a2012-06-04 14:45:09 +0200922//maybe (end ? REG_NOTBOL : 0) instead of unconditional REG_NOTBOL?
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +0100923 } while (regexec(current_regex, line, 10, G.regmatch, REG_NOTBOL) != REG_NOMATCH);
Mark Whitley2dc192f2000-11-03 19:47:00 +0000924
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000925 /* Copy rest of string into output pipeline */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200926 while (1) {
927 char c = *line++;
928 pipe_putc(c);
929 if (c == '\0')
930 break;
931 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000932
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200933 free(*line_p);
934 *line_p = G.pipeline.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000935 return altered;
936}
Mark Whitley6315ce62000-07-10 22:55:51 +0000937
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000938/* Set command pointer to point to this label. (Does not handle null label.) */
Rob Landley4795e4e2006-07-26 17:25:08 +0000939static sed_cmd_t *branch_to(char *label)
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000940{
941 sed_cmd_t *sed_cmd;
Glenn L McGrathd4185b02003-04-11 17:10:23 +0000942
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +0200943 for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) {
Denys Vlasenko1d3a04a2016-11-28 01:22:57 +0100944 if (sed_cmd->cmd == ':'
945 && sed_cmd->string
946 && strcmp(sed_cmd->string, label) == 0
947 ) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000948 return sed_cmd;
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000949 }
950 }
Denis Vlasenko80778502006-10-25 12:46:46 +0000951 bb_error_msg_and_die("can't find label for jump to '%s'", label);
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000952}
Mark Whitley6315ce62000-07-10 22:55:51 +0000953
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000954static void append(char *s)
955{
Denys Vlasenko9d46a7a2013-10-30 10:22:47 +0100956 llist_add_to_end(&G.append_head, s);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000957}
958
Denys Vlasenkoc44539f2013-10-30 14:25:22 +0100959/* Output line of text. */
960/* Note:
961 * The tricks with NO_EOL_CHAR and last_puts_char are there to emulate gnu sed.
962 * Without them, we had this:
963 * echo -n thingy >z1
964 * echo -n again >z2
965 * >znull
966 * sed "s/i/z/" z1 z2 znull | hexdump -vC
967 * output:
968 * gnu sed 4.1.5:
969 * 00000000 74 68 7a 6e 67 79 0a 61 67 61 7a 6e |thzngy.agazn|
970 * bbox:
971 * 00000000 74 68 7a 6e 67 79 61 67 61 7a 6e |thzngyagazn|
Rob Landleydcc28662004-11-25 07:21:47 +0000972 */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000973enum {
974 NO_EOL_CHAR = 1,
Denis Vlasenko86811802007-01-29 17:10:19 +0000975 LAST_IS_NUL = 2,
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000976};
Denys Vlasenkoc44539f2013-10-30 14:25:22 +0100977static void puts_maybe_newline(char *s, FILE *file, char *last_puts_char, char last_gets_char)
978{
979 char lpc = *last_puts_char;
980
981 /* Need to insert a '\n' between two files because first file's
982 * last line wasn't terminated? */
983 if (lpc != '\n' && lpc != '\0') {
984 fputc('\n', file);
985 lpc = '\n';
986 }
987 fputs(s, file);
988
989 /* 'x' - just something which is not '\n', '\0' or NO_EOL_CHAR */
990 if (s[0])
991 lpc = 'x';
992
993 /* had trailing '\0' and it was last char of file? */
994 if (last_gets_char == LAST_IS_NUL) {
995 fputc('\0', file);
996 lpc = 'x'; /* */
997 } else
998 /* had trailing '\n' or '\0'? */
999 if (last_gets_char != NO_EOL_CHAR) {
1000 fputc(last_gets_char, file);
1001 lpc = last_gets_char;
1002 }
1003
1004 if (ferror(file)) {
1005 xfunc_error_retval = 4; /* It's what gnu sed exits with... */
James Byrne69374872019-07-02 11:35:03 +02001006 bb_simple_error_msg_and_die(bb_msg_write_error);
Denys Vlasenkoc44539f2013-10-30 14:25:22 +01001007 }
1008 *last_puts_char = lpc;
1009}
1010
Denys Vlasenkof2559e52016-05-06 18:25:56 +02001011static void flush_append(char *last_puts_char)
Denys Vlasenkoc44539f2013-10-30 14:25:22 +01001012{
1013 char *data;
1014
1015 /* Output appended lines. */
Denys Vlasenkof2559e52016-05-06 18:25:56 +02001016 while ((data = (char *)llist_pop(&G.append_head)) != NULL) {
1017 /* Append command does not respect "nonterminated-ness"
1018 * of last line. Try this:
1019 * $ echo -n "woot" | sed -e '/woot/a woo' -
1020 * woot
1021 * woo
1022 * (both lines are terminated with \n)
1023 * Therefore we do not propagate "last_gets_char" here,
1024 * pass '\n' instead:
1025 */
1026 puts_maybe_newline(data, G.nonstdout, last_puts_char, '\n');
Denys Vlasenkoc44539f2013-10-30 14:25:22 +01001027 free(data);
1028 }
1029}
1030
1031/* Get next line of input from G.input_file_list, flushing append buffer and
1032 * noting if we ran out of files without a newline on the last line we read.
1033 */
Denys Vlasenkof2559e52016-05-06 18:25:56 +02001034static char *get_next_line(char *gets_char, char *last_puts_char)
Rob Landleydcc28662004-11-25 07:21:47 +00001035{
Denis Vlasenko80778502006-10-25 12:46:46 +00001036 char *temp = NULL;
Quentin Rameaue2afae62018-04-01 19:49:58 +02001037 size_t len;
Denis Vlasenkoc562bb72007-01-29 17:08:51 +00001038 char gc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001039
Denys Vlasenkof2559e52016-05-06 18:25:56 +02001040 flush_append(last_puts_char);
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001041
1042 /* will be returned if last line in the file
1043 * doesn't end with either '\n' or '\0' */
1044 gc = NO_EOL_CHAR;
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001045 for (; G.current_input_file <= G.last_input_file; G.current_input_file++) {
Denys Vlasenko259b3c02013-11-28 03:14:16 +01001046 FILE *fp = G.current_fp;
1047 if (!fp) {
1048 const char *path = G.input_file_list[G.current_input_file];
1049 fp = stdin;
1050 if (path != bb_msg_standard_input) {
1051 fp = fopen_or_warn(path, "r");
1052 if (!fp) {
1053 G.exitcode = EXIT_FAILURE;
1054 continue;
1055 }
1056 }
1057 G.current_fp = fp;
1058 }
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +00001059 /* Read line up to a newline or NUL byte, inclusive,
1060 * return malloc'ed char[]. length of the chunk read
1061 * is stored in len. NULL if EOF/error */
Denis Vlasenko86811802007-01-29 17:10:19 +00001062 temp = bb_get_chunk_from_file(fp, &len);
Rob Landley2b26fd52006-02-24 02:30:39 +00001063 if (temp) {
Denis Vlasenko8b22b072006-12-02 17:58:10 +00001064 /* len > 0 here, it's ok to do temp[len-1] */
1065 char c = temp[len-1];
1066 if (c == '\n' || c == '\0') {
1067 temp[len-1] = '\0';
Denis Vlasenkoc562bb72007-01-29 17:08:51 +00001068 gc = c;
Denis Vlasenko86811802007-01-29 17:10:19 +00001069 if (c == '\0') {
1070 int ch = fgetc(fp);
1071 if (ch != EOF)
1072 ungetc(ch, fp);
1073 else
1074 gc = LAST_IS_NUL;
1075 }
Denis Vlasenko8b22b072006-12-02 17:58:10 +00001076 }
Denis Vlasenkoc562bb72007-01-29 17:08:51 +00001077 /* else we put NO_EOL_CHAR into *gets_char */
1078 break;
1079
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001080 /* NB: I had the idea of peeking next file(s) and returning
1081 * NO_EOL_CHAR only if it is the *last* non-empty
1082 * input file. But there is a case where this won't work:
1083 * file1: "a woo\nb woo"
1084 * file2: "c no\nd no"
1085 * sed -ne 's/woo/bang/p' input1 input2 => "a bang\nb bang"
1086 * (note: *no* newline after "b bang"!) */
Denis Vlasenko8b22b072006-12-02 17:58:10 +00001087 }
1088 /* Close this file and advance to next one */
Denys Vlasenko259b3c02013-11-28 03:14:16 +01001089 fclose_if_not_stdin(fp);
1090 G.current_fp = NULL;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001091 }
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001092 *gets_char = gc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001093 return temp;
1094}
1095
Denis Vlasenko17a15262007-03-26 20:48:46 +00001096#define sed_puts(s, n) (puts_maybe_newline(s, G.nonstdout, &last_puts_char, n))
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001097
Denis Vlasenko8274e062007-08-06 03:41:08 +00001098static int beg_match(sed_cmd_t *sed_cmd, const char *pattern_space)
1099{
1100 int retval = sed_cmd->beg_match && !regexec(sed_cmd->beg_match, pattern_space, 0, NULL, 0);
1101 if (retval)
1102 G.previous_regex_ptr = sed_cmd->beg_match;
1103 return retval;
1104}
1105
Rob Landley2b26fd52006-02-24 02:30:39 +00001106/* Process all the lines in all the files */
1107
Rob Landleydcc28662004-11-25 07:21:47 +00001108static void process_files(void)
Mark Whitley6315ce62000-07-10 22:55:51 +00001109{
Rob Landleyce4f0e92004-10-30 06:54:19 +00001110 char *pattern_space, *next_line;
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001111 int linenum = 0;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001112 char last_puts_char = '\n';
1113 char last_gets_char, next_gets_char;
Denis Vlasenko2ea630f2006-12-10 02:52:19 +00001114 sed_cmd_t *sed_cmd;
1115 int substituted;
Mark Whitley6315ce62000-07-10 22:55:51 +00001116
Rob Landley2b26fd52006-02-24 02:30:39 +00001117 /* Prime the pump */
Denys Vlasenkof2559e52016-05-06 18:25:56 +02001118 next_line = get_next_line(&next_gets_char, &last_puts_char);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001119
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001120 /* Go through every line in each file */
Denis Vlasenkof39c7c02008-02-28 17:59:01 +00001121 again:
Denis Vlasenko2ea630f2006-12-10 02:52:19 +00001122 substituted = 0;
Glenn L McGrath505bd0f2003-03-08 05:21:02 +00001123
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001124 /* Advance to next line. Stop if out of lines. */
1125 pattern_space = next_line;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001126 if (!pattern_space)
1127 return;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001128 last_gets_char = next_gets_char;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001129
1130 /* Read one line in advance so we can act on the last line,
1131 * the '$' address */
Denys Vlasenkof2559e52016-05-06 18:25:56 +02001132 next_line = get_next_line(&next_gets_char, &last_puts_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001133 linenum++;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001134
1135 /* For every line, go through all the commands */
Denis Vlasenkof39c7c02008-02-28 17:59:01 +00001136 restart:
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001137 for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001138 int old_matched, matched;
Eric Andersen52a3c272003-12-23 08:53:51 +00001139
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001140 old_matched = sed_cmd->in_match;
Denys Vlasenko0545bfa2019-05-13 16:29:34 +02001141 if (!old_matched)
1142 sed_cmd->end_line = sed_cmd->end_line_orig;
Mark Whitley0915c4b2001-06-11 23:50:06 +00001143
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001144 /* Determine if this command matches this line: */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001145
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001146 dbg("match1:%d", sed_cmd->in_match);
1147 dbg("match2:%d", (!sed_cmd->beg_line && !sed_cmd->end_line
1148 && !sed_cmd->beg_match && !sed_cmd->end_match));
1149 dbg("match3:%d", (sed_cmd->beg_line > 0
1150 && (sed_cmd->end_line || sed_cmd->end_match
1151 ? (sed_cmd->beg_line <= linenum)
1152 : (sed_cmd->beg_line == linenum)
1153 )
1154 ));
1155 dbg("match4:%d", (beg_match(sed_cmd, pattern_space)));
1156 dbg("match5:%d", (sed_cmd->beg_line == -1 && next_line == NULL));
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001157
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001158 /* Are we continuing a previous multi-line match? */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001159 sed_cmd->in_match = sed_cmd->in_match
1160 /* Or is no range necessary? */
1161 || (!sed_cmd->beg_line && !sed_cmd->end_line
1162 && !sed_cmd->beg_match && !sed_cmd->end_match)
1163 /* Or did we match the start of a numerical range? */
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001164 || (sed_cmd->beg_line > 0
1165 && (sed_cmd->end_line || sed_cmd->end_match
Denys Vlasenkoc4679242010-06-04 01:31:48 +02001166 /* note: even if end is numeric and is < linenum too,
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001167 * GNU sed matches! We match too, therefore we don't
1168 * check here that linenum <= end.
1169 * Example:
1170 * printf '1\n2\n3\n4\n' | sed -n '1{N;N;d};1p;2,3p;3p;4p'
1171 * first three input lines are deleted;
1172 * 4th line is matched and printed
1173 * by "2,3" (!) and by "4" ranges
1174 */
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001175 ? (sed_cmd->beg_line <= linenum) /* N,end */
1176 : (sed_cmd->beg_line == linenum) /* N */
1177 )
1178 )
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001179 /* Or does this line match our begin address regex? */
Denis Vlasenko8274e062007-08-06 03:41:08 +00001180 || (beg_match(sed_cmd, pattern_space))
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001181 /* Or did we match last line of input? */
1182 || (sed_cmd->beg_line == -1 && next_line == NULL);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001183
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001184 /* Snapshot the value */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001185 matched = sed_cmd->in_match;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001186
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001187 dbg("cmd:'%c' matched:%d beg_line:%d end_line:%d linenum:%d",
1188 sed_cmd->cmd, matched, sed_cmd->beg_line, sed_cmd->end_line, linenum);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001189
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001190 /* Is this line the end of the current match? */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001191
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001192 if (matched) {
Denys Vlasenko63f4d322015-04-17 14:24:55 +02001193 if (sed_cmd->end_line <= -2) {
1194 /* address2 is +N, i.e. N lines from beg_line */
1195 sed_cmd->end_line = linenum + (-sed_cmd->end_line - 2);
1196 }
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001197 /* once matched, "n,xxx" range is dead, disabling it */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001198 if (sed_cmd->beg_line > 0) {
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001199 sed_cmd->beg_line = -2;
Denys Vlasenko2e284a42010-08-01 04:14:46 +02001200 }
Denys Vlasenko63f4d322015-04-17 14:24:55 +02001201 dbg("end1:%d", sed_cmd->end_line ? sed_cmd->end_line == -1
1202 ? !next_line : (sed_cmd->end_line <= linenum)
1203 : !sed_cmd->end_match);
1204 dbg("end2:%d", sed_cmd->end_match && old_matched
1205 && !regexec(sed_cmd->end_match,pattern_space, 0, NULL, 0));
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001206 sed_cmd->in_match = !(
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001207 /* has the ending line come, or is this a single address command? */
Denys Vlasenko52d83702011-05-03 00:51:43 +02001208 (sed_cmd->end_line
1209 ? sed_cmd->end_line == -1
1210 ? !next_line
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001211 : (sed_cmd->end_line <= linenum)
1212 : !sed_cmd->end_match
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001213 )
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001214 /* or does this line matches our last address regex */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001215 || (sed_cmd->end_match && old_matched
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001216 && (regexec(sed_cmd->end_match,
Denys Vlasenko6830ade2013-01-15 13:58:01 +01001217 pattern_space, 0, NULL, 0) == 0)
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001218 )
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +02001219 );
Erik Andersene49d5ec2000-02-08 19:58:47 +00001220 }
Erik Andersen1266a131999-12-29 22:19:46 +00001221
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001222 /* Skip blocks of commands we didn't match */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001223 if (sed_cmd->cmd == '{') {
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001224 if (sed_cmd->invert ? matched : !matched) {
Denys Vlasenkof2c16ed2010-04-20 04:00:03 -04001225 unsigned nest_cnt = 0;
1226 while (1) {
1227 if (sed_cmd->cmd == '{')
1228 nest_cnt++;
1229 if (sed_cmd->cmd == '}') {
1230 nest_cnt--;
1231 if (nest_cnt == 0)
1232 break;
1233 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001234 sed_cmd = sed_cmd->next;
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001235 if (!sed_cmd)
James Byrne69374872019-07-02 11:35:03 +02001236 bb_simple_error_msg_and_die("unterminated {");
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001237 }
1238 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001239 continue;
1240 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001241
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001242 /* Okay, so did this line match? */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001243 if (sed_cmd->invert ? matched : !matched)
1244 continue; /* no */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001245
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001246 /* Update last used regex in case a blank substitute BRE is found */
1247 if (sed_cmd->beg_match) {
1248 G.previous_regex_ptr = sed_cmd->beg_match;
1249 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001250
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001251 /* actual sedding */
Denys Vlasenkod29ae7e2012-01-15 20:06:03 +01001252 dbg("pattern_space:'%s' next_line:'%s' cmd:%c",
1253 pattern_space, next_line, sed_cmd->cmd);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001254 switch (sed_cmd->cmd) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001255
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001256 /* Print line number */
1257 case '=':
1258 fprintf(G.nonstdout, "%d\n", linenum);
1259 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001260
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001261 /* Write the current pattern space up to the first newline */
1262 case 'P':
1263 {
1264 char *tmp = strchr(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001265 if (tmp) {
1266 *tmp = '\0';
1267 /* TODO: explain why '\n' below */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001268 sed_puts(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001269 *tmp = '\n';
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001270 break;
1271 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001272 /* Fall Through */
1273 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001274
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001275 /* Write the current pattern space to output */
1276 case 'p':
1277 /* NB: we print this _before_ the last line
1278 * (of current file) is printed. Even if
1279 * that line is nonterminated, we print
1280 * '\n' here (gnu sed does the same) */
1281 sed_puts(pattern_space, '\n');
1282 break;
1283 /* Delete up through first newline */
1284 case 'D':
1285 {
1286 char *tmp = strchr(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001287 if (tmp) {
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001288 overlapping_strcpy(pattern_space, tmp + 1);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001289 goto restart;
1290 }
1291 }
1292 /* discard this line. */
1293 case 'd':
1294 goto discard_line;
1295
1296 /* Substitute with regex */
1297 case 's':
1298 if (!do_subst_command(sed_cmd, &pattern_space))
1299 break;
Denys Vlasenko21f6fbf2012-06-04 14:44:47 +02001300 dbg("do_subst_command succeeded:'%s'", pattern_space);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001301 substituted |= 1;
1302
1303 /* handle p option */
1304 if (sed_cmd->sub_p)
1305 sed_puts(pattern_space, last_gets_char);
1306 /* handle w option */
1307 if (sed_cmd->sw_file)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001308 puts_maybe_newline(
1309 pattern_space, sed_cmd->sw_file,
1310 &sed_cmd->sw_last_char, last_gets_char);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001311 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001312
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001313 /* Append line to linked list to be printed later */
1314 case 'a':
Denys Vlasenko9d46a7a2013-10-30 10:22:47 +01001315 append(xstrdup(sed_cmd->string));
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001316 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001317
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001318 /* Insert text before this line */
1319 case 'i':
1320 sed_puts(sed_cmd->string, '\n');
1321 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001322
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001323 /* Cut and paste text (replace) */
1324 case 'c':
1325 /* Only triggers on last line of a matching range. */
1326 if (!sed_cmd->in_match)
Denys Vlasenko96a18332010-04-19 22:36:07 -04001327 sed_puts(sed_cmd->string, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001328 goto discard_line;
1329
1330 /* Read file, append contents to output */
1331 case 'r':
1332 {
1333 FILE *rfile;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001334 rfile = fopen_for_read(sed_cmd->string);
1335 if (rfile) {
1336 char *line;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001337 while ((line = xmalloc_fgetline(rfile))
1338 != NULL)
1339 append(line);
Denys Vlasenko9d46a7a2013-10-30 10:22:47 +01001340 fclose(rfile);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001341 }
1342
1343 break;
1344 }
1345
1346 /* Write pattern space to file. */
1347 case 'w':
1348 puts_maybe_newline(
1349 pattern_space, sed_cmd->sw_file,
1350 &sed_cmd->sw_last_char, last_gets_char);
1351 break;
1352
1353 /* Read next line from input */
1354 case 'n':
1355 if (!G.be_quiet)
1356 sed_puts(pattern_space, last_gets_char);
Denys Vlasenko76d72372016-09-01 01:59:11 +02001357 if (next_line == NULL) {
1358 /* If no next line, jump to end of script and exit. */
1359 goto discard_line;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001360 }
Denys Vlasenko76d72372016-09-01 01:59:11 +02001361 free(pattern_space);
1362 pattern_space = next_line;
1363 last_gets_char = next_gets_char;
1364 next_line = get_next_line(&next_gets_char, &last_puts_char);
1365 substituted = 0;
1366 linenum++;
1367 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001368
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001369 /* Quit. End of script, end of input. */
1370 case 'q':
1371 /* Exit the outer while loop */
1372 free(next_line);
1373 next_line = NULL;
1374 goto discard_commands;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001375
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001376 /* Append the next line to the current line */
1377 case 'N':
1378 {
1379 int len;
1380 /* If no next line, jump to end of script and exit. */
Denys Vlasenko0d555fc2010-08-16 16:26:33 +02001381 /* http://www.gnu.org/software/sed/manual/sed.html:
1382 * "Most versions of sed exit without printing anything
1383 * when the N command is issued on the last line of
1384 * a file. GNU sed prints pattern space before exiting
1385 * unless of course the -n command switch has been
1386 * specified. This choice is by design."
1387 */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001388 if (next_line == NULL) {
Denys Vlasenko0d555fc2010-08-16 16:26:33 +02001389 //goto discard_line;
1390 goto discard_commands; /* GNU behavior */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001391 }
Denys Vlasenkobf5f99f2010-06-04 01:29:52 +02001392 /* Append next_line, read new next_line. */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001393 len = strlen(pattern_space);
Denys Vlasenko90377872010-01-08 09:07:50 +01001394 pattern_space = xrealloc(pattern_space, len + strlen(next_line) + 2);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001395 pattern_space[len] = '\n';
1396 strcpy(pattern_space + len+1, next_line);
1397 last_gets_char = next_gets_char;
Denys Vlasenkof2559e52016-05-06 18:25:56 +02001398 next_line = get_next_line(&next_gets_char, &last_puts_char);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001399 linenum++;
1400 break;
1401 }
1402
1403 /* Test/branch if substitution occurred */
1404 case 't':
1405 if (!substituted) break;
1406 substituted = 0;
1407 /* Fall through */
1408 /* Test/branch if substitution didn't occur */
1409 case 'T':
1410 if (substituted) break;
1411 /* Fall through */
1412 /* Branch to label */
1413 case 'b':
1414 if (!sed_cmd->string) goto discard_commands;
1415 else sed_cmd = branch_to(sed_cmd->string);
1416 break;
1417 /* Transliterate characters */
1418 case 'y':
1419 {
1420 int i, j;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001421 for (i = 0; pattern_space[i]; i++) {
1422 for (j = 0; sed_cmd->string[j]; j += 2) {
1423 if (pattern_space[i] == sed_cmd->string[j]) {
1424 pattern_space[i] = sed_cmd->string[j + 1];
1425 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001426 }
1427 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001428 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001429
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001430 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001431 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001432 case 'g': /* Replace pattern space with hold space */
1433 free(pattern_space);
1434 pattern_space = xstrdup(G.hold_space ? G.hold_space : "");
1435 break;
1436 case 'G': /* Append newline and hold space to pattern space */
1437 {
1438 int pattern_space_size = 2;
1439 int hold_space_size = 0;
1440
1441 if (pattern_space)
1442 pattern_space_size += strlen(pattern_space);
1443 if (G.hold_space)
1444 hold_space_size = strlen(G.hold_space);
1445 pattern_space = xrealloc(pattern_space,
1446 pattern_space_size + hold_space_size);
1447 if (pattern_space_size == 2)
1448 pattern_space[0] = 0;
1449 strcat(pattern_space, "\n");
1450 if (G.hold_space)
1451 strcat(pattern_space, G.hold_space);
1452 last_gets_char = '\n';
1453
1454 break;
1455 }
1456 case 'h': /* Replace hold space with pattern space */
1457 free(G.hold_space);
1458 G.hold_space = xstrdup(pattern_space);
1459 break;
1460 case 'H': /* Append newline and pattern space to hold space */
1461 {
1462 int hold_space_size = 2;
1463 int pattern_space_size = 0;
1464
1465 if (G.hold_space)
1466 hold_space_size += strlen(G.hold_space);
1467 if (pattern_space)
1468 pattern_space_size = strlen(pattern_space);
1469 G.hold_space = xrealloc(G.hold_space,
1470 hold_space_size + pattern_space_size);
1471
1472 if (hold_space_size == 2)
1473 *G.hold_space = 0;
1474 strcat(G.hold_space, "\n");
1475 if (pattern_space)
1476 strcat(G.hold_space, pattern_space);
1477
1478 break;
1479 }
1480 case 'x': /* Exchange hold and pattern space */
1481 {
1482 char *tmp = pattern_space;
Denys Vlasenko90a99042009-09-06 02:36:23 +02001483 pattern_space = G.hold_space ? G.hold_space : xzalloc(1);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001484 last_gets_char = '\n';
1485 G.hold_space = tmp;
1486 break;
1487 }
1488 } /* switch */
1489 } /* for each cmd */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001490
1491 /*
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001492 * Exit point from sedding...
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001493 */
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001494 discard_commands:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001495 /* we will print the line unless we were told to be quiet ('-n')
1496 or if the line was suppressed (ala 'd'elete) */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001497 if (!G.be_quiet)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001498 sed_puts(pattern_space, last_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001499
1500 /* Delete and such jump here. */
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001501 discard_line:
Denys Vlasenkof2559e52016-05-06 18:25:56 +02001502 flush_append(&last_puts_char /*,last_gets_char*/);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001503 free(pattern_space);
1504
1505 goto again;
Erik Andersen1266a131999-12-29 22:19:46 +00001506}
1507
Glenn L McGrath42c25732003-10-04 05:27:56 +00001508/* It is possible to have a command line argument with embedded
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001509 * newlines. This counts as multiple command lines.
1510 * However, newline can be escaped: 's/e/z\<newline>z/'
Denys Vlasenko40ab27a2013-07-08 02:04:44 +02001511 * add_cmd() handles this.
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001512 */
Glenn L McGrath42c25732003-10-04 05:27:56 +00001513
1514static void add_cmd_block(char *cmdstr)
1515{
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001516 char *sv, *eol;
Glenn L McGrath42c25732003-10-04 05:27:56 +00001517
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001518 cmdstr = sv = xstrdup(cmdstr);
1519 do {
1520 eol = strchr(cmdstr, '\n');
Denys Vlasenko40ab27a2013-07-08 02:04:44 +02001521 if (eol)
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001522 *eol = '\0';
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001523 add_cmd(cmdstr);
1524 cmdstr = eol + 1;
1525 } while (eol);
1526 free(sv);
Glenn L McGrath42c25732003-10-04 05:27:56 +00001527}
1528
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001529int sed_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001530int sed_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001531{
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001532 unsigned opt;
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001533 llist_t *opt_e, *opt_f;
Simon B8c343952012-05-06 13:59:15 +02001534 char *opt_i;
1535
1536#if ENABLE_LONG_OPTS
1537 static const char sed_longopts[] ALIGN1 =
1538 /* name has_arg short */
1539 "in-place\0" Optional_argument "i"
1540 "regexp-extended\0" No_argument "r"
1541 "quiet\0" No_argument "n"
1542 "silent\0" No_argument "n"
1543 "expression\0" Required_argument "e"
1544 "file\0" Required_argument "f";
1545#endif
1546
Denis Vlasenko74324c82007-06-04 10:16:52 +00001547 INIT_G();
Rob Landleye3f5a3f2006-05-09 03:53:55 +00001548
Mark Whitley858c1ad2000-07-11 21:38:47 +00001549 /* destroy command strings on exit */
Rob Landley0b656282006-05-08 22:17:23 +00001550 if (ENABLE_FEATURE_CLEAN_UP) atexit(sed_free_and_close_stuff);
Mark Whitley858c1ad2000-07-11 21:38:47 +00001551
Rob Landleyfae1dc82005-11-20 07:44:35 +00001552 /* Lie to autoconf when it starts asking stupid questions. */
Simon B8c343952012-05-06 13:59:15 +02001553 if (argv[1] && strcmp(argv[1], "--version") == 0) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001554 puts("This is not GNU sed version 4.0");
1555 return 0;
Eric Andersenc06f5682004-02-04 10:57:46 +00001556 }
Eric Andersenc06f5682004-02-04 10:57:46 +00001557
Mark Whitley6315ce62000-07-10 22:55:51 +00001558 /* do normal option parsing */
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001559 opt_e = opt_f = NULL;
Simon B8c343952012-05-06 13:59:15 +02001560 opt_i = NULL;
Denys Vlasenko2e284a42010-08-01 04:14:46 +02001561 /* -i must be first, to match OPT_in_place definition */
David A. Wheeleraf0cdee2013-10-29 00:52:48 +01001562 /* -E is a synonym of -r:
1563 * GNU sed 4.2.1 mentions it in neither --help
1564 * nor manpage, but does recognize it.
1565 */
Denys Vlasenko22542ec2017-08-08 21:55:02 +02001566 opt = getopt32long(argv, "^"
1567 "i::rEne:*f:*"
1568 "\0" "nn"/*count -n*/,
1569 sed_longopts,
Denys Vlasenko036585a2017-08-08 16:38:18 +02001570 &opt_i, &opt_e, &opt_f,
1571 &G.be_quiet); /* counter for -n */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001572 //argc -= optind;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001573 argv += optind;
1574 if (opt & OPT_in_place) { // -i
Denys Vlasenkoe440b392017-08-16 17:45:32 +02001575 die_func = cleanup_outname;
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001576 }
David A. Wheeleraf0cdee2013-10-29 00:52:48 +01001577 if (opt & (2|4))
1578 G.regex_type |= REG_EXTENDED; // -r or -E
1579 //if (opt & 8)
1580 // G.be_quiet++; // -n (implemented with a counter instead)
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001581 while (opt_e) { // -e
Denis Vlasenkod50dda82008-06-15 05:40:56 +00001582 add_cmd_block(llist_pop(&opt_e));
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001583 }
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001584 while (opt_f) { // -f
1585 char *line;
1586 FILE *cmdfile;
Denys Vlasenkoe4d925b2016-04-08 00:20:36 +02001587 cmdfile = xfopen_stdin(llist_pop(&opt_f));
Denis Vlasenko8ee649a2008-03-26 20:04:27 +00001588 while ((line = xmalloc_fgetline(cmdfile)) != NULL) {
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001589 add_cmd(line);
1590 free(line);
1591 }
Denys Vlasenkoe4d925b2016-04-08 00:20:36 +02001592 fclose_if_not_stdin(cmdfile);
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001593 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001594 /* if we didn't get a pattern from -e or -f, use argv[0] */
David A. Wheeleraf0cdee2013-10-29 00:52:48 +01001595 if (!(opt & 0x30)) {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001596 if (!*argv)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001597 bb_show_usage();
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001598 add_cmd_block(*argv++);
Mark Whitley6315ce62000-07-10 22:55:51 +00001599 }
Glenn L McGrath42c25732003-10-04 05:27:56 +00001600 /* Flush any unfinished commands. */
1601 add_cmd("");
Mark Whitley6315ce62000-07-10 22:55:51 +00001602
Rob Landley53302f82004-02-18 09:54:15 +00001603 /* By default, we write to stdout */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001604 G.nonstdout = stdout;
Rob Landley53302f82004-02-18 09:54:15 +00001605
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001606 /* argv[0..(argc-1)] should be names of file to process. If no
Mark Whitley6315ce62000-07-10 22:55:51 +00001607 * files were specified or '-' was specified, take input from stdin.
1608 * Otherwise, we process all the files specified. */
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001609 G.input_file_list = argv;
1610 if (!argv[0]) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001611 if (opt & OPT_in_place)
Denis Vlasenko80778502006-10-25 12:46:46 +00001612 bb_error_msg_and_die(bb_msg_requires_arg, "-i");
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001613 argv[0] = (char*)bb_msg_standard_input;
1614 /* G.last_input_file = 0; - already is */
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001615 } else {
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001616 goto start;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001617
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001618 for (; *argv; argv++) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001619 struct stat statbuf;
1620 int nonstdoutfd;
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001621 sed_cmd_t *sed_cmd;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001622
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001623 G.last_input_file++;
1624 start:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001625 if (!(opt & OPT_in_place)) {
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001626 if (LONE_DASH(*argv)) {
1627 *argv = (char*)bb_msg_standard_input;
1628 process_files();
1629 }
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001630 continue;
1631 }
1632
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001633 /* -i: process each FILE separately: */
1634
Denys Vlasenkocd738712014-10-05 02:44:34 +02001635 if (stat(*argv, &statbuf) != 0) {
1636 bb_simple_perror_msg(*argv);
1637 G.exitcode = EXIT_FAILURE;
1638 G.current_input_file++;
1639 continue;
1640 }
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001641 G.outname = xasprintf("%sXXXXXX", *argv);
Alexander Shishkin67227372010-10-22 13:27:16 +02001642 nonstdoutfd = xmkstemp(G.outname);
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01001643 G.nonstdout = xfdopen_for_write(nonstdoutfd);
Denys Vlasenko57992482009-11-13 09:09:07 +01001644 /* Set permissions/owner of output file */
Denys Vlasenko3b727cc2010-06-18 02:12:56 +02001645 /* chmod'ing AFTER chown would preserve suid/sgid bits,
1646 * but GNU sed 4.2.1 does not preserve them either */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001647 fchmod(nonstdoutfd, statbuf.st_mode);
Denys Vlasenko57992482009-11-13 09:09:07 +01001648 fchown(nonstdoutfd, statbuf.st_uid, statbuf.st_gid);
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001649
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001650 process_files();
Denis Vlasenko17a15262007-03-26 20:48:46 +00001651 fclose(G.nonstdout);
Denis Vlasenko17a15262007-03-26 20:48:46 +00001652 G.nonstdout = stdout;
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001653
Simon B8c343952012-05-06 13:59:15 +02001654 if (opt_i) {
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001655 char *backupname = xasprintf("%s%s", *argv, opt_i);
1656 xrename(*argv, backupname);
Simon B8c343952012-05-06 13:59:15 +02001657 free(backupname);
1658 }
Denys Vlasenkodeb07692013-11-28 12:08:51 +01001659 /* else unlink(*argv); - rename below does this */
1660 xrename(G.outname, *argv); //TODO: rollback backup on error?
Denis Vlasenko17a15262007-03-26 20:48:46 +00001661 free(G.outname);
Denis Vlasenko40276642007-11-13 16:48:10 +00001662 G.outname = NULL;
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001663
Denys Vlasenko63f4d322015-04-17 14:24:55 +02001664 /* Fix disabled range matches and mangled ",+N" ranges */
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001665 for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) {
1666 sed_cmd->beg_line = sed_cmd->beg_line_orig;
Denys Vlasenko63f4d322015-04-17 14:24:55 +02001667 sed_cmd->end_line = sed_cmd->end_line_orig;
Denys Vlasenkoa7d6bb32011-08-16 13:29:34 +02001668 }
Mark Whitley6315ce62000-07-10 22:55:51 +00001669 }
Denys Vlasenkoeb08b6e2010-06-19 17:51:06 +02001670 /* Here, to handle "sed 'cmds' nonexistent_file" case we did:
Denys Vlasenko259b3c02013-11-28 03:14:16 +01001671 * if (G.current_input_file[G.current_input_file] == NULL)
1672 * return G.exitcode;
Denys Vlasenkoeb08b6e2010-06-19 17:51:06 +02001673 * but it's not needed since process_files() works correctly
1674 * in this case too. */
Mark Whitley6315ce62000-07-10 22:55:51 +00001675 }
Denys Vlasenko259b3c02013-11-28 03:14:16 +01001676
Denys Vlasenkoeb08b6e2010-06-19 17:51:06 +02001677 process_files();
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001678
Denys Vlasenko259b3c02013-11-28 03:14:16 +01001679 return G.exitcode;
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001680}