1 /* $NetBSD: t_exhaust.c,v 1.7 2011/11/16 18:37:31 christos Exp $ */
4 * Copyright (c) 2011 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
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.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
39 #include <sys/cdefs.h>
40 __RCSID("$NetBSD: t_exhaust.c,v 1.7 2011/11/16 18:37:31 christos Exp $");
50 #define REGEX_MAXSIZE 9999
54 mkstr(const char *str
, size_t len
)
56 size_t slen
= strlen(str
);
57 char *p
= malloc(slen
* len
+ 1);
58 ATF_REQUIRE(p
!= NULL
);
59 for (size_t i
= 0; i
< len
; i
++)
60 strcpy(&p
[i
* slen
], str
);
65 concat(const char *d
, const char *s
)
67 size_t dlen
= strlen(d
);
68 size_t slen
= strlen(s
);
69 char *p
= malloc(dlen
+ slen
+ 1);
71 ATF_REQUIRE(p
!= NULL
);
81 s1
= mkstr("\\(", len
);
92 char *d
, *s1
, *s2
, *s3
;
93 s1
= mkstr("\\(", 60);
94 s2
= mkstr("(.*)", len
);
106 ps(const char *m
, const char *s
, size_t len
)
108 char *d
, *s1
, *s2
, *s3
;
114 d
= concat("(.?)", s3
);
122 return ps("((.*){0,255}", ")", len
);
128 return ps("(.\\{0,}", ")", len
);
134 return ps("((.*){1,255}", ")", len
);
140 return ps("(", "){1,100}", len
);
147 s1
= mkstr("(?:(.*)|", len
);
148 s2
= concat(s1
, "(.*)");
150 s1
= mkstr(")", len
);
157 static const struct {
158 char *(*pattern
)(size_t);
161 { p0
, REG_EXTENDED
},
162 { p1
, REG_EXTENDED
},
163 { p2
, REG_EXTENDED
},
164 { p3
, REG_EXTENDED
},
165 { p4
, REG_EXTENDED
},
166 { p5
, REG_EXTENDED
},
170 ATF_TC(regcomp_too_big
);
172 ATF_TC_HEAD(regcomp_too_big
, tc
)
175 atf_tc_set_md_var(tc
, "descr", "Check that large patterns don't"
176 " crash, but return a proper error code");
178 atf_tc_set_md_var(tc
, "timeout", "600");
179 atf_tc_set_md_var(tc
, "require.memory", "120M");
182 ATF_TC_BODY(regcomp_too_big
, tc
)
187 for (size_t i
= 0; i
< __arraycount(tests
); i
++) {
188 char *d
= (*tests
[i
].pattern
)(REGEX_MAXSIZE
);
189 e
= regcomp(&re
, d
, tests
[i
].type
);
192 (void)regerror(e
, &re
, ebuf
, sizeof(ebuf
));
193 ATF_REQUIRE_MSG(e
== REG_ESPACE
,
194 "regcomp returned %d (%s) for pattern %zu [%s]", e
, ebuf
,
200 (void)regexec(&re
, "aaaaaaaaaaa", 0, NULL
, 0);
208 ATF_TP_ADD_TC(tp
, regcomp_too_big
);
209 return atf_no_error();