1 /* Copyright (C) 1993-2016 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
21 #include <mach/error.h>
23 #include <sys/param.h>
26 /* It is critical here that we always use the `dcgettext' function for
27 the message translation. Since <libintl.h> only defines the macro
28 `dgettext' to use `dcgettext' for optimizing programs this is not
31 # include <locale.h> /* We need LC_MESSAGES. */
32 # define dgettext(domainname, msgid) dcgettext (domainname, msgid, LC_MESSAGES)
35 /* Return a string describing the errno code in ERRNUM. */
37 __strerror_r (int errnum
, char *buf
, size_t buflen
)
42 const struct error_system
*es
;
43 extern void __mach_error_map_compat (int *);
45 __mach_error_map_compat (&errnum
);
47 system
= err_get_system (errnum
);
48 sub
= err_get_sub (errnum
);
49 code
= err_get_code (errnum
);
51 if (system
> err_max_system
|| ! __mach_error_systems
[system
].bad_sub
)
53 /* Buffer we use to print the number in. For a maximum size for
54 `int' of 8 bytes we never need more than 20 digits. */
56 const char *unk
= _("Error in unknown error system: ");
57 const size_t unklen
= strlen (unk
);
61 p
= _itoa_word (errnum
, &numbuf
[20], 16, 1);
63 /* Now construct the result while taking care for the destination
65 q
= __mempcpy (buf
, unk
, MIN (unklen
, buflen
));
67 memcpy (q
, p
, MIN (&numbuf
[21] - p
, buflen
- unklen
));
69 /* Terminate the string in any case. */
71 buf
[buflen
- 1] = '\0';
76 es
= &__mach_error_systems
[system
];
78 if (sub
>= es
->max_sub
)
79 return (char *) es
->bad_sub
;
81 if (code
>= es
->subsystem
[sub
].max_code
)
83 /* Buffer we use to print the number in. For a maximum size for
84 `int' of 8 bytes we never need more than 20 digits. */
86 const char *unk
= _("Unknown error ");
87 const size_t unklen
= strlen (unk
);
89 size_t len
= strlen (es
->subsystem
[sub
].subsys_name
);
92 p
= _itoa_word (errnum
, &numbuf
[20], 10, 0);
94 /* Now construct the result while taking care for the destination
96 q
= __mempcpy (buf
, unk
, MIN (unklen
, buflen
));
99 q
= __mempcpy (q
, es
->subsystem
[sub
].subsys_name
,
100 MIN (len
, buflen
- unklen
));
101 if (unklen
+ len
< buflen
)
104 if (unklen
+ len
+ 1 < buflen
)
106 MIN (&numbuf
[21] - p
, buflen
- unklen
- len
- 1));
110 /* Terminate the string in any case. */
112 buf
[buflen
- 1] = '\0';
117 return (char *) _(es
->subsystem
[sub
].codes
[code
]);
119 libc_hidden_def (__strerror_r
)
120 weak_alias (__strerror_r
, strerror_r
)