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