Changeset 94082 in vbox for trunk/src/libs/openssl-3.0.1/doc/man3/ERR_put_error.pod
- Timestamp:
- Mar 3, 2022 7:17:34 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 150325
- Location:
- trunk/src/libs/openssl-3.0.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/openssl-3.0.1
- Property svn:mergeinfo
-
old new 12 12 /vendor/openssl/1.1.1c:131722-131725 13 13 /vendor/openssl/1.1.1k:145841-145843 14 /vendor/openssl/3.0.1:150323-150324 15 /vendor/openssl/current:147554-150322
-
- Property svn:mergeinfo
-
trunk/src/libs/openssl-3.0.1/doc/man3/ERR_put_error.pod
r91772 r94082 1 1 =pod 2 3 =for openssl foreign manual errno(3) 2 4 3 5 =head1 NAME 4 6 5 ERR_put_error, ERR_add_error_data, ERR_add_error_vdata - record an error 7 ERR_raise, ERR_raise_data, 8 ERR_put_error, ERR_add_error_data, ERR_add_error_vdata, 9 ERR_add_error_txt, ERR_add_error_mem_bio 10 - record an error 6 11 7 12 =head1 SYNOPSIS … … 9 14 #include <openssl/err.h> 10 15 11 void ERR_put_error(int lib, int func, int reason, const char *file, int line); 16 void ERR_raise(int lib, int reason); 17 void ERR_raise_data(int lib, int reason, const char *fmt, ...); 12 18 13 19 void ERR_add_error_data(int num, ...); 14 20 void ERR_add_error_vdata(int num, va_list arg); 21 void ERR_add_error_txt(const char *sep, const char *txt); 22 void ERR_add_error_mem_bio(const char *sep, BIO *bio); 23 24 The following function has been deprecated since OpenSSL 3.0, and can be 25 hidden entirely by defining B<OPENSSL_API_COMPAT> with a suitable version value, 26 see L<openssl_user_macros(7)>: 27 28 void ERR_put_error(int lib, int func, int reason, const char *file, int line); 15 29 16 30 =head1 DESCRIPTION 31 32 ERR_raise() adds a new error to the thread's error queue. The 33 error occurred in the library B<lib> for the reason given by the 34 B<reason> code. Furthermore, the name of the file, the line, and name 35 of the function where the error occurred is saved with the error 36 record. 37 38 ERR_raise_data() does the same thing as ERR_raise(), but also lets the 39 caller specify additional information as a format string B<fmt> and an 40 arbitrary number of values, which are processed with L<BIO_snprintf(3)>. 17 41 18 42 ERR_put_error() adds an error code to the thread's error queue. It … … 22 46 23 47 ERR_add_error_data() associates the concatenation of its B<num> string 24 arguments with the error code added last.48 arguments as additional data with the error code added last. 25 49 ERR_add_error_vdata() is similar except the argument is a B<va_list>. 50 Multiple calls to these functions append to the current top of the error queue. 51 The total length of the string data per error is limited to 4096 characters. 52 53 ERR_add_error_txt() appends the given text string as additional data to the 54 last error queue entry, after inserting the optional separator string if it is 55 not NULL and the top error entry does not yet have additional data. 56 In case the separator is at the end of the text it is not appended to the data. 57 The B<sep> argument may be for instance "\n" to insert a line break when needed. 58 If the associated data would become more than 4096 characters long 59 (which is the limit given above) 60 it is split over sufficiently many new copies of the last error queue entry. 61 62 ERR_add_error_mem_bio() is the same as ERR_add_error_txt() except that 63 the text string is taken from the given memory BIO. 64 It appends '\0' to the BIO contents if not already NUL-terminated. 26 65 27 66 L<ERR_load_strings(3)> can be used to register … … 31 70 =head2 Reporting errors 32 71 33 Each sub-library has a specific macro XXXerr() that is used to report 34 errors. Its first argument is a function code B<XXX_F_...>, the second 35 argument is a reason code B<XXX_R_...>. Function codes are derived 36 from the function names; reason codes consist of textual error 72 =head3 OpenSSL library reports 73 74 Each OpenSSL sub-library has library code B<ERR_LIB_XXX> and has its own set 75 of reason codes B<XXX_R_...>. These are both passed in combination to 76 ERR_raise() and ERR_raise_data(), and the combination ultimately produces 77 the correct error text for the reported error. 78 79 All these macros and the numbers they have as values are specific to 80 OpenSSL's libraries. OpenSSL reason codes normally consist of textual error 37 81 descriptions. For example, the function ssl3_read_bytes() reports a 38 82 "handshake failure" as follows: 39 83 40 SSLerr(SSL_F_SSL3_READ_BYTES, SSL_R_SSL_HANDSHAKE_FAILURE);84 ERR_raise(ERR_LIB_SSL, SSL_R_SSL_HANDSHAKE_FAILURE); 41 85 42 Function and reason codes should consist of uppercase characters, 43 numbers and underscores only. The error file generation script translates 44 function codes into function names by looking in the header files 45 for an appropriate function name, if none is found it just uses 46 the capitalized form such as "SSL3_READ_BYTES" in the above example. 86 There are two exceptions: 47 87 48 The trailing section of a reason code (after the "_R_") is translated 49 into lowercase and underscores changed to spaces. 88 =over 4 89 90 =item B<ERR_LIB_SYS> 91 92 This "library code" indicates that a system error is being reported. In 93 this case, the reason code given to ERR_raise() and ERR_raise_data() I<must> 94 be L<errno(3)>. 95 96 ERR_raise(ERR_LIB_SYS, errno); 97 98 =item B<ERR_R_XXX> 99 100 This set of error codes is considered global, and may be used in combination 101 with any sub-library code. 102 103 ERR_raise(ERR_LIB_RSA, ERR_R_PASSED_INVALID_ARGUMENT); 104 105 =back 106 107 =head3 Other pieces of software 108 109 Other pieces of software that may want to use OpenSSL's error reporting 110 system, such as engines or applications, must normally get their own 111 numbers. 112 113 =over 4 114 115 =item * 116 117 To get a "library" code, call L<ERR_get_next_error_library(3)>; this gives 118 the calling code a dynamic number, usable for the duration of the process. 119 120 =item * 121 122 Reason codes for each such "library" are determined or generated by the 123 authors of that code. They must be numbers in the range 1 to 524287 (in 124 other words, they must be nonzero unsigned 18 bit integers). 125 126 =back 127 128 The exceptions mentioned in L</OpenSSL library reports> above are valid for 129 other pieces of software, i.e. they may use B<ERR_LIB_SYS> to report system 130 errors: 131 132 ERR_raise(ERR_LIB_SYS, errno); 133 134 ... and they may use B<ERR_R_XXX> macros together with their own "library" 135 code. 136 137 int app_lib_code = ERR_get_next_error_library(); 138 139 /* ... */ 140 141 ERR_raise(app_lib_code, ERR_R_PASSED_INVALID_ARGUMENT); 142 143 =begin comment 144 145 [These are OpenSSL specific recommendations] 146 147 Reason codes should consist of uppercase characters, numbers and underscores 148 only. The error file generation script translates the trailing section of a 149 reason code (after the "_R_") into lowercase with underscores changed to 150 spaces. 50 151 51 152 Although a library will normally report errors using its own specific 52 XXXerr macro, another library's macro can be used. This is normally 53 only done when a library wants to include ASN1 code which must use 54 the ASN1err() macro. 153 B<ERR_LIB_XXX> macro, another library's macro can be used, together with 154 that other library's reason codes. This is normally only done when a library 155 wants to include ASN1 code which must be combined with B<ERR_LIB_ASN1> 156 macro. 55 157 158 =end comment 56 159 57 160 =head1 RETURN VALUES 58 161 59 ERR_put_error() and ERR_add_error_data() return 60 no values. 162 ERR_raise(), ERR_raise_data(), ERR_put_error(), 163 ERR_add_error_data(), ERR_add_error_vdata() 164 ERR_add_error_txt(), and ERR_add_error_mem_bio() 165 return no values. 166 167 =head1 NOTES 168 169 ERR_raise(), ERR_raise() and ERR_put_error() are implemented as macros. 61 170 62 171 =head1 SEE ALSO 63 172 64 L<ERR_load_strings(3)> 173 L<ERR_load_strings(3)>, L<ERR_get_next_error_library(3)> 174 175 =head1 HISTORY 176 177 ERR_raise, ERR_raise_data, ERR_add_error_txt() and ERR_add_error_mem_bio() 178 were added in OpenSSL 3.0. 65 179 66 180 =head1 COPYRIGHT 67 181 68 Copyright 2000-202 0The OpenSSL Project Authors. All Rights Reserved.182 Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved. 69 183 70 Licensed under the OpenSSL license(the "License"). You may not use184 Licensed under the Apache License 2.0 (the "License"). You may not use 71 185 this file except in compliance with the License. You can obtain a copy 72 186 in the file LICENSE in the source distribution or at
Note:
See TracChangeset
for help on using the changeset viewer.