blob: 720d29aed1d0c69ab25ff4f1424c8c5b0467d3b3 [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
Glenn L McGrathc6992fe2004-04-25 05:11:19 +00008 * Copyright (C) 2003 by Glenn McGrath <bug1@iinet.net.au>
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
Rob Landleye3f5a3f2006-05-09 03:53:55 +000024 (bbg.sed_cmd_head/bbg.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
Eric Andersen3570a342000-09-25 21:45:58 +000061#include "busybox.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 */
Mark Whitley2dc192f2000-11-03 19:47:00 +000067
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000068 /* address storage */
69 regex_t *beg_match; /* sed -e '/match/cmd' */
70 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
71 regex_t *sub_match; /* For 's/sub_match/string/' */
72 int beg_line; /* 'sed 1p' 0 == apply commands to all lines */
73 int end_line; /* 'sed 1,3p' 0 == one line only. -1 = last line ($) */
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +000074
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000075 FILE *file; /* File (sw) command writes to, -1 for none. */
76 char *string; /* Data string for (saicytb) commands. */
Glenn L McGrathfc4cb4d2003-04-12 16:10:42 +000077
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000078 unsigned short which_match; /* (s) Which match to replace (0 for all) */
Glenn L McGrathfc4cb4d2003-04-12 16:10:42 +000079
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000080 /* Bitfields (gcc won't group them if we don't) */
81 unsigned int invert:1; /* the '!' after the address */
82 unsigned int in_match:1; /* Next line also included in match? */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000083 unsigned int sub_p:1; /* (s) print option */
Denis Vlasenko1375bc72006-12-02 20:12:12 +000084
Denis Vlasenko8b22b072006-12-02 17:58:10 +000085 int last_char; /* Last line written by (sw) had no '\n' */
Glenn L McGrathc18ce372003-09-13 06:57:39 +000086
Denis Vlasenkod18a3a22006-10-25 12:46:03 +000087 /* GENERAL FIELDS */
88 char cmd; /* The command char: abcdDgGhHilnNpPqrstwxy:={} */
89 struct sed_cmd_s *next; /* Next command (linked list, NULL terminated) */
Glenn L McGrathe7a8bc92003-03-09 10:23:57 +000090} sed_cmd_t;
Mark Whitley6315ce62000-07-10 22:55:51 +000091
Eric Andersen14f5c8d2005-04-16 19:39:00 +000092static const char *const semicolon_whitespace = "; \n\r\t\v";
Glenn L McGrathaa5a6022003-10-01 03:06:16 +000093
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +000094struct sed_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;
120} bbg;
121
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000122
Bernhard Reutner-Fischerb7f39732006-03-01 20:14:16 +0000123#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000124static void sed_free_and_close_stuff(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000125{
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000126 sed_cmd_t *sed_cmd = bbg.sed_cmd_head.next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000127
Rob Landley5fc467e2006-05-24 17:45:47 +0000128 llist_free(bbg.append_head, free);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000129
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000130 while (sed_cmd) {
Glenn L McGrathbd9b32b2003-04-09 01:43:54 +0000131 sed_cmd_t *sed_cmd_next = sed_cmd->next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000132
Denis Vlasenko80778502006-10-25 12:46:46 +0000133 if (sed_cmd->file)
Rob Landleyd921b2e2006-08-03 15:41:12 +0000134 xprint_and_close_file(sed_cmd->file);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000135
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000136 if (sed_cmd->beg_match) {
137 regfree(sed_cmd->beg_match);
138 free(sed_cmd->beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000139 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000140 if (sed_cmd->end_match) {
141 regfree(sed_cmd->end_match);
142 free(sed_cmd->end_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000143 }
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000144 if (sed_cmd->sub_match) {
145 regfree(sed_cmd->sub_match);
146 free(sed_cmd->sub_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000147 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000148 free(sed_cmd->string);
Glenn L McGrath56c633c2003-03-28 04:23:23 +0000149 free(sed_cmd);
150 sed_cmd = sed_cmd_next;
Mark Whitley6315ce62000-07-10 22:55:51 +0000151 }
Rob Landleyce4f0e92004-10-30 06:54:19 +0000152
Denis Vlasenko80778502006-10-25 12:46:46 +0000153 if (bbg.hold_space) free(bbg.hold_space);
Rob Landleydcc28662004-11-25 07:21:47 +0000154
Denis Vlasenko80778502006-10-25 12:46:46 +0000155 while (bbg.current_input_file < bbg.input_file_count)
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000156 fclose(bbg.input_file_list[bbg.current_input_file++]);
Mark Whitley6315ce62000-07-10 22:55:51 +0000157}
Denis Vlasenko666da5e2006-12-26 18:17:42 +0000158#else
159void sed_free_and_close_stuff(void);
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000160#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000161
Rob Landley53302f82004-02-18 09:54:15 +0000162/* If something bad happens during -i operation, delete temp file */
163
164static void cleanup_outname(void)
165{
Denis Vlasenko80778502006-10-25 12:46:46 +0000166 if (bbg.outname) unlink(bbg.outname);
Rob Landley53302f82004-02-18 09:54:15 +0000167}
168
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000169/* strdup, replacing "\n" with '\n', and "\delimiter" with 'delimiter' */
170
Rob Landley4795e4e2006-07-26 17:25:08 +0000171static void parse_escapes(char *dest, char *string, int len, char from, char to)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000172{
Denis Vlasenko80778502006-10-25 12:46:46 +0000173 int i = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000174
Denis Vlasenko80778502006-10-25 12:46:46 +0000175 while (i < len) {
176 if (string[i] == '\\') {
177 if (!to || string[i+1] == from) {
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000178 *dest++ = to ? to : string[i+1];
Denis Vlasenko80778502006-10-25 12:46:46 +0000179 i += 2;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000180 continue;
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000181 }
182 *dest++ = string[i++];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000183 }
Denis Vlasenko4ebaf102007-01-19 21:33:19 +0000184 *dest++ = string[i++];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000185 }
Denis Vlasenko80778502006-10-25 12:46:46 +0000186 *dest = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000187}
188
Rob Landley4795e4e2006-07-26 17:25:08 +0000189static char *copy_parsing_escapes(char *string, int len)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000190{
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000191 char *dest = xmalloc(len + 1);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000192
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000193 parse_escapes(dest, string, len, 'n', '\n');
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000194 return dest;
195}
196
197
Mark Whitley6315ce62000-07-10 22:55:51 +0000198/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000199 * index_of_next_unescaped_regexp_delim - walks left to right through a string
200 * beginning at a specified index and returns the index of the next regular
Eric Andersenaff114c2004-04-14 17:51:38 +0000201 * expression delimiter (typically a forward * slash ('/')) not preceded by
Rob Landley4795e4e2006-07-26 17:25:08 +0000202 * a backslash ('\'). A negative delimiter disables square bracket checking.
Mark Whitley6315ce62000-07-10 22:55:51 +0000203 */
Rob Landley4795e4e2006-07-26 17:25:08 +0000204static int index_of_next_unescaped_regexp_delim(int delimiter, char *str)
Mark Whitley6315ce62000-07-10 22:55:51 +0000205{
Matt Kraaia0065d52001-08-24 14:45:50 +0000206 int bracket = -1;
207 int escaped = 0;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000208 int idx = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000209 char ch;
Matt Kraaia0065d52001-08-24 14:45:50 +0000210
Rob Landley4795e4e2006-07-26 17:25:08 +0000211 if (delimiter < 0) {
212 bracket--;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000213 delimiter = -delimiter;
Rob Landley4795e4e2006-07-26 17:25:08 +0000214 }
215
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000216 for (; (ch = str[idx]); idx++) {
Rob Landley4795e4e2006-07-26 17:25:08 +0000217 if (bracket >= 0) {
Glenn L McGrathd4185b02003-04-11 17:10:23 +0000218 if (ch == ']' && !(bracket == idx - 1 || (bracket == idx - 2
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000219 && str[idx - 1] == '^')))
Matt Kraaia0065d52001-08-24 14:45:50 +0000220 bracket = -1;
221 } else if (escaped)
222 escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000223 else if (ch == '\\')
Matt Kraaia0065d52001-08-24 14:45:50 +0000224 escaped = 1;
Rob Landley4795e4e2006-07-26 17:25:08 +0000225 else if (bracket == -1 && ch == '[')
Matt Kraaia0065d52001-08-24 14:45:50 +0000226 bracket = idx;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000227 else if (ch == delimiter)
Mark Whitley97562bd2000-07-17 20:06:42 +0000228 return idx;
229 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000230
Mark Whitley97562bd2000-07-17 20:06:42 +0000231 /* if we make it to here, we've hit the end of the string */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000232 bb_error_msg_and_die("unmatched '%c'", delimiter);
Mark Whitley6315ce62000-07-10 22:55:51 +0000233}
234
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000235/*
236 * Returns the index of the third delimiter
237 */
Rob Landley4795e4e2006-07-26 17:25:08 +0000238static int parse_regex_delim(char *cmdstr, char **match, char **replace)
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000239{
Rob Landley4795e4e2006-07-26 17:25:08 +0000240 char *cmdstr_ptr = cmdstr;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000241 char delimiter;
242 int idx = 0;
243
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000244 /* verify that the 's' or 'y' is followed by something. That something
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000245 * (typically a 'slash') is now our regexp delimiter... */
Rob Landley4795e4e2006-07-26 17:25:08 +0000246 if (*cmdstr == '\0')
247 bb_error_msg_and_die("bad format in substitution expression");
Denis Vlasenko80778502006-10-25 12:46:46 +0000248 delimiter = *cmdstr_ptr++;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000249
250 /* save the match string */
251 idx = index_of_next_unescaped_regexp_delim(delimiter, cmdstr_ptr);
Rob Landleyfae1dc82005-11-20 07:44:35 +0000252 *match = copy_parsing_escapes(cmdstr_ptr, idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000253
254 /* save the replacement string */
255 cmdstr_ptr += idx + 1;
Rob Landley4795e4e2006-07-26 17:25:08 +0000256 idx = index_of_next_unescaped_regexp_delim(-delimiter, cmdstr_ptr);
Rob Landleyfae1dc82005-11-20 07:44:35 +0000257 *replace = copy_parsing_escapes(cmdstr_ptr, idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000258
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000259 return ((cmdstr_ptr - cmdstr) + idx);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000260}
261
Mark Whitley6315ce62000-07-10 22:55:51 +0000262/*
263 * returns the index in the string just past where the address ends.
264 */
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000265static int get_address(char *my_str, int *linenum, regex_t ** regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000266{
Glenn L McGrathe3e28d32003-09-15 09:22:04 +0000267 char *pos = my_str;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000268
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000269 if (isdigit(*my_str)) {
270 *linenum = strtol(my_str, &pos, 10);
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000271 /* endstr shouldnt ever equal NULL */
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000272 } else if (*my_str == '$') {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000273 *linenum = -1;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000274 pos++;
275 } else if (*my_str == '/' || *my_str == '\\') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000276 int next;
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000277 char delimiter;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000278 char *temp;
Glenn L McGrath1fb44672003-03-09 08:44:49 +0000279
Denis Vlasenko80778502006-10-25 12:46:46 +0000280 delimiter = '/';
281 if (*my_str == '\\') delimiter = *++pos;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000282 next = index_of_next_unescaped_regexp_delim(delimiter, ++pos);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000283 temp = copy_parsing_escapes(pos, next);
Denis Vlasenko80778502006-10-25 12:46:46 +0000284 *regex = xmalloc(sizeof(regex_t));
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000285 xregcomp(*regex, temp, bbg.regex_type|REG_NEWLINE);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000286 free(temp);
287 /* Move position to next character after last delimiter */
Rob Landley4795e4e2006-07-26 17:25:08 +0000288 pos += (next+1);
Mark Whitley6315ce62000-07-10 22:55:51 +0000289 }
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000290 return pos - my_str;
Mark Whitley6315ce62000-07-10 22:55:51 +0000291}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000292
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000293/* Grab a filename. Whitespace at start is skipped, then goes to EOL. */
Rob Landley4795e4e2006-07-26 17:25:08 +0000294static int parse_file_cmd(sed_cmd_t *sed_cmd, char *filecmdstr, char **retval)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000295{
Denis Vlasenko80778502006-10-25 12:46:46 +0000296 int start = 0, idx, hack = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000297
298 /* Skip whitespace, then grab filename to end of line */
299 while (isspace(filecmdstr[start])) start++;
Denis Vlasenko80778502006-10-25 12:46:46 +0000300 idx = start;
301 while (filecmdstr[idx] && filecmdstr[idx] != '\n') idx++;
302
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000303 /* If lines glued together, put backslash back. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000304 if (filecmdstr[idx] == '\n') hack = 1;
305 if (idx == start)
306 bb_error_msg_and_die("empty filename");
Rob Landleyd921b2e2006-08-03 15:41:12 +0000307 *retval = xstrndup(filecmdstr+start, idx-start+hack+1);
Denis Vlasenko80778502006-10-25 12:46:46 +0000308 if (hack) (*retval)[idx] = '\\';
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000309
310 return idx;
311}
312
Rob Landley4795e4e2006-07-26 17:25:08 +0000313static int parse_subst_cmd(sed_cmd_t *sed_cmd, char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000314{
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000315 int cflags = bbg.regex_type;
Mark Whitley06f35292000-07-13 19:58:04 +0000316 char *match;
317 int idx = 0;
318
319 /*
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000320 * A substitution command should look something like this:
321 * s/match/replace/ #gIpw
Mark Whitley0e4cec02000-08-21 21:29:20 +0000322 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000323 * mandatory optional
Mark Whitley06f35292000-07-13 19:58:04 +0000324 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000325 idx = parse_regex_delim(substr, &match, &sed_cmd->string);
Mark Whitley06f35292000-07-13 19:58:04 +0000326
Mark Whitley97562bd2000-07-17 20:06:42 +0000327 /* determine the number of back references in the match string */
328 /* Note: we compute this here rather than in the do_subst_command()
329 * function to save processor time, at the expense of a little more memory
330 * (4 bits) per sed_cmd */
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000331
Mark Whitley06f35292000-07-13 19:58:04 +0000332 /* process the flags */
Mark Whitley70705d72000-07-14 19:06:30 +0000333
Denis Vlasenko80778502006-10-25 12:46:46 +0000334 sed_cmd->which_match = 1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000335 while (substr[++idx]) {
336 /* Parse match number */
Denis Vlasenko80778502006-10-25 12:46:46 +0000337 if (isdigit(substr[idx])) {
338 if (match[0] != '^') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000339 /* Match 0 treated as all, multiple matches we take the last one. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000340 char *pos = substr + idx;
341 /* FIXME: error check? */
342 sed_cmd->which_match = (unsigned short)strtol(substr+idx, &pos, 10);
343 idx = pos - substr;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000344 }
345 continue;
346 }
Rob Landley40ec4ae2004-01-04 06:42:14 +0000347 /* Skip spaces */
Denis Vlasenko80778502006-10-25 12:46:46 +0000348 if (isspace(substr[idx])) continue;
Rob Landley40ec4ae2004-01-04 06:42:14 +0000349
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000350 switch (substr[idx]) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000351 /* Replace all occurrences */
352 case 'g':
353 if (match[0] != '^') sed_cmd->which_match = 0;
354 break;
355 /* Print pattern space */
356 case 'p':
357 sed_cmd->sub_p = 1;
358 break;
359 /* Write to file */
360 case 'w':
361 {
362 char *temp;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000363 idx += parse_file_cmd(sed_cmd, substr+idx, &temp);
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000364
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000365 break;
366 }
367 /* Ignore case (gnu exension) */
368 case 'I':
369 cflags |= REG_ICASE;
370 break;
371 /* Comment */
372 case '#':
Denis Vlasenko80778502006-10-25 12:46:46 +0000373 while (substr[++idx]) /*skip all*/;
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000374 /* Fall through */
375 /* End of command */
376 case ';':
377 case '}':
378 goto out;
379 default:
380 bb_error_msg_and_die("bad option in substitution expression");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000381 }
382 }
Glenn L McGrath2570b432003-09-16 05:25:43 +0000383out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000384 /* compile the match string into a regex */
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000385 if (*match != '\0') {
386 /* If match is empty, we use last regex used at runtime */
Denis Vlasenkob95636c2006-12-19 23:36:04 +0000387 sed_cmd->sub_match = xmalloc(sizeof(regex_t));
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000388 xregcomp(sed_cmd->sub_match, match, cflags);
389 }
Mark Whitley06f35292000-07-13 19:58:04 +0000390 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000391
392 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000393}
394
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000395/*
396 * Process the commands arguments
397 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000398static char *parse_cmd_args(sed_cmd_t *sed_cmd, char *cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000399{
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000400 /* handle (s)ubstitution command */
Denis Vlasenko80778502006-10-25 12:46:46 +0000401 if (sed_cmd->cmd == 's')
402 cmdstr += parse_subst_cmd(sed_cmd, cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000403 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
404 else if (strchr("aic", sed_cmd->cmd)) {
405 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c')
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000406 bb_error_msg_and_die
407 ("only a beginning address can be specified for edit commands");
Denis Vlasenko80778502006-10-25 12:46:46 +0000408 for (;;) {
409 if (*cmdstr == '\n' || *cmdstr == '\\') {
Rob Landley25d82392004-04-01 09:23:30 +0000410 cmdstr++;
411 break;
Denis Vlasenko80778502006-10-25 12:46:46 +0000412 } else if (isspace(*cmdstr))
413 cmdstr++;
414 else
415 break;
Rob Landley25d82392004-04-01 09:23:30 +0000416 }
Rob Landleyd921b2e2006-08-03 15:41:12 +0000417 sed_cmd->string = xstrdup(cmdstr);
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000418 parse_escapes(sed_cmd->string, sed_cmd->string, strlen(cmdstr), 0, 0);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000419 cmdstr += strlen(cmdstr);
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000420 /* handle file cmds: (r)ead */
Denis Vlasenko80778502006-10-25 12:46:46 +0000421 } else if (strchr("rw", sed_cmd->cmd)) {
Glenn L McGrath2f8a4012003-03-09 02:44:49 +0000422 if (sed_cmd->end_line || sed_cmd->end_match)
Denis Vlasenko80778502006-10-25 12:46:46 +0000423 bb_error_msg_and_die("command only uses one address");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000424 cmdstr += parse_file_cmd(sed_cmd, cmdstr, &sed_cmd->string);
Denis Vlasenko80778502006-10-25 12:46:46 +0000425 if (sed_cmd->cmd == 'w')
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000426 sed_cmd->file = xfopen(sed_cmd->string, "w");
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000427 /* handle branch commands */
Rob Landley93850a52005-05-18 06:34:37 +0000428 } else if (strchr(":btT", sed_cmd->cmd)) {
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000429 int length;
430
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000431 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000432 length = strcspn(cmdstr, semicolon_whitespace);
433 if (length) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000434 sed_cmd->string = xstrndup(cmdstr, length);
Glenn L McGrathf4523562003-09-14 06:01:14 +0000435 cmdstr += length;
436 }
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000437 }
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000438 /* translation command */
439 else if (sed_cmd->cmd == 'y') {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000440 char *match, *replace;
Denis Vlasenko80778502006-10-25 12:46:46 +0000441 int i = cmdstr[0];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000442
Denis Vlasenko80778502006-10-25 12:46:46 +0000443 cmdstr += parse_regex_delim(cmdstr, &match, &replace)+1;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000444 /* \n already parsed, but \delimiter needs unescaping. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000445 parse_escapes(match, match, strlen(match), i, i);
446 parse_escapes(replace, replace, strlen(replace), i, i);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000447
Rob Landley9ffd4232006-05-21 18:30:35 +0000448 sed_cmd->string = xzalloc((strlen(match) + 1) * 2);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000449 for (i = 0; match[i] && replace[i]; i++) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000450 sed_cmd->string[i*2] = match[i];
451 sed_cmd->string[i*2+1] = replace[i];
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000452 }
453 free(match);
454 free(replace);
Glenn L McGrathf01b46d2003-03-30 08:02:18 +0000455 }
Glenn L McGrath2971ef12003-03-18 01:19:23 +0000456 /* if it wasnt a single-letter command that takes no arguments
457 * then it must be an invalid command.
458 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000459 else if (strchr("dDgGhHlnNpPqx={}", sed_cmd->cmd) == 0) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000460 bb_error_msg_and_die("unsupported command %c", sed_cmd->cmd);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000461 }
Mark Whitley70705d72000-07-14 19:06:30 +0000462
463 /* give back whatever's left over */
Denis Vlasenko80778502006-10-25 12:46:46 +0000464 return cmdstr;
Eric Andersen50d63601999-11-09 01:47:36 +0000465}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000466
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000467
468/* Parse address+command sets, skipping comment lines. */
469
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000470static void add_cmd(char *cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000471{
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000472 sed_cmd_t *sed_cmd;
Glenn L McGrath586d86c2003-10-09 07:22:59 +0000473 int temp;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +0000474
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000475 /* Append this line to any unfinished line from last time. */
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000476 if (bbg.add_cmd_line) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000477 cmdstr = xasprintf("%s\n%s", bbg.add_cmd_line, cmdstr);
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000478 free(bbg.add_cmd_line);
479 bbg.add_cmd_line = cmdstr;
Rob Landley12d87552006-06-05 17:32:44 +0000480 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000481
482 /* If this line ends with backslash, request next line. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000483 temp = strlen(cmdstr);
484 if (temp && cmdstr[temp-1] == '\\') {
485 if (!bbg.add_cmd_line)
486 bbg.add_cmd_line = xstrdup(cmdstr);
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000487 bbg.add_cmd_line[temp-1] = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000488 return;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000489 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000490
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000491 /* Loop parsing all commands in this line. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000492 while (*cmdstr) {
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000493 /* Skip leading whitespace and semicolons */
494 cmdstr += strspn(cmdstr, semicolon_whitespace);
495
496 /* If no more commands, exit. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000497 if (!*cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000498
499 /* if this is a comment, jump past it and keep going */
500 if (*cmdstr == '#') {
501 /* "#n" is the same as using -n on the command line */
Denis Vlasenko80778502006-10-25 12:46:46 +0000502 if (cmdstr[1] == 'n')
503 bbg.be_quiet++;
504 cmdstr = strpbrk(cmdstr, "\n\r");
505 if (!cmdstr) break;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000506 continue;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000507 }
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000508
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000509 /* parse the command
510 * format is: [addr][,addr][!]cmd
511 * |----||-----||-|
512 * part1 part2 part3
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000513 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000514
Rob Landley9ffd4232006-05-21 18:30:35 +0000515 sed_cmd = xzalloc(sizeof(sed_cmd_t));
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000516
517 /* first part (if present) is an address: either a '$', a number or a /regex/ */
518 cmdstr += get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
519
520 /* second part (if present) will begin with a comma */
521 if (*cmdstr == ',') {
522 int idx;
523
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000524 cmdstr++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000525 idx = get_address(cmdstr, &sed_cmd->end_line, &sed_cmd->end_match);
Denis Vlasenko80778502006-10-25 12:46:46 +0000526 if (!idx)
527 bb_error_msg_and_die("no address after comma");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000528 cmdstr += idx;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000529 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000530
531 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000532 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000533
534 /* Check for inversion flag */
535 if (*cmdstr == '!') {
536 sed_cmd->invert = 1;
537 cmdstr++;
538
539 /* skip whitespace before the command */
Denis Vlasenkod18a3a22006-10-25 12:46:03 +0000540 cmdstr = skip_whitespace(cmdstr);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000541 }
542
543 /* last part (mandatory) will be a command */
Denis Vlasenko80778502006-10-25 12:46:46 +0000544 if (!*cmdstr)
545 bb_error_msg_and_die("missing command");
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000546 sed_cmd->cmd = *(cmdstr++);
547 cmdstr = parse_cmd_args(sed_cmd, cmdstr);
548
549 /* Add the command to the command array */
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000550 bbg.sed_cmd_tail->next = sed_cmd;
551 bbg.sed_cmd_tail = bbg.sed_cmd_tail->next;
Glenn L McGrathf50ce312003-03-09 15:12:24 +0000552 }
553
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000554 /* If we glued multiple lines together, free the memory. */
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000555 free(bbg.add_cmd_line);
556 bbg.add_cmd_line = NULL;
Mark Whitley6315ce62000-07-10 22:55:51 +0000557}
558
Rob Landleydcc28662004-11-25 07:21:47 +0000559/* Append to a string, reallocating memory as necessary. */
560
Glenn L McGrath8d6395d2003-04-08 11:56:11 +0000561#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000562
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000563static void pipe_putc(char c)
Eric Andersenc52a6b02001-11-10 10:49:42 +0000564{
Denis Vlasenko80778502006-10-25 12:46:46 +0000565 if (bbg.pipeline.idx == bbg.pipeline.len) {
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000566 bbg.pipeline.buf = xrealloc(bbg.pipeline.buf,
Denis Vlasenko80778502006-10-25 12:46:46 +0000567 bbg.pipeline.len + PIPE_GROW);
568 bbg.pipeline.len += PIPE_GROW;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000569 }
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000570 bbg.pipeline.buf[bbg.pipeline.idx++] = c;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000571}
572
Rob Landley4795e4e2006-07-26 17:25:08 +0000573static void do_subst_w_backrefs(char *line, char *replace)
Mark Whitley97562bd2000-07-17 20:06:42 +0000574{
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000575 int i,j;
Mark Whitley97562bd2000-07-17 20:06:42 +0000576
577 /* go through the replacement string */
578 for (i = 0; replace[i]; i++) {
579 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000580 if (replace[i] == '\\') {
581 unsigned backref = replace[++i] - '0';
582 if (backref <= 9) {
583 /* print out the text held in bbg.regmatch[backref] */
584 if (bbg.regmatch[backref].rm_so != -1) {
585 j = bbg.regmatch[backref].rm_so;
586 while (j < bbg.regmatch[backref].rm_eo)
587 pipe_putc(line[j++]);
588 }
589 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000590 }
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000591 /* I _think_ it is impossible to get '\' to be
592 * the last char in replace string. Thus we dont check
593 * for replace[i] == NUL. (counterexample anyone?) */
594 /* if we find a backslash escaped character, print the character */
595 pipe_putc(replace[i]);
596 continue;
Mark Whitley97562bd2000-07-17 20:06:42 +0000597 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000598 /* if we find an unescaped '&' print out the whole matched text. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000599 if (replace[i] == '&') {
Denis Vlasenko80778502006-10-25 12:46:46 +0000600 j = bbg.regmatch[0].rm_so;
601 while (j < bbg.regmatch[0].rm_eo)
602 pipe_putc(line[j++]);
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000603 continue;
Denis Vlasenko80778502006-10-25 12:46:46 +0000604 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000605 /* Otherwise just output the character. */
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000606 pipe_putc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000607 }
608}
609
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000610static int do_subst_command(sed_cmd_t *sed_cmd, char **line)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000611{
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000612 char *oldline = *line;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000613 int altered = 0;
Denis Vlasenko80778502006-10-25 12:46:46 +0000614 int match_count = 0;
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000615 regex_t *current_regex;
616
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000617 /* Handle empty regex. */
Glenn L McGrathc1d95072003-04-08 06:42:45 +0000618 if (sed_cmd->sub_match == NULL) {
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000619 current_regex = bbg.previous_regex_ptr;
Denis Vlasenko80778502006-10-25 12:46:46 +0000620 if (!current_regex)
Denis Vlasenkod3d004d2006-10-27 09:02:31 +0000621 bb_error_msg_and_die("no previous regexp");
Denis Vlasenko80778502006-10-25 12:46:46 +0000622 } else
623 bbg.previous_regex_ptr = current_regex = sed_cmd->sub_match;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000624
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000625 /* Find the first match */
Denis Vlasenko80778502006-10-25 12:46:46 +0000626 if (REG_NOMATCH == regexec(current_regex, oldline, 10, bbg.regmatch, 0))
Mark Whitley2dc192f2000-11-03 19:47:00 +0000627 return 0;
628
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000629 /* Initialize temporary output buffer. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000630 bbg.pipeline.buf = xmalloc(PIPE_GROW);
631 bbg.pipeline.len = PIPE_GROW;
632 bbg.pipeline.idx = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000633
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000634 /* Now loop through, substituting for matches */
635 do {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000636 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000637
Eric Andersenc06f5682004-02-04 10:57:46 +0000638 /* Work around bug in glibc regexec, demonstrated by:
639 echo " a.b" | busybox sed 's [^ .]* x g'
640 The match_count check is so not to break
641 echo "hi" | busybox sed 's/^/!/g' */
Denis Vlasenko80778502006-10-25 12:46:46 +0000642 if (!bbg.regmatch[0].rm_so && !bbg.regmatch[0].rm_eo && match_count) {
643 pipe_putc(*oldline++);
Eric Andersenc06f5682004-02-04 10:57:46 +0000644 continue;
645 }
646
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000647 match_count++;
648
649 /* If we aren't interested in this match, output old line to
650 end of match and continue */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000651 if (sed_cmd->which_match && sed_cmd->which_match != match_count) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000652 for (i = 0; i < bbg.regmatch[0].rm_eo; i++)
653 pipe_putc(*oldline++);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000654 continue;
655 }
656
Mark Whitley2dc192f2000-11-03 19:47:00 +0000657 /* print everything before the match */
Denis Vlasenko80778502006-10-25 12:46:46 +0000658 for (i = 0; i < bbg.regmatch[0].rm_so; i++)
659 pipe_putc(oldline[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000660
Mark Whitley2dc192f2000-11-03 19:47:00 +0000661 /* then print the substitution string */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000662 do_subst_w_backrefs(oldline, sed_cmd->string);
Mark Whitley97562bd2000-07-17 20:06:42 +0000663
Mark Whitley2dc192f2000-11-03 19:47:00 +0000664 /* advance past the match */
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000665 oldline += bbg.regmatch[0].rm_eo;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000666 /* flag that something has changed */
667 altered++;
Mark Whitley97562bd2000-07-17 20:06:42 +0000668
Mark Whitley2dc192f2000-11-03 19:47:00 +0000669 /* if we're not doing this globally, get out now */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000670 if (sed_cmd->which_match) break;
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000671 } while (*oldline && (regexec(current_regex, oldline, 10, bbg.regmatch, 0) != REG_NOMATCH));
Mark Whitley2dc192f2000-11-03 19:47:00 +0000672
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000673 /* Copy rest of string into output pipeline */
674
Denis Vlasenko80778502006-10-25 12:46:46 +0000675 while (*oldline)
676 pipe_putc(*oldline++);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000677 pipe_putc(0);
Mark Whitley2dc192f2000-11-03 19:47:00 +0000678
Eric Andersenb76cb682001-08-22 05:58:16 +0000679 free(*line);
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000680 *line = bbg.pipeline.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000681 return altered;
682}
Mark Whitley6315ce62000-07-10 22:55:51 +0000683
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000684/* Set command pointer to point to this label. (Does not handle null label.) */
Rob Landley4795e4e2006-07-26 17:25:08 +0000685static sed_cmd_t *branch_to(char *label)
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000686{
687 sed_cmd_t *sed_cmd;
Glenn L McGrathd4185b02003-04-11 17:10:23 +0000688
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000689 for (sed_cmd = bbg.sed_cmd_head.next; sed_cmd; sed_cmd = sed_cmd->next) {
Denis Vlasenko80778502006-10-25 12:46:46 +0000690 if (sed_cmd->cmd == ':' && sed_cmd->string && !strcmp(sed_cmd->string, label)) {
691 return sed_cmd;
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000692 }
693 }
Denis Vlasenko80778502006-10-25 12:46:46 +0000694 bb_error_msg_and_die("can't find label for jump to '%s'", label);
Glenn L McGrath961c6c12003-03-28 04:43:39 +0000695}
Mark Whitley6315ce62000-07-10 22:55:51 +0000696
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000697static void append(char *s)
698{
Rob Landleyd921b2e2006-08-03 15:41:12 +0000699 llist_add_to_end(&bbg.append_head, xstrdup(s));
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000700}
701
702static void flush_append(void)
703{
Rob Landley0b656282006-05-08 22:17:23 +0000704 char *data;
705
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000706 /* Output appended lines. */
Denis Vlasenko80778502006-10-25 12:46:46 +0000707 while ((data = (char *)llist_pop(&bbg.append_head))) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000708 fprintf(bbg.nonstdout, "%s\n", data);
Rob Landley0b656282006-05-08 22:17:23 +0000709 free(data);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000710 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000711}
712
Eric Andersen14f5c8d2005-04-16 19:39:00 +0000713static void add_input_file(FILE *file)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000714{
Denis Vlasenko80778502006-10-25 12:46:46 +0000715 bbg.input_file_list = xrealloc(bbg.input_file_list,
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000716 (bbg.input_file_count + 1) * sizeof(FILE *));
717 bbg.input_file_list[bbg.input_file_count++] = file;
Rob Landleydcc28662004-11-25 07:21:47 +0000718}
719
Rob Landleye3f5a3f2006-05-09 03:53:55 +0000720/* Get next line of input from bbg.input_file_list, flushing append buffer and
Rob Landleydcc28662004-11-25 07:21:47 +0000721 * noting if we ran out of files without a newline on the last line we read.
722 */
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000723static char *get_next_line(int *last_char)
Rob Landleydcc28662004-11-25 07:21:47 +0000724{
Denis Vlasenko80778502006-10-25 12:46:46 +0000725 char *temp = NULL;
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000726 int len, lc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000727
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000728 lc = 0;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000729 flush_append();
Denis Vlasenko80778502006-10-25 12:46:46 +0000730 while (bbg.current_input_file < bbg.input_file_count) {
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000731 /* Read line up to a newline or NUL byte, inclusive,
732 * return malloc'ed char[]. length of the chunk read
733 * is stored in len. NULL if EOF/error */
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000734 temp = bb_get_chunk_from_file(
735 bbg.input_file_list[bbg.current_input_file], &len);
Rob Landley2b26fd52006-02-24 02:30:39 +0000736 if (temp) {
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000737 /* len > 0 here, it's ok to do temp[len-1] */
738 char c = temp[len-1];
739 if (c == '\n' || c == '\0') {
740 temp[len-1] = '\0';
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000741 lc |= (unsigned char)c;
742 break;
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000743 }
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000744 /* will be returned if last line in the file
745 * doesn't end with either '\n' or '\0' */
746 lc |= 0x100;
Rob Landleydcc28662004-11-25 07:21:47 +0000747 break;
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000748 }
749 /* Close this file and advance to next one */
750 fclose(bbg.input_file_list[bbg.current_input_file++]);
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000751 /* "this is the first line from new input file" */
752 lc |= 0x200;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000753 }
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000754 *last_char = lc;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000755 return temp;
756}
757
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000758/* Output line of text. */
759/* Note:
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000760 * The tricks with 0x200 and last_puts_char are there to emulate gnu sed.
761 * Without them, we had this:
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000762 * echo -n thingy >z1
763 * echo -n again >z2
764 * >znull
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000765 * sed "s/i/z/" z1 z2 znull | hexdump -vC
766 * output:
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000767 * gnu sed 4.1.5:
768 * 00000000 74 68 7a 6e 67 79 0a 61 67 61 7a 6e |thzngy.agazn|
769 * bbox:
770 * 00000000 74 68 7a 6e 67 79 61 67 61 7a 6e |thzngyagazn|
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000771 */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000772
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000773static int puts_maybe_newline(char *s, FILE *file, int prev_last_char, int last_char)
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000774{
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000775 static char last_puts_char;
776
777 /* Is this a first line from new file
778 * and old file didn't end with '\n'? */
779 if ((last_char & 0x200) && last_puts_char != '\n') {
780 fputc('\n', file);
781 last_puts_char = '\n';
782 }
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000783 fputs(s, file);
Denis Vlasenkoef44d9d2007-01-17 23:16:16 +0000784 /* why 'x'? - just something which is not '\n' */
785 if (s[0])
786 last_puts_char = 'x';
Denis Vlasenko1375bc72006-12-02 20:12:12 +0000787 if (!(last_char & 0x100)) { /* had trailing '\n' or '\0'? */
788 last_char &= 0xff;
789 fputc(last_char, file);
790 last_puts_char = last_char;
791 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000792
Denis Vlasenko80778502006-10-25 12:46:46 +0000793 if (ferror(file)) {
Denis Vlasenko40920822006-10-03 20:28:06 +0000794 xfunc_error_retval = 4; /* It's what gnu sed exits with... */
Bernhard Reutner-Fischera3d4bf32006-06-03 21:40:11 +0000795 bb_error_msg_and_die(bb_msg_write_error);
Rob Landley53302f82004-02-18 09:54:15 +0000796 }
797
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000798 return last_char;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000799}
800
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000801#define sed_puts(s, n) \
802 (prev_last_char = puts_maybe_newline(s, bbg.nonstdout, prev_last_char, n))
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000803
Rob Landley2b26fd52006-02-24 02:30:39 +0000804/* Process all the lines in all the files */
805
Rob Landleydcc28662004-11-25 07:21:47 +0000806static void process_files(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000807{
Rob Landleyce4f0e92004-10-30 06:54:19 +0000808 char *pattern_space, *next_line;
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000809 int linenum = 0, prev_last_char = 0;
810 int last_char, next_last_char = 0;
Denis Vlasenko2ea630f2006-12-10 02:52:19 +0000811 sed_cmd_t *sed_cmd;
812 int substituted;
Mark Whitley6315ce62000-07-10 22:55:51 +0000813
Rob Landley2b26fd52006-02-24 02:30:39 +0000814 /* Prime the pump */
Denis Vlasenko8b22b072006-12-02 17:58:10 +0000815 next_line = get_next_line(&next_last_char);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000816
Rob Landleydcc28662004-11-25 07:21:47 +0000817 /* go through every line in each file */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000818again:
Denis Vlasenko2ea630f2006-12-10 02:52:19 +0000819 substituted = 0;
Glenn L McGrath505bd0f2003-03-08 05:21:02 +0000820
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000821 /* Advance to next line. Stop if out of lines. */
822 pattern_space = next_line;
823 if (!pattern_space) return;
824 last_char = next_last_char;
825
826 /* Read one line in advance so we can act on the last line,
827 * the '$' address */
828 next_line = get_next_line(&next_last_char);
829 linenum++;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000830restart:
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000831 /* for every line, go through all the commands */
832 for (sed_cmd = bbg.sed_cmd_head.next; sed_cmd; sed_cmd = sed_cmd->next) {
833 int old_matched, matched;
Eric Andersen52a3c272003-12-23 08:53:51 +0000834
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000835 old_matched = sed_cmd->in_match;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000836
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000837 /* Determine if this command matches this line: */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000838
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000839 /* Are we continuing a previous multi-line match? */
840 sed_cmd->in_match = sed_cmd->in_match
841 /* Or is no range necessary? */
842 || (!sed_cmd->beg_line && !sed_cmd->end_line
843 && !sed_cmd->beg_match && !sed_cmd->end_match)
844 /* Or did we match the start of a numerical range? */
845 || (sed_cmd->beg_line > 0 && (sed_cmd->beg_line == linenum))
846 /* Or does this line match our begin address regex? */
847 || (sed_cmd->beg_match &&
848 !regexec(sed_cmd->beg_match, pattern_space, 0, NULL, 0))
849 /* Or did we match last line of input? */
850 || (sed_cmd->beg_line == -1 && next_line == NULL);
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000851
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000852 /* Snapshot the value */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000853
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000854 matched = sed_cmd->in_match;
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000855
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000856 /* Is this line the end of the current match? */
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000857
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000858 if (matched) {
859 sed_cmd->in_match = !(
860 /* has the ending line come, or is this a single address command? */
861 (sed_cmd->end_line ?
862 sed_cmd->end_line == -1 ?
863 !next_line
864 : (sed_cmd->end_line <= linenum)
865 : !sed_cmd->end_match
866 )
867 /* or does this line matches our last address regex */
868 || (sed_cmd->end_match && old_matched
869 && (regexec(sed_cmd->end_match,
870 pattern_space, 0, NULL, 0) == 0))
871 );
Erik Andersene49d5ec2000-02-08 19:58:47 +0000872 }
Erik Andersen1266a131999-12-29 22:19:46 +0000873
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000874 /* Skip blocks of commands we didn't match. */
875 if (sed_cmd->cmd == '{') {
876 if (sed_cmd->invert ? matched : !matched)
877 while (sed_cmd && sed_cmd->cmd != '}')
878 sed_cmd = sed_cmd->next;
879 if (!sed_cmd) bb_error_msg_and_die("unterminated {");
880 continue;
881 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +0000882
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +0000883 /* Okay, so did this line match? */
884 if (sed_cmd->invert ? !matched : matched) {
885 /* Update last used regex in case a blank substitute BRE is found */
886 if (sed_cmd->beg_match) {
887 bbg.previous_regex_ptr = sed_cmd->beg_match;
888 }
889
890 /* actual sedding */
891 switch (sed_cmd->cmd) {
892
893 /* Print line number */
894 case '=':
895 fprintf(bbg.nonstdout, "%d\n", linenum);
896 break;
897
898 /* Write the current pattern space up to the first newline */
899 case 'P':
900 {
901 char *tmp = strchr(pattern_space, '\n');
902
903 if (tmp) {
904 *tmp = '\0';
905 sed_puts(pattern_space, 1);
906 *tmp = '\n';
907 break;
908 }
909 /* Fall Through */
910 }
911
912 /* Write the current pattern space to output */
913 case 'p':
914 sed_puts(pattern_space, last_char);
915 break;
916 /* Delete up through first newline */
917 case 'D':
918 {
919 char *tmp = strchr(pattern_space, '\n');
920
921 if (tmp) {
922 tmp = xstrdup(tmp+1);
923 free(pattern_space);
924 pattern_space = tmp;
925 goto restart;
926 }
927 }
928 /* discard this line. */
929 case 'd':
930 goto discard_line;
931
932 /* Substitute with regex */
933 case 's':
934 if (!do_subst_command(sed_cmd, &pattern_space))
935 break;
936 substituted |= 1;
937
938 /* handle p option */
939 if (sed_cmd->sub_p)
940 sed_puts(pattern_space, last_char);
941 /* handle w option */
942 if (sed_cmd->file)
943 sed_cmd->last_char = puts_maybe_newline(
944 pattern_space, sed_cmd->file,
945 sed_cmd->last_char, last_char);
946 break;
947
948 /* Append line to linked list to be printed later */
949 case 'a':
950 append(sed_cmd->string);
951 break;
952
953 /* Insert text before this line */
954 case 'i':
955 sed_puts(sed_cmd->string, 1);
956 break;
957
958 /* Cut and paste text (replace) */
959 case 'c':
960 /* Only triggers on last line of a matching range. */
961 if (!sed_cmd->in_match)
962 sed_puts(sed_cmd->string, 0);
963 goto discard_line;
964
965 /* Read file, append contents to output */
966 case 'r':
967 {
968 FILE *rfile;
969
970 rfile = fopen(sed_cmd->string, "r");
971 if (rfile) {
972 char *line;
973
974 while ((line = xmalloc_getline(rfile))
975 != NULL)
976 append(line);
977 xprint_and_close_file(rfile);
978 }
979
980 break;
981 }
982
983 /* Write pattern space to file. */
984 case 'w':
985 sed_cmd->last_char = puts_maybe_newline(
986 pattern_space, sed_cmd->file,
987 sed_cmd->last_char, last_char);
988 break;
989
990 /* Read next line from input */
991 case 'n':
992 if (!bbg.be_quiet)
993 sed_puts(pattern_space, last_char);
994 if (next_line) {
995 free(pattern_space);
996 pattern_space = next_line;
997 last_char = next_last_char;
998 next_line = get_next_line(&next_last_char);
999 linenum++;
1000 break;
1001 }
1002 /* fall through */
1003
1004 /* Quit. End of script, end of input. */
1005 case 'q':
1006 /* Exit the outer while loop */
1007 free(next_line);
1008 next_line = NULL;
1009 goto discard_commands;
1010
1011 /* Append the next line to the current line */
1012 case 'N':
1013 {
1014 int len;
1015 /* If no next line, jump to end of script and exit. */
1016 if (next_line == NULL) {
1017 /* Jump to end of script and exit */
1018 free(next_line);
1019 next_line = NULL;
1020 goto discard_line;
1021 /* append next_line, read new next_line. */
1022 }
1023 len = strlen(pattern_space);
1024 pattern_space = realloc(pattern_space, len + strlen(next_line) + 2);
1025 pattern_space[len] = '\n';
1026 strcpy(pattern_space + len+1, next_line);
1027 last_char = next_last_char;
1028 next_line = get_next_line(&next_last_char);
1029 linenum++;
1030 break;
1031 }
1032
1033 /* Test/branch if substitution occurred */
1034 case 't':
1035 if (!substituted) break;
1036 substituted = 0;
1037 /* Fall through */
1038 /* Test/branch if substitution didn't occur */
1039 case 'T':
1040 if (substituted) break;
1041 /* Fall through */
1042 /* Branch to label */
1043 case 'b':
1044 if (!sed_cmd->string) goto discard_commands;
1045 else sed_cmd = branch_to(sed_cmd->string);
1046 break;
1047 /* Transliterate characters */
1048 case 'y':
1049 {
1050 int i, j;
1051
1052 for (i = 0; pattern_space[i]; i++) {
1053 for (j = 0; sed_cmd->string[j]; j += 2) {
1054 if (pattern_space[i] == sed_cmd->string[j]) {
1055 pattern_space[i] = sed_cmd->string[j + 1];
1056 break;
1057 }
1058 }
1059 }
1060
1061 break;
1062 }
1063 case 'g': /* Replace pattern space with hold space */
1064 free(pattern_space);
1065 pattern_space = xstrdup(bbg.hold_space ? bbg.hold_space : "");
1066 break;
1067 case 'G': /* Append newline and hold space to pattern space */
1068 {
1069 int pattern_space_size = 2;
1070 int hold_space_size = 0;
1071
1072 if (pattern_space)
1073 pattern_space_size += strlen(pattern_space);
1074 if (bbg.hold_space)
1075 hold_space_size = strlen(bbg.hold_space);
1076 pattern_space = xrealloc(pattern_space,
1077 pattern_space_size + hold_space_size);
1078 if (pattern_space_size == 2)
1079 pattern_space[0] = 0;
1080 strcat(pattern_space, "\n");
1081 if (bbg.hold_space)
1082 strcat(pattern_space, bbg.hold_space);
1083 last_char = '\n';
1084
1085 break;
1086 }
1087 case 'h': /* Replace hold space with pattern space */
1088 free(bbg.hold_space);
1089 bbg.hold_space = xstrdup(pattern_space);
1090 break;
1091 case 'H': /* Append newline and pattern space to hold space */
1092 {
1093 int hold_space_size = 2;
1094 int pattern_space_size = 0;
1095
1096 if (bbg.hold_space)
1097 hold_space_size += strlen(bbg.hold_space);
1098 if (pattern_space)
1099 pattern_space_size = strlen(pattern_space);
1100 bbg.hold_space = xrealloc(bbg.hold_space,
1101 hold_space_size + pattern_space_size);
1102
1103 if (hold_space_size == 2)
1104 *bbg.hold_space = 0;
1105 strcat(bbg.hold_space, "\n");
1106 if (pattern_space)
1107 strcat(bbg.hold_space, pattern_space);
1108
1109 break;
1110 }
1111 case 'x': /* Exchange hold and pattern space */
1112 {
1113 char *tmp = pattern_space;
1114 pattern_space = bbg.hold_space ? : xzalloc(1);
1115 last_char = '\n';
1116 bbg.hold_space = tmp;
1117 break;
1118 }
1119 }
1120 }
Glenn L McGrathaa5a6022003-10-01 03:06:16 +00001121 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001122
1123 /*
1124 * exit point from sedding...
1125 */
1126discard_commands:
1127 /* we will print the line unless we were told to be quiet ('-n')
1128 or if the line was suppressed (ala 'd'elete) */
1129 if (!bbg.be_quiet) sed_puts(pattern_space, last_char);
1130
1131 /* Delete and such jump here. */
1132discard_line:
1133 flush_append();
1134 free(pattern_space);
1135
1136 goto again;
Erik Andersen1266a131999-12-29 22:19:46 +00001137}
1138
Glenn L McGrath42c25732003-10-04 05:27:56 +00001139/* It is possible to have a command line argument with embedded
1140 newlines. This counts as multiple command lines. */
1141
1142static void add_cmd_block(char *cmdstr)
1143{
Denis Vlasenko80778502006-10-25 12:46:46 +00001144 int go = 1;
1145 char *temp = xstrdup(cmdstr), *temp2 = temp;
Glenn L McGrath42c25732003-10-04 05:27:56 +00001146
Denis Vlasenko80778502006-10-25 12:46:46 +00001147 while (go) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001148 int len = strcspn(temp2, "\n");
Denis Vlasenko80778502006-10-25 12:46:46 +00001149 if (!temp2[len]) go = 0;
1150 else temp2[len] = 0;
Glenn L McGrath42c25732003-10-04 05:27:56 +00001151 add_cmd(temp2);
Denis Vlasenko80778502006-10-25 12:46:46 +00001152 temp2 += len+1;
Glenn L McGrath42c25732003-10-04 05:27:56 +00001153 }
1154 free(temp);
1155}
1156
Denis Vlasenkoe2016e12006-10-01 21:37:40 +00001157static void add_cmds_link(llist_t *opt_e)
1158{
1159 if (!opt_e) return;
1160 add_cmds_link(opt_e->link);
1161 add_cmd_block(opt_e->data);
1162 free(opt_e);
1163}
1164
1165static void add_files_link(llist_t *opt_f)
1166{
1167 char *line;
1168 FILE *cmdfile;
1169 if (!opt_f) return;
1170 add_files_link(opt_f->link);
1171 cmdfile = xfopen(opt_f->data, "r");
Denis Vlasenko2d5ca602006-10-12 22:43:20 +00001172 while ((line = xmalloc_getline(cmdfile)) != NULL) {
Denis Vlasenkoe2016e12006-10-01 21:37:40 +00001173 add_cmd(line);
1174 free(line);
1175 }
1176 xprint_and_close_file(cmdfile);
1177 free(opt_f);
1178}
1179
Rob Landleydfba7412006-03-06 20:47:33 +00001180int sed_main(int argc, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001181{
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001182 enum {
1183 OPT_in_place = 1 << 0,
1184 };
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001185 unsigned opt;
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001186 llist_t *opt_e, *opt_f;
1187 int status = EXIT_SUCCESS;
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001188
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001189 bbg.sed_cmd_tail = &bbg.sed_cmd_head;
Rob Landleye3f5a3f2006-05-09 03:53:55 +00001190
Mark Whitley858c1ad2000-07-11 21:38:47 +00001191 /* destroy command strings on exit */
Rob Landley0b656282006-05-08 22:17:23 +00001192 if (ENABLE_FEATURE_CLEAN_UP) atexit(sed_free_and_close_stuff);
Mark Whitley858c1ad2000-07-11 21:38:47 +00001193
Rob Landleyfae1dc82005-11-20 07:44:35 +00001194 /* Lie to autoconf when it starts asking stupid questions. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001195 if (argc == 2 && !strcmp(argv[1], "--version")) {
1196 puts("This is not GNU sed version 4.0");
1197 return 0;
Eric Andersenc06f5682004-02-04 10:57:46 +00001198 }
Eric Andersenc06f5682004-02-04 10:57:46 +00001199
Mark Whitley6315ce62000-07-10 22:55:51 +00001200 /* do normal option parsing */
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001201 opt_e = opt_f = NULL;
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001202 opt_complementary = "e::f::" /* can occur multiple times */
1203 "nn"; /* count -n */
1204 opt = getopt32(argc, argv, "irne:f:", &opt_e, &opt_f,
1205 &bbg.be_quiet); /* counter for -n */
1206 argc -= optind;
1207 argv += optind;
1208 if (opt & OPT_in_place) { // -i
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001209 atexit(cleanup_outname);
1210 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001211 if (opt & 0x2) bbg.regex_type |= REG_EXTENDED; // -r
1212 //if (opt & 0x4) bbg.be_quiet++; // -n
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001213 if (opt & 0x8) { // -e
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001214 /* getopt32 reverses order of arguments, handle it */
Denis Vlasenkoe2016e12006-10-01 21:37:40 +00001215 add_cmds_link(opt_e);
Denis Vlasenko750fc6d2006-09-22 08:56:03 +00001216 }
1217 if (opt & 0x10) { // -f
Denis Vlasenko67b23e62006-10-03 21:00:06 +00001218 /* getopt32 reverses order of arguments, handle it */
Denis Vlasenkoe2016e12006-10-01 21:37:40 +00001219 add_files_link(opt_f);
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001220 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001221 /* if we didn't get a pattern from -e or -f, use argv[0] */
Denis Vlasenko80778502006-10-25 12:46:46 +00001222 if (!(opt & 0x18)) {
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001223 if (!argc)
Manuel Novoa III cad53642003-03-19 09:13:01 +00001224 bb_show_usage();
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001225 add_cmd_block(*argv++);
1226 argc--;
Mark Whitley6315ce62000-07-10 22:55:51 +00001227 }
Glenn L McGrath42c25732003-10-04 05:27:56 +00001228 /* Flush any unfinished commands. */
1229 add_cmd("");
Mark Whitley6315ce62000-07-10 22:55:51 +00001230
Rob Landley53302f82004-02-18 09:54:15 +00001231 /* By default, we write to stdout */
Denis Vlasenkob97c9842006-10-01 21:05:12 +00001232 bbg.nonstdout = stdout;
Rob Landley53302f82004-02-18 09:54:15 +00001233
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001234 /* argv[0..(argc-1)] should be names of file to process. If no
Mark Whitley6315ce62000-07-10 22:55:51 +00001235 * files were specified or '-' was specified, take input from stdin.
1236 * Otherwise, we process all the files specified. */
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001237 if (argv[0] == NULL) {
1238 if (opt & OPT_in_place)
Denis Vlasenko80778502006-10-25 12:46:46 +00001239 bb_error_msg_and_die(bb_msg_requires_arg, "-i");
Rob Landleydcc28662004-11-25 07:21:47 +00001240 add_input_file(stdin);
1241 process_files();
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001242 } else {
Mark Whitley6315ce62000-07-10 22:55:51 +00001243 int i;
1244 FILE *file;
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001245
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001246 for (i = 0; i < argc; i++) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001247 struct stat statbuf;
1248 int nonstdoutfd;
1249
Denis Vlasenko9f739442006-12-16 23:49:13 +00001250 if (LONE_DASH(argv[i]) && !(opt & OPT_in_place)) {
Rob Landleydcc28662004-11-25 07:21:47 +00001251 add_input_file(stdin);
1252 process_files();
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001253 continue;
Glenn L McGrath8aac05b2003-09-14 04:06:12 +00001254 }
Denis Vlasenkoddec5af2006-10-26 23:25:17 +00001255 file = fopen_or_warn(argv[i], "r");
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001256 if (!file) {
1257 status = EXIT_FAILURE;
1258 continue;
1259 }
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001260 if (!(opt & OPT_in_place)) {
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001261 add_input_file(file);
1262 continue;
1263 }
1264
Denis Vlasenko80778502006-10-25 12:46:46 +00001265 bbg.outname = xasprintf("%sXXXXXX", argv[i]);
1266 nonstdoutfd = mkstemp(bbg.outname);
1267 if (-1 == nonstdoutfd)
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001268 bb_error_msg_and_die("no temp file");
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001269 bbg.nonstdout = fdopen(nonstdoutfd, "w");
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001270
1271 /* Set permissions of output file */
1272
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001273 fstat(fileno(file), &statbuf);
1274 fchmod(nonstdoutfd, statbuf.st_mode);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001275 add_input_file(file);
1276 process_files();
1277 fclose(bbg.nonstdout);
1278
Denis Vlasenko80778502006-10-25 12:46:46 +00001279 bbg.nonstdout = stdout;
1280 /* unlink(argv[i]); */
1281 // FIXME: error check / message?
Denis Vlasenko2f8f71b2006-12-10 02:09:12 +00001282 rename(bbg.outname, argv[i]);
Denis Vlasenkod18a3a22006-10-25 12:46:03 +00001283 free(bbg.outname);
Denis Vlasenko80778502006-10-25 12:46:46 +00001284 bbg.outname = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +00001285 }
Denis Vlasenko80778502006-10-25 12:46:46 +00001286 if (bbg.input_file_count > bbg.current_input_file)
1287 process_files();
Mark Whitley6315ce62000-07-10 22:55:51 +00001288 }
Glenn L McGrath8d6395d2003-04-08 11:56:11 +00001289
Matt Kraaia5f09c62001-11-12 16:44:55 +00001290 return status;
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001291}