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