regerror.c revision 1.24 1 /* $NetBSD: regerror.c,v 1.24 2021/02/23 22:14:59 christos Exp $ */
2
3 /*-
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 * Copyright (c) 1992, 1993, 1994 Henry Spencer.
7 * Copyright (c) 1992, 1993, 1994
8 * The Regents of the University of California. All rights reserved.
9 *
10 * This code is derived from software contributed to Berkeley by
11 * Henry Spencer.
12 *
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
15 * are met:
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. Neither the name of the University nor the names of its contributors
22 * may be used to endorse or promote products derived from this software
23 * without specific prior written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
36 *
37 * @(#)regerror.c 8.4 (Berkeley) 3/20/94
38 */
39
40 #include <sys/cdefs.h>
41 #if 0
42 static char sccsid[] = "@(#)regerror.c 8.4 (Berkeley) 3/20/94";
43 __FBSDID("$FreeBSD: head/lib/libc/regex/regerror.c 326025 2017-11-20 19:49:47Z pfg $");
44 #endif
45 __RCSID("$NetBSD: regerror.c,v 1.24 2021/02/23 22:14:59 christos Exp $");
46
47 #include "namespace.h"
48 #include <sys/types.h>
49 #include <stdio.h>
50 #include <string.h>
51 #include <limits.h>
52 #include <stdlib.h>
53 #include <regex.h>
54
55 #include "utils.h"
56
57 #ifdef __weak_alias
58 __weak_alias(regerror,_regerror)
59 #endif
60
61 /* ========= begin header generated by ./mkh ========= */
62 #ifdef __cplusplus
63 extern "C" {
64 #endif
65
66 /* === regerror.c === */
67 static const char *regatoi(const regex_t *preg, char *localbufm, size_t buflen);
68
69 #ifdef __cplusplus
70 }
71 #endif
72 /* ========= end header generated by ./mkh ========= */
73 /*
74 = #define REG_NOMATCH 1
75 = #define REG_BADPAT 2
76 = #define REG_ECOLLATE 3
77 = #define REG_ECTYPE 4
78 = #define REG_EESCAPE 5
79 = #define REG_ESUBREG 6
80 = #define REG_EBRACK 7
81 = #define REG_EPAREN 8
82 = #define REG_EBRACE 9
83 = #define REG_BADBR 10
84 = #define REG_ERANGE 11
85 = #define REG_ESPACE 12
86 = #define REG_BADRPT 13
87 = #define REG_EMPTY 14
88 = #define REG_ASSERT 15
89 = #define REG_INVARG 16
90 = #define REG_ENOSYS 17
91 = #define REG_ILLSEQ 18
92 = #define REG_ATOI 255 // convert name to number (!)
93 = #define REG_ITOA 0400 // convert number to name (!)
94 */
95 static const struct rerr {
96 int code;
97 const char *name;
98 const char *explain;
99 } rerrs[] = {
100 {REG_NOMATCH, "REG_NOMATCH", "regexec() failed to match"},
101 {REG_BADPAT, "REG_BADPAT", "invalid regular expression"},
102 {REG_ECOLLATE, "REG_ECOLLATE", "invalid collating element"},
103 {REG_ECTYPE, "REG_ECTYPE", "invalid character class"},
104 {REG_EESCAPE, "REG_EESCAPE", "trailing backslash (\\)"},
105 {REG_ESUBREG, "REG_ESUBREG", "invalid backreference number"},
106 {REG_EBRACK, "REG_EBRACK", "brackets ([ ]) not balanced"},
107 {REG_EPAREN, "REG_EPAREN", "parentheses not balanced"},
108 {REG_EBRACE, "REG_EBRACE", "braces not balanced"},
109 {REG_BADBR, "REG_BADBR", "invalid repetition count(s)"},
110 {REG_ERANGE, "REG_ERANGE", "invalid character range"},
111 {REG_ESPACE, "REG_ESPACE", "out of memory"},
112 {REG_BADRPT, "REG_BADRPT", "repetition-operator operand invalid"},
113 {REG_EMPTY, "REG_EMPTY", "empty (sub)expression"},
114 {REG_ASSERT, "REG_ASSERT", "\"can't happen\" -- you found a bug"},
115 {REG_INVARG, "REG_INVARG", "invalid argument to regex routine"},
116 {REG_ILLSEQ, "REG_ILLSEQ", "illegal byte sequence"},
117 {0, "", "*** unknown regexp error code ***"}
118 };
119
120 /*
121 - regerror - the interface to error numbers
122 = extern size_t regerror(int, const regex_t *, char *, size_t);
123 */
124 /* ARGSUSED */
125 size_t
126 regerror(int errcode,
127 const regex_t * __restrict preg,
128 char * __restrict errbuf,
129 size_t errbuf_size)
130 {
131 const struct rerr *r;
132 size_t len;
133 int target = errcode &~ REG_ITOA;
134 const char *s;
135 char convbuf[50];
136
137 _DIAGASSERT(errcode != REG_ATOI || preg != NULL);
138 _DIAGASSERT(errbuf != NULL);
139
140 if (errcode == REG_ATOI) {
141 s = regatoi(preg, convbuf, sizeof convbuf);
142 } else {
143 for (r = rerrs; r->code != 0; r++)
144 if (r->code == target)
145 break;
146
147 if (errcode®_ITOA) {
148 if (r->code != 0)
149 (void) strlcpy(convbuf, r->name, sizeof(convbuf));
150 else
151 snprintf(convbuf, sizeof(convbuf), "REG_0x%x", target);
152 s = convbuf;
153 } else
154 s = r->explain;
155 }
156
157 len = strlen(s) + 1;
158 if (errbuf_size > 0)
159 (void) strlcpy(errbuf, s, errbuf_size);
160
161 return(len);
162 }
163
164 /*
165 - regatoi - internal routine to implement REG_ATOI
166 == static char *regatoi(const regex_t *preg, char *localbuf);
167 */
168 static const char *
169 regatoi(const regex_t *preg, char *localbuf, size_t buflen)
170 {
171 const struct rerr *r;
172
173 for (r = rerrs; r->code != 0; r++)
174 if (strcmp(r->name, preg->re_endp) == 0)
175 break;
176 if (r->code == 0)
177 return "0";
178
179 snprintf(localbuf, buflen, "%d", r->code);
180 return localbuf;
181 }
182