blob: 475b4ef212c1e79950609fc990331587df785638 [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 Whitley8f122432000-07-18 18:37:01 +000040static int print_count_only = 0;
Mark Whitleyd3721892000-06-28 22:00:26 +000041static int be_quiet = 0;
42static int invert_search = 0;
43static int suppress_err_msgs = 0;
44
Mark Whitley2fd52982001-02-09 00:41:10 +000045#ifdef BB_FEATURE_GREP_CONTEXT
46extern char *optarg; /* in getopt.h */
47static int lines_before = 0;
48static int lines_after = 0;
49static char **before_buf = NULL;
50static int last_line_printed = 0;
51#endif /* BB_FEATURE_GREP_CONTEXT */
52
53/* globals used internally */
Mark Whitleyd3721892000-06-28 22:00:26 +000054static regex_t regex; /* storage space for compiled regular expression */
Matt Kraaideb95f62000-08-06 15:25:53 +000055static int matched; /* keeps track of whether we ever matched */
Mark Whitleyd3721892000-06-28 22:00:26 +000056static char *cur_file = NULL; /* the current file we are reading */
57
Mark Whitley2fd52982001-02-09 00:41:10 +000058static void print_line(const char *line, int linenum, char decoration)
59{
60#ifdef BB_FEATURE_GREP_CONTEXT
61 /* possibly print the little '--' seperator */
62 if (last_line_printed && last_line_printed < linenum - 1) {
63 puts("--");
64 }
65 last_line_printed = linenum;
66#endif
67 if (print_filename)
68 printf("%s%c", cur_file, decoration);
69 if (print_line_num)
70 printf("%i%c", linenum, decoration);
71 puts(line);
72}
Mark Whitleyd3721892000-06-28 22:00:26 +000073
Mark Whitleyd3721892000-06-28 22:00:26 +000074static void grep_file(FILE *file)
75{
76 char *line = NULL;
77 int ret;
78 int linenum = 0;
Matt Kraaideb95f62000-08-06 15:25:53 +000079 int nmatches = 0;
Mark Whitley2fd52982001-02-09 00:41:10 +000080#ifdef BB_FEATURE_GREP_CONTEXT
81 int print_n_lines_after = 0;
82 int curpos = 0; /* track where we are in the circular 'before' buffer */
83 int idx = 0; /* used for iteration through the circular buffer */
84#endif /* BB_FEATURE_GREP_CONTEXT */
Mark Whitleyd3721892000-06-28 22:00:26 +000085
86 while ((line = get_line_from_file(file)) != NULL) {
Matt Kraai05e782d2001-02-01 16:49:30 +000087 chomp(line);
Mark Whitleyd3721892000-06-28 22:00:26 +000088 linenum++;
Mark Whitleyb5c29852001-02-01 21:02:41 +000089
Mark Whitley2fd52982001-02-09 00:41:10 +000090 /*
91 * test for a postitive-assertion match (regexec returns success (0)
Mark Whitleyb5c29852001-02-01 21:02:41 +000092 * and the user did not specify invert search), or a negative-assertion
Mark Whitley2fd52982001-02-09 00:41:10 +000093 * match (regexec returns failure (REG_NOMATCH) and the user specified
94 * invert search)
95 */
96 ret = regexec(&regex, line, 0, NULL, 0);
Mark Whitleyb5c29852001-02-01 21:02:41 +000097 if ((ret == 0 && !invert_search) || (ret == REG_NOMATCH && invert_search)) {
Mark Whitleyd3721892000-06-28 22:00:26 +000098
99 /* if we found a match but were told to be quiet, stop here and
100 * return success */
101 if (be_quiet) {
102 regfree(&regex);
103 exit(0);
104 }
105
Mark Whitley2fd52982001-02-09 00:41:10 +0000106 /* otherwise, keep track of matches and print the matched line */
Mark Whitleyd3721892000-06-28 22:00:26 +0000107 nmatches++;
Mark Whitleyb5c29852001-02-01 21:02:41 +0000108 if (!print_count_only) {
Mark Whitley2fd52982001-02-09 00:41:10 +0000109#ifdef BB_FEATURE_GREP_CONTEXT
110 int prevpos = (curpos == 0) ? lines_before - 1 : curpos - 1;
111
112 /* if we were told to print 'before' lines and there is at least
113 * one line in the circular buffer, print them */
114 if (lines_before && before_buf[prevpos] != NULL)
115 {
116 int first_buf_entry_line_num = linenum - lines_before;
117
118 /* advance to the first entry in the circular buffer, and
119 * figure out the line number is of the first line in the
120 * buffer */
121 idx = curpos;
122 while (before_buf[idx] == NULL) {
123 idx = (idx + 1) % lines_before;
124 first_buf_entry_line_num++;
125 }
126
127 /* now print each line in the buffer, clearing them as we go */
128 while (before_buf[idx] != NULL) {
129 print_line(before_buf[idx], first_buf_entry_line_num, '-');
130 free(before_buf[idx]);
131 before_buf[idx] = NULL;
132 idx = (idx + 1) % lines_before;
133 first_buf_entry_line_num++;
134 }
135
136 }
137
138 /* make a note that we need to print 'after' lines */
139 print_n_lines_after = lines_after;
140#endif /* BB_FEATURE_GREP_CONTEXT */
141 print_line(line, linenum, ':');
Matt Kraai0810f722001-01-04 15:11:52 +0000142 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000143 }
Mark Whitley2fd52982001-02-09 00:41:10 +0000144#ifdef BB_FEATURE_GREP_CONTEXT
145 else { /* no match */
146 /* Add the line to the circular 'before' buffer */
147 if(lines_before)
148 {
149 if(before_buf[curpos])
150 free(before_buf[curpos]);
151 before_buf[curpos] = strdup(line);
152 curpos = (curpos + 1) % lines_before;
153 }
154 }
155
156 /* if we need to print some context lines after the last match, do so */
157 if (print_n_lines_after && (last_line_printed != linenum)) {
158 print_line(line, linenum, '-');
159 print_n_lines_after--;
160 }
161#endif /* BB_FEATURE_GREP_CONTEXT */
Mark Whitleyd3721892000-06-28 22:00:26 +0000162 free(line);
163 }
Mark Whitley8f122432000-07-18 18:37:01 +0000164
165 /* special-case post processing */
166 if (print_count_only) {
167 if (print_filename)
168 printf("%s:", cur_file);
169 printf("%i\n", nmatches);
170 }
171
Mark Whitley2fd52982001-02-09 00:41:10 +0000172 /* remember if we matched */
Matt Kraaideb95f62000-08-06 15:25:53 +0000173 if (nmatches != 0)
174 matched = 1;
Mark Whitleyd3721892000-06-28 22:00:26 +0000175}
Eric Andersencc8ed391999-10-05 16:24:54 +0000176
Erik Andersene49d5ec2000-02-08 19:58:47 +0000177extern int grep_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +0000178{
Mark Whitleyd3721892000-06-28 22:00:26 +0000179 int opt;
180 int reflags;
Mark Whitley2fd52982001-02-09 00:41:10 +0000181#ifdef BB_FEATURE_GREP_CONTEXT
182 char *junk;
183#endif
Eric Andersencc8ed391999-10-05 16:24:54 +0000184
Mark Whitleyd3721892000-06-28 22:00:26 +0000185 /* do normal option parsing */
Mark Whitley2fd52982001-02-09 00:41:10 +0000186 while ((opt = getopt(argc, argv, "iHhnqvsc"
187#ifdef BB_FEATURE_GREP_CONTEXT
188"A:B:C:"
189#endif
190)) > 0) {
Mark Whitleyd3721892000-06-28 22:00:26 +0000191 switch (opt) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000192 case 'i':
Mark Whitleyd3721892000-06-28 22:00:26 +0000193 ignore_case++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000194 break;
Mark Whitleyd3721892000-06-28 22:00:26 +0000195 case 'H':
196 print_filename++;
197 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000198 case 'h':
Mark Whitleyd3721892000-06-28 22:00:26 +0000199 print_filename--;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000200 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000201 case 'n':
Mark Whitleyd3721892000-06-28 22:00:26 +0000202 print_line_num++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000203 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000204 case 'q':
Mark Whitleyd3721892000-06-28 22:00:26 +0000205 be_quiet++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000206 break;
John Beppuf93a95d2000-04-24 18:07:30 +0000207 case 'v':
Mark Whitleyd3721892000-06-28 22:00:26 +0000208 invert_search++;
John Beppuf93a95d2000-04-24 18:07:30 +0000209 break;
Mark Whitleyd3721892000-06-28 22:00:26 +0000210 case 's':
211 suppress_err_msgs++;
212 break;
Mark Whitley8f122432000-07-18 18:37:01 +0000213 case 'c':
214 print_count_only++;
215 break;
Mark Whitley2fd52982001-02-09 00:41:10 +0000216#ifdef BB_FEATURE_GREP_CONTEXT
217 case 'A':
218 lines_after = strtoul(optarg, &junk, 10);
219 if(*junk != '\0')
220 error_msg_and_die("invalid context length argument");
221 break;
222 case 'B':
223 lines_before = strtoul(optarg, &junk, 10);
224 if(*junk != '\0')
225 error_msg_and_die("invalid context length argument");
226 before_buf = (char **)calloc(lines_before, sizeof(char *));
227 break;
228 case 'C':
229 lines_after = lines_before = strtoul(optarg, &junk, 10);
230 if(*junk != '\0')
231 error_msg_and_die("invalid context length argument");
232 before_buf = (char **)calloc(lines_before, sizeof(char *));
233 break;
234#endif /* BB_FEATURE_GREP_CONTEXT */
Eric Andersen053b1462000-06-13 06:24:53 +0000235 }
Eric Andersen053b1462000-06-13 06:24:53 +0000236 }
237
Mark Whitleyd3721892000-06-28 22:00:26 +0000238 /* argv[optind] should be the regex pattern; no pattern, no worky */
239 if (argv[optind] == NULL)
Eric Andersen67991cf2001-02-14 21:23:06 +0000240 show_usage();
Mark Whitleyd3721892000-06-28 22:00:26 +0000241
Mark Whitley2fd52982001-02-09 00:41:10 +0000242 /* sanity check */
243 if (print_count_only || be_quiet) {
244 print_line_num = 0;
245#ifdef BB_FEATURE_GREP_CONTEXT
246 lines_before = 0;
247 lines_after = 0;
248#endif
249 }
250
Mark Whitley44735f82000-07-10 15:50:26 +0000251 /* compile the regular expression
252 * we're not going to mess with sub-expressions, and we need to
253 * treat newlines right. */
Matt Kraai567cdd12000-10-13 18:55:06 +0000254 reflags = REG_NOSUB;
Mark Whitleyd3721892000-06-28 22:00:26 +0000255 if (ignore_case)
256 reflags |= REG_ICASE;
Mark Whitleyc41e8c82000-07-12 23:35:21 +0000257 xregcomp(&regex, argv[optind], reflags);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000258
Mark Whitleyd3721892000-06-28 22:00:26 +0000259 /* argv[(optind+1)..(argc-1)] should be names of file to grep through. If
260 * there is more than one file to grep, we will print the filenames */
261 if ((argc-1) - (optind+1) > 0)
262 print_filename++;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000263
Mark Whitley2e1148b2000-06-28 22:59:30 +0000264 /* If no files were specified, or '-' was specified, take input from
265 * stdin. Otherwise, we grep through all the files specified. */
Mark Whitley8bd891c2000-06-28 22:55:59 +0000266 if (argv[optind+1] == NULL || (strcmp(argv[optind+1], "-") == 0)) {
Mark Whitleyd3721892000-06-28 22:00:26 +0000267 grep_file(stdin);
Mark Whitley2ef880b2000-07-18 21:02:06 +0000268 }
269 else {
Mark Whitleyd3721892000-06-28 22:00:26 +0000270 int i;
271 FILE *file;
272 for (i = optind + 1; i < argc; i++) {
273 cur_file = argv[i];
274 file = fopen(cur_file, "r");
275 if (file == NULL) {
276 if (!suppress_err_msgs)
Matt Kraai1fa1ade2000-12-18 03:57:16 +0000277 perror_msg("%s", cur_file);
Mark Whitley2ef880b2000-07-18 21:02:06 +0000278 }
279 else {
Mark Whitleyd3721892000-06-28 22:00:26 +0000280 grep_file(file);
281 fclose(file);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000282 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000283 }
284 }
Mark Whitleyd3721892000-06-28 22:00:26 +0000285
286 regfree(&regex);
287
Mark Whitleyb5c29852001-02-01 21:02:41 +0000288 return !matched; /* invert return value 0 = success, 1 = failed */
Eric Andersencc8ed391999-10-05 16:24:54 +0000289}