Fixup warnings and undefined operations that show up in gcc-3.1
[oweals/busybox.git] / editors / sed.c
1 /*
2  * sed.c - very minimalist version of sed
3  *
4  * Copyright (C) 1999,2000,2001 by Lineo, inc. and Mark Whitley
5  * Copyright (C) 1999,2000,2001 by Mark Whitley <markw@codepoet.org>
6  * Copyright (C) 2002  Matt Kraai
7  *
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
24 /*
25         Supported features and commands in this version of sed:
26
27          - comments ('#')
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
31          - file commands: (r)ead
32          - backreferences in substitution expressions (\1, \2...\9)
33          
34          (Note: Specifying an address (range) to match is *optional*; commands
35          default to the whole pattern space if no specific address match was
36          requested.)
37
38         Unsupported features:
39
40          - transliteration (y/source-chars/dest-chars/) (use 'tr')
41          - no pattern space hold space storing / swapping (x, etc.)
42          - no labels / branching (: label, b, t, and friends)
43          - and lots, lots more.
44 */
45
46 #include <stdio.h>
47 #include <unistd.h> /* for getopt() */
48 #include <regex.h>
49 #include <string.h> /* for strdup() */
50 #include <errno.h>
51 #include <ctype.h> /* for isspace() */
52 #include <stdlib.h>
53 #include "busybox.h"
54
55 /* externs */
56 extern void xregcomp(regex_t *preg, const char *regex, int cflags);
57 extern int optind; /* in unistd.h */
58 extern char *optarg; /* ditto */
59
60 /* options */
61 static int be_quiet = 0;
62
63
64 struct sed_cmd {
65         /* Order by alignment requirements */
66
67         /* address storage */
68         regex_t *beg_match; /* sed -e '/match/cmd' */
69         regex_t *end_match; /* sed -e '/match/,/end_match/cmd' */
70
71         /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
72
73         /* sed -e 's/sub_match/replace/' */
74         regex_t *sub_match;
75         char *replace;
76
77         /* EDIT COMMAND (a,i,c) SPECIFIC FIELDS */
78         char *editline;
79
80         /* FILE COMMAND (r) SPECIFIC FIELDS */
81         char *filename;
82
83         /* address storage */
84         int beg_line; /* 'sed 1p'   0 == no begining line, apply commands to all lines */
85         int end_line; /* 'sed 1,3p' 0 == no end line, use only beginning. -1 == $ */
86         /* SUBSTITUTION COMMAND SPECIFIC FIELDS */
87
88         unsigned int num_backrefs:4; /* how many back references (\1..\9) */
89                         /* Note:  GNU/POSIX sed does not save more than nine backrefs, so
90                          * we only use 4 bits to hold the number */
91         unsigned int sub_g:1; /* sed -e 's/foo/bar/g' (global) */
92         unsigned int sub_p:2; /* sed -e 's/foo/bar/p' (print substitution) */
93
94         /* GENERAL FIELDS */
95         char delimiter;     /* The delimiter used to separate regexps */
96
97         /* the command */
98         char cmd; /* p,d,s (add more at your leisure :-) */
99
100         /* inversion flag */
101         int invert;         /* the '!' after the address */ 
102 };
103
104 /* globals */
105 static struct sed_cmd *sed_cmds = NULL; /* growable arrary holding a sequence of sed cmds */
106 static int ncmds = 0; /* number of sed commands */
107
108 /*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
109
110 const char * const semicolon_whitespace = "; \n\r\t\v\0";
111
112 #ifdef CONFIG_FEATURE_CLEAN_UP
113 static void destroy_cmd_strs(void)
114 {
115         if (sed_cmds == NULL)
116                 return;
117
118         /* destroy all the elements in the array */
119         while (--ncmds >= 0) {
120
121                 if (sed_cmds[ncmds].beg_match) {
122                         regfree(sed_cmds[ncmds].beg_match);
123                         free(sed_cmds[ncmds].beg_match);
124                 }
125                 if (sed_cmds[ncmds].end_match) {
126                         regfree(sed_cmds[ncmds].end_match);
127                         free(sed_cmds[ncmds].end_match);
128                 }
129                 if (sed_cmds[ncmds].sub_match) {
130                         regfree(sed_cmds[ncmds].sub_match);
131                         free(sed_cmds[ncmds].sub_match);
132                 }
133                 if (sed_cmds[ncmds].replace)
134                         free(sed_cmds[ncmds].replace);
135         }
136
137         /* destroy the array */
138         free(sed_cmds);
139         sed_cmds = NULL;
140 }
141 #endif
142
143
144 /*
145  * index_of_next_unescaped_regexp_delim - walks left to right through a string
146  * beginning at a specified index and returns the index of the next regular
147  * expression delimiter (typically a forward * slash ('/')) not preceeded by 
148  * a backslash ('\').
149  */
150 static int index_of_next_unescaped_regexp_delim(const struct sed_cmd * const sed_cmd, const char *str, int idx)
151 {
152         int bracket = -1;
153         int escaped = 0;
154         char ch;
155
156         for ( ; (ch = str[idx]); idx++) {
157                 if (bracket != -1) {
158                         if (ch == ']' && !(bracket == idx - 1 ||
159                                                                          (bracket == idx - 2 && str[idx-1] == '^')))
160                                 bracket = -1;
161                 } else if (escaped)
162                         escaped = 0;
163                 else if (ch == '\\')
164                         escaped = 1;
165                 else if (ch == '[')
166                         bracket = idx;
167                 else if (ch == sed_cmd->delimiter)
168                         return idx;
169         }
170
171         /* if we make it to here, we've hit the end of the string */
172         return -1;
173 }
174
175 /*
176  * returns the index in the string just past where the address ends.
177  */
178 static int get_address(struct sed_cmd *sed_cmd, const char *str, int *linenum, regex_t **regex)
179 {
180         char *my_str = xstrdup(str);
181         int idx = 0;
182         char olddelimiter;
183         olddelimiter = sed_cmd->delimiter;
184         sed_cmd->delimiter = '/';
185
186         if (isdigit(my_str[idx])) {
187                 do {
188                         idx++;
189                 } while (isdigit(my_str[idx]));
190                 my_str[idx] = 0;
191                 *linenum = atoi(my_str);
192         }
193         else if (my_str[idx] == '$') {
194                 *linenum = -1;
195                 idx++;
196         }
197         else if (my_str[idx] == '/') {
198                 idx = index_of_next_unescaped_regexp_delim(sed_cmd, my_str, ++idx);
199                 if (idx == -1)
200                         error_msg_and_die("unterminated match expression");
201                 my_str[idx] = '\0';
202                 *regex = (regex_t *)xmalloc(sizeof(regex_t));
203                 xregcomp(*regex, my_str+1, REG_NEWLINE);
204                 idx++; /* so it points to the next character after the last '/' */
205         }
206         else {
207                 error_msg("get_address: no address found in string\n"
208                                 "\t(you probably didn't check the string you passed me)");
209                 idx = -1;
210         }
211
212         free(my_str);
213         sed_cmd->delimiter = olddelimiter;
214         return idx;
215 }
216
217 static int parse_subst_cmd(struct sed_cmd * const sed_cmd, const char *substr)
218 {
219         int oldidx, cflags = REG_NEWLINE;
220         char *match;
221         int idx = 0;
222         int j;
223
224         /*
225          * the string that gets passed to this function should look like this:
226          *    s/match/replace/gIp
227          *    ||     |        |||
228          *    mandatory       optional
229          *
230          *    (all three of the '/' slashes are mandatory)
231          */
232
233         /* verify that the 's' is followed by something.  That something
234          * (typically a 'slash') is now our regexp delimiter... */
235         if (!substr[++idx])
236                 error_msg_and_die("bad format in substitution expression");
237         else
238             sed_cmd->delimiter=substr[idx];
239
240         /* save the match string */
241         oldidx = idx+1;
242         idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
243         if (idx == -1)
244                 error_msg_and_die("bad format in substitution expression");
245         match = xstrndup(substr + oldidx, idx - oldidx);
246
247         /* determine the number of back references in the match string */
248         /* Note: we compute this here rather than in the do_subst_command()
249          * function to save processor time, at the expense of a little more memory
250          * (4 bits) per sed_cmd */
251         
252         /* sed_cmd->num_backrefs = 0; */ /* XXX: not needed? --apparently not */ 
253         for (j = 0; match[j]; j++) {
254                 /* GNU/POSIX sed does not save more than nine backrefs */
255                 if (match[j] == '\\' && match[j+1] == '(' && sed_cmd->num_backrefs <= 9)
256                         sed_cmd->num_backrefs++;
257         }
258
259         /* save the replacement string */
260         oldidx = idx+1;
261         idx = index_of_next_unescaped_regexp_delim(sed_cmd, substr, ++idx);
262         if (idx == -1)
263                 error_msg_and_die("bad format in substitution expression");
264         sed_cmd->replace = xstrndup(substr + oldidx, idx - oldidx);
265
266         /* process the flags */
267         while (substr[++idx]) {
268                 switch (substr[idx]) {
269                         case 'g':
270                                 sed_cmd->sub_g = 1;
271                                 break;
272                         case 'I':
273                                 cflags |= REG_ICASE;
274                                 break;
275                         case 'p':
276                                 sed_cmd->sub_p = 1;
277                                 break;
278                         default:
279                                 /* any whitespace or semicolon trailing after a s/// is ok */
280                                 if (strchr(semicolon_whitespace, substr[idx]))
281                                         goto out;
282                                 /* else */
283                                 error_msg_and_die("bad option in substitution expression");
284                 }
285         }
286
287 out:    
288         /* compile the match string into a regex */
289         sed_cmd->sub_match = (regex_t *)xmalloc(sizeof(regex_t));
290         xregcomp(sed_cmd->sub_match, match, cflags);
291         free(match);
292
293         return idx;
294 }
295
296 static void move_back(char *str, int offset)
297 {
298         memmove(str, str + offset, strlen(str + offset) + 1);
299 }
300
301 static int parse_edit_cmd(struct sed_cmd *sed_cmd, const char *editstr)
302 {
303         int i, j;
304
305         /*
306          * the string that gets passed to this function should look like this:
307          *
308          *    need one of these 
309          *    |
310          *    |    this backslash (immediately following the edit command) is mandatory
311          *    |    |
312          *    [aic]\
313          *    TEXT1\
314          *    TEXT2\
315          *    TEXTN
316          *
317          * as soon as we hit a TEXT line that has no trailing '\', we're done.
318          * this means a command like:
319          *
320          * i\
321          * INSERTME
322          *
323          * is a-ok.
324          *
325          */
326
327         if (editstr[1] != '\\' || (editstr[2] != '\n' && editstr[2] != '\r'))
328                 error_msg_and_die("bad format in edit expression");
329
330         /* store the edit line text */
331         sed_cmd->editline = xmalloc(strlen(&editstr[3]) + 2);
332         for (i = 3, j = 0; editstr[i] != '\0' && strchr("\r\n", editstr[i]) == NULL;
333                         i++, j++) {
334                 if (editstr[i] == '\\' && strchr("\n\r", editstr[i+1]) != NULL) {
335                         sed_cmd->editline[j] = '\n';
336                         i++;
337                 } else
338                         sed_cmd->editline[j] = editstr[i];
339         }
340
341         /* figure out if we need to add a newline */
342         if (sed_cmd->editline[j-1] != '\n')
343                 sed_cmd->editline[j++] = '\n';
344
345         /* terminate string */
346         sed_cmd->editline[j] = '\0';
347
348         return i;
349 }
350
351
352 static int parse_file_cmd(struct sed_cmd *sed_cmd, const char *filecmdstr)
353 {
354         int idx = 0;
355         int filenamelen = 0;
356
357         /*
358          * the string that gets passed to this function should look like this:
359          *    '[ ]filename'
360          *      |  |
361          *      |  a filename
362          *      |
363          *     optional whitespace
364
365          *   re: the file to be read, the GNU manual says the following: "Note that
366          *   if filename cannot be read, it is treated as if it were an empty file,
367          *   without any error indication." Thus, all of the following commands are
368          *   perfectly leagal:
369          *
370          *   sed -e '1r noexist'
371          *   sed -e '1r ;'
372          *   sed -e '1r'
373          */
374
375         /* the file command may be followed by whitespace; move past it. */
376         while (isspace(filecmdstr[++idx]))
377                 { ; }
378                 
379         /* the first non-whitespace we get is a filename. the filename ends when we
380          * hit a normal sed command terminator or end of string */
381         filenamelen = strcspn(&filecmdstr[idx], semicolon_whitespace);
382         sed_cmd->filename = xmalloc(filenamelen + 1);
383         safe_strncpy(sed_cmd->filename, &filecmdstr[idx], filenamelen + 1);
384
385         return idx + filenamelen;
386 }
387
388
389 static char *parse_cmd_str(struct sed_cmd * const sed_cmd, const char *const cmdstr)
390 {
391         int idx = 0;
392
393         /* parse the command
394          * format is: [addr][,addr]cmd
395          *            |----||-----||-|
396          *            part1 part2  part3
397          */
398
399         /* first part (if present) is an address: either a number or a /regex/ */
400         if (isdigit(cmdstr[idx]) || cmdstr[idx] == '/')
401                 idx = get_address(sed_cmd, cmdstr, &sed_cmd->beg_line, &sed_cmd->beg_match);
402
403         /* second part (if present) will begin with a comma */
404         if (cmdstr[idx] == ',') {
405                 idx++;
406                 idx += get_address(sed_cmd, &cmdstr[idx], &sed_cmd->end_line, &sed_cmd->end_match);
407         }
408
409         /* skip whitespace before the command */
410         while (isspace(cmdstr[idx]))
411                 idx++;
412
413         /* there my be the inversion flag between part2 and part3 */
414         sed_cmd->invert = 0;
415         if (cmdstr[idx] == '!') {
416                 sed_cmd->invert = 1;
417                 idx++;
418
419                 /* skip whitespace before the command */
420                 while (isspace(cmdstr[idx]))
421                         idx++;
422         }
423
424         /* last part (mandatory) will be a command */
425         if (cmdstr[idx] == '\0')
426                 error_msg_and_die("missing command");
427         sed_cmd->cmd = cmdstr[idx];
428
429         /* if it was a single-letter command that takes no arguments (such as 'p'
430          * or 'd') all we need to do is increment the index past that command */
431         if (strchr("pd", sed_cmd->cmd)) {
432                 idx++;
433         }
434         /* handle (s)ubstitution command */
435         else if (sed_cmd->cmd == 's') {
436                 idx += parse_subst_cmd(sed_cmd, &cmdstr[idx]);
437         }
438         /* handle edit cmds: (a)ppend, (i)nsert, and (c)hange */
439         else if (strchr("aic", sed_cmd->cmd)) {
440                 if ((sed_cmd->end_line || sed_cmd->end_match) && sed_cmd->cmd != 'c')
441                         error_msg_and_die("only a beginning address can be specified for edit commands");
442                 idx += parse_edit_cmd(sed_cmd, &cmdstr[idx]);
443         }
444         /* handle file cmds: (r)ead */
445         else if (sed_cmd->cmd == 'r') {
446                 if (sed_cmd->end_line || sed_cmd->end_match)
447                         error_msg_and_die("Command only uses one address");
448                 idx += parse_file_cmd(sed_cmd, &cmdstr[idx]);
449         }
450         else {
451                 error_msg_and_die("invalid command");
452         }
453
454         /* give back whatever's left over */
455         return (char *)&cmdstr[idx];
456 }
457
458 static void add_cmd_str(const char * const cmdstr)
459 {
460         char *mystr = (char *)cmdstr;
461
462         do {
463
464                 /* trim leading whitespace and semicolons */
465                 move_back(mystr, strspn(mystr, semicolon_whitespace));
466                 /* if we ate the whole thing, that means there was just trailing
467                  * whitespace or a final / no-op semicolon. either way, get out */
468                 if (strlen(mystr) == 0)
469                         return;
470                 /* if this is a comment, jump past it and keep going */
471                 if (mystr[0] == '#') {
472                         mystr = strpbrk(mystr, "\n\r");
473                         continue;
474                 }
475                 /* grow the array */
476                 sed_cmds = xrealloc(sed_cmds, sizeof(struct sed_cmd) * (++ncmds));
477                 /* zero new element */
478                 memset(&sed_cmds[ncmds-1], 0, sizeof(struct sed_cmd));
479                 /* load command string into new array element, get remainder */
480                 mystr = parse_cmd_str(&sed_cmds[ncmds-1], mystr);
481
482         } while (mystr && strlen(mystr));
483 }
484
485
486 static void load_cmd_file(char *filename)
487 {
488         FILE *cmdfile;
489         char *line;
490         char *nextline;
491
492         cmdfile = xfopen(filename, "r");
493
494         while ((line = get_line_from_file(cmdfile)) != NULL) {
495                 /* if a line ends with '\' it needs the next line appended to it */
496                 while (line[strlen(line)-2] == '\\' &&
497                                 (nextline = get_line_from_file(cmdfile)) != NULL) {
498                         line = xrealloc(line, strlen(line) + strlen(nextline) + 1);
499                         strcat(line, nextline);
500                         free(nextline);
501                 }
502                 /* eat trailing newline (if any) --if I don't do this, edit commands
503                  * (aic) will print an extra newline */
504                 chomp(line);
505                 add_cmd_str(line);
506                 free(line);
507         }
508 }
509
510 struct pipeline {
511         char *buf;
512         int idx;
513         int len;
514 };
515
516 #define PIPE_MAGIC 0x7f
517 #define PIPE_GROW 64  
518
519 void pipe_putc(struct pipeline *const pipeline, char c)
520 {
521         if (pipeline->buf[pipeline->idx] == PIPE_MAGIC) {
522                 pipeline->buf =
523                         xrealloc(pipeline->buf, pipeline->len + PIPE_GROW);
524                 memset(pipeline->buf + pipeline->len, 0, PIPE_GROW);
525                 pipeline->len += PIPE_GROW;
526                 pipeline->buf[pipeline->len - 1] = PIPE_MAGIC;
527         }
528         pipeline->buf[pipeline->idx++] = (c);
529 }
530
531 #define pipeputc(c)     pipe_putc(pipeline, c)
532
533 #if 0
534 { if (pipeline[pipeline_idx] == PIPE_MAGIC) { \
535         pipeline = xrealloc(pipeline, pipeline_len+PIPE_GROW); \
536         memset(pipeline+pipeline_len, 0, PIPE_GROW); \
537         pipeline_len += PIPE_GROW; \
538         pipeline[pipeline_len-1] = PIPE_MAGIC; } \
539         pipeline[pipeline_idx++] = (c); }
540 #endif
541
542 static void print_subst_w_backrefs(const char *line, const char *replace, 
543         regmatch_t *regmatch, struct pipeline *const pipeline, int matches)
544 {
545         int i;
546
547         /* go through the replacement string */
548         for (i = 0; replace[i]; i++) {
549                 /* if we find a backreference (\1, \2, etc.) print the backref'ed * text */
550                 if (replace[i] == '\\' && isdigit(replace[i+1])) {
551                         int j;
552                         char tmpstr[2];
553                         int backref;
554                         ++i; /* i now indexes the backref number, instead of the leading slash */
555                         tmpstr[0] = replace[i];
556                         tmpstr[1] = 0;
557                         backref = atoi(tmpstr);
558                         /* print out the text held in regmatch[backref] */
559                         if (backref <= matches && regmatch[backref].rm_so != -1)
560                                 for (j = regmatch[backref].rm_so; j < regmatch[backref].rm_eo; j++)
561                                         pipeputc(line[j]);
562                 }
563
564                 /* if we find a backslash escaped character, print the character */
565                 else if (replace[i] == '\\') {
566                         ++i;
567                         pipeputc(replace[i]);
568                 }
569
570                 /* if we find an unescaped '&' print out the whole matched text.
571                  * fortunately, regmatch[0] contains the indicies to the whole matched
572                  * expression (kinda seems like it was designed for just such a
573                  * purpose...) */
574                 else if (replace[i] == '&' && replace[i-1] != '\\') {
575                         int j;
576                         for (j = regmatch[0].rm_so; j < regmatch[0].rm_eo; j++)
577                                 pipeputc(line[j]);
578                 }
579                 /* nothing special, just print this char of the replacement string to stdout */
580                 else
581                         pipeputc(replace[i]);
582         }
583 }
584
585 static int do_subst_command(const struct sed_cmd *sed_cmd, char **line)
586 {
587         char *hackline = *line;
588         struct pipeline thepipe = { NULL, 0 , 0};
589         struct pipeline *const pipeline = &thepipe;
590         int altered = 0;
591         regmatch_t *regmatch = NULL;
592
593         /* we only proceed if the substitution 'search' expression matches */
594         if (regexec(sed_cmd->sub_match, hackline, 0, NULL, 0) == REG_NOMATCH)
595                 return 0;
596
597         /* whaddaya know, it matched. get the number of back references */
598         regmatch = xmalloc(sizeof(regmatch_t) * (sed_cmd->num_backrefs+1));
599
600         /* allocate more PIPE_GROW bytes
601            if replaced string is larger than original */
602         thepipe.len = strlen(hackline)+PIPE_GROW;
603         thepipe.buf = xcalloc(1, thepipe.len);
604         /* buffer magic */
605         thepipe.buf[thepipe.len-1] = PIPE_MAGIC;
606
607         /* and now, as long as we've got a line to try matching and if we can match
608          * the search string, we make substitutions */
609         while ((*hackline || !altered) && (regexec(sed_cmd->sub_match, hackline,
610                                         sed_cmd->num_backrefs+1, regmatch, 0) != REG_NOMATCH) ) {
611                 int i;
612
613                 /* print everything before the match */
614                 for (i = 0; i < regmatch[0].rm_so; i++)
615                         pipeputc(hackline[i]);
616
617                 /* then print the substitution string */
618                 print_subst_w_backrefs(hackline, sed_cmd->replace, regmatch, 
619                                 pipeline, sed_cmd->num_backrefs);
620
621                 /* advance past the match */
622                 hackline += regmatch[0].rm_eo;
623                 /* flag that something has changed */
624                 altered++;
625
626                 /* if we're not doing this globally, get out now */
627                 if (!sed_cmd->sub_g)
628                         break;
629         }
630
631         for (; *hackline; hackline++) pipeputc(*hackline);
632         if (thepipe.buf[thepipe.idx] == PIPE_MAGIC) thepipe.buf[thepipe.idx] = 0;
633
634         /* cleanup */
635         free(regmatch);
636
637         free(*line);
638         *line = thepipe.buf;
639         return altered;
640 }
641
642
643 static void process_file(FILE *file)
644 {
645         char *line = NULL;
646         static int linenum = 0; /* GNU sed does not restart counting lines at EOF */
647         unsigned int still_in_range = 0;
648         int altered;
649         int i;
650
651         /* go through every line in the file */
652         while ((line = get_line_from_file(file)) != NULL) {
653
654                 chomp(line);
655                 linenum++;
656                 altered = 0;
657
658                 /* for every line, go through all the commands */
659                 for (i = 0; i < ncmds; i++) {
660                         struct sed_cmd *sed_cmd = &sed_cmds[i];
661                         int deleted = 0;
662
663                         /*
664                          * entry point into sedding...
665                          */
666                         int matched = (
667                                         /* no range necessary */
668                                         (sed_cmd->beg_line == 0 && sed_cmd->end_line == 0 &&
669                                          sed_cmd->beg_match == NULL &&
670                                          sed_cmd->end_match == NULL) ||
671                                         /* this line number is the first address we're looking for */
672                                         (sed_cmd->beg_line && (sed_cmd->beg_line == linenum)) ||
673                                         /* this line matches our first address regex */
674                                         (sed_cmd->beg_match && (regexec(sed_cmd->beg_match, line, 0, NULL, 0) == 0)) ||
675                                         /* we are currently within the beginning & ending address range */
676                                         still_in_range
677                            );
678
679                         if (sed_cmd->invert ^ matched) {
680
681                                 /*
682                                  * actual sedding
683                                  */
684                                 switch (sed_cmd->cmd) {
685
686                                         case 'p':
687                                                 puts(line);
688                                                 break;
689
690                                         case 'd':
691                                                 altered++;
692                                                 deleted = 1;
693                                                 break;
694
695                                         case 's':
696
697                                                 /*
698                                                  * Some special cases for 's' printing to make it compliant with
699                                                  * GNU sed printing behavior (aka "The -n | s///p Matrix"):
700                                                  *
701                                                  *    -n ONLY = never print anything regardless of any successful
702                                                  *    substitution
703                                                  *
704                                                  *    s///p ONLY = always print successful substitutions, even if
705                                                  *    the line is going to be printed anyway (line will be printed
706                                                  *    twice).
707                                                  *
708                                                  *    -n AND s///p = print ONLY a successful substitution ONE TIME;
709                                                  *    no other lines are printed - this is the reason why the 'p'
710                                                  *    flag exists in the first place.
711                                                  */
712
713                                                 /* if the user specified that they didn't want anything printed (i.e., a -n
714                                                  * flag and no 'p' flag after the s///), then there's really no point doing
715                                                  * anything here. */
716                                                 if (be_quiet && !sed_cmd->sub_p)
717                                                         break;
718
719                                                 /* we print the line once, unless we were told to be quiet */
720                                                 if (!be_quiet)
721                                                         altered |= do_subst_command(sed_cmd, &line);
722
723                                                 /* we also print the line if we were given the 'p' flag
724                                                  * (this is quite possibly the second printing) */
725                                                 if (sed_cmd->sub_p)
726                                                         altered |= do_subst_command(sed_cmd, &line);
727                                                 if (altered && (i+1 >= ncmds || sed_cmds[i+1].cmd != 's'))
728                                                         puts(line);
729
730                                                 break;
731
732                                         case 'a':
733                                                 puts(line);
734                                                 fputs(sed_cmd->editline, stdout);
735                                                 altered++;
736                                                 break;
737
738                                         case 'i':
739                                                 fputs(sed_cmd->editline, stdout);
740                                                 break;
741
742                                         case 'c':
743                                                 /* single-address case */
744                                                 if ((sed_cmd->end_match == NULL && sed_cmd->end_line == 0)
745                                                 /* multi-address case */
746                                                 /* - matching text */
747                                                 || (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
748                                                 /* - matching line numbers */
749                                                 || (sed_cmd->end_line > 0 && sed_cmd->end_line == linenum))
750                                                 {
751                                                         fputs(sed_cmd->editline, stdout);
752                                                 }
753                                                 altered++;
754
755                                                 break;
756
757                                         case 'r': {
758                                                                   FILE *outfile;
759                                                                   puts(line);
760                                                                   outfile = fopen(sed_cmd->filename, "r");
761                                                                   if (outfile)
762                                                                           print_file(outfile);
763                                                                   /* else if we couldn't open the output file,
764                                                                    * no biggie, just don't print anything */
765                                                                   altered++;
766                                                   }
767                                                           break;
768                                 }
769                         }
770
771                         /*
772                          * exit point from sedding...
773                          */
774                         if (matched) {
775                                 if (
776                                         /* this is a single-address command or... */
777                                         (sed_cmd->end_line == 0 && sed_cmd->end_match == NULL) || (
778                                                 /* we were in the middle of our address range (this
779                                                  * isn't the first time through) and.. */
780                                                 (still_in_range == 1) && (
781                                                         /* this line number is the last address we're looking for or... */
782                                                         (sed_cmd->end_line && (sed_cmd->end_line == linenum)) ||
783                                                         /* this line matches our last address regex */
784                                                         (sed_cmd->end_match && (regexec(sed_cmd->end_match, line, 0, NULL, 0) == 0))
785                                                 )
786                                         )
787                                 ) {
788                                         /* we're out of our address range */
789                                         still_in_range = 0;
790                                 }
791
792                                 /* didn't hit the exit? then we're still in the middle of an address range */
793                                 else {
794                                         still_in_range = 1;
795                                 }
796                         }
797
798                         if (deleted)
799                                 break;
800                 }
801
802                 /* we will print the line unless we were told to be quiet or if the
803                  * line was altered (via a 'd'elete or 's'ubstitution), in which case
804                  * the altered line was already printed */
805                 if (!be_quiet && !altered)
806                         puts(line);
807
808                 free(line);
809         }
810 }
811
812 extern int sed_main(int argc, char **argv)
813 {
814         int opt, status = EXIT_SUCCESS;
815
816 #ifdef CONFIG_FEATURE_CLEAN_UP
817         /* destroy command strings on exit */
818         if (atexit(destroy_cmd_strs) == -1)
819                 perror_msg_and_die("atexit");
820 #endif
821
822         /* do normal option parsing */
823         while ((opt = getopt(argc, argv, "ne:f:")) > 0) {
824                 switch (opt) {
825                         case 'n':
826                                 be_quiet++;
827                                 break;
828                         case 'e':
829                                 add_cmd_str(optarg);
830                                 break;
831                         case 'f': 
832                                 load_cmd_file(optarg);
833                                 break;
834                         default:
835                                 show_usage();
836                 }
837         }
838
839         /* if we didn't get a pattern from a -e and no command file was specified,
840          * argv[optind] should be the pattern. no pattern, no worky */
841         if (ncmds == 0) {
842                 if (argv[optind] == NULL)
843                         show_usage();
844                 else {
845                         add_cmd_str(argv[optind]);
846                         optind++;
847                 }
848         }
849
850
851         /* argv[(optind)..(argc-1)] should be names of file to process. If no
852          * files were specified or '-' was specified, take input from stdin.
853          * Otherwise, we process all the files specified. */
854         if (argv[optind] == NULL || (strcmp(argv[optind], "-") == 0)) {
855                 process_file(stdin);
856         }
857         else {
858                 int i;
859                 FILE *file;
860                 for (i = optind; i < argc; i++) {
861                         file = wfopen(argv[i], "r");
862                         if (file) {
863                                 process_file(file);
864                                 fclose(file);
865                         } else
866                                 status = EXIT_FAILURE;
867                 }
868         }
869         
870         return status;
871 }