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