Imported Upstream version 1.15.1
[platform/upstream/krb5.git] / src / util / support / strerror_r.c
1 /* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2 /* util/support/strerror_r.c - strerror_r compatibility shim */
3 /*
4  * Copyright (C) 2014 by the Massachusetts Institute of Technology.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * * Redistributions of source code must retain the above copyright
12  *   notice, this list of conditions and the following disclaimer.
13  *
14  * * Redistributions in binary form must reproduce the above copyright
15  *   notice, this list of conditions and the following disclaimer in
16  *   the documentation and/or other materials provided with the
17  *   distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
22  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
23  * COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
24  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
30  * OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include <k5-platform.h>
34 #undef strerror_r
35
36 #if defined(_WIN32)
37
38 /* Implement strerror_r in terms of strerror_s. */
39 int
40 k5_strerror_r(int errnum, char *buf, size_t buflen)
41 {
42     int st;
43
44     st = strerror_s(buf, buflen, errnum);
45     if (st != 0) {
46         errno = st;
47         return -1;
48     }
49 }
50
51 #elif !defined(HAVE_STRERROR_R)
52
53 /* Implement strerror_r in terms of strerror (not thread-safe). */
54 int
55 k5_strerror_r(int errnum, char *buf, size_t buflen)
56 {
57     if (strlcpy(buf, strerror(errnum), buflen) >= buflen) {
58         errno = ERANGE;
59         return -1;
60     }
61     return 0;
62 }
63
64 #elif defined(STRERROR_R_CHAR_P)
65
66 /*
67  * Implement the POSIX strerror_r API in terms of the GNU strerror_r, which
68  * returns a pointer to either the caller buffer or a constant string.  This is
69  * the default version on glibc systems when _GNU_SOURCE is defined.
70  */
71 int
72 k5_strerror_r(int errnum, char *buf, size_t buflen)
73 {
74     const char *str;
75
76     str = strerror_r(errnum, buf, buflen);
77     if (str != buf) {
78         if (strlcpy(buf, str, buflen) >= buflen) {
79             errno = ERANGE;
80             return -1;
81         }
82     }
83     return 0;
84 }
85
86 #else
87
88 /* Define a stub in terms of the real strerror_r, just to simplify the library
89  * export list.  This shouldn't get used. */
90 int
91 k5_strerror_r(int errnum, char *buf, size_t buflen)
92 {
93     return strerror_r(errnum, buf, buflen);
94 }
95
96 #endif