1 /* $OpenBSD: re.c,v 1.11 2009/10/27 23:59:21 deraadt Exp $ */
2 /* $NetBSD: re.c,v 1.14 1995/03/21 09:04:48 cgd Exp $ */
4 /* re.c: This file contains the regular expression interface routines for
7 * Copyright (c) 1993 Andrew Moore, Talke Studio.
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.
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 char errmsg
[MAXPATHLEN
+ 40] = "";
39 /* get_compiled_pattern: return pointer to compiled pattern from command
42 get_compiled_pattern(void)
44 static pattern_t
*exp
= NULL
;
50 if ((delimiter
= *ibufp
) == ' ') {
51 seterrmsg("invalid pattern delimiter");
53 } else if (delimiter
== '\n' || *++ibufp
== '\n' || *ibufp
== delimiter
) {
55 seterrmsg("no previous pattern");
57 } else if ((exps
= extract_pattern(delimiter
)) == NULL
)
59 /* buffer alloc'd && not reserved */
62 else if ((exp
= (pattern_t
*) malloc(sizeof(pattern_t
))) == NULL
) {
64 seterrmsg("out of memory");
68 if ((n
= regcomp(exp
, exps
, 0)) != 0) {
69 regerror(n
, exp
, errmsg
, sizeof errmsg
);
77 /* extract_pattern: copy a pattern string from the command buffer; return
78 pointer to the copy */
80 extract_pattern(int delimiter
)
82 static char *lhbuf
= NULL
; /* buffer */
83 static int lhbufsz
= 0; /* buffer size */
88 for (nd
= ibufp
; *nd
!= delimiter
&& *nd
!= '\n'; nd
++)
93 if ((nd
= parse_char_class(++nd
)) == NULL
) {
94 seterrmsg("unbalanced brackets ([])");
100 seterrmsg("trailing backslash (\\)");
106 REALLOC(lhbuf
, lhbufsz
, len
+ 1, NULL
);
107 memcpy(lhbuf
, ibufp
, len
);
110 return (isbinary
) ? NUL_TO_NEWLINE(lhbuf
, len
) : lhbuf
;
114 /* parse_char_class: expand a POSIX character class */
116 parse_char_class(char *s
)
124 for (; *s
!= ']' && *s
!= '\n'; s
++)
125 if (*s
== '[' && ((d
= *(s
+1)) == '.' || d
== ':' || d
== '='))
126 for (s
++, c
= *++s
; *s
!= ']' || c
!= d
; s
++)
127 if ((c
= *s
) == '\n')
129 return (*s
== ']') ? s
: NULL
;