History log of /freebsd-10-stable/usr.bin/grep/regex/tre-fastmatch.c
Revision Date Author Comments
# 303882 09-Aug-2016 dim

MFC r270132 (by gabor):

- Do not look for more matching lines if -L is specified

Submitted by: eadler (based on)

MFC r296799 (by ian):

Fix a bug in bsdgrep that caused the program to hang in a tight loop for
some combinations of command line options and search patterns. The code was
examining regexec flags looking for a regcomp flag value. The fix is to
look in the struct field where the decoded regcomp flag was stored when the
regex was compiled.

With this fix, it's possible to build WITHOUT_GNU_GREP_COMPAT and
WITH_BSDGREP and have a usable GPL-free grep (which of course lacks gnugrep
extensions). It now passes the kyua tests except for one test that requires
the -z/--null-data gnu extension, and one test involving outputting context
lines across multiple files which appears to sometimes output an extra
delimiter line ("--") between matches (a rather obscure failure of a rather
obscure feature, so bsdgrep should be generally usable now).

MFC r303676:

Fix a segfault in bsdgrep when parsing the invalid extended regexps "?"
or "+" (these are invalid, because there is no preceding operand).

When bsdgrep attempts to emulate GNU grep in discarding and ignoring the
invalid ? or + operators, some later logic in tre_compile_fast() goes
beyond the end of the buffer, leading to a crash.

Fix this by bailing out, and reporting a bad pattern instead.

Reported by: Steve Kargl


# 274757 20-Nov-2014 emaste

bsdgrep: Work-around for segmentation fault.

Fix by David Carlier.

MFC of r272127
Obtained from: HardenedBSD
PR: 167921


# 265160 30-Apr-2014 pfg

MFC r264581, r264744:

Various style(9) fixes and typos in printf, grep, sort and patch.

#define should be followed by a tab.


# 274757 20-Nov-2014 emaste

bsdgrep: Work-around for segmentation fault.

Fix by David Carlier.

MFC of r272127
Obtained from: HardenedBSD
PR: 167921


# 265160 30-Apr-2014 pfg

MFC r264581, r264744:

Various style(9) fixes and typos in printf, grep, sort and patch.

#define should be followed by a tab.