blob: 061462ebcbd763b19a36f4aa7211d2db0d61d570 [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 Andersen8ec10a92001-01-27 09:33:39 +00004 * Copyright (C) 1999,2000,2001 by Lineo, inc.
Mark Whitley6c6ea6c2001-01-04 22:21:13 +00005 * Written by Mark Whitley <markw@lineo.com>, <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 */
22
Eric Andersencc8ed391999-10-05 16:24:54 +000023#include <stdio.h>
Mark Whitleyd3721892000-06-28 22:00:26 +000024#include <stdlib.h>
Eric Andersene9b527a2000-07-09 05:56:14 +000025#include <getopt.h>
Mark Whitleyd3721892000-06-28 22:00:26 +000026#include <regex.h>
27#include <string.h> /* for strerror() */
Eric Andersencc8ed391999-10-05 16:24:54 +000028#include <errno.h>
Eric Andersen3570a342000-09-25 21:45:58 +000029#include "busybox.h"
Mark Whitleyd3721892000-06-28 22:00:26 +000030
Eric Andersened3ef502001-01-27 08:24:39 +000031
Mark Whitleyd3721892000-06-28 22:00:26 +000032extern int optind; /* in unistd.h */
33extern int errno; /* for use with strerror() */
Mark Whitley2fd52982001-02-09 00:41:10 +000034extern void xregcomp(regex_t *preg, const char *regex, int cflags); /* in busybox.h */
Eric Andersencc8ed391999-10-05 16:24:54 +000035
Mark Whitleyd3721892000-06-28 22:00:26 +000036/* options */
37static int ignore_case = 0;
38static int print_filename = 0;
39static int print_line_num = 0;
Mark Whitley35e59be2001-05-14 19:40:32 +000040static int print_match_counts = 0;
Mark Whitleyd3721892000-06-28 22:00:26 +000041static int be_quiet = 0;
42static int invert_search = 0;
43static int suppress_err_msgs = 0;
Mark Whitley35e59be2001-05-14 19:40:32 +000044static int print_files_with_matches = 0;
Mark Whitleyd3721892000-06-28 22:00:26 +000045
Mark Whitley2fd52982001-02-09 00:41:10 +000046#ifdef BB_FEATURE_GREP_CONTEXT
47extern char *optarg; /* in getopt.h */
48static int lines_before = 0;
49static int lines_after = 0;
50static char **before_buf = NULL;
51static int last_line_printed = 0;
52#endif /* BB_FEATURE_GREP_CONTEXT */
53
54/* globals used internally */
Mark Whitleyd3721892000-06-28 22:00:26 +000055static regex_t regex; /* storage space for compiled regular expression */
Matt Kraaideb95f62000-08-06 15:25:53 +000056static int matched; /* keeps track of whether we ever matched */
Mark Whitleyd3721892000-06-28 22:00:26 +000057static char *cur_file = NULL; /* the current file we are reading */
58
Mark Whitley2fd52982001-02-09 00:41:10 +000059static void print_line(const char *line, int linenum, char decoration)
60{
61#ifdef BB_FEATURE_GREP_CONTEXT
62 /* possibly print the little '--' seperator */
63 if (last_line_printed && last_line_printed < linenum - 1) {
64 puts("--");
65 }
66 last_line_printed = linenum;
67#endif
68 if (print_filename)
69 printf("%s%c", cur_file, decoration);
70 if (print_line_num)
71 printf("%i%c", linenum, decoration);
72 puts(line);
73}
Mark Whitleyd3721892000-06-28 22:00:26 +000074
Mark Whitleyd3721892000-06-28 22:00:26 +000075static void grep_file(FILE *file)
76{
77 char *line = NULL;
78 int ret;
79 int linenum = 0;
Matt Kraaideb95f62000-08-06 15:25:53 +000080 int nmatches = 0;
Mark Whitley2fd52982001-02-09 00:41:10 +000081#ifdef BB_FEATURE_GREP_CONTEXT
82 int print_n_lines_after = 0;
83 int curpos = 0; /* track where we are in the circular 'before' buffer */
84 int idx = 0; /* used for iteration through the circular buffer */
85#endif /* BB_FEATURE_GREP_CONTEXT */
Mark Whitleyd3721892000-06-28 22:00:26 +000086
87 while ((line = get_line_from_file(file)) != NULL) {
Matt Kraai05e782d2001-02-01 16:49:30 +000088 chomp(line);
Mark Whitleyd3721892000-06-28 22:00:26 +000089 linenum++;
Mark Whitleyb5c29852001-02-01 21:02:41 +000090
Mark Whitley2fd52982001-02-09 00:41:10 +000091 /*
92 * test for a postitive-assertion match (regexec returns success (0)
Mark Whitleyb5c29852001-02-01 21:02:41 +000093 * and the user did not specify invert search), or a negative-assertion
Mark Whitley2fd52982001-02-09 00:41:10 +000094 * match (regexec returns failure (REG_NOMATCH) and the user specified
95 * invert search)
96 */
97 ret = regexec(&regex, line, 0, NULL, 0);
Mark Whitleyb5c29852001-02-01 21:02:41 +000098 if ((ret == 0 && !invert_search) || (ret == REG_NOMATCH && invert_search)) {
Mark Whitleyd3721892000-06-28 22:00:26 +000099
100 /* if we found a match but were told to be quiet, stop here and
101 * return success */
102 if (be_quiet) {
103 regfree(&regex);
104 exit(0);
105 }
106
Mark Whitley1d9d4112001-05-21 21:13:00 +0000107 /* keep track of matches */
Mark Whitleyd3721892000-06-28 22:00:26 +0000108 nmatches++;
Mark Whitley1d9d4112001-05-21 21:13:00 +0000109
110 /* if we're just printing filenames, we stop after the first match */
111 if (print_files_with_matches)
112 break;
113
114 /* print the matched line */
115 if (print_match_counts == 0) {
Mark Whitley2fd52982001-02-09 00:41:10 +0000116#ifdef BB_FEATURE_GREP_CONTEXT
117 int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
118
119 /* if we were told to print 'before' lines and there is at least
120 * one line in the circular buffer, print them */
Mark Whitley59a86ca2001-04-17 17:30:44 +0000121 if (lines_before && before_buf[prevpos] != NULL) {
Mark Whitley2fd52982001-02-09 00:41:10 +0000122 int first_buf_entry_line_num = linenum - lines_before;
123
124 /* advance to the first entry in the circular buffer, and
125 * figure out the line number is of the first line in the
126 * buffer */
127 idx = curpos;
128 while (before_buf[idx] == NULL) {
129 idx = (idx + 1) % lines_before;
130 first_buf_entry_line_num++;
131 }
132
133 /* now print each line in the buffer, clearing them as we go */
134 while (before_buf[idx] != NULL) {
135 print_line(before_buf[idx], first_buf_entry_line_num, '-');
136 free(before_buf[idx]);
137 before_buf[idx] = NULL;
138 idx = (idx + 1) % lines_before;
139 first_buf_entry_line_num++;
140 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000141 }
142
143 /* make a note that we need to print 'after' lines */
144 print_n_lines_after = lines_after;
145#endif /* BB_FEATURE_GREP_CONTEXT */
146 print_line(line, linenum, ':');
Matt Kraai0810f722001-01-04 15:11:52 +0000147 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000148 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000149#ifdef BB_FEATURE_GREP_CONTEXT
150 else { /* no match */
151 /* Add the line to the circular 'before' buffer */
Mark Whitley59a86ca2001-04-17 17:30:44 +0000152 if(lines_before) {
Mark Whitley2fd52982001-02-09 00:41:10 +0000153 if(before_buf[curpos])
154 free(before_buf[curpos]);
155 before_buf[curpos] = strdup(line);
156 curpos = (curpos + 1) % lines_before;
157 }
158 }
159
160 /* if we need to print some context lines after the last match, do so */
161 if (print_n_lines_after && (last_line_printed != linenum)) {
162 print_line(line, linenum, '-');
163 print_n_lines_after--;
164 }
165#endif /* BB_FEATURE_GREP_CONTEXT */
Mark Whitleyd3721892000-06-28 22:00:26 +0000166 free(line);
167 }
Mark Whitley8f122432000-07-18 18:37:01 +0000168
Mark Whitley35e59be2001-05-14 19:40:32 +0000169
170 /* special-case file post-processing for options where we don't print line
Mark Whitley1d9d4112001-05-21 21:13:00 +0000171 * matches, just filenames and possibly match counts */
Mark Whitley35e59be2001-05-14 19:40:32 +0000172
Mark Whitley1d9d4112001-05-21 21:13:00 +0000173 /* grep -c: print [filename:]count, even if count is zero */
Mark Whitley35e59be2001-05-14 19:40:32 +0000174 if (print_match_counts) {
Mark Whitley1d9d4112001-05-21 21:13:00 +0000175 if (print_filename)
176 printf("%s:", cur_file);
177 printf("%d\n", nmatches);
Mark Whitley35e59be2001-05-14 19:40:32 +0000178 }
Mark Whitley1d9d4112001-05-21 21:13:00 +0000179
180 /* grep -l: print just the filename, but only if we grepped the line in the file */
181 if (print_files_with_matches && nmatches > 0) {
Matt Kraai59df6f72001-05-16 14:21:09 +0000182 puts(cur_file);
Mark Whitley35e59be2001-05-14 19:40:32 +0000183 }
184
Mark Whitley8f122432000-07-18 18:37:01 +0000185
Mark Whitley2fd52982001-02-09 00:41:10 +0000186 /* remember if we matched */
Matt Kraaideb95f62000-08-06 15:25:53 +0000187 if (nmatches != 0)
188 matched = 1;
Mark Whitleyd3721892000-06-28 22:00:26 +0000189}
Eric Andersencc8ed391999-10-05 16:24:54 +0000190
Erik Andersene49d5ec2000-02-08 19:58:47 +0000191extern int grep_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000192{
Mark Whitleyd3721892000-06-28 22:00:26 +0000193 int opt;
194 int reflags;
Mark Whitley2fd52982001-02-09 00:41:10 +0000195#ifdef BB_FEATURE_GREP_CONTEXT
196 char *junk;
197#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000198
Mark Whitleyd3721892000-06-28 22:00:26 +0000199 /* do normal option parsing */
Eric Andersen303dd282001-04-09 23:26:31 +0000200 while ((opt = getopt(argc, argv, "iHhlnqvsc"
Mark Whitley2fd52982001-02-09 00:41:10 +0000201#ifdef BB_FEATURE_GREP_CONTEXT
202"A:B:C:"
203#endif
204)) > 0) {
Mark Whitleyd3721892000-06-28 22:00:26 +0000205 switch (opt) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000206 case 'i':
Mark Whitleyd3721892000-06-28 22:00:26 +0000207 ignore_case++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000208 break;
Eric Andersen303dd282001-04-09 23:26:31 +0000209 case 'l':
Mark Whitley35e59be2001-05-14 19:40:32 +0000210 print_files_with_matches++;
Eric Andersen303dd282001-04-09 23:26:31 +0000211 break;
Mark Whitleyd3721892000-06-28 22:00:26 +0000212 case 'H':
213 print_filename++;
214 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000215 case 'h':
Mark Whitleyd3721892000-06-28 22:00:26 +0000216 print_filename--;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000217 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000218 case 'n':
Mark Whitleyd3721892000-06-28 22:00:26 +0000219 print_line_num++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000220 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000221 case 'q':
Mark Whitleyd3721892000-06-28 22:00:26 +0000222 be_quiet++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000223 break;
John Beppuf93a95d2000-04-24 18:07:30 +0000224 case 'v':
Mark Whitleyd3721892000-06-28 22:00:26 +0000225 invert_search++;
John Beppuf93a95d2000-04-24 18:07:30 +0000226 break;
Mark Whitleyd3721892000-06-28 22:00:26 +0000227 case 's':
228 suppress_err_msgs++;
229 break;
Mark Whitley8f122432000-07-18 18:37:01 +0000230 case 'c':
Mark Whitley35e59be2001-05-14 19:40:32 +0000231 print_match_counts++;
Mark Whitley8f122432000-07-18 18:37:01 +0000232 break;
Mark Whitley2fd52982001-02-09 00:41:10 +0000233#ifdef BB_FEATURE_GREP_CONTEXT
234 case 'A':
235 lines_after = strtoul(optarg, &junk, 10);
236 if(*junk != '\0')
237 error_msg_and_die("invalid context length argument");
238 break;
239 case 'B':
240 lines_before = strtoul(optarg, &junk, 10);
241 if(*junk != '\0')
242 error_msg_and_die("invalid context length argument");
243 before_buf = (char **)calloc(lines_before, sizeof(char *));
244 break;
245 case 'C':
246 lines_after = lines_before = strtoul(optarg, &junk, 10);
247 if(*junk != '\0')
248 error_msg_and_die("invalid context length argument");
249 before_buf = (char **)calloc(lines_before, sizeof(char *));
250 break;
251#endif /* BB_FEATURE_GREP_CONTEXT */
Mark Whitley4391a162001-04-09 23:00:07 +0000252 default:
253 show_usage();
Eric Andersen053b1462000-06-13 06:24:53 +0000254 }
Eric Andersen053b1462000-06-13 06:24:53 +0000255 }
256
Mark Whitleyd3721892000-06-28 22:00:26 +0000257 /* argv[optind] should be the regex pattern; no pattern, no worky */
258 if (argv[optind] == NULL)
Eric Andersen67991cf2001-02-14 21:23:06 +0000259 show_usage();
Mark Whitleyd3721892000-06-28 22:00:26 +0000260
Mark Whitley2fd52982001-02-09 00:41:10 +0000261 /* sanity check */
Mark Whitley35e59be2001-05-14 19:40:32 +0000262 if (print_match_counts || be_quiet || print_files_with_matches) {
Mark Whitley2fd52982001-02-09 00:41:10 +0000263 print_line_num = 0;
264#ifdef BB_FEATURE_GREP_CONTEXT
265 lines_before = 0;
266 lines_after = 0;
267#endif
268 }
269
Mark Whitley44735f82000-07-10 15:50:26 +0000270 /* compile the regular expression
271 * we're not going to mess with sub-expressions, and we need to
272 * treat newlines right. */
Matt Kraai567cdd12000-10-13 18:55:06 +0000273 reflags = REG_NOSUB;
Mark Whitleyd3721892000-06-28 22:00:26 +0000274 if (ignore_case)
275 reflags |= REG_ICASE;
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000276 xregcomp(&regex, argv[optind], reflags);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000277
Mark Whitleyd3721892000-06-28 22:00:26 +0000278 /* argv[(optind+1)..(argc-1)] should be names of file to grep through. If
279 * there is more than one file to grep, we will print the filenames */
280 if ((argc-1) - (optind+1) > 0)
281 print_filename++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000282
Mark Whitley2e1148b2000-06-28 22:59:30 +0000283 /* If no files were specified, or '-' was specified, take input from
284 * stdin. Otherwise, we grep through all the files specified. */
Mark Whitley8bd891c2000-06-28 22:55:59 +0000285 if (argv[optind+1] == NULL || (strcmp(argv[optind+1], "-") == 0)) {
Mark Whitleyd3721892000-06-28 22:00:26 +0000286 grep_file(stdin);
Mark Whitley2ef880b2000-07-18 21:02:06 +0000287 }
288 else {
Mark Whitleyd3721892000-06-28 22:00:26 +0000289 int i;
290 FILE *file;
291 for (i = optind + 1; i < argc; i++) {
292 cur_file = argv[i];
293 file = fopen(cur_file, "r");
294 if (file == NULL) {
295 if (!suppress_err_msgs)
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000296 perror_msg("%s", cur_file);
Mark Whitley2ef880b2000-07-18 21:02:06 +0000297 }
298 else {
Mark Whitleyd3721892000-06-28 22:00:26 +0000299 grep_file(file);
300 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000301 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000302 }
303 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000304
305 regfree(&regex);
306
Mark Whitleyb5c29852001-02-01 21:02:41 +0000307 return !matched; /* invert return value 0 = success, 1 = failed */
Eric Andersencc8ed391999-10-05 16:24:54 +0000308}