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 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 13 | * Licensed under GPLv2, see file LICENSE in this source tree. |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 14 | */ |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 15 | /* Code overview. |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 16 | * |
| 17 | * Files are laid out to avoid unnecessary function declarations. So for |
| 18 | * example, every function add_cmd calls occurs before add_cmd in this file. |
| 19 | * |
| 20 | * add_cmd() is called on each line of sed command text (from a file or from |
| 21 | * the command line). It calls get_address() and parse_cmd_args(). The |
| 22 | * resulting sed_cmd_t structures are appended to a linked list |
| 23 | * (G.sed_cmd_head/G.sed_cmd_tail). |
| 24 | * |
Denys Vlasenko | a221bc5 | 2011-09-13 18:40:22 +0200 | [diff] [blame] | 25 | * process_files() does actual sedding, reading data lines from each input FILE* |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 26 | * (which could be stdin) and applying the sed command list (sed_cmd_head) to |
| 27 | * each of the resulting lines. |
| 28 | * |
| 29 | * sed_main() is where external code calls into this, with a command line. |
| 30 | */ |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 31 | /* Supported features and commands in this version of sed: |
| 32 | * |
| 33 | * - comments ('#') |
| 34 | * - address matching: num|/matchstr/[,num|/matchstr/|$]command |
| 35 | * - commands: (p)rint, (d)elete, (s)ubstitue (with g & I flags) |
| 36 | * - edit commands: (a)ppend, (i)nsert, (c)hange |
| 37 | * - file commands: (r)ead |
| 38 | * - backreferences in substitution expressions (\0, \1, \2...\9) |
| 39 | * - grouped commands: {cmd1;cmd2} |
| 40 | * - transliteration (y/source-chars/dest-chars/) |
| 41 | * - pattern space hold space storing / swapping (g, h, x) |
| 42 | * - labels / branching (: label, b, t, T) |
| 43 | * |
| 44 | * (Note: Specifying an address (range) to match is *optional*; commands |
| 45 | * default to the whole pattern space if no specific address match was |
| 46 | * requested.) |
| 47 | * |
| 48 | * Todo: |
| 49 | * - Create a wrapper around regex to make libc's regex conform with sed |
| 50 | * |
Mimi Li | 37a79c0 | 2012-07-24 13:20:12 +0200 | [diff] [blame] | 51 | * Reference |
| 52 | * http://www.opengroup.org/onlinepubs/007904975/utilities/sed.html |
| 53 | * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/sed.html |
Denys Vlasenko | 63f4d32 | 2015-04-17 14:24:55 +0200 | [diff] [blame] | 54 | * http://sed.sourceforge.net/sedfaq3.html |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 55 | */ |
Denys Vlasenko | 73225b6 | 2013-11-13 12:45:33 +0100 | [diff] [blame] | 56 | //config:config SED |
Denys Vlasenko | 4eed2c6 | 2017-07-18 22:01:24 +0200 | [diff] [blame] | 57 | //config: bool "sed (12 kb)" |
Denys Vlasenko | 73225b6 | 2013-11-13 12:45:33 +0100 | [diff] [blame] | 58 | //config: default y |
| 59 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 60 | //config: sed is used to perform text transformations on a file |
| 61 | //config: or input from a pipeline. |
Denys Vlasenko | 73225b6 | 2013-11-13 12:45:33 +0100 | [diff] [blame] | 62 | |
Denys Vlasenko | 73225b6 | 2013-11-13 12:45:33 +0100 | [diff] [blame] | 63 | //applet:IF_SED(APPLET(sed, BB_DIR_BIN, BB_SUID_DROP)) |
| 64 | |
Denys Vlasenko | 0c4dbd4 | 2017-09-18 16:28:43 +0200 | [diff] [blame] | 65 | //kbuild:lib-$(CONFIG_SED) += sed.o |
| 66 | |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 67 | //usage:#define sed_trivial_usage |
Denys Vlasenko | 269b36a | 2017-08-07 02:12:36 +0200 | [diff] [blame] | 68 | //usage: "[-i[SFX]] [-nrE] [-f FILE]... [-e CMD]... [FILE]...\n" |
| 69 | //usage: "or: sed [-i[SFX]] [-nrE] CMD [FILE]..." |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 70 | //usage:#define sed_full_usage "\n\n" |
Denys Vlasenko | 6642676 | 2011-06-05 03:58:28 +0200 | [diff] [blame] | 71 | //usage: " -e CMD Add CMD to sed commands to be executed" |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 72 | //usage: "\n -f FILE Add FILE contents to sed commands to be executed" |
Denys Vlasenko | 6b6826f | 2021-06-13 01:08:48 +0200 | [diff] [blame] | 73 | //usage: "\n -i[SFX] Edit files in-place (otherwise write to stdout)" |
Denys Vlasenko | 1d7ad7a | 2012-06-21 09:45:11 +0200 | [diff] [blame] | 74 | //usage: "\n Optionally back files up, appending SFX" |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 75 | //usage: "\n -n Suppress automatic printing of pattern space" |
Denys Vlasenko | a82e32d | 2013-10-30 13:00:00 +0100 | [diff] [blame] | 76 | //usage: "\n -r,-E Use extended regex syntax" |
Pere Orga | 6a3e01d | 2011-04-01 22:56:30 +0200 | [diff] [blame] | 77 | //usage: "\n" |
| 78 | //usage: "\nIf no -e or -f, the first non-option argument is the sed command string." |
| 79 | //usage: "\nRemaining arguments are input files (stdin if none)." |
| 80 | //usage: |
| 81 | //usage:#define sed_example_usage |
| 82 | //usage: "$ echo \"foo\" | sed -e 's/f[a-zA-Z]o/bar/g'\n" |
| 83 | //usage: "bar\n" |
| 84 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 85 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 86 | #include "common_bufsiz.h" |
"Vladimir N. Oleynik" | 23f62fc | 2005-09-14 16:59:11 +0000 | [diff] [blame] | 87 | #include "xregex.h" |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 88 | |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 89 | #if 0 |
| 90 | # define dbg(...) bb_error_msg(__VA_ARGS__) |
| 91 | #else |
| 92 | # define dbg(...) ((void)0) |
| 93 | #endif |
| 94 | |
| 95 | |
Denys Vlasenko | 2e284a4 | 2010-08-01 04:14:46 +0200 | [diff] [blame] | 96 | enum { |
| 97 | OPT_in_place = 1 << 0, |
| 98 | }; |
| 99 | |
Denys Vlasenko | 286b337 | 2022-01-04 19:42:36 +0100 | [diff] [blame] | 100 | struct sed_FILE { |
| 101 | struct sed_FILE *next; /* Next (linked list, NULL terminated) */ |
| 102 | const char *fname; |
| 103 | FILE *fp; |
| 104 | }; |
| 105 | |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 106 | /* Each sed command turns into one of these structures. */ |
Glenn L McGrath | e7a8bc9 | 2003-03-09 10:23:57 +0000 | [diff] [blame] | 107 | typedef struct sed_cmd_s { |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 108 | /* Ordered by alignment requirements: currently 36 bytes on x86 */ |
Denis Vlasenko | 34c4e5f | 2007-01-30 22:25:16 +0000 | [diff] [blame] | 109 | struct sed_cmd_s *next; /* Next command (linked list, NULL terminated) */ |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 110 | |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 111 | /* address storage */ |
| 112 | regex_t *beg_match; /* sed -e '/match/cmd' */ |
| 113 | regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */ |
| 114 | regex_t *sub_match; /* For 's/sub_match/string/' */ |
| 115 | int beg_line; /* 'sed 1p' 0 == apply commands to all lines */ |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 116 | int beg_line_orig; /* copy of the above, needed for -i */ |
Denys Vlasenko | 63f4d32 | 2015-04-17 14:24:55 +0200 | [diff] [blame] | 117 | int end_line; /* 'sed 1,3p' 0 == one line only. -1 = last line ($). -2-N = +N */ |
| 118 | int end_line_orig; |
Bernhard Reutner-Fischer | b7f3973 | 2006-03-01 20:14:16 +0000 | [diff] [blame] | 119 | |
Denys Vlasenko | 2a4bba3 | 2016-01-24 15:52:16 +0100 | [diff] [blame] | 120 | FILE *sw_file; /* File (sw) command writes to, NULL for none. */ |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 121 | char *string; /* Data string for (saicytb) commands. */ |
Glenn L McGrath | fc4cb4d | 2003-04-12 16:10:42 +0000 | [diff] [blame] | 122 | |
Denis Vlasenko | 284d0fa | 2008-02-16 13:18:17 +0000 | [diff] [blame] | 123 | unsigned which_match; /* (s) Which match to replace (0 for all) */ |
Glenn L McGrath | fc4cb4d | 2003-04-12 16:10:42 +0000 | [diff] [blame] | 124 | |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 125 | /* Bitfields (gcc won't group them if we don't) */ |
Denis Vlasenko | 34c4e5f | 2007-01-30 22:25:16 +0000 | [diff] [blame] | 126 | unsigned invert:1; /* the '!' after the address */ |
| 127 | unsigned in_match:1; /* Next line also included in match? */ |
| 128 | unsigned sub_p:1; /* (s) print option */ |
Denis Vlasenko | 1375bc7 | 2006-12-02 20:12:12 +0000 | [diff] [blame] | 129 | |
Denis Vlasenko | 34c4e5f | 2007-01-30 22:25:16 +0000 | [diff] [blame] | 130 | 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] | 131 | |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 132 | /* GENERAL FIELDS */ |
| 133 | char cmd; /* The command char: abcdDgGhHilnNpPqrstwxy:={} */ |
Glenn L McGrath | e7a8bc9 | 2003-03-09 10:23:57 +0000 | [diff] [blame] | 134 | } sed_cmd_t; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 135 | |
Denis Vlasenko | 6ca409e | 2007-08-12 20:58:27 +0000 | [diff] [blame] | 136 | static const char semicolon_whitespace[] ALIGN1 = "; \n\r\t\v"; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 137 | |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 138 | struct globals { |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 139 | /* options */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 140 | int be_quiet, regex_type; |
Denys Vlasenko | 259b3c0 | 2013-11-28 03:14:16 +0100 | [diff] [blame] | 141 | |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 142 | FILE *nonstdout; |
| 143 | char *outname, *hold_space; |
Denys Vlasenko | 259b3c0 | 2013-11-28 03:14:16 +0100 | [diff] [blame] | 144 | smallint exitcode; |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 145 | |
Denys Vlasenko | 259b3c0 | 2013-11-28 03:14:16 +0100 | [diff] [blame] | 146 | /* list of input files */ |
Denys Vlasenko | deb0769 | 2013-11-28 12:08:51 +0100 | [diff] [blame] | 147 | int current_input_file, last_input_file; |
| 148 | char **input_file_list; |
Denys Vlasenko | 259b3c0 | 2013-11-28 03:14:16 +0100 | [diff] [blame] | 149 | FILE *current_fp; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 150 | |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 151 | regmatch_t regmatch[10]; |
| 152 | regex_t *previous_regex_ptr; |
Denis Vlasenko | 9213a9e | 2006-09-17 16:28:10 +0000 | [diff] [blame] | 153 | |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 154 | /* linked list of sed commands */ |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 155 | sed_cmd_t *sed_cmd_head, **sed_cmd_tail; |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 156 | |
Denys Vlasenko | 259b3c0 | 2013-11-28 03:14:16 +0100 | [diff] [blame] | 157 | /* linked list of append lines */ |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 158 | llist_t *append_head; |
| 159 | |
Denys Vlasenko | 286b337 | 2022-01-04 19:42:36 +0100 | [diff] [blame] | 160 | /* linked list of FILEs opened for 'w' and s///w'. |
| 161 | * Needed to handle duplicate fnames: sed '/a/w F;/b/w F' |
| 162 | */ |
| 163 | struct sed_FILE *FILE_head; |
| 164 | |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 165 | char *add_cmd_line; |
| 166 | |
| 167 | struct pipeline { |
Denys Vlasenko | fb132e4 | 2010-10-29 11:46:52 +0200 | [diff] [blame] | 168 | char *buf; /* Space to hold string */ |
| 169 | int idx; /* Space used */ |
| 170 | int len; /* Space allocated */ |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 171 | } pipeline; |
Denys Vlasenko | 98a4c7c | 2010-02-04 15:00:15 +0100 | [diff] [blame] | 172 | } FIX_ALIASING; |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 173 | #define G (*(struct globals*)bb_common_bufsiz1) |
Denis Vlasenko | 74324c8 | 2007-06-04 10:16:52 +0000 | [diff] [blame] | 174 | #define INIT_G() do { \ |
Denys Vlasenko | 47cfbf3 | 2016-04-21 18:18:48 +0200 | [diff] [blame] | 175 | setup_common_bufsiz(); \ |
Denys Vlasenko | 7b85ec3 | 2015-10-13 17:17:34 +0200 | [diff] [blame] | 176 | BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \ |
Denis Vlasenko | 74324c8 | 2007-06-04 10:16:52 +0000 | [diff] [blame] | 177 | G.sed_cmd_tail = &G.sed_cmd_head; \ |
| 178 | } while (0) |
| 179 | |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 180 | |
Bernhard Reutner-Fischer | b7f3973 | 2006-03-01 20:14:16 +0000 | [diff] [blame] | 181 | #if ENABLE_FEATURE_CLEAN_UP |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 182 | static void sed_free_and_close_stuff(void) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 183 | { |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 184 | sed_cmd_t *sed_cmd = G.sed_cmd_head; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 185 | |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 186 | llist_free(G.append_head, free); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 187 | |
Glenn L McGrath | 56c633c | 2003-03-28 04:23:23 +0000 | [diff] [blame] | 188 | while (sed_cmd) { |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 189 | sed_cmd_t *sed_cmd_next = sed_cmd->next; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 190 | |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 191 | if (sed_cmd->sw_file) |
Denys Vlasenko | 2a4bba3 | 2016-01-24 15:52:16 +0100 | [diff] [blame] | 192 | fclose(sed_cmd->sw_file); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 193 | |
Denys Vlasenko | 706a9a0 | 2018-09-25 12:50:54 +0200 | [diff] [blame] | 194 | /* Used to free regexps, but now there is code |
| 195 | * in get_address() which can reuse a regexp |
| 196 | * for constructs as /regexp/cmd1;//cmd2 |
| 197 | * leading to double-frees here: |
| 198 | */ |
| 199 | //if (sed_cmd->beg_match) { |
| 200 | // regfree(sed_cmd->beg_match); |
| 201 | // free(sed_cmd->beg_match); |
| 202 | //} |
| 203 | //if (sed_cmd->end_match) { |
| 204 | // regfree(sed_cmd->end_match); |
| 205 | // free(sed_cmd->end_match); |
| 206 | //} |
| 207 | //if (sed_cmd->sub_match) { |
| 208 | // regfree(sed_cmd->sub_match); |
| 209 | // free(sed_cmd->sub_match); |
| 210 | //} |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 211 | free(sed_cmd->string); |
Glenn L McGrath | 56c633c | 2003-03-28 04:23:23 +0000 | [diff] [blame] | 212 | free(sed_cmd); |
| 213 | sed_cmd = sed_cmd_next; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 214 | } |
Rob Landley | ce4f0e9 | 2004-10-30 06:54:19 +0000 | [diff] [blame] | 215 | |
Denis Vlasenko | 6081868 | 2007-09-28 22:07:23 +0000 | [diff] [blame] | 216 | free(G.hold_space); |
Rob Landley | dcc2866 | 2004-11-25 07:21:47 +0000 | [diff] [blame] | 217 | |
Denys Vlasenko | 259b3c0 | 2013-11-28 03:14:16 +0100 | [diff] [blame] | 218 | if (G.current_fp) |
| 219 | fclose(G.current_fp); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 220 | } |
Denis Vlasenko | 666da5e | 2006-12-26 18:17:42 +0000 | [diff] [blame] | 221 | #else |
| 222 | void sed_free_and_close_stuff(void); |
Mark Whitley | c41e8c8 | 2000-07-12 23:35:21 +0000 | [diff] [blame] | 223 | #endif |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 224 | |
Denys Vlasenko | 286b337 | 2022-01-04 19:42:36 +0100 | [diff] [blame] | 225 | static FILE *sed_xfopen_w(const char *fname) |
| 226 | { |
| 227 | struct sed_FILE **pp = &G.FILE_head; |
| 228 | struct sed_FILE *cur; |
| 229 | while ((cur = *pp) != NULL) { |
| 230 | if (strcmp(cur->fname, fname) == 0) |
| 231 | return cur->fp; |
| 232 | pp = &cur->next; |
| 233 | } |
| 234 | *pp = cur = xzalloc(sizeof(*cur)); |
| 235 | /*cur->next = NULL; - already is */ |
| 236 | cur->fname = xstrdup(fname); |
| 237 | cur->fp = xfopen_for_write(fname); |
| 238 | return cur->fp; |
| 239 | } |
| 240 | |
Rob Landley | 53302f8 | 2004-02-18 09:54:15 +0000 | [diff] [blame] | 241 | /* If something bad happens during -i operation, delete temp file */ |
| 242 | |
| 243 | static void cleanup_outname(void) |
| 244 | { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 245 | if (G.outname) unlink(G.outname); |
Rob Landley | 53302f8 | 2004-02-18 09:54:15 +0000 | [diff] [blame] | 246 | } |
| 247 | |
Denis Vlasenko | 4027664 | 2007-11-13 16:48:10 +0000 | [diff] [blame] | 248 | /* strcpy, replacing "\from" with 'to'. If to is NUL, replacing "\any" with 'any' */ |
Denys Vlasenko | cbdff15 | 2016-04-24 16:18:03 +0200 | [diff] [blame] | 249 | static unsigned 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] | 250 | { |
Denys Vlasenko | cbdff15 | 2016-04-24 16:18:03 +0200 | [diff] [blame] | 251 | char *d = dest; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 252 | int i = 0; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 253 | |
Denys Vlasenko | cbdff15 | 2016-04-24 16:18:03 +0200 | [diff] [blame] | 254 | if (len == -1) |
| 255 | len = strlen(string); |
| 256 | |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 257 | while (i < len) { |
| 258 | if (string[i] == '\\') { |
| 259 | if (!to || string[i+1] == from) { |
Denys Vlasenko | cbdff15 | 2016-04-24 16:18:03 +0200 | [diff] [blame] | 260 | if ((*d = to ? to : string[i+1]) == '\0') |
| 261 | return d - dest; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 262 | i += 2; |
Denys Vlasenko | cbdff15 | 2016-04-24 16:18:03 +0200 | [diff] [blame] | 263 | d++; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 264 | continue; |
Denis Vlasenko | 4ebaf10 | 2007-01-19 21:33:19 +0000 | [diff] [blame] | 265 | } |
Denys Vlasenko | cbdff15 | 2016-04-24 16:18:03 +0200 | [diff] [blame] | 266 | i++; /* skip backslash in string[] */ |
| 267 | *d++ = '\\'; |
| 268 | /* fall through: copy next char verbatim */ |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 269 | } |
Denys Vlasenko | cbdff15 | 2016-04-24 16:18:03 +0200 | [diff] [blame] | 270 | if ((*d = string[i++]) == '\0') |
| 271 | return d - dest; |
| 272 | d++; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 273 | } |
Denys Vlasenko | cbdff15 | 2016-04-24 16:18:03 +0200 | [diff] [blame] | 274 | *d = '\0'; |
| 275 | return d - dest; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 276 | } |
| 277 | |
Denys Vlasenko | e998c7c | 2022-01-23 18:48:49 +0100 | [diff] [blame] | 278 | static char *copy_parsing_escapes(const char *string, int len, char delim) |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 279 | { |
Pascal Bellard | d3e4be3 | 2011-05-05 00:26:37 +0200 | [diff] [blame] | 280 | const char *s; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 281 | char *dest = xmalloc(len + 1); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 282 | |
Pascal Bellard | d3e4be3 | 2011-05-05 00:26:37 +0200 | [diff] [blame] | 283 | /* sed recognizes \n */ |
Denys Vlasenko | 6a0abcc | 2011-05-03 00:52:22 +0200 | [diff] [blame] | 284 | /* GNU sed also recognizes \t and \r */ |
Pascal Bellard | d3e4be3 | 2011-05-05 00:26:37 +0200 | [diff] [blame] | 285 | for (s = "\nn\tt\rr"; *s; s += 2) { |
Denys Vlasenko | cbdff15 | 2016-04-24 16:18:03 +0200 | [diff] [blame] | 286 | len = parse_escapes(dest, string, len, s[1], s[0]); |
Pascal Bellard | d3e4be3 | 2011-05-05 00:26:37 +0200 | [diff] [blame] | 287 | string = dest; |
Pascal Bellard | d3e4be3 | 2011-05-05 00:26:37 +0200 | [diff] [blame] | 288 | } |
Denys Vlasenko | e998c7c | 2022-01-23 18:48:49 +0100 | [diff] [blame] | 289 | if (delim) { |
| 290 | /* we additionally unescape any instances of escaped delimiter. |
| 291 | * For example, in 's+9\++X+' the pattern is "9+", not "9\+". |
| 292 | */ |
| 293 | len = parse_escapes(dest, string, len, delim, delim); |
| 294 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 295 | return dest; |
| 296 | } |
| 297 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 298 | /* |
Eric Andersen | 28b3c53 | 2001-01-02 11:01:31 +0000 | [diff] [blame] | 299 | * index_of_next_unescaped_regexp_delim - walks left to right through a string |
| 300 | * 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] | 301 | * expression delimiter (typically a forward slash ('/')) not preceded by |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 302 | * a backslash ('\'). A negative delimiter disables square bracket checking. |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 303 | */ |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 304 | 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] | 305 | { |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 306 | int bracket = -1; |
| 307 | int escaped = 0; |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 308 | int idx = 0; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 309 | char ch; |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 310 | |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 311 | if (delimiter < 0) { |
| 312 | bracket--; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 313 | delimiter = -delimiter; |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 314 | } |
| 315 | |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 316 | for (; (ch = str[idx]) != '\0'; idx++) { |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 317 | if (bracket >= 0) { |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 318 | if (ch == ']' |
| 319 | && !(bracket == idx - 1 || (bracket == idx - 2 && str[idx - 1] == '^')) |
| 320 | ) { |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 321 | bracket = -1; |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 322 | } |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 323 | } else if (escaped) |
| 324 | escaped = 0; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 325 | else if (ch == '\\') |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 326 | escaped = 1; |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 327 | else if (bracket == -1 && ch == '[') |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 328 | bracket = idx; |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 329 | else if (ch == delimiter) |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 330 | return idx; |
| 331 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 332 | |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 333 | /* 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] | 334 | bb_error_msg_and_die("unmatched '%c'", delimiter); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 335 | } |
| 336 | |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 337 | /* |
| 338 | * Returns the index of the third delimiter |
| 339 | */ |
Denis Vlasenko | 9356b50 | 2007-01-29 23:44:38 +0000 | [diff] [blame] | 340 | 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] | 341 | { |
Denis Vlasenko | 9356b50 | 2007-01-29 23:44:38 +0000 | [diff] [blame] | 342 | const char *cmdstr_ptr = cmdstr; |
Denys Vlasenko | d29ae7e | 2012-01-15 20:06:03 +0100 | [diff] [blame] | 343 | unsigned char delimiter; |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 344 | int idx = 0; |
| 345 | |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 346 | /* 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] | 347 | * (typically a 'slash') is now our regexp delimiter... */ |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 348 | if (*cmdstr == '\0') |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 349 | bb_simple_error_msg_and_die("bad format in substitution expression"); |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 350 | delimiter = *cmdstr_ptr++; |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 351 | |
| 352 | /* save the match string */ |
| 353 | idx = index_of_next_unescaped_regexp_delim(delimiter, cmdstr_ptr); |
Denys Vlasenko | e998c7c | 2022-01-23 18:48:49 +0100 | [diff] [blame] | 354 | *match = copy_parsing_escapes(cmdstr_ptr, idx, delimiter); |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 355 | /* save the replacement string */ |
| 356 | cmdstr_ptr += idx + 1; |
Denys Vlasenko | d29ae7e | 2012-01-15 20:06:03 +0100 | [diff] [blame] | 357 | idx = index_of_next_unescaped_regexp_delim(- (int)delimiter, cmdstr_ptr); |
Denys Vlasenko | f12fb1e | 2022-01-23 19:04:27 +0100 | [diff] [blame] | 358 | //GNU sed 4.8: |
| 359 | // echo 789 | sed 's&8&\&&' - 7&9 ("\&" remained "\&") |
| 360 | // echo 789 | sed 's1\(8\)1\1\11' - 7119 ("\1\1" become "11") |
| 361 | *replace = copy_parsing_escapes(cmdstr_ptr, idx, delimiter != '&' ? delimiter : 0); |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 362 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 363 | return ((cmdstr_ptr - cmdstr) + idx); |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 364 | } |
| 365 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 366 | /* |
| 367 | * returns the index in the string just past where the address ends. |
| 368 | */ |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 369 | 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] | 370 | { |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 371 | const char *pos = my_str; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 372 | |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 373 | if (isdigit(*my_str)) { |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 374 | *linenum = strtol(my_str, (char**)&pos, 10); |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 375 | /* endstr shouldn't ever equal NULL */ |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 376 | } else if (*my_str == '$') { |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 377 | *linenum = -1; |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 378 | pos++; |
| 379 | } else if (*my_str == '/' || *my_str == '\\') { |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 380 | int next; |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 381 | char delimiter; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 382 | char *temp; |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 383 | |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 384 | delimiter = '/'; |
Denys Vlasenko | d29ae7e | 2012-01-15 20:06:03 +0100 | [diff] [blame] | 385 | if (*my_str == '\\') |
| 386 | delimiter = *++pos; |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 387 | next = index_of_next_unescaped_regexp_delim(delimiter, ++pos); |
Denys Vlasenko | 9c47c43 | 2017-08-23 17:56:03 +0200 | [diff] [blame] | 388 | if (next != 0) { |
Denys Vlasenko | e998c7c | 2022-01-23 18:48:49 +0100 | [diff] [blame] | 389 | temp = copy_parsing_escapes(pos, next, 0); |
Denys Vlasenko | 9c47c43 | 2017-08-23 17:56:03 +0200 | [diff] [blame] | 390 | G.previous_regex_ptr = *regex = xzalloc(sizeof(regex_t)); |
| 391 | xregcomp(*regex, temp, G.regex_type); |
| 392 | free(temp); |
| 393 | } else { |
| 394 | *regex = G.previous_regex_ptr; |
| 395 | if (!G.previous_regex_ptr) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 396 | bb_simple_error_msg_and_die("no previous regexp"); |
Denys Vlasenko | 9c47c43 | 2017-08-23 17:56:03 +0200 | [diff] [blame] | 397 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 398 | /* Move position to next character after last delimiter */ |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 399 | pos += (next+1); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 400 | } |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 401 | return pos - my_str; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 402 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 403 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 404 | /* Grab a filename. Whitespace at start is skipped, then goes to EOL. */ |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 405 | 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] | 406 | { |
Denys Vlasenko | 4906faa | 2019-01-21 13:49:28 +0100 | [diff] [blame] | 407 | const char *start; |
| 408 | const char *eol; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 409 | |
| 410 | /* Skip whitespace, then grab filename to end of line */ |
Denys Vlasenko | 4906faa | 2019-01-21 13:49:28 +0100 | [diff] [blame] | 411 | start = skip_whitespace(filecmdstr); |
| 412 | eol = strchrnul(start, '\n'); |
| 413 | if (eol == start) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 414 | bb_simple_error_msg_and_die("empty filename"); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 415 | |
Denys Vlasenko | 4906faa | 2019-01-21 13:49:28 +0100 | [diff] [blame] | 416 | if (*eol) { |
| 417 | /* If lines glued together, put backslash back. */ |
| 418 | *retval = xstrndup(start, eol-start + 1); |
| 419 | (*retval)[eol-start] = '\\'; |
| 420 | } else { |
| 421 | /* eol is NUL */ |
| 422 | *retval = xstrdup(start); |
| 423 | } |
| 424 | |
| 425 | return eol - filecmdstr; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 426 | } |
| 427 | |
Denis Vlasenko | 9356b50 | 2007-01-29 23:44:38 +0000 | [diff] [blame] | 428 | 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] | 429 | { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 430 | int cflags = G.regex_type; |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 431 | char *match; |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 432 | int idx; |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 433 | |
| 434 | /* |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 435 | * A substitution command should look something like this: |
David A. Wheeler | 80a068d | 2013-12-05 20:42:17 -0500 | [diff] [blame] | 436 | * s/match/replace/ #giIpw |
Mark Whitley | 0e4cec0 | 2000-08-21 21:29:20 +0000 | [diff] [blame] | 437 | * || | ||| |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 438 | * mandatory optional |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 439 | */ |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 440 | idx = parse_regex_delim(substr, &match, &sed_cmd->string); |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 441 | |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 442 | /* determine the number of back references in the match string */ |
| 443 | /* Note: we compute this here rather than in the do_subst_command() |
| 444 | * function to save processor time, at the expense of a little more memory |
| 445 | * (4 bits) per sed_cmd */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 446 | |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 447 | /* process the flags */ |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 448 | |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 449 | sed_cmd->which_match = 1; |
Denys Vlasenko | 9caea24 | 2014-09-16 01:11:13 +0200 | [diff] [blame] | 450 | dbg("s flags:'%s'", substr + idx + 1); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 451 | while (substr[++idx]) { |
Denys Vlasenko | 9caea24 | 2014-09-16 01:11:13 +0200 | [diff] [blame] | 452 | dbg("s flag:'%c'", substr[idx]); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 453 | /* Parse match number */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 454 | if (isdigit(substr[idx])) { |
| 455 | if (match[0] != '^') { |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 456 | /* Match 0 treated as all, multiple matches we take the last one. */ |
Denis Vlasenko | 9356b50 | 2007-01-29 23:44:38 +0000 | [diff] [blame] | 457 | const char *pos = substr + idx; |
| 458 | /* FIXME: error check? */ |
Denis Vlasenko | 284d0fa | 2008-02-16 13:18:17 +0000 | [diff] [blame] | 459 | sed_cmd->which_match = (unsigned)strtol(substr+idx, (char**) &pos, 10); |
Denys Vlasenko | 9caea24 | 2014-09-16 01:11:13 +0200 | [diff] [blame] | 460 | idx = pos - substr - 1; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 461 | } |
| 462 | continue; |
| 463 | } |
Rob Landley | 40ec4ae | 2004-01-04 06:42:14 +0000 | [diff] [blame] | 464 | /* Skip spaces */ |
Denys Vlasenko | 6935ec9 | 2009-10-22 19:42:26 +0200 | [diff] [blame] | 465 | if (isspace(substr[idx])) |
| 466 | continue; |
Rob Landley | 40ec4ae | 2004-01-04 06:42:14 +0000 | [diff] [blame] | 467 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 468 | switch (substr[idx]) { |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 469 | /* Replace all occurrences */ |
| 470 | case 'g': |
Dominique Martinet | 4fe954c | 2021-12-21 21:52:29 +0900 | [diff] [blame] | 471 | sed_cmd->which_match = 0; |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 472 | break; |
| 473 | /* Print pattern space */ |
| 474 | case 'p': |
| 475 | sed_cmd->sub_p = 1; |
| 476 | break; |
| 477 | /* Write to file */ |
| 478 | case 'w': |
| 479 | { |
Denys Vlasenko | 2a4bba3 | 2016-01-24 15:52:16 +0100 | [diff] [blame] | 480 | char *fname; |
| 481 | idx += parse_file_cmd(/*sed_cmd,*/ substr+idx+1, &fname); |
Denys Vlasenko | 286b337 | 2022-01-04 19:42:36 +0100 | [diff] [blame] | 482 | sed_cmd->sw_file = sed_xfopen_w(fname); |
Denys Vlasenko | 2a4bba3 | 2016-01-24 15:52:16 +0100 | [diff] [blame] | 483 | sed_cmd->sw_last_char = '\n'; |
| 484 | free(fname); |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 485 | break; |
| 486 | } |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 487 | /* Ignore case (gnu extension) */ |
David A. Wheeler | 80a068d | 2013-12-05 20:42:17 -0500 | [diff] [blame] | 488 | case 'i': |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 489 | case 'I': |
| 490 | cflags |= REG_ICASE; |
| 491 | break; |
| 492 | /* Comment */ |
| 493 | case '#': |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 494 | // while (substr[++idx]) continue; |
| 495 | idx += strlen(substr + idx); // same |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 496 | /* Fall through */ |
| 497 | /* End of command */ |
| 498 | case ';': |
| 499 | case '}': |
| 500 | goto out; |
| 501 | default: |
Denys Vlasenko | 9caea24 | 2014-09-16 01:11:13 +0200 | [diff] [blame] | 502 | dbg("s bad flags:'%s'", substr + idx); |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 503 | bb_simple_error_msg_and_die("bad option in substitution expression"); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 504 | } |
| 505 | } |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 506 | out: |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 507 | /* compile the match string into a regex */ |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 508 | if (*match != '\0') { |
| 509 | /* If match is empty, we use last regex used at runtime */ |
Denys Vlasenko | d29ae7e | 2012-01-15 20:06:03 +0100 | [diff] [blame] | 510 | sed_cmd->sub_match = xzalloc(sizeof(regex_t)); |
| 511 | dbg("xregcomp('%s',%x)", match, cflags); |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 512 | xregcomp(sed_cmd->sub_match, match, cflags); |
Denys Vlasenko | d29ae7e | 2012-01-15 20:06:03 +0100 | [diff] [blame] | 513 | dbg("regcomp ok"); |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 514 | } |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 515 | free(match); |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 516 | |
| 517 | return idx; |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 518 | } |
| 519 | |
Glenn L McGrath | 2971ef1 | 2003-03-18 01:19:23 +0000 | [diff] [blame] | 520 | /* |
| 521 | * Process the commands arguments |
| 522 | */ |
Denis Vlasenko | 9356b50 | 2007-01-29 23:44:38 +0000 | [diff] [blame] | 523 | 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] | 524 | { |
Denys Vlasenko | 3e134eb | 2016-04-22 18:09:21 +0200 | [diff] [blame] | 525 | static const char cmd_letters[] ALIGN1 = "saicrw:btTydDgGhHlnNpPqx={}"; |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 526 | enum { |
| 527 | IDX_s = 0, |
| 528 | IDX_a, |
| 529 | IDX_i, |
| 530 | IDX_c, |
| 531 | IDX_r, |
| 532 | IDX_w, |
| 533 | IDX_colon, |
| 534 | IDX_b, |
| 535 | IDX_t, |
| 536 | IDX_T, |
| 537 | IDX_y, |
| 538 | IDX_d, |
| 539 | IDX_D, |
| 540 | IDX_g, |
| 541 | IDX_G, |
| 542 | IDX_h, |
| 543 | IDX_H, |
| 544 | IDX_l, |
| 545 | IDX_n, |
| 546 | IDX_N, |
| 547 | IDX_p, |
| 548 | IDX_P, |
| 549 | IDX_q, |
| 550 | IDX_x, |
| 551 | IDX_equal, |
| 552 | IDX_lbrace, |
| 553 | IDX_rbrace, |
| 554 | IDX_nul |
| 555 | }; |
Denys Vlasenko | 7b85ec3 | 2015-10-13 17:17:34 +0200 | [diff] [blame] | 556 | unsigned idx; |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 557 | |
Denys Vlasenko | 7b85ec3 | 2015-10-13 17:17:34 +0200 | [diff] [blame] | 558 | BUILD_BUG_ON(sizeof(cmd_letters)-1 != IDX_nul); |
| 559 | |
| 560 | idx = strchrnul(cmd_letters, sed_cmd->cmd) - cmd_letters; |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 561 | |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 562 | /* handle (s)ubstitution command */ |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 563 | if (idx == IDX_s) { |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 564 | cmdstr += parse_subst_cmd(sed_cmd, cmdstr); |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 565 | } |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 566 | /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */ |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 567 | else if (idx <= IDX_c) { /* a,i,c */ |
Denys Vlasenko | cbdff15 | 2016-04-24 16:18:03 +0200 | [diff] [blame] | 568 | unsigned len; |
| 569 | |
Mimi Li | 37a79c0 | 2012-07-24 13:20:12 +0200 | [diff] [blame] | 570 | if (idx < IDX_c) { /* a,i */ |
| 571 | if (sed_cmd->end_line || sed_cmd->end_match) |
| 572 | bb_error_msg_and_die("command '%c' uses only one address", sed_cmd->cmd); |
| 573 | } |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 574 | for (;;) { |
| 575 | if (*cmdstr == '\n' || *cmdstr == '\\') { |
Rob Landley | 25d8239 | 2004-04-01 09:23:30 +0000 | [diff] [blame] | 576 | cmdstr++; |
| 577 | break; |
Denys Vlasenko | c0dab37 | 2009-10-22 22:28:08 +0200 | [diff] [blame] | 578 | } |
| 579 | if (!isspace(*cmdstr)) |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 580 | break; |
Denys Vlasenko | c0dab37 | 2009-10-22 22:28:08 +0200 | [diff] [blame] | 581 | cmdstr++; |
Rob Landley | 25d8239 | 2004-04-01 09:23:30 +0000 | [diff] [blame] | 582 | } |
Denys Vlasenko | cbdff15 | 2016-04-24 16:18:03 +0200 | [diff] [blame] | 583 | len = strlen(cmdstr); |
Denys Vlasenko | e998c7c | 2022-01-23 18:48:49 +0100 | [diff] [blame] | 584 | sed_cmd->string = copy_parsing_escapes(cmdstr, len, 0); |
Denys Vlasenko | cbdff15 | 2016-04-24 16:18:03 +0200 | [diff] [blame] | 585 | cmdstr += len; |
Denis Vlasenko | 4027664 | 2007-11-13 16:48:10 +0000 | [diff] [blame] | 586 | /* "\anychar" -> "anychar" */ |
Denys Vlasenko | cbdff15 | 2016-04-24 16:18:03 +0200 | [diff] [blame] | 587 | parse_escapes(sed_cmd->string, sed_cmd->string, -1, '\0', '\0'); |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 588 | } |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 589 | /* handle file cmds: (r)ead */ |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 590 | else if (idx <= IDX_w) { /* r,w */ |
Mimi Li | 37a79c0 | 2012-07-24 13:20:12 +0200 | [diff] [blame] | 591 | if (idx < IDX_w) { /* r */ |
| 592 | if (sed_cmd->end_line || sed_cmd->end_match) |
| 593 | bb_error_msg_and_die("command '%c' uses only one address", sed_cmd->cmd); |
| 594 | } |
Denis Vlasenko | 68404f1 | 2008-03-17 09:00:54 +0000 | [diff] [blame] | 595 | cmdstr += parse_file_cmd(/*sed_cmd,*/ cmdstr, &sed_cmd->string); |
Denis Vlasenko | c562bb7 | 2007-01-29 17:08:51 +0000 | [diff] [blame] | 596 | if (sed_cmd->cmd == 'w') { |
Denys Vlasenko | 286b337 | 2022-01-04 19:42:36 +0100 | [diff] [blame] | 597 | sed_cmd->sw_file = sed_xfopen_w(sed_cmd->string); |
Denis Vlasenko | c562bb7 | 2007-01-29 17:08:51 +0000 | [diff] [blame] | 598 | sed_cmd->sw_last_char = '\n'; |
| 599 | } |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 600 | } |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 601 | /* handle branch commands */ |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 602 | else if (idx <= IDX_T) { /* :,b,t,T */ |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 603 | int length; |
| 604 | |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 605 | cmdstr = skip_whitespace(cmdstr); |
Glenn L McGrath | f452356 | 2003-09-14 06:01:14 +0000 | [diff] [blame] | 606 | length = strcspn(cmdstr, semicolon_whitespace); |
| 607 | if (length) { |
Rob Landley | d921b2e | 2006-08-03 15:41:12 +0000 | [diff] [blame] | 608 | sed_cmd->string = xstrndup(cmdstr, length); |
Glenn L McGrath | f452356 | 2003-09-14 06:01:14 +0000 | [diff] [blame] | 609 | cmdstr += length; |
| 610 | } |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 611 | } |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 612 | /* translation command */ |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 613 | else if (idx == IDX_y) { |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 614 | char *match, *replace; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 615 | int i = cmdstr[0]; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 616 | |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 617 | cmdstr += parse_regex_delim(cmdstr, &match, &replace)+1; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 618 | /* \n already parsed, but \delimiter needs unescaping. */ |
Denys Vlasenko | cbdff15 | 2016-04-24 16:18:03 +0200 | [diff] [blame] | 619 | parse_escapes(match, match, -1, i, i); |
| 620 | parse_escapes(replace, replace, -1, i, i); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 621 | |
Rob Landley | 9ffd423 | 2006-05-21 18:30:35 +0000 | [diff] [blame] | 622 | sed_cmd->string = xzalloc((strlen(match) + 1) * 2); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 623 | for (i = 0; match[i] && replace[i]; i++) { |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 624 | sed_cmd->string[i*2] = match[i]; |
| 625 | sed_cmd->string[i*2+1] = replace[i]; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 626 | } |
| 627 | free(match); |
| 628 | free(replace); |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 629 | } |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 630 | /* if it wasn't a single-letter command that takes no arguments |
Glenn L McGrath | 2971ef1 | 2003-03-18 01:19:23 +0000 | [diff] [blame] | 631 | * then it must be an invalid command. |
| 632 | */ |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 633 | else if (idx >= IDX_nul) { /* not d,D,g,G,h,H,l,n,N,p,P,q,x,=,{,} */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 634 | bb_error_msg_and_die("unsupported command %c", sed_cmd->cmd); |
Mark Whitley | 1f3b9f2 | 2001-05-11 22:27:13 +0000 | [diff] [blame] | 635 | } |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 636 | |
| 637 | /* give back whatever's left over */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 638 | return cmdstr; |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 639 | } |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 640 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 641 | |
| 642 | /* Parse address+command sets, skipping comment lines. */ |
| 643 | |
Denis Vlasenko | b6aae0f | 2007-01-29 22:51:25 +0000 | [diff] [blame] | 644 | static void add_cmd(const char *cmdstr) |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 645 | { |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 646 | sed_cmd_t *sed_cmd; |
Denys Vlasenko | a2215b9 | 2010-05-12 01:49:04 +0200 | [diff] [blame] | 647 | unsigned len, n; |
Glenn L McGrath | 8aac05b | 2003-09-14 04:06:12 +0000 | [diff] [blame] | 648 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 649 | /* Append this line to any unfinished line from last time. */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 650 | if (G.add_cmd_line) { |
| 651 | char *tp = xasprintf("%s\n%s", G.add_cmd_line, cmdstr); |
| 652 | free(G.add_cmd_line); |
Denis Vlasenko | 945bd3d | 2007-04-12 21:20:25 +0000 | [diff] [blame] | 653 | cmdstr = G.add_cmd_line = tp; |
Rob Landley | 12d8755 | 2006-06-05 17:32:44 +0000 | [diff] [blame] | 654 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 655 | |
Denys Vlasenko | a2215b9 | 2010-05-12 01:49:04 +0200 | [diff] [blame] | 656 | /* If this line ends with unescaped backslash, request next line. */ |
| 657 | n = len = strlen(cmdstr); |
| 658 | while (n && cmdstr[n-1] == '\\') |
| 659 | n--; |
| 660 | if ((len - n) & 1) { /* if odd number of trailing backslashes */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 661 | if (!G.add_cmd_line) |
| 662 | G.add_cmd_line = xstrdup(cmdstr); |
Denys Vlasenko | a2215b9 | 2010-05-12 01:49:04 +0200 | [diff] [blame] | 663 | G.add_cmd_line[len-1] = '\0'; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 664 | return; |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 665 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 666 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 667 | /* Loop parsing all commands in this line. */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 668 | while (*cmdstr) { |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 669 | /* Skip leading whitespace and semicolons */ |
| 670 | cmdstr += strspn(cmdstr, semicolon_whitespace); |
| 671 | |
| 672 | /* If no more commands, exit. */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 673 | if (!*cmdstr) break; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 674 | |
| 675 | /* if this is a comment, jump past it and keep going */ |
| 676 | if (*cmdstr == '#') { |
| 677 | /* "#n" is the same as using -n on the command line */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 678 | if (cmdstr[1] == 'n') |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 679 | G.be_quiet++; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 680 | cmdstr = strpbrk(cmdstr, "\n\r"); |
| 681 | if (!cmdstr) break; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 682 | continue; |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 683 | } |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 684 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 685 | /* parse the command |
| 686 | * format is: [addr][,addr][!]cmd |
| 687 | * |----||-----||-| |
| 688 | * part1 part2 part3 |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 689 | */ |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 690 | |
Rob Landley | 9ffd423 | 2006-05-21 18:30:35 +0000 | [diff] [blame] | 691 | sed_cmd = xzalloc(sizeof(sed_cmd_t)); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 692 | |
| 693 | /* first part (if present) is an address: either a '$', a number or a /regex/ */ |
| 694 | cmdstr += get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match); |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 695 | sed_cmd->beg_line_orig = sed_cmd->beg_line; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 696 | |
| 697 | /* second part (if present) will begin with a comma */ |
| 698 | if (*cmdstr == ',') { |
| 699 | int idx; |
| 700 | |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 701 | cmdstr++; |
Denys Vlasenko | 63f4d32 | 2015-04-17 14:24:55 +0200 | [diff] [blame] | 702 | if (*cmdstr == '+' && isdigit(cmdstr[1])) { |
| 703 | /* http://sed.sourceforge.net/sedfaq3.html#s3.3 |
| 704 | * Under GNU sed 3.02+, ssed, and sed15+, <address2> |
| 705 | * may also be a notation of the form +num, |
| 706 | * indicating the next num lines after <address1> is |
| 707 | * matched. |
| 708 | * GNU sed 4.2.1 accepts even "+" (meaning "+0"). |
| 709 | * We don't (we check for isdigit, see above), think |
| 710 | * about the "+-3" case. |
| 711 | */ |
| 712 | char *end; |
| 713 | /* code is smaller compared to using &cmdstr here: */ |
| 714 | idx = strtol(cmdstr+1, &end, 10); |
| 715 | sed_cmd->end_line = -2 - idx; |
| 716 | cmdstr = end; |
| 717 | } else { |
| 718 | idx = get_address(cmdstr, &sed_cmd->end_line, &sed_cmd->end_match); |
| 719 | cmdstr += idx; |
| 720 | idx--; /* if 0, trigger error check below */ |
| 721 | } |
| 722 | if (idx < 0) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 723 | bb_simple_error_msg_and_die("no address after comma"); |
Denys Vlasenko | 63f4d32 | 2015-04-17 14:24:55 +0200 | [diff] [blame] | 724 | sed_cmd->end_line_orig = sed_cmd->end_line; |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 725 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 726 | |
| 727 | /* skip whitespace before the command */ |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 728 | cmdstr = skip_whitespace(cmdstr); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 729 | |
| 730 | /* Check for inversion flag */ |
| 731 | if (*cmdstr == '!') { |
| 732 | sed_cmd->invert = 1; |
| 733 | cmdstr++; |
| 734 | |
| 735 | /* skip whitespace before the command */ |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 736 | cmdstr = skip_whitespace(cmdstr); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 737 | } |
| 738 | |
| 739 | /* last part (mandatory) will be a command */ |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 740 | if (!*cmdstr) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 741 | bb_simple_error_msg_and_die("missing command"); |
Denys Vlasenko | a2215b9 | 2010-05-12 01:49:04 +0200 | [diff] [blame] | 742 | sed_cmd->cmd = *cmdstr++; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 743 | cmdstr = parse_cmd_args(sed_cmd, cmdstr); |
| 744 | |
Denys Vlasenko | e93d156 | 2013-07-08 01:43:40 +0200 | [diff] [blame] | 745 | /* cmdstr now points past args. |
| 746 | * GNU sed requires a separator, if there are more commands, |
| 747 | * else it complains "char N: extra characters after command". |
| 748 | * Example: "sed 'p;d'". We also allow "sed 'pd'". |
| 749 | */ |
| 750 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 751 | /* Add the command to the command array */ |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 752 | *G.sed_cmd_tail = sed_cmd; |
| 753 | G.sed_cmd_tail = &sed_cmd->next; |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 754 | } |
| 755 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 756 | /* If we glued multiple lines together, free the memory. */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 757 | free(G.add_cmd_line); |
| 758 | G.add_cmd_line = NULL; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 759 | } |
| 760 | |
Rob Landley | dcc2866 | 2004-11-25 07:21:47 +0000 | [diff] [blame] | 761 | /* Append to a string, reallocating memory as necessary. */ |
| 762 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 763 | #define PIPE_GROW 64 |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 764 | |
Eric Andersen | 14f5c8d | 2005-04-16 19:39:00 +0000 | [diff] [blame] | 765 | static void pipe_putc(char c) |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 766 | { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 767 | if (G.pipeline.idx == G.pipeline.len) { |
| 768 | G.pipeline.buf = xrealloc(G.pipeline.buf, |
| 769 | G.pipeline.len + PIPE_GROW); |
| 770 | G.pipeline.len += PIPE_GROW; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 771 | } |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 772 | G.pipeline.buf[G.pipeline.idx++] = c; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 773 | } |
| 774 | |
Rob Landley | 4795e4e | 2006-07-26 17:25:08 +0000 | [diff] [blame] | 775 | static void do_subst_w_backrefs(char *line, char *replace) |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 776 | { |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 777 | int i, j; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 778 | |
| 779 | /* go through the replacement string */ |
| 780 | for (i = 0; replace[i]; i++) { |
Denys Vlasenko | 21f6fbf | 2012-06-04 14:44:47 +0200 | [diff] [blame] | 781 | /* 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] | 782 | if (replace[i] == '\\') { |
| 783 | unsigned backref = replace[++i] - '0'; |
| 784 | if (backref <= 9) { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 785 | /* print out the text held in G.regmatch[backref] */ |
| 786 | if (G.regmatch[backref].rm_so != -1) { |
| 787 | j = G.regmatch[backref].rm_so; |
| 788 | while (j < G.regmatch[backref].rm_eo) |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 789 | pipe_putc(line[j++]); |
| 790 | } |
| 791 | continue; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 792 | } |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 793 | /* I _think_ it is impossible to get '\' to be |
Denys Vlasenko | 10ad622 | 2017-04-17 16:13:32 +0200 | [diff] [blame] | 794 | * the last char in replace string. Thus we don't check |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 795 | * for replace[i] == NUL. (counterexample anyone?) */ |
| 796 | /* if we find a backslash escaped character, print the character */ |
| 797 | pipe_putc(replace[i]); |
| 798 | continue; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 799 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 800 | /* if we find an unescaped '&' print out the whole matched text. */ |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 801 | if (replace[i] == '&') { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 802 | j = G.regmatch[0].rm_so; |
| 803 | while (j < G.regmatch[0].rm_eo) |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 804 | pipe_putc(line[j++]); |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 805 | continue; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 806 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 807 | /* Otherwise just output the character. */ |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 808 | pipe_putc(replace[i]); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 809 | } |
| 810 | } |
| 811 | |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 812 | 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] | 813 | { |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 814 | char *line = *line_p; |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 815 | unsigned match_count = 0; |
Denys Vlasenko | 21f6fbf | 2012-06-04 14:44:47 +0200 | [diff] [blame] | 816 | bool altered = 0; |
| 817 | bool prev_match_empty = 1; |
| 818 | bool tried_at_eol = 0; |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 819 | regex_t *current_regex; |
| 820 | |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 821 | current_regex = sed_cmd->sub_match; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 822 | /* Handle empty regex. */ |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 823 | if (!current_regex) { |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 824 | current_regex = G.previous_regex_ptr; |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 825 | if (!current_regex) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 826 | bb_simple_error_msg_and_die("no previous regexp"); |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 827 | } |
| 828 | G.previous_regex_ptr = current_regex; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 829 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 830 | /* Find the first match */ |
Denys Vlasenko | d29ae7e | 2012-01-15 20:06:03 +0100 | [diff] [blame] | 831 | dbg("matching '%s'", line); |
| 832 | if (REG_NOMATCH == regexec(current_regex, line, 10, G.regmatch, 0)) { |
| 833 | dbg("no match"); |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 834 | return 0; |
Denys Vlasenko | d29ae7e | 2012-01-15 20:06:03 +0100 | [diff] [blame] | 835 | } |
| 836 | dbg("match"); |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 837 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 838 | /* Initialize temporary output buffer. */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 839 | G.pipeline.buf = xmalloc(PIPE_GROW); |
| 840 | G.pipeline.len = PIPE_GROW; |
| 841 | G.pipeline.idx = 0; |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 842 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 843 | /* Now loop through, substituting for matches */ |
| 844 | do { |
Denys Vlasenko | c35545a | 2012-06-04 14:45:09 +0200 | [diff] [blame] | 845 | int start = G.regmatch[0].rm_so; |
| 846 | int end = G.regmatch[0].rm_eo; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 847 | int i; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 848 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 849 | match_count++; |
| 850 | |
| 851 | /* If we aren't interested in this match, output old line to |
Denys Vlasenko | 21f6fbf | 2012-06-04 14:44:47 +0200 | [diff] [blame] | 852 | * end of match and continue */ |
Denis Vlasenko | 77ad97f | 2008-05-13 02:27:31 +0000 | [diff] [blame] | 853 | if (sed_cmd->which_match |
| 854 | && (sed_cmd->which_match != match_count) |
| 855 | ) { |
Denys Vlasenko | c35545a | 2012-06-04 14:45:09 +0200 | [diff] [blame] | 856 | for (i = 0; i < end; i++) |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 857 | pipe_putc(*line++); |
Denys Vlasenko | 21f6fbf | 2012-06-04 14:44:47 +0200 | [diff] [blame] | 858 | /* Null match? Print one more char */ |
Denys Vlasenko | c35545a | 2012-06-04 14:45:09 +0200 | [diff] [blame] | 859 | if (start == end && *line) |
Denys Vlasenko | 21f6fbf | 2012-06-04 14:44:47 +0200 | [diff] [blame] | 860 | pipe_putc(*line++); |
Denys Vlasenko | b84dafb | 2012-04-24 19:27:34 +0200 | [diff] [blame] | 861 | goto next; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 862 | } |
| 863 | |
Denys Vlasenko | 21f6fbf | 2012-06-04 14:44:47 +0200 | [diff] [blame] | 864 | /* Print everything before the match */ |
Denys Vlasenko | c35545a | 2012-06-04 14:45:09 +0200 | [diff] [blame] | 865 | for (i = 0; i < start; i++) |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 866 | pipe_putc(line[i]); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 867 | |
Denys Vlasenko | 21f6fbf | 2012-06-04 14:44:47 +0200 | [diff] [blame] | 868 | /* Then print the substitution string, |
| 869 | * unless we just matched empty string after non-empty one. |
| 870 | * Example: string "cccd", pattern "c*", repl "R": |
| 871 | * result is "RdR", not "RRdR": first match "ccc", |
| 872 | * second is "" before "d", third is "" after "d". |
| 873 | * Second match is NOT replaced! |
| 874 | */ |
Denys Vlasenko | 84406e4 | 2012-06-07 16:34:57 +0200 | [diff] [blame] | 875 | if (prev_match_empty || start != 0 || start != end) { |
Denys Vlasenko | 37ca36a | 2012-06-08 10:25:31 +0200 | [diff] [blame] | 876 | //dbg("%d %d %d", prev_match_empty, start, end); |
Denys Vlasenko | c35545a | 2012-06-04 14:45:09 +0200 | [diff] [blame] | 877 | dbg("inserting replacement at %d in '%s'", start, line); |
Denys Vlasenko | 21f6fbf | 2012-06-04 14:44:47 +0200 | [diff] [blame] | 878 | do_subst_w_backrefs(line, sed_cmd->string); |
Denys Vlasenko | 37ca36a | 2012-06-08 10:25:31 +0200 | [diff] [blame] | 879 | /* Flag that something has changed */ |
| 880 | altered = 1; |
Denys Vlasenko | 21f6fbf | 2012-06-04 14:44:47 +0200 | [diff] [blame] | 881 | } else { |
Denys Vlasenko | c35545a | 2012-06-04 14:45:09 +0200 | [diff] [blame] | 882 | dbg("NOT inserting replacement at %d in '%s'", start, line); |
Denys Vlasenko | 21f6fbf | 2012-06-04 14:44:47 +0200 | [diff] [blame] | 883 | } |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 884 | |
Denys Vlasenko | 21f6fbf | 2012-06-04 14:44:47 +0200 | [diff] [blame] | 885 | /* If matched string is empty (f.e. "c*" pattern), |
| 886 | * copy verbatim one char after it before attempting more matches |
| 887 | */ |
Denys Vlasenko | c35545a | 2012-06-04 14:45:09 +0200 | [diff] [blame] | 888 | prev_match_empty = (start == end); |
Denys Vlasenko | 37ca36a | 2012-06-08 10:25:31 +0200 | [diff] [blame] | 889 | if (prev_match_empty) { |
| 890 | if (!line[end]) { |
| 891 | tried_at_eol = 1; |
| 892 | } else { |
| 893 | pipe_putc(line[end]); |
| 894 | end++; |
| 895 | } |
Denys Vlasenko | 21f6fbf | 2012-06-04 14:44:47 +0200 | [diff] [blame] | 896 | } |
| 897 | |
| 898 | /* Advance past the match */ |
Denys Vlasenko | c35545a | 2012-06-04 14:45:09 +0200 | [diff] [blame] | 899 | dbg("line += %d", end); |
| 900 | line += end; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 901 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 902 | /* if we're not doing this globally, get out now */ |
Denys Vlasenko | d29ae7e | 2012-01-15 20:06:03 +0100 | [diff] [blame] | 903 | if (sed_cmd->which_match != 0) |
| 904 | break; |
Denys Vlasenko | b84dafb | 2012-04-24 19:27:34 +0200 | [diff] [blame] | 905 | next: |
Denys Vlasenko | 21f6fbf | 2012-06-04 14:44:47 +0200 | [diff] [blame] | 906 | /* Exit if we are at EOL and already tried matching at it */ |
| 907 | if (*line == '\0') { |
| 908 | if (tried_at_eol) |
| 909 | break; |
| 910 | tried_at_eol = 1; |
| 911 | } |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 912 | |
Denys Vlasenko | c35545a | 2012-06-04 14:45:09 +0200 | [diff] [blame] | 913 | //maybe (end ? REG_NOTBOL : 0) instead of unconditional REG_NOTBOL? |
Denys Vlasenko | d29ae7e | 2012-01-15 20:06:03 +0100 | [diff] [blame] | 914 | } while (regexec(current_regex, line, 10, G.regmatch, REG_NOTBOL) != REG_NOMATCH); |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 915 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 916 | /* Copy rest of string into output pipeline */ |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 917 | while (1) { |
| 918 | char c = *line++; |
| 919 | pipe_putc(c); |
| 920 | if (c == '\0') |
| 921 | break; |
| 922 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 923 | |
Denys Vlasenko | f210cff | 2009-08-17 01:35:04 +0200 | [diff] [blame] | 924 | free(*line_p); |
| 925 | *line_p = G.pipeline.buf; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 926 | return altered; |
| 927 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 928 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 929 | /* 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] | 930 | static sed_cmd_t *branch_to(char *label) |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 931 | { |
| 932 | sed_cmd_t *sed_cmd; |
Glenn L McGrath | d4185b0 | 2003-04-11 17:10:23 +0000 | [diff] [blame] | 933 | |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 934 | for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) { |
Denys Vlasenko | 1d3a04a | 2016-11-28 01:22:57 +0100 | [diff] [blame] | 935 | if (sed_cmd->cmd == ':' |
| 936 | && sed_cmd->string |
| 937 | && strcmp(sed_cmd->string, label) == 0 |
| 938 | ) { |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 939 | return sed_cmd; |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 940 | } |
| 941 | } |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 942 | 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] | 943 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 944 | |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 945 | static void append(char *s) |
| 946 | { |
Denys Vlasenko | 9d46a7a | 2013-10-30 10:22:47 +0100 | [diff] [blame] | 947 | llist_add_to_end(&G.append_head, s); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 948 | } |
| 949 | |
Denys Vlasenko | c44539f | 2013-10-30 14:25:22 +0100 | [diff] [blame] | 950 | /* Output line of text. */ |
| 951 | /* Note: |
| 952 | * The tricks with NO_EOL_CHAR and last_puts_char are there to emulate gnu sed. |
| 953 | * Without them, we had this: |
| 954 | * echo -n thingy >z1 |
| 955 | * echo -n again >z2 |
| 956 | * >znull |
| 957 | * sed "s/i/z/" z1 z2 znull | hexdump -vC |
| 958 | * output: |
| 959 | * gnu sed 4.1.5: |
| 960 | * 00000000 74 68 7a 6e 67 79 0a 61 67 61 7a 6e |thzngy.agazn| |
| 961 | * bbox: |
| 962 | * 00000000 74 68 7a 6e 67 79 61 67 61 7a 6e |thzngyagazn| |
Rob Landley | dcc2866 | 2004-11-25 07:21:47 +0000 | [diff] [blame] | 963 | */ |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 964 | enum { |
| 965 | NO_EOL_CHAR = 1, |
Denis Vlasenko | 8681180 | 2007-01-29 17:10:19 +0000 | [diff] [blame] | 966 | LAST_IS_NUL = 2, |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 967 | }; |
Denys Vlasenko | c44539f | 2013-10-30 14:25:22 +0100 | [diff] [blame] | 968 | static void puts_maybe_newline(char *s, FILE *file, char *last_puts_char, char last_gets_char) |
| 969 | { |
| 970 | char lpc = *last_puts_char; |
| 971 | |
| 972 | /* Need to insert a '\n' between two files because first file's |
| 973 | * last line wasn't terminated? */ |
| 974 | if (lpc != '\n' && lpc != '\0') { |
| 975 | fputc('\n', file); |
| 976 | lpc = '\n'; |
| 977 | } |
| 978 | fputs(s, file); |
| 979 | |
| 980 | /* 'x' - just something which is not '\n', '\0' or NO_EOL_CHAR */ |
| 981 | if (s[0]) |
| 982 | lpc = 'x'; |
| 983 | |
| 984 | /* had trailing '\0' and it was last char of file? */ |
| 985 | if (last_gets_char == LAST_IS_NUL) { |
| 986 | fputc('\0', file); |
| 987 | lpc = 'x'; /* */ |
| 988 | } else |
| 989 | /* had trailing '\n' or '\0'? */ |
| 990 | if (last_gets_char != NO_EOL_CHAR) { |
| 991 | fputc(last_gets_char, file); |
| 992 | lpc = last_gets_char; |
| 993 | } |
| 994 | |
| 995 | if (ferror(file)) { |
| 996 | xfunc_error_retval = 4; /* It's what gnu sed exits with... */ |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 997 | bb_simple_error_msg_and_die(bb_msg_write_error); |
Denys Vlasenko | c44539f | 2013-10-30 14:25:22 +0100 | [diff] [blame] | 998 | } |
| 999 | *last_puts_char = lpc; |
| 1000 | } |
| 1001 | |
Denys Vlasenko | f2559e5 | 2016-05-06 18:25:56 +0200 | [diff] [blame] | 1002 | static void flush_append(char *last_puts_char) |
Denys Vlasenko | c44539f | 2013-10-30 14:25:22 +0100 | [diff] [blame] | 1003 | { |
| 1004 | char *data; |
| 1005 | |
| 1006 | /* Output appended lines. */ |
Denys Vlasenko | f2559e5 | 2016-05-06 18:25:56 +0200 | [diff] [blame] | 1007 | while ((data = (char *)llist_pop(&G.append_head)) != NULL) { |
| 1008 | /* Append command does not respect "nonterminated-ness" |
| 1009 | * of last line. Try this: |
| 1010 | * $ echo -n "woot" | sed -e '/woot/a woo' - |
| 1011 | * woot |
| 1012 | * woo |
| 1013 | * (both lines are terminated with \n) |
| 1014 | * Therefore we do not propagate "last_gets_char" here, |
| 1015 | * pass '\n' instead: |
| 1016 | */ |
| 1017 | puts_maybe_newline(data, G.nonstdout, last_puts_char, '\n'); |
Denys Vlasenko | c44539f | 2013-10-30 14:25:22 +0100 | [diff] [blame] | 1018 | free(data); |
| 1019 | } |
| 1020 | } |
| 1021 | |
| 1022 | /* Get next line of input from G.input_file_list, flushing append buffer and |
| 1023 | * noting if we ran out of files without a newline on the last line we read. |
| 1024 | */ |
Denys Vlasenko | f2559e5 | 2016-05-06 18:25:56 +0200 | [diff] [blame] | 1025 | static char *get_next_line(char *gets_char, char *last_puts_char) |
Rob Landley | dcc2866 | 2004-11-25 07:21:47 +0000 | [diff] [blame] | 1026 | { |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 1027 | char *temp = NULL; |
Quentin Rameau | e2afae6 | 2018-04-01 19:49:58 +0200 | [diff] [blame] | 1028 | size_t len; |
Denis Vlasenko | c562bb7 | 2007-01-29 17:08:51 +0000 | [diff] [blame] | 1029 | char gc; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 1030 | |
Denys Vlasenko | f2559e5 | 2016-05-06 18:25:56 +0200 | [diff] [blame] | 1031 | flush_append(last_puts_char); |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 1032 | |
| 1033 | /* will be returned if last line in the file |
| 1034 | * doesn't end with either '\n' or '\0' */ |
| 1035 | gc = NO_EOL_CHAR; |
Denys Vlasenko | deb0769 | 2013-11-28 12:08:51 +0100 | [diff] [blame] | 1036 | for (; G.current_input_file <= G.last_input_file; G.current_input_file++) { |
Denys Vlasenko | 259b3c0 | 2013-11-28 03:14:16 +0100 | [diff] [blame] | 1037 | FILE *fp = G.current_fp; |
| 1038 | if (!fp) { |
| 1039 | const char *path = G.input_file_list[G.current_input_file]; |
| 1040 | fp = stdin; |
| 1041 | if (path != bb_msg_standard_input) { |
| 1042 | fp = fopen_or_warn(path, "r"); |
| 1043 | if (!fp) { |
| 1044 | G.exitcode = EXIT_FAILURE; |
| 1045 | continue; |
| 1046 | } |
| 1047 | } |
| 1048 | G.current_fp = fp; |
| 1049 | } |
Denis Vlasenko | ef44d9d | 2007-01-17 23:16:16 +0000 | [diff] [blame] | 1050 | /* Read line up to a newline or NUL byte, inclusive, |
| 1051 | * return malloc'ed char[]. length of the chunk read |
| 1052 | * is stored in len. NULL if EOF/error */ |
Denis Vlasenko | 8681180 | 2007-01-29 17:10:19 +0000 | [diff] [blame] | 1053 | temp = bb_get_chunk_from_file(fp, &len); |
Rob Landley | 2b26fd5 | 2006-02-24 02:30:39 +0000 | [diff] [blame] | 1054 | if (temp) { |
Denis Vlasenko | 8b22b07 | 2006-12-02 17:58:10 +0000 | [diff] [blame] | 1055 | /* len > 0 here, it's ok to do temp[len-1] */ |
| 1056 | char c = temp[len-1]; |
| 1057 | if (c == '\n' || c == '\0') { |
| 1058 | temp[len-1] = '\0'; |
Denis Vlasenko | c562bb7 | 2007-01-29 17:08:51 +0000 | [diff] [blame] | 1059 | gc = c; |
Denis Vlasenko | 8681180 | 2007-01-29 17:10:19 +0000 | [diff] [blame] | 1060 | if (c == '\0') { |
| 1061 | int ch = fgetc(fp); |
| 1062 | if (ch != EOF) |
| 1063 | ungetc(ch, fp); |
| 1064 | else |
| 1065 | gc = LAST_IS_NUL; |
| 1066 | } |
Denis Vlasenko | 8b22b07 | 2006-12-02 17:58:10 +0000 | [diff] [blame] | 1067 | } |
Denis Vlasenko | c562bb7 | 2007-01-29 17:08:51 +0000 | [diff] [blame] | 1068 | /* else we put NO_EOL_CHAR into *gets_char */ |
| 1069 | break; |
| 1070 | |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 1071 | /* NB: I had the idea of peeking next file(s) and returning |
| 1072 | * NO_EOL_CHAR only if it is the *last* non-empty |
| 1073 | * input file. But there is a case where this won't work: |
| 1074 | * file1: "a woo\nb woo" |
| 1075 | * file2: "c no\nd no" |
| 1076 | * sed -ne 's/woo/bang/p' input1 input2 => "a bang\nb bang" |
| 1077 | * (note: *no* newline after "b bang"!) */ |
Denis Vlasenko | 8b22b07 | 2006-12-02 17:58:10 +0000 | [diff] [blame] | 1078 | } |
| 1079 | /* Close this file and advance to next one */ |
Denys Vlasenko | 259b3c0 | 2013-11-28 03:14:16 +0100 | [diff] [blame] | 1080 | fclose_if_not_stdin(fp); |
| 1081 | G.current_fp = NULL; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 1082 | } |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 1083 | *gets_char = gc; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 1084 | return temp; |
| 1085 | } |
| 1086 | |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 1087 | #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] | 1088 | |
Denis Vlasenko | 8274e06 | 2007-08-06 03:41:08 +0000 | [diff] [blame] | 1089 | static int beg_match(sed_cmd_t *sed_cmd, const char *pattern_space) |
| 1090 | { |
| 1091 | int retval = sed_cmd->beg_match && !regexec(sed_cmd->beg_match, pattern_space, 0, NULL, 0); |
| 1092 | if (retval) |
| 1093 | G.previous_regex_ptr = sed_cmd->beg_match; |
| 1094 | return retval; |
| 1095 | } |
| 1096 | |
Rob Landley | 2b26fd5 | 2006-02-24 02:30:39 +0000 | [diff] [blame] | 1097 | /* Process all the lines in all the files */ |
| 1098 | |
Rob Landley | dcc2866 | 2004-11-25 07:21:47 +0000 | [diff] [blame] | 1099 | static void process_files(void) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1100 | { |
Rob Landley | ce4f0e9 | 2004-10-30 06:54:19 +0000 | [diff] [blame] | 1101 | char *pattern_space, *next_line; |
Denis Vlasenko | 826c85f | 2007-01-28 23:26:15 +0000 | [diff] [blame] | 1102 | int linenum = 0; |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 1103 | char last_puts_char = '\n'; |
| 1104 | char last_gets_char, next_gets_char; |
Denis Vlasenko | 2ea630f | 2006-12-10 02:52:19 +0000 | [diff] [blame] | 1105 | sed_cmd_t *sed_cmd; |
| 1106 | int substituted; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1107 | |
Rob Landley | 2b26fd5 | 2006-02-24 02:30:39 +0000 | [diff] [blame] | 1108 | /* Prime the pump */ |
Denys Vlasenko | f2559e5 | 2016-05-06 18:25:56 +0200 | [diff] [blame] | 1109 | next_line = get_next_line(&next_gets_char, &last_puts_char); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 1110 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1111 | /* Go through every line in each file */ |
Denis Vlasenko | f39c7c0 | 2008-02-28 17:59:01 +0000 | [diff] [blame] | 1112 | again: |
Denis Vlasenko | 2ea630f | 2006-12-10 02:52:19 +0000 | [diff] [blame] | 1113 | substituted = 0; |
Glenn L McGrath | 505bd0f | 2003-03-08 05:21:02 +0000 | [diff] [blame] | 1114 | |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1115 | /* Advance to next line. Stop if out of lines. */ |
| 1116 | pattern_space = next_line; |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1117 | if (!pattern_space) |
| 1118 | return; |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 1119 | last_gets_char = next_gets_char; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1120 | |
| 1121 | /* Read one line in advance so we can act on the last line, |
| 1122 | * the '$' address */ |
Denys Vlasenko | f2559e5 | 2016-05-06 18:25:56 +0200 | [diff] [blame] | 1123 | next_line = get_next_line(&next_gets_char, &last_puts_char); |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1124 | linenum++; |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1125 | |
| 1126 | /* For every line, go through all the commands */ |
Denis Vlasenko | f39c7c0 | 2008-02-28 17:59:01 +0000 | [diff] [blame] | 1127 | restart: |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 1128 | for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) { |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1129 | int old_matched, matched; |
Eric Andersen | 52a3c27 | 2003-12-23 08:53:51 +0000 | [diff] [blame] | 1130 | |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1131 | old_matched = sed_cmd->in_match; |
Denys Vlasenko | 0545bfa | 2019-05-13 16:29:34 +0200 | [diff] [blame] | 1132 | if (!old_matched) |
| 1133 | sed_cmd->end_line = sed_cmd->end_line_orig; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 1134 | |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1135 | /* Determine if this command matches this line: */ |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 1136 | |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 1137 | dbg("match1:%d", sed_cmd->in_match); |
| 1138 | dbg("match2:%d", (!sed_cmd->beg_line && !sed_cmd->end_line |
| 1139 | && !sed_cmd->beg_match && !sed_cmd->end_match)); |
| 1140 | dbg("match3:%d", (sed_cmd->beg_line > 0 |
| 1141 | && (sed_cmd->end_line || sed_cmd->end_match |
| 1142 | ? (sed_cmd->beg_line <= linenum) |
| 1143 | : (sed_cmd->beg_line == linenum) |
| 1144 | ) |
| 1145 | )); |
| 1146 | dbg("match4:%d", (beg_match(sed_cmd, pattern_space))); |
| 1147 | dbg("match5:%d", (sed_cmd->beg_line == -1 && next_line == NULL)); |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 1148 | |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 1149 | /* Are we continuing a previous multi-line match? */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1150 | sed_cmd->in_match = sed_cmd->in_match |
| 1151 | /* Or is no range necessary? */ |
| 1152 | || (!sed_cmd->beg_line && !sed_cmd->end_line |
| 1153 | && !sed_cmd->beg_match && !sed_cmd->end_match) |
| 1154 | /* Or did we match the start of a numerical range? */ |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 1155 | || (sed_cmd->beg_line > 0 |
| 1156 | && (sed_cmd->end_line || sed_cmd->end_match |
Denys Vlasenko | c467924 | 2010-06-04 01:31:48 +0200 | [diff] [blame] | 1157 | /* note: even if end is numeric and is < linenum too, |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 1158 | * GNU sed matches! We match too, therefore we don't |
| 1159 | * check here that linenum <= end. |
| 1160 | * Example: |
| 1161 | * printf '1\n2\n3\n4\n' | sed -n '1{N;N;d};1p;2,3p;3p;4p' |
| 1162 | * first three input lines are deleted; |
| 1163 | * 4th line is matched and printed |
| 1164 | * by "2,3" (!) and by "4" ranges |
| 1165 | */ |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 1166 | ? (sed_cmd->beg_line <= linenum) /* N,end */ |
| 1167 | : (sed_cmd->beg_line == linenum) /* N */ |
| 1168 | ) |
| 1169 | ) |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1170 | /* Or does this line match our begin address regex? */ |
Denis Vlasenko | 8274e06 | 2007-08-06 03:41:08 +0000 | [diff] [blame] | 1171 | || (beg_match(sed_cmd, pattern_space)) |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1172 | /* Or did we match last line of input? */ |
| 1173 | || (sed_cmd->beg_line == -1 && next_line == NULL); |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 1174 | |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 1175 | /* Snapshot the value */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1176 | matched = sed_cmd->in_match; |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 1177 | |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 1178 | dbg("cmd:'%c' matched:%d beg_line:%d end_line:%d linenum:%d", |
| 1179 | 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] | 1180 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1181 | /* Is this line the end of the current match? */ |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 1182 | |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1183 | if (matched) { |
Denys Vlasenko | 63f4d32 | 2015-04-17 14:24:55 +0200 | [diff] [blame] | 1184 | if (sed_cmd->end_line <= -2) { |
| 1185 | /* address2 is +N, i.e. N lines from beg_line */ |
| 1186 | sed_cmd->end_line = linenum + (-sed_cmd->end_line - 2); |
| 1187 | } |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 1188 | /* once matched, "n,xxx" range is dead, disabling it */ |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 1189 | if (sed_cmd->beg_line > 0) { |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 1190 | sed_cmd->beg_line = -2; |
Denys Vlasenko | 2e284a4 | 2010-08-01 04:14:46 +0200 | [diff] [blame] | 1191 | } |
Denys Vlasenko | 63f4d32 | 2015-04-17 14:24:55 +0200 | [diff] [blame] | 1192 | dbg("end1:%d", sed_cmd->end_line ? sed_cmd->end_line == -1 |
| 1193 | ? !next_line : (sed_cmd->end_line <= linenum) |
| 1194 | : !sed_cmd->end_match); |
| 1195 | dbg("end2:%d", sed_cmd->end_match && old_matched |
| 1196 | && !regexec(sed_cmd->end_match,pattern_space, 0, NULL, 0)); |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 1197 | sed_cmd->in_match = !( |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1198 | /* has the ending line come, or is this a single address command? */ |
Denys Vlasenko | 52d8370 | 2011-05-03 00:51:43 +0200 | [diff] [blame] | 1199 | (sed_cmd->end_line |
| 1200 | ? sed_cmd->end_line == -1 |
| 1201 | ? !next_line |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1202 | : (sed_cmd->end_line <= linenum) |
| 1203 | : !sed_cmd->end_match |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 1204 | ) |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1205 | /* or does this line matches our last address regex */ |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 1206 | || (sed_cmd->end_match && old_matched |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1207 | && (regexec(sed_cmd->end_match, |
Denys Vlasenko | 6830ade | 2013-01-15 13:58:01 +0100 | [diff] [blame] | 1208 | pattern_space, 0, NULL, 0) == 0) |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 1209 | ) |
Denys Vlasenko | 8e96b5b | 2009-07-14 01:02:57 +0200 | [diff] [blame] | 1210 | ); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1211 | } |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 1212 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1213 | /* Skip blocks of commands we didn't match */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1214 | if (sed_cmd->cmd == '{') { |
Denis Vlasenko | 826c85f | 2007-01-28 23:26:15 +0000 | [diff] [blame] | 1215 | if (sed_cmd->invert ? matched : !matched) { |
Denys Vlasenko | f2c16ed | 2010-04-20 04:00:03 -0400 | [diff] [blame] | 1216 | unsigned nest_cnt = 0; |
| 1217 | while (1) { |
| 1218 | if (sed_cmd->cmd == '{') |
| 1219 | nest_cnt++; |
| 1220 | if (sed_cmd->cmd == '}') { |
| 1221 | nest_cnt--; |
| 1222 | if (nest_cnt == 0) |
| 1223 | break; |
| 1224 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1225 | sed_cmd = sed_cmd->next; |
Denis Vlasenko | 826c85f | 2007-01-28 23:26:15 +0000 | [diff] [blame] | 1226 | if (!sed_cmd) |
James Byrne | 6937487 | 2019-07-02 11:35:03 +0200 | [diff] [blame] | 1227 | bb_simple_error_msg_and_die("unterminated {"); |
Denis Vlasenko | 826c85f | 2007-01-28 23:26:15 +0000 | [diff] [blame] | 1228 | } |
| 1229 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1230 | continue; |
| 1231 | } |
Glenn L McGrath | aa5a602 | 2003-10-01 03:06:16 +0000 | [diff] [blame] | 1232 | |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1233 | /* Okay, so did this line match? */ |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1234 | if (sed_cmd->invert ? matched : !matched) |
| 1235 | continue; /* no */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1236 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1237 | /* Update last used regex in case a blank substitute BRE is found */ |
| 1238 | if (sed_cmd->beg_match) { |
| 1239 | G.previous_regex_ptr = sed_cmd->beg_match; |
| 1240 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1241 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1242 | /* actual sedding */ |
Denys Vlasenko | d29ae7e | 2012-01-15 20:06:03 +0100 | [diff] [blame] | 1243 | dbg("pattern_space:'%s' next_line:'%s' cmd:%c", |
| 1244 | pattern_space, next_line, sed_cmd->cmd); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1245 | switch (sed_cmd->cmd) { |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1246 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1247 | /* Print line number */ |
| 1248 | case '=': |
| 1249 | fprintf(G.nonstdout, "%d\n", linenum); |
| 1250 | break; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1251 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1252 | /* Write the current pattern space up to the first newline */ |
| 1253 | case 'P': |
| 1254 | { |
| 1255 | char *tmp = strchr(pattern_space, '\n'); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1256 | if (tmp) { |
| 1257 | *tmp = '\0'; |
| 1258 | /* TODO: explain why '\n' below */ |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 1259 | sed_puts(pattern_space, '\n'); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1260 | *tmp = '\n'; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1261 | break; |
| 1262 | } |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1263 | /* Fall Through */ |
| 1264 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1265 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1266 | /* Write the current pattern space to output */ |
| 1267 | case 'p': |
| 1268 | /* NB: we print this _before_ the last line |
| 1269 | * (of current file) is printed. Even if |
| 1270 | * that line is nonterminated, we print |
| 1271 | * '\n' here (gnu sed does the same) */ |
| 1272 | sed_puts(pattern_space, '\n'); |
| 1273 | break; |
| 1274 | /* Delete up through first newline */ |
| 1275 | case 'D': |
| 1276 | { |
| 1277 | char *tmp = strchr(pattern_space, '\n'); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1278 | if (tmp) { |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 1279 | overlapping_strcpy(pattern_space, tmp + 1); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1280 | goto restart; |
| 1281 | } |
| 1282 | } |
| 1283 | /* discard this line. */ |
| 1284 | case 'd': |
| 1285 | goto discard_line; |
| 1286 | |
| 1287 | /* Substitute with regex */ |
| 1288 | case 's': |
| 1289 | if (!do_subst_command(sed_cmd, &pattern_space)) |
| 1290 | break; |
Denys Vlasenko | 21f6fbf | 2012-06-04 14:44:47 +0200 | [diff] [blame] | 1291 | dbg("do_subst_command succeeded:'%s'", pattern_space); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1292 | substituted |= 1; |
| 1293 | |
| 1294 | /* handle p option */ |
| 1295 | if (sed_cmd->sub_p) |
| 1296 | sed_puts(pattern_space, last_gets_char); |
| 1297 | /* handle w option */ |
| 1298 | if (sed_cmd->sw_file) |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 1299 | puts_maybe_newline( |
| 1300 | pattern_space, sed_cmd->sw_file, |
| 1301 | &sed_cmd->sw_last_char, last_gets_char); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1302 | break; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1303 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1304 | /* Append line to linked list to be printed later */ |
| 1305 | case 'a': |
Denys Vlasenko | 9d46a7a | 2013-10-30 10:22:47 +0100 | [diff] [blame] | 1306 | append(xstrdup(sed_cmd->string)); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1307 | break; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1308 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1309 | /* Insert text before this line */ |
| 1310 | case 'i': |
| 1311 | sed_puts(sed_cmd->string, '\n'); |
| 1312 | break; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1313 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1314 | /* Cut and paste text (replace) */ |
| 1315 | case 'c': |
| 1316 | /* Only triggers on last line of a matching range. */ |
| 1317 | if (!sed_cmd->in_match) |
Denys Vlasenko | 96a1833 | 2010-04-19 22:36:07 -0400 | [diff] [blame] | 1318 | sed_puts(sed_cmd->string, '\n'); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1319 | goto discard_line; |
| 1320 | |
| 1321 | /* Read file, append contents to output */ |
| 1322 | case 'r': |
| 1323 | { |
| 1324 | FILE *rfile; |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1325 | rfile = fopen_for_read(sed_cmd->string); |
| 1326 | if (rfile) { |
| 1327 | char *line; |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1328 | while ((line = xmalloc_fgetline(rfile)) |
| 1329 | != NULL) |
| 1330 | append(line); |
Denys Vlasenko | 9d46a7a | 2013-10-30 10:22:47 +0100 | [diff] [blame] | 1331 | fclose(rfile); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1332 | } |
| 1333 | |
| 1334 | break; |
| 1335 | } |
| 1336 | |
| 1337 | /* Write pattern space to file. */ |
| 1338 | case 'w': |
| 1339 | puts_maybe_newline( |
| 1340 | pattern_space, sed_cmd->sw_file, |
| 1341 | &sed_cmd->sw_last_char, last_gets_char); |
| 1342 | break; |
| 1343 | |
| 1344 | /* Read next line from input */ |
| 1345 | case 'n': |
| 1346 | if (!G.be_quiet) |
| 1347 | sed_puts(pattern_space, last_gets_char); |
Denys Vlasenko | 76d7237 | 2016-09-01 01:59:11 +0200 | [diff] [blame] | 1348 | if (next_line == NULL) { |
| 1349 | /* If no next line, jump to end of script and exit. */ |
| 1350 | goto discard_line; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1351 | } |
Denys Vlasenko | 76d7237 | 2016-09-01 01:59:11 +0200 | [diff] [blame] | 1352 | free(pattern_space); |
| 1353 | pattern_space = next_line; |
| 1354 | last_gets_char = next_gets_char; |
| 1355 | next_line = get_next_line(&next_gets_char, &last_puts_char); |
| 1356 | substituted = 0; |
| 1357 | linenum++; |
| 1358 | break; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1359 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1360 | /* Quit. End of script, end of input. */ |
| 1361 | case 'q': |
| 1362 | /* Exit the outer while loop */ |
| 1363 | free(next_line); |
| 1364 | next_line = NULL; |
| 1365 | goto discard_commands; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1366 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1367 | /* Append the next line to the current line */ |
| 1368 | case 'N': |
| 1369 | { |
| 1370 | int len; |
| 1371 | /* If no next line, jump to end of script and exit. */ |
Denys Vlasenko | 0d555fc | 2010-08-16 16:26:33 +0200 | [diff] [blame] | 1372 | /* http://www.gnu.org/software/sed/manual/sed.html: |
| 1373 | * "Most versions of sed exit without printing anything |
| 1374 | * when the N command is issued on the last line of |
| 1375 | * a file. GNU sed prints pattern space before exiting |
| 1376 | * unless of course the -n command switch has been |
| 1377 | * specified. This choice is by design." |
| 1378 | */ |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1379 | if (next_line == NULL) { |
Denys Vlasenko | 0d555fc | 2010-08-16 16:26:33 +0200 | [diff] [blame] | 1380 | //goto discard_line; |
| 1381 | goto discard_commands; /* GNU behavior */ |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1382 | } |
Denys Vlasenko | bf5f99f | 2010-06-04 01:29:52 +0200 | [diff] [blame] | 1383 | /* Append next_line, read new next_line. */ |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1384 | len = strlen(pattern_space); |
Denys Vlasenko | 9037787 | 2010-01-08 09:07:50 +0100 | [diff] [blame] | 1385 | pattern_space = xrealloc(pattern_space, len + strlen(next_line) + 2); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1386 | pattern_space[len] = '\n'; |
| 1387 | strcpy(pattern_space + len+1, next_line); |
| 1388 | last_gets_char = next_gets_char; |
Denys Vlasenko | f2559e5 | 2016-05-06 18:25:56 +0200 | [diff] [blame] | 1389 | next_line = get_next_line(&next_gets_char, &last_puts_char); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1390 | linenum++; |
| 1391 | break; |
| 1392 | } |
| 1393 | |
| 1394 | /* Test/branch if substitution occurred */ |
| 1395 | case 't': |
| 1396 | if (!substituted) break; |
| 1397 | substituted = 0; |
| 1398 | /* Fall through */ |
| 1399 | /* Test/branch if substitution didn't occur */ |
| 1400 | case 'T': |
| 1401 | if (substituted) break; |
| 1402 | /* Fall through */ |
| 1403 | /* Branch to label */ |
| 1404 | case 'b': |
| 1405 | if (!sed_cmd->string) goto discard_commands; |
| 1406 | else sed_cmd = branch_to(sed_cmd->string); |
| 1407 | break; |
| 1408 | /* Transliterate characters */ |
| 1409 | case 'y': |
| 1410 | { |
| 1411 | int i, j; |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1412 | for (i = 0; pattern_space[i]; i++) { |
| 1413 | for (j = 0; sed_cmd->string[j]; j += 2) { |
| 1414 | if (pattern_space[i] == sed_cmd->string[j]) { |
| 1415 | pattern_space[i] = sed_cmd->string[j + 1]; |
| 1416 | break; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1417 | } |
| 1418 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1419 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1420 | |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1421 | break; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1422 | } |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1423 | case 'g': /* Replace pattern space with hold space */ |
| 1424 | free(pattern_space); |
| 1425 | pattern_space = xstrdup(G.hold_space ? G.hold_space : ""); |
| 1426 | break; |
| 1427 | case 'G': /* Append newline and hold space to pattern space */ |
| 1428 | { |
| 1429 | int pattern_space_size = 2; |
| 1430 | int hold_space_size = 0; |
| 1431 | |
| 1432 | if (pattern_space) |
| 1433 | pattern_space_size += strlen(pattern_space); |
| 1434 | if (G.hold_space) |
| 1435 | hold_space_size = strlen(G.hold_space); |
| 1436 | pattern_space = xrealloc(pattern_space, |
| 1437 | pattern_space_size + hold_space_size); |
| 1438 | if (pattern_space_size == 2) |
| 1439 | pattern_space[0] = 0; |
| 1440 | strcat(pattern_space, "\n"); |
| 1441 | if (G.hold_space) |
| 1442 | strcat(pattern_space, G.hold_space); |
| 1443 | last_gets_char = '\n'; |
| 1444 | |
| 1445 | break; |
| 1446 | } |
| 1447 | case 'h': /* Replace hold space with pattern space */ |
| 1448 | free(G.hold_space); |
| 1449 | G.hold_space = xstrdup(pattern_space); |
| 1450 | break; |
| 1451 | case 'H': /* Append newline and pattern space to hold space */ |
| 1452 | { |
| 1453 | int hold_space_size = 2; |
| 1454 | int pattern_space_size = 0; |
| 1455 | |
| 1456 | if (G.hold_space) |
| 1457 | hold_space_size += strlen(G.hold_space); |
| 1458 | if (pattern_space) |
| 1459 | pattern_space_size = strlen(pattern_space); |
| 1460 | G.hold_space = xrealloc(G.hold_space, |
| 1461 | hold_space_size + pattern_space_size); |
| 1462 | |
| 1463 | if (hold_space_size == 2) |
| 1464 | *G.hold_space = 0; |
| 1465 | strcat(G.hold_space, "\n"); |
| 1466 | if (pattern_space) |
| 1467 | strcat(G.hold_space, pattern_space); |
| 1468 | |
| 1469 | break; |
| 1470 | } |
| 1471 | case 'x': /* Exchange hold and pattern space */ |
| 1472 | { |
| 1473 | char *tmp = pattern_space; |
Denys Vlasenko | 90a9904 | 2009-09-06 02:36:23 +0200 | [diff] [blame] | 1474 | pattern_space = G.hold_space ? G.hold_space : xzalloc(1); |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1475 | last_gets_char = '\n'; |
| 1476 | G.hold_space = tmp; |
| 1477 | break; |
| 1478 | } |
| 1479 | } /* switch */ |
| 1480 | } /* for each cmd */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1481 | |
| 1482 | /* |
Denys Vlasenko | 8bca3e2 | 2009-06-30 19:19:37 +0200 | [diff] [blame] | 1483 | * Exit point from sedding... |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1484 | */ |
Denis Vlasenko | 826c85f | 2007-01-28 23:26:15 +0000 | [diff] [blame] | 1485 | discard_commands: |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1486 | /* we will print the line unless we were told to be quiet ('-n') |
| 1487 | or if the line was suppressed (ala 'd'elete) */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 1488 | if (!G.be_quiet) |
Denis Vlasenko | fe7a9f1 | 2007-01-29 14:31:47 +0000 | [diff] [blame] | 1489 | sed_puts(pattern_space, last_gets_char); |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1490 | |
| 1491 | /* Delete and such jump here. */ |
Denis Vlasenko | 826c85f | 2007-01-28 23:26:15 +0000 | [diff] [blame] | 1492 | discard_line: |
Denys Vlasenko | f2559e5 | 2016-05-06 18:25:56 +0200 | [diff] [blame] | 1493 | flush_append(&last_puts_char /*,last_gets_char*/); |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1494 | free(pattern_space); |
| 1495 | |
| 1496 | goto again; |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 1497 | } |
| 1498 | |
Glenn L McGrath | 42c2573 | 2003-10-04 05:27:56 +0000 | [diff] [blame] | 1499 | /* It is possible to have a command line argument with embedded |
Denis Vlasenko | 4b0bb9e | 2007-03-16 23:36:58 +0000 | [diff] [blame] | 1500 | * newlines. This counts as multiple command lines. |
| 1501 | * However, newline can be escaped: 's/e/z\<newline>z/' |
Denys Vlasenko | 40ab27a | 2013-07-08 02:04:44 +0200 | [diff] [blame] | 1502 | * add_cmd() handles this. |
Denis Vlasenko | 4b0bb9e | 2007-03-16 23:36:58 +0000 | [diff] [blame] | 1503 | */ |
Glenn L McGrath | 42c2573 | 2003-10-04 05:27:56 +0000 | [diff] [blame] | 1504 | |
| 1505 | static void add_cmd_block(char *cmdstr) |
| 1506 | { |
Denis Vlasenko | 4b0bb9e | 2007-03-16 23:36:58 +0000 | [diff] [blame] | 1507 | char *sv, *eol; |
Glenn L McGrath | 42c2573 | 2003-10-04 05:27:56 +0000 | [diff] [blame] | 1508 | |
Denis Vlasenko | 4b0bb9e | 2007-03-16 23:36:58 +0000 | [diff] [blame] | 1509 | cmdstr = sv = xstrdup(cmdstr); |
| 1510 | do { |
| 1511 | eol = strchr(cmdstr, '\n'); |
Denys Vlasenko | 40ab27a | 2013-07-08 02:04:44 +0200 | [diff] [blame] | 1512 | if (eol) |
Denis Vlasenko | 4b0bb9e | 2007-03-16 23:36:58 +0000 | [diff] [blame] | 1513 | *eol = '\0'; |
Denis Vlasenko | 4b0bb9e | 2007-03-16 23:36:58 +0000 | [diff] [blame] | 1514 | add_cmd(cmdstr); |
| 1515 | cmdstr = eol + 1; |
| 1516 | } while (eol); |
| 1517 | free(sv); |
Glenn L McGrath | 42c2573 | 2003-10-04 05:27:56 +0000 | [diff] [blame] | 1518 | } |
| 1519 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 1520 | int sed_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 1521 | int sed_main(int argc UNUSED_PARAM, char **argv) |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 1522 | { |
Denis Vlasenko | 67b23e6 | 2006-10-03 21:00:06 +0000 | [diff] [blame] | 1523 | unsigned opt; |
Denis Vlasenko | b97c984 | 2006-10-01 21:05:12 +0000 | [diff] [blame] | 1524 | llist_t *opt_e, *opt_f; |
Simon B | 8c34395 | 2012-05-06 13:59:15 +0200 | [diff] [blame] | 1525 | char *opt_i; |
| 1526 | |
| 1527 | #if ENABLE_LONG_OPTS |
| 1528 | static const char sed_longopts[] ALIGN1 = |
| 1529 | /* name has_arg short */ |
| 1530 | "in-place\0" Optional_argument "i" |
| 1531 | "regexp-extended\0" No_argument "r" |
| 1532 | "quiet\0" No_argument "n" |
| 1533 | "silent\0" No_argument "n" |
| 1534 | "expression\0" Required_argument "e" |
| 1535 | "file\0" Required_argument "f"; |
| 1536 | #endif |
| 1537 | |
Denis Vlasenko | 74324c8 | 2007-06-04 10:16:52 +0000 | [diff] [blame] | 1538 | INIT_G(); |
Rob Landley | e3f5a3f | 2006-05-09 03:53:55 +0000 | [diff] [blame] | 1539 | |
Mark Whitley | 858c1ad | 2000-07-11 21:38:47 +0000 | [diff] [blame] | 1540 | /* destroy command strings on exit */ |
Rob Landley | 0b65628 | 2006-05-08 22:17:23 +0000 | [diff] [blame] | 1541 | if (ENABLE_FEATURE_CLEAN_UP) atexit(sed_free_and_close_stuff); |
Mark Whitley | 858c1ad | 2000-07-11 21:38:47 +0000 | [diff] [blame] | 1542 | |
Rob Landley | fae1dc8 | 2005-11-20 07:44:35 +0000 | [diff] [blame] | 1543 | /* Lie to autoconf when it starts asking stupid questions. */ |
Simon B | 8c34395 | 2012-05-06 13:59:15 +0200 | [diff] [blame] | 1544 | if (argv[1] && strcmp(argv[1], "--version") == 0) { |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1545 | puts("This is not GNU sed version 4.0"); |
| 1546 | return 0; |
Eric Andersen | c06f568 | 2004-02-04 10:57:46 +0000 | [diff] [blame] | 1547 | } |
Eric Andersen | c06f568 | 2004-02-04 10:57:46 +0000 | [diff] [blame] | 1548 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1549 | /* do normal option parsing */ |
Denis Vlasenko | b97c984 | 2006-10-01 21:05:12 +0000 | [diff] [blame] | 1550 | opt_e = opt_f = NULL; |
Simon B | 8c34395 | 2012-05-06 13:59:15 +0200 | [diff] [blame] | 1551 | opt_i = NULL; |
Denys Vlasenko | 2e284a4 | 2010-08-01 04:14:46 +0200 | [diff] [blame] | 1552 | /* -i must be first, to match OPT_in_place definition */ |
David A. Wheeler | af0cdee | 2013-10-29 00:52:48 +0100 | [diff] [blame] | 1553 | /* -E is a synonym of -r: |
| 1554 | * GNU sed 4.2.1 mentions it in neither --help |
| 1555 | * nor manpage, but does recognize it. |
| 1556 | */ |
Denys Vlasenko | 22542ec | 2017-08-08 21:55:02 +0200 | [diff] [blame] | 1557 | opt = getopt32long(argv, "^" |
| 1558 | "i::rEne:*f:*" |
| 1559 | "\0" "nn"/*count -n*/, |
| 1560 | sed_longopts, |
Denys Vlasenko | 036585a | 2017-08-08 16:38:18 +0200 | [diff] [blame] | 1561 | &opt_i, &opt_e, &opt_f, |
| 1562 | &G.be_quiet); /* counter for -n */ |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 1563 | //argc -= optind; |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1564 | argv += optind; |
| 1565 | if (opt & OPT_in_place) { // -i |
Denys Vlasenko | e440b39 | 2017-08-16 17:45:32 +0200 | [diff] [blame] | 1566 | die_func = cleanup_outname; |
Denis Vlasenko | 750fc6d | 2006-09-22 08:56:03 +0000 | [diff] [blame] | 1567 | } |
David A. Wheeler | af0cdee | 2013-10-29 00:52:48 +0100 | [diff] [blame] | 1568 | if (opt & (2|4)) |
| 1569 | G.regex_type |= REG_EXTENDED; // -r or -E |
| 1570 | //if (opt & 8) |
| 1571 | // G.be_quiet++; // -n (implemented with a counter instead) |
Denis Vlasenko | 945bd3d | 2007-04-12 21:20:25 +0000 | [diff] [blame] | 1572 | while (opt_e) { // -e |
Denis Vlasenko | d50dda8 | 2008-06-15 05:40:56 +0000 | [diff] [blame] | 1573 | add_cmd_block(llist_pop(&opt_e)); |
Denis Vlasenko | 750fc6d | 2006-09-22 08:56:03 +0000 | [diff] [blame] | 1574 | } |
Denis Vlasenko | 945bd3d | 2007-04-12 21:20:25 +0000 | [diff] [blame] | 1575 | while (opt_f) { // -f |
| 1576 | char *line; |
| 1577 | FILE *cmdfile; |
Denys Vlasenko | e4d925b | 2016-04-08 00:20:36 +0200 | [diff] [blame] | 1578 | cmdfile = xfopen_stdin(llist_pop(&opt_f)); |
Denis Vlasenko | 8ee649a | 2008-03-26 20:04:27 +0000 | [diff] [blame] | 1579 | while ((line = xmalloc_fgetline(cmdfile)) != NULL) { |
Denis Vlasenko | 945bd3d | 2007-04-12 21:20:25 +0000 | [diff] [blame] | 1580 | add_cmd(line); |
| 1581 | free(line); |
| 1582 | } |
Denys Vlasenko | e4d925b | 2016-04-08 00:20:36 +0200 | [diff] [blame] | 1583 | fclose_if_not_stdin(cmdfile); |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 1584 | } |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1585 | /* if we didn't get a pattern from -e or -f, use argv[0] */ |
David A. Wheeler | af0cdee | 2013-10-29 00:52:48 +0100 | [diff] [blame] | 1586 | if (!(opt & 0x30)) { |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 1587 | if (!*argv) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1588 | bb_show_usage(); |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1589 | add_cmd_block(*argv++); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1590 | } |
Glenn L McGrath | 42c2573 | 2003-10-04 05:27:56 +0000 | [diff] [blame] | 1591 | /* Flush any unfinished commands. */ |
| 1592 | add_cmd(""); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1593 | |
Rob Landley | 53302f8 | 2004-02-18 09:54:15 +0000 | [diff] [blame] | 1594 | /* By default, we write to stdout */ |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 1595 | G.nonstdout = stdout; |
Rob Landley | 53302f8 | 2004-02-18 09:54:15 +0000 | [diff] [blame] | 1596 | |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1597 | /* 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] | 1598 | * files were specified or '-' was specified, take input from stdin. |
| 1599 | * Otherwise, we process all the files specified. */ |
Denys Vlasenko | deb0769 | 2013-11-28 12:08:51 +0100 | [diff] [blame] | 1600 | G.input_file_list = argv; |
| 1601 | if (!argv[0]) { |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1602 | if (opt & OPT_in_place) |
Denis Vlasenko | 8077850 | 2006-10-25 12:46:46 +0000 | [diff] [blame] | 1603 | bb_error_msg_and_die(bb_msg_requires_arg, "-i"); |
Denys Vlasenko | deb0769 | 2013-11-28 12:08:51 +0100 | [diff] [blame] | 1604 | argv[0] = (char*)bb_msg_standard_input; |
| 1605 | /* G.last_input_file = 0; - already is */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1606 | } else { |
Denys Vlasenko | deb0769 | 2013-11-28 12:08:51 +0100 | [diff] [blame] | 1607 | goto start; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1608 | |
Denys Vlasenko | deb0769 | 2013-11-28 12:08:51 +0100 | [diff] [blame] | 1609 | for (; *argv; argv++) { |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 1610 | struct stat statbuf; |
| 1611 | int nonstdoutfd; |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 1612 | sed_cmd_t *sed_cmd; |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 1613 | |
Denys Vlasenko | deb0769 | 2013-11-28 12:08:51 +0100 | [diff] [blame] | 1614 | G.last_input_file++; |
| 1615 | start: |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1616 | if (!(opt & OPT_in_place)) { |
Denys Vlasenko | deb0769 | 2013-11-28 12:08:51 +0100 | [diff] [blame] | 1617 | if (LONE_DASH(*argv)) { |
| 1618 | *argv = (char*)bb_msg_standard_input; |
| 1619 | process_files(); |
| 1620 | } |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 1621 | continue; |
| 1622 | } |
| 1623 | |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 1624 | /* -i: process each FILE separately: */ |
| 1625 | |
Denys Vlasenko | cd73871 | 2014-10-05 02:44:34 +0200 | [diff] [blame] | 1626 | if (stat(*argv, &statbuf) != 0) { |
| 1627 | bb_simple_perror_msg(*argv); |
| 1628 | G.exitcode = EXIT_FAILURE; |
| 1629 | G.current_input_file++; |
| 1630 | continue; |
| 1631 | } |
Denys Vlasenko | deb0769 | 2013-11-28 12:08:51 +0100 | [diff] [blame] | 1632 | G.outname = xasprintf("%sXXXXXX", *argv); |
Alexander Shishkin | 6722737 | 2010-10-22 13:27:16 +0200 | [diff] [blame] | 1633 | nonstdoutfd = xmkstemp(G.outname); |
Denys Vlasenko | a7ccdee | 2009-11-15 23:28:11 +0100 | [diff] [blame] | 1634 | G.nonstdout = xfdopen_for_write(nonstdoutfd); |
Denys Vlasenko | 5799248 | 2009-11-13 09:09:07 +0100 | [diff] [blame] | 1635 | /* Set permissions/owner of output file */ |
Denys Vlasenko | 3b727cc | 2010-06-18 02:12:56 +0200 | [diff] [blame] | 1636 | /* chmod'ing AFTER chown would preserve suid/sgid bits, |
| 1637 | * but GNU sed 4.2.1 does not preserve them either */ |
Denis Vlasenko | 2f8f71b | 2006-12-10 02:09:12 +0000 | [diff] [blame] | 1638 | fchmod(nonstdoutfd, statbuf.st_mode); |
Denys Vlasenko | 5799248 | 2009-11-13 09:09:07 +0100 | [diff] [blame] | 1639 | fchown(nonstdoutfd, statbuf.st_uid, statbuf.st_gid); |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 1640 | |
Denis Vlasenko | d18a3a2 | 2006-10-25 12:46:03 +0000 | [diff] [blame] | 1641 | process_files(); |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 1642 | fclose(G.nonstdout); |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 1643 | G.nonstdout = stdout; |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 1644 | |
Simon B | 8c34395 | 2012-05-06 13:59:15 +0200 | [diff] [blame] | 1645 | if (opt_i) { |
Denys Vlasenko | deb0769 | 2013-11-28 12:08:51 +0100 | [diff] [blame] | 1646 | char *backupname = xasprintf("%s%s", *argv, opt_i); |
| 1647 | xrename(*argv, backupname); |
Simon B | 8c34395 | 2012-05-06 13:59:15 +0200 | [diff] [blame] | 1648 | free(backupname); |
| 1649 | } |
Denys Vlasenko | deb0769 | 2013-11-28 12:08:51 +0100 | [diff] [blame] | 1650 | /* else unlink(*argv); - rename below does this */ |
| 1651 | xrename(G.outname, *argv); //TODO: rollback backup on error? |
Denis Vlasenko | 17a1526 | 2007-03-26 20:48:46 +0000 | [diff] [blame] | 1652 | free(G.outname); |
Denis Vlasenko | 4027664 | 2007-11-13 16:48:10 +0000 | [diff] [blame] | 1653 | G.outname = NULL; |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 1654 | |
Denys Vlasenko | 63f4d32 | 2015-04-17 14:24:55 +0200 | [diff] [blame] | 1655 | /* Fix disabled range matches and mangled ",+N" ranges */ |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 1656 | for (sed_cmd = G.sed_cmd_head; sed_cmd; sed_cmd = sed_cmd->next) { |
| 1657 | sed_cmd->beg_line = sed_cmd->beg_line_orig; |
Denys Vlasenko | 63f4d32 | 2015-04-17 14:24:55 +0200 | [diff] [blame] | 1658 | sed_cmd->end_line = sed_cmd->end_line_orig; |
Denys Vlasenko | a7d6bb3 | 2011-08-16 13:29:34 +0200 | [diff] [blame] | 1659 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1660 | } |
Denys Vlasenko | eb08b6e | 2010-06-19 17:51:06 +0200 | [diff] [blame] | 1661 | /* Here, to handle "sed 'cmds' nonexistent_file" case we did: |
Denys Vlasenko | 259b3c0 | 2013-11-28 03:14:16 +0100 | [diff] [blame] | 1662 | * if (G.current_input_file[G.current_input_file] == NULL) |
| 1663 | * return G.exitcode; |
Denys Vlasenko | eb08b6e | 2010-06-19 17:51:06 +0200 | [diff] [blame] | 1664 | * but it's not needed since process_files() works correctly |
| 1665 | * in this case too. */ |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1666 | } |
Denys Vlasenko | 259b3c0 | 2013-11-28 03:14:16 +0100 | [diff] [blame] | 1667 | |
Denys Vlasenko | eb08b6e | 2010-06-19 17:51:06 +0200 | [diff] [blame] | 1668 | process_files(); |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1669 | |
Denys Vlasenko | 259b3c0 | 2013-11-28 03:14:16 +0100 | [diff] [blame] | 1670 | return G.exitcode; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 1671 | } |