Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 1 | /* |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 2 | * sed.c - very minimalist version of sed |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 3 | * |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 4 | * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley |
| 5 | * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org> |
Matt Kraai | 5ed78ad | 2002-01-03 21:12:34 +0000 | [diff] [blame] | 6 | * Copyright (C) 2002 Matt Kraai |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 7 | * Copyright (C) 2003 by Glenn McGrath <bug1@optushome.com.au> |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 8 | * |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; either version 2 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This program is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 17 | * General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 22 | * |
| 23 | */ |
| 24 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 25 | /* |
| 26 | Supported features and commands in this version of sed: |
| 27 | |
| 28 | - comments ('#') |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 29 | - address matching: num|/matchstr/[,num|/matchstr/|$]command |
| 30 | - commands: (p)rint, (d)elete, (s)ubstitue (with g & I flags) |
| 31 | - edit commands: (a)ppend, (i)nsert, (c)hange |
Mark Whitley | 1f3b9f2 | 2001-05-11 22:27:13 +0000 | [diff] [blame] | 32 | - file commands: (r)ead |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 33 | - backreferences in substitution expressions (\1, \2...\9) |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 34 | - grouped commands: {cmd1;cmd2} |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 35 | - transliteration (y/source-chars/dest-chars/) |
| 36 | - pattern space hold space storing / swapping (g, h, x) |
| 37 | - labels / branching (: label, b, t) |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 38 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 39 | (Note: Specifying an address (range) to match is *optional*; commands |
| 40 | default to the whole pattern space if no specific address match was |
| 41 | requested.) |
| 42 | |
| 43 | Unsupported features: |
| 44 | |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 45 | - GNU extensions |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 46 | - and lots, lots more. |
Glenn L McGrath | d5eadea | 2003-03-09 02:39:29 +0000 | [diff] [blame] | 47 | |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 48 | Bugs: |
| 49 | |
| 50 | - Cant subst globally using ^ or $ in regex, eg. "aah" | sed 's/^a/b/g' |
| 51 | |
Glenn L McGrath | d5eadea | 2003-03-09 02:39:29 +0000 | [diff] [blame] | 52 | Reference http://www.opengroup.org/onlinepubs/007904975/utilities/sed.html |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 53 | */ |
| 54 | |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 55 | #include <stdio.h> |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 56 | #include <unistd.h> /* for getopt() */ |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 57 | #include <regex.h> |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 58 | #include <string.h> /* for strdup() */ |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 59 | #include <errno.h> |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 60 | #include <ctype.h> /* for isspace() */ |
Eric Andersen | ed3ef50 | 2001-01-27 08:24:39 +0000 | [diff] [blame] | 61 | #include <stdlib.h> |
Eric Andersen | 3570a34 | 2000-09-25 21:45:58 +0000 | [diff] [blame] | 62 | #include "busybox.h" |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 63 | |
Glenn L McGrath | e7a8bc9 | 2003-03-09 10:23:57 +0000 | [diff] [blame] | 64 | typedef struct sed_cmd_s { |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 65 | /* Order by alignment requirements */ |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 66 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 67 | /* address storage */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 68 | regex_t *beg_match; /* sed -e '/match/cmd' */ |
| 69 | regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */ |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 70 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 71 | /* SUBSTITUTION COMMAND SPECIFIC FIELDS */ |
| 72 | |
| 73 | /* sed -e 's/sub_match/replace/' */ |
| 74 | regex_t *sub_match; |
| 75 | char *replace; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 76 | |
| 77 | /* EDIT COMMAND (a,i,c) SPECIFIC FIELDS */ |
| 78 | char *editline; |
| 79 | |
| 80 | /* FILE COMMAND (r) SPECIFIC FIELDS */ |
| 81 | char *filename; |
| 82 | |
| 83 | /* address storage */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 84 | int beg_line; /* 'sed 1p' 0 == no begining line, apply commands to all lines */ |
| 85 | int end_line; /* 'sed 1,3p' 0 == no end line, use only beginning. -1 == $ */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 86 | /* SUBSTITUTION COMMAND SPECIFIC FIELDS */ |
| 87 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 88 | unsigned int num_backrefs:4; /* how many back references (\1..\9) */ |
| 89 | /* Note: GNU/POSIX sed does not save more than nine backrefs, so |
| 90 | * we only use 4 bits to hold the number */ |
| 91 | unsigned int sub_g:1; /* sed -e 's/foo/bar/g' (global) */ |
| 92 | unsigned int sub_p:1; /* sed -e 's/foo/bar/p' (print substitution) */ |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 93 | |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 94 | /* TRANSLATE COMMAND */ |
| 95 | char *translate; |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 96 | |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 97 | /* GENERAL FIELDS */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 98 | /* the command */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 99 | char cmd; /* p,d,s (add more at your leisure :-) */ |
Robert Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 100 | |
| 101 | /* inversion flag */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 102 | int invert; /* the '!' after the address */ |
Glenn L McGrath | c949bfa | 2003-03-28 03:53:31 +0000 | [diff] [blame] | 103 | |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 104 | /* Branch commands */ |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 105 | char *label; |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 106 | |
Glenn L McGrath | c949bfa | 2003-03-28 03:53:31 +0000 | [diff] [blame] | 107 | /* next command in list (sequential list of specified commands) */ |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 108 | struct sed_cmd_s *next; |
Glenn L McGrath | c949bfa | 2003-03-28 03:53:31 +0000 | [diff] [blame] | 109 | |
Glenn L McGrath | e7a8bc9 | 2003-03-09 10:23:57 +0000 | [diff] [blame] | 110 | } sed_cmd_t; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 111 | |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 112 | |
| 113 | /* externs */ |
| 114 | extern void xregcomp(regex_t * preg, const char *regex, int cflags); |
| 115 | extern int optind; /* in unistd.h */ |
| 116 | extern char *optarg; /* ditto */ |
| 117 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 118 | /* globals */ |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 119 | /* options */ |
| 120 | static int be_quiet = 0; |
| 121 | static const char bad_format_in_subst[] = |
| 122 | "bad format in substitution expression"; |
| 123 | |
Glenn L McGrath | c949bfa | 2003-03-28 03:53:31 +0000 | [diff] [blame] | 124 | /* linked list of sed commands */ |
| 125 | static sed_cmd_t sed_cmd_head; |
| 126 | static sed_cmd_t *sed_cmd_tail = &sed_cmd_head; |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 127 | static sed_cmd_t *block_cmd; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 128 | |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 129 | static int in_block = 0; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 130 | const char *const semicolon_whitespace = "; \n\r\t\v\0"; |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 131 | static regex_t *previous_regex_ptr = NULL; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 132 | |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 133 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 134 | #ifdef CONFIG_FEATURE_CLEAN_UP |
Matt Kraai | 0c390a7 | 2001-11-20 16:00:19 +0000 | [diff] [blame] | 135 | static void destroy_cmd_strs(void) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 136 | { |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 137 | sed_cmd_t *sed_cmd = sed_cmd_head.next; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 138 | |
Glenn L McGrath | 56c633c | 2003-03-28 04:23:23 +0000 | [diff] [blame] | 139 | while (sed_cmd) { |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 140 | sed_cmd_t *sed_cmd_next = sed_cmd->next; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 141 | |
Glenn L McGrath | 56c633c | 2003-03-28 04:23:23 +0000 | [diff] [blame] | 142 | if (sed_cmd->beg_match) { |
| 143 | regfree(sed_cmd->beg_match); |
| 144 | free(sed_cmd->beg_match); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 145 | } |
Glenn L McGrath | 56c633c | 2003-03-28 04:23:23 +0000 | [diff] [blame] | 146 | if (sed_cmd->end_match) { |
| 147 | regfree(sed_cmd->end_match); |
| 148 | free(sed_cmd->end_match); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 149 | } |
Glenn L McGrath | 56c633c | 2003-03-28 04:23:23 +0000 | [diff] [blame] | 150 | if (sed_cmd->sub_match) { |
| 151 | regfree(sed_cmd->sub_match); |
| 152 | free(sed_cmd->sub_match); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 153 | } |
Glenn L McGrath | 56c633c | 2003-03-28 04:23:23 +0000 | [diff] [blame] | 154 | free(sed_cmd->replace); |
| 155 | free(sed_cmd); |
| 156 | sed_cmd = sed_cmd_next; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 157 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 158 | } |
Mark Whitley | c41e8c8 | 2000-07-12 23:35:21 +0000 | [diff] [blame] | 159 | #endif |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 160 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 161 | /* |
Eric Andersen | 28b3c53 | 2001-01-02 11:01:31 +0000 | [diff] [blame] | 162 | * index_of_next_unescaped_regexp_delim - walks left to right through a string |
| 163 | * beginning at a specified index and returns the index of the next regular |
| 164 | * expression delimiter (typically a forward * slash ('/')) not preceeded by |
| 165 | * a backslash ('\'). |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 166 | */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 167 | static int index_of_next_unescaped_regexp_delim(const char delimiter, |
| 168 | const char *str) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 169 | { |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 170 | int bracket = -1; |
| 171 | int escaped = 0; |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 172 | int idx = 0; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 173 | char ch; |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 174 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 175 | for (; (ch = str[idx]); idx++) { |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 176 | if (bracket != -1) { |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 177 | if (ch == ']' && !(bracket == idx - 1 || |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 178 | (bracket == idx - 2 && str[idx - 1] == '^'))) |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 179 | bracket = -1; |
| 180 | } else if (escaped) |
| 181 | escaped = 0; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 182 | else if (ch == '\\') |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 183 | escaped = 1; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 184 | else if (ch == '[') |
Matt Kraai | a0065d5 | 2001-08-24 14:45:50 +0000 | [diff] [blame] | 185 | bracket = idx; |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 186 | else if (ch == delimiter) |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 187 | return idx; |
| 188 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 189 | |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 190 | /* if we make it to here, we've hit the end of the string */ |
| 191 | return -1; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 192 | } |
| 193 | |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 194 | static int parse_regex_delim(const char *cmdstr, char **match, char **replace) |
| 195 | { |
| 196 | const char *cmdstr_ptr = cmdstr; |
| 197 | char delimiter; |
| 198 | int idx = 0; |
| 199 | |
| 200 | /* verify that the 's' is followed by something. That something |
| 201 | * (typically a 'slash') is now our regexp delimiter... */ |
| 202 | if (*cmdstr == '\0') |
Glenn L McGrath | 9a52bb6 | 2003-03-30 09:38:40 +0000 | [diff] [blame] | 203 | bb_error_msg_and_die(bad_format_in_subst); |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 204 | else |
| 205 | delimiter = *cmdstr_ptr; |
| 206 | |
| 207 | cmdstr_ptr++; |
| 208 | |
| 209 | /* save the match string */ |
| 210 | idx = index_of_next_unescaped_regexp_delim(delimiter, cmdstr_ptr); |
| 211 | if (idx == -1) { |
Glenn L McGrath | 9a52bb6 | 2003-03-30 09:38:40 +0000 | [diff] [blame] | 212 | bb_error_msg_and_die(bad_format_in_subst); |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 213 | } |
| 214 | *match = bb_xstrndup(cmdstr_ptr, idx); |
| 215 | |
| 216 | /* save the replacement string */ |
| 217 | cmdstr_ptr += idx + 1; |
| 218 | idx = index_of_next_unescaped_regexp_delim(delimiter, cmdstr_ptr); |
| 219 | if (idx == -1) { |
Glenn L McGrath | 9a52bb6 | 2003-03-30 09:38:40 +0000 | [diff] [blame] | 220 | bb_error_msg_and_die(bad_format_in_subst); |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 221 | } |
| 222 | *replace = bb_xstrndup(cmdstr_ptr, idx); |
| 223 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 224 | return ((cmdstr_ptr - cmdstr) + idx); |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 225 | } |
| 226 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 227 | /* |
| 228 | * returns the index in the string just past where the address ends. |
| 229 | */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 230 | static int get_address(char *my_str, int *linenum, regex_t ** regex) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 231 | { |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 232 | int idx = 0; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 233 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 234 | if (isdigit(my_str[idx])) { |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 235 | char *endstr; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 236 | |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 237 | *linenum = strtol(my_str, &endstr, 10); |
| 238 | /* endstr shouldnt ever equal NULL */ |
| 239 | idx = endstr - my_str; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 240 | } else if (my_str[idx] == '$') { |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 241 | *linenum = -1; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 242 | idx++; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 243 | } else if (my_str[idx] == '/' || my_str[idx] == '\\') { |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 244 | int idx_start = 1; |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 245 | char delimiter; |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 246 | |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 247 | delimiter = '/'; |
Robert Griebl | 7940147 | 2002-08-06 21:07:17 +0000 | [diff] [blame] | 248 | if (my_str[idx] == '\\') { |
Robert Griebl | 00f5ecb | 2002-08-06 23:13:31 +0000 | [diff] [blame] | 249 | idx_start++; |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 250 | delimiter = my_str[++idx]; |
Robert Griebl | 7940147 | 2002-08-06 21:07:17 +0000 | [diff] [blame] | 251 | } |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 252 | idx++; |
| 253 | idx += index_of_next_unescaped_regexp_delim(delimiter, my_str + idx); |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 254 | if (idx == -1) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 255 | bb_error_msg_and_die("unterminated match expression"); |
Glenn L McGrath | 1fb4467 | 2003-03-09 08:44:49 +0000 | [diff] [blame] | 256 | } |
Mark Whitley | df5f6ba | 2000-07-11 16:53:56 +0000 | [diff] [blame] | 257 | my_str[idx] = '\0'; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 258 | |
| 259 | *regex = (regex_t *) xmalloc(sizeof(regex_t)); |
| 260 | xregcomp(*regex, my_str + idx_start, REG_NEWLINE); |
| 261 | idx++; /* so it points to the next character after the last '/' */ |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 262 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 263 | return idx; |
| 264 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 265 | |
Glenn L McGrath | e7a8bc9 | 2003-03-09 10:23:57 +0000 | [diff] [blame] | 266 | static int parse_subst_cmd(sed_cmd_t * const sed_cmd, const char *substr) |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 267 | { |
Glenn L McGrath | e01f966 | 2003-03-18 08:37:57 +0000 | [diff] [blame] | 268 | int cflags = 0; |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 269 | char *match; |
| 270 | int idx = 0; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 271 | int j; |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 272 | |
| 273 | /* |
| 274 | * the string that gets passed to this function should look like this: |
Mark Whitley | 0e4cec0 | 2000-08-21 21:29:20 +0000 | [diff] [blame] | 275 | * s/match/replace/gIp |
| 276 | * || | ||| |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 277 | * mandatory optional |
| 278 | * |
| 279 | * (all three of the '/' slashes are mandatory) |
| 280 | */ |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 281 | idx = parse_regex_delim(substr, &match, &sed_cmd->replace); |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 282 | |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 283 | /* determine the number of back references in the match string */ |
| 284 | /* Note: we compute this here rather than in the do_subst_command() |
| 285 | * function to save processor time, at the expense of a little more memory |
| 286 | * (4 bits) per sed_cmd */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 287 | |
| 288 | /* sed_cmd->num_backrefs = 0; *//* XXX: not needed? --apparently not */ |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 289 | for (j = 0; match[j]; j++) { |
| 290 | /* GNU/POSIX sed does not save more than nine backrefs */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 291 | if (match[j] == '\\' && match[j + 1] == '(' |
| 292 | && sed_cmd->num_backrefs <= 9) |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 293 | sed_cmd->num_backrefs++; |
| 294 | } |
| 295 | |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 296 | /* process the flags */ |
| 297 | while (substr[++idx]) { |
| 298 | switch (substr[idx]) { |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 299 | case 'g': |
| 300 | sed_cmd->sub_g = 1; |
| 301 | break; |
Glenn L McGrath | bed4033 | 2003-03-10 02:21:14 +0000 | [diff] [blame] | 302 | /* Hmm, i dont see the I option mentioned in the standard */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 303 | case 'I': |
| 304 | cflags |= REG_ICASE; |
| 305 | break; |
| 306 | case 'p': |
| 307 | sed_cmd->sub_p = 1; |
| 308 | break; |
| 309 | default: |
| 310 | /* any whitespace or semicolon trailing after a s/// is ok */ |
| 311 | if (strchr(semicolon_whitespace, substr[idx])) |
| 312 | goto out; |
| 313 | /* else */ |
| 314 | bb_error_msg_and_die("bad option in substitution expression"); |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 315 | } |
| 316 | } |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 317 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 318 | out: |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 319 | /* compile the match string into a regex */ |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 320 | if (*match != '\0') { |
| 321 | /* If match is empty, we use last regex used at runtime */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 322 | sed_cmd->sub_match = (regex_t *) xmalloc(sizeof(regex_t)); |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 323 | xregcomp(sed_cmd->sub_match, match, cflags); |
| 324 | } |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 325 | free(match); |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 326 | |
| 327 | return idx; |
Mark Whitley | 06f3529 | 2000-07-13 19:58:04 +0000 | [diff] [blame] | 328 | } |
| 329 | |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 330 | static void replace_slash_n(char *string) |
| 331 | { |
| 332 | int i; |
| 333 | int remaining = strlen(string); |
| 334 | |
| 335 | for (i = 0; string[i]; i++) { |
| 336 | if ((string[i] == '\\') && (string[i + 1] == 'n')) { |
| 337 | string[i] = '\n'; |
| 338 | memmove(string + i + 1, string + i + 1, remaining - 1); |
| 339 | } else { |
| 340 | remaining--; |
| 341 | } |
| 342 | } |
| 343 | } |
| 344 | |
| 345 | static int parse_translate_cmd(sed_cmd_t * const sed_cmd, const char *cmdstr) |
| 346 | { |
| 347 | char *match; |
| 348 | char *replace; |
| 349 | int idx; |
| 350 | int i; |
| 351 | |
| 352 | idx = parse_regex_delim(cmdstr, &match, &replace); |
| 353 | replace_slash_n(match); |
| 354 | replace_slash_n(replace); |
| 355 | sed_cmd->translate = xcalloc(1, (strlen(match) + 1) * 2); |
| 356 | for (i = 0; (match[i] != 0) && (replace[i] != 0); i++) { |
| 357 | sed_cmd->translate[i * 2] = match[i]; |
| 358 | sed_cmd->translate[(i * 2) + 1] = replace[i]; |
| 359 | } |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 360 | return (idx + 1); |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 361 | } |
| 362 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 363 | static int parse_edit_cmd(sed_cmd_t * sed_cmd, const char *editstr) |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 364 | { |
Matt Kraai | 5ed78ad | 2002-01-03 21:12:34 +0000 | [diff] [blame] | 365 | int i, j; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 366 | |
| 367 | /* |
| 368 | * the string that gets passed to this function should look like this: |
| 369 | * |
| 370 | * need one of these |
| 371 | * | |
| 372 | * | this backslash (immediately following the edit command) is mandatory |
| 373 | * | | |
| 374 | * [aic]\ |
| 375 | * TEXT1\ |
| 376 | * TEXT2\ |
| 377 | * TEXTN |
| 378 | * |
| 379 | * as soon as we hit a TEXT line that has no trailing '\', we're done. |
| 380 | * this means a command like: |
| 381 | * |
| 382 | * i\ |
| 383 | * INSERTME |
| 384 | * |
| 385 | * is a-ok. |
| 386 | * |
| 387 | */ |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 388 | if ((*editstr != '\\') || ((editstr[1] != '\n') && (editstr[1] != '\r'))) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 389 | bb_error_msg_and_die("bad format in edit expression"); |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 390 | } |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 391 | |
| 392 | /* store the edit line text */ |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 393 | sed_cmd->editline = xmalloc(strlen(&editstr[2]) + 2); |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 394 | for (i = 2, j = 0; |
| 395 | editstr[i] != '\0' && strchr("\r\n", editstr[i]) == NULL; i++, j++) { |
| 396 | if ((editstr[i] == '\\') && strchr("\n\r", editstr[i + 1]) != NULL) { |
Matt Kraai | 5ed78ad | 2002-01-03 21:12:34 +0000 | [diff] [blame] | 397 | sed_cmd->editline[j] = '\n'; |
| 398 | i++; |
| 399 | } else |
| 400 | sed_cmd->editline[j] = editstr[i]; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 401 | } |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 402 | |
Mark Whitley | 56c14a6 | 2001-04-20 23:41:44 +0000 | [diff] [blame] | 403 | /* figure out if we need to add a newline */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 404 | if (sed_cmd->editline[j - 1] != '\n') |
Matt Kraai | 5ed78ad | 2002-01-03 21:12:34 +0000 | [diff] [blame] | 405 | sed_cmd->editline[j++] = '\n'; |
Mark Whitley | 56c14a6 | 2001-04-20 23:41:44 +0000 | [diff] [blame] | 406 | |
| 407 | /* terminate string */ |
Matt Kraai | 5ed78ad | 2002-01-03 21:12:34 +0000 | [diff] [blame] | 408 | sed_cmd->editline[j] = '\0'; |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 409 | |
Matt Kraai | 5ed78ad | 2002-01-03 21:12:34 +0000 | [diff] [blame] | 410 | return i; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 411 | } |
| 412 | |
Mark Whitley | 1f3b9f2 | 2001-05-11 22:27:13 +0000 | [diff] [blame] | 413 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 414 | static int parse_file_cmd(sed_cmd_t * sed_cmd, const char *filecmdstr) |
Mark Whitley | 1f3b9f2 | 2001-05-11 22:27:13 +0000 | [diff] [blame] | 415 | { |
| 416 | int idx = 0; |
| 417 | int filenamelen = 0; |
| 418 | |
| 419 | /* |
| 420 | * the string that gets passed to this function should look like this: |
| 421 | * '[ ]filename' |
| 422 | * | | |
| 423 | * | a filename |
| 424 | * | |
| 425 | * optional whitespace |
| 426 | |
| 427 | * re: the file to be read, the GNU manual says the following: "Note that |
| 428 | * if filename cannot be read, it is treated as if it were an empty file, |
| 429 | * without any error indication." Thus, all of the following commands are |
| 430 | * perfectly leagal: |
| 431 | * |
| 432 | * sed -e '1r noexist' |
| 433 | * sed -e '1r ;' |
| 434 | * sed -e '1r' |
| 435 | */ |
| 436 | |
| 437 | /* the file command may be followed by whitespace; move past it. */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 438 | while (isspace(filecmdstr[++idx])) {; |
| 439 | } |
| 440 | |
Mark Whitley | 1f3b9f2 | 2001-05-11 22:27:13 +0000 | [diff] [blame] | 441 | /* the first non-whitespace we get is a filename. the filename ends when we |
| 442 | * hit a normal sed command terminator or end of string */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 443 | filenamelen = strcspn(&filecmdstr[idx], semicolon_whitespace); |
Matt Kraai | 6e9e136 | 2001-05-27 14:11:52 +0000 | [diff] [blame] | 444 | sed_cmd->filename = xmalloc(filenamelen + 1); |
| 445 | safe_strncpy(sed_cmd->filename, &filecmdstr[idx], filenamelen + 1); |
Mark Whitley | 1f3b9f2 | 2001-05-11 22:27:13 +0000 | [diff] [blame] | 446 | |
| 447 | return idx + filenamelen; |
| 448 | } |
| 449 | |
Glenn L McGrath | 2971ef1 | 2003-03-18 01:19:23 +0000 | [diff] [blame] | 450 | /* |
| 451 | * Process the commands arguments |
| 452 | */ |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 453 | static char *parse_cmd_str(sed_cmd_t *sed_cmd, char *cmdstr) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 454 | { |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 455 | /* handle (s)ubstitution command */ |
Glenn L McGrath | 2971ef1 | 2003-03-18 01:19:23 +0000 | [diff] [blame] | 456 | if (sed_cmd->cmd == 's') { |
Glenn L McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 457 | cmdstr += parse_subst_cmd(sed_cmd, cmdstr); |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 458 | } |
| 459 | /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */ |
| 460 | else if (strchr("aic", sed_cmd->cmd)) { |
| 461 | 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] | 462 | bb_error_msg_and_die |
| 463 | ("only a beginning address can be specified for edit commands"); |
Glenn L McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 464 | cmdstr += parse_edit_cmd(sed_cmd, cmdstr); |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 465 | } |
| 466 | /* handle file cmds: (r)ead */ |
| 467 | else if (sed_cmd->cmd == 'r') { |
| 468 | if (sed_cmd->end_line || sed_cmd->end_match) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 469 | bb_error_msg_and_die("Command only uses one address"); |
Glenn L McGrath | 4c6523a | 2003-03-09 11:06:38 +0000 | [diff] [blame] | 470 | cmdstr += parse_file_cmd(sed_cmd, cmdstr); |
Glenn L McGrath | 2f8a401 | 2003-03-09 02:44:49 +0000 | [diff] [blame] | 471 | } |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 472 | /* handle branch commands */ |
Glenn L McGrath | 595a6a4 | 2003-03-28 08:36:52 +0000 | [diff] [blame] | 473 | else if (strchr(":bt", sed_cmd->cmd)) { |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 474 | int length; |
| 475 | |
| 476 | cmdstr += strspn(cmdstr, " "); |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 477 | length = strcspn(cmdstr, "; \n"); |
| 478 | sed_cmd->label = strndup(cmdstr, length); |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 479 | cmdstr += length; |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 480 | } |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 481 | /* translation command */ |
| 482 | else if (sed_cmd->cmd == 'y') { |
| 483 | cmdstr += parse_translate_cmd(sed_cmd, cmdstr); |
| 484 | } |
Glenn L McGrath | 2971ef1 | 2003-03-18 01:19:23 +0000 | [diff] [blame] | 485 | /* if it wasnt a single-letter command that takes no arguments |
| 486 | * then it must be an invalid command. |
| 487 | */ |
Glenn L McGrath | 7ce9e24 | 2003-04-07 16:04:14 +0000 | [diff] [blame] | 488 | else if (strchr("dghnNpPqx=", sed_cmd->cmd) == 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 489 | bb_error_msg_and_die("Unsupported command %c", sed_cmd->cmd); |
Mark Whitley | 1f3b9f2 | 2001-05-11 22:27:13 +0000 | [diff] [blame] | 490 | } |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 491 | |
| 492 | /* give back whatever's left over */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 493 | return (cmdstr); |
Eric Andersen | 50d6360 | 1999-11-09 01:47:36 +0000 | [diff] [blame] | 494 | } |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 495 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 496 | static char *add_cmd(sed_cmd_t * sed_cmd, char *cmdstr) |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 497 | { |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 498 | /* Skip over leading whitespace and semicolons */ |
| 499 | cmdstr += strspn(cmdstr, semicolon_whitespace); |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 500 | |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 501 | /* if we ate the whole thing, that means there was just trailing |
| 502 | * whitespace or a final / no-op semicolon. either way, get out */ |
| 503 | if (*cmdstr == '\0') { |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 504 | return (NULL); |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 505 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 506 | |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 507 | /* if this is a comment, jump past it and keep going */ |
| 508 | if (*cmdstr == '#') { |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 509 | /* "#n" is the same as using -n on the command line */ |
| 510 | if (cmdstr[1] == 'n') { |
| 511 | be_quiet++; |
| 512 | } |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 513 | return (strpbrk(cmdstr, "\n\r")); |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 514 | } |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 515 | |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 516 | /* Test for end of block */ |
| 517 | if (*cmdstr == '}') { |
| 518 | in_block = 0; |
| 519 | cmdstr++; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 520 | return (cmdstr); |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 521 | } |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 522 | |
| 523 | /* parse the command |
| 524 | * format is: [addr][,addr]cmd |
| 525 | * |----||-----||-| |
| 526 | * part1 part2 part3 |
| 527 | */ |
| 528 | |
| 529 | /* first part (if present) is an address: either a '$', a number or a /regex/ */ |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 530 | cmdstr += get_address(cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match); |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 531 | |
| 532 | /* second part (if present) will begin with a comma */ |
| 533 | if (*cmdstr == ',') { |
| 534 | int idx; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 535 | |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 536 | cmdstr++; |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 537 | idx = get_address(cmdstr, &sed_cmd->end_line, &sed_cmd->end_match); |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 538 | if (idx == 0) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 539 | bb_error_msg_and_die("get_address: no address found in string\n" |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 540 | "\t(you probably didn't check the string you passed me)"); |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 541 | } |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 542 | cmdstr += idx; |
| 543 | } |
Mark Whitley | 70705d7 | 2000-07-14 19:06:30 +0000 | [diff] [blame] | 544 | |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 545 | /* skip whitespace before the command */ |
| 546 | while (isspace(*cmdstr)) { |
| 547 | cmdstr++; |
| 548 | } |
| 549 | |
| 550 | /* there my be the inversion flag between part2 and part3 */ |
| 551 | if (*cmdstr == '!') { |
| 552 | sed_cmd->invert = 1; |
| 553 | cmdstr++; |
| 554 | |
| 555 | #ifdef SED_FEATURE_STRICT_CHECKING |
| 556 | /* According to the spec |
| 557 | * It is unspecified whether <blank>s can follow a '!' character, |
| 558 | * and conforming applications shall not follow a '!' character |
| 559 | * with <blank>s. |
| 560 | */ |
| 561 | if (isblank(cmdstr[idx]) { |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 562 | bb_error_msg_and_die("blank follows '!'");} |
| 563 | #else |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 564 | /* skip whitespace before the command */ |
| 565 | while (isspace(*cmdstr)) { |
| 566 | cmdstr++; |
| 567 | } |
| 568 | #endif |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 569 | } |
| 570 | |
| 571 | /* last part (mandatory) will be a command */ |
| 572 | if (*cmdstr == '\0') |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 573 | bb_error_msg_and_die("missing command"); |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 574 | |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 575 | /* This is the start of a block of commands */ |
| 576 | if (*cmdstr == '{') { |
| 577 | if (in_block != 0) { |
| 578 | bb_error_msg_and_die("cant handle sub-blocks"); |
| 579 | } |
| 580 | in_block = 1; |
| 581 | block_cmd = sed_cmd; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 582 | |
| 583 | return (cmdstr + 1); |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 584 | } |
| 585 | |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 586 | sed_cmd->cmd = *cmdstr; |
| 587 | cmdstr++; |
| 588 | |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 589 | if (in_block == 1) { |
| 590 | sed_cmd->beg_match = block_cmd->beg_match; |
| 591 | sed_cmd->end_match = block_cmd->end_match; |
| 592 | sed_cmd->beg_line = block_cmd->beg_line; |
| 593 | sed_cmd->end_line = block_cmd->end_line; |
| 594 | sed_cmd->invert = block_cmd->invert; |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 595 | } |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 596 | |
| 597 | cmdstr = parse_cmd_str(sed_cmd, cmdstr); |
| 598 | |
| 599 | /* Add the command to the command array */ |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 600 | sed_cmd_tail->next = sed_cmd; |
| 601 | sed_cmd_tail = sed_cmd_tail->next; |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 602 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 603 | return (cmdstr); |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 604 | } |
| 605 | |
| 606 | static void add_cmd_str(char *cmdstr) |
| 607 | { |
Glenn L McGrath | 0c51832 | 2003-03-30 03:41:53 +0000 | [diff] [blame] | 608 | #ifdef CONFIG_FEATURE_SED_EMBEDED_NEWLINE |
| 609 | char *cmdstr_ptr = cmdstr; |
| 610 | |
| 611 | /* HACK: convert "\n" to match tranlated '\n' string */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 612 | while ((cmdstr_ptr = strstr(cmdstr_ptr, "\\n")) != NULL) { |
Glenn L McGrath | 0c51832 | 2003-03-30 03:41:53 +0000 | [diff] [blame] | 613 | cmdstr = xrealloc(cmdstr, strlen(cmdstr) + 2); |
| 614 | cmdstr_ptr = strstr(cmdstr, "\\n"); |
| 615 | memmove(cmdstr_ptr + 1, cmdstr_ptr, strlen(cmdstr_ptr) + 1); |
| 616 | cmdstr_ptr[0] = '\\'; |
| 617 | cmdstr_ptr += 3; |
| 618 | } |
| 619 | #endif |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 620 | do { |
| 621 | sed_cmd_t *sed_cmd; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 622 | |
Glenn L McGrath | f50ce31 | 2003-03-09 15:12:24 +0000 | [diff] [blame] | 623 | sed_cmd = xcalloc(1, sizeof(sed_cmd_t)); |
| 624 | cmdstr = add_cmd(sed_cmd, cmdstr); |
| 625 | } while (cmdstr && strlen(cmdstr)); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 626 | } |
| 627 | |
| 628 | |
| 629 | static void load_cmd_file(char *filename) |
| 630 | { |
| 631 | FILE *cmdfile; |
| 632 | char *line; |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 633 | char *nextline; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 634 | char *e; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 635 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 636 | cmdfile = bb_xfopen(filename, "r"); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 637 | |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 638 | while ((line = bb_get_line_from_file(cmdfile)) != NULL) { |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 639 | /* if a line ends with '\' it needs the next line appended to it */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 640 | while (((e = last_char_is(line, '\n')) != NULL) |
| 641 | && (e > line) && (e[-1] == '\\') |
| 642 | && ((nextline = bb_get_line_from_file(cmdfile)) != NULL)) { |
| 643 | line = xrealloc(line, (e - line) + 1 + strlen(nextline) + 1); |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 644 | strcat(line, nextline); |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 645 | free(nextline); |
Mark Whitley | 94074a9 | 2000-07-14 00:00:15 +0000 | [diff] [blame] | 646 | } |
Mark Whitley | 464c5de | 2000-07-14 23:24:00 +0000 | [diff] [blame] | 647 | /* eat trailing newline (if any) --if I don't do this, edit commands |
| 648 | * (aic) will print an extra newline */ |
Matt Kraai | 05e782d | 2001-02-01 16:49:30 +0000 | [diff] [blame] | 649 | chomp(line); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 650 | add_cmd_str(line); |
| 651 | free(line); |
| 652 | } |
| 653 | } |
| 654 | |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 655 | struct pipeline { |
| 656 | char *buf; |
| 657 | int idx; |
| 658 | int len; |
| 659 | }; |
| 660 | |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 661 | #define PIPE_MAGIC 0x7f |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 662 | #define PIPE_GROW 64 |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 663 | |
| 664 | void pipe_putc(struct pipeline *const pipeline, char c) |
| 665 | { |
| 666 | if (pipeline->buf[pipeline->idx] == PIPE_MAGIC) { |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 667 | pipeline->buf = xrealloc(pipeline->buf, pipeline->len + PIPE_GROW); |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 668 | memset(pipeline->buf + pipeline->len, 0, PIPE_GROW); |
| 669 | pipeline->len += PIPE_GROW; |
| 670 | pipeline->buf[pipeline->len - 1] = PIPE_MAGIC; |
| 671 | } |
| 672 | pipeline->buf[pipeline->idx++] = (c); |
| 673 | } |
| 674 | |
| 675 | #define pipeputc(c) pipe_putc(pipeline, c) |
| 676 | |
| 677 | #if 0 |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 678 | { |
| 679 | if (pipeline[pipeline_idx] == PIPE_MAGIC) { |
| 680 | pipeline = xrealloc(pipeline, pipeline_len + PIPE_GROW); |
| 681 | memset(pipeline + pipeline_len, 0, PIPE_GROW); |
| 682 | pipeline_len += PIPE_GROW; |
| 683 | pipeline[pipeline_len - 1] = PIPE_MAGIC; |
| 684 | } |
| 685 | pipeline[pipeline_idx++] = (c); |
| 686 | } |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 687 | #endif |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 688 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 689 | static void print_subst_w_backrefs(const char *line, const char *replace, |
| 690 | regmatch_t * regmatch, |
| 691 | struct pipeline *const pipeline, |
| 692 | int matches) |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 693 | { |
| 694 | int i; |
| 695 | |
| 696 | /* go through the replacement string */ |
| 697 | for (i = 0; replace[i]; i++) { |
| 698 | /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 699 | if (replace[i] == '\\' && isdigit(replace[i + 1])) { |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 700 | int j; |
| 701 | char tmpstr[2]; |
| 702 | int backref; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 703 | |
| 704 | ++i; /* i now indexes the backref number, instead of the leading slash */ |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 705 | tmpstr[0] = replace[i]; |
| 706 | tmpstr[1] = 0; |
| 707 | backref = atoi(tmpstr); |
| 708 | /* print out the text held in regmatch[backref] */ |
Matt Kraai | a3e4f45 | 2001-08-20 21:21:06 +0000 | [diff] [blame] | 709 | if (backref <= matches && regmatch[backref].rm_so != -1) |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 710 | for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; |
| 711 | j++) |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 712 | pipeputc(line[j]); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 713 | } |
| 714 | |
Mark Whitley | 83e85f6 | 2000-07-25 20:48:44 +0000 | [diff] [blame] | 715 | /* if we find a backslash escaped character, print the character */ |
| 716 | else if (replace[i] == '\\') { |
| 717 | ++i; |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 718 | pipeputc(replace[i]); |
Mark Whitley | 83e85f6 | 2000-07-25 20:48:44 +0000 | [diff] [blame] | 719 | } |
| 720 | |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 721 | /* if we find an unescaped '&' print out the whole matched text. |
| 722 | * fortunately, regmatch[0] contains the indicies to the whole matched |
| 723 | * expression (kinda seems like it was designed for just such a |
| 724 | * purpose...) */ |
Glenn L McGrath | 2410386 | 2003-04-09 07:51:43 +0000 | [diff] [blame^] | 725 | else if (replace[i] == '&') { |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 726 | int j; |
| 727 | for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++) |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 728 | pipeputc(line[j]); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 729 | } |
| 730 | /* nothing special, just print this char of the replacement string to stdout */ |
| 731 | else |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 732 | pipeputc(replace[i]); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 733 | } |
| 734 | } |
| 735 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 736 | static int do_subst_command(sed_cmd_t * sed_cmd, char **line) |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 737 | { |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 738 | char *hackline = *line; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 739 | struct pipeline thepipe = { NULL, 0, 0 }; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 740 | struct pipeline *const pipeline = &thepipe; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 741 | int altered = 0; |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 742 | int result; |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 743 | regmatch_t *regmatch = NULL; |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 744 | regex_t *current_regex; |
| 745 | |
| 746 | if (sed_cmd->sub_match == NULL) { |
| 747 | current_regex = previous_regex_ptr; |
| 748 | } else { |
| 749 | previous_regex_ptr = current_regex = sed_cmd->sub_match; |
| 750 | } |
| 751 | result = regexec(current_regex, hackline, 0, NULL, 0); |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 752 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 753 | /* we only proceed if the substitution 'search' expression matches */ |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 754 | if (result == REG_NOMATCH) { |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 755 | return 0; |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 756 | } |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 757 | |
| 758 | /* whaddaya know, it matched. get the number of back references */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 759 | regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs + 1)); |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 760 | |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 761 | /* allocate more PIPE_GROW bytes |
| 762 | if replaced string is larger than original */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 763 | thepipe.len = strlen(hackline) + PIPE_GROW; |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 764 | thepipe.buf = xcalloc(1, thepipe.len); |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 765 | /* buffer magic */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 766 | thepipe.buf[thepipe.len - 1] = PIPE_MAGIC; |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 767 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 768 | /* and now, as long as we've got a line to try matching and if we can match |
| 769 | * the search string, we make substitutions */ |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 770 | while ((*hackline || !altered) && (regexec(current_regex, hackline, |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 771 | sed_cmd->num_backrefs + 1, |
| 772 | regmatch, 0) != REG_NOMATCH)) { |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 773 | int i; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 774 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 775 | /* print everything before the match */ |
| 776 | for (i = 0; i < regmatch[0].rm_so; i++) |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 777 | pipeputc(hackline[i]); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 778 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 779 | /* then print the substitution string */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 780 | print_subst_w_backrefs(hackline, sed_cmd->replace, regmatch, |
| 781 | pipeline, sed_cmd->num_backrefs); |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 782 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 783 | /* advance past the match */ |
| 784 | hackline += regmatch[0].rm_eo; |
| 785 | /* flag that something has changed */ |
| 786 | altered++; |
Mark Whitley | 97562bd | 2000-07-17 20:06:42 +0000 | [diff] [blame] | 787 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 788 | /* if we're not doing this globally, get out now */ |
Glenn L McGrath | 7ce9e24 | 2003-04-07 16:04:14 +0000 | [diff] [blame] | 789 | if (!sed_cmd->sub_g) { |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 790 | break; |
Glenn L McGrath | 7ce9e24 | 2003-04-07 16:04:14 +0000 | [diff] [blame] | 791 | } |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 792 | } |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 793 | for (; *hackline; hackline++) |
| 794 | pipeputc(*hackline); |
| 795 | if (thepipe.buf[thepipe.idx] == PIPE_MAGIC) |
| 796 | thepipe.buf[thepipe.idx] = 0; |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 797 | |
| 798 | /* cleanup */ |
| 799 | free(regmatch); |
| 800 | |
Eric Andersen | b76cb68 | 2001-08-22 05:58:16 +0000 | [diff] [blame] | 801 | free(*line); |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 802 | *line = thepipe.buf; |
Mark Whitley | 4f7fe77 | 2000-07-13 20:01:58 +0000 | [diff] [blame] | 803 | return altered; |
| 804 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 805 | |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 806 | static sed_cmd_t *branch_to(const char *label) |
| 807 | { |
| 808 | sed_cmd_t *sed_cmd; |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 809 | for (sed_cmd = sed_cmd_head.next; sed_cmd; sed_cmd = sed_cmd->next) { |
| 810 | if ((sed_cmd->label) && (strcmp(sed_cmd->label, label) == 0)) { |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 811 | break; |
| 812 | } |
| 813 | } |
| 814 | |
| 815 | /* If no match returns last command */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 816 | return (sed_cmd); |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 817 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 818 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 819 | static void process_file(FILE * file) |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 820 | { |
Glenn L McGrath | c6adada | 2003-04-07 12:24:44 +0000 | [diff] [blame] | 821 | char *pattern_space; /* Posix requires it be able to hold at least 8192 bytes */ |
Glenn L McGrath | 7ce9e24 | 2003-04-07 16:04:14 +0000 | [diff] [blame] | 822 | char *hold_space = NULL; /* Posix requires it be able to hold at least 8192 bytes */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 823 | static int linenum = 0; /* GNU sed does not restart counting lines at EOF */ |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 824 | unsigned int still_in_range = 0; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 825 | int altered; |
Glenn L McGrath | a0f0f0c | 2003-03-28 14:11:34 +0000 | [diff] [blame] | 826 | int force_print; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 827 | |
Glenn L McGrath | c6adada | 2003-04-07 12:24:44 +0000 | [diff] [blame] | 828 | pattern_space = bb_get_chomped_line_from_file(file); |
| 829 | if (pattern_space == NULL) { |
Glenn L McGrath | 505bd0f | 2003-03-08 05:21:02 +0000 | [diff] [blame] | 830 | return; |
| 831 | } |
| 832 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 833 | /* go through every line in the file */ |
Glenn L McGrath | 505bd0f | 2003-03-08 05:21:02 +0000 | [diff] [blame] | 834 | do { |
| 835 | char *next_line; |
Glenn L McGrath | c949bfa | 2003-03-28 03:53:31 +0000 | [diff] [blame] | 836 | sed_cmd_t *sed_cmd; |
Glenn L McGrath | 595a6a4 | 2003-03-28 08:36:52 +0000 | [diff] [blame] | 837 | int substituted = 0; |
Glenn L McGrath | 505bd0f | 2003-03-08 05:21:02 +0000 | [diff] [blame] | 838 | |
| 839 | /* Read one line in advance so we can act on the last line, the '$' address */ |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 840 | next_line = bb_get_chomped_line_from_file(file); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 841 | |
| 842 | linenum++; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 843 | altered = 0; |
Glenn L McGrath | a0f0f0c | 2003-03-28 14:11:34 +0000 | [diff] [blame] | 844 | force_print = 0; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 845 | |
| 846 | /* for every line, go through all the commands */ |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 847 | for (sed_cmd = sed_cmd_head.next; sed_cmd; |
| 848 | sed_cmd = sed_cmd->next) { |
Robert Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 849 | int deleted = 0; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 850 | |
| 851 | /* |
| 852 | * entry point into sedding... |
| 853 | */ |
Robert Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 854 | int matched = ( |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 855 | /* no range necessary */ |
| 856 | (sed_cmd->beg_line == 0 |
| 857 | && sed_cmd->end_line == 0 |
| 858 | && sed_cmd->beg_match == NULL |
| 859 | && sed_cmd->end_match == NULL) || |
| 860 | /* this line number is the first address we're looking for */ |
| 861 | (sed_cmd->beg_line |
| 862 | && (sed_cmd->beg_line == linenum)) || |
| 863 | /* this line matches our first address regex */ |
| 864 | (sed_cmd->beg_match |
| 865 | && |
| 866 | (regexec |
| 867 | (sed_cmd->beg_match, pattern_space, 0, NULL, |
| 868 | 0) == 0)) || |
| 869 | /* we are currently within the beginning & ending address range */ |
| 870 | still_in_range || ((sed_cmd->beg_line == -1) |
| 871 | && (next_line == NULL)) |
| 872 | ); |
Robert Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 873 | |
| 874 | if (sed_cmd->invert ^ matched) { |
Glenn L McGrath | c1d9507 | 2003-04-08 06:42:45 +0000 | [diff] [blame] | 875 | /* Update last used regex incase a blank substitute BRE is found */ |
| 876 | if (sed_cmd->beg_match) { |
| 877 | previous_regex_ptr = sed_cmd->beg_match; |
| 878 | } |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 879 | |
| 880 | /* |
| 881 | * actual sedding |
| 882 | */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 883 | switch (sed_cmd->cmd) { |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 884 | case '=': |
| 885 | printf("%d\n", linenum); |
| 886 | break; |
| 887 | case 'P':{ |
| 888 | /* Write the current pattern space upto the first newline */ |
| 889 | char *tmp = strchr(pattern_space, '\n'); |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 890 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 891 | if (tmp) { |
| 892 | *tmp = '\0'; |
| 893 | } |
| 894 | } |
| 895 | case 'p': /* Write the current pattern space to output */ |
| 896 | puts(pattern_space); |
| 897 | break; |
| 898 | case 'd': |
| 899 | altered++; |
| 900 | deleted = 1; |
| 901 | break; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 902 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 903 | case 's': |
| 904 | |
| 905 | /* |
| 906 | * Some special cases for 's' printing to make it compliant with |
| 907 | * GNU sed printing behavior (aka "The -n | s///p Matrix"): |
| 908 | * |
| 909 | * -n ONLY = never print anything regardless of any successful |
| 910 | * substitution |
| 911 | * |
| 912 | * s///p ONLY = always print successful substitutions, even if |
| 913 | * the pattern_space is going to be printed anyway (pattern_space |
| 914 | * will be printed twice). |
| 915 | * |
| 916 | * -n AND s///p = print ONLY a successful substitution ONE TIME; |
| 917 | * no other lines are printed - this is the reason why the 'p' |
| 918 | * flag exists in the first place. |
| 919 | */ |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 920 | |
Glenn L McGrath | 0c51832 | 2003-03-30 03:41:53 +0000 | [diff] [blame] | 921 | #ifdef CONFIG_FEATURE_SED_EMBEDED_NEWLINE |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 922 | /* HACK: escape newlines twice so regex can match them */ |
| 923 | { |
| 924 | int offset = 0; |
| 925 | |
| 926 | while (strchr(pattern_space + offset, '\n') != NULL) { |
| 927 | char *tmp; |
| 928 | |
| 929 | pattern_space = |
| 930 | xrealloc(pattern_space, |
| 931 | strlen(pattern_space) + 2); |
| 932 | tmp = strchr(pattern_space + offset, '\n'); |
| 933 | memmove(tmp + 1, tmp, strlen(tmp) + 1); |
| 934 | tmp[0] = '\\'; |
| 935 | tmp[1] = 'n'; |
| 936 | offset = tmp - pattern_space + 2; |
| 937 | } |
| 938 | } |
Glenn L McGrath | 0c51832 | 2003-03-30 03:41:53 +0000 | [diff] [blame] | 939 | #endif |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 940 | /* we print the pattern_space once, unless we were told to be quiet */ |
| 941 | substituted = do_subst_command(sed_cmd, &pattern_space); |
Glenn L McGrath | 0c51832 | 2003-03-30 03:41:53 +0000 | [diff] [blame] | 942 | |
| 943 | #ifdef CONFIG_FEATURE_SED_EMBEDED_NEWLINE |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 944 | /* undo HACK: escape newlines twice so regex can match them */ |
| 945 | { |
| 946 | char *tmp = pattern_space; |
Glenn L McGrath | 0c51832 | 2003-03-30 03:41:53 +0000 | [diff] [blame] | 947 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 948 | while ((tmp = strstr(tmp, "\\n")) != NULL) { |
| 949 | memmove(tmp, tmp + 1, strlen(tmp + 1) + 1); |
| 950 | tmp[0] = '\n'; |
Glenn L McGrath | 0c51832 | 2003-03-30 03:41:53 +0000 | [diff] [blame] | 951 | } |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 952 | } |
Glenn L McGrath | 0c51832 | 2003-03-30 03:41:53 +0000 | [diff] [blame] | 953 | #endif |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 954 | altered |= substituted; |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 955 | if (!be_quiet && altered && ((sed_cmd->next == NULL) |
| 956 | || (sed_cmd->next->cmd != |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 957 | 's'))) { |
| 958 | force_print = 1; |
| 959 | } |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 960 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 961 | /* we also print the line if we were given the 'p' flag |
| 962 | * (this is quite possibly the second printing) */ |
| 963 | if ((sed_cmd->sub_p) && altered) { |
Glenn L McGrath | c6adada | 2003-04-07 12:24:44 +0000 | [diff] [blame] | 964 | puts(pattern_space); |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 965 | } |
| 966 | break; |
| 967 | case 'a': |
| 968 | puts(pattern_space); |
| 969 | fputs(sed_cmd->editline, stdout); |
| 970 | altered++; |
| 971 | break; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 972 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 973 | case 'i': |
| 974 | fputs(sed_cmd->editline, stdout); |
| 975 | break; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 976 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 977 | case 'c': |
| 978 | /* single-address case */ |
| 979 | if ((sed_cmd->end_match == NULL && sed_cmd->end_line == 0) |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 980 | /* multi-address case */ |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 981 | /* - matching text */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 982 | || (sed_cmd->end_match |
| 983 | && |
| 984 | (regexec |
| 985 | (sed_cmd->end_match, pattern_space, 0, NULL, |
| 986 | 0) == 0)) |
Eric Andersen | c52a6b0 | 2001-11-10 10:49:42 +0000 | [diff] [blame] | 987 | /* - matching line numbers */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 988 | || (sed_cmd->end_line > 0 |
| 989 | && sed_cmd->end_line == linenum)) { |
| 990 | fputs(sed_cmd->editline, stdout); |
| 991 | } |
| 992 | altered++; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 993 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 994 | break; |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 995 | |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 996 | case 'r':{ |
| 997 | FILE *outfile; |
| 998 | |
| 999 | puts(pattern_space); |
| 1000 | outfile = fopen(sed_cmd->filename, "r"); |
| 1001 | if (outfile) |
| 1002 | bb_xprint_and_close_file(outfile); |
| 1003 | /* else if we couldn't open the output file, |
| 1004 | * no biggie, just don't print anything */ |
| 1005 | altered++; |
| 1006 | } |
| 1007 | break; |
| 1008 | case 'q': /* Branch to end of script and quit */ |
| 1009 | deleted = 1; |
| 1010 | /* Exit the outer while loop */ |
| 1011 | free(next_line); |
| 1012 | next_line = NULL; |
| 1013 | break; |
| 1014 | case 'n': /* Read next line from input */ |
| 1015 | free(pattern_space); |
| 1016 | pattern_space = next_line; |
| 1017 | next_line = bb_get_chomped_line_from_file(file); |
| 1018 | linenum++; |
| 1019 | break; |
| 1020 | case 'N': /* Append the next line to the current line */ |
| 1021 | if (next_line) { |
| 1022 | pattern_space = |
| 1023 | realloc(pattern_space, |
| 1024 | strlen(pattern_space) + |
| 1025 | strlen(next_line) + 2); |
| 1026 | strcat(pattern_space, "\n"); |
| 1027 | strcat(pattern_space, next_line); |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1028 | next_line = bb_get_chomped_line_from_file(file); |
Glenn L McGrath | 4157a8a | 2003-03-10 04:12:35 +0000 | [diff] [blame] | 1029 | linenum++; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1030 | } |
| 1031 | break; |
| 1032 | case 'b': |
| 1033 | sed_cmd = branch_to(sed_cmd->label); |
| 1034 | break; |
| 1035 | case 't': |
| 1036 | if (substituted) { |
Glenn L McGrath | 961c6c1 | 2003-03-28 04:43:39 +0000 | [diff] [blame] | 1037 | sed_cmd = branch_to(sed_cmd->label); |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1038 | } |
| 1039 | break; |
| 1040 | case 'y':{ |
| 1041 | int i; |
| 1042 | |
| 1043 | for (i = 0; pattern_space[i] != 0; i++) { |
| 1044 | int j; |
| 1045 | |
| 1046 | for (j = 0; sed_cmd->translate[j]; j += 2) { |
| 1047 | if (pattern_space[i] == sed_cmd->translate[j]) { |
| 1048 | pattern_space[i] = sed_cmd->translate[j + 1]; |
Glenn L McGrath | f01b46d | 2003-03-30 08:02:18 +0000 | [diff] [blame] | 1049 | } |
| 1050 | } |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1051 | } |
| 1052 | } |
| 1053 | break; |
| 1054 | case 'g': /* Replace pattern space with hold space */ |
| 1055 | free(pattern_space); |
| 1056 | pattern_space = strdup(hold_space); |
| 1057 | break; |
| 1058 | case 'h': /* Replace hold space with pattern space */ |
| 1059 | free(hold_space); |
| 1060 | hold_space = strdup(pattern_space); |
| 1061 | break; |
| 1062 | case 'x':{ |
| 1063 | /* Swap hold and pattern space */ |
| 1064 | char *tmp; |
| 1065 | |
| 1066 | tmp = pattern_space; |
| 1067 | pattern_space = hold_space; |
| 1068 | hold_space = tmp; |
| 1069 | } |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 1070 | } |
Robert Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 1071 | } |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 1072 | |
Robert Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 1073 | /* |
| 1074 | * exit point from sedding... |
| 1075 | */ |
| 1076 | if (matched) { |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 1077 | if ( |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1078 | /* this is a single-address command or... */ |
| 1079 | (sed_cmd->end_line == 0 && sed_cmd->end_match == NULL) |
| 1080 | || ( |
| 1081 | /* If only one address */ |
| 1082 | /* we were in the middle of our address range (this |
| 1083 | * isn't the first time through) and.. */ |
| 1084 | (still_in_range == 1) && ( |
| 1085 | /* this line number is the last address we're looking for or... */ |
| 1086 | (sed_cmd-> |
| 1087 | end_line |
| 1088 | && (sed_cmd-> |
| 1089 | end_line == |
| 1090 | linenum)) |
| 1091 | || |
| 1092 | /* this line matches our last address regex */ |
| 1093 | (sed_cmd-> |
| 1094 | end_match |
| 1095 | && |
| 1096 | (regexec |
| 1097 | (sed_cmd-> |
| 1098 | end_match, |
| 1099 | pattern_space, |
| 1100 | 0, NULL, |
| 1101 | 0) == 0)) |
| 1102 | ) |
| 1103 | ) |
| 1104 | ) { |
Mark Whitley | 0915c4b | 2001-06-11 23:50:06 +0000 | [diff] [blame] | 1105 | /* we're out of our address range */ |
| 1106 | still_in_range = 0; |
| 1107 | } |
| 1108 | |
| 1109 | /* didn't hit the exit? then we're still in the middle of an address range */ |
| 1110 | else { |
| 1111 | still_in_range = 1; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1112 | } |
| 1113 | } |
Robert Griebl | 47abc49 | 2002-06-11 23:43:27 +0000 | [diff] [blame] | 1114 | |
| 1115 | if (deleted) |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1116 | break; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1117 | } |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 1118 | |
Mark Whitley | 2dc192f | 2000-11-03 19:47:00 +0000 | [diff] [blame] | 1119 | /* we will print the line unless we were told to be quiet or if the |
| 1120 | * line was altered (via a 'd'elete or 's'ubstitution), in which case |
| 1121 | * the altered line was already printed */ |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1122 | if ((!be_quiet && !altered) || force_print) { |
Glenn L McGrath | c6adada | 2003-04-07 12:24:44 +0000 | [diff] [blame] | 1123 | puts(pattern_space); |
Glenn L McGrath | a0f0f0c | 2003-03-28 14:11:34 +0000 | [diff] [blame] | 1124 | } |
Glenn L McGrath | c6adada | 2003-04-07 12:24:44 +0000 | [diff] [blame] | 1125 | free(pattern_space); |
| 1126 | pattern_space = next_line; |
| 1127 | } while (pattern_space); |
Erik Andersen | 1266a13 | 1999-12-29 22:19:46 +0000 | [diff] [blame] | 1128 | } |
| 1129 | |
| 1130 | extern int sed_main(int argc, char **argv) |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 1131 | { |
Matt Kraai | a5f09c6 | 2001-11-12 16:44:55 +0000 | [diff] [blame] | 1132 | int opt, status = EXIT_SUCCESS; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 1133 | |
Eric Andersen | bdfd0d7 | 2001-10-24 05:00:29 +0000 | [diff] [blame] | 1134 | #ifdef CONFIG_FEATURE_CLEAN_UP |
Mark Whitley | 858c1ad | 2000-07-11 21:38:47 +0000 | [diff] [blame] | 1135 | /* destroy command strings on exit */ |
Matt Kraai | a9819b2 | 2000-12-22 01:48:07 +0000 | [diff] [blame] | 1136 | if (atexit(destroy_cmd_strs) == -1) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1137 | bb_perror_msg_and_die("atexit"); |
Mark Whitley | c41e8c8 | 2000-07-12 23:35:21 +0000 | [diff] [blame] | 1138 | #endif |
Mark Whitley | 858c1ad | 2000-07-11 21:38:47 +0000 | [diff] [blame] | 1139 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1140 | /* do normal option parsing */ |
Eric Andersen | b50da53 | 2001-02-17 16:52:35 +0000 | [diff] [blame] | 1141 | while ((opt = getopt(argc, argv, "ne:f:")) > 0) { |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1142 | switch (opt) { |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1143 | case 'n': |
| 1144 | be_quiet++; |
| 1145 | break; |
| 1146 | case 'e':{ |
| 1147 | char *str_cmd = strdup(optarg); |
| 1148 | |
| 1149 | add_cmd_str(str_cmd); |
| 1150 | free(str_cmd); |
| 1151 | break; |
| 1152 | } |
| 1153 | case 'f': |
| 1154 | load_cmd_file(optarg); |
| 1155 | break; |
| 1156 | default: |
| 1157 | bb_show_usage(); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1158 | } |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 1159 | } |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1160 | |
| 1161 | /* if we didn't get a pattern from a -e and no command file was specified, |
| 1162 | * argv[optind] should be the pattern. no pattern, no worky */ |
Glenn L McGrath | bd9b32b | 2003-04-09 01:43:54 +0000 | [diff] [blame] | 1163 | if (sed_cmd_head.next == NULL) { |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1164 | if (argv[optind] == NULL) |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1165 | bb_show_usage(); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1166 | else { |
Glenn L McGrath | 0c51832 | 2003-03-30 03:41:53 +0000 | [diff] [blame] | 1167 | char *str_cmd = strdup(argv[optind]); |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1168 | |
Glenn L McGrath | 0c51832 | 2003-03-30 03:41:53 +0000 | [diff] [blame] | 1169 | add_cmd_str(strdup(str_cmd)); |
| 1170 | free(str_cmd); |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1171 | optind++; |
| 1172 | } |
| 1173 | } |
| 1174 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1175 | /* argv[(optind)..(argc-1)] should be names of file to process. If no |
| 1176 | * files were specified or '-' was specified, take input from stdin. |
| 1177 | * Otherwise, we process all the files specified. */ |
| 1178 | if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) { |
| 1179 | process_file(stdin); |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1180 | } else { |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1181 | int i; |
| 1182 | FILE *file; |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1183 | |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1184 | for (i = optind; i < argc; i++) { |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 1185 | file = bb_wfopen(argv[i], "r"); |
Eric Andersen | 9c6b5fc | 2001-11-17 07:23:46 +0000 | [diff] [blame] | 1186 | if (file) { |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1187 | process_file(file); |
| 1188 | fclose(file); |
Matt Kraai | a5f09c6 | 2001-11-12 16:44:55 +0000 | [diff] [blame] | 1189 | } else |
| 1190 | status = EXIT_FAILURE; |
Mark Whitley | 6315ce6 | 2000-07-10 22:55:51 +0000 | [diff] [blame] | 1191 | } |
| 1192 | } |
Glenn L McGrath | 8d6395d | 2003-04-08 11:56:11 +0000 | [diff] [blame] | 1193 | |
Matt Kraai | a5f09c6 | 2001-11-12 16:44:55 +0000 | [diff] [blame] | 1194 | return status; |
Eric Andersen | 6b6b3f6 | 1999-10-28 16:06:25 +0000 | [diff] [blame] | 1195 | } |