xref: /freebsd/lib/libc/regex/engine.c (revision 93ea9f9f)
1 /*-
2  * Copyright (c) 1992, 1993, 1994 Henry Spencer.
3  * Copyright (c) 1992, 1993, 1994
4  *	The Regents of the University of California.  All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * Henry Spencer.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *	@(#)engine.c	8.5 (Berkeley) 3/20/94
34  */
35 
36 #include <sys/cdefs.h>
37 __FBSDID("$FreeBSD$");
38 
39 /*
40  * The matching engine and friends.  This file is #included by regexec.c
41  * after suitable #defines of a variety of macros used herein, so that
42  * different state representations can be used without duplicating masses
43  * of code.
44  */
45 
46 #ifdef SNAMES
47 #define	matcher	smatcher
48 #define	fast	sfast
49 #define	slow	sslow
50 #define	dissect	sdissect
51 #define	backref	sbackref
52 #define	step	sstep
53 #define	print	sprint
54 #define	at	sat
55 #define	match	smat
56 #endif
57 #ifdef LNAMES
58 #define	matcher	lmatcher
59 #define	fast	lfast
60 #define	slow	lslow
61 #define	dissect	ldissect
62 #define	backref	lbackref
63 #define	step	lstep
64 #define	print	lprint
65 #define	at	lat
66 #define	match	lmat
67 #endif
68 #ifdef MNAMES
69 #define	matcher	mmatcher
70 #define	fast	mfast
71 #define	slow	mslow
72 #define	dissect	mdissect
73 #define	backref	mbackref
74 #define	step	mstep
75 #define	print	mprint
76 #define	at	mat
77 #define	match	mmat
78 #endif
79 
80 /* another structure passed up and down to avoid zillions of parameters */
81 struct match {
82 	struct re_guts *g;
83 	int eflags;
84 	regmatch_t *pmatch;	/* [nsub+1] (0 element unused) */
85 	const char *offp;	/* offsets work from here */
86 	const char *beginp;	/* start of string -- virtual NUL precedes */
87 	const char *endp;	/* end of string -- virtual NUL here */
88 	const char *coldp;	/* can be no match starting before here */
89 	const char **lastpos;	/* [nplus+1] */
90 	STATEVARS;
91 	states st;		/* current states */
92 	states fresh;		/* states for a fresh start */
93 	states tmp;		/* temporary */
94 	states empty;		/* empty set of states */
95 	mbstate_t mbs;		/* multibyte conversion state */
96 };
97 
98 /* ========= begin header generated by ./mkh ========= */
99 #ifdef __cplusplus
100 extern "C" {
101 #endif
102 
103 /* === engine.c === */
104 static int matcher(struct re_guts *g, const char *string, size_t nmatch, regmatch_t pmatch[], int eflags);
105 static const char *dissect(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst);
106 static const char *backref(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst, sopno lev, int);
107 static const char *fast(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst);
108 static const char *slow(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst);
109 static states step(struct re_guts *g, sopno start, sopno stop, states bef, wint_t ch, states aft);
110 #define MAX_RECURSION	100
111 #define	BOL	(OUT-1)
112 #define	EOL	(BOL-1)
113 #define	BOLEOL	(BOL-2)
114 #define	NOTHING	(BOL-3)
115 #define	BOW	(BOL-4)
116 #define	EOW	(BOL-5)
117 #define	BADCHAR	(BOL-6)
118 #define	NONCHAR(c)	((c) <= OUT)
119 #ifdef REDEBUG
120 static void print(struct match *m, const char *caption, states st, int ch, FILE *d);
121 #endif
122 #ifdef REDEBUG
123 static void at(struct match *m, const char *title, const char *start, const char *stop, sopno startst, sopno stopst);
124 #endif
125 #ifdef REDEBUG
126 static const char *pchar(int ch);
127 #endif
128 
129 #ifdef __cplusplus
130 }
131 #endif
132 /* ========= end header generated by ./mkh ========= */
133 
134 #ifdef REDEBUG
135 #define	SP(t, s, c)	print(m, t, s, c, stdout)
136 #define	AT(t, p1, p2, s1, s2)	at(m, t, p1, p2, s1, s2)
137 #define	NOTE(str)	{ if (m->eflags&REG_TRACE) printf("=%s\n", (str)); }
138 #else
139 #define	SP(t, s, c)	/* nothing */
140 #define	AT(t, p1, p2, s1, s2)	/* nothing */
141 #define	NOTE(s)	/* nothing */
142 #endif
143 
144 /*
145  - matcher - the actual matching engine
146  == static int matcher(struct re_guts *g, const char *string, \
147  ==	size_t nmatch, regmatch_t pmatch[], int eflags);
148  */
149 static int			/* 0 success, REG_NOMATCH failure */
150 matcher(struct re_guts *g,
151 	const char *string,
152 	size_t nmatch,
153 	regmatch_t pmatch[],
154 	int eflags)
155 {
156 	const char *endp;
157 	size_t i;
158 	struct match mv;
159 	struct match *m = &mv;
160 	const char *dp = NULL;
161 	const sopno gf = g->firststate+1;	/* +1 for OEND */
162 	const sopno gl = g->laststate;
163 	const char *start;
164 	const char *stop;
165 	/* Boyer-Moore algorithms variables */
166 	const char *pp;
167 	int cj, mj;
168 	const char *mustfirst;
169 	const char *mustlast;
170 	int *matchjump;
171 	int *charjump;
172 
173 	/* simplify the situation where possible */
174 	if (g->cflags&REG_NOSUB)
175 		nmatch = 0;
176 	if (eflags&REG_STARTEND) {
177 		start = string + pmatch[0].rm_so;
178 		stop = string + pmatch[0].rm_eo;
179 	} else {
180 		start = string;
181 		stop = start + strlen(start);
182 	}
183 	if (stop < start)
184 		return(REG_INVARG);
185 
186 	/* prescreening; this does wonders for this rather slow code */
187 	if (g->must != NULL) {
188 		if (g->charjump != NULL && g->matchjump != NULL) {
189 			mustfirst = g->must;
190 			mustlast = g->must + g->mlen - 1;
191 			charjump = g->charjump;
192 			matchjump = g->matchjump;
193 			pp = mustlast;
194 			for (dp = start+g->mlen-1; dp < stop;) {
195 				/* Fast skip non-matches */
196 				while (dp < stop && charjump[(int)*dp])
197 					dp += charjump[(int)*dp];
198 
199 				if (dp >= stop)
200 					break;
201 
202 				/* Greedy matcher */
203 				/* We depend on not being used for
204 				 * for strings of length 1
205 				 */
206 				while (*--dp == *--pp && pp != mustfirst);
207 
208 				if (*dp == *pp)
209 					break;
210 
211 				/* Jump to next possible match */
212 				mj = matchjump[pp - mustfirst];
213 				cj = charjump[(int)*dp];
214 				dp += (cj < mj ? mj : cj);
215 				pp = mustlast;
216 			}
217 			if (pp != mustfirst)
218 				return(REG_NOMATCH);
219 		} else {
220 			for (dp = start; dp < stop; dp++)
221 				if (*dp == g->must[0] &&
222 				    stop - dp >= g->mlen &&
223 				    memcmp(dp, g->must, (size_t)g->mlen) == 0)
224 					break;
225 			if (dp == stop)		/* we didn't find g->must */
226 				return(REG_NOMATCH);
227 		}
228 	}
229 
230 	/* match struct setup */
231 	m->g = g;
232 	m->eflags = eflags;
233 	m->pmatch = NULL;
234 	m->lastpos = NULL;
235 	m->offp = string;
236 	m->beginp = start;
237 	m->endp = stop;
238 	STATESETUP(m, 4);
239 	SETUP(m->st);
240 	SETUP(m->fresh);
241 	SETUP(m->tmp);
242 	SETUP(m->empty);
243 	CLEAR(m->empty);
244 	ZAPSTATE(&m->mbs);
245 
246 	/* Adjust start according to moffset, to speed things up */
247 	if (dp != NULL && g->moffset > -1)
248 		start = ((dp - g->moffset) < start) ? start : dp - g->moffset;
249 
250 	SP("mloop", m->st, *start);
251 
252 	/* this loop does only one repetition except for backrefs */
253 	for (;;) {
254 		endp = fast(m, start, stop, gf, gl);
255 		if (endp == NULL) {		/* a miss */
256 			if (m->pmatch != NULL)
257 				free((char *)m->pmatch);
258 			if (m->lastpos != NULL)
259 				free((char *)m->lastpos);
260 			STATETEARDOWN(m);
261 			return(REG_NOMATCH);
262 		}
263 		if (nmatch == 0 && !g->backrefs)
264 			break;		/* no further info needed */
265 
266 		/* where? */
267 		assert(m->coldp != NULL);
268 		for (;;) {
269 			NOTE("finding start");
270 			endp = slow(m, m->coldp, stop, gf, gl);
271 			if (endp != NULL)
272 				break;
273 			assert(m->coldp < m->endp);
274 			m->coldp += XMBRTOWC(NULL, m->coldp,
275 			    m->endp - m->coldp, &m->mbs, 0);
276 		}
277 		if (nmatch == 1 && !g->backrefs)
278 			break;		/* no further info needed */
279 
280 		/* oh my, he wants the subexpressions... */
281 		if (m->pmatch == NULL)
282 			m->pmatch = (regmatch_t *)malloc((m->g->nsub + 1) *
283 							sizeof(regmatch_t));
284 		if (m->pmatch == NULL) {
285 			STATETEARDOWN(m);
286 			return(REG_ESPACE);
287 		}
288 		for (i = 1; i <= m->g->nsub; i++)
289 			m->pmatch[i].rm_so = m->pmatch[i].rm_eo = -1;
290 		if (!g->backrefs && !(m->eflags&REG_BACKR)) {
291 			NOTE("dissecting");
292 			dp = dissect(m, m->coldp, endp, gf, gl);
293 		} else {
294 			if (g->nplus > 0 && m->lastpos == NULL)
295 				m->lastpos = malloc((g->nplus+1) *
296 						sizeof(const char *));
297 			if (g->nplus > 0 && m->lastpos == NULL) {
298 				free(m->pmatch);
299 				STATETEARDOWN(m);
300 				return(REG_ESPACE);
301 			}
302 			NOTE("backref dissect");
303 			dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0);
304 		}
305 		if (dp != NULL)
306 			break;
307 
308 		/* uh-oh... we couldn't find a subexpression-level match */
309 		assert(g->backrefs);	/* must be back references doing it */
310 		assert(g->nplus == 0 || m->lastpos != NULL);
311 		for (;;) {
312 			if (dp != NULL || endp <= m->coldp)
313 				break;		/* defeat */
314 			NOTE("backoff");
315 			endp = slow(m, m->coldp, endp-1, gf, gl);
316 			if (endp == NULL)
317 				break;		/* defeat */
318 			/* try it on a shorter possibility */
319 #ifndef NDEBUG
320 			for (i = 1; i <= m->g->nsub; i++) {
321 				assert(m->pmatch[i].rm_so == -1);
322 				assert(m->pmatch[i].rm_eo == -1);
323 			}
324 #endif
325 			NOTE("backoff dissect");
326 			dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0);
327 		}
328 		assert(dp == NULL || dp == endp);
329 		if (dp != NULL)		/* found a shorter one */
330 			break;
331 
332 		/* despite initial appearances, there is no match here */
333 		NOTE("false alarm");
334 		/* recycle starting later */
335 		start = m->coldp + XMBRTOWC(NULL, m->coldp,
336 		    stop - m->coldp, &m->mbs, 0);
337 		assert(start <= stop);
338 	}
339 
340 	/* fill in the details if requested */
341 	if (nmatch > 0) {
342 		pmatch[0].rm_so = m->coldp - m->offp;
343 		pmatch[0].rm_eo = endp - m->offp;
344 	}
345 	if (nmatch > 1) {
346 		assert(m->pmatch != NULL);
347 		for (i = 1; i < nmatch; i++)
348 			if (i <= m->g->nsub)
349 				pmatch[i] = m->pmatch[i];
350 			else {
351 				pmatch[i].rm_so = -1;
352 				pmatch[i].rm_eo = -1;
353 			}
354 	}
355 
356 	if (m->pmatch != NULL)
357 		free((char *)m->pmatch);
358 	if (m->lastpos != NULL)
359 		free((char *)m->lastpos);
360 	STATETEARDOWN(m);
361 	return(0);
362 }
363 
364 /*
365  - dissect - figure out what matched what, no back references
366  == static const char *dissect(struct match *m, const char *start, \
367  ==	const char *stop, sopno startst, sopno stopst);
368  */
369 static const char *		/* == stop (success) always */
370 dissect(struct match *m,
371 	const char *start,
372 	const char *stop,
373 	sopno startst,
374 	sopno stopst)
375 {
376 	int i;
377 	sopno ss;		/* start sop of current subRE */
378 	sopno es;		/* end sop of current subRE */
379 	const char *sp;		/* start of string matched by it */
380 	const char *stp;	/* string matched by it cannot pass here */
381 	const char *rest;	/* start of rest of string */
382 	const char *tail;	/* string unmatched by rest of RE */
383 	sopno ssub;		/* start sop of subsubRE */
384 	sopno esub;		/* end sop of subsubRE */
385 	const char *ssp;	/* start of string matched by subsubRE */
386 	const char *sep;	/* end of string matched by subsubRE */
387 	const char *oldssp;	/* previous ssp */
388 	const char *dp;
389 
390 	AT("diss", start, stop, startst, stopst);
391 	sp = start;
392 	for (ss = startst; ss < stopst; ss = es) {
393 		/* identify end of subRE */
394 		es = ss;
395 		switch (OP(m->g->strip[es])) {
396 		case OPLUS_:
397 		case OQUEST_:
398 			es += OPND(m->g->strip[es]);
399 			break;
400 		case OCH_:
401 			while (OP(m->g->strip[es]) != O_CH)
402 				es += OPND(m->g->strip[es]);
403 			break;
404 		}
405 		es++;
406 
407 		/* figure out what it matched */
408 		switch (OP(m->g->strip[ss])) {
409 		case OEND:
410 			assert(nope);
411 			break;
412 		case OCHAR:
413 			sp += XMBRTOWC(NULL, sp, stop - start, &m->mbs, 0);
414 			break;
415 		case OBOL:
416 		case OEOL:
417 		case OBOW:
418 		case OEOW:
419 			break;
420 		case OANY:
421 		case OANYOF:
422 			sp += XMBRTOWC(NULL, sp, stop - start, &m->mbs, 0);
423 			break;
424 		case OBACK_:
425 		case O_BACK:
426 			assert(nope);
427 			break;
428 		/* cases where length of match is hard to find */
429 		case OQUEST_:
430 			stp = stop;
431 			for (;;) {
432 				/* how long could this one be? */
433 				rest = slow(m, sp, stp, ss, es);
434 				assert(rest != NULL);	/* it did match */
435 				/* could the rest match the rest? */
436 				tail = slow(m, rest, stop, es, stopst);
437 				if (tail == stop)
438 					break;		/* yes! */
439 				/* no -- try a shorter match for this one */
440 				stp = rest - 1;
441 				assert(stp >= sp);	/* it did work */
442 			}
443 			ssub = ss + 1;
444 			esub = es - 1;
445 			/* did innards match? */
446 			if (slow(m, sp, rest, ssub, esub) != NULL) {
447 				dp = dissect(m, sp, rest, ssub, esub);
448 				assert(dp == rest);
449 			} else		/* no */
450 				assert(sp == rest);
451 			sp = rest;
452 			break;
453 		case OPLUS_:
454 			stp = stop;
455 			for (;;) {
456 				/* how long could this one be? */
457 				rest = slow(m, sp, stp, ss, es);
458 				assert(rest != NULL);	/* it did match */
459 				/* could the rest match the rest? */
460 				tail = slow(m, rest, stop, es, stopst);
461 				if (tail == stop)
462 					break;		/* yes! */
463 				/* no -- try a shorter match for this one */
464 				stp = rest - 1;
465 				assert(stp >= sp);	/* it did work */
466 			}
467 			ssub = ss + 1;
468 			esub = es - 1;
469 			ssp = sp;
470 			oldssp = ssp;
471 			for (;;) {	/* find last match of innards */
472 				sep = slow(m, ssp, rest, ssub, esub);
473 				if (sep == NULL || sep == ssp)
474 					break;	/* failed or matched null */
475 				oldssp = ssp;	/* on to next try */
476 				ssp = sep;
477 			}
478 			if (sep == NULL) {
479 				/* last successful match */
480 				sep = ssp;
481 				ssp = oldssp;
482 			}
483 			assert(sep == rest);	/* must exhaust substring */
484 			assert(slow(m, ssp, sep, ssub, esub) == rest);
485 			dp = dissect(m, ssp, sep, ssub, esub);
486 			assert(dp == sep);
487 			sp = rest;
488 			break;
489 		case OCH_:
490 			stp = stop;
491 			for (;;) {
492 				/* how long could this one be? */
493 				rest = slow(m, sp, stp, ss, es);
494 				assert(rest != NULL);	/* it did match */
495 				/* could the rest match the rest? */
496 				tail = slow(m, rest, stop, es, stopst);
497 				if (tail == stop)
498 					break;		/* yes! */
499 				/* no -- try a shorter match for this one */
500 				stp = rest - 1;
501 				assert(stp >= sp);	/* it did work */
502 			}
503 			ssub = ss + 1;
504 			esub = ss + OPND(m->g->strip[ss]) - 1;
505 			assert(OP(m->g->strip[esub]) == OOR1);
506 			for (;;) {	/* find first matching branch */
507 				if (slow(m, sp, rest, ssub, esub) == rest)
508 					break;	/* it matched all of it */
509 				/* that one missed, try next one */
510 				assert(OP(m->g->strip[esub]) == OOR1);
511 				esub++;
512 				assert(OP(m->g->strip[esub]) == OOR2);
513 				ssub = esub + 1;
514 				esub += OPND(m->g->strip[esub]);
515 				if (OP(m->g->strip[esub]) == OOR2)
516 					esub--;
517 				else
518 					assert(OP(m->g->strip[esub]) == O_CH);
519 			}
520 			dp = dissect(m, sp, rest, ssub, esub);
521 			assert(dp == rest);
522 			sp = rest;
523 			break;
524 		case O_PLUS:
525 		case O_QUEST:
526 		case OOR1:
527 		case OOR2:
528 		case O_CH:
529 			assert(nope);
530 			break;
531 		case OLPAREN:
532 			i = OPND(m->g->strip[ss]);
533 			assert(0 < i && i <= m->g->nsub);
534 			m->pmatch[i].rm_so = sp - m->offp;
535 			break;
536 		case ORPAREN:
537 			i = OPND(m->g->strip[ss]);
538 			assert(0 < i && i <= m->g->nsub);
539 			m->pmatch[i].rm_eo = sp - m->offp;
540 			break;
541 		default:		/* uh oh */
542 			assert(nope);
543 			break;
544 		}
545 	}
546 
547 	assert(sp == stop);
548 	return(sp);
549 }
550 
551 /*
552  - backref - figure out what matched what, figuring in back references
553  == static const char *backref(struct match *m, const char *start, \
554  ==	const char *stop, sopno startst, sopno stopst, sopno lev);
555  */
556 static const char *		/* == stop (success) or NULL (failure) */
557 backref(struct match *m,
558 	const char *start,
559 	const char *stop,
560 	sopno startst,
561 	sopno stopst,
562 	sopno lev,		/* PLUS nesting level */
563 	int rec)
564 {
565 	int i;
566 	sopno ss;		/* start sop of current subRE */
567 	const char *sp;		/* start of string matched by it */
568 	sopno ssub;		/* start sop of subsubRE */
569 	sopno esub;		/* end sop of subsubRE */
570 	const char *ssp;	/* start of string matched by subsubRE */
571 	const char *dp;
572 	size_t len;
573 	int hard;
574 	sop s;
575 	regoff_t offsave;
576 	cset *cs;
577 	wint_t wc;
578 
579 	AT("back", start, stop, startst, stopst);
580 	sp = start;
581 
582 	/* get as far as we can with easy stuff */
583 	hard = 0;
584 	for (ss = startst; !hard && ss < stopst; ss++)
585 		switch (OP(s = m->g->strip[ss])) {
586 		case OCHAR:
587 			if (sp == stop)
588 				return(NULL);
589 			sp += XMBRTOWC(&wc, sp, stop - sp, &m->mbs, BADCHAR);
590 			if (wc != OPND(s))
591 				return(NULL);
592 			break;
593 		case OANY:
594 			if (sp == stop)
595 				return(NULL);
596 			sp += XMBRTOWC(&wc, sp, stop - sp, &m->mbs, BADCHAR);
597 			if (wc == BADCHAR)
598 				return (NULL);
599 			break;
600 		case OANYOF:
601 			if (sp == stop)
602 				return (NULL);
603 			cs = &m->g->sets[OPND(s)];
604 			sp += XMBRTOWC(&wc, sp, stop - sp, &m->mbs, BADCHAR);
605 			if (wc == BADCHAR || !CHIN(cs, wc))
606 				return(NULL);
607 			break;
608 		case OBOL:
609 			if ((sp == m->beginp && !(m->eflags&REG_NOTBOL)) ||
610 			    (sp > m->offp && sp < m->endp &&
611 			    *(sp-1) == '\n' && (m->g->cflags&REG_NEWLINE)))
612 				{ /* yes */ }
613 			else
614 				return(NULL);
615 			break;
616 		case OEOL:
617 			if ( (sp == m->endp && !(m->eflags&REG_NOTEOL)) ||
618 					(sp < m->endp && *sp == '\n' &&
619 						(m->g->cflags&REG_NEWLINE)) )
620 				{ /* yes */ }
621 			else
622 				return(NULL);
623 			break;
624 		case OBOW:
625 			if (sp < m->endp && ISWORD(*sp) &&
626 			    ((sp == m->beginp && !(m->eflags&REG_NOTBOL)) ||
627 			    (sp > m->offp && !ISWORD(*(sp-1)))))
628 				{ /* yes */ }
629 			else
630 				return(NULL);
631 			break;
632 		case OEOW:
633 			if (( (sp == m->endp && !(m->eflags&REG_NOTEOL)) ||
634 					(sp < m->endp && *sp == '\n' &&
635 						(m->g->cflags&REG_NEWLINE)) ||
636 					(sp < m->endp && !ISWORD(*sp)) ) &&
637 					(sp > m->beginp && ISWORD(*(sp-1))) )
638 				{ /* yes */ }
639 			else
640 				return(NULL);
641 			break;
642 		case O_QUEST:
643 			break;
644 		case OOR1:	/* matches null but needs to skip */
645 			ss++;
646 			s = m->g->strip[ss];
647 			do {
648 				assert(OP(s) == OOR2);
649 				ss += OPND(s);
650 			} while (OP(s = m->g->strip[ss]) != O_CH);
651 			/* note that the ss++ gets us past the O_CH */
652 			break;
653 		default:	/* have to make a choice */
654 			hard = 1;
655 			break;
656 		}
657 	if (!hard) {		/* that was it! */
658 		if (sp != stop)
659 			return(NULL);
660 		return(sp);
661 	}
662 	ss--;			/* adjust for the for's final increment */
663 
664 	/* the hard stuff */
665 	AT("hard", sp, stop, ss, stopst);
666 	s = m->g->strip[ss];
667 	switch (OP(s)) {
668 	case OBACK_:		/* the vilest depths */
669 		i = OPND(s);
670 		assert(0 < i && i <= m->g->nsub);
671 		if (m->pmatch[i].rm_eo == -1)
672 			return(NULL);
673 		assert(m->pmatch[i].rm_so != -1);
674 		len = m->pmatch[i].rm_eo - m->pmatch[i].rm_so;
675 		if (len == 0 && rec++ > MAX_RECURSION)
676 			return(NULL);
677 		assert(stop - m->beginp >= len);
678 		if (sp > stop - len)
679 			return(NULL);	/* not enough left to match */
680 		ssp = m->offp + m->pmatch[i].rm_so;
681 		if (memcmp(sp, ssp, len) != 0)
682 			return(NULL);
683 		while (m->g->strip[ss] != SOP(O_BACK, i))
684 			ss++;
685 		return(backref(m, sp+len, stop, ss+1, stopst, lev, rec));
686 	case OQUEST_:		/* to null or not */
687 		dp = backref(m, sp, stop, ss+1, stopst, lev, rec);
688 		if (dp != NULL)
689 			return(dp);	/* not */
690 		return(backref(m, sp, stop, ss+OPND(s)+1, stopst, lev, rec));
691 	case OPLUS_:
692 		assert(m->lastpos != NULL);
693 		assert(lev+1 <= m->g->nplus);
694 		m->lastpos[lev+1] = sp;
695 		return(backref(m, sp, stop, ss+1, stopst, lev+1, rec));
696 	case O_PLUS:
697 		if (sp == m->lastpos[lev])	/* last pass matched null */
698 			return(backref(m, sp, stop, ss+1, stopst, lev-1, rec));
699 		/* try another pass */
700 		m->lastpos[lev] = sp;
701 		dp = backref(m, sp, stop, ss-OPND(s)+1, stopst, lev, rec);
702 		if (dp == NULL)
703 			return(backref(m, sp, stop, ss+1, stopst, lev-1, rec));
704 		else
705 			return(dp);
706 	case OCH_:		/* find the right one, if any */
707 		ssub = ss + 1;
708 		esub = ss + OPND(s) - 1;
709 		assert(OP(m->g->strip[esub]) == OOR1);
710 		for (;;) {	/* find first matching branch */
711 			dp = backref(m, sp, stop, ssub, esub, lev, rec);
712 			if (dp != NULL)
713 				return(dp);
714 			/* that one missed, try next one */
715 			if (OP(m->g->strip[esub]) == O_CH)
716 				return(NULL);	/* there is none */
717 			esub++;
718 			assert(OP(m->g->strip[esub]) == OOR2);
719 			ssub = esub + 1;
720 			esub += OPND(m->g->strip[esub]);
721 			if (OP(m->g->strip[esub]) == OOR2)
722 				esub--;
723 			else
724 				assert(OP(m->g->strip[esub]) == O_CH);
725 		}
726 		/* NOTREACHED */
727 		break;
728 	case OLPAREN:		/* must undo assignment if rest fails */
729 		i = OPND(s);
730 		assert(0 < i && i <= m->g->nsub);
731 		offsave = m->pmatch[i].rm_so;
732 		m->pmatch[i].rm_so = sp - m->offp;
733 		dp = backref(m, sp, stop, ss+1, stopst, lev, rec);
734 		if (dp != NULL)
735 			return(dp);
736 		m->pmatch[i].rm_so = offsave;
737 		return(NULL);
738 	case ORPAREN:		/* must undo assignment if rest fails */
739 		i = OPND(s);
740 		assert(0 < i && i <= m->g->nsub);
741 		offsave = m->pmatch[i].rm_eo;
742 		m->pmatch[i].rm_eo = sp - m->offp;
743 		dp = backref(m, sp, stop, ss+1, stopst, lev, rec);
744 		if (dp != NULL)
745 			return(dp);
746 		m->pmatch[i].rm_eo = offsave;
747 		return(NULL);
748 	default:		/* uh oh */
749 		assert(nope);
750 		break;
751 	}
752 
753 	/* "can't happen" */
754 	assert(nope);
755 	/* NOTREACHED */
756 	return "shut up gcc";
757 }
758 
759 /*
760  - fast - step through the string at top speed
761  == static const char *fast(struct match *m, const char *start, \
762  ==	const char *stop, sopno startst, sopno stopst);
763  */
764 static const char *		/* where tentative match ended, or NULL */
765 fast(	struct match *m,
766 	const char *start,
767 	const char *stop,
768 	sopno startst,
769 	sopno stopst)
770 {
771 	states st = m->st;
772 	states fresh = m->fresh;
773 	states tmp = m->tmp;
774 	const char *p = start;
775 	wint_t c;
776 	wint_t lastc;		/* previous c */
777 	wint_t flagch;
778 	int i;
779 	const char *coldp;	/* last p after which no match was underway */
780 	size_t clen;
781 
782 	CLEAR(st);
783 	SET1(st, startst);
784 	SP("fast", st, *p);
785 	st = step(m->g, startst, stopst, st, NOTHING, st);
786 	ASSIGN(fresh, st);
787 	SP("start", st, *p);
788 	coldp = NULL;
789 	if (start == m->offp || (start == m->beginp && !(m->eflags&REG_NOTBOL)))
790 		c = OUT;
791 	else {
792 		/*
793 		 * XXX Wrong if the previous character was multi-byte.
794 		 * Newline never is (in encodings supported by FreeBSD),
795 		 * so this only breaks the ISWORD tests below.
796 		 */
797 		c = (uch)*(start - 1);
798 	}
799 	for (;;) {
800 		/* next character */
801 		lastc = c;
802 		if (p == m->endp) {
803 			clen = 0;
804 			c = OUT;
805 		} else
806 			clen = XMBRTOWC(&c, p, m->endp - p, &m->mbs, BADCHAR);
807 		if (EQ(st, fresh))
808 			coldp = p;
809 
810 		/* is there an EOL and/or BOL between lastc and c? */
811 		flagch = '\0';
812 		i = 0;
813 		if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
814 				(lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
815 			flagch = BOL;
816 			i = m->g->nbol;
817 		}
818 		if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
819 				(c == OUT && !(m->eflags&REG_NOTEOL)) ) {
820 			flagch = (flagch == BOL) ? BOLEOL : EOL;
821 			i += m->g->neol;
822 		}
823 		if (i != 0) {
824 			for (; i > 0; i--)
825 				st = step(m->g, startst, stopst, st, flagch, st);
826 			SP("boleol", st, c);
827 		}
828 
829 		/* how about a word boundary? */
830 		if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
831 					(c != OUT && ISWORD(c)) ) {
832 			flagch = BOW;
833 		}
834 		if ( (lastc != OUT && ISWORD(lastc)) &&
835 				(flagch == EOL || (c != OUT && !ISWORD(c))) ) {
836 			flagch = EOW;
837 		}
838 		if (flagch == BOW || flagch == EOW) {
839 			st = step(m->g, startst, stopst, st, flagch, st);
840 			SP("boweow", st, c);
841 		}
842 
843 		/* are we done? */
844 		if (ISSET(st, stopst) || p == stop || clen > stop - p)
845 			break;		/* NOTE BREAK OUT */
846 
847 		/* no, we must deal with this character */
848 		ASSIGN(tmp, st);
849 		ASSIGN(st, fresh);
850 		assert(c != OUT);
851 		st = step(m->g, startst, stopst, tmp, c, st);
852 		SP("aft", st, c);
853 		assert(EQ(step(m->g, startst, stopst, st, NOTHING, st), st));
854 		p += clen;
855 	}
856 
857 	assert(coldp != NULL);
858 	m->coldp = coldp;
859 	if (ISSET(st, stopst))
860 		return(p+XMBRTOWC(NULL, p, stop - p, &m->mbs, 0));
861 	else
862 		return(NULL);
863 }
864 
865 /*
866  - slow - step through the string more deliberately
867  == static const char *slow(struct match *m, const char *start, \
868  ==	const char *stop, sopno startst, sopno stopst);
869  */
870 static const char *		/* where it ended */
871 slow(	struct match *m,
872 	const char *start,
873 	const char *stop,
874 	sopno startst,
875 	sopno stopst)
876 {
877 	states st = m->st;
878 	states empty = m->empty;
879 	states tmp = m->tmp;
880 	const char *p = start;
881 	wint_t c;
882 	wint_t lastc;		/* previous c */
883 	wint_t flagch;
884 	int i;
885 	const char *matchp;	/* last p at which a match ended */
886 	size_t clen;
887 
888 	AT("slow", start, stop, startst, stopst);
889 	CLEAR(st);
890 	SET1(st, startst);
891 	SP("sstart", st, *p);
892 	st = step(m->g, startst, stopst, st, NOTHING, st);
893 	matchp = NULL;
894 	if (start == m->offp || (start == m->beginp && !(m->eflags&REG_NOTBOL)))
895 		c = OUT;
896 	else {
897 		/*
898 		 * XXX Wrong if the previous character was multi-byte.
899 		 * Newline never is (in encodings supported by FreeBSD),
900 		 * so this only breaks the ISWORD tests below.
901 		 */
902 		c = (uch)*(start - 1);
903 	}
904 	for (;;) {
905 		/* next character */
906 		lastc = c;
907 		if (p == m->endp) {
908 			c = OUT;
909 			clen = 0;
910 		} else
911 			clen = XMBRTOWC(&c, p, m->endp - p, &m->mbs, BADCHAR);
912 
913 		/* is there an EOL and/or BOL between lastc and c? */
914 		flagch = '\0';
915 		i = 0;
916 		if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
917 				(lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
918 			flagch = BOL;
919 			i = m->g->nbol;
920 		}
921 		if ( (c == '\n' && m->g->cflags&REG_NEWLINE) ||
922 				(c == OUT && !(m->eflags&REG_NOTEOL)) ) {
923 			flagch = (flagch == BOL) ? BOLEOL : EOL;
924 			i += m->g->neol;
925 		}
926 		if (i != 0) {
927 			for (; i > 0; i--)
928 				st = step(m->g, startst, stopst, st, flagch, st);
929 			SP("sboleol", st, c);
930 		}
931 
932 		/* how about a word boundary? */
933 		if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
934 					(c != OUT && ISWORD(c)) ) {
935 			flagch = BOW;
936 		}
937 		if ( (lastc != OUT && ISWORD(lastc)) &&
938 				(flagch == EOL || (c != OUT && !ISWORD(c))) ) {
939 			flagch = EOW;
940 		}
941 		if (flagch == BOW || flagch == EOW) {
942 			st = step(m->g, startst, stopst, st, flagch, st);
943 			SP("sboweow", st, c);
944 		}
945 
946 		/* are we done? */
947 		if (ISSET(st, stopst))
948 			matchp = p;
949 		if (EQ(st, empty) || p == stop || clen > stop - p)
950 			break;		/* NOTE BREAK OUT */
951 
952 		/* no, we must deal with this character */
953 		ASSIGN(tmp, st);
954 		ASSIGN(st, empty);
955 		assert(c != OUT);
956 		st = step(m->g, startst, stopst, tmp, c, st);
957 		SP("saft", st, c);
958 		assert(EQ(step(m->g, startst, stopst, st, NOTHING, st), st));
959 		p += clen;
960 	}
961 
962 	return(matchp);
963 }
964 
965 
966 /*
967  - step - map set of states reachable before char to set reachable after
968  == static states step(struct re_guts *g, sopno start, sopno stop, \
969  ==	states bef, int ch, states aft);
970  == #define	BOL	(OUT-1)
971  == #define	EOL	(BOL-1)
972  == #define	BOLEOL	(BOL-2)
973  == #define	NOTHING	(BOL-3)
974  == #define	BOW	(BOL-4)
975  == #define	EOW	(BOL-5)
976  == #define	BADCHAR	(BOL-6)
977  == #define	NONCHAR(c)	((c) <= OUT)
978  */
979 static states
980 step(struct re_guts *g,
981 	sopno start,		/* start state within strip */
982 	sopno stop,		/* state after stop state within strip */
983 	states bef,		/* states reachable before */
984 	wint_t ch,		/* character or NONCHAR code */
985 	states aft)		/* states already known reachable after */
986 {
987 	cset *cs;
988 	sop s;
989 	sopno pc;
990 	onestate here;		/* note, macros know this name */
991 	sopno look;
992 	int i;
993 
994 	for (pc = start, INIT(here, pc); pc != stop; pc++, INC(here)) {
995 		s = g->strip[pc];
996 		switch (OP(s)) {
997 		case OEND:
998 			assert(pc == stop-1);
999 			break;
1000 		case OCHAR:
1001 			/* only characters can match */
1002 			assert(!NONCHAR(ch) || ch != OPND(s));
1003 			if (ch == OPND(s))
1004 				FWD(aft, bef, 1);
1005 			break;
1006 		case OBOL:
1007 			if (ch == BOL || ch == BOLEOL)
1008 				FWD(aft, bef, 1);
1009 			break;
1010 		case OEOL:
1011 			if (ch == EOL || ch == BOLEOL)
1012 				FWD(aft, bef, 1);
1013 			break;
1014 		case OBOW:
1015 			if (ch == BOW)
1016 				FWD(aft, bef, 1);
1017 			break;
1018 		case OEOW:
1019 			if (ch == EOW)
1020 				FWD(aft, bef, 1);
1021 			break;
1022 		case OANY:
1023 			if (!NONCHAR(ch))
1024 				FWD(aft, bef, 1);
1025 			break;
1026 		case OANYOF:
1027 			cs = &g->sets[OPND(s)];
1028 			if (!NONCHAR(ch) && CHIN(cs, ch))
1029 				FWD(aft, bef, 1);
1030 			break;
1031 		case OBACK_:		/* ignored here */
1032 		case O_BACK:
1033 			FWD(aft, aft, 1);
1034 			break;
1035 		case OPLUS_:		/* forward, this is just an empty */
1036 			FWD(aft, aft, 1);
1037 			break;
1038 		case O_PLUS:		/* both forward and back */
1039 			FWD(aft, aft, 1);
1040 			i = ISSETBACK(aft, OPND(s));
1041 			BACK(aft, aft, OPND(s));
1042 			if (!i && ISSETBACK(aft, OPND(s))) {
1043 				/* oho, must reconsider loop body */
1044 				pc -= OPND(s) + 1;
1045 				INIT(here, pc);
1046 			}
1047 			break;
1048 		case OQUEST_:		/* two branches, both forward */
1049 			FWD(aft, aft, 1);
1050 			FWD(aft, aft, OPND(s));
1051 			break;
1052 		case O_QUEST:		/* just an empty */
1053 			FWD(aft, aft, 1);
1054 			break;
1055 		case OLPAREN:		/* not significant here */
1056 		case ORPAREN:
1057 			FWD(aft, aft, 1);
1058 			break;
1059 		case OCH_:		/* mark the first two branches */
1060 			FWD(aft, aft, 1);
1061 			assert(OP(g->strip[pc+OPND(s)]) == OOR2);
1062 			FWD(aft, aft, OPND(s));
1063 			break;
1064 		case OOR1:		/* done a branch, find the O_CH */
1065 			if (ISSTATEIN(aft, here)) {
1066 				for (look = 1;
1067 						OP(s = g->strip[pc+look]) != O_CH;
1068 						look += OPND(s))
1069 					assert(OP(s) == OOR2);
1070 				FWD(aft, aft, look + 1);
1071 			}
1072 			break;
1073 		case OOR2:		/* propagate OCH_'s marking */
1074 			FWD(aft, aft, 1);
1075 			if (OP(g->strip[pc+OPND(s)]) != O_CH) {
1076 				assert(OP(g->strip[pc+OPND(s)]) == OOR2);
1077 				FWD(aft, aft, OPND(s));
1078 			}
1079 			break;
1080 		case O_CH:		/* just empty */
1081 			FWD(aft, aft, 1);
1082 			break;
1083 		default:		/* ooooops... */
1084 			assert(nope);
1085 			break;
1086 		}
1087 	}
1088 
1089 	return(aft);
1090 }
1091 
1092 #ifdef REDEBUG
1093 /*
1094  - print - print a set of states
1095  == #ifdef REDEBUG
1096  == static void print(struct match *m, const char *caption, states st, \
1097  ==	int ch, FILE *d);
1098  == #endif
1099  */
1100 static void
1101 print(struct match *m,
1102 	const char *caption,
1103 	states st,
1104 	int ch,
1105 	FILE *d)
1106 {
1107 	struct re_guts *g = m->g;
1108 	sopno i;
1109 	int first = 1;
1110 
1111 	if (!(m->eflags&REG_TRACE))
1112 		return;
1113 
1114 	fprintf(d, "%s", caption);
1115 	if (ch != '\0')
1116 		fprintf(d, " %s", pchar(ch));
1117 	for (i = 0; i < g->nstates; i++)
1118 		if (ISSET(st, i)) {
1119 			fprintf(d, "%s%d", (first) ? "\t" : ", ", i);
1120 			first = 0;
1121 		}
1122 	fprintf(d, "\n");
1123 }
1124 
1125 /*
1126  - at - print current situation
1127  == #ifdef REDEBUG
1128  == static void at(struct match *m, const char *title, const char *start, \
1129  ==			 const char *stop, sopno startst, sopno stopst);
1130  == #endif
1131  */
1132 static void
1133 at(	struct match *m,
1134 	const char *title,
1135 	const char *start,
1136 	const char *stop,
1137 	sopno startst,
1138 	sopno stopst)
1139 {
1140 	if (!(m->eflags&REG_TRACE))
1141 		return;
1142 
1143 	printf("%s %s-", title, pchar(*start));
1144 	printf("%s ", pchar(*stop));
1145 	printf("%ld-%ld\n", (long)startst, (long)stopst);
1146 }
1147 
1148 #ifndef PCHARDONE
1149 #define	PCHARDONE	/* never again */
1150 /*
1151  - pchar - make a character printable
1152  == #ifdef REDEBUG
1153  == static const char *pchar(int ch);
1154  == #endif
1155  *
1156  * Is this identical to regchar() over in debug.c?  Well, yes.  But a
1157  * duplicate here avoids having a debugging-capable regexec.o tied to
1158  * a matching debug.o, and this is convenient.  It all disappears in
1159  * the non-debug compilation anyway, so it doesn't matter much.
1160  */
1161 static const char *		/* -> representation */
1162 pchar(int ch)
1163 {
1164 	static char pbuf[10];
1165 
1166 	if (isprint((uch)ch) || ch == ' ')
1167 		sprintf(pbuf, "%c", ch);
1168 	else
1169 		sprintf(pbuf, "\\%o", ch);
1170 	return(pbuf);
1171 }
1172 #endif
1173 #endif
1174 
1175 #undef	matcher
1176 #undef	fast
1177 #undef	slow
1178 #undef	dissect
1179 #undef	backref
1180 #undef	step
1181 #undef	print
1182 #undef	at
1183 #undef	match
1184