Automatically generated by Pod::Man 4.14 (Pod::Simple 3.42)

Standard preamble:
========================================================================
..
..
.. Set up some character translations and predefined strings. \*(-- will
give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
double quote, and \*(R" will give a right double quote. \*(C+ will
give a nicer C++. Capital omega is used to do unbreakable dashes and
therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
nothing in troff, for use with C<>.
.tr \(*W- . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\}
Escape single quotes in literal strings from groff's Unicode transform.

If the F register is >0, we'll generate index entries on stderr for
titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
entries marked with X<> in POD. Of course, you'll have to process the
output yourself in some meaningful fashion.

Avoid warning from groff about undefined register 'F'.
.. .nr rF 0 . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF Fear. Run. Save yourself. No user-serviceable parts.
. \" fudge factors for nroff and troff . ds #H 0 . ds #V .8m . ds #F .3m . ds #[ \f1 . ds #] .\} . ds #H ((1u-(\\\\n(.fu%2u))*.13m) . ds #V .6m . ds #F 0 . ds #[ \& . ds #] \& .\} . \" simple accents for nroff and troff . ds ' \& . ds ` \& . ds ^ \& . ds , \& . ds ~ ~ . ds / .\} . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u' . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u' . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u' . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u' .\} . \" troff and (daisy-wheel) nroff accents . \" corrections for vroff . \" for low resolution devices (crt and lpr) \{\ . ds : e . ds 8 ss . ds o a . ds d- d\h'-1'\(ga . ds D- D\h'-1'\(hy . ds th \o'bp' . ds Th \o'LP' . ds ae ae . ds Ae AE .\} ========================================================================

Title "ERR_PUT_ERROR 3ossl"
ERR_PUT_ERROR 3ossl "2023-09-19" "3.0.11" "OpenSSL"
For nroff, turn off justification. Always turn off hyphenation; it makes
way too many mistakes in technical documents.
"NAME"
ERR_raise, ERR_raise_data, ERR_put_error, ERR_add_error_data, ERR_add_error_vdata, ERR_add_error_txt, ERR_add_error_mem_bio \- record an error
"SYNOPSIS"
Header "SYNOPSIS" .Vb 1 #include <openssl/err.h> \& void ERR_raise(int lib, int reason); void ERR_raise_data(int lib, int reason, const char *fmt, ...); \& void ERR_add_error_data(int num, ...); void ERR_add_error_vdata(int num, va_list arg); void ERR_add_error_txt(const char *sep, const char *txt); void ERR_add_error_mem_bio(const char *sep, BIO *bio); .Ve

The following function has been deprecated since OpenSSL 3.0, and can be hidden entirely by defining \s-1OPENSSL_API_COMPAT\s0 with a suitable version value, see openssl_user_macros\|(7):

.Vb 1 void ERR_put_error(int lib, int func, int reason, const char *file, int line); .Ve

"DESCRIPTION"
Header "DESCRIPTION" \fBERR_raise() adds a new error to the thread's error queue. The error occurred in the library lib for the reason given by the \fBreason code. Furthermore, the name of the file, the line, and name of the function where the error occurred is saved with the error record.

\fBERR_raise_data() does the same thing as ERR_raise(), but also lets the caller specify additional information as a format string fmt and an arbitrary number of values, which are processed with BIO_snprintf\|(3).

\fBERR_put_error() adds an error code to the thread's error queue. It signals that the error of reason code reason occurred in function \fBfunc of library lib, in line number line of file. This function is usually called by a macro.

\fBERR_add_error_data() associates the concatenation of its num string arguments as additional data with the error code added last. \fBERR_add_error_vdata() is similar except the argument is a va_list. Multiple calls to these functions append to the current top of the error queue. The total length of the string data per error is limited to 4096 characters.

\fBERR_add_error_txt() appends the given text string as additional data to the last error queue entry, after inserting the optional separator string if it is not \s-1NULL\s0 and the top error entry does not yet have additional data. In case the separator is at the end of the text it is not appended to the data. The sep argument may be for instance \*(L"\en\*(R" to insert a line break when needed. If the associated data would become more than 4096 characters long (which is the limit given above) it is split over sufficiently many new copies of the last error queue entry.

\fBERR_add_error_mem_bio() is the same as ERR_add_error_txt() except that the text string is taken from the given memory \s-1BIO.\s0 It appends '\e0' to the \s-1BIO\s0 contents if not already NUL-terminated.

\fBERR_load_strings\|(3) can be used to register error strings so that the application can a generate human-readable error messages for the error code.

"Reporting errors"
Subsection "Reporting errors" OpenSSL library reports Subsection "OpenSSL library reports"

Each OpenSSL sub-library has library code \s-1ERR_LIB_XXX\s0 and has its own set of reason codes \s-1XXX_R_...\s0. These are both passed in combination to \fBERR_raise() and ERR_raise_data(), and the combination ultimately produces the correct error text for the reported error.

All these macros and the numbers they have as values are specific to OpenSSL's libraries. OpenSSL reason codes normally consist of textual error descriptions. For example, the function ssl3_read_bytes() reports a \*(L"handshake failure\*(R" as follows:

.Vb 1 ERR_raise(ERR_LIB_SSL, SSL_R_SSL_HANDSHAKE_FAILURE); .Ve

There are two exceptions:

"\s-1ERR_LIB_SYS\s0" 4
Item "ERR_LIB_SYS" This \*(L"library code\*(R" indicates that a system error is being reported. In this case, the reason code given to ERR_raise() and ERR_raise_data() must be errno\|(3). .Sp .Vb 1 ERR_raise(ERR_LIB_SYS, errno); .Ve
"\s-1ERR_R_XXX\s0" 4
Item "ERR_R_XXX" This set of error codes is considered global, and may be used in combination with any sub-library code. .Sp .Vb 1 ERR_raise(ERR_LIB_RSA, ERR_R_PASSED_INVALID_ARGUMENT); .Ve

Other pieces of software Subsection "Other pieces of software"

Other pieces of software that may want to use OpenSSL's error reporting system, such as engines or applications, must normally get their own numbers.

"\(bu" 4
To get a \*(L"library\*(R" code, call ERR_get_next_error_library\|(3); this gives the calling code a dynamic number, usable for the duration of the process.
"\(bu" 4
Reason codes for each such \*(L"library\*(R" are determined or generated by the authors of that code. They must be numbers in the range 1 to 524287 (in other words, they must be nonzero unsigned 18 bit integers).

The exceptions mentioned in \*(L"OpenSSL library reports\*(R" above are valid for other pieces of software, i.e. they may use \s-1ERR_LIB_SYS\s0 to report system errors:

.Vb 1 ERR_raise(ERR_LIB_SYS, errno); .Ve

... and they may use \s-1ERR_R_XXX\s0 macros together with their own \*(L"library\*(R" code.

.Vb 1 int app_lib_code = ERR_get_next_error_library(); \& /* ... */ \& ERR_raise(app_lib_code, ERR_R_PASSED_INVALID_ARGUMENT); .Ve

"RETURN VALUES"
Header "RETURN VALUES" \fBERR_raise(), ERR_raise_data(), ERR_put_error(), \fBERR_add_error_data(), ERR_add_error_vdata() \fBERR_add_error_txt(), and ERR_add_error_mem_bio() return no values.
"NOTES"
Header "NOTES" \fBERR_raise(), ERR_raise() and ERR_put_error() are implemented as macros.
"SEE ALSO"
Header "SEE ALSO" \fBERR_load_strings\|(3), ERR_get_next_error_library\|(3)
"HISTORY"
Header "HISTORY" ERR_raise, ERR_raise_data, ERR_add_error_txt() and ERR_add_error_mem_bio() were added in OpenSSL 3.0.
"COPYRIGHT"
Header "COPYRIGHT" Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.

Licensed under the Apache License 2.0 (the \*(L"License\*(R"). You may not use this file except in compliance with the License. You can obtain a copy in the file \s-1LICENSE\s0 in the source distribution or at <https://www.openssl.org/source/license.html>.