1 /* $NetBSD: regexec.c,v 1.21 2009/02/12 05:06:54 lukem Exp $ */
4 * Copyright (c) 1992, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
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 * 3. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * @(#)regexec.c 8.3 (Berkeley) 3/20/94
38 * Copyright (c) 1992, 1993, 1994 Henry Spencer.
40 * This code is derived from software contributed to Berkeley by
43 * Redistribution and use in source and binary forms, with or without
44 * modification, are permitted provided that the following conditions
46 * 1. Redistributions of source code must retain the above copyright
47 * notice, this list of conditions and the following disclaimer.
48 * 2. Redistributions in binary form must reproduce the above copyright
49 * notice, this list of conditions and the following disclaimer in the
50 * documentation and/or other materials provided with the distribution.
51 * 3. All advertising materials mentioning features or use of this software
52 * must display the following acknowledgement:
53 * This product includes software developed by the University of
54 * California, Berkeley and its contributors.
55 * 4. Neither the name of the University nor the names of its contributors
56 * may be used to endorse or promote products derived from this software
57 * without specific prior written permission.
59 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
60 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
61 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
62 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
63 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
64 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
65 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
71 * @(#)regexec.c 8.3 (Berkeley) 3/20/94
74 #include <sys/cdefs.h>
75 #if defined(LIBC_SCCS) && !defined(lint)
77 static char sccsid
[] = "@(#)regexec.c 8.3 (Berkeley) 3/20/94";
79 __RCSID("$NetBSD: regexec.c,v 1.21 2009/02/12 05:06:54 lukem Exp $");
81 #endif /* LIBC_SCCS and not lint */
84 * the outer shell of regexec()
86 * This file includes engine.c *twice*, after muchos fiddling with the
87 * macros that code uses. This lets the same code operate on two different
88 * representations for state sets.
90 #include "namespace.h"
91 #include <sys/types.h>
102 __weak_alias(regexec
,_regexec
)
108 /* macros for manipulating states, small version */
109 #define states unsigned long
110 #define states1 unsigned long /* for later use in regexec() decision */
111 #define CLEAR(v) ((v) = 0)
112 #define SET0(v, n) ((v) &= ~((unsigned long)1 << (n)))
113 #define SET1(v, n) ((v) |= (unsigned long)1 << (n))
114 #define ISSET(v, n) (((v) & ((unsigned long)1 << (n))) != 0)
115 #define ASSIGN(d, s) ((d) = (s))
116 #define EQ(a, b) ((a) == (b))
117 #define STATEVARS int dummy /* dummy version */
118 #define STATESETUP(m, n) /* nothing */
119 #define STATETEARDOWN(m) /* nothing */
120 #define SETUP(v) ((v) = 0)
121 #define onestate unsigned long
122 #define INIT(o, n) ((o) = (unsigned long)1 << (n))
123 #define INC(o) ((o) <<= 1)
124 #define ISSTATEIN(v, o) (((v) & (o)) != 0)
125 /* some abbreviations; note that some of these know variable names! */
126 /* do "if I'm here, I can also be there" etc without branches */
127 #define FWD(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) << (n))
128 #define BACK(dst, src, n) ((dst) |= ((unsigned long)(src)&(here)) >> (n))
129 #define ISSETBACK(v, n) (((v) & ((unsigned long)here >> (n))) != 0)
131 #define SNAMES /* engine.c looks after details */
135 /* now undo things */
156 /* macros for manipulating states, large version */
157 #define states char *
158 #define CLEAR(v) memset(v, 0, (size_t)m->g->nstates)
159 #define SET0(v, n) ((v)[n] = 0)
160 #define SET1(v, n) ((v)[n] = 1)
161 #define ISSET(v, n) ((v)[n])
162 #define ASSIGN(d, s) memcpy(d, s, (size_t)m->g->nstates)
163 #define EQ(a, b) (memcmp(a, b, (size_t)m->g->nstates) == 0)
164 #define STATEVARS int vn; char *space
165 #define STATESETUP(m, nv) \
166 if (((m)->space = malloc((size_t)((nv)*(m)->g->nstates))) == NULL) \
167 return(REG_ESPACE); \
171 #define STATETEARDOWN(m) { free((m)->space); m->space = NULL; }
172 #define SETUP(v) ((v) = &m->space[(size_t)(m->vn++ * m->g->nstates)])
174 #define INIT(o, n) ((o) = (n))
175 #define INC(o) ((o)++)
176 #define ISSTATEIN(v, o) ((v)[o])
177 /* some abbreviations; note that some of these know variable names! */
178 /* do "if I'm here, I can also be there" etc without branches */
179 #define FWD(dst, src, n) ((dst)[here+(n)] |= (src)[here])
180 #define BACK(dst, src, n) ((dst)[here-(n)] |= (src)[here])
181 #define ISSETBACK(v, n) ((v)[here - (n)])
183 #define LNAMES /* flag */
188 - regexec - interface for matching
189 = extern int regexec(const regex_t *, const char *, size_t, \
190 = regmatch_t [], int);
191 = #define REG_NOTBOL 00001
192 = #define REG_NOTEOL 00002
193 = #define REG_STARTEND 00004
194 = #define REG_TRACE 00400 // tracing of execution
195 = #define REG_LARGE 01000 // force large representation
196 = #define REG_BACKR 02000 // force use of backref code
198 * We put this here so we can exploit knowledge of the state representation
199 * when choosing which matcher to call. Also, by this point the matchers
200 * have been prototyped.
202 int /* 0 success, REG_NOMATCH failure */
210 struct re_guts
*g
= preg
->re_g
;
213 # define GOODFLAGS(f) (f)
215 # define GOODFLAGS(f) ((f)&(REG_NOTBOL|REG_NOTEOL|REG_STARTEND))
218 _DIAGASSERT(preg
!= NULL
);
219 _DIAGASSERT(string
!= NULL
);
221 if (preg
->re_magic
!= MAGIC1
|| g
->magic
!= MAGIC2
)
223 assert(!(g
->iflags
&BAD
));
224 if (g
->iflags
&BAD
) /* backstop for no-debug case */
226 eflags
= GOODFLAGS(eflags
);
228 s
= __UNCONST(string
);
230 if (g
->nstates
<= (sopno
)(CHAR_BIT
*sizeof(states1
)) && !(eflags
®_LARGE
))
231 return(smatcher(g
, s
, nmatch
, pmatch
, eflags
));
233 return(lmatcher(g
, s
, nmatch
, pmatch
, eflags
));