-
Notifications
You must be signed in to change notification settings - Fork 50
/
re.c
112 lines (93 loc) · 2.47 KB
/
re.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/* $Id$ */
/*
* Copyright (c) 2006 Nicholas Marriott <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef PCRE2
#include <sys/types.h>
#include <string.h>
#include "fdm.h"
int
re_compile(struct re *re, const char *s, int flags, char **cause)
{
int error;
size_t len;
char *buf;
if (s == NULL)
fatalx("null regexp");
re->str = xstrdup(s);
if (*s == '\0')
return (0);
re->flags = flags;
flags = REG_EXTENDED|REG_NEWLINE;
if (re->flags & RE_NOSUBST)
flags |= REG_NOSUB;
if (re->flags & RE_IGNCASE)
flags |= REG_ICASE;
if ((error = regcomp(&re->re, s, flags)) != 0) {
len = regerror(error, &re->re, NULL, 0);
buf = xmalloc(len);
regerror(error, &re->re, buf, len);
xasprintf(cause, "%s%s", s, buf);
return (-1);
}
return (0);
}
int
re_string(struct re *re, const char *s, struct rmlist *rml, char **cause)
{
return (re_block(re, s, strlen(s), rml, cause));
}
int
re_block(struct re *re, const void *buf, size_t len, struct rmlist *rml,
char **cause)
{
int res;
regmatch_t pm[NPMATCH];
u_int i;
if (rml != NULL)
memset(rml, 0, sizeof *rml);
/* If the regexp is empty, just check whether the buffer is empty. */
if (*re->str == '\0') {
if (len == 0)
return (1);
return (0);
}
memset(pm, 0, sizeof pm);
pm[0].rm_so = 0;
pm[0].rm_eo = len;
res = regexec(&re->re, buf, NPMATCH, pm, REG_STARTEND);
if (res != 0 && res != REG_NOMATCH) {
xasprintf(cause, "%s: regexec failed", re->str);
return (-1);
}
if (rml != NULL) {
for (i = 0; i < NPMATCH; i++) {
if (pm[i].rm_eo <= pm[i].rm_so)
break;
rml->list[i].valid = 1;
rml->list[i].so = pm[i].rm_so;
rml->list[i].eo = pm[i].rm_eo;
}
rml->valid = 1;
}
return (res == 0);
}
void
re_free(struct re *re)
{
xfree(re->str);
regfree(&re->re);
}
#endif /* !PCRE2 */