blob: 1c026d30b667e28c7faac96c6cc508cb30266c7c [file] [log] [blame]
Eric Andersen6b6b3f61999-10-28 16:06:25 +00001/*
Mark Whitley6315ce62000-07-10 22:55:51 +00002 * sed.c - very minimalist version of sed
Eric Andersen6b6b3f61999-10-28 16:06:25 +00003 *
Eric Andersenbdfd0d72001-10-24 05:00:29 +00004 * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
5 * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
Erik Andersen1266a131999-12-29 22:19:46 +00006 *
Eric Andersen6b6b3f61999-10-28 16:06:25 +00007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Mark Whitley6315ce62000-07-10 22:55:51 +000023/*
24 Supported features and commands in this version of sed:
25
26 - comments ('#')
Mark Whitley94074a92000-07-14 00:00:15 +000027 - address matching: num|/matchstr/[,num|/matchstr/|$]command
28 - commands: (p)rint, (d)elete, (s)ubstitue (with g & I flags)
29 - edit commands: (a)ppend, (i)nsert, (c)hange
Mark Whitley1f3b9f22001-05-11 22:27:13 +000030 - file commands: (r)ead
Mark Whitley97562bd2000-07-17 20:06:42 +000031 - backreferences in substitution expressions (\1, \2...\9)
Mark Whitley6315ce62000-07-10 22:55:51 +000032
33 (Note: Specifying an address (range) to match is *optional*; commands
34 default to the whole pattern space if no specific address match was
35 requested.)
36
37 Unsupported features:
38
39 - transliteration (y/source-chars/dest-chars/) (use 'tr')
Mark Whitley6315ce62000-07-10 22:55:51 +000040 - no pattern space hold space storing / swapping (x, etc.)
41 - no labels / branching (: label, b, t, and friends)
42 - and lots, lots more.
Mark Whitley6315ce62000-07-10 22:55:51 +000043*/
44
Eric Andersen6b6b3f61999-10-28 16:06:25 +000045#include <stdio.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000046#include <unistd.h> /* for getopt() */
47#include <regex.h>
48#include <string.h> /* for strdup() */
Eric Andersen6b6b3f61999-10-28 16:06:25 +000049#include <errno.h>
Mark Whitley6315ce62000-07-10 22:55:51 +000050#include <ctype.h> /* for isspace() */
Eric Andersened3ef502001-01-27 08:24:39 +000051#include <stdlib.h>
Eric Andersen3570a342000-09-25 21:45:58 +000052#include "busybox.h"
Mark Whitley6315ce62000-07-10 22:55:51 +000053
Mark Whitley6315ce62000-07-10 22:55:51 +000054/* externs */
Eric Andersened3ef502001-01-27 08:24:39 +000055extern void xregcomp(regex_t *preg, const char *regex, int cflags);
Mark Whitley6315ce62000-07-10 22:55:51 +000056extern int optind; /* in unistd.h */
57extern char *optarg; /* ditto */
58
59/* options */
60static int be_quiet = 0;
61
Mark Whitley0e4cec02000-08-21 21:29:20 +000062
Mark Whitley6315ce62000-07-10 22:55:51 +000063struct sed_cmd {
Eric Andersenc52a6b02001-11-10 10:49:42 +000064 /* Order by alignment requirements */
Mark Whitley2dc192f2000-11-03 19:47:00 +000065
Mark Whitley6315ce62000-07-10 22:55:51 +000066 /* address storage */
Mark Whitley6315ce62000-07-10 22:55:51 +000067 regex_t *beg_match; /* sed -e '/match/cmd' */
68 regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
69
Mark Whitley2dc192f2000-11-03 19:47:00 +000070 /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
71
72 /* sed -e 's/sub_match/replace/' */
73 regex_t *sub_match;
74 char *replace;
Eric Andersenc52a6b02001-11-10 10:49:42 +000075
76 /* EDIT COMMAND (a,i,c) SPECIFIC FIELDS */
77 char *editline;
78
79 /* FILE COMMAND (r) SPECIFIC FIELDS */
80 char *filename;
81
82 /* address storage */
83 int beg_line; /* 'sed 1p' 0 == no begining line, apply commands to all lines */
84 int end_line; /* 'sed 1,3p' 0 == no end line, use only beginning. -1 == $ */
85 /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
86
Mark Whitley97562bd2000-07-17 20:06:42 +000087 unsigned int num_backrefs:4; /* how many back references (\1..\9) */
88 /* Note: GNU/POSIX sed does not save more than nine backrefs, so
89 * we only use 4 bits to hold the number */
Mark Whitley2dc192f2000-11-03 19:47:00 +000090 unsigned int sub_g:1; /* sed -e 's/foo/bar/g' (global) */
91 unsigned int sub_p:2; /* sed -e 's/foo/bar/p' (print substitution) */
Mark Whitley94074a92000-07-14 00:00:15 +000092
Eric Andersenc52a6b02001-11-10 10:49:42 +000093 /* GENERAL FIELDS */
94 char delimiter; /* The delimiter used to separate regexps */
Mark Whitley2dc192f2000-11-03 19:47:00 +000095
Eric Andersenc52a6b02001-11-10 10:49:42 +000096 /* the command */
97 char cmd; /* p,d,s (add more at your leisure :-) */
Mark Whitley6315ce62000-07-10 22:55:51 +000098};
99
100/* globals */
101static struct sed_cmd *sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */
102static int ncmds = 0; /* number of sed commands */
103
104/*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000105
Eric Andersenc52a6b02001-11-10 10:49:42 +0000106const char * const semicolon_whitespace = "; \n\r\t\v\0";
107
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000108#ifdef CONFIG_FEATURE_CLEAN_UP
Matt Kraai0c390a72001-11-20 16:00:19 +0000109static void destroy_cmd_strs(void)
Mark Whitley6315ce62000-07-10 22:55:51 +0000110{
111 if (sed_cmds == NULL)
112 return;
113
114 /* destroy all the elements in the array */
115 while (--ncmds >= 0) {
116
117 if (sed_cmds[ncmds].beg_match) {
118 regfree(sed_cmds[ncmds].beg_match);
119 free(sed_cmds[ncmds].beg_match);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000120 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000121 if (sed_cmds[ncmds].end_match) {
122 regfree(sed_cmds[ncmds].end_match);
123 free(sed_cmds[ncmds].end_match);
124 }
125 if (sed_cmds[ncmds].sub_match) {
126 regfree(sed_cmds[ncmds].sub_match);
127 free(sed_cmds[ncmds].sub_match);
128 }
129 if (sed_cmds[ncmds].replace)
130 free(sed_cmds[ncmds].replace);
131 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000132
Mark Whitley6315ce62000-07-10 22:55:51 +0000133 /* destroy the array */
134 free(sed_cmds);
135 sed_cmds = NULL;
136}
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000137#endif
Mark Whitley6315ce62000-07-10 22:55:51 +0000138
Mark Whitley6315ce62000-07-10 22:55:51 +0000139
140/*
Eric Andersen28b3c532001-01-02 11:01:31 +0000141 * index_of_next_unescaped_regexp_delim - walks left to right through a string
142 * beginning at a specified index and returns the index of the next regular
143 * expression delimiter (typically a forward * slash ('/')) not preceeded by
144 * a backslash ('\').
Mark Whitley6315ce62000-07-10 22:55:51 +0000145 */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000146static int index_of_next_unescaped_regexp_delim(const struct sed_cmd * const sed_cmd, const char *str, int idx)
Mark Whitley6315ce62000-07-10 22:55:51 +0000147{
Matt Kraaia0065d52001-08-24 14:45:50 +0000148 int bracket = -1;
149 int escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000150 char ch;
Matt Kraaia0065d52001-08-24 14:45:50 +0000151
Eric Andersenc52a6b02001-11-10 10:49:42 +0000152 for ( ; (ch = str[idx]); idx++) {
Matt Kraaia0065d52001-08-24 14:45:50 +0000153 if (bracket != -1) {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000154 if (ch == ']' && !(bracket == idx - 1 ||
Matt Kraaia0065d52001-08-24 14:45:50 +0000155 (bracket == idx - 2 && str[idx-1] == '^')))
156 bracket = -1;
157 } else if (escaped)
158 escaped = 0;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000159 else if (ch == '\\')
Matt Kraaia0065d52001-08-24 14:45:50 +0000160 escaped = 1;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000161 else if (ch == '[')
Matt Kraaia0065d52001-08-24 14:45:50 +0000162 bracket = idx;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000163 else if (ch == sed_cmd->delimiter)
Mark Whitley97562bd2000-07-17 20:06:42 +0000164 return idx;
165 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000166
Mark Whitley97562bd2000-07-17 20:06:42 +0000167 /* if we make it to here, we've hit the end of the string */
168 return -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000169}
170
171/*
172 * returns the index in the string just past where the address ends.
173 */
Mark Whitley0915c4b2001-06-11 23:50:06 +0000174static int get_address(struct sed_cmd *sed_cmd, const char *str, int *linenum, regex_t **regex)
Mark Whitley6315ce62000-07-10 22:55:51 +0000175{
Matt Kraaic8227632001-11-12 16:57:27 +0000176 char *my_str = xstrdup(str);
Mark Whitley6315ce62000-07-10 22:55:51 +0000177 int idx = 0;
Mark Whitley038c8eb2001-03-14 21:11:49 +0000178 char olddelimiter;
179 olddelimiter = sed_cmd->delimiter;
180 sed_cmd->delimiter = '/';
Mark Whitley6315ce62000-07-10 22:55:51 +0000181
182 if (isdigit(my_str[idx])) {
183 do {
184 idx++;
185 } while (isdigit(my_str[idx]));
186 my_str[idx] = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000187 *linenum = atoi(my_str);
Mark Whitley6315ce62000-07-10 22:55:51 +0000188 }
189 else if (my_str[idx] == '$') {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000190 *linenum = -1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000191 idx++;
192 }
193 else if (my_str[idx] == '/') {
Eric Andersen28b3c532001-01-02 11:01:31 +0000194 idx = index_of_next_unescaped_regexp_delim(sed_cmd, my_str, ++idx);
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000195 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000196 error_msg_and_die("unterminated match expression");
Mark Whitleydf5f6ba2000-07-11 16:53:56 +0000197 my_str[idx] = '\0';
198 *regex = (regex_t *)xmalloc(sizeof(regex_t));
Mark Whitley452cc1f2001-05-14 19:23:02 +0000199 xregcomp(*regex, my_str+1, REG_NEWLINE);
Mark Whitley496e33f2000-07-13 22:52:02 +0000200 idx++; /* so it points to the next character after the last '/' */
Mark Whitley6315ce62000-07-10 22:55:51 +0000201 }
202 else {
Mark Whitleyf57c9442000-12-07 19:56:48 +0000203 error_msg("get_address: no address found in string\n"
Matt Kraaidd19c692001-01-31 19:00:21 +0000204 "\t(you probably didn't check the string you passed me)");
Mark Whitley6315ce62000-07-10 22:55:51 +0000205 idx = -1;
206 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000207
Mark Whitley6315ce62000-07-10 22:55:51 +0000208 free(my_str);
Mark Whitley038c8eb2001-03-14 21:11:49 +0000209 sed_cmd->delimiter = olddelimiter;
Mark Whitley6315ce62000-07-10 22:55:51 +0000210 return idx;
211}
Erik Andersene49d5ec2000-02-08 19:58:47 +0000212
Eric Andersenc52a6b02001-11-10 10:49:42 +0000213static int parse_subst_cmd(struct sed_cmd * const sed_cmd, const char *substr)
Mark Whitley06f35292000-07-13 19:58:04 +0000214{
215 int oldidx, cflags = REG_NEWLINE;
216 char *match;
217 int idx = 0;
Mark Whitley97562bd2000-07-17 20:06:42 +0000218 int j;
Mark Whitley06f35292000-07-13 19:58:04 +0000219
220 /*
221 * the string that gets passed to this function should look like this:
Mark Whitley0e4cec02000-08-21 21:29:20 +0000222 * s/match/replace/gIp
223 * || | |||
Mark Whitley06f35292000-07-13 19:58:04 +0000224 * mandatory optional
225 *
226 * (all three of the '/' slashes are mandatory)
227 */
228
Eric Andersen28b3c532001-01-02 11:01:31 +0000229 /* verify that the 's' is followed by something. That something
230 * (typically a 'slash') is now our regexp delimiter... */
231 if (!substr[++idx])
Matt Kraaidd19c692001-01-31 19:00:21 +0000232 error_msg_and_die("bad format in substitution expression");
Eric Andersen28b3c532001-01-02 11:01:31 +0000233 else
234 sed_cmd->delimiter=substr[idx];
Mark Whitley06f35292000-07-13 19:58:04 +0000235
236 /* save the match string */
237 oldidx = idx+1;
Eric Andersen28b3c532001-01-02 11:01:31 +0000238 idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000239 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000240 error_msg_and_die("bad format in substitution expression");
Matt Kraai5009f902001-07-05 19:00:47 +0000241 match = xstrndup(substr + oldidx, idx - oldidx);
Mark Whitley06f35292000-07-13 19:58:04 +0000242
Mark Whitley97562bd2000-07-17 20:06:42 +0000243 /* determine the number of back references in the match string */
244 /* Note: we compute this here rather than in the do_subst_command()
245 * function to save processor time, at the expense of a little more memory
246 * (4 bits) per sed_cmd */
247
248 /* sed_cmd->num_backrefs = 0; */ /* XXX: not needed? --apparently not */
249 for (j = 0; match[j]; j++) {
250 /* GNU/POSIX sed does not save more than nine backrefs */
Mark Whitley2dc192f2000-11-03 19:47:00 +0000251 if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs <= 9)
Mark Whitley97562bd2000-07-17 20:06:42 +0000252 sed_cmd->num_backrefs++;
253 }
254
Mark Whitley06f35292000-07-13 19:58:04 +0000255 /* save the replacement string */
256 oldidx = idx+1;
Eric Andersen28b3c532001-01-02 11:01:31 +0000257 idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
Mark Whitley06f35292000-07-13 19:58:04 +0000258 if (idx == -1)
Matt Kraaidd19c692001-01-31 19:00:21 +0000259 error_msg_and_die("bad format in substitution expression");
Matt Kraai5009f902001-07-05 19:00:47 +0000260 sed_cmd->replace = xstrndup(substr + oldidx, idx - oldidx);
Mark Whitley06f35292000-07-13 19:58:04 +0000261
262 /* process the flags */
263 while (substr[++idx]) {
264 switch (substr[idx]) {
Mark Whitley70705d72000-07-14 19:06:30 +0000265 case 'g':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000266 sed_cmd->sub_g = 1;
Mark Whitley70705d72000-07-14 19:06:30 +0000267 break;
268 case 'I':
269 cflags |= REG_ICASE;
270 break;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000271 case 'p':
Mark Whitley2dc192f2000-11-03 19:47:00 +0000272 sed_cmd->sub_p = 1;
Mark Whitley0e4cec02000-08-21 21:29:20 +0000273 break;
Mark Whitley70705d72000-07-14 19:06:30 +0000274 default:
275 /* any whitespace or semicolon trailing after a s/// is ok */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000276 if (strchr(semicolon_whitespace, substr[idx]))
Mark Whitley70705d72000-07-14 19:06:30 +0000277 goto out;
278 /* else */
Matt Kraaidd19c692001-01-31 19:00:21 +0000279 error_msg_and_die("bad option in substitution expression");
Mark Whitley06f35292000-07-13 19:58:04 +0000280 }
281 }
Mark Whitley70705d72000-07-14 19:06:30 +0000282
283out:
Mark Whitley97562bd2000-07-17 20:06:42 +0000284 /* compile the match string into a regex */
Mark Whitley06f35292000-07-13 19:58:04 +0000285 sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t));
286 xregcomp(sed_cmd->sub_match, match, cflags);
287 free(match);
Mark Whitley70705d72000-07-14 19:06:30 +0000288
289 return idx;
Mark Whitley06f35292000-07-13 19:58:04 +0000290}
291
Eric Andersenc52a6b02001-11-10 10:49:42 +0000292static void move_back(char *str, int offset)
293{
294 memmove(str, str + offset, strlen(str + offset) + 1);
295}
296
Mark Whitley70705d72000-07-14 19:06:30 +0000297static int parse_edit_cmd(struct sed_cmd *sed_cmd, const char *editstr)
Mark Whitley94074a92000-07-14 00:00:15 +0000298{
299 int idx = 0;
Mark Whitley464c5de2000-07-14 23:24:00 +0000300 int slashes_eaten = 0;
Mark Whitley94074a92000-07-14 00:00:15 +0000301 char *ptr; /* shorthand */
302
303 /*
304 * the string that gets passed to this function should look like this:
305 *
306 * need one of these
307 * |
308 * | this backslash (immediately following the edit command) is mandatory
309 * | |
310 * [aic]\
311 * TEXT1\
312 * TEXT2\
313 * TEXTN
314 *
315 * as soon as we hit a TEXT line that has no trailing '\', we're done.
316 * this means a command like:
317 *
318 * i\
319 * INSERTME
320 *
321 * is a-ok.
322 *
323 */
324
Matt Kraaid21735d2002-01-02 17:56:38 +0000325 if (editstr[1] != '\\' || (editstr[2] != '\n' && editstr[2] != '\r'))
Matt Kraaidd19c692001-01-31 19:00:21 +0000326 error_msg_and_die("bad format in edit expression");
Mark Whitley94074a92000-07-14 00:00:15 +0000327
328 /* store the edit line text */
Mark Whitley34623db2000-07-14 00:49:59 +0000329 /* make editline big enough to accomodate the extra '\n' we will tack on
330 * to the end */
331 sed_cmd->editline = xmalloc(strlen(&editstr[3]) + 2);
332 strcpy(sed_cmd->editline, &editstr[3]);
Mark Whitley94074a92000-07-14 00:00:15 +0000333 ptr = sed_cmd->editline;
334
335 /* now we need to go through * and: s/\\[\r\n]$/\n/g on the edit line */
336 while (ptr[idx]) {
Mark Whitley497ef462001-04-20 23:27:17 +0000337 while (ptr[idx] != '\\' || (ptr[idx+1] != '\n' && ptr[idx+1] != '\r')) {
Mark Whitley94074a92000-07-14 00:00:15 +0000338 idx++;
339 if (!ptr[idx]) {
Mark Whitley464c5de2000-07-14 23:24:00 +0000340 goto out;
Mark Whitley94074a92000-07-14 00:00:15 +0000341 }
342 }
343 /* move the newline over the '\' before it (effectively eats the '\') */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000344 move_back(&ptr[idx], 1);
Mark Whitley464c5de2000-07-14 23:24:00 +0000345 slashes_eaten++;
Mark Whitley94074a92000-07-14 00:00:15 +0000346 /* substitue \r for \n if needed */
347 if (ptr[idx] == '\r')
348 ptr[idx] = '\n';
349 }
Mark Whitley70705d72000-07-14 19:06:30 +0000350
Mark Whitley464c5de2000-07-14 23:24:00 +0000351out:
Mark Whitley56c14a62001-04-20 23:41:44 +0000352 /* figure out if we need to add a newline */
353 if (ptr[idx-1] != '\n') {
354 ptr[idx] = '\n';
355 idx++;
356 }
357
358 /* terminate string */
359 ptr[idx]= 0;
Mark Whitley464c5de2000-07-14 23:24:00 +0000360
Eric Andersenc52a6b02001-11-10 10:49:42 +0000361 /* this accounts for discrepancies between the modified string and the
362 * original string passed in to this function */
363
364 /* adjust for opening 2 chars [aic]\ */
365
366 return idx + slashes_eaten + 2;
Mark Whitley94074a92000-07-14 00:00:15 +0000367}
368
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000369
370static int parse_file_cmd(struct sed_cmd *sed_cmd, const char *filecmdstr)
371{
372 int idx = 0;
373 int filenamelen = 0;
374
375 /*
376 * the string that gets passed to this function should look like this:
377 * '[ ]filename'
378 * | |
379 * | a filename
380 * |
381 * optional whitespace
382
383 * re: the file to be read, the GNU manual says the following: "Note that
384 * if filename cannot be read, it is treated as if it were an empty file,
385 * without any error indication." Thus, all of the following commands are
386 * perfectly leagal:
387 *
388 * sed -e '1r noexist'
389 * sed -e '1r ;'
390 * sed -e '1r'
391 */
392
393 /* the file command may be followed by whitespace; move past it. */
394 while (isspace(filecmdstr[++idx]))
395 { ; }
396
397 /* the first non-whitespace we get is a filename. the filename ends when we
398 * hit a normal sed command terminator or end of string */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000399 filenamelen = strcspn(&filecmdstr[idx], semicolon_whitespace);
Matt Kraai6e9e1362001-05-27 14:11:52 +0000400 sed_cmd->filename = xmalloc(filenamelen + 1);
401 safe_strncpy(sed_cmd->filename, &filecmdstr[idx], filenamelen + 1);
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000402
403 return idx + filenamelen;
404}
405
406
Eric Andersenc52a6b02001-11-10 10:49:42 +0000407static char *parse_cmd_str(struct sed_cmd * const sed_cmd, const char *const cmdstr)
Mark Whitley6315ce62000-07-10 22:55:51 +0000408{
409 int idx = 0;
410
411 /* parse the command
412 * format is: [addr][,addr]cmd
413 * |----||-----||-|
414 * part1 part2 part3
415 */
416
Matt Kraai70624842001-12-21 16:04:12 +0000417 /* skip initial whitespace */
418 while (isspace(cmdstr[idx]))
419 idx++;
420
Mark Whitley6315ce62000-07-10 22:55:51 +0000421 /* first part (if present) is an address: either a number or a /regex/ */
422 if (isdigit(cmdstr[idx]) || cmdstr[idx] == '/')
Eric Andersen28b3c532001-01-02 11:01:31 +0000423 idx = get_address(sed_cmd, cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000424
425 /* second part (if present) will begin with a comma */
426 if (cmdstr[idx] == ',')
Eric Andersen28b3c532001-01-02 11:01:31 +0000427 idx += get_address(sed_cmd, &cmdstr[++idx], &sed_cmd->end_line, &sed_cmd->end_match);
Mark Whitley6315ce62000-07-10 22:55:51 +0000428
Matt Kraai70624842001-12-21 16:04:12 +0000429 /* skip whitespace before the command */
430 while (isspace(cmdstr[idx]))
431 idx++;
432
Mark Whitley6315ce62000-07-10 22:55:51 +0000433 /* last part (mandatory) will be a command */
434 if (cmdstr[idx] == '\0')
Matt Kraaidd19c692001-01-31 19:00:21 +0000435 error_msg_and_die("missing command");
Mark Whitley6315ce62000-07-10 22:55:51 +0000436 sed_cmd->cmd = cmdstr[idx];
Mark Whitley6315ce62000-07-10 22:55:51 +0000437
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000438 /* if it was a single-letter command that takes no arguments (such as 'p'
439 * or 'd') all we need to do is increment the index past that command */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000440 if (strchr("pd", sed_cmd->cmd)) {
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000441 idx++;
442 }
Mark Whitley0915c4b2001-06-11 23:50:06 +0000443 /* handle (s)ubstitution command */
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000444 else if (sed_cmd->cmd == 's') {
Mark Whitley70705d72000-07-14 19:06:30 +0000445 idx += parse_subst_cmd(sed_cmd, &cmdstr[idx]);
446 }
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000447 /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
Mark Whitley0915c4b2001-06-11 23:50:06 +0000448 else if (strchr("aic", sed_cmd->cmd)) {
449 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c')
Matt Kraaidd19c692001-01-31 19:00:21 +0000450 error_msg_and_die("only a beginning address can be specified for edit commands");
Mark Whitley70705d72000-07-14 19:06:30 +0000451 idx += parse_edit_cmd(sed_cmd, &cmdstr[idx]);
Mark Whitley02008342000-07-14 00:13:52 +0000452 }
Mark Whitley1f3b9f22001-05-11 22:27:13 +0000453 /* handle file cmds: (r)ead */
454 else if (sed_cmd->cmd == 'r') {
455 if (sed_cmd->end_line || sed_cmd->end_match)
456 error_msg_and_die("Command only uses one address");
457 idx += parse_file_cmd(sed_cmd, &cmdstr[idx]);
458 }
459 else {
460 error_msg_and_die("invalid command");
461 }
Mark Whitley70705d72000-07-14 19:06:30 +0000462
463 /* give back whatever's left over */
Mark Whitley464c5de2000-07-14 23:24:00 +0000464 return (char *)&cmdstr[idx];
Eric Andersen50d63601999-11-09 01:47:36 +0000465}
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000466
Eric Andersenc52a6b02001-11-10 10:49:42 +0000467static void add_cmd_str(const char * const cmdstr)
Erik Andersen1266a131999-12-29 22:19:46 +0000468{
Mark Whitley70705d72000-07-14 19:06:30 +0000469 char *mystr = (char *)cmdstr;
Erik Andersen1266a131999-12-29 22:19:46 +0000470
Mark Whitley70705d72000-07-14 19:06:30 +0000471 do {
Mark Whitley6315ce62000-07-10 22:55:51 +0000472
Mark Whitley70705d72000-07-14 19:06:30 +0000473 /* trim leading whitespace and semicolons */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000474 move_back(mystr, strspn(mystr, semicolon_whitespace));
Mark Whitley70705d72000-07-14 19:06:30 +0000475 /* if we ate the whole thing, that means there was just trailing
Mark Whitley464c5de2000-07-14 23:24:00 +0000476 * whitespace or a final / no-op semicolon. either way, get out */
Mark Whitley70705d72000-07-14 19:06:30 +0000477 if (strlen(mystr) == 0)
478 return;
479 /* if this is a comment, jump past it and keep going */
480 if (mystr[0] == '#') {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000481 mystr = strpbrk(mystr, "\n\r");
Mark Whitley70705d72000-07-14 19:06:30 +0000482 continue;
483 }
484 /* grow the array */
Matt Kraai322ae932000-09-13 02:46:14 +0000485 sed_cmds = xrealloc(sed_cmds, sizeof(struct sed_cmd) * (++ncmds));
Mark Whitley70705d72000-07-14 19:06:30 +0000486 /* zero new element */
487 memset(&sed_cmds[ncmds-1], 0, sizeof(struct sed_cmd));
488 /* load command string into new array element, get remainder */
489 mystr = parse_cmd_str(&sed_cmds[ncmds-1], mystr);
490
Mark Whitley464c5de2000-07-14 23:24:00 +0000491 } while (mystr && strlen(mystr));
Mark Whitley6315ce62000-07-10 22:55:51 +0000492}
493
494
495static void load_cmd_file(char *filename)
496{
497 FILE *cmdfile;
498 char *line;
Mark Whitley94074a92000-07-14 00:00:15 +0000499 char *nextline;
Mark Whitley6315ce62000-07-10 22:55:51 +0000500
Matt Kraaibbaef662000-09-27 02:43:35 +0000501 cmdfile = xfopen(filename, "r");
Mark Whitley6315ce62000-07-10 22:55:51 +0000502
503 while ((line = get_line_from_file(cmdfile)) != NULL) {
Mark Whitley94074a92000-07-14 00:00:15 +0000504 /* if a line ends with '\' it needs the next line appended to it */
505 while (line[strlen(line)-2] == '\\' &&
506 (nextline = get_line_from_file(cmdfile)) != NULL) {
Matt Kraai322ae932000-09-13 02:46:14 +0000507 line = xrealloc(line, strlen(line) + strlen(nextline) + 1);
Mark Whitley94074a92000-07-14 00:00:15 +0000508 strcat(line, nextline);
Mark Whitley464c5de2000-07-14 23:24:00 +0000509 free(nextline);
Mark Whitley94074a92000-07-14 00:00:15 +0000510 }
Mark Whitley464c5de2000-07-14 23:24:00 +0000511 /* eat trailing newline (if any) --if I don't do this, edit commands
512 * (aic) will print an extra newline */
Matt Kraai05e782d2001-02-01 16:49:30 +0000513 chomp(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000514 add_cmd_str(line);
515 free(line);
516 }
517}
518
Eric Andersenc52a6b02001-11-10 10:49:42 +0000519struct pipeline {
520 char *buf;
521 int idx;
522 int len;
523};
524
Eric Andersenb76cb682001-08-22 05:58:16 +0000525#define PIPE_MAGIC 0x7f
526#define PIPE_GROW 64
Eric Andersenc52a6b02001-11-10 10:49:42 +0000527
528void pipe_putc(struct pipeline *const pipeline, char c)
529{
530 if (pipeline->buf[pipeline->idx] == PIPE_MAGIC) {
531 pipeline->buf =
532 xrealloc(pipeline->buf, pipeline->len + PIPE_GROW);
533 memset(pipeline->buf + pipeline->len, 0, PIPE_GROW);
534 pipeline->len += PIPE_GROW;
535 pipeline->buf[pipeline->len - 1] = PIPE_MAGIC;
536 }
537 pipeline->buf[pipeline->idx++] = (c);
538}
539
540#define pipeputc(c) pipe_putc(pipeline, c)
541
542#if 0
Eric Andersenb76cb682001-08-22 05:58:16 +0000543{ if (pipeline[pipeline_idx] == PIPE_MAGIC) { \
544 pipeline = xrealloc(pipeline, pipeline_len+PIPE_GROW); \
545 memset(pipeline+pipeline_len, 0, PIPE_GROW); \
546 pipeline_len += PIPE_GROW; \
547 pipeline[pipeline_len-1] = PIPE_MAGIC; } \
548 pipeline[pipeline_idx++] = (c); }
Eric Andersenc52a6b02001-11-10 10:49:42 +0000549#endif
Eric Andersenb76cb682001-08-22 05:58:16 +0000550
551static void print_subst_w_backrefs(const char *line, const char *replace,
Eric Andersenc52a6b02001-11-10 10:49:42 +0000552 regmatch_t *regmatch, struct pipeline *const pipeline, int matches)
Mark Whitley97562bd2000-07-17 20:06:42 +0000553{
554 int i;
555
556 /* go through the replacement string */
557 for (i = 0; replace[i]; i++) {
558 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
559 if (replace[i] == '\\' && isdigit(replace[i+1])) {
560 int j;
561 char tmpstr[2];
562 int backref;
563 ++i; /* i now indexes the backref number, instead of the leading slash */
564 tmpstr[0] = replace[i];
565 tmpstr[1] = 0;
566 backref = atoi(tmpstr);
567 /* print out the text held in regmatch[backref] */
Matt Kraaia3e4f452001-08-20 21:21:06 +0000568 if (backref <= matches && regmatch[backref].rm_so != -1)
569 for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000570 pipeputc(line[j]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000571 }
572
Mark Whitley83e85f62000-07-25 20:48:44 +0000573 /* if we find a backslash escaped character, print the character */
574 else if (replace[i] == '\\') {
575 ++i;
Eric Andersenb76cb682001-08-22 05:58:16 +0000576 pipeputc(replace[i]);
Mark Whitley83e85f62000-07-25 20:48:44 +0000577 }
578
Mark Whitley97562bd2000-07-17 20:06:42 +0000579 /* if we find an unescaped '&' print out the whole matched text.
580 * fortunately, regmatch[0] contains the indicies to the whole matched
581 * expression (kinda seems like it was designed for just such a
582 * purpose...) */
583 else if (replace[i] == '&' && replace[i-1] != '\\') {
584 int j;
585 for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000586 pipeputc(line[j]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000587 }
588 /* nothing special, just print this char of the replacement string to stdout */
589 else
Eric Andersenb76cb682001-08-22 05:58:16 +0000590 pipeputc(replace[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000591 }
592}
593
Eric Andersenb76cb682001-08-22 05:58:16 +0000594static int do_subst_command(const struct sed_cmd *sed_cmd, char **line)
Mark Whitley4f7fe772000-07-13 20:01:58 +0000595{
Eric Andersenb76cb682001-08-22 05:58:16 +0000596 char *hackline = *line;
Eric Andersenc52a6b02001-11-10 10:49:42 +0000597 struct pipeline thepipe = { NULL, 0 , 0};
598 struct pipeline *const pipeline = &thepipe;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000599 int altered = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000600 regmatch_t *regmatch = NULL;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000601
Mark Whitley2dc192f2000-11-03 19:47:00 +0000602 /* we only proceed if the substitution 'search' expression matches */
Eric Andersenb76cb682001-08-22 05:58:16 +0000603 if (regexec(sed_cmd->sub_match, hackline, 0, NULL, 0) == REG_NOMATCH)
Mark Whitley2dc192f2000-11-03 19:47:00 +0000604 return 0;
605
606 /* whaddaya know, it matched. get the number of back references */
607 regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs+1));
608
Eric Andersenb76cb682001-08-22 05:58:16 +0000609 /* allocate more PIPE_GROW bytes
610 if replaced string is larger than original */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000611 thepipe.len = strlen(hackline)+PIPE_GROW;
612 thepipe.buf = xcalloc(1, thepipe.len);
Eric Andersenb76cb682001-08-22 05:58:16 +0000613 /* buffer magic */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000614 thepipe.buf[thepipe.len-1] = PIPE_MAGIC;
Eric Andersenb76cb682001-08-22 05:58:16 +0000615
Mark Whitley2dc192f2000-11-03 19:47:00 +0000616 /* and now, as long as we've got a line to try matching and if we can match
617 * the search string, we make substitutions */
Matt Kraai8470b9a2001-10-23 21:12:07 +0000618 while ((*hackline || !altered) && (regexec(sed_cmd->sub_match, hackline,
619 sed_cmd->num_backrefs+1, regmatch, 0) != REG_NOMATCH) ) {
Mark Whitley4f7fe772000-07-13 20:01:58 +0000620 int i;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000621
Mark Whitley2dc192f2000-11-03 19:47:00 +0000622 /* print everything before the match */
623 for (i = 0; i < regmatch[0].rm_so; i++)
Eric Andersenb76cb682001-08-22 05:58:16 +0000624 pipeputc(hackline[i]);
Mark Whitley97562bd2000-07-17 20:06:42 +0000625
Mark Whitley2dc192f2000-11-03 19:47:00 +0000626 /* then print the substitution string */
Eric Andersenb76cb682001-08-22 05:58:16 +0000627 print_subst_w_backrefs(hackline, sed_cmd->replace, regmatch,
Eric Andersenc52a6b02001-11-10 10:49:42 +0000628 pipeline, sed_cmd->num_backrefs);
Mark Whitley97562bd2000-07-17 20:06:42 +0000629
Mark Whitley2dc192f2000-11-03 19:47:00 +0000630 /* advance past the match */
631 hackline += regmatch[0].rm_eo;
632 /* flag that something has changed */
633 altered++;
Mark Whitley97562bd2000-07-17 20:06:42 +0000634
Mark Whitley2dc192f2000-11-03 19:47:00 +0000635 /* if we're not doing this globally, get out now */
636 if (!sed_cmd->sub_g)
637 break;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000638 }
639
Eric Andersenb76cb682001-08-22 05:58:16 +0000640 for (; *hackline; hackline++) pipeputc(*hackline);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000641 if (thepipe.buf[thepipe.idx] == PIPE_MAGIC) thepipe.buf[thepipe.idx] = 0;
Mark Whitley2dc192f2000-11-03 19:47:00 +0000642
643 /* cleanup */
644 free(regmatch);
645
Eric Andersenb76cb682001-08-22 05:58:16 +0000646 free(*line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000647 *line = thepipe.buf;
Mark Whitley4f7fe772000-07-13 20:01:58 +0000648 return altered;
649}
Mark Whitley6315ce62000-07-10 22:55:51 +0000650
Mark Whitley6315ce62000-07-10 22:55:51 +0000651
652static void process_file(FILE *file)
653{
654 char *line = NULL;
655 static int linenum = 0; /* GNU sed does not restart counting lines at EOF */
656 unsigned int still_in_range = 0;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000657 int altered;
Mark Whitley6315ce62000-07-10 22:55:51 +0000658 int i;
659
660 /* go through every line in the file */
661 while ((line = get_line_from_file(file)) != NULL) {
662
Mark Whitley9de26592001-05-14 19:44:44 +0000663 chomp(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000664 linenum++;
Mark Whitley0915c4b2001-06-11 23:50:06 +0000665 altered = 0;
Mark Whitley6315ce62000-07-10 22:55:51 +0000666
667 /* for every line, go through all the commands */
668 for (i = 0; i < ncmds; i++) {
Eric Andersenc52a6b02001-11-10 10:49:42 +0000669 struct sed_cmd *sed_cmd = &sed_cmds[i];
Mark Whitley6315ce62000-07-10 22:55:51 +0000670
Mark Whitley0915c4b2001-06-11 23:50:06 +0000671
672 /*
673 * entry point into sedding...
674 */
675 if (
Matt Kraai02c40a72001-06-21 13:57:51 +0000676 /* no range necessary */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000677 (sed_cmd->beg_line == 0 && sed_cmd->end_line == 0 &&
678 sed_cmd->beg_match == NULL &&
679 sed_cmd->end_match == NULL) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000680 /* this line number is the first address we're looking for */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000681 (sed_cmd->beg_line && (sed_cmd->beg_line == linenum)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000682 /* this line matches our first address regex */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000683 (sed_cmd->beg_match && (regexec(sed_cmd->beg_match, line, 0, NULL, 0) == 0)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000684 /* we are currently within the beginning & ending address range */
685 still_in_range
686 ) {
687
688 /*
689 * actual sedding
690 */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000691 switch (sed_cmd->cmd) {
Mark Whitley0915c4b2001-06-11 23:50:06 +0000692
693 case 'p':
694 puts(line);
695 break;
696
697 case 'd':
698 altered++;
699 break;
700
701 case 's':
702
703 /*
704 * Some special cases for 's' printing to make it compliant with
705 * GNU sed printing behavior (aka "The -n | s///p Matrix"):
706 *
707 * -n ONLY = never print anything regardless of any successful
708 * substitution
709 *
710 * s///p ONLY = always print successful substitutions, even if
711 * the line is going to be printed anyway (line will be printed
712 * twice).
713 *
714 * -n AND s///p = print ONLY a successful substitution ONE TIME;
715 * no other lines are printed - this is the reason why the 'p'
716 * flag exists in the first place.
717 */
718
719 /* if the user specified that they didn't want anything printed (i.e., a -n
720 * flag and no 'p' flag after the s///), then there's really no point doing
721 * anything here. */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000722 if (be_quiet && !sed_cmd->sub_p)
Mark Whitley0915c4b2001-06-11 23:50:06 +0000723 break;
724
725 /* we print the line once, unless we were told to be quiet */
726 if (!be_quiet)
Eric Andersenc52a6b02001-11-10 10:49:42 +0000727 altered |= do_subst_command(sed_cmd, &line);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000728
729 /* we also print the line if we were given the 'p' flag
730 * (this is quite possibly the second printing) */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000731 if (sed_cmd->sub_p)
732 altered |= do_subst_command(sed_cmd, &line);
Eric Andersenb76cb682001-08-22 05:58:16 +0000733 if (altered && (i+1 >= ncmds || sed_cmds[i+1].cmd != 's'))
734 puts(line);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000735
736 break;
737
738 case 'a':
739 puts(line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000740 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000741 altered++;
742 break;
743
744 case 'i':
Eric Andersenc52a6b02001-11-10 10:49:42 +0000745 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000746 break;
747
748 case 'c':
749 /* single-address case */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000750 if ((sed_cmd->end_match == NULL && sed_cmd->end_line == 0)
Mark Whitley0915c4b2001-06-11 23:50:06 +0000751 /* multi-address case */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000752 /* - matching text */
753 || (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
754 /* - matching line numbers */
755 || (sed_cmd->end_line > 0 && sed_cmd->end_line == linenum))
756 {
757 fputs(sed_cmd->editline, stdout);
Mark Whitley0915c4b2001-06-11 23:50:06 +0000758 }
759 altered++;
760
761 break;
762
763 case 'r': {
764 FILE *outfile;
765 puts(line);
Eric Andersenc52a6b02001-11-10 10:49:42 +0000766 outfile = fopen(sed_cmd->filename, "r");
Mark Whitley0915c4b2001-06-11 23:50:06 +0000767 if (outfile)
768 print_file(outfile);
769 /* else if we couldn't open the output file,
770 * no biggie, just don't print anything */
771 altered++;
772 }
773 break;
774 }
775
776 /*
777 * exit point from sedding...
778 */
779 if (
780 /* this is a single-address command or... */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000781 (sed_cmd->end_line == 0 && sed_cmd->end_match == NULL) || (
Mark Whitley0915c4b2001-06-11 23:50:06 +0000782 /* we were in the middle of our address range (this
783 * isn't the first time through) and.. */
784 (still_in_range == 1) && (
785 /* this line number is the last address we're looking for or... */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000786 (sed_cmd->end_line && (sed_cmd->end_line == linenum)) ||
Mark Whitley0915c4b2001-06-11 23:50:06 +0000787 /* this line matches our last address regex */
Eric Andersenc52a6b02001-11-10 10:49:42 +0000788 (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
Mark Whitley0915c4b2001-06-11 23:50:06 +0000789 )
790 )
791 ) {
792 /* we're out of our address range */
793 still_in_range = 0;
794 }
795
796 /* didn't hit the exit? then we're still in the middle of an address range */
797 else {
798 still_in_range = 1;
Mark Whitley6315ce62000-07-10 22:55:51 +0000799 }
800 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000801 }
Erik Andersen1266a131999-12-29 22:19:46 +0000802
Mark Whitley2dc192f2000-11-03 19:47:00 +0000803 /* we will print the line unless we were told to be quiet or if the
804 * line was altered (via a 'd'elete or 's'ubstitution), in which case
805 * the altered line was already printed */
Mark Whitley0915c4b2001-06-11 23:50:06 +0000806 if (!be_quiet && !altered)
Mark Whitleydd527d32001-05-14 19:53:08 +0000807 puts(line);
Mark Whitley6315ce62000-07-10 22:55:51 +0000808
809 free(line);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000810 }
Erik Andersen1266a131999-12-29 22:19:46 +0000811}
812
813extern int sed_main(int argc, char **argv)
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000814{
Matt Kraaia5f09c62001-11-12 16:44:55 +0000815 int opt, status = EXIT_SUCCESS;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000816
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000817#ifdef CONFIG_FEATURE_CLEAN_UP
Mark Whitley858c1ad2000-07-11 21:38:47 +0000818 /* destroy command strings on exit */
Matt Kraaia9819b22000-12-22 01:48:07 +0000819 if (atexit(destroy_cmd_strs) == -1)
820 perror_msg_and_die("atexit");
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000821#endif
Mark Whitley858c1ad2000-07-11 21:38:47 +0000822
Mark Whitley6315ce62000-07-10 22:55:51 +0000823 /* do normal option parsing */
Eric Andersenb50da532001-02-17 16:52:35 +0000824 while ((opt = getopt(argc, argv, "ne:f:")) > 0) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000825 switch (opt) {
Erik Andersene916d242000-03-06 19:20:35 +0000826 case 'n':
Mark Whitley6315ce62000-07-10 22:55:51 +0000827 be_quiet++;
Erik Andersene916d242000-03-06 19:20:35 +0000828 break;
829 case 'e':
Mark Whitley6315ce62000-07-10 22:55:51 +0000830 add_cmd_str(optarg);
Erik Andersene916d242000-03-06 19:20:35 +0000831 break;
Mark Whitley6315ce62000-07-10 22:55:51 +0000832 case 'f':
833 load_cmd_file(optarg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000834 break;
Eric Andersenb50da532001-02-17 16:52:35 +0000835 default:
836 show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000837 }
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000838 }
Mark Whitley6315ce62000-07-10 22:55:51 +0000839
840 /* if we didn't get a pattern from a -e and no command file was specified,
841 * argv[optind] should be the pattern. no pattern, no worky */
842 if (ncmds == 0) {
843 if (argv[optind] == NULL)
Eric Andersen67991cf2001-02-14 21:23:06 +0000844 show_usage();
Mark Whitley6315ce62000-07-10 22:55:51 +0000845 else {
846 add_cmd_str(argv[optind]);
847 optind++;
848 }
849 }
850
851
852 /* argv[(optind)..(argc-1)] should be names of file to process. If no
853 * files were specified or '-' was specified, take input from stdin.
854 * Otherwise, we process all the files specified. */
855 if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) {
856 process_file(stdin);
857 }
858 else {
859 int i;
860 FILE *file;
861 for (i = optind; i < argc; i++) {
Eric Andersen9c6b5fc2001-11-17 07:23:46 +0000862 file = wfopen(argv[i], "r");
863 if (file) {
Mark Whitley6315ce62000-07-10 22:55:51 +0000864 process_file(file);
865 fclose(file);
Matt Kraaia5f09c62001-11-12 16:44:55 +0000866 } else
867 status = EXIT_FAILURE;
Mark Whitley6315ce62000-07-10 22:55:51 +0000868 }
869 }
870
Matt Kraaia5f09c62001-11-12 16:44:55 +0000871 return status;
Eric Andersen6b6b3f61999-10-28 16:06:25 +0000872}