1999-11-20 09:40:28 +00:00
|
|
|
/* search.c - searching subroutines using dfa, kwset and regex for grep.
|
2004-03-01 08:37:20 +00:00
|
|
|
Copyright 1992, 1998, 2000 Free Software Foundation, Inc.
|
1999-11-20 09:40:28 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
1999-11-21 01:15:40 +00:00
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
|
|
02111-1307, USA. */
|
1999-11-20 09:40:28 +00:00
|
|
|
|
1999-11-21 01:15:40 +00:00
|
|
|
/* Written August 1992 by Mike Haertel. */
|
1999-11-20 09:40:28 +00:00
|
|
|
|
1999-11-21 01:15:40 +00:00
|
|
|
/* $FreeBSD$ */
|
1999-11-20 09:40:28 +00:00
|
|
|
|
2005-05-14 06:09:12 +00:00
|
|
|
#ifndef _GNU_SOURCE
|
|
|
|
# define _GNU_SOURCE 1
|
|
|
|
#endif
|
1999-11-21 01:15:40 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include <config.h>
|
1999-11-20 09:40:28 +00:00
|
|
|
#endif
|
2005-05-14 06:09:12 +00:00
|
|
|
#include <assert.h>
|
1999-11-21 01:15:40 +00:00
|
|
|
#include <sys/types.h>
|
2004-07-04 10:02:03 +00:00
|
|
|
#if defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H && defined HAVE_MBRTOWC
|
|
|
|
/* We can handle multibyte string. */
|
|
|
|
# define MBS_SUPPORT
|
|
|
|
# include <wchar.h>
|
|
|
|
# include <wctype.h>
|
|
|
|
#endif
|
|
|
|
|
1999-11-21 01:15:40 +00:00
|
|
|
#include "system.h"
|
|
|
|
#include "grep.h"
|
|
|
|
#include "regex.h"
|
1999-11-20 09:40:28 +00:00
|
|
|
#include "dfa.h"
|
|
|
|
#include "kwset.h"
|
2004-07-04 10:02:03 +00:00
|
|
|
#include "error.h"
|
|
|
|
#include "xalloc.h"
|
|
|
|
#ifdef HAVE_LIBPCRE
|
|
|
|
# include <pcre.h>
|
|
|
|
#endif
|
2005-05-14 06:09:12 +00:00
|
|
|
#ifdef HAVE_LANGINFO_CODESET
|
|
|
|
# include <langinfo.h>
|
|
|
|
#endif
|
1999-11-20 09:40:28 +00:00
|
|
|
|
|
|
|
#define NCHAR (UCHAR_MAX + 1)
|
|
|
|
|
|
|
|
/* For -w, we also consider _ to be word constituent. */
|
|
|
|
#define WCHAR(C) (ISALNUM(C) || (C) == '_')
|
|
|
|
|
|
|
|
/* DFA compiled regexp. */
|
|
|
|
static struct dfa dfa;
|
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
/* The Regex compiled patterns. */
|
|
|
|
static struct patterns
|
|
|
|
{
|
|
|
|
/* Regex compiled regexp. */
|
|
|
|
struct re_pattern_buffer regexbuf;
|
|
|
|
struct re_registers regs; /* This is here on account of a BRAIN-DEAD
|
|
|
|
Q@#%!# library interface in regex.c. */
|
|
|
|
} patterns0;
|
|
|
|
|
|
|
|
struct patterns *patterns;
|
|
|
|
size_t pcount;
|
1999-11-20 09:40:28 +00:00
|
|
|
|
|
|
|
/* KWset compiled pattern. For Ecompile and Gcompile, we compile
|
|
|
|
a list of strings, at least one of which is known to occur in
|
|
|
|
any string matching the regexp. */
|
|
|
|
static kwset_t kwset;
|
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
/* Number of compiled fixed strings known to exactly match the regexp.
|
|
|
|
If kwsexec returns < kwset_exact_matches, then we don't need to
|
1999-11-20 09:40:28 +00:00
|
|
|
call the regexp matcher at all. */
|
2004-07-04 10:02:03 +00:00
|
|
|
static int kwset_exact_matches;
|
|
|
|
|
2005-05-14 06:09:12 +00:00
|
|
|
/* UTF-8 encoding allows some optimizations that we can't otherwise
|
|
|
|
assume in a multibyte encoding. */
|
|
|
|
static int using_utf8;
|
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
static void kwsinit PARAMS ((void));
|
|
|
|
static void kwsmusts PARAMS ((void));
|
|
|
|
static void Gcompile PARAMS ((char const *, size_t));
|
|
|
|
static void Ecompile PARAMS ((char const *, size_t));
|
2005-05-14 03:02:22 +00:00
|
|
|
static size_t EGexecute PARAMS ((char const *, size_t, size_t *, int ));
|
2004-07-04 10:02:03 +00:00
|
|
|
static void Fcompile PARAMS ((char const *, size_t));
|
2005-05-14 03:02:22 +00:00
|
|
|
static size_t Fexecute PARAMS ((char const *, size_t, size_t *, int));
|
2004-07-04 10:02:03 +00:00
|
|
|
static void Pcompile PARAMS ((char const *, size_t ));
|
2005-05-14 03:02:22 +00:00
|
|
|
static size_t Pexecute PARAMS ((char const *, size_t, size_t *, int));
|
1999-11-20 09:40:28 +00:00
|
|
|
|
2005-05-14 06:09:12 +00:00
|
|
|
void
|
|
|
|
check_utf8 (void)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_LANGINFO_CODESET
|
|
|
|
if (strcmp (nl_langinfo (CODESET), "UTF-8") == 0)
|
|
|
|
using_utf8 = 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
1999-11-20 09:40:28 +00:00
|
|
|
void
|
2000-01-31 13:28:57 +00:00
|
|
|
dfaerror (char const *mesg)
|
1999-11-20 09:40:28 +00:00
|
|
|
{
|
2004-07-04 10:02:03 +00:00
|
|
|
error (2, 0, mesg);
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-01-31 13:28:57 +00:00
|
|
|
kwsinit (void)
|
1999-11-20 09:40:28 +00:00
|
|
|
{
|
|
|
|
static char trans[NCHAR];
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (match_icase)
|
|
|
|
for (i = 0; i < NCHAR; ++i)
|
2004-07-04 10:02:03 +00:00
|
|
|
trans[i] = TOLOWER (i);
|
1999-11-20 09:40:28 +00:00
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
if (!(kwset = kwsalloc (match_icase ? trans : (char *) 0)))
|
|
|
|
error (2, 0, _("memory exhausted"));
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If the DFA turns out to have some set of fixed strings one of
|
|
|
|
which must occur in the match, then we build a kwset matcher
|
|
|
|
to find those strings, and thus quickly filter out impossible
|
|
|
|
matches. */
|
|
|
|
static void
|
2000-01-31 13:28:57 +00:00
|
|
|
kwsmusts (void)
|
1999-11-20 09:40:28 +00:00
|
|
|
{
|
2004-07-04 10:02:03 +00:00
|
|
|
struct dfamust const *dm;
|
|
|
|
char const *err;
|
1999-11-20 09:40:28 +00:00
|
|
|
|
|
|
|
if (dfa.musts)
|
|
|
|
{
|
2004-07-04 10:02:03 +00:00
|
|
|
kwsinit ();
|
1999-11-20 09:40:28 +00:00
|
|
|
/* First, we compile in the substrings known to be exact
|
|
|
|
matches. The kwset matcher will return the index
|
|
|
|
of the matching string that it chooses. */
|
|
|
|
for (dm = dfa.musts; dm; dm = dm->next)
|
|
|
|
{
|
|
|
|
if (!dm->exact)
|
|
|
|
continue;
|
2004-07-04 10:02:03 +00:00
|
|
|
++kwset_exact_matches;
|
|
|
|
if ((err = kwsincr (kwset, dm->must, strlen (dm->must))) != 0)
|
|
|
|
error (2, 0, err);
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
|
|
|
/* Now, we compile the substrings that will require
|
|
|
|
the use of the regexp matcher. */
|
|
|
|
for (dm = dfa.musts; dm; dm = dm->next)
|
|
|
|
{
|
|
|
|
if (dm->exact)
|
|
|
|
continue;
|
2004-07-04 10:02:03 +00:00
|
|
|
if ((err = kwsincr (kwset, dm->must, strlen (dm->must))) != 0)
|
|
|
|
error (2, 0, err);
|
|
|
|
}
|
|
|
|
if ((err = kwsprep (kwset)) != 0)
|
|
|
|
error (2, 0, err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-11-20 09:40:28 +00:00
|
|
|
static void
|
2004-07-04 10:02:03 +00:00
|
|
|
Gcompile (char const *pattern, size_t size)
|
1999-11-20 09:40:28 +00:00
|
|
|
{
|
1999-11-21 01:15:40 +00:00
|
|
|
const char *err;
|
2004-07-04 10:02:03 +00:00
|
|
|
char const *sep;
|
|
|
|
size_t total = size;
|
|
|
|
char const *motif = pattern;
|
|
|
|
|
2005-05-14 06:09:12 +00:00
|
|
|
check_utf8 ();
|
2004-07-04 10:02:03 +00:00
|
|
|
re_set_syntax (RE_SYNTAX_GREP | RE_HAT_LISTS_NOT_NEWLINE);
|
|
|
|
dfasyntax (RE_SYNTAX_GREP | RE_HAT_LISTS_NOT_NEWLINE, match_icase, eolbyte);
|
|
|
|
|
|
|
|
/* For GNU regex compiler we have to pass the patterns separately to detect
|
|
|
|
errors like "[\nallo\n]\n". The patterns here are "[", "allo" and "]"
|
|
|
|
GNU regex should have raise a syntax error. The same for backref, where
|
|
|
|
the backref should have been local to each pattern. */
|
|
|
|
do
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
sep = memchr (motif, '\n', total);
|
|
|
|
if (sep)
|
|
|
|
{
|
|
|
|
len = sep - motif;
|
|
|
|
sep++;
|
|
|
|
total -= (len + 1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
len = total;
|
|
|
|
total = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
patterns = realloc (patterns, (pcount + 1) * sizeof (*patterns));
|
|
|
|
if (patterns == NULL)
|
|
|
|
error (2, errno, _("memory exhausted"));
|
|
|
|
|
|
|
|
patterns[pcount] = patterns0;
|
1999-11-20 09:40:28 +00:00
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
if ((err = re_compile_pattern (motif, len,
|
|
|
|
&(patterns[pcount].regexbuf))) != 0)
|
|
|
|
error (2, 0, err);
|
|
|
|
pcount++;
|
1999-11-20 09:40:28 +00:00
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
motif = sep;
|
|
|
|
} while (sep && total != 0);
|
1999-11-20 09:40:28 +00:00
|
|
|
|
|
|
|
/* In the match_words and match_lines cases, we use a different pattern
|
|
|
|
for the DFA matcher that will quickly throw out cases that won't work.
|
|
|
|
Then if DFA succeeds we do some hairy stuff using the regex matcher
|
|
|
|
to decide whether the match should really count. */
|
|
|
|
if (match_words || match_lines)
|
|
|
|
{
|
|
|
|
/* In the whole-word case, we use the pattern:
|
2004-07-04 10:02:03 +00:00
|
|
|
\(^\|[^[:alnum:]_]\)\(userpattern\)\([^[:alnum:]_]|$\).
|
1999-11-20 09:40:28 +00:00
|
|
|
In the whole-line case, we use the pattern:
|
2004-07-04 10:02:03 +00:00
|
|
|
^\(userpattern\)$. */
|
|
|
|
|
|
|
|
static char const line_beg[] = "^\\(";
|
|
|
|
static char const line_end[] = "\\)$";
|
|
|
|
static char const word_beg[] = "\\(^\\|[^[:alnum:]_]\\)\\(";
|
|
|
|
static char const word_end[] = "\\)\\([^[:alnum:]_]\\|$\\)";
|
2004-07-04 11:58:10 +00:00
|
|
|
char *n = xmalloc (sizeof word_beg - 1 + size + sizeof word_end);
|
2004-07-04 10:02:03 +00:00
|
|
|
size_t i;
|
|
|
|
strcpy (n, match_lines ? line_beg : word_beg);
|
|
|
|
i = strlen (n);
|
|
|
|
memcpy (n + i, pattern, size);
|
1999-11-20 09:40:28 +00:00
|
|
|
i += size;
|
2004-07-04 10:02:03 +00:00
|
|
|
strcpy (n + i, match_lines ? line_end : word_end);
|
|
|
|
i += strlen (n + i);
|
|
|
|
pattern = n;
|
|
|
|
size = i;
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
dfacomp (pattern, size, &dfa, 1);
|
|
|
|
kwsmusts ();
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2004-07-04 10:02:03 +00:00
|
|
|
Ecompile (char const *pattern, size_t size)
|
1999-11-20 09:40:28 +00:00
|
|
|
{
|
1999-11-21 01:15:40 +00:00
|
|
|
const char *err;
|
2004-07-04 10:02:03 +00:00
|
|
|
const char *sep;
|
|
|
|
size_t total = size;
|
|
|
|
char const *motif = pattern;
|
1999-11-20 09:40:28 +00:00
|
|
|
|
2005-05-14 06:09:12 +00:00
|
|
|
check_utf8 ();
|
2004-07-04 10:02:03 +00:00
|
|
|
if (strcmp (matcher, "awk") == 0)
|
1999-11-21 01:15:40 +00:00
|
|
|
{
|
2004-07-04 10:02:03 +00:00
|
|
|
re_set_syntax (RE_SYNTAX_AWK);
|
|
|
|
dfasyntax (RE_SYNTAX_AWK, match_icase, eolbyte);
|
1999-11-21 01:15:40 +00:00
|
|
|
}
|
1999-11-20 09:40:28 +00:00
|
|
|
else
|
|
|
|
{
|
2000-01-04 03:25:40 +00:00
|
|
|
re_set_syntax (RE_SYNTAX_POSIX_EGREP);
|
|
|
|
dfasyntax (RE_SYNTAX_POSIX_EGREP, match_icase, eolbyte);
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
/* For GNU regex compiler we have to pass the patterns separately to detect
|
|
|
|
errors like "[\nallo\n]\n". The patterns here are "[", "allo" and "]"
|
|
|
|
GNU regex should have raise a syntax error. The same for backref, where
|
|
|
|
the backref should have been local to each pattern. */
|
|
|
|
do
|
|
|
|
{
|
|
|
|
size_t len;
|
|
|
|
sep = memchr (motif, '\n', total);
|
|
|
|
if (sep)
|
|
|
|
{
|
|
|
|
len = sep - motif;
|
|
|
|
sep++;
|
|
|
|
total -= (len + 1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
len = total;
|
|
|
|
total = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
patterns = realloc (patterns, (pcount + 1) * sizeof (*patterns));
|
|
|
|
if (patterns == NULL)
|
|
|
|
error (2, errno, _("memory exhausted"));
|
|
|
|
patterns[pcount] = patterns0;
|
|
|
|
|
|
|
|
if ((err = re_compile_pattern (motif, len,
|
|
|
|
&(patterns[pcount].regexbuf))) != 0)
|
|
|
|
error (2, 0, err);
|
|
|
|
pcount++;
|
|
|
|
|
|
|
|
motif = sep;
|
|
|
|
} while (sep && total != 0);
|
1999-11-20 09:40:28 +00:00
|
|
|
|
|
|
|
/* In the match_words and match_lines cases, we use a different pattern
|
|
|
|
for the DFA matcher that will quickly throw out cases that won't work.
|
|
|
|
Then if DFA succeeds we do some hairy stuff using the regex matcher
|
|
|
|
to decide whether the match should really count. */
|
|
|
|
if (match_words || match_lines)
|
|
|
|
{
|
|
|
|
/* In the whole-word case, we use the pattern:
|
2004-07-04 10:02:03 +00:00
|
|
|
(^|[^[:alnum:]_])(userpattern)([^[:alnum:]_]|$).
|
1999-11-20 09:40:28 +00:00
|
|
|
In the whole-line case, we use the pattern:
|
2004-07-04 10:02:03 +00:00
|
|
|
^(userpattern)$. */
|
|
|
|
|
|
|
|
static char const line_beg[] = "^(";
|
|
|
|
static char const line_end[] = ")$";
|
|
|
|
static char const word_beg[] = "(^|[^[:alnum:]_])(";
|
|
|
|
static char const word_end[] = ")([^[:alnum:]_]|$)";
|
2004-07-04 11:58:10 +00:00
|
|
|
char *n = xmalloc (sizeof word_beg - 1 + size + sizeof word_end);
|
2004-07-04 10:02:03 +00:00
|
|
|
size_t i;
|
|
|
|
strcpy (n, match_lines ? line_beg : word_beg);
|
1999-11-20 09:40:28 +00:00
|
|
|
i = strlen(n);
|
2004-07-04 10:02:03 +00:00
|
|
|
memcpy (n + i, pattern, size);
|
1999-11-20 09:40:28 +00:00
|
|
|
i += size;
|
2004-07-04 10:02:03 +00:00
|
|
|
strcpy (n + i, match_lines ? line_end : word_end);
|
|
|
|
i += strlen (n + i);
|
|
|
|
pattern = n;
|
|
|
|
size = i;
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
dfacomp (pattern, size, &dfa, 1);
|
|
|
|
kwsmusts ();
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
static size_t
|
2005-05-14 03:02:22 +00:00
|
|
|
EGexecute (char const *buf, size_t size, size_t *match_size, int exact)
|
1999-11-20 09:40:28 +00:00
|
|
|
{
|
2004-07-04 10:02:03 +00:00
|
|
|
register char const *buflim, *beg, *end;
|
2000-01-04 03:25:40 +00:00
|
|
|
char eol = eolbyte;
|
1999-11-20 09:40:28 +00:00
|
|
|
int backref, start, len;
|
|
|
|
struct kwsmatch kwsm;
|
2004-07-04 11:58:10 +00:00
|
|
|
size_t i, ret_val;
|
2005-05-14 06:12:03 +00:00
|
|
|
static int use_dfa;
|
|
|
|
static int use_dfa_checked = 0;
|
2004-07-04 10:02:03 +00:00
|
|
|
#ifdef MBS_SUPPORT
|
2005-05-14 06:09:12 +00:00
|
|
|
int mb_cur_max = MB_CUR_MAX;
|
|
|
|
mbstate_t mbs;
|
|
|
|
memset (&mbs, '\0', sizeof (mbstate_t));
|
2004-07-04 10:02:03 +00:00
|
|
|
#endif /* MBS_SUPPORT */
|
1999-11-20 09:40:28 +00:00
|
|
|
|
2005-05-14 06:12:03 +00:00
|
|
|
if (!use_dfa_checked)
|
|
|
|
{
|
|
|
|
char *grep_use_dfa = getenv ("GREP_USE_DFA");
|
|
|
|
if (!grep_use_dfa)
|
|
|
|
{
|
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
/* Turn off DFA when processing multibyte input. */
|
|
|
|
use_dfa = (MB_CUR_MAX == 1);
|
|
|
|
#else
|
|
|
|
use_dfa = 1;
|
|
|
|
#endif /* MBS_SUPPORT */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
use_dfa = atoi (grep_use_dfa);
|
|
|
|
}
|
|
|
|
|
|
|
|
use_dfa_checked = 1;
|
|
|
|
}
|
|
|
|
|
1999-11-20 09:40:28 +00:00
|
|
|
buflim = buf + size;
|
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
for (beg = end = buf; end < buflim; beg = end)
|
1999-11-20 09:40:28 +00:00
|
|
|
{
|
2004-07-04 10:02:03 +00:00
|
|
|
if (!exact)
|
1999-11-20 09:40:28 +00:00
|
|
|
{
|
2004-07-04 10:02:03 +00:00
|
|
|
if (kwset)
|
1999-11-20 09:40:28 +00:00
|
|
|
{
|
2004-07-04 10:02:03 +00:00
|
|
|
/* Find a possible match using the KWset matcher. */
|
2005-05-14 06:09:12 +00:00
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
size_t bytes_left = 0;
|
|
|
|
#endif /* MBS_SUPPORT */
|
|
|
|
size_t offset;
|
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
/* kwsexec doesn't work with match_icase and multibyte input. */
|
|
|
|
if (match_icase && mb_cur_max > 1)
|
|
|
|
/* Avoid kwset */
|
|
|
|
offset = 0;
|
|
|
|
else
|
|
|
|
#endif /* MBS_SUPPORT */
|
|
|
|
offset = kwsexec (kwset, beg, buflim - beg, &kwsm);
|
2004-07-04 10:02:03 +00:00
|
|
|
if (offset == (size_t) -1)
|
2004-07-04 11:33:49 +00:00
|
|
|
goto failure;
|
2005-05-14 06:09:12 +00:00
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
if (mb_cur_max > 1 && !using_utf8)
|
|
|
|
{
|
|
|
|
bytes_left = offset;
|
|
|
|
while (bytes_left)
|
|
|
|
{
|
|
|
|
size_t mlen = mbrlen (beg, bytes_left, &mbs);
|
|
|
|
if (mlen == (size_t) -1 || mlen == 0)
|
|
|
|
{
|
|
|
|
/* Incomplete character: treat as single-byte. */
|
|
|
|
memset (&mbs, '\0', sizeof (mbstate_t));
|
|
|
|
beg++;
|
|
|
|
bytes_left--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mlen == (size_t) -2)
|
|
|
|
/* Offset points inside multibyte character:
|
|
|
|
* no good. */
|
|
|
|
break;
|
|
|
|
|
|
|
|
beg += mlen;
|
|
|
|
bytes_left -= mlen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif /* MBS_SUPPORT */
|
2004-07-04 10:02:03 +00:00
|
|
|
beg += offset;
|
|
|
|
/* Narrow down to the line containing the candidate, and
|
|
|
|
run it through DFA. */
|
|
|
|
end = memchr(beg, eol, buflim - beg);
|
|
|
|
end++;
|
|
|
|
#ifdef MBS_SUPPORT
|
2005-05-14 06:09:12 +00:00
|
|
|
if (mb_cur_max > 1 && bytes_left)
|
2004-07-04 10:02:03 +00:00
|
|
|
continue;
|
2005-05-14 06:09:12 +00:00
|
|
|
#endif /* MBS_SUPPORT */
|
2004-07-04 10:02:03 +00:00
|
|
|
while (beg > buf && beg[-1] != eol)
|
|
|
|
--beg;
|
2005-05-14 06:09:12 +00:00
|
|
|
if (
|
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
!(match_icase && mb_cur_max > 1) &&
|
|
|
|
#endif /* MBS_SUPPORT */
|
|
|
|
(kwsm.index < kwset_exact_matches))
|
2004-07-04 11:33:49 +00:00
|
|
|
goto success_in_beg_and_end;
|
2005-05-14 06:12:03 +00:00
|
|
|
if (use_dfa &&
|
|
|
|
dfaexec (&dfa, beg, end - beg, &backref) == (size_t) -1)
|
2004-07-04 10:02:03 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* No good fixed strings; start with DFA. */
|
2005-05-14 06:09:12 +00:00
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
size_t bytes_left = 0;
|
|
|
|
#endif /* MBS_SUPPORT */
|
2005-05-14 06:12:03 +00:00
|
|
|
size_t offset = 0;
|
|
|
|
if (use_dfa)
|
|
|
|
offset = dfaexec (&dfa, beg, buflim - beg, &backref);
|
2004-07-04 10:02:03 +00:00
|
|
|
if (offset == (size_t) -1)
|
|
|
|
break;
|
|
|
|
/* Narrow down to the line we've found. */
|
2005-05-14 06:09:12 +00:00
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
if (mb_cur_max > 1 && !using_utf8)
|
|
|
|
{
|
|
|
|
bytes_left = offset;
|
|
|
|
while (bytes_left)
|
|
|
|
{
|
|
|
|
size_t mlen = mbrlen (beg, bytes_left, &mbs);
|
|
|
|
if (mlen == (size_t) -1 || mlen == 0)
|
|
|
|
{
|
|
|
|
/* Incomplete character: treat as single-byte. */
|
|
|
|
memset (&mbs, '\0', sizeof (mbstate_t));
|
|
|
|
beg++;
|
|
|
|
bytes_left--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mlen == (size_t) -2)
|
|
|
|
/* Offset points inside multibyte character:
|
|
|
|
* no good. */
|
|
|
|
break;
|
|
|
|
|
|
|
|
beg += mlen;
|
|
|
|
bytes_left -= mlen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif /* MBS_SUPPORT */
|
2004-07-04 10:02:03 +00:00
|
|
|
beg += offset;
|
|
|
|
end = memchr (beg, eol, buflim - beg);
|
|
|
|
end++;
|
2005-05-14 06:09:12 +00:00
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
if (mb_cur_max > 1 && bytes_left)
|
|
|
|
continue;
|
|
|
|
#endif /* MBS_SUPPORT */
|
2004-07-04 10:02:03 +00:00
|
|
|
while (beg > buf && beg[-1] != eol)
|
|
|
|
--beg;
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
|
|
|
/* Successful, no backreferences encountered! */
|
2005-05-14 06:12:03 +00:00
|
|
|
if (use_dfa && !backref)
|
2004-07-04 11:33:49 +00:00
|
|
|
goto success_in_beg_and_end;
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
2004-07-04 10:02:03 +00:00
|
|
|
else
|
|
|
|
end = beg + size;
|
|
|
|
|
1999-11-20 09:40:28 +00:00
|
|
|
/* If we've made it to this point, this means DFA has seen
|
|
|
|
a probable match, and we need to run it through Regex. */
|
2004-07-04 10:02:03 +00:00
|
|
|
for (i = 0; i < pcount; i++)
|
1999-11-20 09:40:28 +00:00
|
|
|
{
|
2004-07-04 10:02:03 +00:00
|
|
|
patterns[i].regexbuf.not_eol = 0;
|
|
|
|
if (0 <= (start = re_search (&(patterns[i].regexbuf), beg,
|
|
|
|
end - beg - 1, 0,
|
|
|
|
end - beg - 1, &(patterns[i].regs))))
|
|
|
|
{
|
|
|
|
len = patterns[i].regs.end[0] - start;
|
2004-07-04 11:33:49 +00:00
|
|
|
if (exact && !match_words)
|
|
|
|
goto success_in_start_and_len;
|
2004-07-04 10:02:03 +00:00
|
|
|
if ((!match_lines && !match_words)
|
|
|
|
|| (match_lines && len == end - beg - 1))
|
2004-07-04 11:33:49 +00:00
|
|
|
goto success_in_beg_and_end;
|
2004-07-04 10:02:03 +00:00
|
|
|
/* If -w, check if the match aligns with word boundaries.
|
|
|
|
We do this iteratively because:
|
|
|
|
(a) the line may contain more than one occurence of the
|
|
|
|
pattern, and
|
|
|
|
(b) Several alternatives in the pattern might be valid at a
|
|
|
|
given point, and we may need to consider a shorter one to
|
|
|
|
find a word boundary. */
|
|
|
|
if (match_words)
|
|
|
|
while (start >= 0)
|
1999-11-20 09:40:28 +00:00
|
|
|
{
|
2004-07-04 10:02:03 +00:00
|
|
|
if ((start == 0 || !WCHAR ((unsigned char) beg[start - 1]))
|
|
|
|
&& (len == end - beg - 1
|
|
|
|
|| !WCHAR ((unsigned char) beg[start + len])))
|
2005-05-14 04:17:07 +00:00
|
|
|
goto success_in_beg_and_end;
|
2004-07-04 10:02:03 +00:00
|
|
|
if (len > 0)
|
|
|
|
{
|
|
|
|
/* Try a shorter length anchored at the same place. */
|
|
|
|
--len;
|
|
|
|
patterns[i].regexbuf.not_eol = 1;
|
|
|
|
len = re_match (&(patterns[i].regexbuf), beg,
|
|
|
|
start + len, start,
|
|
|
|
&(patterns[i].regs));
|
|
|
|
}
|
|
|
|
if (len <= 0)
|
|
|
|
{
|
|
|
|
/* Try looking further on. */
|
|
|
|
if (start == end - beg - 1)
|
|
|
|
break;
|
|
|
|
++start;
|
|
|
|
patterns[i].regexbuf.not_eol = 0;
|
|
|
|
start = re_search (&(patterns[i].regexbuf), beg,
|
|
|
|
end - beg - 1,
|
|
|
|
start, end - beg - 1 - start,
|
|
|
|
&(patterns[i].regs));
|
|
|
|
len = patterns[i].regs.end[0] - start;
|
|
|
|
}
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
2004-07-04 10:02:03 +00:00
|
|
|
}
|
|
|
|
} /* for Regex patterns. */
|
|
|
|
} /* for (beg = end ..) */
|
2004-07-04 11:33:49 +00:00
|
|
|
|
|
|
|
failure:
|
2004-07-04 10:02:03 +00:00
|
|
|
return (size_t) -1;
|
1999-11-20 09:40:28 +00:00
|
|
|
|
2004-07-04 11:33:49 +00:00
|
|
|
success_in_beg_and_end:
|
|
|
|
len = end - beg;
|
|
|
|
start = beg - buf;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
|
|
|
|
success_in_start_and_len:
|
|
|
|
*match_size = len;
|
|
|
|
return start;
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
|
|
|
|
2005-05-14 06:09:12 +00:00
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
static int f_i_multibyte; /* whether we're using the new -Fi MB method */
|
|
|
|
static struct
|
|
|
|
{
|
|
|
|
wchar_t **patterns;
|
|
|
|
size_t count, maxlen;
|
|
|
|
unsigned char *match;
|
|
|
|
} Fimb;
|
|
|
|
#endif
|
|
|
|
|
1999-11-20 09:40:28 +00:00
|
|
|
static void
|
2004-07-04 10:02:03 +00:00
|
|
|
Fcompile (char const *pattern, size_t size)
|
1999-11-20 09:40:28 +00:00
|
|
|
{
|
2005-05-14 06:09:12 +00:00
|
|
|
int mb_cur_max = MB_CUR_MAX;
|
2004-07-04 10:02:03 +00:00
|
|
|
char const *beg, *lim, *err;
|
1999-11-20 09:40:28 +00:00
|
|
|
|
2005-05-14 06:09:12 +00:00
|
|
|
check_utf8 ();
|
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
/* Support -F -i for UTF-8 input. */
|
|
|
|
if (match_icase && mb_cur_max > 1)
|
|
|
|
{
|
|
|
|
mbstate_t mbs;
|
|
|
|
wchar_t *wcpattern = xmalloc ((size + 1) * sizeof (wchar_t));
|
|
|
|
const char *patternend = pattern;
|
|
|
|
size_t wcsize;
|
|
|
|
kwset_t fimb_kwset = NULL;
|
|
|
|
char *starts = NULL;
|
|
|
|
wchar_t *wcbeg, *wclim;
|
|
|
|
size_t allocated = 0;
|
|
|
|
|
|
|
|
memset (&mbs, '\0', sizeof (mbs));
|
|
|
|
# ifdef __GNU_LIBRARY__
|
|
|
|
wcsize = mbsnrtowcs (wcpattern, &patternend, size, size, &mbs);
|
|
|
|
if (patternend != pattern + size)
|
|
|
|
wcsize = (size_t) -1;
|
|
|
|
# else
|
|
|
|
{
|
|
|
|
char *patterncopy = xmalloc (size + 1);
|
|
|
|
|
|
|
|
memcpy (patterncopy, pattern, size);
|
|
|
|
patterncopy[size] = '\0';
|
|
|
|
patternend = patterncopy;
|
|
|
|
wcsize = mbsrtowcs (wcpattern, &patternend, size, &mbs);
|
|
|
|
if (patternend != patterncopy + size)
|
|
|
|
wcsize = (size_t) -1;
|
|
|
|
free (patterncopy);
|
|
|
|
}
|
|
|
|
# endif
|
|
|
|
if (wcsize + 2 <= 2)
|
|
|
|
{
|
|
|
|
fimb_fail:
|
|
|
|
free (wcpattern);
|
|
|
|
free (starts);
|
|
|
|
if (fimb_kwset)
|
|
|
|
kwsfree (fimb_kwset);
|
|
|
|
free (Fimb.patterns);
|
|
|
|
Fimb.patterns = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!(fimb_kwset = kwsalloc (NULL)))
|
|
|
|
error (2, 0, _("memory exhausted"));
|
|
|
|
|
|
|
|
starts = xmalloc (mb_cur_max * 3);
|
|
|
|
wcbeg = wcpattern;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
size_t wclen;
|
|
|
|
|
|
|
|
if (Fimb.count >= allocated)
|
|
|
|
{
|
|
|
|
if (allocated == 0)
|
|
|
|
allocated = 128;
|
|
|
|
else
|
|
|
|
allocated *= 2;
|
|
|
|
Fimb.patterns = xrealloc (Fimb.patterns,
|
|
|
|
sizeof (wchar_t *) * allocated);
|
|
|
|
}
|
|
|
|
Fimb.patterns[Fimb.count++] = wcbeg;
|
|
|
|
for (wclim = wcbeg;
|
|
|
|
wclim < wcpattern + wcsize && *wclim != L'\n'; ++wclim)
|
|
|
|
*wclim = towlower (*wclim);
|
|
|
|
*wclim = L'\0';
|
|
|
|
wclen = wclim - wcbeg;
|
|
|
|
if (wclen > Fimb.maxlen)
|
|
|
|
Fimb.maxlen = wclen;
|
|
|
|
if (wclen > 3)
|
|
|
|
wclen = 3;
|
|
|
|
if (wclen == 0)
|
|
|
|
{
|
|
|
|
if ((err = kwsincr (fimb_kwset, "", 0)) != 0)
|
|
|
|
error (2, 0, err);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
for (i = 0; i < (1 << wclen); i++)
|
|
|
|
{
|
|
|
|
char *p = starts;
|
|
|
|
int j, k;
|
|
|
|
|
|
|
|
for (j = 0; j < wclen; ++j)
|
|
|
|
{
|
|
|
|
wchar_t wc = wcbeg[j];
|
|
|
|
if (i & (1 << j))
|
|
|
|
{
|
|
|
|
wc = towupper (wc);
|
|
|
|
if (wc == wcbeg[j])
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
k = wctomb (p, wc);
|
|
|
|
if (k <= 0)
|
|
|
|
goto fimb_fail;
|
|
|
|
p += k;
|
|
|
|
}
|
|
|
|
if ((err = kwsincr (fimb_kwset, starts, p - starts)) != 0)
|
|
|
|
error (2, 0, err);
|
|
|
|
}
|
|
|
|
if (wclim < wcpattern + wcsize)
|
|
|
|
++wclim;
|
|
|
|
wcbeg = wclim;
|
|
|
|
}
|
|
|
|
while (wcbeg < wcpattern + wcsize);
|
|
|
|
f_i_multibyte = 1;
|
|
|
|
kwset = fimb_kwset;
|
|
|
|
free (starts);
|
|
|
|
Fimb.match = xmalloc (Fimb.count);
|
|
|
|
if ((err = kwsprep (kwset)) != 0)
|
|
|
|
error (2, 0, err);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* MBS_SUPPORT */
|
|
|
|
|
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
kwsinit ();
|
1999-11-20 09:40:28 +00:00
|
|
|
beg = pattern;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
for (lim = beg; lim < pattern + size && *lim != '\n'; ++lim)
|
|
|
|
;
|
2004-07-04 10:02:03 +00:00
|
|
|
if ((err = kwsincr (kwset, beg, lim - beg)) != 0)
|
|
|
|
error (2, 0, err);
|
1999-11-20 09:40:28 +00:00
|
|
|
if (lim < pattern + size)
|
|
|
|
++lim;
|
|
|
|
beg = lim;
|
|
|
|
}
|
|
|
|
while (beg < pattern + size);
|
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
if ((err = kwsprep (kwset)) != 0)
|
|
|
|
error (2, 0, err);
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
|
|
|
|
2005-05-14 06:09:12 +00:00
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
static int
|
|
|
|
Fimbexec (const char *buf, size_t size, size_t *plen, int exact)
|
|
|
|
{
|
|
|
|
size_t len, letter, i;
|
|
|
|
int ret = -1;
|
|
|
|
mbstate_t mbs;
|
|
|
|
wchar_t wc;
|
|
|
|
int patterns_left;
|
|
|
|
|
|
|
|
assert (match_icase && f_i_multibyte == 1);
|
|
|
|
assert (MB_CUR_MAX > 1);
|
|
|
|
|
|
|
|
memset (&mbs, '\0', sizeof (mbs));
|
|
|
|
memset (Fimb.match, '\1', Fimb.count);
|
|
|
|
letter = len = 0;
|
|
|
|
patterns_left = 1;
|
|
|
|
while (patterns_left && len <= size)
|
|
|
|
{
|
|
|
|
size_t c;
|
|
|
|
|
|
|
|
patterns_left = 0;
|
|
|
|
if (len < size)
|
|
|
|
{
|
|
|
|
c = mbrtowc (&wc, buf + len, size - len, &mbs);
|
|
|
|
if (c + 2 <= 2)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
wc = towlower (wc);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
c = 1;
|
|
|
|
wc = L'\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < Fimb.count; i++)
|
|
|
|
{
|
|
|
|
if (Fimb.match[i])
|
|
|
|
{
|
|
|
|
if (Fimb.patterns[i][letter] == L'\0')
|
|
|
|
{
|
|
|
|
/* Found a match. */
|
|
|
|
*plen = len;
|
|
|
|
if (!exact && !match_words)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* For -w or exact look for longest match. */
|
|
|
|
ret = 0;
|
|
|
|
Fimb.match[i] = '\0';
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Fimb.patterns[i][letter] == wc)
|
|
|
|
patterns_left = 1;
|
|
|
|
else
|
|
|
|
Fimb.match[i] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
len += c;
|
|
|
|
letter++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif /* MBS_SUPPORT */
|
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
static size_t
|
2005-05-14 03:02:22 +00:00
|
|
|
Fexecute (char const *buf, size_t size, size_t *match_size, int exact)
|
1999-11-20 09:40:28 +00:00
|
|
|
{
|
2004-07-04 10:02:03 +00:00
|
|
|
register char const *beg, *try, *end;
|
1999-11-20 09:40:28 +00:00
|
|
|
register size_t len;
|
2000-01-04 03:25:40 +00:00
|
|
|
char eol = eolbyte;
|
1999-11-20 09:40:28 +00:00
|
|
|
struct kwsmatch kwsmatch;
|
2004-07-04 11:58:10 +00:00
|
|
|
size_t ret_val;
|
2004-07-04 10:02:03 +00:00
|
|
|
#ifdef MBS_SUPPORT
|
2005-05-14 06:09:12 +00:00
|
|
|
int mb_cur_max = MB_CUR_MAX;
|
|
|
|
mbstate_t mbs;
|
|
|
|
memset (&mbs, '\0', sizeof (mbstate_t));
|
|
|
|
const char *last_char = NULL;
|
2004-07-04 10:02:03 +00:00
|
|
|
#endif /* MBS_SUPPORT */
|
1999-11-20 09:40:28 +00:00
|
|
|
|
|
|
|
for (beg = buf; beg <= buf + size; ++beg)
|
|
|
|
{
|
2005-05-14 06:09:12 +00:00
|
|
|
size_t offset;
|
|
|
|
offset = kwsexec (kwset, beg, buf + size - beg, &kwsmatch);
|
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
if (offset == (size_t) -1)
|
2004-07-04 11:33:49 +00:00
|
|
|
goto failure;
|
2004-07-04 10:02:03 +00:00
|
|
|
#ifdef MBS_SUPPORT
|
2005-05-14 06:09:12 +00:00
|
|
|
if (mb_cur_max > 1 && !using_utf8)
|
|
|
|
{
|
|
|
|
size_t bytes_left = offset;
|
|
|
|
while (bytes_left)
|
|
|
|
{
|
|
|
|
size_t mlen = mbrlen (beg, bytes_left, &mbs);
|
|
|
|
|
|
|
|
last_char = beg;
|
|
|
|
if (mlen == (size_t) -1 || mlen == 0)
|
|
|
|
{
|
|
|
|
/* Incomplete character: treat as single-byte. */
|
|
|
|
memset (&mbs, '\0', sizeof (mbstate_t));
|
|
|
|
beg++;
|
|
|
|
bytes_left--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mlen == (size_t) -2)
|
|
|
|
/* Offset points inside multibyte character: no good. */
|
|
|
|
break;
|
|
|
|
|
|
|
|
beg += mlen;
|
|
|
|
bytes_left -= mlen;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bytes_left)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else
|
2004-07-04 10:02:03 +00:00
|
|
|
#endif /* MBS_SUPPORT */
|
|
|
|
beg += offset;
|
2005-05-14 06:09:12 +00:00
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
/* For f_i_multibyte, the string at beg now matches first 3 chars of
|
|
|
|
one of the search strings (less if there are shorter search strings).
|
|
|
|
See if this is a real match. */
|
|
|
|
if (f_i_multibyte
|
|
|
|
&& Fimbexec (beg, buf + size - beg, &kwsmatch.size[0], exact))
|
|
|
|
goto next_char;
|
|
|
|
#endif /* MBS_SUPPORT */
|
1999-11-20 09:40:28 +00:00
|
|
|
len = kwsmatch.size[0];
|
2004-07-04 11:33:49 +00:00
|
|
|
if (exact && !match_words)
|
|
|
|
goto success_in_beg_and_len;
|
1999-11-20 09:40:28 +00:00
|
|
|
if (match_lines)
|
|
|
|
{
|
2000-01-04 03:25:40 +00:00
|
|
|
if (beg > buf && beg[-1] != eol)
|
2005-05-14 06:09:12 +00:00
|
|
|
goto next_char;
|
2000-01-04 03:25:40 +00:00
|
|
|
if (beg + len < buf + size && beg[len] != eol)
|
2005-05-14 06:09:12 +00:00
|
|
|
goto next_char;
|
1999-11-20 09:40:28 +00:00
|
|
|
goto success;
|
|
|
|
}
|
|
|
|
else if (match_words)
|
2005-05-14 06:09:12 +00:00
|
|
|
{
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
int word_match = 0;
|
|
|
|
if (beg > buf)
|
|
|
|
{
|
2005-05-14 04:17:07 +00:00
|
|
|
#ifdef MBS_SUPPORT
|
2005-05-14 06:09:12 +00:00
|
|
|
if (mb_cur_max > 1)
|
|
|
|
{
|
|
|
|
const char *s;
|
|
|
|
int mr;
|
|
|
|
wchar_t pwc;
|
|
|
|
|
|
|
|
if (using_utf8)
|
|
|
|
{
|
|
|
|
s = beg - 1;
|
|
|
|
while (s > buf
|
|
|
|
&& (unsigned char) *s >= 0x80
|
|
|
|
&& (unsigned char) *s <= 0xbf)
|
|
|
|
--s;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
s = last_char;
|
|
|
|
mr = mbtowc (&pwc, s, beg - s);
|
|
|
|
if (mr <= 0)
|
|
|
|
memset (&mbs, '\0', sizeof (mbstate_t));
|
|
|
|
else if ((iswalnum (pwc) || pwc == L'_')
|
|
|
|
&& mr == (int) (beg - s))
|
|
|
|
goto next_char;
|
|
|
|
}
|
|
|
|
else
|
2005-05-14 04:17:07 +00:00
|
|
|
#endif /* MBS_SUPPORT */
|
2005-05-14 06:09:12 +00:00
|
|
|
if (!WCHAR ((unsigned char) beg[-1]))
|
|
|
|
goto next_char;
|
|
|
|
}
|
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
if (mb_cur_max > 1)
|
|
|
|
{
|
|
|
|
wchar_t nwc;
|
|
|
|
int mr;
|
|
|
|
|
|
|
|
mr = mbtowc (&nwc, beg + len, buf + size - beg - len);
|
|
|
|
if (mr <= 0)
|
|
|
|
{
|
|
|
|
memset (&mbs, '\0', sizeof (mbstate_t));
|
|
|
|
word_match = 1;
|
|
|
|
}
|
|
|
|
else if (!iswalnum (nwc) && nwc != L'_')
|
|
|
|
word_match = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif /* MBS_SUPPORT */
|
|
|
|
if (beg + len >= buf + size && !WCHAR ((unsigned char) beg[len]))
|
|
|
|
word_match = 1;
|
|
|
|
if (word_match)
|
|
|
|
{
|
|
|
|
if (!exact)
|
|
|
|
/* Returns the whole line now we know there's a word match. */
|
|
|
|
goto success;
|
|
|
|
else
|
|
|
|
/* Returns just this word match. */
|
|
|
|
goto success_in_beg_and_len;
|
|
|
|
}
|
|
|
|
if (len > 0)
|
|
|
|
{
|
|
|
|
/* Try a shorter length anchored at the same place. */
|
|
|
|
--len;
|
|
|
|
offset = kwsexec (kwset, beg, len, &kwsmatch);
|
|
|
|
|
|
|
|
if (offset == -1)
|
|
|
|
goto next_char; /* Try a different anchor. */
|
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
if (mb_cur_max > 1 && !using_utf8)
|
|
|
|
{
|
|
|
|
size_t bytes_left = offset;
|
|
|
|
while (bytes_left)
|
|
|
|
{
|
|
|
|
size_t mlen = mbrlen (beg, bytes_left, &mbs);
|
|
|
|
|
|
|
|
last_char = beg;
|
|
|
|
if (mlen == (size_t) -1 || mlen == 0)
|
|
|
|
{
|
|
|
|
/* Incomplete character: treat as single-byte. */
|
|
|
|
memset (&mbs, '\0', sizeof (mbstate_t));
|
|
|
|
beg++;
|
|
|
|
bytes_left--;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mlen == (size_t) -2)
|
|
|
|
{
|
|
|
|
/* Offset points inside multibyte character:
|
|
|
|
* no good. */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
beg += mlen;
|
|
|
|
bytes_left -= mlen;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bytes_left)
|
|
|
|
{
|
|
|
|
memset (&mbs, '\0', sizeof (mbstate_t));
|
|
|
|
goto next_char; /* Try a different anchor. */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif /* MBS_SUPPORT */
|
|
|
|
beg += offset;
|
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
/* The string at beg now matches first 3 chars of one of
|
|
|
|
the search strings (less if there are shorter search
|
|
|
|
strings). See if this is a real match. */
|
|
|
|
if (f_i_multibyte
|
|
|
|
&& Fimbexec (beg, len - offset, &kwsmatch.size[0],
|
|
|
|
exact))
|
|
|
|
goto next_char;
|
|
|
|
#endif /* MBS_SUPPORT */
|
|
|
|
len = kwsmatch.size[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-11-20 09:40:28 +00:00
|
|
|
else
|
|
|
|
goto success;
|
2005-05-14 06:09:12 +00:00
|
|
|
next_char:;
|
|
|
|
#ifdef MBS_SUPPORT
|
|
|
|
/* Advance to next character. For MB_CUR_MAX == 1 case this is handled
|
|
|
|
by ++beg above. */
|
|
|
|
if (mb_cur_max > 1)
|
|
|
|
{
|
|
|
|
if (using_utf8)
|
|
|
|
{
|
|
|
|
unsigned char c = *beg;
|
|
|
|
if (c >= 0xc2)
|
|
|
|
{
|
|
|
|
if (c < 0xe0)
|
|
|
|
++beg;
|
|
|
|
else if (c < 0xf0)
|
|
|
|
beg += 2;
|
|
|
|
else if (c < 0xf8)
|
|
|
|
beg += 3;
|
|
|
|
else if (c < 0xfc)
|
|
|
|
beg += 4;
|
|
|
|
else if (c < 0xfe)
|
|
|
|
beg += 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
size_t l = mbrlen (beg, buf + size - beg, &mbs);
|
|
|
|
|
|
|
|
last_char = beg;
|
|
|
|
if (l + 2 >= 2)
|
|
|
|
beg += l - 1;
|
|
|
|
else
|
|
|
|
memset (&mbs, '\0', sizeof (mbstate_t));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* MBS_SUPPORT */
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
|
|
|
|
2004-07-04 11:33:49 +00:00
|
|
|
failure:
|
2005-05-14 06:09:12 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
success:
|
2004-07-04 10:02:03 +00:00
|
|
|
#ifdef MBS_SUPPORT
|
2005-05-14 06:09:12 +00:00
|
|
|
if (mb_cur_max > 1 && !using_utf8)
|
2004-07-04 11:58:10 +00:00
|
|
|
{
|
2005-05-14 06:09:12 +00:00
|
|
|
end = beg + len;
|
|
|
|
while (end < buf + size)
|
|
|
|
{
|
|
|
|
size_t mlen = mbrlen (end, buf + size - end, &mbs);
|
|
|
|
if (mlen == (size_t) -1 || mlen == (size_t) -2 || mlen == 0)
|
|
|
|
{
|
|
|
|
memset (&mbs, '\0', sizeof (mbstate_t));
|
|
|
|
mlen = 1;
|
|
|
|
}
|
|
|
|
if (mlen == 1 && *end == eol)
|
|
|
|
break;
|
|
|
|
|
|
|
|
end += mlen;
|
|
|
|
}
|
2004-07-04 11:58:10 +00:00
|
|
|
}
|
2005-05-14 06:09:12 +00:00
|
|
|
else
|
2004-07-04 10:02:03 +00:00
|
|
|
#endif /* MBS_SUPPORT */
|
|
|
|
end = memchr (beg + len, eol, (buf + size) - (beg + len));
|
2005-05-14 06:09:12 +00:00
|
|
|
|
2004-07-04 10:02:03 +00:00
|
|
|
end++;
|
|
|
|
while (buf < beg && beg[-1] != eol)
|
1999-11-20 09:40:28 +00:00
|
|
|
--beg;
|
2004-07-04 11:33:49 +00:00
|
|
|
len = end - beg;
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
|
|
|
|
success_in_beg_and_len:
|
|
|
|
*match_size = len;
|
2004-07-04 10:02:03 +00:00
|
|
|
return beg - buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if HAVE_LIBPCRE
|
|
|
|
/* Compiled internal form of a Perl regular expression. */
|
|
|
|
static pcre *cre;
|
|
|
|
|
|
|
|
/* Additional information about the pattern. */
|
|
|
|
static pcre_extra *extra;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void
|
|
|
|
Pcompile (char const *pattern, size_t size)
|
|
|
|
{
|
|
|
|
#if !HAVE_LIBPCRE
|
|
|
|
error (2, 0, _("The -P option is not supported"));
|
|
|
|
#else
|
|
|
|
int e;
|
|
|
|
char const *ep;
|
|
|
|
char *re = xmalloc (4 * size + 7);
|
|
|
|
int flags = PCRE_MULTILINE | (match_icase ? PCRE_CASELESS : 0);
|
|
|
|
char const *patlim = pattern + size;
|
|
|
|
char *n = re;
|
|
|
|
char const *p;
|
|
|
|
char const *pnul;
|
|
|
|
|
|
|
|
/* FIXME: Remove this restriction. */
|
|
|
|
if (eolbyte != '\n')
|
|
|
|
error (2, 0, _("The -P and -z options cannot be combined"));
|
|
|
|
|
|
|
|
*n = '\0';
|
|
|
|
if (match_lines)
|
|
|
|
strcpy (n, "^(");
|
|
|
|
if (match_words)
|
|
|
|
strcpy (n, "\\b(");
|
|
|
|
n += strlen (n);
|
|
|
|
|
|
|
|
/* The PCRE interface doesn't allow NUL bytes in the pattern, so
|
|
|
|
replace each NUL byte in the pattern with the four characters
|
|
|
|
"\000", removing a preceding backslash if there are an odd
|
|
|
|
number of backslashes before the NUL.
|
|
|
|
|
|
|
|
FIXME: This method does not work with some multibyte character
|
|
|
|
encodings, notably Shift-JIS, where a multibyte character can end
|
|
|
|
in a backslash byte. */
|
|
|
|
for (p = pattern; (pnul = memchr (p, '\0', patlim - p)); p = pnul + 1)
|
|
|
|
{
|
|
|
|
memcpy (n, p, pnul - p);
|
|
|
|
n += pnul - p;
|
|
|
|
for (p = pnul; pattern < p && p[-1] == '\\'; p--)
|
|
|
|
continue;
|
|
|
|
n -= (pnul - p) & 1;
|
|
|
|
strcpy (n, "\\000");
|
|
|
|
n += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy (n, p, patlim - p);
|
|
|
|
n += patlim - p;
|
|
|
|
*n = '\0';
|
|
|
|
if (match_words)
|
|
|
|
strcpy (n, ")\\b");
|
|
|
|
if (match_lines)
|
|
|
|
strcpy (n, ")$");
|
|
|
|
|
|
|
|
cre = pcre_compile (re, flags, &ep, &e, pcre_maketables ());
|
|
|
|
if (!cre)
|
|
|
|
error (2, 0, ep);
|
|
|
|
|
|
|
|
extra = pcre_study (cre, 0, &ep);
|
|
|
|
if (ep)
|
|
|
|
error (2, 0, ep);
|
|
|
|
|
|
|
|
free (re);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static size_t
|
2005-05-14 03:02:22 +00:00
|
|
|
Pexecute (char const *buf, size_t size, size_t *match_size, int exact)
|
2004-07-04 10:02:03 +00:00
|
|
|
{
|
|
|
|
#if !HAVE_LIBPCRE
|
|
|
|
abort ();
|
|
|
|
return -1;
|
|
|
|
#else
|
|
|
|
/* This array must have at least two elements; everything after that
|
|
|
|
is just for performance improvement in pcre_exec. */
|
|
|
|
int sub[300];
|
|
|
|
|
|
|
|
int e = pcre_exec (cre, extra, buf, size, 0, 0,
|
|
|
|
sub, sizeof sub / sizeof *sub);
|
|
|
|
|
|
|
|
if (e <= 0)
|
|
|
|
{
|
|
|
|
switch (e)
|
|
|
|
{
|
|
|
|
case PCRE_ERROR_NOMATCH:
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
case PCRE_ERROR_NOMEMORY:
|
|
|
|
error (2, 0, _("Memory exhausted"));
|
|
|
|
|
|
|
|
default:
|
|
|
|
abort ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Narrow down to the line we've found. */
|
|
|
|
char const *beg = buf + sub[0];
|
|
|
|
char const *end = buf + sub[1];
|
|
|
|
char const *buflim = buf + size;
|
|
|
|
char eol = eolbyte;
|
|
|
|
if (!exact)
|
|
|
|
{
|
|
|
|
end = memchr (end, eol, buflim - end);
|
|
|
|
end++;
|
|
|
|
while (buf < beg && beg[-1] != eol)
|
|
|
|
--beg;
|
|
|
|
}
|
|
|
|
|
|
|
|
*match_size = end - beg;
|
|
|
|
return beg - buf;
|
|
|
|
}
|
|
|
|
#endif
|
1999-11-20 09:40:28 +00:00
|
|
|
}
|
2004-07-04 10:02:03 +00:00
|
|
|
|
|
|
|
struct matcher const matchers[] = {
|
|
|
|
{ "default", Gcompile, EGexecute },
|
|
|
|
{ "grep", Gcompile, EGexecute },
|
|
|
|
{ "egrep", Ecompile, EGexecute },
|
|
|
|
{ "awk", Ecompile, EGexecute },
|
|
|
|
{ "fgrep", Fcompile, Fexecute },
|
|
|
|
{ "perl", Pcompile, Pexecute },
|
|
|
|
{ "", 0, 0 },
|
|
|
|
};
|