[BACK]Return to util.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / grep

Annotation of src/usr.bin/grep/util.c, Revision 1.65

1.65    ! dv          1: /*     $OpenBSD: util.c,v 1.64 2021/12/28 16:27:53 otto Exp $  */
1.3       deraadt     2:
1.1       deraadt     3: /*-
                      4:  * Copyright (c) 1999 James Howard and Dag-Erling Coïdan Smørgrav
                      5:  * All rights reserved.
                      6:  *
                      7:  * Redistribution and use in source and binary forms, with or without
                      8:  * modification, are permitted provided that the following conditions
                      9:  * are met:
                     10:  * 1. Redistributions of source code must retain the above copyright
                     11:  *    notice, this list of conditions and the following disclaimer.
                     12:  * 2. Redistributions in binary form must reproduce the above copyright
                     13:  *    notice, this list of conditions and the following disclaimer in the
                     14:  *    documentation and/or other materials provided with the distribution.
                     15:  *
                     16:  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
                     17:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     18:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     19:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
                     20:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     21:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     22:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     23:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     24:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     25:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     26:  * SUCH DAMAGE.
                     27:  */
                     28:
                     29: #include <sys/types.h>
                     30: #include <sys/stat.h>
                     31:
                     32: #include <ctype.h>
                     33: #include <err.h>
                     34: #include <errno.h>
                     35: #include <fts.h>
                     36: #include <regex.h>
1.53      millert    37: #include <stdbool.h>
1.1       deraadt    38: #include <stdio.h>
                     39: #include <stdlib.h>
                     40: #include <string.h>
                     41: #include <unistd.h>
                     42: #include <zlib.h>
                     43:
                     44: #include "grep.h"
                     45:
                     46: /*
                     47:  * Process a file line by line...
                     48:  */
                     49:
                     50: static int     linesqueued;
1.4       tedu       51: static int     procline(str_t *l, int);
1.56      tedu       52: static int     grep_search(fastgrep_t *, char *, size_t, regmatch_t *pmatch, int);
1.39      tedu       53: #ifndef SMALL
1.53      millert    54: static bool    grep_cmp(const char *, const char *, size_t);
1.6       tedu       55: static void    grep_revstr(unsigned char *, int);
1.39      tedu       56: #endif
1.1       deraadt    57:
1.2       deraadt    58: int
1.1       deraadt    59: grep_tree(char **argv)
                     60: {
1.10      deraadt    61:        FTS     *fts;
                     62:        FTSENT  *p;
                     63:        int     c, fts_flags;
1.62      jca        64:        char    *dot_argv[] = { ".", NULL };
                     65:        char    *path;
                     66:
                     67:        /* default to . if no path given */
                     68:        if (argv[0] == NULL)
                     69:                argv = dot_argv;
1.1       deraadt    70:
1.37      tedu       71:        c = 0;
1.1       deraadt    72:
1.37      tedu       73:        fts_flags = FTS_PHYSICAL | FTS_NOSTAT | FTS_NOCHDIR;
1.1       deraadt    74:
1.11      millert    75:        if (!(fts = fts_open(argv, fts_flags, NULL)))
1.14      millert    76:                err(2, NULL);
1.1       deraadt    77:        while ((p = fts_read(fts)) != NULL) {
                     78:                switch (p->fts_info) {
                     79:                case FTS_DNR:
                     80:                        break;
                     81:                case FTS_ERR:
1.45      millert    82:                        file_err = 1;
                     83:                        if(!sflag)
1.48      guenther   84:                                warnc(p->fts_errno, "%s", p->fts_path);
1.1       deraadt    85:                        break;
1.59      tedu       86:                case FTS_D:
1.1       deraadt    87:                case FTS_DP:
                     88:                        break;
                     89:                default:
1.62      jca        90:                        path = p->fts_path;
                     91:                        /* skip "./" if implied */
                     92:                        if (argv == dot_argv && p->fts_pathlen >= 2)
                     93:                                path += 2;
1.63      martijn    94:                        c |= procfile(path);
1.1       deraadt    95:                        break;
                     96:                }
                     97:        }
1.34      otto       98:        if (errno)
                     99:                err(2, "fts_read");
1.50      uebayasi  100:        fts_close(fts);
1.1       deraadt   101:        return c;
                    102: }
                    103:
                    104: int
                    105: procfile(char *fn)
                    106: {
                    107:        str_t ln;
                    108:        file_t *f;
1.63      martijn   109:        int t, z, nottext, overflow = 0;
                    110:        unsigned long long c;
1.1       deraadt   111:
1.58      pirofti   112:        mcount = mlimit;
                    113:
1.1       deraadt   114:        if (fn == NULL) {
                    115:                fn = "(standard input)";
1.59      tedu      116:                f = grep_fdopen(STDIN_FILENO);
1.1       deraadt   117:        } else {
1.59      tedu      118:                f = grep_open(fn);
1.1       deraadt   119:        }
                    120:        if (f == NULL) {
1.59      tedu      121:                if (errno == EISDIR)
                    122:                        return 0;
1.45      millert   123:                file_err = 1;
1.1       deraadt   124:                if (!sflag)
                    125:                        warn("%s", fn);
                    126:                return 0;
                    127:        }
1.4       tedu      128:
                    129:        nottext = grep_bin_file(f);
                    130:        if (nottext && binbehave == BIN_FILE_SKIP) {
1.1       deraadt   131:                grep_close(f);
                    132:                return 0;
                    133:        }
                    134:
                    135:        ln.file = fn;
1.61      tedu      136:        if (labelname)
                    137:                ln.file = (char *)labelname;
1.1       deraadt   138:        ln.line_no = 0;
1.20      espie     139:        ln.len = 0;
1.1       deraadt   140:        linesqueued = 0;
1.33      jaredy    141:        tail = 0;
1.1       deraadt   142:        ln.off = -1;
                    143:
                    144:        if (Bflag > 0)
                    145:                initqueue();
1.27      otto      146:        for (c = 0;  c == 0 || !(lflag || qflag); ) {
1.58      pirofti   147:                if (mflag && mlimit == 0)
                    148:                        break;
1.1       deraadt   149:                ln.off += ln.len + 1;
                    150:                if ((ln.dat = grep_fgetln(f, &ln.len)) == NULL)
                    151:                        break;
                    152:                if (ln.len > 0 && ln.dat[ln.len - 1] == '\n')
                    153:                        --ln.len;
                    154:                ln.line_no++;
                    155:
                    156:                z = tail;
1.2       deraadt   157:
1.4       tedu      158:                if ((t = procline(&ln, nottext)) == 0 && Bflag > 0 && z == 0) {
1.1       deraadt   159:                        enqueue(&ln);
                    160:                        linesqueued++;
                    161:                }
1.63      martijn   162:                if (ULLONG_MAX - c < (unsigned long long)t)
                    163:                        overflow = 1;
                    164:                else
                    165:                        c += t;
1.65    ! dv        166:                if (mflag && mcount <= 0 && tail <= 0)
1.58      pirofti   167:                        break;
1.1       deraadt   168:        }
                    169:        if (Bflag > 0)
                    170:                clearqueue();
                    171:        grep_close(f);
                    172:
                    173:        if (cflag) {
                    174:                if (!hflag)
                    175:                        printf("%s:", ln.file);
1.63      martijn   176:                printf("%llu%s\n", c, overflow ? "+" : "");
1.1       deraadt   177:        }
                    178:        if (lflag && c != 0)
                    179:                printf("%s\n", fn);
                    180:        if (Lflag && c == 0)
                    181:                printf("%s\n", fn);
1.4       tedu      182:        if (c && !cflag && !lflag && !Lflag &&
1.7       tedu      183:            binbehave == BIN_FILE_BIN && nottext && !qflag)
1.4       tedu      184:                printf("Binary file %s matches\n", fn);
                    185:
1.63      martijn   186:        return overflow || c != 0;
1.1       deraadt   187: }
                    188:
                    189:
                    190: /*
                    191:  * Process an individual line in a file. Return non-zero if it matches.
                    192:  */
                    193:
1.47      deraadt   194: #define isword(x) (isalnum((unsigned char)x) || (x) == '_')
1.1       deraadt   195:
                    196: static int
1.4       tedu      197: procline(str_t *l, int nottext)
1.1       deraadt   198: {
1.57      tedu      199:        regmatch_t      pmatch = { 0 };
1.15      dhartmei  200:        int             c, i, r;
1.42      aschrijv  201:        regoff_t        offset;
                    202:
                    203:        /* size_t will be converted to regoff_t. ssize_t is guaranteed to fit
                    204:         * into regoff_t */
                    205:        if (l->len > SSIZE_MAX) {
                    206:                errx(2, "Line is too big to process");
                    207:        }
1.1       deraadt   208:
1.40      tedu      209:        c = 0;
                    210:        i = 0;
1.1       deraadt   211:        if (matchall) {
1.41      tedu      212:                c = 1;
1.1       deraadt   213:                goto print;
                    214:        }
1.65    ! dv        215:        if (mflag && mcount <= 0)
        !           216:                goto print;
1.2       deraadt   217:
1.40      tedu      218:        for (i = 0; i < patterns; i++) {
                    219:                offset = 0;
                    220: redo:
1.22      millert   221:                if (fg_pattern[i].pattern) {
1.56      tedu      222:                        int flags = 0;
                    223:                        if (offset)
                    224:                                flags |= REG_NOTBOL;
1.40      tedu      225:                        r = grep_search(&fg_pattern[i], l->dat + offset,
1.56      tedu      226:                            l->len - offset, &pmatch, flags);
1.40      tedu      227:                        pmatch.rm_so += offset;
                    228:                        pmatch.rm_eo += offset;
1.22      millert   229:                } else {
1.56      tedu      230:                        int flags = eflags;
                    231:                        if (offset)
                    232:                                flags |= REG_NOTBOL;
1.40      tedu      233:                        pmatch.rm_so = offset;
1.43      otto      234:                        pmatch.rm_eo = l->len;
1.56      tedu      235:                        r = regexec(&r_pattern[i], l->dat, 1, &pmatch, flags);
1.22      millert   236:                }
                    237:                if (r == 0 && xflag) {
                    238:                        if (pmatch.rm_so != 0 || pmatch.rm_eo != l->len)
                    239:                                r = REG_NOMATCH;
1.1       deraadt   240:                }
1.15      dhartmei  241:                if (r == 0) {
1.40      tedu      242:                        c = 1;
1.44      millert   243:                        if (oflag && pmatch.rm_so != pmatch.rm_eo)
1.40      tedu      244:                                goto print;
1.1       deraadt   245:                        break;
                    246:                }
                    247:        }
1.40      tedu      248:        if (oflag)
                    249:                return c;
                    250: print:
1.15      dhartmei  251:        if (vflag)
                    252:                c = !c;
1.58      pirofti   253:
                    254:        /* Count the matches if we have a match limit */
                    255:        if (mflag)
                    256:                mcount -= c;
1.2       deraadt   257:
1.4       tedu      258:        if (c && binbehave == BIN_FILE_BIN && nottext)
                    259:                return c; /* Binary file */
                    260:
1.1       deraadt   261:        if ((tail > 0 || c) && !cflag && !qflag) {
                    262:                if (c) {
1.64      otto      263:                        if (first > 0 && tail == 0 && (Aflag || (Bflag &&
                    264:                            Bflag < linesqueued)))
1.1       deraadt   265:                                printf("--\n");
                    266:                        first = 1;
                    267:                        tail = Aflag;
                    268:                        if (Bflag > 0)
                    269:                                printqueue();
                    270:                        linesqueued = 0;
1.40      tedu      271:                        printline(l, ':', oflag ? &pmatch : NULL);
1.1       deraadt   272:                } else {
1.40      tedu      273:                        printline(l, '-', oflag ? &pmatch : NULL);
1.1       deraadt   274:                        tail--;
                    275:                }
                    276:        }
1.40      tedu      277:        if (oflag && !matchall) {
                    278:                offset = pmatch.rm_eo;
                    279:                goto redo;
                    280:        }
1.1       deraadt   281:        return c;
                    282: }
                    283:
1.39      tedu      284: #ifndef SMALL
1.31      otto      285: void
1.47      deraadt   286: fgrepcomp(fastgrep_t *fg, const unsigned char *pattern)
1.25      millert   287: {
                    288:        int i;
                    289:
                    290:        /* Initialize. */
                    291:        fg->patternLen = strlen(pattern);
                    292:        fg->bol = 0;
                    293:        fg->eol = 0;
                    294:        fg->wmatch = wflag;
                    295:        fg->reversedSearch = 0;
                    296:
                    297:        /*
                    298:         * Make a copy and upper case it for later if in -i mode,
                    299:         * else just copy the pointer.
                    300:         */
                    301:        if (iflag) {
                    302:                fg->pattern = grep_malloc(fg->patternLen + 1);
                    303:                for (i = 0; i < fg->patternLen; i++)
                    304:                        fg->pattern[i] = toupper(pattern[i]);
                    305:                fg->pattern[fg->patternLen] = '\0';
                    306:        } else
1.28      deraadt   307:                fg->pattern = (unsigned char *)pattern; /* really const */
1.25      millert   308:
                    309:        /* Preprocess pattern. */
                    310:        for (i = 0; i <= UCHAR_MAX; i++)
                    311:                fg->qsBc[i] = fg->patternLen;
                    312:        for (i = 1; i < fg->patternLen; i++) {
                    313:                fg->qsBc[fg->pattern[i]] = fg->patternLen - i;
                    314:                /*
                    315:                 * If case is ignored, make the jump apply to both upper and
                    316:                 * lower cased characters.  As the pattern is stored in upper
                    317:                 * case, apply the same to the lower case equivalents.
                    318:                 */
                    319:                if (iflag)
                    320:                        fg->qsBc[tolower(fg->pattern[i])] = fg->patternLen - i;
                    321:        }
                    322: }
1.39      tedu      323: #endif
1.25      millert   324:
                    325: /*
                    326:  * Returns: -1 on failure, 0 on success
                    327:  */
                    328: int
1.6       tedu      329: fastcomp(fastgrep_t *fg, const char *pattern)
                    330: {
1.39      tedu      331: #ifdef SMALL
                    332:        return -1;
                    333: #else
1.6       tedu      334:        int i;
                    335:        int bol = 0;
                    336:        int eol = 0;
                    337:        int shiftPatternLen;
                    338:        int hasDot = 0;
                    339:        int firstHalfDot = -1;
                    340:        int firstLastHalfDot = -1;
                    341:        int lastHalfDot = 0;
                    342:
                    343:        /* Initialize. */
1.28      deraadt   344:        fg->patternLen = strlen(pattern);
1.6       tedu      345:        fg->bol = 0;
                    346:        fg->eol = 0;
1.22      millert   347:        fg->wmatch = 0;
1.6       tedu      348:        fg->reversedSearch = 0;
                    349:
                    350:        /* Remove end-of-line character ('$'). */
1.38      eric      351:        if (fg->patternLen > 0 && pattern[fg->patternLen - 1] == '$') {
1.6       tedu      352:                eol++;
                    353:                fg->eol = 1;
                    354:                fg->patternLen--;
                    355:        }
                    356:
                    357:        /* Remove beginning-of-line character ('^'). */
                    358:        if (pattern[0] == '^') {
                    359:                bol++;
                    360:                fg->bol = 1;
                    361:                fg->patternLen--;
                    362:        }
                    363:
1.22      millert   364:        /* Remove enclosing [[:<:]] and [[:>:]] (word match). */
1.30      otto      365:        if (wflag) {
                    366:                /* basic re's use \( \), extended re's ( ) */
                    367:                int extra = Eflag ? 1 : 2;
                    368:                fg->patternLen -= 14 + 2 * extra;
                    369:                fg->wmatch = 7 + extra;
                    370:        } else if (fg->patternLen >= 14 &&
1.22      millert   371:            strncmp(pattern + fg->bol, "[[:<:]]", 7) == 0 &&
1.24      millert   372:            strncmp(pattern + fg->bol + fg->patternLen - 7, "[[:>:]]", 7) == 0) {
1.22      millert   373:                fg->patternLen -= 14;
                    374:                fg->wmatch = 7;
                    375:        }
                    376:
1.6       tedu      377:        /*
1.22      millert   378:         * Copy pattern minus '^' and '$' characters as well as word
                    379:         * match character classes at the beginning and ending of the
                    380:         * string respectively.
1.6       tedu      381:         */
1.22      millert   382:        fg->pattern = grep_malloc(fg->patternLen + 1);
                    383:        memcpy(fg->pattern, pattern + bol + fg->wmatch, fg->patternLen);
                    384:        fg->pattern[fg->patternLen] = '\0';
1.6       tedu      385:
                    386:        /* Look for ways to cheat...er...avoid the full regex engine. */
                    387:        for (i = 0; i < fg->patternLen; i++)
                    388:        {
1.46      tedu      389:                switch (fg->pattern[i]) {
                    390:                case '.':
1.6       tedu      391:                        hasDot = i;
                    392:                        if (i < fg->patternLen / 2) {
1.19      otto      393:                                if (firstHalfDot < 0)
1.6       tedu      394:                                        /* Closest dot to the beginning */
                    395:                                        firstHalfDot = i;
                    396:                        } else {
                    397:                                /* Closest dot to the end of the pattern. */
                    398:                                lastHalfDot = i;
                    399:                                if (firstLastHalfDot < 0)
                    400:                                        firstLastHalfDot = i;
                    401:                        }
1.46      tedu      402:                        break;
                    403:                case '(': case ')':
                    404:                case '{': case '}':
                    405:                        /* Special in BRE if preceded by '\\' */
                    406:                case '?':
                    407:                case '+':
                    408:                case '|':
                    409:                        /* Not special in BRE. */
                    410:                        if (!Eflag)
                    411:                                goto nonspecial;
                    412:                case '\\':
                    413:                case '*':
                    414:                case '[': case ']':
1.6       tedu      415:                        /* Free memory and let others know this is empty. */
                    416:                        free(fg->pattern);
                    417:                        fg->pattern = NULL;
                    418:                        return (-1);
1.46      tedu      419:                default:
                    420: nonspecial:
                    421:                        if (iflag)
                    422:                                fg->pattern[i] = toupper(fg->pattern[i]);
                    423:                        break;
1.6       tedu      424:                }
                    425:        }
                    426:
                    427:        /*
                    428:         * Determine if a reverse search would be faster based on the placement
                    429:         * of the dots.
                    430:         */
1.55      otto      431:        if ((!(lflag || cflag || oflag)) && ((!(bol || eol)) &&
1.6       tedu      432:            ((lastHalfDot) && ((firstHalfDot < 0) ||
                    433:            ((fg->patternLen - (lastHalfDot + 1)) < firstHalfDot))))) {
                    434:                fg->reversedSearch = 1;
                    435:                hasDot = fg->patternLen - (firstHalfDot < 0 ?
                    436:                    firstLastHalfDot : firstHalfDot) - 1;
                    437:                grep_revstr(fg->pattern, fg->patternLen);
                    438:        }
                    439:
                    440:        /*
                    441:         * Normal Quick Search would require a shift based on the position the
                    442:         * next character after the comparison is within the pattern.  With
                    443:         * wildcards, the position of the last dot effects the maximum shift
                    444:         * distance.
                    445:         * The closer to the end the wild card is the slower the search.  A
1.10      deraadt   446:         * reverse version of this algorithm would be useful for wildcards near
1.6       tedu      447:         * the end of the string.
                    448:         *
                    449:         * Examples:
                    450:         * Pattern      Max shift
                    451:         * -------      ---------
                    452:         * this         5
                    453:         * .his         4
                    454:         * t.is         3
                    455:         * th.s         2
                    456:         * thi.         1
                    457:         */
                    458:
                    459:        /* Adjust the shift based on location of the last dot ('.'). */
                    460:        shiftPatternLen = fg->patternLen - hasDot;
                    461:
                    462:        /* Preprocess pattern. */
                    463:        for (i = 0; i <= UCHAR_MAX; i++)
                    464:                fg->qsBc[i] = shiftPatternLen;
                    465:        for (i = hasDot + 1; i < fg->patternLen; i++) {
                    466:                fg->qsBc[fg->pattern[i]] = fg->patternLen - i;
                    467:                /*
                    468:                 * If case is ignored, make the jump apply to both upper and
                    469:                 * lower cased characters.  As the pattern is stored in upper
                    470:                 * case, apply the same to the lower case equivalents.
                    471:                 */
                    472:                if (iflag)
                    473:                        fg->qsBc[tolower(fg->pattern[i])] = fg->patternLen - i;
                    474:        }
                    475:
                    476:        /*
                    477:         * Put pattern back to normal after pre-processing to allow for easy
                    478:         * comparisons later.
                    479:         */
                    480:        if (fg->reversedSearch)
                    481:                grep_revstr(fg->pattern, fg->patternLen);
                    482:
                    483:        return (0);
1.39      tedu      484: #endif
1.6       tedu      485: }
                    486:
1.26      otto      487: /*
                    488:  * Word boundaries using regular expressions are defined as the point
                    489:  * of transition from a non-word char to a word char, or vice versa.
                    490:  * This means that grep -w +a and grep -w a+ never match anything,
                    491:  * because they lack a starting or ending transition, but grep -w a+b
                    492:  * does match a line containing a+b.
                    493:  */
1.22      millert   494: #define wmatch(d, l, s, e)     \
1.26      otto      495:        ((s == 0 || !isword(d[s-1])) && (e == l || !isword(d[e])) && \
                    496:          e > s && isword(d[s]) && isword(d[e-1]))
1.22      millert   497:
1.9       millert   498: static int
1.56      tedu      499: grep_search(fastgrep_t *fg, char *data, size_t dataLen, regmatch_t *pmatch,
                    500:     int flags)
1.6       tedu      501: {
1.39      tedu      502: #ifdef SMALL
                    503:        return 0;
                    504: #else
1.42      aschrijv  505:        regoff_t j;
1.6       tedu      506:        int rtrnVal = REG_NOMATCH;
                    507:
1.9       millert   508:        pmatch->rm_so = -1;
                    509:        pmatch->rm_eo = -1;
                    510:
1.6       tedu      511:        /* No point in going farther if we do not have enough data. */
                    512:        if (dataLen < fg->patternLen)
                    513:                return (rtrnVal);
                    514:
                    515:        /* Only try once at the beginning or ending of the line. */
                    516:        if (fg->bol || fg->eol) {
1.56      tedu      517:                if (fg->bol && (flags & REG_NOTBOL))
                    518:                        return 0;
1.6       tedu      519:                /* Simple text comparison. */
                    520:                /* Verify data is >= pattern length before searching on it. */
                    521:                if (dataLen >= fg->patternLen) {
                    522:                        /* Determine where in data to start search at. */
                    523:                        if (fg->eol)
                    524:                                j = dataLen - fg->patternLen;
                    525:                        else
                    526:                                j = 0;
                    527:                        if (!((fg->bol && fg->eol) && (dataLen != fg->patternLen)))
1.22      millert   528:                                if (grep_cmp(fg->pattern, data + j,
1.53      millert   529:                                    fg->patternLen)) {
1.9       millert   530:                                        pmatch->rm_so = j;
                    531:                                        pmatch->rm_eo = j + fg->patternLen;
1.22      millert   532:                                        if (!fg->wmatch || wmatch(data, dataLen,
                    533:                                            pmatch->rm_so, pmatch->rm_eo))
                    534:                                                rtrnVal = 0;
1.9       millert   535:                                }
1.6       tedu      536:                }
                    537:        } else if (fg->reversedSearch) {
                    538:                /* Quick Search algorithm. */
1.17      millert   539:                j = dataLen;
                    540:                do {
1.6       tedu      541:                        if (grep_cmp(fg->pattern, data + j - fg->patternLen,
1.53      millert   542:                            fg->patternLen)) {
1.9       millert   543:                                pmatch->rm_so = j - fg->patternLen;
                    544:                                pmatch->rm_eo = j;
1.22      millert   545:                                if (!fg->wmatch || wmatch(data, dataLen,
                    546:                                    pmatch->rm_so, pmatch->rm_eo)) {
                    547:                                        rtrnVal = 0;
                    548:                                        break;
                    549:                                }
1.6       tedu      550:                        }
1.17      millert   551:                        /* Shift if within bounds, otherwise, we are done. */
                    552:                        if (j == fg->patternLen)
                    553:                                break;
1.40      tedu      554:                        j -= fg->qsBc[(unsigned char)data[j - fg->patternLen - 1]];
1.17      millert   555:                } while (j >= fg->patternLen);
1.6       tedu      556:        } else {
                    557:                /* Quick Search algorithm. */
                    558:                j = 0;
                    559:                do {
1.53      millert   560:                        if (grep_cmp(fg->pattern, data + j, fg->patternLen)) {
1.9       millert   561:                                pmatch->rm_so = j;
                    562:                                pmatch->rm_eo = j + fg->patternLen;
1.32      jaredy    563:                                if (fg->patternLen == 0 || !fg->wmatch ||
                    564:                                    wmatch(data, dataLen, pmatch->rm_so,
                    565:                                    pmatch->rm_eo)) {
1.22      millert   566:                                        rtrnVal = 0;
                    567:                                        break;
                    568:                                }
1.6       tedu      569:                        }
                    570:
                    571:                        /* Shift if within bounds, otherwise, we are done. */
                    572:                        if (j + fg->patternLen == dataLen)
                    573:                                break;
                    574:                        else
1.40      tedu      575:                                j += fg->qsBc[(unsigned char)data[j + fg->patternLen]];
1.6       tedu      576:                } while (j <= (dataLen - fg->patternLen));
                    577:        }
                    578:
                    579:        return (rtrnVal);
1.39      tedu      580: #endif
1.6       tedu      581: }
                    582:
                    583:
1.1       deraadt   584: void *
                    585: grep_malloc(size_t size)
                    586: {
1.10      deraadt   587:        void    *ptr;
1.1       deraadt   588:
                    589:        if ((ptr = malloc(size)) == NULL)
1.14      millert   590:                err(2, "malloc");
1.35      deraadt   591:        return ptr;
                    592: }
                    593:
                    594: void *
                    595: grep_calloc(size_t nmemb, size_t size)
                    596: {
                    597:        void    *ptr;
                    598:
                    599:        if ((ptr = calloc(nmemb, size)) == NULL)
                    600:                err(2, "calloc");
1.1       deraadt   601:        return ptr;
                    602: }
                    603:
                    604: void *
                    605: grep_realloc(void *ptr, size_t size)
                    606: {
                    607:        if ((ptr = realloc(ptr, size)) == NULL)
1.14      millert   608:                err(2, "realloc");
1.49      deraadt   609:        return ptr;
                    610: }
                    611:
                    612: void *
                    613: grep_reallocarray(void *ptr, size_t nmemb, size_t size)
                    614: {
                    615:        if ((ptr = reallocarray(ptr, nmemb, size)) == NULL)
                    616:                err(2, "reallocarray");
1.6       tedu      617:        return ptr;
                    618: }
                    619:
1.39      tedu      620: #ifndef SMALL
1.6       tedu      621: /*
1.53      millert   622:  * Returns:    true on success, false on failure
1.6       tedu      623:  */
1.53      millert   624: static bool
1.40      tedu      625: grep_cmp(const char *pattern, const char *data, size_t len)
1.6       tedu      626: {
1.53      millert   627:        size_t i;
1.6       tedu      628:
                    629:        for (i = 0; i < len; i++) {
1.25      millert   630:                if (((pattern[i] == data[i]) || (!Fflag && pattern[i] == '.'))
1.54      mmcc      631:                    || (iflag && pattern[i] == toupper((unsigned char)data[i])))
1.6       tedu      632:                        continue;
1.53      millert   633:                return false;
1.6       tedu      634:        }
                    635:
1.53      millert   636:        return true;
1.6       tedu      637: }
                    638:
                    639: static void
                    640: grep_revstr(unsigned char *str, int len)
                    641: {
                    642:        int i;
                    643:        char c;
                    644:
                    645:        for (i = 0; i < len / 2; i++) {
                    646:                c = str[i];
                    647:                str[i] = str[len - i - 1];
                    648:                str[len - i - 1] = c;
                    649:        }
1.1       deraadt   650: }
1.39      tedu      651: #endif
1.1       deraadt   652:
                    653: void
1.40      tedu      654: printline(str_t *line, int sep, regmatch_t *pmatch)
1.1       deraadt   655: {
                    656:        int n;
1.2       deraadt   657:
1.1       deraadt   658:        n = 0;
                    659:        if (!hflag) {
                    660:                fputs(line->file, stdout);
                    661:                ++n;
                    662:        }
                    663:        if (nflag) {
                    664:                if (n)
                    665:                        putchar(sep);
1.52      mmcc      666:                printf("%lld", line->line_no);
1.1       deraadt   667:                ++n;
                    668:        }
                    669:        if (bflag) {
                    670:                if (n)
                    671:                        putchar(sep);
1.60      tedu      672:                printf("%lld", (long long)line->off +
                    673:                    (pmatch ? pmatch->rm_so : 0));
1.21      otto      674:                ++n;
1.1       deraadt   675:        }
                    676:        if (n)
                    677:                putchar(sep);
1.40      tedu      678:        if (pmatch)
                    679:                fwrite(line->dat + pmatch->rm_so,
                    680:                    pmatch->rm_eo - pmatch->rm_so, 1, stdout);
                    681:        else
                    682:                fwrite(line->dat, line->len, 1, stdout);
1.1       deraadt   683:        putchar('\n');
                    684: }