blob: 241099c79808c9f020614f3bf1675c8c66f6bbcd [file] [log] [blame]
Eric Andersencc8ed391999-10-05 16:24:54 +00001/*
Mark Whitleyd3721892000-06-28 22:00:26 +00002 * Mini grep implementation for busybox using libc regex.
Eric Andersenc4996011999-10-20 22:08:37 +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>
Eric Andersencc8ed391999-10-05 16:24:54 +00006 *
Eric Andersen3e0fbae1999-10-19 06:02:44 +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 *
Eric Andersencc8ed391999-10-05 16:24:54 +000021 */
Eric Andersen8876fb22003-06-20 09:01:58 +000022/*
23 * Jun 2003 by Vladimir Oleynik <dzo@simtreas.ru> -
24 * correction "-e pattern1 -e -e pattern2" logic and more optimizations.
25*/
Eric Andersencc8ed391999-10-05 16:24:54 +000026
Eric Andersencc8ed391999-10-05 16:24:54 +000027#include <stdio.h>
Mark Whitleyd3721892000-06-28 22:00:26 +000028#include <stdlib.h>
Eric Andersene9b527a2000-07-09 05:56:14 +000029#include <getopt.h>
Mark Whitleyd3721892000-06-28 22:00:26 +000030#include <regex.h>
Eric Andersen8876fb22003-06-20 09:01:58 +000031#include <string.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000032#include <errno.h>
Eric Andersen3570a342000-09-25 21:45:58 +000033#include "busybox.h"
Mark Whitleyd3721892000-06-28 22:00:26 +000034
Eric Andersened3ef502001-01-27 08:24:39 +000035
Mark Whitleyd3721892000-06-28 22:00:26 +000036/* options */
Eric Andersen8876fb22003-06-20 09:01:58 +000037#define GREP_OPTS "lnqvscFiHhe:f:"
38#define GREP_OPT_l 1
39static char print_files_with_matches;
40#define GREP_OPT_n 2
41static char print_line_num;
42#define GREP_OPT_q 4
43static char be_quiet;
44#define GREP_OPT_v 8
45typedef char invert_search_t;
46static invert_search_t invert_search;
47#define GREP_OPT_s 16
48static char suppress_err_msgs;
49#define GREP_OPT_c 32
50static char print_match_counts;
51#define GREP_OPT_F 64
52static char fgrep_flag;
53#define GREP_OPT_i 128
54#define GREP_OPT_H 256
55#define GREP_OPT_h 512
56#define GREP_OPT_e 1024
57#define GREP_OPT_f 2048
58#ifdef CONFIG_FEATURE_GREP_CONTEXT
59#define GREP_OPT_CONTEXT "A:B:C"
60#define GREP_OPT_A 4096
61#define GREP_OPT_B 8192
62#define GREP_OPT_C 16384
63#define GREP_OPT_E 32768U
64#else
65#define GREP_OPT_CONTEXT ""
66#define GREP_OPT_E 4096
67#endif
68#ifdef CONFIG_FEATURE_GREP_EGREP_ALIAS
69# define OPT_EGREP "E"
70#else
71# define OPT_EGREP ""
72#endif
73
74static int reflags;
75static int print_filename;
Mark Whitleyd3721892000-06-28 22:00:26 +000076
Eric Andersenbdfd0d72001-10-24 05:00:29 +000077#ifdef CONFIG_FEATURE_GREP_CONTEXT
Eric Andersen8876fb22003-06-20 09:01:58 +000078static int lines_before;
79static int lines_after;
80static char **before_buf;
81static int last_line_printed;
Eric Andersenbdfd0d72001-10-24 05:00:29 +000082#endif /* CONFIG_FEATURE_GREP_CONTEXT */
Mark Whitley2fd52982001-02-09 00:41:10 +000083
84/* globals used internally */
Eric Andersen8876fb22003-06-20 09:01:58 +000085static llist_t *pattern_head; /* growable list of patterns to match */
86static char *cur_file; /* the current file we are reading */
Mark Whitleyd3721892000-06-28 22:00:26 +000087
Mark Whitleyfa43e542001-05-24 18:36:18 +000088
Mark Whitley2fd52982001-02-09 00:41:10 +000089static void print_line(const char *line, int linenum, char decoration)
90{
Eric Andersenbdfd0d72001-10-24 05:00:29 +000091#ifdef CONFIG_FEATURE_GREP_CONTEXT
Mark Whitley2fd52982001-02-09 00:41:10 +000092 /* possibly print the little '--' seperator */
Matt Kraaiedc80652001-05-22 14:29:27 +000093 if ((lines_before || lines_after) && last_line_printed &&
94 last_line_printed < linenum - 1) {
Mark Whitley2fd52982001-02-09 00:41:10 +000095 puts("--");
96 }
97 last_line_printed = linenum;
98#endif
99 if (print_filename)
100 printf("%s%c", cur_file, decoration);
101 if (print_line_num)
102 printf("%i%c", linenum, decoration);
103 puts(line);
104}
Mark Whitleyd3721892000-06-28 22:00:26 +0000105
Eric Andersen8876fb22003-06-20 09:01:58 +0000106extern void xregcomp(regex_t *preg, const char *regex, int cflags);
Mark Whitleyfa43e542001-05-24 18:36:18 +0000107
Eric Andersen8876fb22003-06-20 09:01:58 +0000108
109static int grep_file(FILE *file)
Mark Whitleyd3721892000-06-28 22:00:26 +0000110{
Eric Andersen8876fb22003-06-20 09:01:58 +0000111 char *line;
112 invert_search_t ret;
Mark Whitleyd3721892000-06-28 22:00:26 +0000113 int linenum = 0;
Matt Kraaideb95f62000-08-06 15:25:53 +0000114 int nmatches = 0;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000115#ifdef CONFIG_FEATURE_GREP_CONTEXT
Mark Whitley2fd52982001-02-09 00:41:10 +0000116 int print_n_lines_after = 0;
117 int curpos = 0; /* track where we are in the circular 'before' buffer */
118 int idx = 0; /* used for iteration through the circular buffer */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000119#endif /* CONFIG_FEATURE_GREP_CONTEXT */
Mark Whitleyd3721892000-06-28 22:00:26 +0000120
Manuel Novoa III cad53642003-03-19 09:13:01 +0000121 while ((line = bb_get_chomped_line_from_file(file)) != NULL) {
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000122 llist_t *pattern_ptr = pattern_head;
123
Mark Whitleyd3721892000-06-28 22:00:26 +0000124 linenum++;
Eric Andersen8876fb22003-06-20 09:01:58 +0000125 ret = 0;
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000126 while (pattern_ptr) {
127 if (fgrep_flag) {
Eric Andersen8876fb22003-06-20 09:01:58 +0000128 ret = strstr(line, pattern_ptr->data) != NULL;
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000129 } else {
130 /*
131 * test for a postitive-assertion match (regexec returns success (0)
132 * and the user did not specify invert search), or a negative-assertion
133 * match (regexec returns failure (REG_NOMATCH) and the user specified
134 * invert search)
135 */
136 regex_t regex;
137 xregcomp(&regex, pattern_ptr->data, reflags);
Eric Andersen8876fb22003-06-20 09:01:58 +0000138 ret = regexec(&regex, line, 0, NULL, 0) == 0;
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000139 regfree(&regex);
140 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000141 if (!ret)
142 break;
143 pattern_ptr = pattern_ptr->link;
144 } /* while (pattern_ptr) */
Mark Whitleyd3721892000-06-28 22:00:26 +0000145
Eric Andersen8876fb22003-06-20 09:01:58 +0000146 if ((ret ^ invert_search)) {
147
148 if (print_files_with_matches || be_quiet)
149 free(line);
150
151 /* if we found a match but were told to be quiet, stop here */
Mark Whitleyfa43e542001-05-24 18:36:18 +0000152 if (be_quiet)
Eric Andersen8876fb22003-06-20 09:01:58 +0000153 return -1;
Mark Whitleyd3721892000-06-28 22:00:26 +0000154
Mark Whitleyfa43e542001-05-24 18:36:18 +0000155 /* keep track of matches */
156 nmatches++;
Mark Whitley1d9d4112001-05-21 21:13:00 +0000157
Mark Whitleyfa43e542001-05-24 18:36:18 +0000158 /* if we're just printing filenames, we stop after the first match */
159 if (print_files_with_matches)
160 break;
Mark Whitley1d9d4112001-05-21 21:13:00 +0000161
Mark Whitleyfa43e542001-05-24 18:36:18 +0000162 /* print the matched line */
163 if (print_match_counts == 0) {
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000164#ifdef CONFIG_FEATURE_GREP_CONTEXT
Mark Whitleyfa43e542001-05-24 18:36:18 +0000165 int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
Mark Whitley2fd52982001-02-09 00:41:10 +0000166
Mark Whitleyfa43e542001-05-24 18:36:18 +0000167 /* if we were told to print 'before' lines and there is at least
168 * one line in the circular buffer, print them */
169 if (lines_before && before_buf[prevpos] != NULL) {
170 int first_buf_entry_line_num = linenum - lines_before;
Mark Whitley2fd52982001-02-09 00:41:10 +0000171
Mark Whitleyfa43e542001-05-24 18:36:18 +0000172 /* advance to the first entry in the circular buffer, and
173 * figure out the line number is of the first line in the
174 * buffer */
175 idx = curpos;
176 while (before_buf[idx] == NULL) {
177 idx = (idx + 1) % lines_before;
178 first_buf_entry_line_num++;
179 }
180
181 /* now print each line in the buffer, clearing them as we go */
182 while (before_buf[idx] != NULL) {
183 print_line(before_buf[idx], first_buf_entry_line_num, '-');
184 free(before_buf[idx]);
185 before_buf[idx] = NULL;
186 idx = (idx + 1) % lines_before;
187 first_buf_entry_line_num++;
188 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000189 }
190
Mark Whitleyfa43e542001-05-24 18:36:18 +0000191 /* make a note that we need to print 'after' lines */
192 print_n_lines_after = lines_after;
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000193#endif /* CONFIG_FEATURE_GREP_CONTEXT */
Mark Whitleyfa43e542001-05-24 18:36:18 +0000194 print_line(line, linenum, ':');
Mark Whitley2fd52982001-02-09 00:41:10 +0000195 }
Matt Kraai0810f722001-01-04 15:11:52 +0000196 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000197#ifdef CONFIG_FEATURE_GREP_CONTEXT
Mark Whitleyfa43e542001-05-24 18:36:18 +0000198 else { /* no match */
199 /* Add the line to the circular 'before' buffer */
200 if(lines_before) {
Aaron Lehmanna170e1c2002-11-28 11:27:31 +0000201 free(before_buf[curpos]);
Manuel Novoa III cad53642003-03-19 09:13:01 +0000202 before_buf[curpos] = bb_xstrdup(line);
Mark Whitleyfa43e542001-05-24 18:36:18 +0000203 curpos = (curpos + 1) % lines_before;
204 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000205 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000206
Mark Whitleyfa43e542001-05-24 18:36:18 +0000207 /* if we need to print some context lines after the last match, do so */
208 if (print_n_lines_after && (last_line_printed != linenum)) {
209 print_line(line, linenum, '-');
210 print_n_lines_after--;
211 }
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000212#endif /* CONFIG_FEATURE_GREP_CONTEXT */
Mark Whitleyd3721892000-06-28 22:00:26 +0000213 free(line);
214 }
Mark Whitley8f122432000-07-18 18:37:01 +0000215
Mark Whitley35e59be2001-05-14 19:40:32 +0000216
217 /* special-case file post-processing for options where we don't print line
Mark Whitley1d9d4112001-05-21 21:13:00 +0000218 * matches, just filenames and possibly match counts */
Mark Whitley35e59be2001-05-14 19:40:32 +0000219
Mark Whitley1d9d4112001-05-21 21:13:00 +0000220 /* grep -c: print [filename:]count, even if count is zero */
Mark Whitley35e59be2001-05-14 19:40:32 +0000221 if (print_match_counts) {
Mark Whitley1d9d4112001-05-21 21:13:00 +0000222 if (print_filename)
223 printf("%s:", cur_file);
Eric Andersen00344432001-07-31 23:18:49 +0000224 printf("%d\n", nmatches);
Mark Whitley35e59be2001-05-14 19:40:32 +0000225 }
Mark Whitley1d9d4112001-05-21 21:13:00 +0000226
227 /* grep -l: print just the filename, but only if we grepped the line in the file */
228 if (print_files_with_matches && nmatches > 0) {
Matt Kraai59df6f72001-05-16 14:21:09 +0000229 puts(cur_file);
Mark Whitley35e59be2001-05-14 19:40:32 +0000230 }
231
Eric Andersen8876fb22003-06-20 09:01:58 +0000232 return nmatches;
Mark Whitleyd3721892000-06-28 22:00:26 +0000233}
Eric Andersencc8ed391999-10-05 16:24:54 +0000234
Eric Andersen8876fb22003-06-20 09:01:58 +0000235static void load_regexes_from_file(llist_t *fopt)
Mark Whitleyfa43e542001-05-24 18:36:18 +0000236{
237 char *line;
Eric Andersen8876fb22003-06-20 09:01:58 +0000238 FILE *f;
239
240 while(fopt) {
241 llist_t *cur = fopt;
242 char *ffile = cur->data;
243
244 fopt = cur->link;
245 free(cur);
246 f = bb_xfopen(ffile, "r");
Manuel Novoa III cad53642003-03-19 09:13:01 +0000247 while ((line = bb_get_chomped_line_from_file(f)) != NULL) {
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000248 pattern_head = llist_add_to(pattern_head, line);
Mark Whitleyfa43e542001-05-24 18:36:18 +0000249 }
Mark Whitleyfa43e542001-05-24 18:36:18 +0000250 }
251}
Mark Whitleyfa43e542001-05-24 18:36:18 +0000252
253
Erik Andersene49d5ec2000-02-08 19:58:47 +0000254extern int grep_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000255{
Eric Andersen8876fb22003-06-20 09:01:58 +0000256 FILE *file;
257 int matched;
258 unsigned long opt;
259 llist_t *fopt;
Matt Kraai999623e2001-10-29 15:49:03 +0000260
Mark Whitleyd3721892000-06-28 22:00:26 +0000261 /* do normal option parsing */
Eric Andersenbdfd0d72001-10-24 05:00:29 +0000262#ifdef CONFIG_FEATURE_GREP_CONTEXT
Eric Andersen8876fb22003-06-20 09:01:58 +0000263 {
264 char *junk;
265 char *slines_after;
266 char *slines_before;
267 char *Copt;
268
269 bb_opt_complementaly = "H-h:e*:f*:C-AB";
270 opt = bb_getopt_ulflags(argc, argv,
271 GREP_OPTS GREP_OPT_CONTEXT OPT_EGREP,
272 &pattern_head, &fopt,
273 &slines_after, &slines_before, &Copt);
274
275 if(opt & GREP_OPT_C) {
276 /* C option unseted A and B options, but next -A or -B
277 may be ovewrite own option */
278 if(!(opt & GREP_OPT_A)) /* not overwtited */
279 slines_after = Copt;
280 if(!(opt & GREP_OPT_B)) /* not overwtited */
281 slines_before = Copt;
282 opt |= GREP_OPT_A|GREP_OPT_B; /* set for parse now */
Eric Andersen053b1462000-06-13 06:24:53 +0000283 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000284 if(opt & GREP_OPT_A) {
285 lines_after = strtoul(slines_after, &junk, 10);
286 if(*junk != '\0')
287 bb_error_msg_and_die("invalid context length argument");
288 }
289 if(opt & GREP_OPT_B) {
290 lines_before = strtoul(slines_before, &junk, 10);
291 if(*junk != '\0')
292 bb_error_msg_and_die("invalid context length argument");
293 }
294 /* sanity checks after parse may be invalid numbers ;-) */
295 if ((opt & (GREP_OPT_c|GREP_OPT_q|GREP_OPT_l))) {
296 opt &= ~GREP_OPT_n;
297 lines_before = 0;
298 lines_after = 0;
299 } else if(lines_before > 0)
300 before_buf = (char **)xcalloc(lines_before, sizeof(char *));
301 }
302#else
303 /* with auto sanity checks */
304 bb_opt_complementaly = "H-h:e*:f*:c-n:q-n:l-n";
305 opt = bb_getopt_ulflags(argc, argv, GREP_OPTS OPT_EGREP,
306 &pattern_head, &fopt);
307
308#endif
309 print_files_with_matches = opt & GREP_OPT_l;
310 print_line_num = opt & GREP_OPT_n;
311 be_quiet = opt & GREP_OPT_q;
312 invert_search = (opt & GREP_OPT_v) != 0; /* 0 | 1 */
313 suppress_err_msgs = opt & GREP_OPT_s;
314 print_match_counts = opt & GREP_OPT_c;
315 fgrep_flag = opt & GREP_OPT_F;
316 if(opt & GREP_OPT_H)
317 print_filename++;
318 if(opt & GREP_OPT_h)
319 print_filename--;
320 if(opt & GREP_OPT_f)
321 load_regexes_from_file(fopt);
322
323#ifdef CONFIG_FEATURE_GREP_EGREP_ALIAS
324 if(bb_applet_name[0] == 'e' || (opt & GREP_OPT_E))
325 reflags = REG_EXTENDED | REG_NOSUB;
326 else
327#endif
328 reflags = REG_NOSUB;
329
330 if(opt & GREP_OPT_i)
331 reflags |= REG_ICASE;
332
333 argv += optind;
334 argc -= optind;
Eric Andersen053b1462000-06-13 06:24:53 +0000335
Mark Whitleyfa43e542001-05-24 18:36:18 +0000336 /* if we didn't get a pattern from a -e and no command file was specified,
337 * argv[optind] should be the pattern. no pattern, no worky */
Glenn L McGrath26df70a2003-04-27 01:50:57 +0000338 if (pattern_head == NULL) {
Eric Andersen8876fb22003-06-20 09:01:58 +0000339 if (*argv == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000340 bb_show_usage();
Mark Whitleyfa43e542001-05-24 18:36:18 +0000341 else {
Eric Andersen8876fb22003-06-20 09:01:58 +0000342 pattern_head = llist_add_to(pattern_head, *argv++);
343 argc--;
Mark Whitleyfa43e542001-05-24 18:36:18 +0000344 }
345 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000346
Mark Whitleyfa43e542001-05-24 18:36:18 +0000347 /* argv[(optind)..(argc-1)] should be names of file to grep through. If
Mark Whitleyd3721892000-06-28 22:00:26 +0000348 * there is more than one file to grep, we will print the filenames */
Eric Andersen8876fb22003-06-20 09:01:58 +0000349 if (argc > 1) {
Mark Whitleyd3721892000-06-28 22:00:26 +0000350 print_filename++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000351
Mark Whitley2e1148b2000-06-28 22:59:30 +0000352 /* If no files were specified, or '-' was specified, take input from
353 * stdin. Otherwise, we grep through all the files specified. */
Eric Andersen8876fb22003-06-20 09:01:58 +0000354 } else if (argc == 0) {
355 argc++;
Mark Whitley2ef880b2000-07-18 21:02:06 +0000356 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000357 matched = 0;
358 while (argc--) {
359 cur_file = *argv++;
360 if(!cur_file || (*cur_file == '-' && !cur_file[1])) {
361 cur_file = "-";
362 file = stdin;
363 } else {
Mark Whitleyd3721892000-06-28 22:00:26 +0000364 file = fopen(cur_file, "r");
Eric Andersen8876fb22003-06-20 09:01:58 +0000365 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000366 if (file == NULL) {
367 if (!suppress_err_msgs)
Manuel Novoa III cad53642003-03-19 09:13:01 +0000368 bb_perror_msg("%s", cur_file);
Eric Andersen8876fb22003-06-20 09:01:58 +0000369 } else {
370 matched += grep_file(file);
371 if(matched < 0) {
372 /* we found a match but were told to be quiet, stop here and
373 * return success */
374 break;
Mark Whitley2ef880b2000-07-18 21:02:06 +0000375 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000376 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000377 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000378 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000379
380#ifdef CONFIG_FEATURE_CLEAN_UP
381 /* destroy all the elments in the pattern list */
382 while (pattern_head) {
383 llist_t *pattern_head_ptr = pattern_head;
384
385 pattern_head = pattern_head->link;
386 free(pattern_head_ptr);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000387 }
Eric Andersen8876fb22003-06-20 09:01:58 +0000388#endif
Mark Whitleyd3721892000-06-28 22:00:26 +0000389
Mark Whitleyb5c29852001-02-01 21:02:41 +0000390 return !matched; /* invert return value 0 = success, 1 = failed */
Eric Andersencc8ed391999-10-05 16:24:54 +0000391}