blob: 4bd6e0168d8fc3366ec8bc9c7baf388ac4b69e23 [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 *
Rob Landleye9a7a622006-09-22 02:52:41 +000013 * Licensed under GPL version 2, see file LICENSE in this tarball for details.
Eric Andersen6b6b3f61999-10-28 16:06:25 +000014 */
15
Glenn L McGrathaa5a6022003-10-01 03:06:16 +000016/* Code overview.
17
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
Denis Vlasenko17a15262007-03-26 20:48:46 +000024 (G.sed_cmd_head/G.sed_cmd_tail).
Glenn L McGrathaa5a6022003-10-01 03:06:16 +000025
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000026 add_input_file() adds a FILE* to the list of input files. We need to
Rob Landleyfae1dc82005-11-20 07:44:35 +000027 know all input sources ahead of time to find the last line for the $ match.
Rob Landleydcc28662004-11-25 07:21:47 +000028
29 process_files() does actual sedding, reading data lines from each input FILE *
Glenn L McGrathaa5a6022003-10-01 03:06:16 +000030 (which could be stdin) and applying the sed command list (sed_cmd_head) to
31 each of the resulting lines.
32
33 sed_main() is where external code calls into this, with a command line.
34*/
35
36
Mark Whitley6315ce62000-07-10 22:55:51 +000037/*
38 Supported features and commands in this version of sed:
39
40 - comments ('#')
Mark Whitley94074a92000-07-14 00:00:15 +000041 - address matching: num|/matchstr/[,num|/matchstr/|$]command
42 - commands: (p)rint, (d)elete, (s)ubstitue (with g & I flags)
43 - edit commands: (a)ppend, (i)nsert, (c)hange
Mark Whitley1f3b9f22001-05-11 22:27:13 +000044 - file commands: (r)ead
Rob Landleyc63fe912005-10-30 10:08:13 +000045 - backreferences in substitution expressions (\0, \1, \2...\9)
Glenn L McGrathf50ce312003-03-09 15:12:24 +000046 - grouped commands: {cmd1;cmd2}
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +000047 - transliteration (y/source-chars/dest-chars/)
48 - pattern space hold space storing / swapping (g, h, x)
Rob Landley93850a52005-05-18 06:34:37 +000049 - labels / branching (: label, b, t, T)
Glenn L McGrathf50ce312003-03-09 15:12:24 +000050
Mark Whitley6315ce62000-07-10 22:55:51 +000051 (Note: Specifying an address (range) to match is *optional*; commands
52 default to the whole pattern space if no specific address match was
53 requested.)
54
Glenn L McGrath2570b432003-09-16 05:25:43 +000055 Todo:
Glenn L McGrath2570b432003-09-16 05:25:43 +000056 - Create a wrapper around regex to make libc's regex conform with sed
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +000057
Glenn L McGrathd5eadea2003-03-09 02:39:29 +000058 Reference http://www.opengroup.org/onlinepubs/007904975/utilities/sed.html
Mark Whitley6315ce62000-07-10 22:55:51 +000059*/
60
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000061#include "libbb.h"
"Vladimir N. Oleynik"23f62fc2005-09-14 16:59:11 +000062#include "xregex.h"
Mark Whitley6315ce62000-07-10 22:55:51 +000063
Rob Landleye3f5a3f2006-05-09 03:53:55 +000064/* Each sed command turns into one of these structures. */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +000065typedef struct sed_cmd_s {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000066 /* Ordered by alignment requirements: currently 36 bytes on x86 */
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +000067 struct sed_cmd_s *next; /* Next command (linked list, NULL terminated) */
Mark Whitley2dc192f2000-11-03 19:47:00 +000068
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000069 /* address storage */
70 regex_t *beg_match; /* sed -e '/match/cmd' */
71 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
72 regex_t *sub_match; /* For 's/sub_match/string/' */
73 int beg_line; /* 'sed 1p' 0 == apply commands to all lines */
74 int end_line; /* 'sed 1,3p' 0 == one line only. -1 = last line ($) */
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +000075
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +000076 FILE *sw_file; /* File (sw) command writes to, -1 for none. */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000077 char *string; /* Data string for (saicytb) commands. */
Glenn L McGrathfc4cb4d2003-04-12 16:10:42 +000078
Denis Vlasenko284d0fa2008-02-16 13:18:17 +000079 unsigned which_match; /* (s) Which match to replace (0 for all) */
Glenn L McGrathfc4cb4d2003-04-12 16:10:42 +000080
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000081 /* Bitfields (gcc won't group them if we don't) */
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +000082 unsigned invert:1; /* the '!' after the address */
83 unsigned in_match:1; /* Next line also included in match? */
84 unsigned sub_p:1; /* (s) print option */
Denis Vlasenko1375bc72006-12-02 20:12:12 +000085
Denis Vlasenko34c4e5f2007-01-30 22:25:16 +000086 char sw_last_char; /* Last line written by (sw) had no '\n' */
Glenn L McGrathc18ce372003-09-13 06:57:39 +000087
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000088 /* GENERAL FIELDS */
89 char cmd; /* The command char: abcdDgGhHilnNpPqrstwxy:={} */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +000090} sed_cmd_t;
Mark Whitley6315ce62000-07-10 22:55:51 +000091
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000092static const char semicolon_whitespace[] ALIGN1 = "; \n\r\t\v";
Glenn L McGrathaa5a6022003-10-01 03:06:16 +000093
Denis Vlasenko17a15262007-03-26 20:48:46 +000094struct globals {
Rob Landleye3f5a3f2006-05-09 03:53:55 +000095 /* options */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +000096 int be_quiet, regex_type;
Rob Landleye3f5a3f2006-05-09 03:53:55 +000097 FILE *nonstdout;
98 char *outname, *hold_space;
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +000099
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000100 /* List of input files */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000101 int input_file_count, current_input_file;
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000102 FILE **input_file_list;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000103
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000104 regmatch_t regmatch[10];
105 regex_t *previous_regex_ptr;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +0000106
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000107 /* linked list of sed commands */
108 sed_cmd_t sed_cmd_head, *sed_cmd_tail;
109
110 /* Linked list of append lines */
111 llist_t *append_head;
112
113 char *add_cmd_line;
114
115 struct pipeline {
116 char *buf; /* Space to hold string */
117 int idx; /* Space used */
118 int len; /* Space allocated */
119 } pipeline;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100120} FIX_ALIASING;
Denis Vlasenko17a15262007-03-26 20:48:46 +0000121#define G (*(struct globals*)&bb_common_bufsiz1)
Denis Vlasenko74324c82007-06-04 10:16:52 +0000122void BUG_sed_globals_too_big(void);
123#define INIT_G() do { \
124 if (sizeof(struct globals) > COMMON_BUFSIZE) \
125 BUG_sed_globals_too_big(); \
126 G.sed_cmd_tail = &G.sed_cmd_head; \
127} while (0)
128
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000129
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +0000130#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000131static void sed_free_and_close_stuff(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000132{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000133 sed_cmd_t *sed_cmd = G.sed_cmd_head.next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000134
Denis Vlasenko17a15262007-03-26 20:48:46 +0000135 llist_free(G.append_head, free);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000136
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000137 while (sed_cmd) {
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000138 sed_cmd_t *sed_cmd_next = sed_cmd->next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000139
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000140 if (sed_cmd->sw_file)
141 xprint_and_close_file(sed_cmd->sw_file);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000142
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000143 if (sed_cmd->beg_match) {
144 regfree(sed_cmd->beg_match);
145 free(sed_cmd->beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000146 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000147 if (sed_cmd->end_match) {
148 regfree(sed_cmd->end_match);
149 free(sed_cmd->end_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000150 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000151 if (sed_cmd->sub_match) {
152 regfree(sed_cmd->sub_match);
153 free(sed_cmd->sub_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000154 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000155 free(sed_cmd->string);
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000156 free(sed_cmd);
157 sed_cmd = sed_cmd_next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000158 }
Rob Landleyce4f0e92004-10-30 06:54:19 +0000159
Denis Vlasenko60818682007-09-28 22:07:23 +0000160 free(G.hold_space);
Rob Landleydcc28662004-11-25 07:21:47 +0000161
Denis Vlasenko17a15262007-03-26 20:48:46 +0000162 while (G.current_input_file < G.input_file_count)
163 fclose(G.input_file_list[G.current_input_file++]);
Mark Whitley6315ce62000-07-10 22:55:51 +0000164}
Denis Vlasenko666da5e2006-12-26 18:17:42 +0000165#else
166void sed_free_and_close_stuff(void);
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000167#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000168
Rob Landley53302f82004-02-18 09:54:15 +0000169/* If something bad happens during -i operation, delete temp file */
170
171static void cleanup_outname(void)
172{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000173 if (G.outname) unlink(G.outname);
Rob Landley53302f82004-02-18 09:54:15 +0000174}
175
Denis Vlasenko40276642007-11-13 16:48:10 +0000176/* strcpy, replacing "\from" with 'to'. If to is NUL, replacing "\any" with 'any' */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000177
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000178static void parse_escapes(char *dest, const char *string, int len, char from, char to)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000179{
Denis Vlasenko80778502006-10-25 12:46:46 +0000180 int i = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000181
Denis Vlasenko80778502006-10-25 12:46:46 +0000182 while (i < len) {
183 if (string[i] == '\\') {
184 if (!to || string[i+1] == from) {
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000185 *dest++ = to ? to : string[i+1];
Denis Vlasenko80778502006-10-25 12:46:46 +0000186 i += 2;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000187 continue;
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000188 }
189 *dest++ = string[i++];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000190 }
Denis Vlasenko40276642007-11-13 16:48:10 +0000191 /* TODO: is it safe wrt a string with trailing '\\' ? */
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000192 *dest++ = string[i++];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000193 }
Denis Vlasenko40276642007-11-13 16:48:10 +0000194 *dest = '\0';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000195}
196
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000197static char *copy_parsing_escapes(const char *string, int len)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000198{
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000199 char *dest = xmalloc(len + 1);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000200
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000201 parse_escapes(dest, string, len, 'n', '\n');
Denis Vlasenko40276642007-11-13 16:48:10 +0000202 /* GNU sed also recognizes \t */
203 parse_escapes(dest, dest, strlen(dest), 't', '\t');
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000204 return dest;
205}
206
207
Mark Whitley6315ce62000-07-10 22:55:51 +0000208/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000209 * index_of_next_unescaped_regexp_delim - walks left to right through a string
210 * beginning at a specified index and returns the index of the next regular
Denis Vlasenko40276642007-11-13 16:48:10 +0000211 * expression delimiter (typically a forward slash ('/')) not preceded by
Rob Landley4795e4e2006-07-26 17:25:08 +0000212 * a backslash ('\'). A negative delimiter disables square bracket checking.
Mark Whitley6315ce62000-07-10 22:55:51 +0000213 */
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000214static int index_of_next_unescaped_regexp_delim(int delimiter, const char *str)
Mark Whitley6315ce62000-07-10 22:55:51 +0000215{
Matt Kraaia0065d52001-08-24 14:45:50 +0000216 int bracket = -1;
217 int escaped = 0;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000218 int idx = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000219 char ch;
Matt Kraaia0065d52001-08-24 14:45:50 +0000220
Rob Landley4795e4e2006-07-26 17:25:08 +0000221 if (delimiter < 0) {
222 bracket--;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000223 delimiter = -delimiter;
Rob Landley4795e4e2006-07-26 17:25:08 +0000224 }
225
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000226 for (; (ch = str[idx]); idx++) {
Rob Landley4795e4e2006-07-26 17:25:08 +0000227 if (bracket >= 0) {
Glenn L McGrathd4185b02003-04-11 17:10:23 +0000228 if (ch == ']' && !(bracket == idx - 1 || (bracket == idx - 2
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000229 && str[idx - 1] == '^')))
Matt Kraaia0065d52001-08-24 14:45:50 +0000230 bracket = -1;
231 } else if (escaped)
232 escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000233 else if (ch == '\\')
Matt Kraaia0065d52001-08-24 14:45:50 +0000234 escaped = 1;
Rob Landley4795e4e2006-07-26 17:25:08 +0000235 else if (bracket == -1 && ch == '[')
Matt Kraaia0065d52001-08-24 14:45:50 +0000236 bracket = idx;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000237 else if (ch == delimiter)
Mark Whitley97562bd2000-07-17 20:06:42 +0000238 return idx;
239 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000240
Mark Whitley97562bd2000-07-17 20:06:42 +0000241 /* if we make it to here, we've hit the end of the string */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000242 bb_error_msg_and_die("unmatched '%c'", delimiter);
Mark Whitley6315ce62000-07-10 22:55:51 +0000243}
244
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000245/*
246 * Returns the index of the third delimiter
247 */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000248static int parse_regex_delim(const char *cmdstr, char **match, char **replace)
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000249{
Denis Vlasenko9356b502007-01-29 23:44:38 +0000250 const char *cmdstr_ptr = cmdstr;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000251 char delimiter;
252 int idx = 0;
253
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000254 /* verify that the 's' or 'y' is followed by something. That something
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000255 * (typically a 'slash') is now our regexp delimiter... */
Rob Landley4795e4e2006-07-26 17:25:08 +0000256 if (*cmdstr == '\0')
257 bb_error_msg_and_die("bad format in substitution expression");
Denis Vlasenko80778502006-10-25 12:46:46 +0000258 delimiter = *cmdstr_ptr++;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000259
260 /* save the match string */
261 idx = index_of_next_unescaped_regexp_delim(delimiter, cmdstr_ptr);
Rob Landleyfae1dc82005-11-20 07:44:35 +0000262 *match = copy_parsing_escapes(cmdstr_ptr, idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000263
264 /* save the replacement string */
265 cmdstr_ptr += idx + 1;
Rob Landley4795e4e2006-07-26 17:25:08 +0000266 idx = index_of_next_unescaped_regexp_delim(-delimiter, cmdstr_ptr);
Rob Landleyfae1dc82005-11-20 07:44:35 +0000267 *replace = copy_parsing_escapes(cmdstr_ptr, idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000268
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000269 return ((cmdstr_ptr - cmdstr) + idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000270}
271
Mark Whitley6315ce62000-07-10 22:55:51 +0000272/*
273 * returns the index in the string just past where the address ends.
274 */
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000275static int get_address(const char *my_str, int *linenum, regex_t ** regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000276{
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000277 const char *pos = my_str;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000278
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000279 if (isdigit(*my_str)) {
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000280 *linenum = strtol(my_str, (char**)&pos, 10);
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000281 /* endstr shouldnt ever equal NULL */
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000282 } else if (*my_str == '$') {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000283 *linenum = -1;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000284 pos++;
285 } else if (*my_str == '/' || *my_str == '\\') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000286 int next;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000287 char delimiter;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000288 char *temp;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000289
Denis Vlasenko80778502006-10-25 12:46:46 +0000290 delimiter = '/';
291 if (*my_str == '\\') delimiter = *++pos;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000292 next = index_of_next_unescaped_regexp_delim(delimiter, ++pos);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000293 temp = copy_parsing_escapes(pos, next);
Denis Vlasenko80778502006-10-25 12:46:46 +0000294 *regex = xmalloc(sizeof(regex_t));
Denis Vlasenko17a15262007-03-26 20:48:46 +0000295 xregcomp(*regex, temp, G.regex_type|REG_NEWLINE);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000296 free(temp);
297 /* Move position to next character after last delimiter */
Rob Landley4795e4e2006-07-26 17:25:08 +0000298 pos += (next+1);
Mark Whitley6315ce62000-07-10 22:55:51 +0000299 }
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000300 return pos - my_str;
Mark Whitley6315ce62000-07-10 22:55:51 +0000301}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000302
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000303/* Grab a filename. Whitespace at start is skipped, then goes to EOL. */
Denis Vlasenko68404f12008-03-17 09:00:54 +0000304static int parse_file_cmd(/*sed_cmd_t *sed_cmd,*/ const char *filecmdstr, char **retval)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000305{
Denis Vlasenko80778502006-10-25 12:46:46 +0000306 int start = 0, idx, hack = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000307
308 /* Skip whitespace, then grab filename to end of line */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000309 while (isspace(filecmdstr[start]))
310 start++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000311 idx = start;
Denis Vlasenko9356b502007-01-29 23:44:38 +0000312 while (filecmdstr[idx] && filecmdstr[idx] != '\n')
313 idx++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000314
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000315 /* If lines glued together, put backslash back. */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000316 if (filecmdstr[idx] == '\n')
317 hack = 1;
Denis Vlasenko80778502006-10-25 12:46:46 +0000318 if (idx == start)
319 bb_error_msg_and_die("empty filename");
Rob Landleyd921b2e2006-08-03 15:41:12 +0000320 *retval = xstrndup(filecmdstr+start, idx-start+hack+1);
Denis Vlasenko9356b502007-01-29 23:44:38 +0000321 if (hack)
322 (*retval)[idx] = '\\';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000323
324 return idx;
325}
326
Denis Vlasenko9356b502007-01-29 23:44:38 +0000327static int parse_subst_cmd(sed_cmd_t *sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000328{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000329 int cflags = G.regex_type;
Mark Whitley06f35292000-07-13 19:58:04 +0000330 char *match;
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000331 int idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000332
333 /*
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000334 * A substitution command should look something like this:
335 * s/match/replace/ #gIpw
Mark Whitley0e4cec02000-08-21 21:29:20 +0000336 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000337 * mandatory optional
Mark Whitley06f35292000-07-13 19:58:04 +0000338 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000339 idx = parse_regex_delim(substr, &match, &sed_cmd->string);
Mark Whitley06f35292000-07-13 19:58:04 +0000340
Mark Whitley97562bd2000-07-17 20:06:42 +0000341 /* determine the number of back references in the match string */
342 /* Note: we compute this here rather than in the do_subst_command()
343 * function to save processor time, at the expense of a little more memory
344 * (4 bits) per sed_cmd */
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000345
Mark Whitley06f35292000-07-13 19:58:04 +0000346 /* process the flags */
Mark Whitley70705d72000-07-14 19:06:30 +0000347
Denis Vlasenko80778502006-10-25 12:46:46 +0000348 sed_cmd->which_match = 1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000349 while (substr[++idx]) {
350 /* Parse match number */
Denis Vlasenko80778502006-10-25 12:46:46 +0000351 if (isdigit(substr[idx])) {
352 if (match[0] != '^') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000353 /* Match 0 treated as all, multiple matches we take the last one. */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000354 const char *pos = substr + idx;
355/* FIXME: error check? */
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000356 sed_cmd->which_match = (unsigned)strtol(substr+idx, (char**) &pos, 10);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000357 idx = pos - substr;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000358 }
359 continue;
360 }
Rob Landley40ec4ae2004-01-04 06:42:14 +0000361 /* Skip spaces */
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200362 if (isspace(substr[idx]))
363 continue;
Rob Landley40ec4ae2004-01-04 06:42:14 +0000364
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000365 switch (substr[idx]) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000366 /* Replace all occurrences */
367 case 'g':
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000368 if (match[0] != '^')
369 sed_cmd->which_match = 0;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000370 break;
371 /* Print pattern space */
372 case 'p':
373 sed_cmd->sub_p = 1;
374 break;
375 /* Write to file */
376 case 'w':
377 {
378 char *temp;
Denis Vlasenko68404f12008-03-17 09:00:54 +0000379 idx += parse_file_cmd(/*sed_cmd,*/ substr+idx, &temp);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000380 break;
381 }
382 /* Ignore case (gnu exension) */
383 case 'I':
384 cflags |= REG_ICASE;
385 break;
386 /* Comment */
387 case '#':
Denis Vlasenko80778502006-10-25 12:46:46 +0000388 while (substr[++idx]) /*skip all*/;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000389 /* Fall through */
390 /* End of command */
391 case ';':
392 case '}':
393 goto out;
394 default:
395 bb_error_msg_and_die("bad option in substitution expression");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000396 }
397 }
Glenn L McGrath2570b432003-09-16 05:25:43 +0000398out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000399 /* compile the match string into a regex */
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000400 if (*match != '\0') {
401 /* If match is empty, we use last regex used at runtime */
Denis Vlasenkob95636c2006-12-19 23:36:04 +0000402 sed_cmd->sub_match = xmalloc(sizeof(regex_t));
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000403 xregcomp(sed_cmd->sub_match, match, cflags);
404 }
Mark Whitley06f35292000-07-13 19:58:04 +0000405 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000406
407 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000408}
409
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000410/*
411 * Process the commands arguments
412 */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000413static const char *parse_cmd_args(sed_cmd_t *sed_cmd, const char *cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000414{
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000415 /* handle (s)ubstitution command */
Denis Vlasenko80778502006-10-25 12:46:46 +0000416 if (sed_cmd->cmd == 's')
417 cmdstr += parse_subst_cmd(sed_cmd, cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000418 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
419 else if (strchr("aic", sed_cmd->cmd)) {
420 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c')
Denys Vlasenko6935ec92009-10-22 19:42:26 +0200421 bb_error_msg_and_die("only a beginning address can be specified for edit commands");
Denis Vlasenko80778502006-10-25 12:46:46 +0000422 for (;;) {
423 if (*cmdstr == '\n' || *cmdstr == '\\') {
Rob Landley25d82392004-04-01 09:23:30 +0000424 cmdstr++;
425 break;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +0200426 }
427 if (!isspace(*cmdstr))
Denis Vlasenko80778502006-10-25 12:46:46 +0000428 break;
Denys Vlasenkoc0dab372009-10-22 22:28:08 +0200429 cmdstr++;
Rob Landley25d82392004-04-01 09:23:30 +0000430 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000431 sed_cmd->string = xstrdup(cmdstr);
Denis Vlasenko40276642007-11-13 16:48:10 +0000432 /* "\anychar" -> "anychar" */
433 parse_escapes(sed_cmd->string, sed_cmd->string, strlen(cmdstr), '\0', '\0');
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000434 cmdstr += strlen(cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000435 /* handle file cmds: (r)ead */
Denis Vlasenko80778502006-10-25 12:46:46 +0000436 } else if (strchr("rw", sed_cmd->cmd)) {
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000437 if (sed_cmd->end_line || sed_cmd->end_match)
Denis Vlasenko80778502006-10-25 12:46:46 +0000438 bb_error_msg_and_die("command only uses one address");
Denis Vlasenko68404f12008-03-17 09:00:54 +0000439 cmdstr += parse_file_cmd(/*sed_cmd,*/ cmdstr, &sed_cmd->string);
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000440 if (sed_cmd->cmd == 'w') {
Denis Vlasenko5415c852008-07-21 23:05:26 +0000441 sed_cmd->sw_file = xfopen_for_write(sed_cmd->string);
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000442 sed_cmd->sw_last_char = '\n';
443 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000444 /* handle branch commands */
Rob Landley93850a52005-05-18 06:34:37 +0000445 } else if (strchr(":btT", sed_cmd->cmd)) {
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000446 int length;
447
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000448 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000449 length = strcspn(cmdstr, semicolon_whitespace);
450 if (length) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000451 sed_cmd->string = xstrndup(cmdstr, length);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000452 cmdstr += length;
453 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000454 }
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000455 /* translation command */
456 else if (sed_cmd->cmd == 'y') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000457 char *match, *replace;
Denis Vlasenko80778502006-10-25 12:46:46 +0000458 int i = cmdstr[0];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000459
Denis Vlasenko80778502006-10-25 12:46:46 +0000460 cmdstr += parse_regex_delim(cmdstr, &match, &replace)+1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000461 /* \n already parsed, but \delimiter needs unescaping. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000462 parse_escapes(match, match, strlen(match), i, i);
463 parse_escapes(replace, replace, strlen(replace), i, i);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000464
Rob Landley9ffd4232006-05-21 18:30:35 +0000465 sed_cmd->string = xzalloc((strlen(match) + 1) * 2);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000466 for (i = 0; match[i] && replace[i]; i++) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000467 sed_cmd->string[i*2] = match[i];
468 sed_cmd->string[i*2+1] = replace[i];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000469 }
470 free(match);
471 free(replace);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000472 }
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000473 /* if it wasnt a single-letter command that takes no arguments
474 * then it must be an invalid command.
475 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000476 else if (strchr("dDgGhHlnNpPqx={}", sed_cmd->cmd) == 0) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000477 bb_error_msg_and_die("unsupported command %c", sed_cmd->cmd);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000478 }
Mark Whitley70705d72000-07-14 19:06:30 +0000479
480 /* give back whatever's left over */
Denis Vlasenko80778502006-10-25 12:46:46 +0000481 return cmdstr;
Eric Andersen50d63601999-11-09 01:47:36 +0000482}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000483
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000484
485/* Parse address+command sets, skipping comment lines. */
486
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000487static void add_cmd(const char *cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000488{
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000489 sed_cmd_t *sed_cmd;
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200490 unsigned len, n;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000491
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000492 /* Append this line to any unfinished line from last time. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000493 if (G.add_cmd_line) {
494 char *tp = xasprintf("%s\n%s", G.add_cmd_line, cmdstr);
495 free(G.add_cmd_line);
Denis Vlasenko945bd3d2007-04-12 21:20:25 +0000496 cmdstr = G.add_cmd_line = tp;
Rob Landley12d87552006-06-05 17:32:44 +0000497 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000498
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200499 /* If this line ends with unescaped backslash, request next line. */
500 n = len = strlen(cmdstr);
501 while (n && cmdstr[n-1] == '\\')
502 n--;
503 if ((len - n) & 1) { /* if odd number of trailing backslashes */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000504 if (!G.add_cmd_line)
505 G.add_cmd_line = xstrdup(cmdstr);
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200506 G.add_cmd_line[len-1] = '\0';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000507 return;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000508 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000509
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000510 /* Loop parsing all commands in this line. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000511 while (*cmdstr) {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000512 /* Skip leading whitespace and semicolons */
513 cmdstr += strspn(cmdstr, semicolon_whitespace);
514
515 /* If no more commands, exit. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000516 if (!*cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000517
518 /* if this is a comment, jump past it and keep going */
519 if (*cmdstr == '#') {
520 /* "#n" is the same as using -n on the command line */
Denis Vlasenko80778502006-10-25 12:46:46 +0000521 if (cmdstr[1] == 'n')
Denis Vlasenko17a15262007-03-26 20:48:46 +0000522 G.be_quiet++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000523 cmdstr = strpbrk(cmdstr, "\n\r");
524 if (!cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000525 continue;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000526 }
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000527
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000528 /* parse the command
529 * format is: [addr][,addr][!]cmd
530 * |----||-----||-|
531 * part1 part2 part3
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000532 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000533
Rob Landley9ffd4232006-05-21 18:30:35 +0000534 sed_cmd = xzalloc(sizeof(sed_cmd_t));
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000535
536 /* first part (if present) is an address: either a '$', a number or a /regex/ */
537 cmdstr += get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
538
539 /* second part (if present) will begin with a comma */
540 if (*cmdstr == ',') {
541 int idx;
542
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000543 cmdstr++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000544 idx = get_address(cmdstr, &sed_cmd->end_line, &sed_cmd->end_match);
Denis Vlasenko80778502006-10-25 12:46:46 +0000545 if (!idx)
546 bb_error_msg_and_die("no address after comma");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000547 cmdstr += idx;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000548 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000549
550 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000551 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000552
553 /* Check for inversion flag */
554 if (*cmdstr == '!') {
555 sed_cmd->invert = 1;
556 cmdstr++;
557
558 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000559 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000560 }
561
562 /* last part (mandatory) will be a command */
Denis Vlasenko80778502006-10-25 12:46:46 +0000563 if (!*cmdstr)
564 bb_error_msg_and_die("missing command");
Denys Vlasenkoa2215b92010-05-12 01:49:04 +0200565 sed_cmd->cmd = *cmdstr++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000566 cmdstr = parse_cmd_args(sed_cmd, cmdstr);
567
568 /* Add the command to the command array */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000569 G.sed_cmd_tail->next = sed_cmd;
570 G.sed_cmd_tail = G.sed_cmd_tail->next;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000571 }
572
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000573 /* If we glued multiple lines together, free the memory. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000574 free(G.add_cmd_line);
575 G.add_cmd_line = NULL;
Mark Whitley6315ce62000-07-10 22:55:51 +0000576}
577
Rob Landleydcc28662004-11-25 07:21:47 +0000578/* Append to a string, reallocating memory as necessary. */
579
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000580#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000581
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000582static void pipe_putc(char c)
Eric Andersenc52a6b02001-11-10 10:49:42 +0000583{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000584 if (G.pipeline.idx == G.pipeline.len) {
585 G.pipeline.buf = xrealloc(G.pipeline.buf,
586 G.pipeline.len + PIPE_GROW);
587 G.pipeline.len += PIPE_GROW;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000588 }
Denis Vlasenko17a15262007-03-26 20:48:46 +0000589 G.pipeline.buf[G.pipeline.idx++] = c;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000590}
591
Rob Landley4795e4e2006-07-26 17:25:08 +0000592static void do_subst_w_backrefs(char *line, char *replace)
Mark Whitley97562bd2000-07-17 20:06:42 +0000593{
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200594 int i, j;
Mark Whitley97562bd2000-07-17 20:06:42 +0000595
596 /* go through the replacement string */
597 for (i = 0; replace[i]; i++) {
598 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000599 if (replace[i] == '\\') {
600 unsigned backref = replace[++i] - '0';
601 if (backref <= 9) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000602 /* print out the text held in G.regmatch[backref] */
603 if (G.regmatch[backref].rm_so != -1) {
604 j = G.regmatch[backref].rm_so;
605 while (j < G.regmatch[backref].rm_eo)
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000606 pipe_putc(line[j++]);
607 }
608 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000609 }
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000610 /* I _think_ it is impossible to get '\' to be
611 * the last char in replace string. Thus we dont check
612 * for replace[i] == NUL. (counterexample anyone?) */
613 /* if we find a backslash escaped character, print the character */
614 pipe_putc(replace[i]);
615 continue;
Mark Whitley97562bd2000-07-17 20:06:42 +0000616 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000617 /* if we find an unescaped '&' print out the whole matched text. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000618 if (replace[i] == '&') {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000619 j = G.regmatch[0].rm_so;
620 while (j < G.regmatch[0].rm_eo)
Denis Vlasenko80778502006-10-25 12:46:46 +0000621 pipe_putc(line[j++]);
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000622 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000623 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000624 /* Otherwise just output the character. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000625 pipe_putc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000626 }
627}
628
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200629static int do_subst_command(sed_cmd_t *sed_cmd, char **line_p)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000630{
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200631 char *line = *line_p;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000632 int altered = 0;
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000633 unsigned match_count = 0;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000634 regex_t *current_regex;
635
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200636 current_regex = sed_cmd->sub_match;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000637 /* Handle empty regex. */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200638 if (!current_regex) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000639 current_regex = G.previous_regex_ptr;
Denis Vlasenko80778502006-10-25 12:46:46 +0000640 if (!current_regex)
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000641 bb_error_msg_and_die("no previous regexp");
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200642 }
643 G.previous_regex_ptr = current_regex;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000644
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000645 /* Find the first match */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200646 if (REG_NOMATCH == regexec(current_regex, line, 10, G.regmatch, 0))
Mark Whitley2dc192f2000-11-03 19:47:00 +0000647 return 0;
648
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000649 /* Initialize temporary output buffer. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000650 G.pipeline.buf = xmalloc(PIPE_GROW);
651 G.pipeline.len = PIPE_GROW;
652 G.pipeline.idx = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000653
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000654 /* Now loop through, substituting for matches */
655 do {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000656 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000657
Eric Andersenc06f5682004-02-04 10:57:46 +0000658 /* Work around bug in glibc regexec, demonstrated by:
659 echo " a.b" | busybox sed 's [^ .]* x g'
660 The match_count check is so not to break
661 echo "hi" | busybox sed 's/^/!/g' */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000662 if (!G.regmatch[0].rm_so && !G.regmatch[0].rm_eo && match_count) {
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200663 pipe_putc(*line++);
Eric Andersenc06f5682004-02-04 10:57:46 +0000664 continue;
665 }
666
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000667 match_count++;
668
669 /* If we aren't interested in this match, output old line to
670 end of match and continue */
Denis Vlasenko77ad97f2008-05-13 02:27:31 +0000671 if (sed_cmd->which_match
672 && (sed_cmd->which_match != match_count)
673 ) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000674 for (i = 0; i < G.regmatch[0].rm_eo; i++)
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200675 pipe_putc(*line++);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000676 continue;
677 }
678
Mark Whitley2dc192f2000-11-03 19:47:00 +0000679 /* print everything before the match */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000680 for (i = 0; i < G.regmatch[0].rm_so; i++)
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200681 pipe_putc(line[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000682
Mark Whitley2dc192f2000-11-03 19:47:00 +0000683 /* then print the substitution string */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200684 do_subst_w_backrefs(line, sed_cmd->string);
Mark Whitley97562bd2000-07-17 20:06:42 +0000685
Mark Whitley2dc192f2000-11-03 19:47:00 +0000686 /* advance past the match */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200687 line += G.regmatch[0].rm_eo;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000688 /* flag that something has changed */
689 altered++;
Mark Whitley97562bd2000-07-17 20:06:42 +0000690
Mark Whitley2dc192f2000-11-03 19:47:00 +0000691 /* if we're not doing this globally, get out now */
Denis Vlasenko284d0fa2008-02-16 13:18:17 +0000692 if (sed_cmd->which_match)
693 break;
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200694
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200695//maybe (G.regmatch[0].rm_eo ? REG_NOTBOL : 0) instead of unconditional REG_NOTBOL?
Denys Vlasenko11c82382009-09-22 03:02:21 +0200696 } while (*line && regexec(current_regex, line, 10, G.regmatch, REG_NOTBOL) != REG_NOMATCH);
Mark Whitley2dc192f2000-11-03 19:47:00 +0000697
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000698 /* Copy rest of string into output pipeline */
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200699 while (1) {
700 char c = *line++;
701 pipe_putc(c);
702 if (c == '\0')
703 break;
704 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000705
Denys Vlasenkof210cff2009-08-17 01:35:04 +0200706 free(*line_p);
707 *line_p = G.pipeline.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000708 return altered;
709}
Mark Whitley6315ce62000-07-10 22:55:51 +0000710
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000711/* Set command pointer to point to this label. (Does not handle null label.) */
Rob Landley4795e4e2006-07-26 17:25:08 +0000712static sed_cmd_t *branch_to(char *label)
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000713{
714 sed_cmd_t *sed_cmd;
Glenn L McGrathd4185b02003-04-11 17:10:23 +0000715
Denis Vlasenko17a15262007-03-26 20:48:46 +0000716 for (sed_cmd = G.sed_cmd_head.next; sed_cmd; sed_cmd = sed_cmd->next) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000717 if (sed_cmd->cmd == ':' && sed_cmd->string && !strcmp(sed_cmd->string, label)) {
718 return sed_cmd;
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000719 }
720 }
Denis Vlasenko80778502006-10-25 12:46:46 +0000721 bb_error_msg_and_die("can't find label for jump to '%s'", label);
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000722}
Mark Whitley6315ce62000-07-10 22:55:51 +0000723
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000724static void append(char *s)
725{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000726 llist_add_to_end(&G.append_head, xstrdup(s));
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000727}
728
729static void flush_append(void)
730{
Rob Landley0b656282006-05-08 22:17:23 +0000731 char *data;
732
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000733 /* Output appended lines. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000734 while ((data = (char *)llist_pop(&G.append_head))) {
735 fprintf(G.nonstdout, "%s\n", data);
Rob Landley0b656282006-05-08 22:17:23 +0000736 free(data);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000737 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000738}
739
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000740static void add_input_file(FILE *file)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000741{
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000742 G.input_file_list = xrealloc_vector(G.input_file_list, 2, G.input_file_count);
Denis Vlasenko17a15262007-03-26 20:48:46 +0000743 G.input_file_list[G.input_file_count++] = file;
Rob Landleydcc28662004-11-25 07:21:47 +0000744}
745
Denis Vlasenko17a15262007-03-26 20:48:46 +0000746/* Get next line of input from G.input_file_list, flushing append buffer and
Rob Landleydcc28662004-11-25 07:21:47 +0000747 * noting if we ran out of files without a newline on the last line we read.
748 */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000749enum {
750 NO_EOL_CHAR = 1,
Denis Vlasenko86811802007-01-29 17:10:19 +0000751 LAST_IS_NUL = 2,
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000752};
753static char *get_next_line(char *gets_char)
Rob Landleydcc28662004-11-25 07:21:47 +0000754{
Denis Vlasenko80778502006-10-25 12:46:46 +0000755 char *temp = NULL;
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000756 int len;
757 char gc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000758
759 flush_append();
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000760
761 /* will be returned if last line in the file
762 * doesn't end with either '\n' or '\0' */
763 gc = NO_EOL_CHAR;
Denis Vlasenko17a15262007-03-26 20:48:46 +0000764 while (G.current_input_file < G.input_file_count) {
765 FILE *fp = G.input_file_list[G.current_input_file];
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000766 /* Read line up to a newline or NUL byte, inclusive,
767 * return malloc'ed char[]. length of the chunk read
768 * is stored in len. NULL if EOF/error */
Denis Vlasenko86811802007-01-29 17:10:19 +0000769 temp = bb_get_chunk_from_file(fp, &len);
Rob Landley2b26fd52006-02-24 02:30:39 +0000770 if (temp) {
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000771 /* len > 0 here, it's ok to do temp[len-1] */
772 char c = temp[len-1];
773 if (c == '\n' || c == '\0') {
774 temp[len-1] = '\0';
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000775 gc = c;
Denis Vlasenko86811802007-01-29 17:10:19 +0000776 if (c == '\0') {
777 int ch = fgetc(fp);
778 if (ch != EOF)
779 ungetc(ch, fp);
780 else
781 gc = LAST_IS_NUL;
782 }
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000783 }
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000784 /* else we put NO_EOL_CHAR into *gets_char */
785 break;
786
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000787 /* NB: I had the idea of peeking next file(s) and returning
788 * NO_EOL_CHAR only if it is the *last* non-empty
789 * input file. But there is a case where this won't work:
790 * file1: "a woo\nb woo"
791 * file2: "c no\nd no"
792 * sed -ne 's/woo/bang/p' input1 input2 => "a bang\nb bang"
793 * (note: *no* newline after "b bang"!) */
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000794 }
795 /* Close this file and advance to next one */
Denis Vlasenko86811802007-01-29 17:10:19 +0000796 fclose(fp);
Denis Vlasenko17a15262007-03-26 20:48:46 +0000797 G.current_input_file++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000798 }
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000799 *gets_char = gc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000800 return temp;
801}
802
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000803/* Output line of text. */
804/* Note:
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000805 * The tricks with NO_EOL_CHAR and last_puts_char are there to emulate gnu sed.
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000806 * Without them, we had this:
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000807 * echo -n thingy >z1
808 * echo -n again >z2
809 * >znull
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000810 * sed "s/i/z/" z1 z2 znull | hexdump -vC
811 * output:
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000812 * gnu sed 4.1.5:
813 * 00000000 74 68 7a 6e 67 79 0a 61 67 61 7a 6e |thzngy.agazn|
814 * bbox:
815 * 00000000 74 68 7a 6e 67 79 61 67 61 7a 6e |thzngyagazn|
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000816 */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000817static void puts_maybe_newline(char *s, FILE *file, char *last_puts_char, char last_gets_char)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000818{
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000819 char lpc = *last_puts_char;
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000820
Denis Vlasenko86811802007-01-29 17:10:19 +0000821 /* Need to insert a '\n' between two files because first file's
822 * last line wasn't terminated? */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000823 if (lpc != '\n' && lpc != '\0') {
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000824 fputc('\n', file);
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000825 lpc = '\n';
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000826 }
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000827 fputs(s, file);
Denis Vlasenko86811802007-01-29 17:10:19 +0000828
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000829 /* 'x' - just something which is not '\n', '\0' or NO_EOL_CHAR */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000830 if (s[0])
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000831 lpc = 'x';
Denis Vlasenko86811802007-01-29 17:10:19 +0000832
833 /* had trailing '\0' and it was last char of file? */
834 if (last_gets_char == LAST_IS_NUL) {
835 fputc('\0', file);
836 lpc = 'x'; /* */
837 } else
838 /* had trailing '\n' or '\0'? */
839 if (last_gets_char != NO_EOL_CHAR) {
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000840 fputc(last_gets_char, file);
841 lpc = last_gets_char;
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000842 }
Denis Vlasenko86811802007-01-29 17:10:19 +0000843
Denis Vlasenko80778502006-10-25 12:46:46 +0000844 if (ferror(file)) {
Denis Vlasenko40920822006-10-03 20:28:06 +0000845 xfunc_error_retval = 4; /* It's what gnu sed exits with... */
Bernhard Reutner-Fischera3d4bf32006-06-03 21:40:11 +0000846 bb_error_msg_and_die(bb_msg_write_error);
Rob Landley53302f82004-02-18 09:54:15 +0000847 }
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000848 *last_puts_char = lpc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000849}
850
Denis Vlasenko17a15262007-03-26 20:48:46 +0000851#define sed_puts(s, n) (puts_maybe_newline(s, G.nonstdout, &last_puts_char, n))
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000852
Denis Vlasenko8274e062007-08-06 03:41:08 +0000853static int beg_match(sed_cmd_t *sed_cmd, const char *pattern_space)
854{
855 int retval = sed_cmd->beg_match && !regexec(sed_cmd->beg_match, pattern_space, 0, NULL, 0);
856 if (retval)
857 G.previous_regex_ptr = sed_cmd->beg_match;
858 return retval;
859}
860
Rob Landley2b26fd52006-02-24 02:30:39 +0000861/* Process all the lines in all the files */
862
Rob Landleydcc28662004-11-25 07:21:47 +0000863static void process_files(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000864{
Rob Landleyce4f0e92004-10-30 06:54:19 +0000865 char *pattern_space, *next_line;
Denis Vlasenko826c85f2007-01-28 23:26:15 +0000866 int linenum = 0;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000867 char last_puts_char = '\n';
868 char last_gets_char, next_gets_char;
Denis Vlasenko2ea630f2006-12-10 02:52:19 +0000869 sed_cmd_t *sed_cmd;
870 int substituted;
Mark Whitley6315ce62000-07-10 22:55:51 +0000871
Rob Landley2b26fd52006-02-24 02:30:39 +0000872 /* Prime the pump */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000873 next_line = get_next_line(&next_gets_char);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000874
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200875 /* Go through every line in each file */
Denis Vlasenkof39c7c02008-02-28 17:59:01 +0000876 again:
Denis Vlasenko2ea630f2006-12-10 02:52:19 +0000877 substituted = 0;
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000878
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000879 /* Advance to next line. Stop if out of lines. */
880 pattern_space = next_line;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200881 if (!pattern_space)
882 return;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000883 last_gets_char = next_gets_char;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000884
885 /* Read one line in advance so we can act on the last line,
886 * the '$' address */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000887 next_line = get_next_line(&next_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000888 linenum++;
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200889
890 /* For every line, go through all the commands */
Denis Vlasenkof39c7c02008-02-28 17:59:01 +0000891 restart:
Denis Vlasenko17a15262007-03-26 20:48:46 +0000892 for (sed_cmd = G.sed_cmd_head.next; sed_cmd; sed_cmd = sed_cmd->next) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000893 int old_matched, matched;
Eric Andersen52a3c272003-12-23 08:53:51 +0000894
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000895 old_matched = sed_cmd->in_match;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000896
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000897 /* Determine if this command matches this line: */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200898
899 /* Are we continuing a previous multi-line match? */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000900 sed_cmd->in_match = sed_cmd->in_match
901 /* Or is no range necessary? */
902 || (!sed_cmd->beg_line && !sed_cmd->end_line
903 && !sed_cmd->beg_match && !sed_cmd->end_match)
904 /* Or did we match the start of a numerical range? */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200905 || (sed_cmd->beg_line > 0 && (sed_cmd->beg_line <= linenum))
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000906 /* Or does this line match our begin address regex? */
Denis Vlasenko8274e062007-08-06 03:41:08 +0000907 || (beg_match(sed_cmd, pattern_space))
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000908 /* Or did we match last line of input? */
909 || (sed_cmd->beg_line == -1 && next_line == NULL);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000910
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200911 /* Snapshot the value */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000912 matched = sed_cmd->in_match;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000913
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200914 //bb_error_msg("cmd:'%c' matched:%d beg_line:%d end_line:%d linenum:%d",
915 //sed_cmd->cmd, matched, sed_cmd->beg_line, sed_cmd->end_line, linenum);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000916
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200917 /* Is this line the end of the current match? */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200918
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000919 if (matched) {
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200920 /* once matched, "n,xxx" range is dead, disabling it */
921 if (sed_cmd->beg_line > 0)
922 sed_cmd->beg_line = -2;
923 sed_cmd->in_match = !(
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000924 /* has the ending line come, or is this a single address command? */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200925 (sed_cmd->end_line ?
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000926 sed_cmd->end_line == -1 ?
927 !next_line
928 : (sed_cmd->end_line <= linenum)
929 : !sed_cmd->end_match
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200930 )
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000931 /* or does this line matches our last address regex */
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200932 || (sed_cmd->end_match && old_matched
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000933 && (regexec(sed_cmd->end_match,
Denys Vlasenko8e96b5b2009-07-14 01:02:57 +0200934 pattern_space, 0, NULL, 0) == 0))
935 );
Erik Andersene49d5ec2000-02-08 19:58:47 +0000936 }
Erik Andersen1266a131999-12-29 22:19:46 +0000937
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200938 /* Skip blocks of commands we didn't match */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000939 if (sed_cmd->cmd == '{') {
Denis Vlasenko826c85f2007-01-28 23:26:15 +0000940 if (sed_cmd->invert ? matched : !matched) {
Denys Vlasenkof2c16ed2010-04-20 04:00:03 -0400941 unsigned nest_cnt = 0;
942 while (1) {
943 if (sed_cmd->cmd == '{')
944 nest_cnt++;
945 if (sed_cmd->cmd == '}') {
946 nest_cnt--;
947 if (nest_cnt == 0)
948 break;
949 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000950 sed_cmd = sed_cmd->next;
Denis Vlasenko826c85f2007-01-28 23:26:15 +0000951 if (!sed_cmd)
952 bb_error_msg_and_die("unterminated {");
953 }
954 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000955 continue;
956 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000957
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000958 /* Okay, so did this line match? */
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200959 if (sed_cmd->invert ? matched : !matched)
960 continue; /* no */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000961
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200962 /* Update last used regex in case a blank substitute BRE is found */
963 if (sed_cmd->beg_match) {
964 G.previous_regex_ptr = sed_cmd->beg_match;
965 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000966
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200967 /* actual sedding */
968 switch (sed_cmd->cmd) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000969
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200970 /* Print line number */
971 case '=':
972 fprintf(G.nonstdout, "%d\n", linenum);
973 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000974
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200975 /* Write the current pattern space up to the first newline */
976 case 'P':
977 {
978 char *tmp = strchr(pattern_space, '\n');
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000979
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200980 if (tmp) {
981 *tmp = '\0';
982 /* TODO: explain why '\n' below */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000983 sed_puts(pattern_space, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200984 *tmp = '\n';
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000985 break;
986 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200987 /* Fall Through */
988 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000989
Denys Vlasenko8bca3e22009-06-30 19:19:37 +0200990 /* Write the current pattern space to output */
991 case 'p':
992 /* NB: we print this _before_ the last line
993 * (of current file) is printed. Even if
994 * that line is nonterminated, we print
995 * '\n' here (gnu sed does the same) */
996 sed_puts(pattern_space, '\n');
997 break;
998 /* Delete up through first newline */
999 case 'D':
1000 {
1001 char *tmp = strchr(pattern_space, '\n');
1002
1003 if (tmp) {
1004 tmp = xstrdup(tmp+1);
1005 free(pattern_space);
1006 pattern_space = tmp;
1007 goto restart;
1008 }
1009 }
1010 /* discard this line. */
1011 case 'd':
1012 goto discard_line;
1013
1014 /* Substitute with regex */
1015 case 's':
1016 if (!do_subst_command(sed_cmd, &pattern_space))
1017 break;
1018 substituted |= 1;
1019
1020 /* handle p option */
1021 if (sed_cmd->sub_p)
1022 sed_puts(pattern_space, last_gets_char);
1023 /* handle w option */
1024 if (sed_cmd->sw_file)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001025 puts_maybe_newline(
1026 pattern_space, sed_cmd->sw_file,
1027 &sed_cmd->sw_last_char, last_gets_char);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001028 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001029
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001030 /* Append line to linked list to be printed later */
1031 case 'a':
1032 append(sed_cmd->string);
1033 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001034
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001035 /* Insert text before this line */
1036 case 'i':
1037 sed_puts(sed_cmd->string, '\n');
1038 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001039
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001040 /* Cut and paste text (replace) */
1041 case 'c':
1042 /* Only triggers on last line of a matching range. */
1043 if (!sed_cmd->in_match)
Denys Vlasenko96a18332010-04-19 22:36:07 -04001044 sed_puts(sed_cmd->string, '\n');
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001045 goto discard_line;
1046
1047 /* Read file, append contents to output */
1048 case 'r':
1049 {
1050 FILE *rfile;
1051
1052 rfile = fopen_for_read(sed_cmd->string);
1053 if (rfile) {
1054 char *line;
1055
1056 while ((line = xmalloc_fgetline(rfile))
1057 != NULL)
1058 append(line);
1059 xprint_and_close_file(rfile);
1060 }
1061
1062 break;
1063 }
1064
1065 /* Write pattern space to file. */
1066 case 'w':
1067 puts_maybe_newline(
1068 pattern_space, sed_cmd->sw_file,
1069 &sed_cmd->sw_last_char, last_gets_char);
1070 break;
1071
1072 /* Read next line from input */
1073 case 'n':
1074 if (!G.be_quiet)
1075 sed_puts(pattern_space, last_gets_char);
1076 if (next_line) {
1077 free(pattern_space);
1078 pattern_space = next_line;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001079 last_gets_char = next_gets_char;
1080 next_line = get_next_line(&next_gets_char);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001081 substituted = 0;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001082 linenum++;
1083 break;
1084 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001085 /* fall through */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001086
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001087 /* Quit. End of script, end of input. */
1088 case 'q':
1089 /* Exit the outer while loop */
1090 free(next_line);
1091 next_line = NULL;
1092 goto discard_commands;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001093
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001094 /* Append the next line to the current line */
1095 case 'N':
1096 {
1097 int len;
1098 /* If no next line, jump to end of script and exit. */
1099 if (next_line == NULL) {
1100 /* Jump to end of script and exit */
1101 free(next_line);
1102 next_line = NULL;
1103 goto discard_line;
1104 /* append next_line, read new next_line. */
1105 }
1106 len = strlen(pattern_space);
Denys Vlasenko90377872010-01-08 09:07:50 +01001107 pattern_space = xrealloc(pattern_space, len + strlen(next_line) + 2);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001108 pattern_space[len] = '\n';
1109 strcpy(pattern_space + len+1, next_line);
1110 last_gets_char = next_gets_char;
1111 next_line = get_next_line(&next_gets_char);
1112 linenum++;
1113 break;
1114 }
1115
1116 /* Test/branch if substitution occurred */
1117 case 't':
1118 if (!substituted) break;
1119 substituted = 0;
1120 /* Fall through */
1121 /* Test/branch if substitution didn't occur */
1122 case 'T':
1123 if (substituted) break;
1124 /* Fall through */
1125 /* Branch to label */
1126 case 'b':
1127 if (!sed_cmd->string) goto discard_commands;
1128 else sed_cmd = branch_to(sed_cmd->string);
1129 break;
1130 /* Transliterate characters */
1131 case 'y':
1132 {
1133 int i, j;
1134
1135 for (i = 0; pattern_space[i]; i++) {
1136 for (j = 0; sed_cmd->string[j]; j += 2) {
1137 if (pattern_space[i] == sed_cmd->string[j]) {
1138 pattern_space[i] = sed_cmd->string[j + 1];
1139 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001140 }
1141 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001142 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001143
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001144 break;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001145 }
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001146 case 'g': /* Replace pattern space with hold space */
1147 free(pattern_space);
1148 pattern_space = xstrdup(G.hold_space ? G.hold_space : "");
1149 break;
1150 case 'G': /* Append newline and hold space to pattern space */
1151 {
1152 int pattern_space_size = 2;
1153 int hold_space_size = 0;
1154
1155 if (pattern_space)
1156 pattern_space_size += strlen(pattern_space);
1157 if (G.hold_space)
1158 hold_space_size = strlen(G.hold_space);
1159 pattern_space = xrealloc(pattern_space,
1160 pattern_space_size + hold_space_size);
1161 if (pattern_space_size == 2)
1162 pattern_space[0] = 0;
1163 strcat(pattern_space, "\n");
1164 if (G.hold_space)
1165 strcat(pattern_space, G.hold_space);
1166 last_gets_char = '\n';
1167
1168 break;
1169 }
1170 case 'h': /* Replace hold space with pattern space */
1171 free(G.hold_space);
1172 G.hold_space = xstrdup(pattern_space);
1173 break;
1174 case 'H': /* Append newline and pattern space to hold space */
1175 {
1176 int hold_space_size = 2;
1177 int pattern_space_size = 0;
1178
1179 if (G.hold_space)
1180 hold_space_size += strlen(G.hold_space);
1181 if (pattern_space)
1182 pattern_space_size = strlen(pattern_space);
1183 G.hold_space = xrealloc(G.hold_space,
1184 hold_space_size + pattern_space_size);
1185
1186 if (hold_space_size == 2)
1187 *G.hold_space = 0;
1188 strcat(G.hold_space, "\n");
1189 if (pattern_space)
1190 strcat(G.hold_space, pattern_space);
1191
1192 break;
1193 }
1194 case 'x': /* Exchange hold and pattern space */
1195 {
1196 char *tmp = pattern_space;
Denys Vlasenko90a99042009-09-06 02:36:23 +02001197 pattern_space = G.hold_space ? G.hold_space : xzalloc(1);
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001198 last_gets_char = '\n';
1199 G.hold_space = tmp;
1200 break;
1201 }
1202 } /* switch */
1203 } /* for each cmd */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001204
1205 /*
Denys Vlasenko8bca3e22009-06-30 19:19:37 +02001206 * Exit point from sedding...
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001207 */
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001208 discard_commands:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001209 /* we will print the line unless we were told to be quiet ('-n')
1210 or if the line was suppressed (ala 'd'elete) */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001211 if (!G.be_quiet)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001212 sed_puts(pattern_space, last_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001213
1214 /* Delete and such jump here. */
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001215 discard_line:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001216 flush_append();
1217 free(pattern_space);
1218
1219 goto again;
Erik Andersen1266a131999-12-29 22:19:46 +00001220}
1221
Glenn L McGrath42c25732003-10-04 05:27:56 +00001222/* It is possible to have a command line argument with embedded
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001223 * newlines. This counts as multiple command lines.
1224 * However, newline can be escaped: 's/e/z\<newline>z/'
1225 * We check for this.
1226 */
Glenn L McGrath42c25732003-10-04 05:27:56 +00001227
1228static void add_cmd_block(char *cmdstr)
1229{
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001230 char *sv, *eol;
Glenn L McGrath42c25732003-10-04 05:27:56 +00001231
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001232 cmdstr = sv = xstrdup(cmdstr);
1233 do {
1234 eol = strchr(cmdstr, '\n');
1235 next:
1236 if (eol) {
1237 /* Count preceding slashes */
1238 int slashes = 0;
1239 char *sl = eol;
1240
1241 while (sl != cmdstr && *--sl == '\\')
1242 slashes++;
1243 /* Odd number of preceding slashes - newline is escaped */
1244 if (slashes & 1) {
Denis Vlasenko0f293b92008-07-22 20:16:55 +00001245 overlapping_strcpy(eol - 1, eol);
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001246 eol = strchr(eol, '\n');
1247 goto next;
1248 }
1249 *eol = '\0';
1250 }
1251 add_cmd(cmdstr);
1252 cmdstr = eol + 1;
1253 } while (eol);
1254 free(sv);
Glenn L McGrath42c25732003-10-04 05:27:56 +00001255}
1256
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001257int sed_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001258int sed_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001259{
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001260 enum {
1261 OPT_in_place = 1 << 0,
1262 };
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001263 unsigned opt;
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001264 llist_t *opt_e, *opt_f;
1265 int status = EXIT_SUCCESS;
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001266
Denis Vlasenko74324c82007-06-04 10:16:52 +00001267 INIT_G();
Rob Landleye3f5a3f2006-05-09 03:53:55 +00001268
Mark Whitley858c1ad2000-07-11 21:38:47 +00001269 /* destroy command strings on exit */
Rob Landley0b656282006-05-08 22:17:23 +00001270 if (ENABLE_FEATURE_CLEAN_UP) atexit(sed_free_and_close_stuff);
Mark Whitley858c1ad2000-07-11 21:38:47 +00001271
Rob Landleyfae1dc82005-11-20 07:44:35 +00001272 /* Lie to autoconf when it starts asking stupid questions. */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001273 if (argv[1] && !strcmp(argv[1], "--version")) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001274 puts("This is not GNU sed version 4.0");
1275 return 0;
Eric Andersenc06f5682004-02-04 10:57:46 +00001276 }
Eric Andersenc06f5682004-02-04 10:57:46 +00001277
Mark Whitley6315ce62000-07-10 22:55:51 +00001278 /* do normal option parsing */
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001279 opt_e = opt_f = NULL;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001280 opt_complementary = "e::f::" /* can occur multiple times */
1281 "nn"; /* count -n */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00001282 opt = getopt32(argv, "irne:f:", &opt_e, &opt_f,
Denis Vlasenko17a15262007-03-26 20:48:46 +00001283 &G.be_quiet); /* counter for -n */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001284 //argc -= optind;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001285 argv += optind;
1286 if (opt & OPT_in_place) { // -i
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001287 atexit(cleanup_outname);
1288 }
Denis Vlasenko17a15262007-03-26 20:48:46 +00001289 if (opt & 0x2) G.regex_type |= REG_EXTENDED; // -r
1290 //if (opt & 0x4) G.be_quiet++; // -n
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001291 while (opt_e) { // -e
Denis Vlasenkod50dda82008-06-15 05:40:56 +00001292 add_cmd_block(llist_pop(&opt_e));
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001293 }
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001294 while (opt_f) { // -f
1295 char *line;
1296 FILE *cmdfile;
Denis Vlasenko5415c852008-07-21 23:05:26 +00001297 cmdfile = xfopen_for_read(llist_pop(&opt_f));
Denis Vlasenko8ee649a2008-03-26 20:04:27 +00001298 while ((line = xmalloc_fgetline(cmdfile)) != NULL) {
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001299 add_cmd(line);
1300 free(line);
1301 }
1302 fclose(cmdfile);
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001303 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001304 /* if we didn't get a pattern from -e or -f, use argv[0] */
Denis Vlasenko80778502006-10-25 12:46:46 +00001305 if (!(opt & 0x18)) {
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001306 if (!*argv)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001307 bb_show_usage();
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001308 add_cmd_block(*argv++);
Mark Whitley6315ce62000-07-10 22:55:51 +00001309 }
Glenn L McGrath42c25732003-10-04 05:27:56 +00001310 /* Flush any unfinished commands. */
1311 add_cmd("");
Mark Whitley6315ce62000-07-10 22:55:51 +00001312
Rob Landley53302f82004-02-18 09:54:15 +00001313 /* By default, we write to stdout */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001314 G.nonstdout = stdout;
Rob Landley53302f82004-02-18 09:54:15 +00001315
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001316 /* argv[0..(argc-1)] should be names of file to process. If no
Mark Whitley6315ce62000-07-10 22:55:51 +00001317 * files were specified or '-' was specified, take input from stdin.
1318 * Otherwise, we process all the files specified. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001319 if (argv[0] == NULL) {
1320 if (opt & OPT_in_place)
Denis Vlasenko80778502006-10-25 12:46:46 +00001321 bb_error_msg_and_die(bb_msg_requires_arg, "-i");
Rob Landleydcc28662004-11-25 07:21:47 +00001322 add_input_file(stdin);
1323 process_files();
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001324 } else {
Mark Whitley6315ce62000-07-10 22:55:51 +00001325 int i;
1326 FILE *file;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001327
Denis Vlasenko62a90cd2008-03-17 09:07:36 +00001328 for (i = 0; argv[i]; i++) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001329 struct stat statbuf;
1330 int nonstdoutfd;
1331
Denis Vlasenko9f739442006-12-16 23:49:13 +00001332 if (LONE_DASH(argv[i]) && !(opt & OPT_in_place)) {
Rob Landleydcc28662004-11-25 07:21:47 +00001333 add_input_file(stdin);
1334 process_files();
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001335 continue;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +00001336 }
Denis Vlasenkoddec5af2006-10-26 23:25:17 +00001337 file = fopen_or_warn(argv[i], "r");
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001338 if (!file) {
1339 status = EXIT_FAILURE;
1340 continue;
1341 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001342 if (!(opt & OPT_in_place)) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001343 add_input_file(file);
1344 continue;
1345 }
1346
Denis Vlasenko17a15262007-03-26 20:48:46 +00001347 G.outname = xasprintf("%sXXXXXX", argv[i]);
1348 nonstdoutfd = mkstemp(G.outname);
Denis Vlasenko80778502006-10-25 12:46:46 +00001349 if (-1 == nonstdoutfd)
Denys Vlasenko6331cf02009-11-13 09:08:27 +01001350 bb_perror_msg_and_die("can't create temp file %s", G.outname);
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +01001351 G.nonstdout = xfdopen_for_write(nonstdoutfd);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001352
Denys Vlasenko57992482009-11-13 09:09:07 +01001353 /* Set permissions/owner of output file */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001354 fstat(fileno(file), &statbuf);
1355 fchmod(nonstdoutfd, statbuf.st_mode);
Denys Vlasenko57992482009-11-13 09:09:07 +01001356 fchown(nonstdoutfd, statbuf.st_uid, statbuf.st_gid);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001357 add_input_file(file);
1358 process_files();
Denis Vlasenko17a15262007-03-26 20:48:46 +00001359 fclose(G.nonstdout);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001360
Denis Vlasenko17a15262007-03-26 20:48:46 +00001361 G.nonstdout = stdout;
Denis Vlasenko80778502006-10-25 12:46:46 +00001362 /* unlink(argv[i]); */
Denis Vlasenkocb448fe2008-02-17 14:28:53 +00001363 xrename(G.outname, argv[i]);
Denis Vlasenko17a15262007-03-26 20:48:46 +00001364 free(G.outname);
Denis Vlasenko40276642007-11-13 16:48:10 +00001365 G.outname = NULL;
Mark Whitley6315ce62000-07-10 22:55:51 +00001366 }
Denis Vlasenko17a15262007-03-26 20:48:46 +00001367 if (G.input_file_count > G.current_input_file)
Denis Vlasenko80778502006-10-25 12:46:46 +00001368 process_files();
Mark Whitley6315ce62000-07-10 22:55:51 +00001369 }
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001370
Matt Kraaia5f09c62001-11-12 16:44:55 +00001371 return status;
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001372}