blob: 0f5cab2b7aea36cc7fd89a2d6318456b08044354 [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
Rob Landleydcc28662004-11-25 07:21:47 +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 Vlasenko34c4e5f2007-01-30 22:25:16 +000079 unsigned short 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;
Denis Vlasenko17a15262007-03-26 20:48:46 +0000120};
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 Vlasenko9356b502007-01-29 23:44:38 +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? */
356 sed_cmd->which_match = (unsigned short)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 */
Denis Vlasenko80778502006-10-25 12:46:46 +0000362 if (isspace(substr[idx])) continue;
Rob Landley40ec4ae2004-01-04 06:42:14 +0000363
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000364 switch (substr[idx]) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000365 /* Replace all occurrences */
366 case 'g':
367 if (match[0] != '^') sed_cmd->which_match = 0;
368 break;
369 /* Print pattern space */
370 case 'p':
371 sed_cmd->sub_p = 1;
372 break;
373 /* Write to file */
374 case 'w':
375 {
376 char *temp;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000377 idx += parse_file_cmd(sed_cmd, substr+idx, &temp);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000378 break;
379 }
380 /* Ignore case (gnu exension) */
381 case 'I':
382 cflags |= REG_ICASE;
383 break;
384 /* Comment */
385 case '#':
Denis Vlasenko80778502006-10-25 12:46:46 +0000386 while (substr[++idx]) /*skip all*/;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000387 /* Fall through */
388 /* End of command */
389 case ';':
390 case '}':
391 goto out;
392 default:
393 bb_error_msg_and_die("bad option in substitution expression");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000394 }
395 }
Glenn L McGrath2570b432003-09-16 05:25:43 +0000396out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000397 /* compile the match string into a regex */
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000398 if (*match != '\0') {
399 /* If match is empty, we use last regex used at runtime */
Denis Vlasenkob95636c2006-12-19 23:36:04 +0000400 sed_cmd->sub_match = xmalloc(sizeof(regex_t));
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000401 xregcomp(sed_cmd->sub_match, match, cflags);
402 }
Mark Whitley06f35292000-07-13 19:58:04 +0000403 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000404
405 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000406}
407
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000408/*
409 * Process the commands arguments
410 */
Denis Vlasenko9356b502007-01-29 23:44:38 +0000411static const char *parse_cmd_args(sed_cmd_t *sed_cmd, const char *cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000412{
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000413 /* handle (s)ubstitution command */
Denis Vlasenko80778502006-10-25 12:46:46 +0000414 if (sed_cmd->cmd == 's')
415 cmdstr += parse_subst_cmd(sed_cmd, cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000416 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
417 else if (strchr("aic", sed_cmd->cmd)) {
418 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c')
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000419 bb_error_msg_and_die
420 ("only a beginning address can be specified for edit commands");
Denis Vlasenko80778502006-10-25 12:46:46 +0000421 for (;;) {
422 if (*cmdstr == '\n' || *cmdstr == '\\') {
Rob Landley25d82392004-04-01 09:23:30 +0000423 cmdstr++;
424 break;
Denis Vlasenko80778502006-10-25 12:46:46 +0000425 } else if (isspace(*cmdstr))
426 cmdstr++;
427 else
428 break;
Rob Landley25d82392004-04-01 09:23:30 +0000429 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000430 sed_cmd->string = xstrdup(cmdstr);
Denis Vlasenko40276642007-11-13 16:48:10 +0000431 /* "\anychar" -> "anychar" */
432 parse_escapes(sed_cmd->string, sed_cmd->string, strlen(cmdstr), '\0', '\0');
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000433 cmdstr += strlen(cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000434 /* handle file cmds: (r)ead */
Denis Vlasenko80778502006-10-25 12:46:46 +0000435 } else if (strchr("rw", sed_cmd->cmd)) {
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000436 if (sed_cmd->end_line || sed_cmd->end_match)
Denis Vlasenko80778502006-10-25 12:46:46 +0000437 bb_error_msg_and_die("command only uses one address");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000438 cmdstr += parse_file_cmd(sed_cmd, cmdstr, &sed_cmd->string);
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000439 if (sed_cmd->cmd == 'w') {
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000440 sed_cmd->sw_file = xfopen(sed_cmd->string, "w");
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000441 sed_cmd->sw_last_char = '\n';
442 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000443 /* handle branch commands */
Rob Landley93850a52005-05-18 06:34:37 +0000444 } else if (strchr(":btT", sed_cmd->cmd)) {
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000445 int length;
446
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000447 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000448 length = strcspn(cmdstr, semicolon_whitespace);
449 if (length) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000450 sed_cmd->string = xstrndup(cmdstr, length);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000451 cmdstr += length;
452 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000453 }
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000454 /* translation command */
455 else if (sed_cmd->cmd == 'y') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000456 char *match, *replace;
Denis Vlasenko80778502006-10-25 12:46:46 +0000457 int i = cmdstr[0];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000458
Denis Vlasenko80778502006-10-25 12:46:46 +0000459 cmdstr += parse_regex_delim(cmdstr, &match, &replace)+1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000460 /* \n already parsed, but \delimiter needs unescaping. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000461 parse_escapes(match, match, strlen(match), i, i);
462 parse_escapes(replace, replace, strlen(replace), i, i);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000463
Rob Landley9ffd4232006-05-21 18:30:35 +0000464 sed_cmd->string = xzalloc((strlen(match) + 1) * 2);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000465 for (i = 0; match[i] && replace[i]; i++) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000466 sed_cmd->string[i*2] = match[i];
467 sed_cmd->string[i*2+1] = replace[i];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000468 }
469 free(match);
470 free(replace);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000471 }
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000472 /* if it wasnt a single-letter command that takes no arguments
473 * then it must be an invalid command.
474 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000475 else if (strchr("dDgGhHlnNpPqx={}", sed_cmd->cmd) == 0) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000476 bb_error_msg_and_die("unsupported command %c", sed_cmd->cmd);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000477 }
Mark Whitley70705d72000-07-14 19:06:30 +0000478
479 /* give back whatever's left over */
Denis Vlasenko80778502006-10-25 12:46:46 +0000480 return cmdstr;
Eric Andersen50d63601999-11-09 01:47:36 +0000481}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000482
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000483
484/* Parse address+command sets, skipping comment lines. */
485
Denis Vlasenkob6aae0f2007-01-29 22:51:25 +0000486static void add_cmd(const char *cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000487{
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000488 sed_cmd_t *sed_cmd;
Glenn L McGrath586d86c2003-10-09 07:22:59 +0000489 int temp;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000490
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000491 /* Append this line to any unfinished line from last time. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000492 if (G.add_cmd_line) {
493 char *tp = xasprintf("%s\n%s", G.add_cmd_line, cmdstr);
494 free(G.add_cmd_line);
Denis Vlasenko945bd3d2007-04-12 21:20:25 +0000495 cmdstr = G.add_cmd_line = tp;
Rob Landley12d87552006-06-05 17:32:44 +0000496 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000497
498 /* If this line ends with backslash, request next line. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000499 temp = strlen(cmdstr);
Denis Vlasenko945bd3d2007-04-12 21:20:25 +0000500 if (temp && cmdstr[--temp] == '\\') {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000501 if (!G.add_cmd_line)
502 G.add_cmd_line = xstrdup(cmdstr);
Denis Vlasenko945bd3d2007-04-12 21:20:25 +0000503 G.add_cmd_line[temp] = '\0';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000504 return;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000505 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000506
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000507 /* Loop parsing all commands in this line. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000508 while (*cmdstr) {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000509 /* Skip leading whitespace and semicolons */
510 cmdstr += strspn(cmdstr, semicolon_whitespace);
511
512 /* If no more commands, exit. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000513 if (!*cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000514
515 /* if this is a comment, jump past it and keep going */
516 if (*cmdstr == '#') {
517 /* "#n" is the same as using -n on the command line */
Denis Vlasenko80778502006-10-25 12:46:46 +0000518 if (cmdstr[1] == 'n')
Denis Vlasenko17a15262007-03-26 20:48:46 +0000519 G.be_quiet++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000520 cmdstr = strpbrk(cmdstr, "\n\r");
521 if (!cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000522 continue;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000523 }
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000524
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000525 /* parse the command
526 * format is: [addr][,addr][!]cmd
527 * |----||-----||-|
528 * part1 part2 part3
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000529 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000530
Rob Landley9ffd4232006-05-21 18:30:35 +0000531 sed_cmd = xzalloc(sizeof(sed_cmd_t));
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000532
533 /* first part (if present) is an address: either a '$', a number or a /regex/ */
534 cmdstr += get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
535
536 /* second part (if present) will begin with a comma */
537 if (*cmdstr == ',') {
538 int idx;
539
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000540 cmdstr++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000541 idx = get_address(cmdstr, &sed_cmd->end_line, &sed_cmd->end_match);
Denis Vlasenko80778502006-10-25 12:46:46 +0000542 if (!idx)
543 bb_error_msg_and_die("no address after comma");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000544 cmdstr += idx;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000545 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000546
547 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000548 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000549
550 /* Check for inversion flag */
551 if (*cmdstr == '!') {
552 sed_cmd->invert = 1;
553 cmdstr++;
554
555 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000556 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000557 }
558
559 /* last part (mandatory) will be a command */
Denis Vlasenko80778502006-10-25 12:46:46 +0000560 if (!*cmdstr)
561 bb_error_msg_and_die("missing command");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000562 sed_cmd->cmd = *(cmdstr++);
563 cmdstr = parse_cmd_args(sed_cmd, cmdstr);
564
565 /* Add the command to the command array */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000566 G.sed_cmd_tail->next = sed_cmd;
567 G.sed_cmd_tail = G.sed_cmd_tail->next;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000568 }
569
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000570 /* If we glued multiple lines together, free the memory. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000571 free(G.add_cmd_line);
572 G.add_cmd_line = NULL;
Mark Whitley6315ce62000-07-10 22:55:51 +0000573}
574
Rob Landleydcc28662004-11-25 07:21:47 +0000575/* Append to a string, reallocating memory as necessary. */
576
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000577#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000578
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000579static void pipe_putc(char c)
Eric Andersenc52a6b02001-11-10 10:49:42 +0000580{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000581 if (G.pipeline.idx == G.pipeline.len) {
582 G.pipeline.buf = xrealloc(G.pipeline.buf,
583 G.pipeline.len + PIPE_GROW);
584 G.pipeline.len += PIPE_GROW;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000585 }
Denis Vlasenko17a15262007-03-26 20:48:46 +0000586 G.pipeline.buf[G.pipeline.idx++] = c;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000587}
588
Rob Landley4795e4e2006-07-26 17:25:08 +0000589static void do_subst_w_backrefs(char *line, char *replace)
Mark Whitley97562bd2000-07-17 20:06:42 +0000590{
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000591 int i,j;
Mark Whitley97562bd2000-07-17 20:06:42 +0000592
593 /* go through the replacement string */
594 for (i = 0; replace[i]; i++) {
595 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000596 if (replace[i] == '\\') {
597 unsigned backref = replace[++i] - '0';
598 if (backref <= 9) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000599 /* print out the text held in G.regmatch[backref] */
600 if (G.regmatch[backref].rm_so != -1) {
601 j = G.regmatch[backref].rm_so;
602 while (j < G.regmatch[backref].rm_eo)
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000603 pipe_putc(line[j++]);
604 }
605 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000606 }
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000607 /* I _think_ it is impossible to get '\' to be
608 * the last char in replace string. Thus we dont check
609 * for replace[i] == NUL. (counterexample anyone?) */
610 /* if we find a backslash escaped character, print the character */
611 pipe_putc(replace[i]);
612 continue;
Mark Whitley97562bd2000-07-17 20:06:42 +0000613 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000614 /* if we find an unescaped '&' print out the whole matched text. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000615 if (replace[i] == '&') {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000616 j = G.regmatch[0].rm_so;
617 while (j < G.regmatch[0].rm_eo)
Denis Vlasenko80778502006-10-25 12:46:46 +0000618 pipe_putc(line[j++]);
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000619 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000620 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000621 /* Otherwise just output the character. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000622 pipe_putc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000623 }
624}
625
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000626static int do_subst_command(sed_cmd_t *sed_cmd, char **line)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000627{
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000628 char *oldline = *line;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000629 int altered = 0;
Denis Vlasenko80778502006-10-25 12:46:46 +0000630 int match_count = 0;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000631 regex_t *current_regex;
632
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000633 /* Handle empty regex. */
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000634 if (sed_cmd->sub_match == NULL) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000635 current_regex = G.previous_regex_ptr;
Denis Vlasenko80778502006-10-25 12:46:46 +0000636 if (!current_regex)
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000637 bb_error_msg_and_die("no previous regexp");
Denis Vlasenko80778502006-10-25 12:46:46 +0000638 } else
Denis Vlasenko17a15262007-03-26 20:48:46 +0000639 G.previous_regex_ptr = current_regex = sed_cmd->sub_match;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000640
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000641 /* Find the first match */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000642 if (REG_NOMATCH == regexec(current_regex, oldline, 10, G.regmatch, 0))
Mark Whitley2dc192f2000-11-03 19:47:00 +0000643 return 0;
644
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000645 /* Initialize temporary output buffer. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000646 G.pipeline.buf = xmalloc(PIPE_GROW);
647 G.pipeline.len = PIPE_GROW;
648 G.pipeline.idx = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000649
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000650 /* Now loop through, substituting for matches */
651 do {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000652 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000653
Eric Andersenc06f5682004-02-04 10:57:46 +0000654 /* Work around bug in glibc regexec, demonstrated by:
655 echo " a.b" | busybox sed 's [^ .]* x g'
656 The match_count check is so not to break
657 echo "hi" | busybox sed 's/^/!/g' */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000658 if (!G.regmatch[0].rm_so && !G.regmatch[0].rm_eo && match_count) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000659 pipe_putc(*oldline++);
Eric Andersenc06f5682004-02-04 10:57:46 +0000660 continue;
661 }
662
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000663 match_count++;
664
665 /* If we aren't interested in this match, output old line to
666 end of match and continue */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000667 if (sed_cmd->which_match && sed_cmd->which_match != match_count) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000668 for (i = 0; i < G.regmatch[0].rm_eo; i++)
Denis Vlasenko80778502006-10-25 12:46:46 +0000669 pipe_putc(*oldline++);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000670 continue;
671 }
672
Mark Whitley2dc192f2000-11-03 19:47:00 +0000673 /* print everything before the match */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000674 for (i = 0; i < G.regmatch[0].rm_so; i++)
Denis Vlasenko80778502006-10-25 12:46:46 +0000675 pipe_putc(oldline[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000676
Mark Whitley2dc192f2000-11-03 19:47:00 +0000677 /* then print the substitution string */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000678 do_subst_w_backrefs(oldline, sed_cmd->string);
Mark Whitley97562bd2000-07-17 20:06:42 +0000679
Mark Whitley2dc192f2000-11-03 19:47:00 +0000680 /* advance past the match */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000681 oldline += G.regmatch[0].rm_eo;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000682 /* flag that something has changed */
683 altered++;
Mark Whitley97562bd2000-07-17 20:06:42 +0000684
Mark Whitley2dc192f2000-11-03 19:47:00 +0000685 /* if we're not doing this globally, get out now */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000686 if (sed_cmd->which_match) break;
Denis Vlasenko17a15262007-03-26 20:48:46 +0000687 } while (*oldline && (regexec(current_regex, oldline, 10, G.regmatch, 0) != REG_NOMATCH));
Mark Whitley2dc192f2000-11-03 19:47:00 +0000688
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000689 /* Copy rest of string into output pipeline */
690
Denis Vlasenko80778502006-10-25 12:46:46 +0000691 while (*oldline)
692 pipe_putc(*oldline++);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000693 pipe_putc(0);
Mark Whitley2dc192f2000-11-03 19:47:00 +0000694
Eric Andersenb76cb682001-08-22 05:58:16 +0000695 free(*line);
Denis Vlasenko17a15262007-03-26 20:48:46 +0000696 *line = G.pipeline.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000697 return altered;
698}
Mark Whitley6315ce62000-07-10 22:55:51 +0000699
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000700/* Set command pointer to point to this label. (Does not handle null label.) */
Rob Landley4795e4e2006-07-26 17:25:08 +0000701static sed_cmd_t *branch_to(char *label)
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000702{
703 sed_cmd_t *sed_cmd;
Glenn L McGrathd4185b02003-04-11 17:10:23 +0000704
Denis Vlasenko17a15262007-03-26 20:48:46 +0000705 for (sed_cmd = G.sed_cmd_head.next; sed_cmd; sed_cmd = sed_cmd->next) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000706 if (sed_cmd->cmd == ':' && sed_cmd->string && !strcmp(sed_cmd->string, label)) {
707 return sed_cmd;
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000708 }
709 }
Denis Vlasenko80778502006-10-25 12:46:46 +0000710 bb_error_msg_and_die("can't find label for jump to '%s'", label);
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000711}
Mark Whitley6315ce62000-07-10 22:55:51 +0000712
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000713static void append(char *s)
714{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000715 llist_add_to_end(&G.append_head, xstrdup(s));
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000716}
717
718static void flush_append(void)
719{
Rob Landley0b656282006-05-08 22:17:23 +0000720 char *data;
721
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000722 /* Output appended lines. */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000723 while ((data = (char *)llist_pop(&G.append_head))) {
724 fprintf(G.nonstdout, "%s\n", data);
Rob Landley0b656282006-05-08 22:17:23 +0000725 free(data);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000726 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000727}
728
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000729static void add_input_file(FILE *file)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000730{
Denis Vlasenko17a15262007-03-26 20:48:46 +0000731 G.input_file_list = xrealloc(G.input_file_list,
732 (G.input_file_count + 1) * sizeof(FILE *));
733 G.input_file_list[G.input_file_count++] = file;
Rob Landleydcc28662004-11-25 07:21:47 +0000734}
735
Denis Vlasenko17a15262007-03-26 20:48:46 +0000736/* Get next line of input from G.input_file_list, flushing append buffer and
Rob Landleydcc28662004-11-25 07:21:47 +0000737 * noting if we ran out of files without a newline on the last line we read.
738 */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000739enum {
740 NO_EOL_CHAR = 1,
Denis Vlasenko86811802007-01-29 17:10:19 +0000741 LAST_IS_NUL = 2,
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000742};
743static char *get_next_line(char *gets_char)
Rob Landleydcc28662004-11-25 07:21:47 +0000744{
Denis Vlasenko80778502006-10-25 12:46:46 +0000745 char *temp = NULL;
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000746 int len;
747 char gc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000748
749 flush_append();
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000750
751 /* will be returned if last line in the file
752 * doesn't end with either '\n' or '\0' */
753 gc = NO_EOL_CHAR;
Denis Vlasenko17a15262007-03-26 20:48:46 +0000754 while (G.current_input_file < G.input_file_count) {
755 FILE *fp = G.input_file_list[G.current_input_file];
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000756 /* Read line up to a newline or NUL byte, inclusive,
757 * return malloc'ed char[]. length of the chunk read
758 * is stored in len. NULL if EOF/error */
Denis Vlasenko86811802007-01-29 17:10:19 +0000759 temp = bb_get_chunk_from_file(fp, &len);
Rob Landley2b26fd52006-02-24 02:30:39 +0000760 if (temp) {
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000761 /* len > 0 here, it's ok to do temp[len-1] */
762 char c = temp[len-1];
763 if (c == '\n' || c == '\0') {
764 temp[len-1] = '\0';
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000765 gc = c;
Denis Vlasenko86811802007-01-29 17:10:19 +0000766 if (c == '\0') {
767 int ch = fgetc(fp);
768 if (ch != EOF)
769 ungetc(ch, fp);
770 else
771 gc = LAST_IS_NUL;
772 }
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000773 }
Denis Vlasenkoc562bb72007-01-29 17:08:51 +0000774 /* else we put NO_EOL_CHAR into *gets_char */
775 break;
776
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000777 /* NB: I had the idea of peeking next file(s) and returning
778 * NO_EOL_CHAR only if it is the *last* non-empty
779 * input file. But there is a case where this won't work:
780 * file1: "a woo\nb woo"
781 * file2: "c no\nd no"
782 * sed -ne 's/woo/bang/p' input1 input2 => "a bang\nb bang"
783 * (note: *no* newline after "b bang"!) */
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000784 }
785 /* Close this file and advance to next one */
Denis Vlasenko86811802007-01-29 17:10:19 +0000786 fclose(fp);
Denis Vlasenko17a15262007-03-26 20:48:46 +0000787 G.current_input_file++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000788 }
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000789 *gets_char = gc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000790 return temp;
791}
792
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000793/* Output line of text. */
794/* Note:
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000795 * The tricks with NO_EOL_CHAR and last_puts_char are there to emulate gnu sed.
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000796 * Without them, we had this:
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000797 * echo -n thingy >z1
798 * echo -n again >z2
799 * >znull
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000800 * sed "s/i/z/" z1 z2 znull | hexdump -vC
801 * output:
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000802 * gnu sed 4.1.5:
803 * 00000000 74 68 7a 6e 67 79 0a 61 67 61 7a 6e |thzngy.agazn|
804 * bbox:
805 * 00000000 74 68 7a 6e 67 79 61 67 61 7a 6e |thzngyagazn|
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000806 */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000807static void puts_maybe_newline(char *s, FILE *file, char *last_puts_char, char last_gets_char)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000808{
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000809 char lpc = *last_puts_char;
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000810
Denis Vlasenko86811802007-01-29 17:10:19 +0000811 /* Need to insert a '\n' between two files because first file's
812 * last line wasn't terminated? */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000813 if (lpc != '\n' && lpc != '\0') {
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000814 fputc('\n', file);
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000815 lpc = '\n';
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000816 }
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000817 fputs(s, file);
Denis Vlasenko86811802007-01-29 17:10:19 +0000818
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000819 /* 'x' - just something which is not '\n', '\0' or NO_EOL_CHAR */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000820 if (s[0])
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000821 lpc = 'x';
Denis Vlasenko86811802007-01-29 17:10:19 +0000822
823 /* had trailing '\0' and it was last char of file? */
824 if (last_gets_char == LAST_IS_NUL) {
825 fputc('\0', file);
826 lpc = 'x'; /* */
827 } else
828 /* had trailing '\n' or '\0'? */
829 if (last_gets_char != NO_EOL_CHAR) {
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000830 fputc(last_gets_char, file);
831 lpc = last_gets_char;
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000832 }
Denis Vlasenko86811802007-01-29 17:10:19 +0000833
Denis Vlasenko80778502006-10-25 12:46:46 +0000834 if (ferror(file)) {
Denis Vlasenko40920822006-10-03 20:28:06 +0000835 xfunc_error_retval = 4; /* It's what gnu sed exits with... */
Bernhard Reutner-Fischera3d4bf32006-06-03 21:40:11 +0000836 bb_error_msg_and_die(bb_msg_write_error);
Rob Landley53302f82004-02-18 09:54:15 +0000837 }
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000838 *last_puts_char = lpc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000839}
840
Denis Vlasenko17a15262007-03-26 20:48:46 +0000841#define sed_puts(s, n) (puts_maybe_newline(s, G.nonstdout, &last_puts_char, n))
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000842
Denis Vlasenko8274e062007-08-06 03:41:08 +0000843static int beg_match(sed_cmd_t *sed_cmd, const char *pattern_space)
844{
845 int retval = sed_cmd->beg_match && !regexec(sed_cmd->beg_match, pattern_space, 0, NULL, 0);
846 if (retval)
847 G.previous_regex_ptr = sed_cmd->beg_match;
848 return retval;
849}
850
Rob Landley2b26fd52006-02-24 02:30:39 +0000851/* Process all the lines in all the files */
852
Rob Landleydcc28662004-11-25 07:21:47 +0000853static void process_files(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000854{
Rob Landleyce4f0e92004-10-30 06:54:19 +0000855 char *pattern_space, *next_line;
Denis Vlasenko826c85f2007-01-28 23:26:15 +0000856 int linenum = 0;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000857 char last_puts_char = '\n';
858 char last_gets_char, next_gets_char;
Denis Vlasenko2ea630f2006-12-10 02:52:19 +0000859 sed_cmd_t *sed_cmd;
860 int substituted;
Mark Whitley6315ce62000-07-10 22:55:51 +0000861
Rob Landley2b26fd52006-02-24 02:30:39 +0000862 /* Prime the pump */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000863 next_line = get_next_line(&next_gets_char);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000864
Rob Landleydcc28662004-11-25 07:21:47 +0000865 /* go through every line in each file */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000866again:
Denis Vlasenko2ea630f2006-12-10 02:52:19 +0000867 substituted = 0;
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000868
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000869 /* Advance to next line. Stop if out of lines. */
870 pattern_space = next_line;
871 if (!pattern_space) return;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000872 last_gets_char = next_gets_char;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000873
874 /* Read one line in advance so we can act on the last line,
875 * the '$' address */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000876 next_line = get_next_line(&next_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000877 linenum++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000878restart:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000879 /* for every line, go through all the commands */
Denis Vlasenko17a15262007-03-26 20:48:46 +0000880 for (sed_cmd = G.sed_cmd_head.next; sed_cmd; sed_cmd = sed_cmd->next) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000881 int old_matched, matched;
Eric Andersen52a3c272003-12-23 08:53:51 +0000882
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000883 old_matched = sed_cmd->in_match;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000884
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000885 /* Determine if this command matches this line: */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000886
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000887 /* Are we continuing a previous multi-line match? */
888 sed_cmd->in_match = sed_cmd->in_match
889 /* Or is no range necessary? */
890 || (!sed_cmd->beg_line && !sed_cmd->end_line
891 && !sed_cmd->beg_match && !sed_cmd->end_match)
892 /* Or did we match the start of a numerical range? */
893 || (sed_cmd->beg_line > 0 && (sed_cmd->beg_line == linenum))
894 /* Or does this line match our begin address regex? */
Denis Vlasenko8274e062007-08-06 03:41:08 +0000895 || (beg_match(sed_cmd, pattern_space))
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000896 /* Or did we match last line of input? */
897 || (sed_cmd->beg_line == -1 && next_line == NULL);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000898
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000899 /* Snapshot the value */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000900
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000901 matched = sed_cmd->in_match;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000902
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000903 /* Is this line the end of the current match? */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000904
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000905 if (matched) {
906 sed_cmd->in_match = !(
907 /* has the ending line come, or is this a single address command? */
908 (sed_cmd->end_line ?
909 sed_cmd->end_line == -1 ?
910 !next_line
911 : (sed_cmd->end_line <= linenum)
912 : !sed_cmd->end_match
913 )
914 /* or does this line matches our last address regex */
915 || (sed_cmd->end_match && old_matched
916 && (regexec(sed_cmd->end_match,
Denis Vlasenko8e858e22007-03-07 09:35:43 +0000917 pattern_space, 0, NULL, 0) == 0))
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000918 );
Erik Andersene49d5ec2000-02-08 19:58:47 +0000919 }
Erik Andersen1266a131999-12-29 22:19:46 +0000920
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000921 /* Skip blocks of commands we didn't match. */
922 if (sed_cmd->cmd == '{') {
Denis Vlasenko826c85f2007-01-28 23:26:15 +0000923 if (sed_cmd->invert ? matched : !matched) {
924 while (sed_cmd->cmd != '}') {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000925 sed_cmd = sed_cmd->next;
Denis Vlasenko826c85f2007-01-28 23:26:15 +0000926 if (!sed_cmd)
927 bb_error_msg_and_die("unterminated {");
928 }
929 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000930 continue;
931 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000932
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000933 /* Okay, so did this line match? */
934 if (sed_cmd->invert ? !matched : matched) {
935 /* Update last used regex in case a blank substitute BRE is found */
936 if (sed_cmd->beg_match) {
Denis Vlasenko17a15262007-03-26 20:48:46 +0000937 G.previous_regex_ptr = sed_cmd->beg_match;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000938 }
939
940 /* actual sedding */
941 switch (sed_cmd->cmd) {
942
943 /* Print line number */
944 case '=':
Denis Vlasenko17a15262007-03-26 20:48:46 +0000945 fprintf(G.nonstdout, "%d\n", linenum);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000946 break;
947
948 /* Write the current pattern space up to the first newline */
949 case 'P':
950 {
951 char *tmp = strchr(pattern_space, '\n');
952
953 if (tmp) {
954 *tmp = '\0';
Denis Vlasenko826c85f2007-01-28 23:26:15 +0000955 /* TODO: explain why '\n' below */
956 sed_puts(pattern_space, '\n');
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000957 *tmp = '\n';
958 break;
959 }
960 /* Fall Through */
961 }
962
963 /* Write the current pattern space to output */
964 case 'p':
Denis Vlasenko826c85f2007-01-28 23:26:15 +0000965 /* NB: we print this _before_ the last line
966 * (of current file) is printed. Even if
967 * that line is nonterminated, we print
968 * '\n' here (gnu sed does the same) */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000969 sed_puts(pattern_space, '\n');
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000970 break;
971 /* Delete up through first newline */
972 case 'D':
973 {
974 char *tmp = strchr(pattern_space, '\n');
975
976 if (tmp) {
977 tmp = xstrdup(tmp+1);
978 free(pattern_space);
979 pattern_space = tmp;
980 goto restart;
981 }
982 }
983 /* discard this line. */
984 case 'd':
985 goto discard_line;
986
987 /* Substitute with regex */
988 case 's':
989 if (!do_subst_command(sed_cmd, &pattern_space))
990 break;
991 substituted |= 1;
992
993 /* handle p option */
994 if (sed_cmd->sub_p)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000995 sed_puts(pattern_space, last_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000996 /* handle w option */
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +0000997 if (sed_cmd->sw_file)
998 puts_maybe_newline(
999 pattern_space, sed_cmd->sw_file,
1000 &sed_cmd->sw_last_char, last_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001001 break;
1002
1003 /* Append line to linked list to be printed later */
1004 case 'a':
1005 append(sed_cmd->string);
1006 break;
1007
1008 /* Insert text before this line */
1009 case 'i':
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001010 sed_puts(sed_cmd->string, '\n');
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001011 break;
1012
1013 /* Cut and paste text (replace) */
1014 case 'c':
1015 /* Only triggers on last line of a matching range. */
1016 if (!sed_cmd->in_match)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001017 sed_puts(sed_cmd->string, NO_EOL_CHAR);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001018 goto discard_line;
1019
1020 /* Read file, append contents to output */
1021 case 'r':
1022 {
1023 FILE *rfile;
1024
1025 rfile = fopen(sed_cmd->string, "r");
1026 if (rfile) {
1027 char *line;
1028
1029 while ((line = xmalloc_getline(rfile))
1030 != NULL)
1031 append(line);
1032 xprint_and_close_file(rfile);
1033 }
1034
1035 break;
1036 }
1037
1038 /* Write pattern space to file. */
1039 case 'w':
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001040 puts_maybe_newline(
1041 pattern_space, sed_cmd->sw_file,
1042 &sed_cmd->sw_last_char, last_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001043 break;
1044
1045 /* Read next line from input */
1046 case 'n':
Denis Vlasenko17a15262007-03-26 20:48:46 +00001047 if (!G.be_quiet)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001048 sed_puts(pattern_space, last_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001049 if (next_line) {
1050 free(pattern_space);
1051 pattern_space = next_line;
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001052 last_gets_char = next_gets_char;
1053 next_line = get_next_line(&next_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001054 linenum++;
1055 break;
1056 }
1057 /* fall through */
1058
1059 /* Quit. End of script, end of input. */
1060 case 'q':
1061 /* Exit the outer while loop */
1062 free(next_line);
1063 next_line = NULL;
1064 goto discard_commands;
1065
1066 /* Append the next line to the current line */
1067 case 'N':
1068 {
1069 int len;
1070 /* If no next line, jump to end of script and exit. */
1071 if (next_line == NULL) {
1072 /* Jump to end of script and exit */
1073 free(next_line);
1074 next_line = NULL;
1075 goto discard_line;
1076 /* append next_line, read new next_line. */
1077 }
1078 len = strlen(pattern_space);
1079 pattern_space = realloc(pattern_space, len + strlen(next_line) + 2);
1080 pattern_space[len] = '\n';
1081 strcpy(pattern_space + len+1, next_line);
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001082 last_gets_char = next_gets_char;
1083 next_line = get_next_line(&next_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001084 linenum++;
1085 break;
1086 }
1087
1088 /* Test/branch if substitution occurred */
1089 case 't':
1090 if (!substituted) break;
1091 substituted = 0;
1092 /* Fall through */
1093 /* Test/branch if substitution didn't occur */
1094 case 'T':
1095 if (substituted) break;
1096 /* Fall through */
1097 /* Branch to label */
1098 case 'b':
1099 if (!sed_cmd->string) goto discard_commands;
1100 else sed_cmd = branch_to(sed_cmd->string);
1101 break;
1102 /* Transliterate characters */
1103 case 'y':
1104 {
1105 int i, j;
1106
1107 for (i = 0; pattern_space[i]; i++) {
1108 for (j = 0; sed_cmd->string[j]; j += 2) {
1109 if (pattern_space[i] == sed_cmd->string[j]) {
1110 pattern_space[i] = sed_cmd->string[j + 1];
1111 break;
1112 }
1113 }
1114 }
1115
1116 break;
1117 }
1118 case 'g': /* Replace pattern space with hold space */
1119 free(pattern_space);
Denis Vlasenko17a15262007-03-26 20:48:46 +00001120 pattern_space = xstrdup(G.hold_space ? G.hold_space : "");
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001121 break;
1122 case 'G': /* Append newline and hold space to pattern space */
1123 {
1124 int pattern_space_size = 2;
1125 int hold_space_size = 0;
1126
1127 if (pattern_space)
1128 pattern_space_size += strlen(pattern_space);
Denis Vlasenko17a15262007-03-26 20:48:46 +00001129 if (G.hold_space)
1130 hold_space_size = strlen(G.hold_space);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001131 pattern_space = xrealloc(pattern_space,
1132 pattern_space_size + hold_space_size);
1133 if (pattern_space_size == 2)
1134 pattern_space[0] = 0;
1135 strcat(pattern_space, "\n");
Denis Vlasenko17a15262007-03-26 20:48:46 +00001136 if (G.hold_space)
1137 strcat(pattern_space, G.hold_space);
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001138 last_gets_char = '\n';
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001139
1140 break;
1141 }
1142 case 'h': /* Replace hold space with pattern space */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001143 free(G.hold_space);
1144 G.hold_space = xstrdup(pattern_space);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001145 break;
1146 case 'H': /* Append newline and pattern space to hold space */
1147 {
1148 int hold_space_size = 2;
1149 int pattern_space_size = 0;
1150
Denis Vlasenko17a15262007-03-26 20:48:46 +00001151 if (G.hold_space)
1152 hold_space_size += strlen(G.hold_space);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001153 if (pattern_space)
1154 pattern_space_size = strlen(pattern_space);
Denis Vlasenko17a15262007-03-26 20:48:46 +00001155 G.hold_space = xrealloc(G.hold_space,
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001156 hold_space_size + pattern_space_size);
1157
1158 if (hold_space_size == 2)
Denis Vlasenko17a15262007-03-26 20:48:46 +00001159 *G.hold_space = 0;
1160 strcat(G.hold_space, "\n");
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001161 if (pattern_space)
Denis Vlasenko17a15262007-03-26 20:48:46 +00001162 strcat(G.hold_space, pattern_space);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001163
1164 break;
1165 }
1166 case 'x': /* Exchange hold and pattern space */
1167 {
1168 char *tmp = pattern_space;
Denis Vlasenko17a15262007-03-26 20:48:46 +00001169 pattern_space = G.hold_space ? : xzalloc(1);
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001170 last_gets_char = '\n';
Denis Vlasenko17a15262007-03-26 20:48:46 +00001171 G.hold_space = tmp;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001172 break;
1173 }
1174 }
1175 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001176 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001177
1178 /*
1179 * exit point from sedding...
1180 */
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001181 discard_commands:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001182 /* we will print the line unless we were told to be quiet ('-n')
1183 or if the line was suppressed (ala 'd'elete) */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001184 if (!G.be_quiet)
Denis Vlasenkofe7a9f12007-01-29 14:31:47 +00001185 sed_puts(pattern_space, last_gets_char);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001186
1187 /* Delete and such jump here. */
Denis Vlasenko826c85f2007-01-28 23:26:15 +00001188 discard_line:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001189 flush_append();
1190 free(pattern_space);
1191
1192 goto again;
Erik Andersen1266a131999-12-29 22:19:46 +00001193}
1194
Glenn L McGrath42c25732003-10-04 05:27:56 +00001195/* It is possible to have a command line argument with embedded
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001196 * newlines. This counts as multiple command lines.
1197 * However, newline can be escaped: 's/e/z\<newline>z/'
1198 * We check for this.
1199 */
Glenn L McGrath42c25732003-10-04 05:27:56 +00001200
1201static void add_cmd_block(char *cmdstr)
1202{
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001203 char *sv, *eol;
Glenn L McGrath42c25732003-10-04 05:27:56 +00001204
Denis Vlasenko4b0bb9e2007-03-16 23:36:58 +00001205 cmdstr = sv = xstrdup(cmdstr);
1206 do {
1207 eol = strchr(cmdstr, '\n');
1208 next:
1209 if (eol) {
1210 /* Count preceding slashes */
1211 int slashes = 0;
1212 char *sl = eol;
1213
1214 while (sl != cmdstr && *--sl == '\\')
1215 slashes++;
1216 /* Odd number of preceding slashes - newline is escaped */
1217 if (slashes & 1) {
1218 strcpy(eol-1, eol);
1219 eol = strchr(eol, '\n');
1220 goto next;
1221 }
1222 *eol = '\0';
1223 }
1224 add_cmd(cmdstr);
1225 cmdstr = eol + 1;
1226 } while (eol);
1227 free(sv);
Glenn L McGrath42c25732003-10-04 05:27:56 +00001228}
1229
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00001230int sed_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +00001231int sed_main(int argc, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001232{
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001233 enum {
1234 OPT_in_place = 1 << 0,
1235 };
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001236 unsigned opt;
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001237 llist_t *opt_e, *opt_f;
1238 int status = EXIT_SUCCESS;
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001239
Denis Vlasenko74324c82007-06-04 10:16:52 +00001240 INIT_G();
Rob Landleye3f5a3f2006-05-09 03:53:55 +00001241
Mark Whitley858c1ad2000-07-11 21:38:47 +00001242 /* destroy command strings on exit */
Rob Landley0b656282006-05-08 22:17:23 +00001243 if (ENABLE_FEATURE_CLEAN_UP) atexit(sed_free_and_close_stuff);
Mark Whitley858c1ad2000-07-11 21:38:47 +00001244
Rob Landleyfae1dc82005-11-20 07:44:35 +00001245 /* Lie to autoconf when it starts asking stupid questions. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001246 if (argc == 2 && !strcmp(argv[1], "--version")) {
1247 puts("This is not GNU sed version 4.0");
1248 return 0;
Eric Andersenc06f5682004-02-04 10:57:46 +00001249 }
Eric Andersenc06f5682004-02-04 10:57:46 +00001250
Mark Whitley6315ce62000-07-10 22:55:51 +00001251 /* do normal option parsing */
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001252 opt_e = opt_f = NULL;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001253 opt_complementary = "e::f::" /* can occur multiple times */
1254 "nn"; /* count -n */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +00001255 opt = getopt32(argv, "irne:f:", &opt_e, &opt_f,
Denis Vlasenko17a15262007-03-26 20:48:46 +00001256 &G.be_quiet); /* counter for -n */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001257 argc -= optind;
1258 argv += optind;
1259 if (opt & OPT_in_place) { // -i
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001260 atexit(cleanup_outname);
1261 }
Denis Vlasenko17a15262007-03-26 20:48:46 +00001262 if (opt & 0x2) G.regex_type |= REG_EXTENDED; // -r
1263 //if (opt & 0x4) G.be_quiet++; // -n
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001264 while (opt_e) { // -e
1265 add_cmd_block(opt_e->data);
1266 opt_e = opt_e->link;
1267 /* we leak opt_e here... */
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001268 }
Denis Vlasenko945bd3d2007-04-12 21:20:25 +00001269 while (opt_f) { // -f
1270 char *line;
1271 FILE *cmdfile;
1272 cmdfile = xfopen(opt_f->data, "r");
1273 while ((line = xmalloc_getline(cmdfile)) != NULL) {
1274 add_cmd(line);
1275 free(line);
1276 }
1277 fclose(cmdfile);
1278 opt_f = opt_f->link;
1279 /* we leak opt_f here... */
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001280 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001281 /* if we didn't get a pattern from -e or -f, use argv[0] */
Denis Vlasenko80778502006-10-25 12:46:46 +00001282 if (!(opt & 0x18)) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001283 if (!argc)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001284 bb_show_usage();
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001285 add_cmd_block(*argv++);
1286 argc--;
Mark Whitley6315ce62000-07-10 22:55:51 +00001287 }
Glenn L McGrath42c25732003-10-04 05:27:56 +00001288 /* Flush any unfinished commands. */
1289 add_cmd("");
Mark Whitley6315ce62000-07-10 22:55:51 +00001290
Rob Landley53302f82004-02-18 09:54:15 +00001291 /* By default, we write to stdout */
Denis Vlasenko17a15262007-03-26 20:48:46 +00001292 G.nonstdout = stdout;
Rob Landley53302f82004-02-18 09:54:15 +00001293
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001294 /* argv[0..(argc-1)] should be names of file to process. If no
Mark Whitley6315ce62000-07-10 22:55:51 +00001295 * files were specified or '-' was specified, take input from stdin.
1296 * Otherwise, we process all the files specified. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001297 if (argv[0] == NULL) {
1298 if (opt & OPT_in_place)
Denis Vlasenko80778502006-10-25 12:46:46 +00001299 bb_error_msg_and_die(bb_msg_requires_arg, "-i");
Rob Landleydcc28662004-11-25 07:21:47 +00001300 add_input_file(stdin);
1301 process_files();
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001302 } else {
Mark Whitley6315ce62000-07-10 22:55:51 +00001303 int i;
1304 FILE *file;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001305
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001306 for (i = 0; i < argc; i++) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001307 struct stat statbuf;
1308 int nonstdoutfd;
1309
Denis Vlasenko9f739442006-12-16 23:49:13 +00001310 if (LONE_DASH(argv[i]) && !(opt & OPT_in_place)) {
Rob Landleydcc28662004-11-25 07:21:47 +00001311 add_input_file(stdin);
1312 process_files();
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001313 continue;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +00001314 }
Denis Vlasenkoddec5af2006-10-26 23:25:17 +00001315 file = fopen_or_warn(argv[i], "r");
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001316 if (!file) {
1317 status = EXIT_FAILURE;
1318 continue;
1319 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001320 if (!(opt & OPT_in_place)) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001321 add_input_file(file);
1322 continue;
1323 }
1324
Denis Vlasenko17a15262007-03-26 20:48:46 +00001325 G.outname = xasprintf("%sXXXXXX", argv[i]);
1326 nonstdoutfd = mkstemp(G.outname);
Denis Vlasenko80778502006-10-25 12:46:46 +00001327 if (-1 == nonstdoutfd)
Denis Vlasenko17a15262007-03-26 20:48:46 +00001328 bb_perror_msg_and_die("cannot create temp file %s", G.outname);
1329 G.nonstdout = fdopen(nonstdoutfd, "w");
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001330
1331 /* Set permissions of output file */
1332
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001333 fstat(fileno(file), &statbuf);
1334 fchmod(nonstdoutfd, statbuf.st_mode);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001335 add_input_file(file);
1336 process_files();
Denis Vlasenko17a15262007-03-26 20:48:46 +00001337 fclose(G.nonstdout);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001338
Denis Vlasenko17a15262007-03-26 20:48:46 +00001339 G.nonstdout = stdout;
Denis Vlasenko80778502006-10-25 12:46:46 +00001340 /* unlink(argv[i]); */
1341 // FIXME: error check / message?
Denis Vlasenko17a15262007-03-26 20:48:46 +00001342 rename(G.outname, argv[i]);
1343 free(G.outname);
Denis Vlasenko40276642007-11-13 16:48:10 +00001344 G.outname = NULL;
Mark Whitley6315ce62000-07-10 22:55:51 +00001345 }
Denis Vlasenko17a15262007-03-26 20:48:46 +00001346 if (G.input_file_count > G.current_input_file)
Denis Vlasenko80778502006-10-25 12:46:46 +00001347 process_files();
Mark Whitley6315ce62000-07-10 22:55:51 +00001348 }
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001349
Matt Kraaia5f09c62001-11-12 16:44:55 +00001350 return status;
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001351}