Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 2 | /* |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 3 | * sed.c - very minimalist version of sed |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 4 | * |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley |
| 6 | * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org> |
Matt Kraai | 5ed78ad | 2002-01-03 21:12:34 +0000 | [diff] [blame] | 7 | * Copyright (C) 2002 Matt Kraai |
Denis Vlasenko | 0beaff8 | 2007-09-21 13:16:32 +0000 | [diff] [blame] | 8 | * Copyright (C) 2003 by Glenn McGrath |
Rob Landley | 25d8239 | 2004-04-01 09:23:30 +0000 | [diff] [blame] | 9 | * Copyright (C) 2003,2004 by Rob Landley <rob@landley.net> |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 10 | * |
Rob Landley | 2b26fd5 | 2006-02-24 02:30:39 +0000 | [diff] [blame] | 11 | * MAINTAINER: Rob Landley <rob@landley.net> |
Bernhard Reutner-Fischer | b7f3973 | 2006-03-01 20:14:16 +0000 | [diff] [blame] | 12 | * |
Rob Landley | e9a7a62 | 2006-09-22 02:52:41 +0000 | [diff] [blame] | 13 | * Licensed under GPL version 2, see file LICENSE in this tarball for details. |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 14 | */ |
| 15 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 16 | /* 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 Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 24 | (G.sed_cmd_head/G.sed_cmd_tail). |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 25 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 26 | add_input_file() adds a FILE* to the list of input files. We need to |
Rob Landley | fae1dc8 | 2005-11-20 07:44:35 +0000 | [diff] [blame] | 27 | know all input sources ahead of time to find the last line for the $ match. |
Rob Landley | dcc2866 | 2004-11-25 07:21:47 +0000 | [diff] [blame] | 28 | |
| 29 | process_files() does actual sedding, reading data lines from each input FILE * |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 30 | (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 Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 37 | /* |
| 38 | Supported features and commands in this version of sed: |
| 39 | |
| 40 | - comments ('#') |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 41 | - 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 Whitley | 1f3b9f2 | 2001-05-11 22:27:13 +0000 | [diff] [blame] | 44 | - file commands: (r)ead |
Rob Landley | c63fe91 | 2005-10-30 10:08:13 +0000 | [diff] [blame] | 45 | - backreferences in substitution expressions (\0, \1, \2...\9) |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 46 | - grouped commands: {cmd1;cmd2} |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 47 | - transliteration (y/source-chars/dest-chars/) |
| 48 | - pattern space hold space storing / swapping (g, h, x) |
Rob Landley | 93850a5 | 2005-05-18 06:34:37 +0000 | [diff] [blame] | 49 | - labels / branching (: label, b, t, T) |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 50 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 51 | (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 McGrath | 2570b43 | 2003-09-16 05:25:43 +0000 | [diff] [blame] | 55 | Todo: |
Glenn L McGrath | 2570b43 | 2003-09-16 05:25:43 +0000 | [diff] [blame] | 56 | - Create a wrapper around regex to make libc's regex conform with sed |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 57 | |
Glenn L McGrath | d5eadea | 2003-03-09 02:39:29 +0000 | [diff] [blame] | 58 | Reference http://www.opengroup.org/onlinepubs/007904975/utilities/sed.html |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 59 | */ |
| 60 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 61 | #include "libbb.h" |
"Vladimir N. Oleynik" | 23f62fc | 2005-09-14 16:59:11 +0000 | [diff] [blame] | 62 | #include "xregex.h" |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 63 | |
Denys Vlasenko | 2e284a4 | 2010-08-01 04:14:46 +0200 | [diff] [blame] | 64 | enum { |
| 65 | OPT_in_place = 1 << 0, |
| 66 | }; |
| 67 | |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 68 | /* Each sed command turns into one of these structures. */ |
Glenn L McGrath | e7a8bc9 | 2003-03-09 10:23:57 +0000 | [diff] [blame] | 69 | typedef struct sed_cmd_s { |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 70 | /* Ordered by alignment requirements: currently 36 bytes on x86 */ |
Denis Vlasenko | 34c4e5f | 2007-01-30 22:25:16 +0000 | [diff] [blame] | 71 | struct sed_cmd_s *next; /* Next command (linked list, NULL terminated) */ |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 72 | |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 73 | /* address storage */ |
| 74 | regex_t *beg_match; /* sed -e '/match/cmd' */ |
| 75 | regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */ |
| 76 | regex_t *sub_match; /* For 's/sub_match/string/' */ |
| 77 | int beg_line; /* 'sed 1p' 0 == apply commands to all lines */ |
| 78 | int end_line; /* 'sed 1,3p' 0 == one line only. -1 = last line ($) */ |
Bernhard Reutner-Fischer | b7f3973 | 2006-03-01 20:14:16 +0000 | [diff] [blame] | 79 | |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 80 | FILE *sw_file; /* File (sw) command writes to, -1 for none. */ |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 81 | char *string; /* Data string for (saicytb) commands. */ |
Glenn L McGrath | fc4cb4d | 2003-04-12 16:10:42 +0000 | [diff] [blame] | 82 | |
Denis Vlasenko | 284d0fa | 2008-02-16 13:18:17 +0000 | [diff] [blame] | 83 | unsigned which_match; /* (s) Which match to replace (0 for all) */ |
Glenn L McGrath | fc4cb4d | 2003-04-12 16:10:42 +0000 | [diff] [blame] | 84 | |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 85 | /* Bitfields (gcc won't group them if we don't) */ |
Denis Vlasenko | 34c4e5f | 2007-01-30 22:25:16 +0000 | [diff] [blame] | 86 | unsigned invert:1; /* the '!' after the address */ |
| 87 | unsigned in_match:1; /* Next line also included in match? */ |
| 88 | unsigned sub_p:1; /* (s) print option */ |
Denis Vlasenko | 1375bc7 | 2006-12-02 20:12:12 +0000 | [diff] [blame] | 89 | |
Denis Vlasenko | 34c4e5f | 2007-01-30 22:25:16 +0000 | [diff] [blame] | 90 | char sw_last_char; /* Last line written by (sw) had no '\n' */ |
Glenn L McGrath | c18ce37 | 2003-09-13 06:57:39 +0000 | [diff] [blame] | 91 | |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 92 | /* GENERAL FIELDS */ |
| 93 | char cmd; /* The command char: abcdDgGhHilnNpPqrstwxy:={} */ |
Glenn L McGrath | e7a8bc9 | 2003-03-09 10:23:57 +0000 | [diff] [blame] | 94 | } sed_cmd_t; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 95 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 96 | static const char semicolon_whitespace[] ALIGN1 = "; \n\r\t\v"; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 97 | |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 98 | struct globals { |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 99 | /* options */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 100 | int be_quiet, regex_type; |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 101 | FILE *nonstdout; |
| 102 | char *outname, *hold_space; |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 103 | |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 104 | /* List of input files */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 105 | int input_file_count, current_input_file; |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 106 | FILE **input_file_list; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 107 | |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 108 | regmatch_t regmatch[10]; |
| 109 | regex_t *previous_regex_ptr; |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 110 | |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 111 | /* linked list of sed commands */ |
| 112 | sed_cmd_t sed_cmd_head, *sed_cmd_tail; |
| 113 | |
| 114 | /* Linked list of append lines */ |
| 115 | llist_t *append_head; |
| 116 | |
| 117 | char *add_cmd_line; |
| 118 | |
| 119 | struct pipeline { |
| 120 | char *buf; /* Space to hold string */ |
| 121 | int idx; /* Space used */ |
| 122 | int len; /* Space allocated */ |
| 123 | } pipeline; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 124 | } FIX_ALIASING; |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 125 | #define G (*(struct globals*)&bb_common_bufsiz1) |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 126 | struct BUG_G_too_big { |
| 127 | char BUG_G_too_big[sizeof(G) <= COMMON_BUFSIZE ? 1 : -1]; |
| 128 | }; |
Denis Vlasenko | 74324c8 | 2007-06-04 10:16:52 +0000 | [diff] [blame] | 129 | #define INIT_G() do { \ |
Denis Vlasenko | 74324c8 | 2007-06-04 10:16:52 +0000 | [diff] [blame] | 130 | G.sed_cmd_tail = &G.sed_cmd_head; \ |
| 131 | } while (0) |
| 132 | |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 133 | |
Bernhard Reutner-Fischer | b7f3973 | 2006-03-01 20:14:16 +0000 | [diff] [blame] | 134 | #if ENABLE_FEATURE_CLEAN_UP |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 135 | static void sed_free_and_close_stuff(void) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 136 | { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 137 | sed_cmd_t *sed_cmd = G.sed_cmd_head.next; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 138 | |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 139 | llist_free(G.append_head, free); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 140 | |
Glenn L McGrath | 56c633c | 2003-03-28 04:23:23 +0000 | [diff] [blame] | 141 | while (sed_cmd) { |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 142 | sed_cmd_t *sed_cmd_next = sed_cmd->next; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 143 | |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 144 | if (sed_cmd->sw_file) |
| 145 | xprint_and_close_file(sed_cmd->sw_file); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 146 | |
Glenn L McGrath | 56c633c | 2003-03-28 04:23:23 +0000 | [diff] [blame] | 147 | if (sed_cmd->beg_match) { |
| 148 | regfree(sed_cmd->beg_match); |
| 149 | free(sed_cmd->beg_match); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 150 | } |
Glenn L McGrath | 56c633c | 2003-03-28 04:23:23 +0000 | [diff] [blame] | 151 | if (sed_cmd->end_match) { |
| 152 | regfree(sed_cmd->end_match); |
| 153 | free(sed_cmd->end_match); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 154 | } |
Glenn L McGrath | 56c633c | 2003-03-28 04:23:23 +0000 | [diff] [blame] | 155 | if (sed_cmd->sub_match) { |
| 156 | regfree(sed_cmd->sub_match); |
| 157 | free(sed_cmd->sub_match); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 158 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 159 | free(sed_cmd->string); |
Glenn L McGrath | 56c633c | 2003-03-28 04:23:23 +0000 | [diff] [blame] | 160 | free(sed_cmd); |
| 161 | sed_cmd = sed_cmd_next; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 162 | } |
Rob Landley | ce4f0e9 | 2004-10-30 06:54:19 +0000 | [diff] [blame] | 163 | |
Denis Vlasenko | 6081868 | 2007-09-28 22:07:23 +0000 | [diff] [blame] | 164 | free(G.hold_space); |
Rob Landley | dcc2866 | 2004-11-25 07:21:47 +0000 | [diff] [blame] | 165 | |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 166 | while (G.current_input_file < G.input_file_count) |
| 167 | fclose(G.input_file_list[G.current_input_file++]); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 168 | } |
Denis Vlasenko | 666da5e | 2006-12-26 18:17:42 +0000 | [diff] [blame] | 169 | #else |
| 170 | void sed_free_and_close_stuff(void); |
Mark Whitley | c41e8c8 | 2000-07-12 23:35:21 +0000 | [diff] [blame] | 171 | #endif |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 172 | |
Rob Landley | 53302f8 | 2004-02-18 09:54:15 +0000 | [diff] [blame] | 173 | /* If something bad happens during -i operation, delete temp file */ |
| 174 | |
| 175 | static void cleanup_outname(void) |
| 176 | { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 177 | if (G.outname) unlink(G.outname); |
Rob Landley | 53302f8 | 2004-02-18 09:54:15 +0000 | [diff] [blame] | 178 | } |
| 179 | |
Denis Vlasenko | 4027664 | 2007-11-13 16:48:10 +0000 | [diff] [blame] | 180 | /* strcpy, replacing "\from" with 'to'. If to is NUL, replacing "\any" with 'any' */ |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 181 | |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 182 | static void parse_escapes(char *dest, const char *string, int len, char from, char to) |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 183 | { |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 184 | int i = 0; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 185 | |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 186 | while (i < len) { |
| 187 | if (string[i] == '\\') { |
| 188 | if (!to || string[i+1] == from) { |
Denis Vlasenko | 4ebaf10 | 2007-01-19 21:33:19 +0000 | [diff] [blame] | 189 | *dest++ = to ? to : string[i+1]; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 190 | i += 2; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 191 | continue; |
Denis Vlasenko | 4ebaf10 | 2007-01-19 21:33:19 +0000 | [diff] [blame] | 192 | } |
| 193 | *dest++ = string[i++]; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 194 | } |
Denis Vlasenko | 4027664 | 2007-11-13 16:48:10 +0000 | [diff] [blame] | 195 | /* TODO: is it safe wrt a string with trailing '\\' ? */ |
Denis Vlasenko | 4ebaf10 | 2007-01-19 21:33:19 +0000 | [diff] [blame] | 196 | *dest++ = string[i++]; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 197 | } |
Denis Vlasenko | 4027664 | 2007-11-13 16:48:10 +0000 | [diff] [blame] | 198 | *dest = '\0'; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 199 | } |
| 200 | |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 201 | static char *copy_parsing_escapes(const char *string, int len) |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 202 | { |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 203 | char *dest = xmalloc(len + 1); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 204 | |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 205 | parse_escapes(dest, string, len, 'n', '\n'); |
Denis Vlasenko | 4027664 | 2007-11-13 16:48:10 +0000 | [diff] [blame] | 206 | /* GNU sed also recognizes \t */ |
| 207 | parse_escapes(dest, dest, strlen(dest), 't', '\t'); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 208 | return dest; |
| 209 | } |
| 210 | |
| 211 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 212 | /* |
Eric Andersen | 28b3c53 | 2001-01-02 11:01:31 +0000 | [diff] [blame] | 213 | * index_of_next_unescaped_regexp_delim - walks left to right through a string |
| 214 | * beginning at a specified index and returns the index of the next regular |
Denis Vlasenko | 4027664 | 2007-11-13 16:48:10 +0000 | [diff] [blame] | 215 | * expression delimiter (typically a forward slash ('/')) not preceded by |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 216 | * a backslash ('\'). A negative delimiter disables square bracket checking. |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 217 | */ |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 218 | static int index_of_next_unescaped_regexp_delim(int delimiter, const char *str) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 219 | { |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 220 | int bracket = -1; |
| 221 | int escaped = 0; |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 222 | int idx = 0; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 223 | char ch; |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 224 | |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 225 | if (delimiter < 0) { |
| 226 | bracket--; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 227 | delimiter = -delimiter; |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 228 | } |
| 229 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 230 | for (; (ch = str[idx]); idx++) { |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 231 | if (bracket >= 0) { |
Glenn L McGrath | d4185b0 | 2003-04-11 17:10:23 +0000 | [diff] [blame] | 232 | if (ch == ']' && !(bracket == idx - 1 || (bracket == idx - 2 |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 233 | && str[idx - 1] == '^'))) |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 234 | bracket = -1; |
| 235 | } else if (escaped) |
| 236 | escaped = 0; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 237 | else if (ch == '\\') |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 238 | escaped = 1; |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 239 | else if (bracket == -1 && ch == '[') |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 240 | bracket = idx; |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 241 | else if (ch == delimiter) |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 242 | return idx; |
| 243 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 244 | |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 245 | /* if we make it to here, we've hit the end of the string */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 246 | bb_error_msg_and_die("unmatched '%c'", delimiter); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 247 | } |
| 248 | |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 249 | /* |
| 250 | * Returns the index of the third delimiter |
| 251 | */ |
Denis Vlasenko | 9356b50 | 2007-01-29 23:44:38 +0000 | [diff] [blame] | 252 | static int parse_regex_delim(const char *cmdstr, char **match, char **replace) |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 253 | { |
Denis Vlasenko | 9356b50 | 2007-01-29 23:44:38 +0000 | [diff] [blame] | 254 | const char *cmdstr_ptr = cmdstr; |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 255 | char delimiter; |
| 256 | int idx = 0; |
| 257 | |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 258 | /* verify that the 's' or 'y' is followed by something. That something |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 259 | * (typically a 'slash') is now our regexp delimiter... */ |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 260 | if (*cmdstr == '\0') |
| 261 | bb_error_msg_and_die("bad format in substitution expression"); |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 262 | delimiter = *cmdstr_ptr++; |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 263 | |
| 264 | /* save the match string */ |
| 265 | idx = index_of_next_unescaped_regexp_delim(delimiter, cmdstr_ptr); |
Rob Landley | fae1dc8 | 2005-11-20 07:44:35 +0000 | [diff] [blame] | 266 | *match = copy_parsing_escapes(cmdstr_ptr, idx); |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 267 | |
| 268 | /* save the replacement string */ |
| 269 | cmdstr_ptr += idx + 1; |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 270 | idx = index_of_next_unescaped_regexp_delim(-delimiter, cmdstr_ptr); |
Rob Landley | fae1dc8 | 2005-11-20 07:44:35 +0000 | [diff] [blame] | 271 | *replace = copy_parsing_escapes(cmdstr_ptr, idx); |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 272 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 273 | return ((cmdstr_ptr - cmdstr) + idx); |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 274 | } |
| 275 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 276 | /* |
| 277 | * returns the index in the string just past where the address ends. |
| 278 | */ |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 279 | static int get_address(const char *my_str, int *linenum, regex_t ** regex) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 280 | { |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 281 | const char *pos = my_str; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 282 | |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 283 | if (isdigit(*my_str)) { |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 284 | *linenum = strtol(my_str, (char**)&pos, 10); |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 285 | /* endstr shouldnt ever equal NULL */ |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 286 | } else if (*my_str == '$') { |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 287 | *linenum = -1; |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 288 | pos++; |
| 289 | } else if (*my_str == '/' || *my_str == '\\') { |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 290 | int next; |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 291 | char delimiter; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 292 | char *temp; |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 293 | |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 294 | delimiter = '/'; |
| 295 | if (*my_str == '\\') delimiter = *++pos; |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 296 | next = index_of_next_unescaped_regexp_delim(delimiter, ++pos); |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 297 | temp = copy_parsing_escapes(pos, next); |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 298 | *regex = xmalloc(sizeof(regex_t)); |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 299 | xregcomp(*regex, temp, G.regex_type|REG_NEWLINE); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 300 | free(temp); |
| 301 | /* Move position to next character after last delimiter */ |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 302 | pos += (next+1); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 303 | } |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 304 | return pos - my_str; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 305 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 306 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 307 | /* Grab a filename. Whitespace at start is skipped, then goes to EOL. */ |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 308 | static int parse_file_cmd(/*sed_cmd_t *sed_cmd,*/ const char *filecmdstr, char **retval) |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 309 | { |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 310 | int start = 0, idx, hack = 0; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 311 | |
| 312 | /* Skip whitespace, then grab filename to end of line */ |
Denis Vlasenko | 9356b50 | 2007-01-29 23:44:38 +0000 | [diff] [blame] | 313 | while (isspace(filecmdstr[start])) |
| 314 | start++; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 315 | idx = start; |
Denis Vlasenko | 9356b50 | 2007-01-29 23:44:38 +0000 | [diff] [blame] | 316 | while (filecmdstr[idx] && filecmdstr[idx] != '\n') |
| 317 | idx++; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 318 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 319 | /* If lines glued together, put backslash back. */ |
Denis Vlasenko | 9356b50 | 2007-01-29 23:44:38 +0000 | [diff] [blame] | 320 | if (filecmdstr[idx] == '\n') |
| 321 | hack = 1; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 322 | if (idx == start) |
| 323 | bb_error_msg_and_die("empty filename"); |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 324 | *retval = xstrndup(filecmdstr+start, idx-start+hack+1); |
Denis Vlasenko | 9356b50 | 2007-01-29 23:44:38 +0000 | [diff] [blame] | 325 | if (hack) |
| 326 | (*retval)[idx] = '\\'; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 327 | |
| 328 | return idx; |
| 329 | } |
| 330 | |
Denis Vlasenko | 9356b50 | 2007-01-29 23:44:38 +0000 | [diff] [blame] | 331 | static int parse_subst_cmd(sed_cmd_t *sed_cmd, const char *substr) |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 332 | { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 333 | int cflags = G.regex_type; |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 334 | char *match; |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 335 | int idx; |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 336 | |
| 337 | /* |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 338 | * A substitution command should look something like this: |
| 339 | * s/match/replace/ #gIpw |
Mark Whitley | 0e4cec0 | 2000-08-21 21:29:20 +0000 | [diff] [blame] | 340 | * || | ||| |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 341 | * mandatory optional |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 342 | */ |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 343 | idx = parse_regex_delim(substr, &match, &sed_cmd->string); |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 344 | |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 345 | /* determine the number of back references in the match string */ |
| 346 | /* Note: we compute this here rather than in the do_subst_command() |
| 347 | * function to save processor time, at the expense of a little more memory |
| 348 | * (4 bits) per sed_cmd */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 349 | |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 350 | /* process the flags */ |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 351 | |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 352 | sed_cmd->which_match = 1; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 353 | while (substr[++idx]) { |
| 354 | /* Parse match number */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 355 | if (isdigit(substr[idx])) { |
| 356 | if (match[0] != '^') { |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 357 | /* Match 0 treated as all, multiple matches we take the last one. */ |
Denis Vlasenko | 9356b50 | 2007-01-29 23:44:38 +0000 | [diff] [blame] | 358 | const char *pos = substr + idx; |
| 359 | /* FIXME: error check? */ |
Denis Vlasenko | 284d0fa | 2008-02-16 13:18:17 +0000 | [diff] [blame] | 360 | sed_cmd->which_match = (unsigned)strtol(substr+idx, (char**) &pos, 10); |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 361 | idx = pos - substr; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 362 | } |
| 363 | continue; |
| 364 | } |
Rob Landley | 40ec4ae | 2004-01-04 06:42:14 +0000 | [diff] [blame] | 365 | /* Skip spaces */ |
Denys Vlasenko | 6935ec9 | 2009-10-22 19:42:26 +0200 | [diff] [blame] | 366 | if (isspace(substr[idx])) |
| 367 | continue; |
Rob Landley | 40ec4ae | 2004-01-04 06:42:14 +0000 | [diff] [blame] | 368 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 369 | switch (substr[idx]) { |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 370 | /* Replace all occurrences */ |
| 371 | case 'g': |
Denis Vlasenko | 284d0fa | 2008-02-16 13:18:17 +0000 | [diff] [blame] | 372 | if (match[0] != '^') |
| 373 | sed_cmd->which_match = 0; |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 374 | break; |
| 375 | /* Print pattern space */ |
| 376 | case 'p': |
| 377 | sed_cmd->sub_p = 1; |
| 378 | break; |
| 379 | /* Write to file */ |
| 380 | case 'w': |
| 381 | { |
| 382 | char *temp; |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 383 | idx += parse_file_cmd(/*sed_cmd,*/ substr+idx, &temp); |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 384 | break; |
| 385 | } |
| 386 | /* Ignore case (gnu exension) */ |
| 387 | case 'I': |
| 388 | cflags |= REG_ICASE; |
| 389 | break; |
| 390 | /* Comment */ |
| 391 | case '#': |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 392 | // while (substr[++idx]) continue; |
| 393 | idx += strlen(substr + idx); // same |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 394 | /* Fall through */ |
| 395 | /* End of command */ |
| 396 | case ';': |
| 397 | case '}': |
| 398 | goto out; |
| 399 | default: |
| 400 | bb_error_msg_and_die("bad option in substitution expression"); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 401 | } |
| 402 | } |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 403 | out: |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 404 | /* compile the match string into a regex */ |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 405 | if (*match != '\0') { |
| 406 | /* If match is empty, we use last regex used at runtime */ |
Denis Vlasenko | b95636c | 2006-12-19 23:36:04 +0000 | [diff] [blame] | 407 | sed_cmd->sub_match = xmalloc(sizeof(regex_t)); |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 408 | xregcomp(sed_cmd->sub_match, match, cflags); |
| 409 | } |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 410 | free(match); |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 411 | |
| 412 | return idx; |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 413 | } |
| 414 | |
Glenn L McGrath | 2971ef1 | 2003-03-18 01:19:23 +0000 | [diff] [blame] | 415 | /* |
| 416 | * Process the commands arguments |
| 417 | */ |
Denis Vlasenko | 9356b50 | 2007-01-29 23:44:38 +0000 | [diff] [blame] | 418 | static const char *parse_cmd_args(sed_cmd_t *sed_cmd, const char *cmdstr) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 419 | { |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 420 | /* handle (s)ubstitution command */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 421 | if (sed_cmd->cmd == 's') |
| 422 | cmdstr += parse_subst_cmd(sed_cmd, cmdstr); |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 423 | /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */ |
| 424 | else if (strchr("aic", sed_cmd->cmd)) { |
| 425 | if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c') |
Denys Vlasenko | 6935ec9 | 2009-10-22 19:42:26 +0200 | [diff] [blame] | 426 | bb_error_msg_and_die("only a beginning address can be specified for edit commands"); |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 427 | for (;;) { |
| 428 | if (*cmdstr == '\n' || *cmdstr == '\\') { |
Rob Landley | 25d8239 | 2004-04-01 09:23:30 +0000 | [diff] [blame] | 429 | cmdstr++; |
| 430 | break; |
Denys Vlasenko | c0dab37 | 2009-10-22 22:28:08 +0200 | [diff] [blame] | 431 | } |
| 432 | if (!isspace(*cmdstr)) |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 433 | break; |
Denys Vlasenko | c0dab37 | 2009-10-22 22:28:08 +0200 | [diff] [blame] | 434 | cmdstr++; |
Rob Landley | 25d8239 | 2004-04-01 09:23:30 +0000 | [diff] [blame] | 435 | } |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 436 | sed_cmd->string = xstrdup(cmdstr); |
Denis Vlasenko | 4027664 | 2007-11-13 16:48:10 +0000 | [diff] [blame] | 437 | /* "\anychar" -> "anychar" */ |
| 438 | parse_escapes(sed_cmd->string, sed_cmd->string, strlen(cmdstr), '\0', '\0'); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 439 | cmdstr += strlen(cmdstr); |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 440 | /* handle file cmds: (r)ead */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 441 | } else if (strchr("rw", sed_cmd->cmd)) { |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 442 | if (sed_cmd->end_line || sed_cmd->end_match) |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 443 | bb_error_msg_and_die("command only uses one address"); |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 444 | cmdstr += parse_file_cmd(/*sed_cmd,*/ cmdstr, &sed_cmd->string); |
Denis Vlasenko | c562bb7 | 2007-01-29 17:08:51 +0000 | [diff] [blame] | 445 | if (sed_cmd->cmd == 'w') { |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 446 | sed_cmd->sw_file = xfopen_for_write(sed_cmd->string); |
Denis Vlasenko | c562bb7 | 2007-01-29 17:08:51 +0000 | [diff] [blame] | 447 | sed_cmd->sw_last_char = '\n'; |
| 448 | } |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 449 | /* handle branch commands */ |
Rob Landley | 93850a5 | 2005-05-18 06:34:37 +0000 | [diff] [blame] | 450 | } else if (strchr(":btT", sed_cmd->cmd)) { |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 451 | int length; |
| 452 | |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 453 | cmdstr = skip_whitespace(cmdstr); |
Glenn L McGrath | f452356 | 2003-09-14 06:01:14 +0000 | [diff] [blame] | 454 | length = strcspn(cmdstr, semicolon_whitespace); |
| 455 | if (length) { |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 456 | sed_cmd->string = xstrndup(cmdstr, length); |
Glenn L McGrath | f452356 | 2003-09-14 06:01:14 +0000 | [diff] [blame] | 457 | cmdstr += length; |
| 458 | } |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 459 | } |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 460 | /* translation command */ |
| 461 | else if (sed_cmd->cmd == 'y') { |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 462 | char *match, *replace; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 463 | int i = cmdstr[0]; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 464 | |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 465 | cmdstr += parse_regex_delim(cmdstr, &match, &replace)+1; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 466 | /* \n already parsed, but \delimiter needs unescaping. */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 467 | parse_escapes(match, match, strlen(match), i, i); |
| 468 | parse_escapes(replace, replace, strlen(replace), i, i); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 469 | |
Rob Landley | 9ffd423 | 2006-05-21 18:30:35 +0000 | [diff] [blame] | 470 | sed_cmd->string = xzalloc((strlen(match) + 1) * 2); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 471 | for (i = 0; match[i] && replace[i]; i++) { |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 472 | sed_cmd->string[i*2] = match[i]; |
| 473 | sed_cmd->string[i*2+1] = replace[i]; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 474 | } |
| 475 | free(match); |
| 476 | free(replace); |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 477 | } |
Glenn L McGrath | 2971ef1 | 2003-03-18 01:19:23 +0000 | [diff] [blame] | 478 | /* if it wasnt a single-letter command that takes no arguments |
| 479 | * then it must be an invalid command. |
| 480 | */ |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 481 | else if (strchr("dDgGhHlnNpPqx={}", sed_cmd->cmd) == 0) { |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 482 | bb_error_msg_and_die("unsupported command %c", sed_cmd->cmd); |
Mark Whitley | 1f3b9f2 | 2001-05-11 22:27:13 +0000 | [diff] [blame] | 483 | } |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 484 | |
| 485 | /* give back whatever's left over */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 486 | return cmdstr; |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 487 | } |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 488 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 489 | |
| 490 | /* Parse address+command sets, skipping comment lines. */ |
| 491 | |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 492 | static void add_cmd(const char *cmdstr) |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 493 | { |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 494 | sed_cmd_t *sed_cmd; |
Denys Vlasenko | a2215b9 | 2010-05-12 01:49:04 +0200 | [diff] [blame] | 495 | unsigned len, n; |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 496 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 497 | /* Append this line to any unfinished line from last time. */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 498 | if (G.add_cmd_line) { |
| 499 | char *tp = xasprintf("%s\n%s", G.add_cmd_line, cmdstr); |
| 500 | free(G.add_cmd_line); |
Denis Vlasenko | 945bd3d | 2007-04-12 21:20:25 +0000 | [diff] [blame] | 501 | cmdstr = G.add_cmd_line = tp; |
Rob Landley | 12d8755 | 2006-06-05 17:32:44 +0000 | [diff] [blame] | 502 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 503 | |
Denys Vlasenko | a2215b9 | 2010-05-12 01:49:04 +0200 | [diff] [blame] | 504 | /* If this line ends with unescaped backslash, request next line. */ |
| 505 | n = len = strlen(cmdstr); |
| 506 | while (n && cmdstr[n-1] == '\\') |
| 507 | n--; |
| 508 | if ((len - n) & 1) { /* if odd number of trailing backslashes */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 509 | if (!G.add_cmd_line) |
| 510 | G.add_cmd_line = xstrdup(cmdstr); |
Denys Vlasenko | a2215b9 | 2010-05-12 01:49:04 +0200 | [diff] [blame] | 511 | G.add_cmd_line[len-1] = '\0'; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 512 | return; |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 513 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 514 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 515 | /* Loop parsing all commands in this line. */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 516 | while (*cmdstr) { |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 517 | /* Skip leading whitespace and semicolons */ |
| 518 | cmdstr += strspn(cmdstr, semicolon_whitespace); |
| 519 | |
| 520 | /* If no more commands, exit. */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 521 | if (!*cmdstr) break; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 522 | |
| 523 | /* if this is a comment, jump past it and keep going */ |
| 524 | if (*cmdstr == '#') { |
| 525 | /* "#n" is the same as using -n on the command line */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 526 | if (cmdstr[1] == 'n') |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 527 | G.be_quiet++; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 528 | cmdstr = strpbrk(cmdstr, "\n\r"); |
| 529 | if (!cmdstr) break; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 530 | continue; |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 531 | } |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 532 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 533 | /* parse the command |
| 534 | * format is: [addr][,addr][!]cmd |
| 535 | * |----||-----||-| |
| 536 | * part1 part2 part3 |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 537 | */ |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 538 | |
Rob Landley | 9ffd423 | 2006-05-21 18:30:35 +0000 | [diff] [blame] | 539 | sed_cmd = xzalloc(sizeof(sed_cmd_t)); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 540 | |
| 541 | /* first part (if present) is an address: either a '$', a number or a /regex/ */ |
| 542 | cmdstr += get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match); |
| 543 | |
| 544 | /* second part (if present) will begin with a comma */ |
| 545 | if (*cmdstr == ',') { |
| 546 | int idx; |
| 547 | |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 548 | cmdstr++; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 549 | idx = get_address(cmdstr, &sed_cmd->end_line, &sed_cmd->end_match); |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 550 | if (!idx) |
| 551 | bb_error_msg_and_die("no address after comma"); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 552 | cmdstr += idx; |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 553 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 554 | |
| 555 | /* skip whitespace before the command */ |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 556 | cmdstr = skip_whitespace(cmdstr); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 557 | |
| 558 | /* Check for inversion flag */ |
| 559 | if (*cmdstr == '!') { |
| 560 | sed_cmd->invert = 1; |
| 561 | cmdstr++; |
| 562 | |
| 563 | /* skip whitespace before the command */ |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 564 | cmdstr = skip_whitespace(cmdstr); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 565 | } |
| 566 | |
| 567 | /* last part (mandatory) will be a command */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 568 | if (!*cmdstr) |
| 569 | bb_error_msg_and_die("missing command"); |
Denys Vlasenko | a2215b9 | 2010-05-12 01:49:04 +0200 | [diff] [blame] | 570 | sed_cmd->cmd = *cmdstr++; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 571 | cmdstr = parse_cmd_args(sed_cmd, cmdstr); |
| 572 | |
| 573 | /* Add the command to the command array */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 574 | G.sed_cmd_tail->next = sed_cmd; |
| 575 | G.sed_cmd_tail = G.sed_cmd_tail->next; |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 576 | } |
| 577 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 578 | /* If we glued multiple lines together, free the memory. */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 579 | free(G.add_cmd_line); |
| 580 | G.add_cmd_line = NULL; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 581 | } |
| 582 | |
Rob Landley | dcc2866 | 2004-11-25 07:21:47 +0000 | [diff] [blame] | 583 | /* Append to a string, reallocating memory as necessary. */ |
| 584 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 585 | #define PIPE_GROW 64 |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 586 | |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 587 | static void pipe_putc(char c) |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 588 | { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 589 | if (G.pipeline.idx == G.pipeline.len) { |
| 590 | G.pipeline.buf = xrealloc(G.pipeline.buf, |
| 591 | G.pipeline.len + PIPE_GROW); |
| 592 | G.pipeline.len += PIPE_GROW; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 593 | } |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 594 | G.pipeline.buf[G.pipeline.idx++] = c; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 595 | } |
| 596 | |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 597 | static void do_subst_w_backrefs(char *line, char *replace) |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 598 | { |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 599 | int i, j; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 600 | |
| 601 | /* go through the replacement string */ |
| 602 | for (i = 0; replace[i]; i++) { |
| 603 | /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */ |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 604 | if (replace[i] == '\\') { |
| 605 | unsigned backref = replace[++i] - '0'; |
| 606 | if (backref <= 9) { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 607 | /* print out the text held in G.regmatch[backref] */ |
| 608 | if (G.regmatch[backref].rm_so != -1) { |
| 609 | j = G.regmatch[backref].rm_so; |
| 610 | while (j < G.regmatch[backref].rm_eo) |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 611 | pipe_putc(line[j++]); |
| 612 | } |
| 613 | continue; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 614 | } |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 615 | /* I _think_ it is impossible to get '\' to be |
| 616 | * the last char in replace string. Thus we dont check |
| 617 | * for replace[i] == NUL. (counterexample anyone?) */ |
| 618 | /* if we find a backslash escaped character, print the character */ |
| 619 | pipe_putc(replace[i]); |
| 620 | continue; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 621 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 622 | /* if we find an unescaped '&' print out the whole matched text. */ |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 623 | if (replace[i] == '&') { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 624 | j = G.regmatch[0].rm_so; |
| 625 | while (j < G.regmatch[0].rm_eo) |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 626 | pipe_putc(line[j++]); |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 627 | continue; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 628 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 629 | /* Otherwise just output the character. */ |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 630 | pipe_putc(replace[i]); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 631 | } |
| 632 | } |
| 633 | |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 634 | static int do_subst_command(sed_cmd_t *sed_cmd, char **line_p) |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 635 | { |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 636 | char *line = *line_p; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 637 | int altered = 0; |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 638 | unsigned match_count = 0; |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 639 | regex_t *current_regex; |
| 640 | |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 641 | current_regex = sed_cmd->sub_match; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 642 | /* Handle empty regex. */ |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 643 | if (!current_regex) { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 644 | current_regex = G.previous_regex_ptr; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 645 | if (!current_regex) |
Denis Vlasenko | d3d004d | 2006-10-27 09:02:31 +0000 | [diff] [blame] | 646 | bb_error_msg_and_die("no previous regexp"); |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 647 | } |
| 648 | G.previous_regex_ptr = current_regex; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 649 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 650 | /* Find the first match */ |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 651 | if (REG_NOMATCH == regexec(current_regex, line, 10, G.regmatch, 0)) |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 652 | return 0; |
| 653 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 654 | /* Initialize temporary output buffer. */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 655 | G.pipeline.buf = xmalloc(PIPE_GROW); |
| 656 | G.pipeline.len = PIPE_GROW; |
| 657 | G.pipeline.idx = 0; |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 658 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 659 | /* Now loop through, substituting for matches */ |
| 660 | do { |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 661 | int i; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 662 | |
Eric Andersen | c06f568 | 2004-02-04 10:57:46 +0000 | [diff] [blame] | 663 | /* Work around bug in glibc regexec, demonstrated by: |
| 664 | echo " a.b" | busybox sed 's [^ .]* x g' |
| 665 | The match_count check is so not to break |
| 666 | echo "hi" | busybox sed 's/^/!/g' */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 667 | if (!G.regmatch[0].rm_so && !G.regmatch[0].rm_eo && match_count) { |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 668 | pipe_putc(*line++); |
Eric Andersen | c06f568 | 2004-02-04 10:57:46 +0000 | [diff] [blame] | 669 | continue; |
| 670 | } |
| 671 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 672 | match_count++; |
| 673 | |
| 674 | /* If we aren't interested in this match, output old line to |
| 675 | end of match and continue */ |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 676 | if (sed_cmd->which_match |
| 677 | && (sed_cmd->which_match != match_count) |
| 678 | ) { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 679 | for (i = 0; i < G.regmatch[0].rm_eo; i++) |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 680 | pipe_putc(*line++); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 681 | continue; |
| 682 | } |
| 683 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 684 | /* print everything before the match */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 685 | for (i = 0; i < G.regmatch[0].rm_so; i++) |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 686 | pipe_putc(line[i]); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 687 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 688 | /* then print the substitution string */ |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 689 | do_subst_w_backrefs(line, sed_cmd->string); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 690 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 691 | /* advance past the match */ |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 692 | line += G.regmatch[0].rm_eo; |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 693 | /* flag that something has changed */ |
| 694 | altered++; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 695 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 696 | /* if we're not doing this globally, get out now */ |
Denis Vlasenko | 284d0fa | 2008-02-16 13:18:17 +0000 | [diff] [blame] | 697 | if (sed_cmd->which_match) |
| 698 | break; |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 699 | |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 700 | //maybe (G.regmatch[0].rm_eo ? REG_NOTBOL : 0) instead of unconditional REG_NOTBOL? |
Denys Vlasenko | 11c8238 | 2009-09-22 03:02:21 +0200 | [diff] [blame] | 701 | } while (*line && regexec(current_regex, line, 10, G.regmatch, REG_NOTBOL) != REG_NOMATCH); |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 702 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 703 | /* Copy rest of string into output pipeline */ |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 704 | while (1) { |
| 705 | char c = *line++; |
| 706 | pipe_putc(c); |
| 707 | if (c == '\0') |
| 708 | break; |
| 709 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 710 | |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 711 | free(*line_p); |
| 712 | *line_p = G.pipeline.buf; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 713 | return altered; |
| 714 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 715 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 716 | /* Set command pointer to point to this label. (Does not handle null label.) */ |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 717 | static sed_cmd_t *branch_to(char *label) |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 718 | { |
| 719 | sed_cmd_t *sed_cmd; |
Glenn L McGrath | d4185b0 | 2003-04-11 17:10:23 +0000 | [diff] [blame] | 720 | |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 721 | for (sed_cmd = G.sed_cmd_head.next; sed_cmd; sed_cmd = sed_cmd->next) { |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 722 | if (sed_cmd->cmd == ':' && sed_cmd->string && !strcmp(sed_cmd->string, label)) { |
| 723 | return sed_cmd; |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 724 | } |
| 725 | } |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 726 | bb_error_msg_and_die("can't find label for jump to '%s'", label); |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 727 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 728 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 729 | static void append(char *s) |
| 730 | { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 731 | llist_add_to_end(&G.append_head, xstrdup(s)); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 732 | } |
| 733 | |
| 734 | static void flush_append(void) |
| 735 | { |
Rob Landley | 0b65628 | 2006-05-08 22:17:23 +0000 | [diff] [blame] | 736 | char *data; |
| 737 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 738 | /* Output appended lines. */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 739 | while ((data = (char *)llist_pop(&G.append_head))) { |
| 740 | fprintf(G.nonstdout, "%s\n", data); |
Rob Landley | 0b65628 | 2006-05-08 22:17:23 +0000 | [diff] [blame] | 741 | free(data); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 742 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 743 | } |
| 744 | |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 745 | static void add_input_file(FILE *file) |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 746 | { |
Denis Vlasenko | deeed59 | 2008-07-08 05:14:36 +0000 | [diff] [blame] | 747 | G.input_file_list = xrealloc_vector(G.input_file_list, 2, G.input_file_count); |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 748 | G.input_file_list[G.input_file_count++] = file; |
Rob Landley | dcc2866 | 2004-11-25 07:21:47 +0000 | [diff] [blame] | 749 | } |
| 750 | |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 751 | /* Get next line of input from G.input_file_list, flushing append buffer and |
Rob Landley | dcc2866 | 2004-11-25 07:21:47 +0000 | [diff] [blame] | 752 | * noting if we ran out of files without a newline on the last line we read. |
| 753 | */ |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 754 | enum { |
| 755 | NO_EOL_CHAR = 1, |
Denis Vlasenko | 8681180 | 2007-01-29 17:10:19 +0000 | [diff] [blame] | 756 | LAST_IS_NUL = 2, |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 757 | }; |
| 758 | static char *get_next_line(char *gets_char) |
Rob Landley | dcc2866 | 2004-11-25 07:21:47 +0000 | [diff] [blame] | 759 | { |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 760 | char *temp = NULL; |
Denis Vlasenko | c562bb7 | 2007-01-29 17:08:51 +0000 | [diff] [blame] | 761 | int len; |
| 762 | char gc; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 763 | |
| 764 | flush_append(); |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 765 | |
| 766 | /* will be returned if last line in the file |
| 767 | * doesn't end with either '\n' or '\0' */ |
| 768 | gc = NO_EOL_CHAR; |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 769 | while (G.current_input_file < G.input_file_count) { |
| 770 | FILE *fp = G.input_file_list[G.current_input_file]; |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 771 | /* Read line up to a newline or NUL byte, inclusive, |
| 772 | * return malloc'ed char[]. length of the chunk read |
| 773 | * is stored in len. NULL if EOF/error */ |
Denis Vlasenko | 8681180 | 2007-01-29 17:10:19 +0000 | [diff] [blame] | 774 | temp = bb_get_chunk_from_file(fp, &len); |
Rob Landley | 2b26fd5 | 2006-02-24 02:30:39 +0000 | [diff] [blame] | 775 | if (temp) { |
Denis Vlasenko | 8b22b07 | 2006-12-02 17:58:10 +0000 | [diff] [blame] | 776 | /* len > 0 here, it's ok to do temp[len-1] */ |
| 777 | char c = temp[len-1]; |
| 778 | if (c == '\n' || c == '\0') { |
| 779 | temp[len-1] = '\0'; |
Denis Vlasenko | c562bb7 | 2007-01-29 17:08:51 +0000 | [diff] [blame] | 780 | gc = c; |
Denis Vlasenko | 8681180 | 2007-01-29 17:10:19 +0000 | [diff] [blame] | 781 | if (c == '\0') { |
| 782 | int ch = fgetc(fp); |
| 783 | if (ch != EOF) |
| 784 | ungetc(ch, fp); |
| 785 | else |
| 786 | gc = LAST_IS_NUL; |
| 787 | } |
Denis Vlasenko | 8b22b07 | 2006-12-02 17:58:10 +0000 | [diff] [blame] | 788 | } |
Denis Vlasenko | c562bb7 | 2007-01-29 17:08:51 +0000 | [diff] [blame] | 789 | /* else we put NO_EOL_CHAR into *gets_char */ |
| 790 | break; |
| 791 | |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 792 | /* NB: I had the idea of peeking next file(s) and returning |
| 793 | * NO_EOL_CHAR only if it is the *last* non-empty |
| 794 | * input file. But there is a case where this won't work: |
| 795 | * file1: "a woo\nb woo" |
| 796 | * file2: "c no\nd no" |
| 797 | * sed -ne 's/woo/bang/p' input1 input2 => "a bang\nb bang" |
| 798 | * (note: *no* newline after "b bang"!) */ |
Denis Vlasenko | 8b22b07 | 2006-12-02 17:58:10 +0000 | [diff] [blame] | 799 | } |
| 800 | /* Close this file and advance to next one */ |
Denis Vlasenko | 8681180 | 2007-01-29 17:10:19 +0000 | [diff] [blame] | 801 | fclose(fp); |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 802 | G.current_input_file++; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 803 | } |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 804 | *gets_char = gc; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 805 | return temp; |
| 806 | } |
| 807 | |
Denis Vlasenko | 8b22b07 | 2006-12-02 17:58:10 +0000 | [diff] [blame] | 808 | /* Output line of text. */ |
| 809 | /* Note: |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 810 | * The tricks with NO_EOL_CHAR and last_puts_char are there to emulate gnu sed. |
Denis Vlasenko | 1375bc7 | 2006-12-02 20:12:12 +0000 | [diff] [blame] | 811 | * Without them, we had this: |
Denis Vlasenko | 8b22b07 | 2006-12-02 17:58:10 +0000 | [diff] [blame] | 812 | * echo -n thingy >z1 |
| 813 | * echo -n again >z2 |
| 814 | * >znull |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 815 | * sed "s/i/z/" z1 z2 znull | hexdump -vC |
| 816 | * output: |
Denis Vlasenko | 8b22b07 | 2006-12-02 17:58:10 +0000 | [diff] [blame] | 817 | * gnu sed 4.1.5: |
| 818 | * 00000000 74 68 7a 6e 67 79 0a 61 67 61 7a 6e |thzngy.agazn| |
| 819 | * bbox: |
| 820 | * 00000000 74 68 7a 6e 67 79 61 67 61 7a 6e |thzngyagazn| |
Denis Vlasenko | 8b22b07 | 2006-12-02 17:58:10 +0000 | [diff] [blame] | 821 | */ |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 822 | static void puts_maybe_newline(char *s, FILE *file, char *last_puts_char, char last_gets_char) |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 823 | { |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 824 | char lpc = *last_puts_char; |
Denis Vlasenko | 1375bc7 | 2006-12-02 20:12:12 +0000 | [diff] [blame] | 825 | |
Denis Vlasenko | 8681180 | 2007-01-29 17:10:19 +0000 | [diff] [blame] | 826 | /* Need to insert a '\n' between two files because first file's |
| 827 | * last line wasn't terminated? */ |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 828 | if (lpc != '\n' && lpc != '\0') { |
Denis Vlasenko | 1375bc7 | 2006-12-02 20:12:12 +0000 | [diff] [blame] | 829 | fputc('\n', file); |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 830 | lpc = '\n'; |
Denis Vlasenko | 1375bc7 | 2006-12-02 20:12:12 +0000 | [diff] [blame] | 831 | } |
Denis Vlasenko | 8b22b07 | 2006-12-02 17:58:10 +0000 | [diff] [blame] | 832 | fputs(s, file); |
Denis Vlasenko | 8681180 | 2007-01-29 17:10:19 +0000 | [diff] [blame] | 833 | |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 834 | /* 'x' - just something which is not '\n', '\0' or NO_EOL_CHAR */ |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 835 | if (s[0]) |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 836 | lpc = 'x'; |
Denis Vlasenko | 8681180 | 2007-01-29 17:10:19 +0000 | [diff] [blame] | 837 | |
| 838 | /* had trailing '\0' and it was last char of file? */ |
| 839 | if (last_gets_char == LAST_IS_NUL) { |
| 840 | fputc('\0', file); |
| 841 | lpc = 'x'; /* */ |
| 842 | } else |
| 843 | /* had trailing '\n' or '\0'? */ |
| 844 | if (last_gets_char != NO_EOL_CHAR) { |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 845 | fputc(last_gets_char, file); |
| 846 | lpc = last_gets_char; |
Denis Vlasenko | 1375bc7 | 2006-12-02 20:12:12 +0000 | [diff] [blame] | 847 | } |
Denis Vlasenko | 8681180 | 2007-01-29 17:10:19 +0000 | [diff] [blame] | 848 | |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 849 | if (ferror(file)) { |
Denis Vlasenko | 4092082 | 2006-10-03 20:28:06 +0000 | [diff] [blame] | 850 | xfunc_error_retval = 4; /* It's what gnu sed exits with... */ |
Bernhard Reutner-Fischer | a3d4bf3 | 2006-06-03 21:40:11 +0000 | [diff] [blame] | 851 | bb_error_msg_and_die(bb_msg_write_error); |
Rob Landley | 53302f8 | 2004-02-18 09:54:15 +0000 | [diff] [blame] | 852 | } |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 853 | *last_puts_char = lpc; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 854 | } |
| 855 | |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 856 | #define sed_puts(s, n) (puts_maybe_newline(s, G.nonstdout, &last_puts_char, n)) |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 857 | |
Denis Vlasenko | 8274e06 | 2007-08-06 03:41:08 +0000 | [diff] [blame] | 858 | static int beg_match(sed_cmd_t *sed_cmd, const char *pattern_space) |
| 859 | { |
| 860 | int retval = sed_cmd->beg_match && !regexec(sed_cmd->beg_match, pattern_space, 0, NULL, 0); |
| 861 | if (retval) |
| 862 | G.previous_regex_ptr = sed_cmd->beg_match; |
| 863 | return retval; |
| 864 | } |
| 865 | |
Rob Landley | 2b26fd5 | 2006-02-24 02:30:39 +0000 | [diff] [blame] | 866 | /* Process all the lines in all the files */ |
| 867 | |
Rob Landley | dcc2866 | 2004-11-25 07:21:47 +0000 | [diff] [blame] | 868 | static void process_files(void) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 869 | { |
Rob Landley | ce4f0e9 | 2004-10-30 06:54:19 +0000 | [diff] [blame] | 870 | char *pattern_space, *next_line; |
Denis Vlasenko | 826c85f | 2007-01-28 23:26:15 +0000 | [diff] [blame] | 871 | int linenum = 0; |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 872 | char last_puts_char = '\n'; |
| 873 | char last_gets_char, next_gets_char; |
Denis Vlasenko | 2ea630f | 2006-12-10 02:52:19 +0000 | [diff] [blame] | 874 | sed_cmd_t *sed_cmd; |
| 875 | int substituted; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 876 | |
Rob Landley | 2b26fd5 | 2006-02-24 02:30:39 +0000 | [diff] [blame] | 877 | /* Prime the pump */ |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 878 | next_line = get_next_line(&next_gets_char); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 879 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 880 | /* Go through every line in each file */ |
Denis Vlasenko | f39c7c0 | 2008-02-28 17:59:01 +0000 | [diff] [blame] | 881 | again: |
Denis Vlasenko | 2ea630f | 2006-12-10 02:52:19 +0000 | [diff] [blame] | 882 | substituted = 0; |
Glenn L McGrath | 505bd0f | 2003-03-08 05:21:02 +0000 | [diff] [blame] | 883 | |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 884 | /* Advance to next line. Stop if out of lines. */ |
| 885 | pattern_space = next_line; |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 886 | if (!pattern_space) |
| 887 | return; |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 888 | last_gets_char = next_gets_char; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 889 | |
| 890 | /* Read one line in advance so we can act on the last line, |
| 891 | * the '$' address */ |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 892 | next_line = get_next_line(&next_gets_char); |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 893 | linenum++; |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 894 | |
| 895 | /* For every line, go through all the commands */ |
Denis Vlasenko | f39c7c0 | 2008-02-28 17:59:01 +0000 | [diff] [blame] | 896 | restart: |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 897 | for (sed_cmd = G.sed_cmd_head.next; sed_cmd; sed_cmd = sed_cmd->next) { |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 898 | int old_matched, matched; |
Eric Andersen | 52a3c27 | 2003-12-23 08:53:51 +0000 | [diff] [blame] | 899 | |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 900 | old_matched = sed_cmd->in_match; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 901 | |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 902 | /* Determine if this command matches this line: */ |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 903 | |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 904 | //bb_error_msg("match1:%d", sed_cmd->in_match); |
| 905 | //bb_error_msg("match2:%d", (!sed_cmd->beg_line && !sed_cmd->end_line |
| 906 | // && !sed_cmd->beg_match && !sed_cmd->end_match)); |
| 907 | //bb_error_msg("match3:%d", (sed_cmd->beg_line > 0 |
| 908 | // && (sed_cmd->end_line || sed_cmd->end_match |
| 909 | // ? (sed_cmd->beg_line <= linenum) |
| 910 | // : (sed_cmd->beg_line == linenum) |
| 911 | // ) |
| 912 | // ) |
| 913 | //bb_error_msg("match4:%d", (beg_match(sed_cmd, pattern_space))); |
| 914 | //bb_error_msg("match5:%d", (sed_cmd->beg_line == -1 && next_line == NULL)); |
| 915 | |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 916 | /* Are we continuing a previous multi-line match? */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 917 | sed_cmd->in_match = sed_cmd->in_match |
| 918 | /* Or is no range necessary? */ |
| 919 | || (!sed_cmd->beg_line && !sed_cmd->end_line |
| 920 | && !sed_cmd->beg_match && !sed_cmd->end_match) |
| 921 | /* Or did we match the start of a numerical range? */ |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 922 | || (sed_cmd->beg_line > 0 |
| 923 | && (sed_cmd->end_line || sed_cmd->end_match |
Denys Vlasenko | c467924 | 2010-06-04 01:31:48 +0200 | [diff] [blame] | 924 | /* note: even if end is numeric and is < linenum too, |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 925 | * GNU sed matches! We match too */ |
| 926 | ? (sed_cmd->beg_line <= linenum) /* N,end */ |
| 927 | : (sed_cmd->beg_line == linenum) /* N */ |
| 928 | ) |
| 929 | ) |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 930 | /* Or does this line match our begin address regex? */ |
Denis Vlasenko | 8274e06 | 2007-08-06 03:41:08 +0000 | [diff] [blame] | 931 | || (beg_match(sed_cmd, pattern_space)) |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 932 | /* Or did we match last line of input? */ |
| 933 | || (sed_cmd->beg_line == -1 && next_line == NULL); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 934 | |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 935 | /* Snapshot the value */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 936 | matched = sed_cmd->in_match; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 937 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 938 | //bb_error_msg("cmd:'%c' matched:%d beg_line:%d end_line:%d linenum:%d", |
| 939 | //sed_cmd->cmd, matched, sed_cmd->beg_line, sed_cmd->end_line, linenum); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 940 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 941 | /* Is this line the end of the current match? */ |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 942 | |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 943 | if (matched) { |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 944 | /* once matched, "n,xxx" range is dead, disabling it */ |
Denys Vlasenko | 2e284a4 | 2010-08-01 04:14:46 +0200 | [diff] [blame] | 945 | if (sed_cmd->beg_line > 0 |
| 946 | && !(option_mask32 & OPT_in_place) /* but not for -i */ |
| 947 | ) { |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 948 | sed_cmd->beg_line = -2; |
Denys Vlasenko | 2e284a4 | 2010-08-01 04:14:46 +0200 | [diff] [blame] | 949 | } |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 950 | sed_cmd->in_match = !( |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 951 | /* has the ending line come, or is this a single address command? */ |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 952 | (sed_cmd->end_line ? |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 953 | sed_cmd->end_line == -1 ? |
| 954 | !next_line |
| 955 | : (sed_cmd->end_line <= linenum) |
| 956 | : !sed_cmd->end_match |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 957 | ) |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 958 | /* or does this line matches our last address regex */ |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 959 | || (sed_cmd->end_match && old_matched |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 960 | && (regexec(sed_cmd->end_match, |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 961 | pattern_space, 0, NULL, 0) == 0)) |
| 962 | ); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 963 | } |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 964 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 965 | /* Skip blocks of commands we didn't match */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 966 | if (sed_cmd->cmd == '{') { |
Denis Vlasenko | 826c85f | 2007-01-28 23:26:15 +0000 | [diff] [blame] | 967 | if (sed_cmd->invert ? matched : !matched) { |
Denys Vlasenko | f2c16ed | 2010-04-20 04:00:03 -0400 | [diff] [blame] | 968 | unsigned nest_cnt = 0; |
| 969 | while (1) { |
| 970 | if (sed_cmd->cmd == '{') |
| 971 | nest_cnt++; |
| 972 | if (sed_cmd->cmd == '}') { |
| 973 | nest_cnt--; |
| 974 | if (nest_cnt == 0) |
| 975 | break; |
| 976 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 977 | sed_cmd = sed_cmd->next; |
Denis Vlasenko | 826c85f | 2007-01-28 23:26:15 +0000 | [diff] [blame] | 978 | if (!sed_cmd) |
| 979 | bb_error_msg_and_die("unterminated {"); |
| 980 | } |
| 981 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 982 | continue; |
| 983 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 984 | |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 985 | /* Okay, so did this line match? */ |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 986 | if (sed_cmd->invert ? matched : !matched) |
| 987 | continue; /* no */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 988 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 989 | /* Update last used regex in case a blank substitute BRE is found */ |
| 990 | if (sed_cmd->beg_match) { |
| 991 | G.previous_regex_ptr = sed_cmd->beg_match; |
| 992 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 993 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 994 | /* actual sedding */ |
| 995 | switch (sed_cmd->cmd) { |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 996 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 997 | /* Print line number */ |
| 998 | case '=': |
| 999 | fprintf(G.nonstdout, "%d\n", linenum); |
| 1000 | break; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1001 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1002 | /* Write the current pattern space up to the first newline */ |
| 1003 | case 'P': |
| 1004 | { |
| 1005 | char *tmp = strchr(pattern_space, '\n'); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1006 | if (tmp) { |
| 1007 | *tmp = '\0'; |
| 1008 | /* TODO: explain why '\n' below */ |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 1009 | sed_puts(pattern_space, '\n'); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1010 | *tmp = '\n'; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1011 | break; |
| 1012 | } |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1013 | /* Fall Through */ |
| 1014 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1015 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1016 | /* Write the current pattern space to output */ |
| 1017 | case 'p': |
| 1018 | /* NB: we print this _before_ the last line |
| 1019 | * (of current file) is printed. Even if |
| 1020 | * that line is nonterminated, we print |
| 1021 | * '\n' here (gnu sed does the same) */ |
| 1022 | sed_puts(pattern_space, '\n'); |
| 1023 | break; |
| 1024 | /* Delete up through first newline */ |
| 1025 | case 'D': |
| 1026 | { |
| 1027 | char *tmp = strchr(pattern_space, '\n'); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1028 | if (tmp) { |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 1029 | overlapping_strcpy(pattern_space, tmp + 1); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1030 | goto restart; |
| 1031 | } |
| 1032 | } |
| 1033 | /* discard this line. */ |
| 1034 | case 'd': |
| 1035 | goto discard_line; |
| 1036 | |
| 1037 | /* Substitute with regex */ |
| 1038 | case 's': |
| 1039 | if (!do_subst_command(sed_cmd, &pattern_space)) |
| 1040 | break; |
| 1041 | substituted |= 1; |
| 1042 | |
| 1043 | /* handle p option */ |
| 1044 | if (sed_cmd->sub_p) |
| 1045 | sed_puts(pattern_space, last_gets_char); |
| 1046 | /* handle w option */ |
| 1047 | if (sed_cmd->sw_file) |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 1048 | puts_maybe_newline( |
| 1049 | pattern_space, sed_cmd->sw_file, |
| 1050 | &sed_cmd->sw_last_char, last_gets_char); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1051 | break; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1052 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1053 | /* Append line to linked list to be printed later */ |
| 1054 | case 'a': |
| 1055 | append(sed_cmd->string); |
| 1056 | break; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1057 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1058 | /* Insert text before this line */ |
| 1059 | case 'i': |
| 1060 | sed_puts(sed_cmd->string, '\n'); |
| 1061 | break; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1062 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1063 | /* Cut and paste text (replace) */ |
| 1064 | case 'c': |
| 1065 | /* Only triggers on last line of a matching range. */ |
| 1066 | if (!sed_cmd->in_match) |
Denys Vlasenko | 96a1833 | 2010-04-19 22:36:07 -0400 | [diff] [blame] | 1067 | sed_puts(sed_cmd->string, '\n'); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1068 | goto discard_line; |
| 1069 | |
| 1070 | /* Read file, append contents to output */ |
| 1071 | case 'r': |
| 1072 | { |
| 1073 | FILE *rfile; |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1074 | rfile = fopen_for_read(sed_cmd->string); |
| 1075 | if (rfile) { |
| 1076 | char *line; |
| 1077 | |
| 1078 | while ((line = xmalloc_fgetline(rfile)) |
| 1079 | != NULL) |
| 1080 | append(line); |
| 1081 | xprint_and_close_file(rfile); |
| 1082 | } |
| 1083 | |
| 1084 | break; |
| 1085 | } |
| 1086 | |
| 1087 | /* Write pattern space to file. */ |
| 1088 | case 'w': |
| 1089 | puts_maybe_newline( |
| 1090 | pattern_space, sed_cmd->sw_file, |
| 1091 | &sed_cmd->sw_last_char, last_gets_char); |
| 1092 | break; |
| 1093 | |
| 1094 | /* Read next line from input */ |
| 1095 | case 'n': |
| 1096 | if (!G.be_quiet) |
| 1097 | sed_puts(pattern_space, last_gets_char); |
| 1098 | if (next_line) { |
| 1099 | free(pattern_space); |
| 1100 | pattern_space = next_line; |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 1101 | last_gets_char = next_gets_char; |
| 1102 | next_line = get_next_line(&next_gets_char); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1103 | substituted = 0; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1104 | linenum++; |
| 1105 | break; |
| 1106 | } |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1107 | /* fall through */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1108 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1109 | /* Quit. End of script, end of input. */ |
| 1110 | case 'q': |
| 1111 | /* Exit the outer while loop */ |
| 1112 | free(next_line); |
| 1113 | next_line = NULL; |
| 1114 | goto discard_commands; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1115 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1116 | /* Append the next line to the current line */ |
| 1117 | case 'N': |
| 1118 | { |
| 1119 | int len; |
| 1120 | /* If no next line, jump to end of script and exit. */ |
| 1121 | if (next_line == NULL) { |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1122 | free(next_line); |
| 1123 | next_line = NULL; |
| 1124 | goto discard_line; |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1125 | } |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 1126 | /* Append next_line, read new next_line. */ |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1127 | len = strlen(pattern_space); |
Denys Vlasenko | 9037787 | 2010-01-08 09:07:50 +0100 | [diff] [blame] | 1128 | pattern_space = xrealloc(pattern_space, len + strlen(next_line) + 2); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1129 | pattern_space[len] = '\n'; |
| 1130 | strcpy(pattern_space + len+1, next_line); |
| 1131 | last_gets_char = next_gets_char; |
| 1132 | next_line = get_next_line(&next_gets_char); |
| 1133 | linenum++; |
| 1134 | break; |
| 1135 | } |
| 1136 | |
| 1137 | /* Test/branch if substitution occurred */ |
| 1138 | case 't': |
| 1139 | if (!substituted) break; |
| 1140 | substituted = 0; |
| 1141 | /* Fall through */ |
| 1142 | /* Test/branch if substitution didn't occur */ |
| 1143 | case 'T': |
| 1144 | if (substituted) break; |
| 1145 | /* Fall through */ |
| 1146 | /* Branch to label */ |
| 1147 | case 'b': |
| 1148 | if (!sed_cmd->string) goto discard_commands; |
| 1149 | else sed_cmd = branch_to(sed_cmd->string); |
| 1150 | break; |
| 1151 | /* Transliterate characters */ |
| 1152 | case 'y': |
| 1153 | { |
| 1154 | int i, j; |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1155 | for (i = 0; pattern_space[i]; i++) { |
| 1156 | for (j = 0; sed_cmd->string[j]; j += 2) { |
| 1157 | if (pattern_space[i] == sed_cmd->string[j]) { |
| 1158 | pattern_space[i] = sed_cmd->string[j + 1]; |
| 1159 | break; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1160 | } |
| 1161 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1162 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1163 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1164 | break; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1165 | } |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1166 | case 'g': /* Replace pattern space with hold space */ |
| 1167 | free(pattern_space); |
| 1168 | pattern_space = xstrdup(G.hold_space ? G.hold_space : ""); |
| 1169 | break; |
| 1170 | case 'G': /* Append newline and hold space to pattern space */ |
| 1171 | { |
| 1172 | int pattern_space_size = 2; |
| 1173 | int hold_space_size = 0; |
| 1174 | |
| 1175 | if (pattern_space) |
| 1176 | pattern_space_size += strlen(pattern_space); |
| 1177 | if (G.hold_space) |
| 1178 | hold_space_size = strlen(G.hold_space); |
| 1179 | pattern_space = xrealloc(pattern_space, |
| 1180 | pattern_space_size + hold_space_size); |
| 1181 | if (pattern_space_size == 2) |
| 1182 | pattern_space[0] = 0; |
| 1183 | strcat(pattern_space, "\n"); |
| 1184 | if (G.hold_space) |
| 1185 | strcat(pattern_space, G.hold_space); |
| 1186 | last_gets_char = '\n'; |
| 1187 | |
| 1188 | break; |
| 1189 | } |
| 1190 | case 'h': /* Replace hold space with pattern space */ |
| 1191 | free(G.hold_space); |
| 1192 | G.hold_space = xstrdup(pattern_space); |
| 1193 | break; |
| 1194 | case 'H': /* Append newline and pattern space to hold space */ |
| 1195 | { |
| 1196 | int hold_space_size = 2; |
| 1197 | int pattern_space_size = 0; |
| 1198 | |
| 1199 | if (G.hold_space) |
| 1200 | hold_space_size += strlen(G.hold_space); |
| 1201 | if (pattern_space) |
| 1202 | pattern_space_size = strlen(pattern_space); |
| 1203 | G.hold_space = xrealloc(G.hold_space, |
| 1204 | hold_space_size + pattern_space_size); |
| 1205 | |
| 1206 | if (hold_space_size == 2) |
| 1207 | *G.hold_space = 0; |
| 1208 | strcat(G.hold_space, "\n"); |
| 1209 | if (pattern_space) |
| 1210 | strcat(G.hold_space, pattern_space); |
| 1211 | |
| 1212 | break; |
| 1213 | } |
| 1214 | case 'x': /* Exchange hold and pattern space */ |
| 1215 | { |
| 1216 | char *tmp = pattern_space; |
Denys Vlasenko | 90a9904 | 2009-09-06 02:36:23 +0200 | [diff] [blame] | 1217 | pattern_space = G.hold_space ? G.hold_space : xzalloc(1); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1218 | last_gets_char = '\n'; |
| 1219 | G.hold_space = tmp; |
| 1220 | break; |
| 1221 | } |
| 1222 | } /* switch */ |
| 1223 | } /* for each cmd */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1224 | |
| 1225 | /* |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1226 | * Exit point from sedding... |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1227 | */ |
Denis Vlasenko | 826c85f | 2007-01-28 23:26:15 +0000 | [diff] [blame] | 1228 | discard_commands: |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1229 | /* we will print the line unless we were told to be quiet ('-n') |
| 1230 | or if the line was suppressed (ala 'd'elete) */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 1231 | if (!G.be_quiet) |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 1232 | sed_puts(pattern_space, last_gets_char); |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1233 | |
| 1234 | /* Delete and such jump here. */ |
Denis Vlasenko | 826c85f | 2007-01-28 23:26:15 +0000 | [diff] [blame] | 1235 | discard_line: |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1236 | flush_append(); |
| 1237 | free(pattern_space); |
| 1238 | |
| 1239 | goto again; |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 1240 | } |
| 1241 | |
Glenn L McGrath | 42c2573 | 2003-10-04 05:27:56 +0000 | [diff] [blame] | 1242 | /* It is possible to have a command line argument with embedded |
Denis Vlasenko | 4b0bb9e | 2007-03-16 23:36:58 +0000 | [diff] [blame] | 1243 | * newlines. This counts as multiple command lines. |
| 1244 | * However, newline can be escaped: 's/e/z\<newline>z/' |
| 1245 | * We check for this. |
| 1246 | */ |
Glenn L McGrath | 42c2573 | 2003-10-04 05:27:56 +0000 | [diff] [blame] | 1247 | |
| 1248 | static void add_cmd_block(char *cmdstr) |
| 1249 | { |
Denis Vlasenko | 4b0bb9e | 2007-03-16 23:36:58 +0000 | [diff] [blame] | 1250 | char *sv, *eol; |
Glenn L McGrath | 42c2573 | 2003-10-04 05:27:56 +0000 | [diff] [blame] | 1251 | |
Denis Vlasenko | 4b0bb9e | 2007-03-16 23:36:58 +0000 | [diff] [blame] | 1252 | cmdstr = sv = xstrdup(cmdstr); |
| 1253 | do { |
| 1254 | eol = strchr(cmdstr, '\n'); |
| 1255 | next: |
| 1256 | if (eol) { |
| 1257 | /* Count preceding slashes */ |
| 1258 | int slashes = 0; |
| 1259 | char *sl = eol; |
| 1260 | |
| 1261 | while (sl != cmdstr && *--sl == '\\') |
| 1262 | slashes++; |
| 1263 | /* Odd number of preceding slashes - newline is escaped */ |
| 1264 | if (slashes & 1) { |
Denis Vlasenko | 0f293b9 | 2008-07-22 20:16:55 +0000 | [diff] [blame] | 1265 | overlapping_strcpy(eol - 1, eol); |
Denis Vlasenko | 4b0bb9e | 2007-03-16 23:36:58 +0000 | [diff] [blame] | 1266 | eol = strchr(eol, '\n'); |
| 1267 | goto next; |
| 1268 | } |
| 1269 | *eol = '\0'; |
| 1270 | } |
| 1271 | add_cmd(cmdstr); |
| 1272 | cmdstr = eol + 1; |
| 1273 | } while (eol); |
| 1274 | free(sv); |
Glenn L McGrath | 42c2573 | 2003-10-04 05:27:56 +0000 | [diff] [blame] | 1275 | } |
| 1276 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 1277 | int sed_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1278 | int sed_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 1279 | { |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 1280 | unsigned opt; |
Denis Vlasenko | b97c984 | 2006-10-01 21:05:12 +0000 | [diff] [blame] | 1281 | llist_t *opt_e, *opt_f; |
| 1282 | int status = EXIT_SUCCESS; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 1283 | |
Denis Vlasenko | 74324c8 | 2007-06-04 10:16:52 +0000 | [diff] [blame] | 1284 | INIT_G(); |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 1285 | |
Mark Whitley | 858c1ad | 2000-07-11 21:38:47 +0000 | [diff] [blame] | 1286 | /* destroy command strings on exit */ |
Rob Landley | 0b65628 | 2006-05-08 22:17:23 +0000 | [diff] [blame] | 1287 | if (ENABLE_FEATURE_CLEAN_UP) atexit(sed_free_and_close_stuff); |
Mark Whitley | 858c1ad | 2000-07-11 21:38:47 +0000 | [diff] [blame] | 1288 | |
Rob Landley | fae1dc8 | 2005-11-20 07:44:35 +0000 | [diff] [blame] | 1289 | /* Lie to autoconf when it starts asking stupid questions. */ |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 1290 | if (argv[1] && !strcmp(argv[1], "--version")) { |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1291 | puts("This is not GNU sed version 4.0"); |
| 1292 | return 0; |
Eric Andersen | c06f568 | 2004-02-04 10:57:46 +0000 | [diff] [blame] | 1293 | } |
Eric Andersen | c06f568 | 2004-02-04 10:57:46 +0000 | [diff] [blame] | 1294 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1295 | /* do normal option parsing */ |
Denis Vlasenko | b97c984 | 2006-10-01 21:05:12 +0000 | [diff] [blame] | 1296 | opt_e = opt_f = NULL; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1297 | opt_complementary = "e::f::" /* can occur multiple times */ |
| 1298 | "nn"; /* count -n */ |
Denys Vlasenko | 2e284a4 | 2010-08-01 04:14:46 +0200 | [diff] [blame] | 1299 | /* -i must be first, to match OPT_in_place definition */ |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 1300 | opt = getopt32(argv, "irne:f:", &opt_e, &opt_f, |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 1301 | &G.be_quiet); /* counter for -n */ |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 1302 | //argc -= optind; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1303 | argv += optind; |
| 1304 | if (opt & OPT_in_place) { // -i |
Denis Vlasenko | 750fc6d | 2006-09-22 08:56:03 +0000 | [diff] [blame] | 1305 | atexit(cleanup_outname); |
| 1306 | } |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 1307 | if (opt & 0x2) G.regex_type |= REG_EXTENDED; // -r |
| 1308 | //if (opt & 0x4) G.be_quiet++; // -n |
Denis Vlasenko | 945bd3d | 2007-04-12 21:20:25 +0000 | [diff] [blame] | 1309 | while (opt_e) { // -e |
Denis Vlasenko | d50dda8 | 2008-06-15 05:40:56 +0000 | [diff] [blame] | 1310 | add_cmd_block(llist_pop(&opt_e)); |
Denis Vlasenko | 750fc6d | 2006-09-22 08:56:03 +0000 | [diff] [blame] | 1311 | } |
Denis Vlasenko | 945bd3d | 2007-04-12 21:20:25 +0000 | [diff] [blame] | 1312 | while (opt_f) { // -f |
| 1313 | char *line; |
| 1314 | FILE *cmdfile; |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 1315 | cmdfile = xfopen_for_read(llist_pop(&opt_f)); |
Denis Vlasenko | 8ee649a | 2008-03-26 20:04:27 +0000 | [diff] [blame] | 1316 | while ((line = xmalloc_fgetline(cmdfile)) != NULL) { |
Denis Vlasenko | 945bd3d | 2007-04-12 21:20:25 +0000 | [diff] [blame] | 1317 | add_cmd(line); |
| 1318 | free(line); |
| 1319 | } |
| 1320 | fclose(cmdfile); |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 1321 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1322 | /* if we didn't get a pattern from -e or -f, use argv[0] */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 1323 | if (!(opt & 0x18)) { |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 1324 | if (!*argv) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1325 | bb_show_usage(); |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1326 | add_cmd_block(*argv++); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1327 | } |
Glenn L McGrath | 42c2573 | 2003-10-04 05:27:56 +0000 | [diff] [blame] | 1328 | /* Flush any unfinished commands. */ |
| 1329 | add_cmd(""); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1330 | |
Rob Landley | 53302f8 | 2004-02-18 09:54:15 +0000 | [diff] [blame] | 1331 | /* By default, we write to stdout */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 1332 | G.nonstdout = stdout; |
Rob Landley | 53302f8 | 2004-02-18 09:54:15 +0000 | [diff] [blame] | 1333 | |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1334 | /* argv[0..(argc-1)] should be names of file to process. If no |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1335 | * files were specified or '-' was specified, take input from stdin. |
| 1336 | * Otherwise, we process all the files specified. */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1337 | if (argv[0] == NULL) { |
| 1338 | if (opt & OPT_in_place) |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 1339 | bb_error_msg_and_die(bb_msg_requires_arg, "-i"); |
Rob Landley | dcc2866 | 2004-11-25 07:21:47 +0000 | [diff] [blame] | 1340 | add_input_file(stdin); |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1341 | } else { |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1342 | int i; |
| 1343 | FILE *file; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1344 | |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 1345 | for (i = 0; argv[i]; i++) { |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 1346 | struct stat statbuf; |
| 1347 | int nonstdoutfd; |
| 1348 | |
Denis Vlasenko | 9f73944 | 2006-12-16 23:49:13 +0000 | [diff] [blame] | 1349 | if (LONE_DASH(argv[i]) && !(opt & OPT_in_place)) { |
Rob Landley | dcc2866 | 2004-11-25 07:21:47 +0000 | [diff] [blame] | 1350 | add_input_file(stdin); |
| 1351 | process_files(); |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 1352 | continue; |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 1353 | } |
Denis Vlasenko | ddec5af | 2006-10-26 23:25:17 +0000 | [diff] [blame] | 1354 | file = fopen_or_warn(argv[i], "r"); |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 1355 | if (!file) { |
| 1356 | status = EXIT_FAILURE; |
| 1357 | continue; |
| 1358 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1359 | if (!(opt & OPT_in_place)) { |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 1360 | add_input_file(file); |
| 1361 | continue; |
| 1362 | } |
| 1363 | |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 1364 | G.outname = xasprintf("%sXXXXXX", argv[i]); |
| 1365 | nonstdoutfd = mkstemp(G.outname); |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 1366 | if (-1 == nonstdoutfd) |
Denys Vlasenko | 6331cf0 | 2009-11-13 09:08:27 +0100 | [diff] [blame] | 1367 | bb_perror_msg_and_die("can't create temp file %s", G.outname); |
Denys Vlasenko | a7ccdee | 2009-11-15 23:28:11 +0100 | [diff] [blame] | 1368 | G.nonstdout = xfdopen_for_write(nonstdoutfd); |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 1369 | |
Denys Vlasenko | 5799248 | 2009-11-13 09:09:07 +0100 | [diff] [blame] | 1370 | /* Set permissions/owner of output file */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1371 | fstat(fileno(file), &statbuf); |
Denys Vlasenko | 3b727cc | 2010-06-18 02:12:56 +0200 | [diff] [blame] | 1372 | /* chmod'ing AFTER chown would preserve suid/sgid bits, |
| 1373 | * but GNU sed 4.2.1 does not preserve them either */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1374 | fchmod(nonstdoutfd, statbuf.st_mode); |
Denys Vlasenko | 5799248 | 2009-11-13 09:09:07 +0100 | [diff] [blame] | 1375 | fchown(nonstdoutfd, statbuf.st_uid, statbuf.st_gid); |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 1376 | add_input_file(file); |
| 1377 | process_files(); |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 1378 | fclose(G.nonstdout); |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 1379 | |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 1380 | G.nonstdout = stdout; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 1381 | /* unlink(argv[i]); */ |
Denis Vlasenko | cb448fe | 2008-02-17 14:28:53 +0000 | [diff] [blame] | 1382 | xrename(G.outname, argv[i]); |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 1383 | free(G.outname); |
Denis Vlasenko | 4027664 | 2007-11-13 16:48:10 +0000 | [diff] [blame] | 1384 | G.outname = NULL; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1385 | } |
Denys Vlasenko | eb08b6e | 2010-06-19 17:51:06 +0200 | [diff] [blame] | 1386 | /* Here, to handle "sed 'cmds' nonexistent_file" case we did: |
| 1387 | * if (G.current_input_file >= G.input_file_count) |
| 1388 | * return status; |
| 1389 | * but it's not needed since process_files() works correctly |
| 1390 | * in this case too. */ |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1391 | } |
Denys Vlasenko | eb08b6e | 2010-06-19 17:51:06 +0200 | [diff] [blame] | 1392 | process_files(); |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1393 | |
Matt Kraai | a5f09c6 | 2001-11-12 16:44:55 +0000 | [diff] [blame] | 1394 | return status; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 1395 | } |