summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ct/ct_err.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* libcrypto: constify most error string tablestb2024-06-241-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | These constitute the bulk of the remaining global mutable state in libcrypto. This commit moves most of them into data.rel.ro, leaving out ERR_str_{functs,libraries,reasons} (which require a slightly different approach) and SYS_str_reasons which is populated on startup. The main observation is that if ERR_load_strings() is called with a 0 lib argument, the ERR_STRING_DATA argument is not actually modified. We could use this fact to cast away const on the caller side and be done with it. We can make this cleaner by adding a helper ERR_load_const_strings() which explicitly avoids the assignment to str->error overriding the error code already set in the table. In order for this to work, we need to sprinkle some const in err/err.c. CMS called ERR_load_strings() with non-0 lib argument, but this didn't actually modify the error data since it ored in the value already stored in the table. Annoyingly, we need to cast const away once, namely in the call to lh_insert() in int_err_set_item(). Fixing this would require changing the public API and is going to be tricky since it requires that the LHASH_DOALL_FN_* types adjust. ok jsing
* Remove mkerr.pl remnants from LibreSSLkn2022-07-121-6/+1
| | | | | | | This script is not used at all and files are edited by hand instead. Thus remove misleading comments incl. the obsolete script/config. Feedback OK jsing tb
* Remove openssl/cterr.h and inline it in openssl/ct.htb2022-05-081-2/+2
| | | | ok jsing
* Revert license stubs to full licenses in the remaining files.tb2021-12-181-8/+57
|
* Add RCS markerstb2021-12-051-0/+1
|
* Make these files compile - not hooked up to build yet.beck2021-11-201-14/+20
| | | | ok jsing@ tb@
* Mechanical KNF in preparation for changingbeck2021-10-281-68/+68
|
* Import Certificate Transparency verbatim from OpenSSL 1.1.1beck2021-10-281-0/+96
This is not yet hooked up and will not compile. Follow on commits will KNF and then make it build. ok jsing@ tb@