1 /* $NetBSD: regerror.c,v 1.23 2007/02/09 23:44:18 junyoung Exp $ */
4 * Copyright (c) 1992, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
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. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * @(#)regerror.c 8.4 (Berkeley) 3/20/94
38 * Copyright (c) 1992, 1993, 1994 Henry Spencer.
40 * This code is derived from software contributed to Berkeley by
43 * Redistribution and use in source and binary forms, with or without
44 * modification, are permitted provided that the following conditions
46 * 1. Redistributions of source code must retain the above copyright
47 * notice, this list of conditions and the following disclaimer.
48 * 2. Redistributions in binary form must reproduce the above copyright
49 * notice, this list of conditions and the following disclaimer in the
50 * documentation and/or other materials provided with the distribution.
51 * 3. All advertising materials mentioning features or use of this software
52 * must display the following acknowledgement:
53 * This product includes software developed by the University of
54 * California, Berkeley and its contributors.
55 * 4. Neither the name of the University nor the names of its contributors
56 * may be used to endorse or promote products derived from this software
57 * without specific prior written permission.
59 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
60 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
61 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
62 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
63 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
64 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
65 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
66 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
67 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
68 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
71 * @(#)regerror.c 8.4 (Berkeley) 3/20/94
75 __RCSID("$NetBSD: regerror.c,v 1.23 2007/02/09 23:44:18 junyoung Exp $");
86 #include <sys/types.h>
98 __weak_alias(regerror
,_regerror
)
103 /* ========= begin header generated by ./mkh ========= */
108 /* === regerror.c === */
109 static const char *regatoi(const regex_t
*preg
, char *localbuf
, size_t buflen
);
114 /* ========= end header generated by ./mkh ========= */
116 = #define REG_NOMATCH 1
117 = #define REG_BADPAT 2
118 = #define REG_ECOLLATE 3
119 = #define REG_ECTYPE 4
120 = #define REG_EESCAPE 5
121 = #define REG_ESUBREG 6
122 = #define REG_EBRACK 7
123 = #define REG_EPAREN 8
124 = #define REG_EBRACE 9
125 = #define REG_BADBR 10
126 = #define REG_ERANGE 11
127 = #define REG_ESPACE 12
128 = #define REG_BADRPT 13
129 = #define REG_EMPTY 14
130 = #define REG_ASSERT 15
131 = #define REG_INVARG 16
132 = #define REG_ATOI 255 // convert name to number (!)
133 = #define REG_ITOA 0400 // convert number to name (!)
135 static const struct rerr
{
140 { REG_NOMATCH
, "REG_NOMATCH", "regexec() failed to match" },
141 { REG_BADPAT
, "REG_BADPAT", "invalid regular expression" },
142 { REG_ECOLLATE
, "REG_ECOLLATE", "invalid collating element" },
143 { REG_ECTYPE
, "REG_ECTYPE", "invalid character class" },
144 { REG_EESCAPE
, "REG_EESCAPE", "trailing backslash (\\)" },
145 { REG_ESUBREG
, "REG_ESUBREG", "invalid backreference number" },
146 { REG_EBRACK
, "REG_EBRACK", "brackets ([ ]) not balanced" },
147 { REG_EPAREN
, "REG_EPAREN", "parentheses not balanced" },
148 { REG_EBRACE
, "REG_EBRACE", "braces not balanced" },
149 { REG_BADBR
, "REG_BADBR", "invalid repetition count(s)" },
150 { REG_ERANGE
, "REG_ERANGE", "invalid character range" },
151 { REG_ESPACE
, "REG_ESPACE", "out of memory" },
152 { REG_BADRPT
, "REG_BADRPT", "repetition-operator operand invalid" },
153 { REG_EMPTY
, "REG_EMPTY", "empty (sub)expression" },
154 { REG_ASSERT
, "REG_ASSERT", "\"can't happen\" -- you found a bug" },
155 { REG_INVARG
, "REG_INVARG", "invalid argument to regex routine" },
156 { 0, "", "*** unknown regexp error code ***" }
160 * regerror - the interface to error numbers
161 * extern size_t regerror(int, const regex_t *, char *, size_t);
171 const struct rerr
*r
;
173 int target
= errcode
&~ REG_ITOA
;
177 assert(errcode
!= REG_ATOI
|| preg
!= NULL
);
178 assert(errbuf
!= NULL
);
180 if (errcode
== REG_ATOI
)
181 s
= regatoi(preg
, convbuf
, sizeof convbuf
);
183 for (r
= rerrs
; r
->code
!= 0; r
++)
184 if (r
->code
== target
)
187 if (errcode
& REG_ITOA
) {
189 (void)strlcpy(convbuf
, r
->name
, sizeof convbuf
);
191 (void)snprintf(convbuf
, sizeof convbuf
,
200 (void)strlcpy(errbuf
, s
, errbuf_size
);
206 * regatoi - internal routine to implement REG_ATOI
207 * static const char *regatoi(const regex_t *preg, char *localbuf,
216 const struct rerr
*r
;
218 for (r
= rerrs
; r
->code
!= 0; r
++)
219 if (strcmp(r
->name
, preg
->re_endp
) == 0)
224 (void)snprintf(localbuf
, buflen
, "%d", r
->code
);