lib: remove librte_ prefix from directory names
[dpdk.git] / lib / eal / common / eal_common_errno.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation
3  */
4
5 /* Use XSI-compliant portable version of strerror_r() */
6 #undef _GNU_SOURCE
7
8 #include <stdint.h>
9 #include <stdio.h>
10 #include <string.h>
11 #include <stdarg.h>
12 #include <errno.h>
13
14 #include <rte_per_lcore.h>
15 #include <rte_errno.h>
16 #include <rte_string_fns.h>
17
18 #ifdef RTE_EXEC_ENV_WINDOWS
19 #define strerror_r(errnum, buf, buflen) strerror_s(buf, buflen, errnum)
20 #endif
21
22 RTE_DEFINE_PER_LCORE(int, _rte_errno);
23
24 const char *
25 rte_strerror(int errnum)
26 {
27         /* BSD puts a colon in the "unknown error" messages, Linux doesn't */
28 #ifdef RTE_EXEC_ENV_FREEBSD
29         static const char *sep = ":";
30 #else
31         static const char *sep = "";
32 #endif
33 #define RETVAL_SZ 256
34         static RTE_DEFINE_PER_LCORE(char[RETVAL_SZ], retval);
35         char *ret = RTE_PER_LCORE(retval);
36
37         /* since some implementations of strerror_r throw an error
38          * themselves if errnum is too big, we handle that case here */
39         if (errnum >= RTE_MAX_ERRNO)
40                 snprintf(ret, RETVAL_SZ, "Unknown error%s %d", sep, errnum);
41         else
42                 switch (errnum){
43                 case E_RTE_SECONDARY:
44                         return "Invalid call in secondary process";
45                 case E_RTE_NO_CONFIG:
46                         return "Missing rte_config structure";
47                 default:
48                         if (strerror_r(errnum, ret, RETVAL_SZ) != 0)
49                                 snprintf(ret, RETVAL_SZ, "Unknown error%s %d",
50                                                 sep, errnum);
51                 }
52
53         return ret;
54 }