Ulf Möller | 388f2f5 | 2000-02-01 01:37:00 +0000 | [diff] [blame] | 1 | =pod |
| 2 | |
| 3 | =head1 NAME |
| 4 | |
Richard Levitte | e1b78bc | 2000-09-14 21:23:28 +0000 | [diff] [blame] | 5 | ERR_error_string, ERR_error_string_n, ERR_lib_error_string, |
| 6 | ERR_func_error_string, ERR_reason_error_string - obtain human-readable |
| 7 | error message |
Ulf Möller | 388f2f5 | 2000-02-01 01:37:00 +0000 | [diff] [blame] | 8 | |
| 9 | =head1 SYNOPSIS |
| 10 | |
| 11 | #include <openssl/err.h> |
| 12 | |
| 13 | char *ERR_error_string(unsigned long e, char *buf); |
Dr. Stephen Henson | 4451c25 | 2004-11-14 15:11:37 +0000 | [diff] [blame] | 14 | void ERR_error_string_n(unsigned long e, char *buf, size_t len); |
Ulf Möller | 388f2f5 | 2000-02-01 01:37:00 +0000 | [diff] [blame] | 15 | |
| 16 | const char *ERR_lib_error_string(unsigned long e); |
| 17 | const char *ERR_func_error_string(unsigned long e); |
| 18 | const char *ERR_reason_error_string(unsigned long e); |
| 19 | |
| 20 | =head1 DESCRIPTION |
| 21 | |
| 22 | ERR_error_string() generates a human-readable string representing the |
Rich Salz | a047435 | 2016-02-01 15:15:06 -0500 | [diff] [blame] | 23 | error code I<e>, and places it at I<buf>. I<buf> must be at least 256 |
Bodo Möller | e5c84d5 | 2000-04-14 23:36:15 +0000 | [diff] [blame] | 24 | bytes long. If I<buf> is B<NULL>, the error string is placed in a |
Ulf Möller | 388f2f5 | 2000-02-01 01:37:00 +0000 | [diff] [blame] | 25 | static buffer. |
Rich Salz | a047435 | 2016-02-01 15:15:06 -0500 | [diff] [blame] | 26 | Note that this function is not thread-safe and does no checks on the size |
| 27 | of the buffer; use ERR_error_string_n() instead. |
| 28 | |
Bodo Möller | e5c84d5 | 2000-04-14 23:36:15 +0000 | [diff] [blame] | 29 | ERR_error_string_n() is a variant of ERR_error_string() that writes |
| 30 | at most I<len> characters (including the terminating 0) |
Bodo Möller | 2c8c4ce | 2000-04-15 00:04:30 +0000 | [diff] [blame] | 31 | and truncates the string if necessary. |
Bodo Möller | e5c84d5 | 2000-04-14 23:36:15 +0000 | [diff] [blame] | 32 | For ERR_error_string_n(), I<buf> may not be B<NULL>. |
Ulf Möller | 388f2f5 | 2000-02-01 01:37:00 +0000 | [diff] [blame] | 33 | |
| 34 | The string will have the following format: |
| 35 | |
| 36 | error:[error code]:[library name]:[function name]:[reason string] |
| 37 | |
| 38 | I<error code> is an 8 digit hexadecimal number, I<library name>, |
| 39 | I<function name> and I<reason string> are ASCII text. |
| 40 | |
| 41 | ERR_lib_error_string(), ERR_func_error_string() and |
| 42 | ERR_reason_error_string() return the library name, function |
| 43 | name and reason string respectively. |
| 44 | |
Ulf Möller | 388f2f5 | 2000-02-01 01:37:00 +0000 | [diff] [blame] | 45 | If there is no text string registered for the given error code, |
| 46 | the error string will contain the numeric code. |
| 47 | |
Rich Salz | 9b86974 | 2015-08-17 15:21:33 -0400 | [diff] [blame] | 48 | L<ERR_print_errors(3)> can be used to print |
Ulf Möller | 388f2f5 | 2000-02-01 01:37:00 +0000 | [diff] [blame] | 49 | all error codes currently in the queue. |
| 50 | |
| 51 | =head1 RETURN VALUES |
| 52 | |
| 53 | ERR_error_string() returns a pointer to a static buffer containing the |
Bodo Möller | e5c84d5 | 2000-04-14 23:36:15 +0000 | [diff] [blame] | 54 | string if I<buf> B<== NULL>, I<buf> otherwise. |
Ulf Möller | 388f2f5 | 2000-02-01 01:37:00 +0000 | [diff] [blame] | 55 | |
| 56 | ERR_lib_error_string(), ERR_func_error_string() and |
| 57 | ERR_reason_error_string() return the strings, and B<NULL> if |
| 58 | none is registered for the error code. |
| 59 | |
| 60 | =head1 SEE ALSO |
| 61 | |
Rich Salz | 73fb82b | 2017-03-02 10:07:21 -0500 | [diff] [blame] | 62 | L<ERR_get_error(3)>, |
Rich Salz | 9b86974 | 2015-08-17 15:21:33 -0400 | [diff] [blame] | 63 | L<ERR_print_errors(3)> |
Ulf Möller | 388f2f5 | 2000-02-01 01:37:00 +0000 | [diff] [blame] | 64 | |
Rich Salz | e2f9261 | 2016-05-18 11:44:05 -0400 | [diff] [blame] | 65 | =head1 COPYRIGHT |
| 66 | |
Rich Salz | 73fb82b | 2017-03-02 10:07:21 -0500 | [diff] [blame] | 67 | Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved. |
Rich Salz | e2f9261 | 2016-05-18 11:44:05 -0400 | [diff] [blame] | 68 | |
| 69 | Licensed under the OpenSSL license (the "License"). You may not use |
| 70 | this file except in compliance with the License. You can obtain a copy |
| 71 | in the file LICENSE in the source distribution or at |
| 72 | L<https://www.openssl.org/source/license.html>. |
| 73 | |
| 74 | =cut |