1 /* $NetBSD: grep.h,v 1.5 2011/02/27 17:33:37 joerg Exp $ */ 2 /* $OpenBSD: grep.h,v 1.15 2010/04/05 03:03:55 tedu Exp $ */ 3 /* $FreeBSD$ */ 4 5 /*- 6 * Copyright (c) 1999 James Howard and Dag-Erling Coïdan Smørgrav 7 * Copyright (c) 2008-2009 Gabor Kovesdan <gabor@FreeBSD.org> 8 * All rights reserved. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 * SUCH DAMAGE. 30 */ 31 32 #include <bzlib.h> 33 #include <limits.h> 34 #include <regex.h> 35 #include <stdbool.h> 36 #include <stdio.h> 37 #include <zlib.h> 38 39 #ifndef WITHOUT_FASTMATCH 40 #include "fastmatch.h" 41 #endif 42 43 #ifdef WITHOUT_NLS 44 #define getstr(n) errstr[n] 45 #else 46 #include <nl_types.h> 47 48 extern nl_catd catalog; 49 #define getstr(n) catgets(catalog, 1, n, errstr[n]) 50 #endif 51 52 extern const char *errstr[]; 53 54 #define VERSION "2.6.0-FreeBSD" 55 56 #define GREP_FIXED 0 57 #define GREP_BASIC 1 58 #define GREP_EXTENDED 2 59 60 #if !defined(REG_NOSPEC) && !defined(REG_LITERAL) 61 #define WITH_INTERNAL_NOSPEC 62 #endif 63 64 #define BINFILE_BIN 0 65 #define BINFILE_SKIP 1 66 #define BINFILE_TEXT 2 67 68 #define FILE_STDIO 0 69 #define FILE_MMAP 1 70 #define FILE_GZIP 2 71 #define FILE_BZIP 3 72 #define FILE_XZ 4 73 #define FILE_LZMA 5 74 75 #define DIR_READ 0 76 #define DIR_SKIP 1 77 #define DIR_RECURSE 2 78 79 #define DEV_READ 0 80 #define DEV_SKIP 1 81 82 #define LINK_READ 0 83 #define LINK_EXPLICIT 1 84 #define LINK_SKIP 2 85 86 #define EXCL_PAT 0 87 #define INCL_PAT 1 88 89 #define MAX_MATCHES 32 90 91 struct file { 92 int fd; 93 bool binary; 94 }; 95 96 struct str { 97 off_t boff; 98 off_t off; 99 size_t len; 100 char *dat; 101 char *file; 102 int line_no; 103 }; 104 105 struct pat { 106 char *pat; 107 int len; 108 }; 109 110 struct epat { 111 char *pat; 112 int mode; 113 }; 114 115 /* Flags passed to regcomp() and regexec() */ 116 extern int cflags, eflags; 117 118 /* Command line flags */ 119 extern bool Eflag, Fflag, Gflag, Hflag, Lflag, 120 bflag, cflag, hflag, iflag, lflag, mflag, nflag, oflag, 121 qflag, sflag, vflag, wflag, xflag; 122 extern bool dexclude, dinclude, fexclude, finclude, lbflag, nullflag; 123 extern long long Aflag, Bflag; 124 extern long long mcount; 125 extern long long mlimit; 126 extern char fileeol; 127 extern char *label; 128 extern const char *color; 129 extern int binbehave, devbehave, dirbehave, filebehave, grepbehave, linkbehave; 130 131 extern bool file_err, matchall; 132 extern unsigned int dpatterns, fpatterns, patterns; 133 extern struct pat *pattern; 134 extern struct epat *dpattern, *fpattern; 135 extern regex_t *er_pattern, *r_pattern; 136 #ifndef WITHOUT_FASTMATCH 137 extern fastmatch_t *fg_pattern; 138 #endif 139 140 /* For regex errors */ 141 #define RE_ERROR_BUF 512 142 extern char re_error[RE_ERROR_BUF + 1]; /* Seems big enough */ 143 144 /* util.c */ 145 bool file_matching(const char *fname); 146 int procfile(const char *fn); 147 int grep_tree(char **argv); 148 void *grep_malloc(size_t size); 149 void *grep_calloc(size_t nmemb, size_t size); 150 void *grep_realloc(void *ptr, size_t size); 151 char *grep_strdup(const char *str); 152 void grep_printline(struct str *line, int sep); 153 154 /* queue.c */ 155 bool enqueue(struct str *x); 156 void printqueue(void); 157 void clearqueue(void); 158 159 /* file.c */ 160 void grep_close(struct file *f); 161 struct file *grep_open(const char *path); 162 char *grep_fgetln(struct file *f, size_t *len); 163