1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2005 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
/* Copyright (c) 1987, 1988 Microsoft Corporation */
/* All Rights Reserved */
/* Copyright 2012 Nexenta Systems, Inc. All rights reserved. */
/*
* grep -- print lines matching (or not matching) a pattern
*
* status returns:
* 0 - ok, and some matches
* 1 - ok, but no matches
* 2 - some error
*/
#include <sys/types.h>
#include <ctype.h>
#include <fcntl.h>
#include <locale.h>
#include <memory.h>
#include <regexpr.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
static const char *errstr[] = {
"Range endpoint too large.",
"Bad number.",
"``\\digit'' out of range.",
"No remembered search string.",
"\\( \\) imbalance.",
"Too many \\(.",
"More than 2 numbers given in \\{ \\}.",
"} expected after \\.",
"First number exceeds second in \\{ \\}.",
"[ ] imbalance.",
"Regular expression overflow.",
"Illegal byte sequence.",
"Unknown regexp error code!!",
NULL
};
#define errmsg(msg, arg) (void) fprintf(stderr, gettext(msg), arg)
#define BLKSIZE 512
#define GBUFSIZ 8192
static int temp;
static long long lnum;
static char *linebuf;
static char *prntbuf = NULL;
static long fw_lPrntBufLen = 0;
static int nflag;
static int bflag;
static int lflag;
static int cflag;
static int vflag;
static int sflag;
static int iflag;
static int wflag;
static int hflag;
static int qflag;
static int errflg;
static int nfile;
static long long tln;
static int nsucc;
static int nlflag;
static char *ptr, *ptrend;
static char *expbuf;
static void execute(char *);
static void regerr(int);
static int succeed(char *);
int
main(int argc, char **argv)
{
int c;
char *arg;
extern int optind;
(void) setlocale(LC_ALL, "");
#if !defined(TEXT_DOMAIN) /* Should be defined by cc -D */
#define TEXT_DOMAIN "SYS_TEST" /* Use this only if it weren't */
#endif
(void) textdomain(TEXT_DOMAIN);
while ((c = getopt(argc, argv, "hqblcnsviyw")) != -1)
switch (c) {
case 'h':
hflag++;
break;
case 'q': /* POSIX: quiet: status only */
qflag++;
break;
case 'v':
vflag++;
break;
case 'c':
cflag++;
break;
case 'n':
nflag++;
break;
case 'b':
bflag++;
break;
case 's':
sflag++;
break;
case 'l':
lflag++;
break;
case 'y':
case 'i':
iflag++;
break;
case 'w':
wflag++;
break;
case '?':
errflg++;
}
if (errflg || (optind >= argc)) {
errmsg("Usage: grep [-c|-l|-q] -hbnsviw pattern file . . .\n",
(char *)NULL);
exit(2);
}
argv = &argv[optind];
argc -= optind;
nfile = argc - 1;
if (strrchr(*argv, '\n') != NULL)
regerr(41);
if (iflag) {
for (arg = *argv; *arg != NULL; ++arg)
*arg = (char)tolower((int)((unsigned char)*arg));
}
if (wflag) {
unsigned int wordlen;
char *wordbuf;
wordlen = strlen(*argv) + 5; /* '\\' '<' *argv '\\' '>' '\0' */
if ((wordbuf = malloc(wordlen)) == NULL) {
errmsg("grep: Out of memory for word\n", (char *)NULL);
exit(2);
}
(void) strcpy(wordbuf, "\\<");
(void) strcat(wordbuf, *argv);
(void) strcat(wordbuf, "\\>");
*argv = wordbuf;
}
expbuf = compile(*argv, (char *)0, (char *)0);
if (regerrno)
regerr(regerrno);
if (--argc == 0)
execute(NULL);
else
while (argc-- > 0)
execute(*++argv);
return (nsucc == 2 ? 2 : (nsucc == 0 ? 1 : 0));
}
static void
execute(char *file)
{
char *lbuf, *p;
long count;
long offset = 0;
char *next_ptr = NULL;
long next_count = 0;
tln = 0;
if (prntbuf == NULL) {
fw_lPrntBufLen = GBUFSIZ + 1;
if ((prntbuf = malloc(fw_lPrntBufLen)) == NULL) {
exit(2); /* out of memory - BAIL */
}
if ((linebuf = malloc(fw_lPrntBufLen)) == NULL) {
exit(2); /* out of memory - BAIL */
}
}
if (file == NULL)
temp = 0;
else if ((temp = open(file, O_RDONLY)) == -1) {
if (!sflag)
errmsg("grep: can't open %s\n", file);
nsucc = 2;
return;
}
/* read in first block of bytes */
if ((count = read(temp, prntbuf, GBUFSIZ)) <= 0) {
(void) close(temp);
if (cflag && !qflag) {
if (nfile > 1 && !hflag && file)
(void) fprintf(stdout, "%s:", file);
(void) fprintf(stdout, "%lld\n", tln);
}
return;
}
lnum = 0;
ptr = prntbuf;
for (;;) {
/* look for next newline */
if ((ptrend = memchr(ptr + offset, '\n', count)) == NULL) {
offset += count;
/*
* shift unused data to the beginning of the buffer
*/
if (ptr > prntbuf) {
(void) memmove(prntbuf, ptr, offset);
ptr = prntbuf;
}
/*
* re-allocate a larger buffer if this one is full
*/
if (offset + GBUFSIZ > fw_lPrntBufLen) {
/*
* allocate a new buffer and preserve the
* contents...
*/
fw_lPrntBufLen += GBUFSIZ;
if ((prntbuf = realloc(prntbuf,
fw_lPrntBufLen)) == NULL)
exit(2);
/*
* set up a bigger linebuffer (this is only used
* for case insensitive operations). Contents do
* not have to be preserved.
*/
free(linebuf);
if ((linebuf = malloc(fw_lPrntBufLen)) == NULL)
exit(2);
ptr = prntbuf;
}
p = prntbuf + offset;
if ((count = read(temp, p, GBUFSIZ)) > 0)
continue;
if (offset == 0)
/* end of file already reached */
break;
/* last line of file has no newline */
ptrend = ptr + offset;
nlflag = 0;
} else {
next_ptr = ptrend + 1;
next_count = offset + count - (next_ptr - ptr);
nlflag = 1;
}
lnum++;
*ptrend = '\0';
if (iflag) {
/*
* Make a lower case copy of the record
*/
p = ptr;
for (lbuf = linebuf; p < ptrend; )
*lbuf++ = (char)tolower((int)
(unsigned char)*p++);
*lbuf = '\0';
lbuf = linebuf;
} else
/*
* Use record as is
*/
lbuf = ptr;
/* lflag only once */
if ((step(lbuf, expbuf) ^ vflag) && succeed(file) == 1)
break;
if (!nlflag)
break;
ptr = next_ptr;
count = next_count;
offset = 0;
}
(void) close(temp);
if (cflag && !qflag) {
if (nfile > 1 && !hflag && file)
(void) fprintf(stdout, "%s:", file);
(void) fprintf(stdout, "%lld\n", tln);
}
}
static int
succeed(char *f)
{
int nchars;
nsucc = (nsucc == 2) ? 2 : 1;
if (f == NULL)
f = "<stdin>";
if (qflag) {
/* no need to continue */
return (1);
}
if (cflag) {
tln++;
return (0);
}
if (lflag) {
(void) fprintf(stdout, "%s\n", f);
return (1);
}
if (nfile > 1 && !hflag)
/* print filename */
(void) fprintf(stdout, "%s:", f);
if (bflag)
/* print block number */
(void) fprintf(stdout, "%lld:", (offset_t)
((lseek(temp, (off_t)0, SEEK_CUR) - 1) / BLKSIZE));
if (nflag)
/* print line number */
(void) fprintf(stdout, "%lld:", lnum);
if (nlflag) {
/* newline at end of line */
*ptrend = '\n';
nchars = ptrend - ptr + 1;
} else {
/* don't write sentinel \0 */
nchars = ptrend - ptr;
}
(void) fwrite(ptr, 1, nchars, stdout);
return (0);
}
static void
regerr(int err)
{
errmsg("grep: RE error %d: ", err);
switch (err) {
case 11:
err = 0;
break;
case 16:
err = 1;
break;
case 25:
err = 2;
break;
case 41:
err = 3;
break;
case 42:
err = 4;
break;
case 43:
err = 5;
break;
case 44:
err = 6;
break;
case 45:
err = 7;
break;
case 46:
err = 8;
break;
case 49:
err = 9;
break;
case 50:
err = 10;
break;
case 67:
err = 11;
break;
default:
err = 12;
break;
}
errmsg("%s\n", gettext(errstr[err]));
exit(2);
}
|