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