xref: /illumos-gate/usr/src/lib/libc/port/regex/regexec.c (revision 14247eb6)
14297a3b0SGarrett D'Amore /*
2*14247eb6SBill Sommerfeld  * Copyright 2023 Bill Sommerfeld <sommerfeld@hamachi.org>
36b5e5868SGarrett D'Amore  * Copyright 2010 Nexenta Systems, Inc.  All rights reserved.
44297a3b0SGarrett D'Amore  * Copyright (c) 1992, 1993, 1994 Henry Spencer.
54297a3b0SGarrett D'Amore  * Copyright (c) 1992, 1993, 1994
64297a3b0SGarrett D'Amore  *	The Regents of the University of California.  All rights reserved.
74297a3b0SGarrett D'Amore  *
84297a3b0SGarrett D'Amore  * This code is derived from software contributed to Berkeley by
94297a3b0SGarrett D'Amore  * Henry Spencer.
104297a3b0SGarrett D'Amore  *
114297a3b0SGarrett D'Amore  * Redistribution and use in source and binary forms, with or without
124297a3b0SGarrett D'Amore  * modification, are permitted provided that the following conditions
134297a3b0SGarrett D'Amore  * are met:
144297a3b0SGarrett D'Amore  * 1. Redistributions of source code must retain the above copyright
154297a3b0SGarrett D'Amore  *    notice, this list of conditions and the following disclaimer.
164297a3b0SGarrett D'Amore  * 2. Redistributions in binary form must reproduce the above copyright
174297a3b0SGarrett D'Amore  *    notice, this list of conditions and the following disclaimer in the
184297a3b0SGarrett D'Amore  *    documentation and/or other materials provided with the distribution.
197641c5eaSYuri Pankov  * 3. Neither the name of the University nor the names of its contributors
204297a3b0SGarrett D'Amore  *    may be used to endorse or promote products derived from this software
214297a3b0SGarrett D'Amore  *    without specific prior written permission.
224297a3b0SGarrett D'Amore  *
234297a3b0SGarrett D'Amore  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
244297a3b0SGarrett D'Amore  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
254297a3b0SGarrett D'Amore  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
264297a3b0SGarrett D'Amore  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
274297a3b0SGarrett D'Amore  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
284297a3b0SGarrett D'Amore  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
294297a3b0SGarrett D'Amore  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
304297a3b0SGarrett D'Amore  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
314297a3b0SGarrett D'Amore  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
324297a3b0SGarrett D'Amore  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
334297a3b0SGarrett D'Amore  * SUCH DAMAGE.
344297a3b0SGarrett D'Amore  */
354297a3b0SGarrett D'Amore 
364297a3b0SGarrett D'Amore /*
374297a3b0SGarrett D'Amore  * the outer shell of regexec()
384297a3b0SGarrett D'Amore  *
394297a3b0SGarrett D'Amore  * This file includes engine.c three times, after muchos fiddling with the
404297a3b0SGarrett D'Amore  * macros that code uses.  This lets the same code operate on two different
414297a3b0SGarrett D'Amore  * representations for state sets and characters.
424297a3b0SGarrett D'Amore  */
434297a3b0SGarrett D'Amore #include "lint.h"
444297a3b0SGarrett D'Amore #include "file64.h"
454297a3b0SGarrett D'Amore #include <sys/types.h>
464297a3b0SGarrett D'Amore #include <stdio.h>
474297a3b0SGarrett D'Amore #include <stdlib.h>
484297a3b0SGarrett D'Amore #include <string.h>
494297a3b0SGarrett D'Amore #include <limits.h>
504297a3b0SGarrett D'Amore #include <ctype.h>
514297a3b0SGarrett D'Amore #include <regex.h>
524297a3b0SGarrett D'Amore #include <wchar.h>
534297a3b0SGarrett D'Amore #include <wctype.h>
544297a3b0SGarrett D'Amore #include <assert.h>
554297a3b0SGarrett D'Amore 
564297a3b0SGarrett D'Amore #include "utils.h"
574297a3b0SGarrett D'Amore #include "regex2.h"
584297a3b0SGarrett D'Amore 
594297a3b0SGarrett D'Amore static size_t
xmbrtowc(wint_t * wi,const char * s,size_t n,mbstate_t * mbs,wint_t dummy)604297a3b0SGarrett D'Amore xmbrtowc(wint_t *wi, const char *s, size_t n, mbstate_t *mbs, wint_t dummy)
614297a3b0SGarrett D'Amore {
624297a3b0SGarrett D'Amore 	size_t nr;
634297a3b0SGarrett D'Amore 	wchar_t wc;
644297a3b0SGarrett D'Amore 
654297a3b0SGarrett D'Amore 	nr = mbrtowc(&wc, s, n, mbs);
664297a3b0SGarrett D'Amore 	if (wi != NULL)
674297a3b0SGarrett D'Amore 		*wi = wc;
684297a3b0SGarrett D'Amore 	if (nr == 0)
694297a3b0SGarrett D'Amore 		return (1);
704297a3b0SGarrett D'Amore 	else if (nr == (size_t)-1 || nr == (size_t)-2) {
714297a3b0SGarrett D'Amore 		(void) memset(mbs, 0, sizeof (*mbs));
724297a3b0SGarrett D'Amore 		if (wi != NULL)
734297a3b0SGarrett D'Amore 			*wi = dummy;
744297a3b0SGarrett D'Amore 		return (1);
754297a3b0SGarrett D'Amore 	} else
764297a3b0SGarrett D'Amore 		return (nr);
774297a3b0SGarrett D'Amore }
784297a3b0SGarrett D'Amore 
794297a3b0SGarrett D'Amore static size_t
xmbrtowc_dummy(wint_t * wi,const char * s,size_t n __unused,mbstate_t * mbs __unused,wint_t dummy __unused)804a38094cSToomas Soome xmbrtowc_dummy(wint_t *wi, const char *s, size_t n __unused,
814a38094cSToomas Soome     mbstate_t *mbs __unused, wint_t dummy __unused)
824297a3b0SGarrett D'Amore {
834297a3b0SGarrett D'Amore 	if (wi != NULL)
844297a3b0SGarrett D'Amore 		*wi = (unsigned char)*s;
854297a3b0SGarrett D'Amore 	return (1);
864297a3b0SGarrett D'Amore }
874297a3b0SGarrett D'Amore 
884297a3b0SGarrett D'Amore /* macros for manipulating states, small version */
894297a3b0SGarrett D'Amore #define	states	long
904297a3b0SGarrett D'Amore #define	states1	states		/* for later use in regexec() decision */
914297a3b0SGarrett D'Amore #define	CLEAR(v)	((v) = 0)
924297a3b0SGarrett D'Amore #define	SET0(v, n)	((v) &= ~((unsigned long)1 << (n)))
934297a3b0SGarrett D'Amore #define	SET1(v, n)	((v) |= (unsigned long)1 << (n))
944297a3b0SGarrett D'Amore #define	ISSET(v, n)	(((v) & ((unsigned long)1 << (n))) != 0)
954297a3b0SGarrett D'Amore #define	ASSIGN(d, s)	((d) = (s))
964297a3b0SGarrett D'Amore #define	EQ(a, b)	((a) == (b))
974297a3b0SGarrett D'Amore #define	STATEVARS	long dummy	/* dummy version */
984297a3b0SGarrett D'Amore #define	STATESETUP(m, n)	/* nothing */
994297a3b0SGarrett D'Amore #define	STATETEARDOWN(m)	/* nothing */
1004297a3b0SGarrett D'Amore #define	SETUP(v)	((v) = 0)
1014297a3b0SGarrett D'Amore #define	onestate	long
1024297a3b0SGarrett D'Amore #define	INIT(o, n)	((o) = (unsigned long)1 << (n))
1034297a3b0SGarrett D'Amore #define	INC(o)	((o) <<= 1)
1044297a3b0SGarrett D'Amore #define	ISSTATEIN(v, o)	(((v) & (o)) != 0)
1054297a3b0SGarrett D'Amore /* some abbreviations; note that some of these know variable names! */
1064297a3b0SGarrett D'Amore /* do "if I'm here, I can also be there" etc without branches */
1074297a3b0SGarrett D'Amore #define	FWD(dst, src, n)	((dst) |= ((unsigned long)(src)&(here)) << (n))
1084297a3b0SGarrett D'Amore #define	BACK(dst, src, n)	((dst) |= ((unsigned long)(src)&(here)) >> (n))
1094297a3b0SGarrett D'Amore #define	ISSETBACK(v, n)	(((v) & ((unsigned long)here >> (n))) != 0)
1104297a3b0SGarrett D'Amore /* no multibyte support */
1114297a3b0SGarrett D'Amore #define	XMBRTOWC	xmbrtowc_dummy
1124297a3b0SGarrett D'Amore #define	ZAPSTATE(mbs)	((void)(mbs))
113*14247eb6SBill Sommerfeld #define	NC_ENGINE NC_MAX
1144297a3b0SGarrett D'Amore /* function names */
1154297a3b0SGarrett D'Amore #define	SNAMES			/* engine.c looks after details */
1164297a3b0SGarrett D'Amore 
1174297a3b0SGarrett D'Amore #include "engine.c"
1184297a3b0SGarrett D'Amore 
1194297a3b0SGarrett D'Amore /* now undo things */
1204297a3b0SGarrett D'Amore #undef	states
1214297a3b0SGarrett D'Amore #undef	CLEAR
1224297a3b0SGarrett D'Amore #undef	SET0
1234297a3b0SGarrett D'Amore #undef	SET1
1244297a3b0SGarrett D'Amore #undef	ISSET
1254297a3b0SGarrett D'Amore #undef	ASSIGN
1264297a3b0SGarrett D'Amore #undef	EQ
1274297a3b0SGarrett D'Amore #undef	STATEVARS
1284297a3b0SGarrett D'Amore #undef	STATESETUP
1294297a3b0SGarrett D'Amore #undef	STATETEARDOWN
1304297a3b0SGarrett D'Amore #undef	SETUP
1314297a3b0SGarrett D'Amore #undef	onestate
1324297a3b0SGarrett D'Amore #undef	INIT
1334297a3b0SGarrett D'Amore #undef	INC
1344297a3b0SGarrett D'Amore #undef	ISSTATEIN
1354297a3b0SGarrett D'Amore #undef	FWD
1364297a3b0SGarrett D'Amore #undef	BACK
1374297a3b0SGarrett D'Amore #undef	ISSETBACK
1384297a3b0SGarrett D'Amore #undef	SNAMES
1394297a3b0SGarrett D'Amore #undef	XMBRTOWC
1404297a3b0SGarrett D'Amore #undef	ZAPSTATE
141*14247eb6SBill Sommerfeld #undef	NC_ENGINE
1424297a3b0SGarrett D'Amore 
1434297a3b0SGarrett D'Amore /* macros for manipulating states, large version */
1444297a3b0SGarrett D'Amore #define	states	char *
1454297a3b0SGarrett D'Amore #define	CLEAR(v)	(void) memset(v, 0, m->g->nstates)
1464297a3b0SGarrett D'Amore #define	SET0(v, n)	((v)[n] = 0)
1474297a3b0SGarrett D'Amore #define	SET1(v, n)	((v)[n] = 1)
1484297a3b0SGarrett D'Amore #define	ISSET(v, n)	((v)[n])
1494297a3b0SGarrett D'Amore #define	ASSIGN(d, s)	(void) memcpy(d, s, m->g->nstates)
1504297a3b0SGarrett D'Amore #define	EQ(a, b)	(memcmp(a, b, m->g->nstates) == 0)
1514297a3b0SGarrett D'Amore #define	STATEVARS	long vn; char *space
1524297a3b0SGarrett D'Amore #define	STATESETUP(m, nv) { (m)->space = malloc((nv)*(m)->g->nstates); \
1534297a3b0SGarrett D'Amore 	if ((m)->space == NULL) \
1544297a3b0SGarrett D'Amore 		return (REG_ESPACE); \
1554297a3b0SGarrett D'Amore 	(m)->vn = 0; }
1564297a3b0SGarrett D'Amore #define	STATETEARDOWN(m)	{ free((m)->space); }
1574297a3b0SGarrett D'Amore #define	SETUP(v)	((v) = &m->space[m->vn++ * m->g->nstates])
1584297a3b0SGarrett D'Amore #define	onestate	long
1594297a3b0SGarrett D'Amore #define	INIT(o, n)	((o) = (n))
1604297a3b0SGarrett D'Amore #define	INC(o)	((o)++)
1614297a3b0SGarrett D'Amore #define	ISSTATEIN(v, o)	((v)[o])
1624297a3b0SGarrett D'Amore /* some abbreviations; note that some of these know variable names! */
1634297a3b0SGarrett D'Amore /* do "if I'm here, I can also be there" etc without branches */
1644297a3b0SGarrett D'Amore #define	FWD(dst, src, n)	((dst)[here+(n)] |= (src)[here])
1654297a3b0SGarrett D'Amore #define	BACK(dst, src, n)	((dst)[here-(n)] |= (src)[here])
1664297a3b0SGarrett D'Amore #define	ISSETBACK(v, n)	((v)[here - (n)])
1674297a3b0SGarrett D'Amore /* no multibyte support */
1684297a3b0SGarrett D'Amore #define	XMBRTOWC	xmbrtowc_dummy
1694297a3b0SGarrett D'Amore #define	ZAPSTATE(mbs)	((void)(mbs))
170*14247eb6SBill Sommerfeld #define	NC_ENGINE NC_MAX
1714297a3b0SGarrett D'Amore /* function names */
1724297a3b0SGarrett D'Amore #define	LNAMES			/* flag */
1734297a3b0SGarrett D'Amore 
1744297a3b0SGarrett D'Amore #include "engine.c"
1754297a3b0SGarrett D'Amore 
1764297a3b0SGarrett D'Amore /* multibyte character & large states version */
1774297a3b0SGarrett D'Amore #undef	LNAMES
1784297a3b0SGarrett D'Amore #undef	XMBRTOWC
1794297a3b0SGarrett D'Amore #undef	ZAPSTATE
180*14247eb6SBill Sommerfeld #undef	NC_ENGINE
1814297a3b0SGarrett D'Amore #define	XMBRTOWC	xmbrtowc
182*14247eb6SBill Sommerfeld #define	NC_ENGINE NC_WIDE
1834297a3b0SGarrett D'Amore #define	ZAPSTATE(mbs)	(void) memset((mbs), 0, sizeof (*(mbs)))
1844297a3b0SGarrett D'Amore #define	MNAMES
1854297a3b0SGarrett D'Amore 
1864297a3b0SGarrett D'Amore #include "engine.c"
1874297a3b0SGarrett D'Amore 
1884297a3b0SGarrett D'Amore /*
1894297a3b0SGarrett D'Amore  * regexec - interface for matching
1904297a3b0SGarrett D'Amore  *
1914297a3b0SGarrett D'Amore  * We put this here so we can exploit knowledge of the state representation
1924297a3b0SGarrett D'Amore  * when choosing which matcher to call.  Also, by this point the matchers
1934297a3b0SGarrett D'Amore  * have been prototyped.
1944297a3b0SGarrett D'Amore  */
1954297a3b0SGarrett D'Amore int				/* 0 success, REG_NOMATCH failure */
regexec(const regex_t * _RESTRICT_KYWD preg,const char * _RESTRICT_KYWD string,size_t nmatch,regmatch_t pmatch[_RESTRICT_KYWD],int eflags)1967641c5eaSYuri Pankov regexec(const regex_t *_RESTRICT_KYWD preg, const char *_RESTRICT_KYWD string,
1977641c5eaSYuri Pankov     size_t nmatch, regmatch_t pmatch[_RESTRICT_KYWD], int eflags)
1984297a3b0SGarrett D'Amore {
1994297a3b0SGarrett D'Amore 	struct re_guts *g = preg->re_g;
2004297a3b0SGarrett D'Amore #ifdef REDEBUG
2014297a3b0SGarrett D'Amore #define	GOODFLAGS(f)	(f)
2024297a3b0SGarrett D'Amore #else
2034297a3b0SGarrett D'Amore #ifdef	REG_STARTEND
2044297a3b0SGarrett D'Amore #define	GOODFLAGS(f)	((f)&(REG_NOTBOL|REG_NOTEOL|REG_STARTEND))
2054297a3b0SGarrett D'Amore #else
2064297a3b0SGarrett D'Amore #define	GOODFLAGS(f)	((f)&(REG_NOTBOL|REG_NOTEOL))
2074297a3b0SGarrett D'Amore #endif
2084297a3b0SGarrett D'Amore #endif
2094297a3b0SGarrett D'Amore 
2104297a3b0SGarrett D'Amore 	if (preg->re_magic != MAGIC1 || g->magic != MAGIC2)
2114297a3b0SGarrett D'Amore 		return (REG_BADPAT);
2124297a3b0SGarrett D'Amore 	assert(!(g->iflags&BAD));
2134297a3b0SGarrett D'Amore 	if (g->iflags&BAD)		/* backstop for no-debug case */
2144297a3b0SGarrett D'Amore 		return (REG_BADPAT);
2154297a3b0SGarrett D'Amore 	eflags = GOODFLAGS(eflags);
2164297a3b0SGarrett D'Amore 
217*14247eb6SBill Sommerfeld 	if (g->mb_cur_max > 1)
2187641c5eaSYuri Pankov 		return (mmatcher(g, string, nmatch, pmatch, eflags));
2194297a3b0SGarrett D'Amore 	else if (g->nstates <= CHAR_BIT*sizeof (states1) && !(eflags&REG_LARGE))
2207641c5eaSYuri Pankov 		return (smatcher(g, string, nmatch, pmatch, eflags));
2214297a3b0SGarrett D'Amore 	else
2227641c5eaSYuri Pankov 		return (lmatcher(g, string, nmatch, pmatch, eflags));
2234297a3b0SGarrett D'Amore }
224