-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrplregex.c
218 lines (202 loc) · 6.17 KB
/
rplregex.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/*
** Copyright (c) 2016, Cyrille Lefevre <[email protected]>.
** All rights reserved.
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
** are met:
**
** 1. Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** 2. Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in the
** documentation and/or other materials provided with the distribution.
**
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
** PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
** BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
** OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
** OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
** BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
** WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
** OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
** EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
**/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "rplregex.h"
#ifndef HAVE_REGEX
static char *_regerrorstr;
void regerror(char *s)
{
_regerrorstr = s;
}
#endif
void rpl_regfree(REGEXP_T **_prog)
{
REGEXP_T *prog = *_prog;
#ifdef HAVE_REGEX
if (prog->preg.re_nsub)
free(prog->pmatch);
regfree(&prog->preg);
#endif
free(prog);
*_prog = (REGEXP_T *) NULL;
}
int rpl_regcomp(REGEXP_T **_prog, const char *regex, int cflags)
{
#ifdef HAVE_REGEX
int rc;
REGEXP_T *prog = *_prog = (REGEXP_T *) malloc(sizeof(REGEXP_T));
if (prog == NULL)
return REG_ESPACE;
prog->cflags = cflags;
prog->pmatch = NULL;
rc = regcomp(&prog->preg, regex, cflags|REG_EXTENDED);
if (rc || cflags & REG_NOSUB || prog->preg.re_nsub == 0)
return rc;
prog->pmatch = calloc(prog->preg.re_nsub + 1, sizeof(regmatch_t));
if (prog->pmatch == NULL) {
prog->preg.re_nsub = 0;
rpl_regfree(&prog);
return REG_ESPACE;
}
return 0;
#else
*_prog = regcomp((char *)regex);
return *_prog == NULL;
#endif
}
int rpl_regexec(REGEXP_T * const *_prog, const char *string)
{
REGEXP_T *prog = *_prog;
#ifdef HAVE_REGEX
if (!(prog->cflags & REG_NOSUB))
prog->string = string;
return regexec(&prog->preg, string, prog->preg.re_nsub + 1, prog->pmatch, 0);
#else
int rc = !regexec(prog, (char *)string);
return rc && _regerrorstr ? REG_ESPACE : rc;
#endif
}
int rpl_regsub(REGEXP_T * const *_prog, const char *source, char *dest, size_t size)
{
REGEXP_T *prog = *_prog;
const char *src;
char *dst, c;
int no;
size_t len;
if (prog == NULL || source == NULL || dest == NULL || size == 0)
return REG_ESPACE;
src = source;
dst = dest;
while ((c = *src++) != '\0') {
if (c == '&')
no = 0;
else if (c == '\\' && '0' <= *src && *src <= '9')
no = *src++ - '0';
else
no = -1;
if (no < 0) { /* Ordinary character. */
if (c == '\\' && (*src == '\\' || *src == '&'))
c = *src++;
if ((size_t) (dst - dest) + 1 >= size)
return REG_ESPACE;
*dst++ = c;
#ifdef HAVE_REGEX
} else if (prog->preg.re_nsub &&
(size_t) no <= prog->preg.re_nsub &&
prog->pmatch[no].rm_so >= 0 &&
prog->pmatch[no].rm_eo > prog->pmatch[no].rm_so) {
len = (size_t) (prog->pmatch[no].rm_eo - prog->pmatch[no].rm_so);
if ((size_t) (dst - dest) + len >= size)
return REG_ESPACE;
/* Flawfinder: ignore (strncpy) */
strncpy(dst, prog->string + prog->pmatch[no].rm_so, len);
#else
} else if (prog->startp[no] != NULL && prog->endp[no] != NULL &&
prog->endp[no] > prog->startp[no]) {
len = (size_t) (prog->endp[no] - prog->startp[no]);
if ((size_t) (dst - dest) + len >= size)
return REG_ESPACE;
/* Flawfinder: ignore (strncpy) */
strncpy(dst, prog->startp[no], len);
#endif
dst += len;
if (len != 0 && *(dst - 1) == '\0') /* strncpy hit NUL. */
return REG_ESUBREG;
}
}
*dst = '\0';
return 0;
}
char *rpl_regerror(int error, REGEXP_T * const *_prog)
{
char *buf;
#ifdef HAVE_REGEX
REGEXP_T *prog = *_prog;
size_t len = regerror(error, &prog->preg, NULL, 0);
buf = malloc(len);
if (buf)
regerror(error, &prog->preg, buf, len);
#else
if (_regerrorstr) {
buf = strdup(_regerrorstr);
_regerrorstr = NULL;
} else {
size_t len = 16;
buf = malloc(len);
if (buf)
snprintf(buf, sizeof(buf), "Error %d\n", error);
}
#endif
return buf;
}
#ifdef WANT_REGMAIN
int main(int argc, char **argv)
{
REGEXP_T *prog;
int rc, no;
char *str = argv[1];
char *re = argv[2];
char *sub = argv[3];
char dst[1024];
rc = rpl_regcomp(&prog, re, 0);
if (rc == 0)
rc = rpl_regexec(&prog, str);
if (rc == 0) {
fprintf(stderr, "match\n");
#ifdef HAVE_REGEX
if (prog->preg.re_nsub)
for (no = 0; no <= prog->preg.re_nsub; no++)
fprintf(stderr, "[%d]:%2d-%2d %-.*s\n", no,
prog->pmatch[no].rm_so, prog->pmatch[no].rm_eo,
prog->pmatch[no].rm_eo - prog->pmatch[no].rm_so,
str+prog->pmatch[no].rm_so);
#else
for (no = 0; no <= NSUBEXP; no++)
if (prog->startp[no] && prog->endp[no])
fprintf(stderr, "[%d]:%2ld-%2ld %-.*s\n", no,
prog->startp[no] - str, prog->endp[no] - str,
(int)(prog->endp[no] - prog->startp[no]),
prog->startp[no]);
#endif
rc = rpl_regsub(&prog, sub, dst, sizeof(dst));
}
if (rc == 0)
printf("%s\n", dst);
else if (rc == REG_NOMATCH)
fprintf(stderr, "nomatch\n");
else {
char *buf = rpl_regerror(rc, &prog);
fprintf(stderr, "regerror: %s\n", buf);
free(buf);
}
rpl_regfree(&prog);
return rc;
}
#endif