-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathrexp2.c
438 lines (382 loc) · 9.34 KB
/
rexp2.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
/********************************************
rexp2.c
copyright 2009-2010,2014, Thomas E. Dickey
copyright 2010, Jonathan Nieder
copyright 1991-1992,1993, Michael D. Brennan
This is a source file for mawk, an implementation of
the AWK programming language.
Mawk is distributed without warranty under the terms of
the GNU General Public License, version 2, 1991.
********************************************/
/*
* $MawkId: rexp2.c,v 1.23 2014/08/21 23:58:04 tom Exp $
* @Log: rexp2.c,v @
* Revision 1.3 1993/07/24 17:55:12 mike
* more cleanup
*
* Revision 1.2 1993/07/23 13:21:44 mike
* cleanup rexp code
*
* Revision 1.1.1.1 1993/07/03 18:58:28 mike
* move source to cvs
*
* Revision 3.8 1992/12/24 00:36:44 mike
* fixed major bozo for LMDOS when growing stack
* fixed potential LMDOS bozo with M_STR+U_ON+END_ON
* fixed minor bug in M_CLASS+U_ON+END_ON
*
* Revision 3.7 92/01/21 17:33:15 brennan
* added some casts so that character classes work with signed chars
*
* Revision 3.6 91/10/29 10:54:03 brennan
* SIZE_T
*
* Revision 3.5 91/08/13 09:10:15 brennan
* VERSION .9994
*
* Revision 3.4 91/08/08 07:53:34 brennan
* work around for turboC realloc() bug
*
* Revision 3.4 91/08/07 07:10:47 brennan
* work around for TurboC realloc() bug
*
* Revision 3.3 91/08/04 15:45:57 brennan
* minor change for large model dos
*
* Revision 3.2 91/06/10 16:18:14 brennan
* changes for V7
*
* Revision 3.1 91/06/07 10:33:25 brennan
* VERSION 0.995
*
* Revision 1.8 91/06/05 09:01:33 brennan
* changes to RE_new_run_stack
*
* Revision 1.7 91/05/31 10:56:02 brennan
* stack_empty hack for DOS large model
*
*/
/* test a string against a machine */
#include "rexp.h"
#define STACKGROWTH 16
RT_STATE *RE_run_stack_base;
RT_STATE *RE_run_stack_limit;
/* Large model DOS segment arithemetic breaks the current stack.
This hack fixes it without rewriting the whole thing, 5/31/91 */
RT_STATE *RE_run_stack_empty;
RT_POS_ENTRY *RE_pos_stack_base;
RT_POS_ENTRY *RE_pos_stack_limit;
RT_POS_ENTRY *RE_pos_stack_empty;
void
RE_run_stack_init(void)
{
if (!RE_run_stack_base) {
RE_run_stack_base = (RT_STATE *)
RE_malloc(sizeof(RT_STATE) * STACKGROWTH);
RE_run_stack_limit = RE_run_stack_base + STACKGROWTH;
RE_run_stack_empty = RE_run_stack_base - 1;
}
}
void
RE_pos_stack_init(void)
{
if (!RE_pos_stack_base) {
RE_pos_stack_base = (RT_POS_ENTRY *)
RE_malloc(sizeof(RT_POS_ENTRY) * STACKGROWTH);
RE_pos_stack_limit = RE_pos_stack_base + STACKGROWTH;
RE_pos_stack_empty = RE_pos_stack_base;
RE_pos_stack_base->pos = NULL; /* RE_pos_peek(RE_pos_stack_empty) */
RE_pos_stack_base->owner = -1; /* avoid popping base */
RE_pos_stack_base->prev_offset = 0; /* avoid popping below base */
}
}
/* sometimes during REmatch(), this stack can grow pretty large.
In real life cases, the back tracking usually fails. Some
work is needed here to improve the algorithm.
I.e., figure out how not to stack useless paths.
*/
RT_STATE *
RE_new_run_stack(void)
{
size_t oldsize = (size_t) (RE_run_stack_limit - RE_run_stack_base);
size_t newsize = oldsize + STACKGROWTH;
#ifdef LMDOS /* large model DOS */
/* have to worry about overflow on multiplication (ugh) */
if (newsize >= 4096)
RE_run_stack_base = (RT_STATE *) 0;
else
#endif
RE_run_stack_base = (RT_STATE *) realloc(RE_run_stack_base,
newsize * sizeof(RT_STATE));
if (!RE_run_stack_base) {
fprintf(stderr, "out of memory for RE run time stack\n");
/* this is pretty unusual, I've only seen it happen on
weird input to REmatch() under 16bit DOS , the same
situation worked easily on 32bit machine. */
mawk_exit(100);
}
RE_run_stack_limit = RE_run_stack_base + newsize;
RE_run_stack_empty = RE_run_stack_base - 1;
/* return the new stackp */
return RE_run_stack_base + oldsize;
}
RT_POS_ENTRY *
RE_new_pos_stack(void)
{
size_t oldsize = (size_t) (RE_pos_stack_limit - RE_pos_stack_base);
size_t newsize = oldsize + STACKGROWTH;
/* FIXME: handle overflow on multiplication for large model DOS
* (see RE_new_run_stack()).
*/
RE_pos_stack_base = (RT_POS_ENTRY *)
realloc(RE_pos_stack_base, newsize * sizeof(RT_POS_ENTRY));
if (!RE_pos_stack_base) {
fprintf(stderr, "out of memory for RE string position stack\n");
mawk_exit(100);
}
RE_pos_stack_limit = RE_pos_stack_base + newsize;
RE_pos_stack_empty = RE_pos_stack_base;
/* return the new stackp */
return RE_pos_stack_base + oldsize;
}
#ifdef DEBUG
static RT_STATE *
slow_push(
RT_STATE * sp,
STATE * m,
char *s,
RT_POS_ENTRY * pos_top,
int u)
{
if (sp == RE_run_stack_limit)
sp = RE_new_run_stack();
sp->m = m;
sp->s = s;
sp->u = u;
sp->sp = pos_top - RE_pos_stack_base;
sp->tp = pos_top->prev_offset;
return sp;
}
#endif
#ifdef DEBUG
#define push(mx,sx,px,ux) do { \
stackp = slow_push(++stackp, mx, sx, px, ux); \
} while(0)
#else
#define push(mx,sx,px,ux) do { \
if (++stackp == RE_run_stack_limit) \
stackp = RE_new_run_stack(); \
stackp->m = (mx); \
stackp->s = (sx); \
stackp->u = (ux); \
stackp->sp = (int) ((px) - RE_pos_stack_base); \
stackp->tp = (px)->prev_offset; \
} while(0)
#endif
#define CASE_UANY(x) case x + U_OFF : case x + U_ON
/*
* test if str ~ /machine/
*/
int
REtest(char *str, /* string to test */
size_t len, /* ...its length */
PTR machine) /* compiled regular-expression */
{
register STATE *m = (STATE *) machine;
char *s = str;
register RT_STATE *stackp;
int u_flag;
char *str_end = str + len;
RT_POS_ENTRY *sp;
int t; /*convenient temps */
STATE *tm;
/* handle the easy case quickly */
if ((m + 1)->s_type == M_ACCEPT && m->s_type == M_STR) {
return str_str(s, len, m->s_data.str, (size_t) m->s_len) != (char *) 0;
} else {
u_flag = U_ON;
stackp = RE_run_stack_empty;
sp = RE_pos_stack_empty;
RE_CASE();
}
refill:
if (stackp == RE_run_stack_empty) {
return 0;
}
m = stackp->m;
s = stackp->s;
sp = RE_pos_stack_base + stackp->sp;
sp->prev_offset = stackp->tp;
u_flag = (stackp--)->u;
reswitch:
switch (m->s_type + u_flag) {
case M_STR + U_OFF + END_OFF:
if (strncmp(s, m->s_data.str, (size_t) m->s_len)) {
RE_FILL();
}
s += m->s_len;
m++;
RE_CASE();
case M_STR + U_OFF + END_ON:
if (strcmp(s, m->s_data.str)) {
RE_FILL();
}
s += m->s_len;
m++;
RE_CASE();
case M_STR + U_ON + END_OFF:
if (!(s = str_str(s, (size_t) (str_end - s), m->s_data.str, (size_t) m->s_len))) {
RE_FILL();
}
push(m, s + 1, sp, U_ON);
s += m->s_len;
m++;
u_flag = U_OFF;
RE_CASE();
case M_STR + U_ON + END_ON:
t = (int) (str_end - s) - (int) m->s_len;
if (t < 0 || memcmp(s + t, m->s_data.str, (size_t) m->s_len)) {
RE_FILL();
}
s = str_end;
m++;
u_flag = U_OFF;
RE_CASE();
case M_CLASS + U_OFF + END_OFF:
if (s >= str_end || !ison(*m->s_data.bvp, s[0])) {
RE_FILL();
}
s++;
m++;
RE_CASE();
case M_CLASS + U_OFF + END_ON:
if (s >= str_end) {
RE_FILL();
}
if ((s + 1) < str_end || !ison(*m->s_data.bvp, s[0])) {
RE_FILL();
}
s++;
m++;
RE_CASE();
case M_CLASS + U_ON + END_OFF:
for (;;) {
if (s >= str_end) {
RE_FILL();
} else if (ison(*m->s_data.bvp, s[0])) {
break;
}
s++;
}
s++;
push(m, s, sp, U_ON);
m++;
u_flag = U_OFF;
RE_CASE();
case M_CLASS + U_ON + END_ON:
if (s >= str_end || !ison(*m->s_data.bvp, str_end[-1])) {
RE_FILL();
}
s = str_end;
m++;
u_flag = U_OFF;
RE_CASE();
case M_ANY + U_OFF + END_OFF:
if (s >= str_end) {
RE_FILL();
}
s++;
m++;
RE_CASE();
case M_ANY + U_OFF + END_ON:
if (s >= str_end || (s + 1) < str_end) {
RE_FILL();
}
s++;
m++;
RE_CASE();
case M_ANY + U_ON + END_OFF:
if (s >= str_end) {
RE_FILL();
}
s++;
push(m, s, sp, U_ON);
m++;
u_flag = U_OFF;
RE_CASE();
case M_ANY + U_ON + END_ON:
if (s >= str_end) {
RE_FILL();
}
s = str_end;
m++;
u_flag = U_OFF;
RE_CASE();
case M_START + U_OFF + END_OFF:
case M_START + U_ON + END_OFF:
if (s != str) {
RE_FILL();
}
m++;
u_flag = U_OFF;
RE_CASE();
case M_START + U_OFF + END_ON:
case M_START + U_ON + END_ON:
if (s != str || s < str_end) {
RE_FILL();
}
m++;
u_flag = U_OFF;
RE_CASE();
case M_END + U_OFF:
if (s < str_end) {
RE_FILL();
}
m++;
RE_CASE();
case M_END + U_ON:
s += strlen(s);
m++;
u_flag = U_OFF;
RE_CASE();
CASE_UANY(M_U):
u_flag = U_ON;
m++;
RE_CASE();
CASE_UANY(M_1J):
m += m->s_data.jump;
RE_CASE();
CASE_UANY(M_SAVE_POS): /* save position for a later M_2JC */
sp = RE_pos_push(sp, stackp, s);
m++;
RE_CASE();
CASE_UANY(M_2JA): /* take the non jump branch */
/* don't stack an ACCEPT */
if ((tm = m + m->s_data.jump)->s_type == M_ACCEPT) {
return 1;
}
push(tm, s, sp, u_flag);
m++;
RE_CASE();
CASE_UANY(M_2JC): /* take the jump branch if position changed */
if (RE_pos_pop(&sp, stackp) == s) {
/* did not advance: do not jump back */
m++;
RE_CASE();
}
/* fall thru */
CASE_UANY(M_2JB): /* take the jump branch */
/* don't stack an ACCEPT */
if ((tm = m + 1)->s_type == M_ACCEPT) {
return 1;
}
push(tm, s, sp, u_flag);
m += m->s_data.jump;
RE_CASE();
CASE_UANY(M_ACCEPT):
return 1;
default:
RE_panic("unexpected case in REtest");
}
}
#undef push