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