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