xref: /freebsd/lib/libc/string/strerror.c (revision cf8e5289a110954600f135024d1515a77d0ae34d)
168cd9bedSMike Barcroft /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
458f0484fSRodney W. Grimes  * Copyright (c) 1988, 1993
558f0484fSRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
658f0484fSRodney W. Grimes  *
758f0484fSRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
858f0484fSRodney W. Grimes  * modification, are permitted provided that the following conditions
958f0484fSRodney W. Grimes  * are met:
1058f0484fSRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
1158f0484fSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
1258f0484fSRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
1358f0484fSRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
1458f0484fSRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
153fb3b97cSEd Maste  * 3. Neither the name of the University nor the names of its contributors
1658f0484fSRodney W. Grimes  *    may be used to endorse or promote products derived from this software
1758f0484fSRodney W. Grimes  *    without specific prior written permission.
1858f0484fSRodney W. Grimes  *
1958f0484fSRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
2058f0484fSRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2158f0484fSRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2258f0484fSRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2358f0484fSRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2458f0484fSRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2558f0484fSRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2658f0484fSRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2758f0484fSRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2858f0484fSRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2958f0484fSRodney W. Grimes  * SUCH DAMAGE.
3058f0484fSRodney W. Grimes  */
3158f0484fSRodney W. Grimes 
32fba5c5faSAlexey Zelkin #if defined(NLS)
33fba5c5faSAlexey Zelkin #include <nl_types.h>
34fba5c5faSAlexey Zelkin #endif
359c324dc0SWes Peters 
36fc7c3528SAlexey Zelkin #include <limits.h>
37fba5c5faSAlexey Zelkin #include <errno.h>
38fba5c5faSAlexey Zelkin #include <string.h>
39fba5c5faSAlexey Zelkin #include <stdio.h>
40fba5c5faSAlexey Zelkin 
41*cf8e5289SKyle Evans #include <ssp/ssp.h>
42*cf8e5289SKyle Evans 
43e73151ebSJilles Tjoelker #include "errlst.h"
44675079b1SKonstantin Belousov #include "../locale/xlocale_private.h"
45675079b1SKonstantin Belousov #include "libc_private.h"
46e73151ebSJilles Tjoelker 
475a98f074SMike Barcroft /*
48cd49e866SKonstantin Belousov  * Define buffer big enough to contain delimiter (": ", 2 bytes),
49cd49e866SKonstantin Belousov  * 64-bit signed integer converted to ASCII decimal (19 bytes) with
50cd49e866SKonstantin Belousov  * optional leading sign (1 byte), and a trailing NUL.
515a98f074SMike Barcroft  */
52cd49e866SKonstantin Belousov #define	EBUFSIZE	(2 + 19 + 1 + 1)
535a98f074SMike Barcroft 
5468cd9bedSMike Barcroft /*
5568cd9bedSMike Barcroft  * Doing this by hand instead of linking with stdio(3) avoids bloat for
5668cd9bedSMike Barcroft  * statically linked binaries.
5768cd9bedSMike Barcroft  */
585a98f074SMike Barcroft static void
errstr(int num,const char * uprefix,char * buf,size_t len)59311a1725SKonstantin Belousov errstr(int num, const char *uprefix, char *buf, size_t len)
609c324dc0SWes Peters {
61e37f8b53SMike Barcroft 	char *t;
6268cd9bedSMike Barcroft 	unsigned int uerr;
635a98f074SMike Barcroft 	char tmp[EBUFSIZE];
6458f0484fSRodney W. Grimes 
65e37f8b53SMike Barcroft 	t = tmp + sizeof(tmp);
66e37f8b53SMike Barcroft 	*--t = '\0';
675a98f074SMike Barcroft 	uerr = (num >= 0) ? num : -num;
68f61a2edeSWes Peters 	do {
69e37f8b53SMike Barcroft 		*--t = "0123456789"[uerr % 10];
70f61a2edeSWes Peters 	} while (uerr /= 10);
71f61a2edeSWes Peters 	if (num < 0)
72e37f8b53SMike Barcroft 		*--t = '-';
73fba5c5faSAlexey Zelkin 	*--t = ' ';
74fba5c5faSAlexey Zelkin 	*--t = ':';
75fba5c5faSAlexey Zelkin 	strlcpy(buf, uprefix, len);
76d0509082SJacques Vidrine 	strlcat(buf, t, len);
775a98f074SMike Barcroft }
785a98f074SMike Barcroft 
7992771bc0SKonstantin Belousov int
__strerror_rl(int errnum,char * strerrbuf,size_t buflen,locale_t locale)8092771bc0SKonstantin Belousov __strerror_rl(int errnum, char *strerrbuf, size_t buflen, locale_t locale)
815a98f074SMike Barcroft {
82fba5c5faSAlexey Zelkin 	int retval = 0;
83fba5c5faSAlexey Zelkin #if defined(NLS)
84fba5c5faSAlexey Zelkin 	int saved_errno = errno;
85fba5c5faSAlexey Zelkin 	nl_catd catd;
86675079b1SKonstantin Belousov 
87675079b1SKonstantin Belousov 	catd = __catopen_l("libc", NL_CAT_LOCALE, locale);
88fba5c5faSAlexey Zelkin #endif
895a98f074SMike Barcroft 
90e73151ebSJilles Tjoelker 	if (errnum < 0 || errnum >= __hidden_sys_nerr) {
91fba5c5faSAlexey Zelkin 		errstr(errnum,
92fba5c5faSAlexey Zelkin #if defined(NLS)
93cd49e866SKonstantin Belousov 		    catgets(catd, 1, 0xffff, __uprefix),
94fba5c5faSAlexey Zelkin #else
95cd49e866SKonstantin Belousov 		    __uprefix,
96fba5c5faSAlexey Zelkin #endif
97fba5c5faSAlexey Zelkin 		   strerrbuf, buflen);
98fba5c5faSAlexey Zelkin 		retval = EINVAL;
99fba5c5faSAlexey Zelkin 	} else {
100fba5c5faSAlexey Zelkin 		if (strlcpy(strerrbuf,
101fba5c5faSAlexey Zelkin #if defined(NLS)
102e73151ebSJilles Tjoelker 		    catgets(catd, 1, errnum, __hidden_sys_errlist[errnum]),
103fba5c5faSAlexey Zelkin #else
104e73151ebSJilles Tjoelker 		    __hidden_sys_errlist[errnum],
105fba5c5faSAlexey Zelkin #endif
106fba5c5faSAlexey Zelkin 		    buflen) >= buflen)
107fba5c5faSAlexey Zelkin 			retval = ERANGE;
10868cd9bedSMike Barcroft 	}
109fba5c5faSAlexey Zelkin 
110fba5c5faSAlexey Zelkin #if defined(NLS)
111fba5c5faSAlexey Zelkin 	catclose(catd);
112fba5c5faSAlexey Zelkin 	errno = saved_errno;
113fba5c5faSAlexey Zelkin #endif
114fba5c5faSAlexey Zelkin 
115fba5c5faSAlexey Zelkin 	return (retval);
1165a98f074SMike Barcroft }
1175a98f074SMike Barcroft 
118675079b1SKonstantin Belousov int
__ssp_real(strerror_r)119*cf8e5289SKyle Evans __ssp_real(strerror_r)(int errnum, char *strerrbuf, size_t buflen)
120675079b1SKonstantin Belousov {
12192771bc0SKonstantin Belousov 	return (__strerror_rl(errnum, strerrbuf, buflen, __get_locale()));
122675079b1SKonstantin Belousov }
123675079b1SKonstantin Belousov 
124675079b1SKonstantin Belousov char *
strerror_l(int num,locale_t locale)125675079b1SKonstantin Belousov strerror_l(int num, locale_t locale)
126675079b1SKonstantin Belousov {
127675079b1SKonstantin Belousov 	static _Thread_local char ebuf[NL_TEXTMAX];
128675079b1SKonstantin Belousov 
12992771bc0SKonstantin Belousov 	if (__strerror_rl(num, ebuf, sizeof(ebuf), locale) != 0)
130675079b1SKonstantin Belousov 		errno = EINVAL;
131675079b1SKonstantin Belousov 	return (ebuf);
132675079b1SKonstantin Belousov }
133675079b1SKonstantin Belousov 
1345a98f074SMike Barcroft char *
strerror(int num)1355a98f074SMike Barcroft strerror(int num)
1365a98f074SMike Barcroft {
137fba5c5faSAlexey Zelkin 	static char ebuf[NL_TEXTMAX];
1385a98f074SMike Barcroft 
13992771bc0SKonstantin Belousov 	if (__strerror_rl(num, ebuf, sizeof(ebuf), __get_locale()) != 0)
1405a98f074SMike Barcroft 		errno = EINVAL;
141f61a2edeSWes Peters 	return (ebuf);
14258f0484fSRodney W. Grimes }
143