aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2001-09-01Make the necessary changes to work with the recent "ex_data" overhaul.Geoff Thorpe30-157/+163
See the commit log message for that for more information. NB: X509_STORE_CTX's use of "ex_data" support was actually misimplemented (initialisation by "memset" won't/can't/doesn't work). This fixes that but requires that X509_STORE_CTX_init() be able to handle errors - so its prototype has been changed to return 'int' rather than 'void'. All uses of that function throughout the source code have been tracked down and adjusted.
2001-09-01First step in fixing "ex_data" support. Warning: big commit log ...Geoff Thorpe4-119/+504
Currently, this change merely addresses where ex_data indexes are stored and managed, and thus fixes the thread-safety issues that existed at that level. "Class" code (eg. RSA, DSA, etc) no longer store their own STACKS and per-class index counters - all such data is stored inside ex_data.c. So rather than passing both STACK+counter to index-management ex_data functions, a 'class_index' is instead passed to indicate the class (eg. CRYPTO_EX_INDEX_RSA). New classes can be dynamically registered on-the-fly and this is also thread-safe inside ex_data.c (though whether the caller manages the return value in a thread-safe way is not addressed). This does not change the "get/set" functions on individual "ex_data" structures, and so thread-safety at that level isn't (yet) assured. Likewise, the method of getting and storing per-class indexes has not changed, so locking may still be required at the "caller" end but is nonetheless thread-safe inside "ex_data"'s internal implementation. Typically this occurs when code implements a new method of some kind and stores its own per-class index in a global variable without locking the setting and usage of that variable. If the code in question is likely to be used in multiple threads, locking the setting and use of that index is still up to the code in question. Possible fixes to this are being sketched, but definitely require more major changes to the API itself than this change undertakes. The underlying implementation in ex_data.c has also been modularised so that alternative "ex_data" implementations (that control all access to state) can be plugged in. Eg. a loaded module can have its implementation set to that of the application loaded it - the result being that thread-safety and consistency of "ex_data" classes and indexes can be maintained in the same place rather than the loaded module using its own copy of ex_data support code and state. Due to the centralisation of "state" with this change, cleanup of all "ex_data" state can now be performed properly. Previously all allocation of ex_data state was guaranteed to leak - and MemCheck_off() had been used to avoid it flagging up the memory debugging. A new function has been added to perfrom all this cleanup, CRYPTO_cleanup_all_ex_data(). The "openssl" command(s) have been changed to use this cleanup, as have the relevant test programs. External application code may want to do so too - failure to cleanup will not induce more memory leaking than was the case before, but the memory debugging is not tricked into hiding it any more so it may "appear" where it previously did not.
2001-09-01Only OPENSSL_free() non-NULL pointers.Geoff Thorpe1-4/+6
2001-09-01undo, didn't workUlf Möller1-34/+3
2001-09-01*** empty log message ***Ulf Möller1-1/+1
2001-09-01strsep implementation to allow the file to compile on non-BSD systemsUlf Möller1-2/+33
Submitted by: "Brian Havard" <brianh@kheldar.apana.org.au>
2001-09-01make updateUlf Möller3-17/+18
2001-09-01zlib default was broken on most platforms.Ulf Möller1-16/+16
-mcpu=i486 is new as of gcc 2.95, and if you have that, you wouldn't want to optimize for 486 anyway.
2001-08-28(A version of) gcc had been giving somewhat odd "trigraph" warnings aboutGeoff Thorpe1-1/+1
this construct, and Ulf provided the following insight as to why; > ANSI C compliant compilers must substitute "??)" for "]" because your > terminal might not have a "]" key if you bought it in the early 1970s. So we escape the final '?' to avoid this pathological case.
2001-08-28Ensure that failure to create the BIO in 'CRYPTO_mem_leaks_fp' doesn'tGeoff Thorpe1-2/+2
leave memory debugging turned off. [Spotted by Götz Babin-Ebell]
2001-08-28Fix SSL memory leak.Ben Laurie4-2/+29
2001-08-27Make sure "CRYPTO_mem_leaks_fp" doesn't itself create a reportable memoryGeoff Thorpe1-0/+5
leak.
2001-08-26"make update"Geoff Thorpe2-21/+23
2001-08-26gcc can't spot that 'derlst' is not used uninitialised, so appease it.Geoff Thorpe1-1/+1
2001-08-26Test digests.Ben Laurie3-21/+100
2001-08-26Add digests.Ben Laurie1-12/+144
2001-08-25Tidy up some code formatting.Geoff Thorpe1-18/+18
2001-08-25Note the "ERR" changes.Geoff Thorpe1-0/+11
2001-08-25This changes the "ERR" code to have all access to state (a hash table ofGeoff Thorpe2-137/+285
error strings and a hash table storing per-thread error state) go via an ERR_FNS function table. The first time an ERR operation occurs, the implementation that will be used (from then on) is set to the internal "defaults" implementation if it has not already been set. The actual LHASH tables are only accessed by this implementation. This is primarily for modules that can be loaded at run-time and bound into an application (or a shared-library version of OpenSSL). If the module has its own statically-linked copy of OpenSSL code - this mechanism allows it to *not* create and use ERR information in its own linked "ERR" code, but instead to use and interact with the state stored in the loader (application or shared library). The loader calls ERR_get_implementation() and the return value is what the module should use when calling its own copy of ERR_set_implementation().
2001-08-25Make a note of the "up" functions.Geoff Thorpe1-0/+7
2001-08-25Changes crypto/evp/ and ssl/ code from directly incrementing referenceGeoff Thorpe4-10/+13
counts in DH, DSA, and RSA structures. Instead they use the new "***_up()" functions that handle this.
2001-08-25Give DH, DSA, and RSA functions to "up" their reference counts. Otherwise,Geoff Thorpe6-1/+54
dependant code has to directly increment the "references" value of each such structure using the corresponding lock. Apart from code duplication, this provided no "REF_CHECK/REF_PRINT" checking and violated encapsulation.
2001-08-25Allow client certificate lists > 16kB ("Douglas E. Engert" <deengert@anl.gov>.)Lutz Jänicke2-1/+11
2001-08-25Wording of comment...Lutz Jänicke1-1/+1
2001-08-25Needed for build on SunOS 4.1.x with gcc (Jeffrey Hutzelman <jhutz@cmu.edu>).Lutz Jänicke1-0/+3
2001-08-24More docs.Lutz Jänicke4-2/+158
2001-08-24-passin argument not used when actually loading the keyLutz Jänicke1-1/+1
(found by Massimiliano Pala <madwolf@hackmasters.net>).
2001-08-23Load OCSP responder key before waiting for an incomingDr. Stephen Henson1-25/+27
connection so it can prompt for pass phrase on startup instead of after the first connection. Add -port switch to usage message.
2001-08-23Add #ifdefs to some devcrypto codeDr. Stephen Henson1-0/+3
2001-08-23Typo.Lutz Jänicke1-3/+3
2001-08-23More manual pages. Constify.Lutz Jänicke5-22/+128
2001-08-23As discussed recently on openssl-users.Lutz Jänicke3-3/+89
2001-08-23Make clear, that using the compression layer is currently not recommended.Lutz Jänicke1-0/+6
2001-08-22typo.Ulf Möller1-1/+1
2001-08-22More tests.Ben Laurie1-0/+9
2001-08-21One more manual page...Lutz Jänicke3-2/+60
2001-08-21Documentation on how to handle compression methods.Lutz Jänicke2-0/+65
Hopefully it is clear enough, that it is currently not recommended.
2001-08-21Checked in from the wrong !@#$%&*() copy...Lutz Jänicke1-24/+24
2001-08-20More interdependencies with respect to shutdown behaviour.Lutz Jänicke4-9/+35
2001-08-19Alert description strings for TLSv1 and documentation.Lutz Jänicke4-0/+280
2001-08-18Add RC4 support to OpenBSD.Ben Laurie4-28/+60
2001-08-18Add AES tests.Ben Laurie2-4/+28
2001-08-18Add EVP test program.Ben Laurie10-19/+333
2001-08-18Add first cut symmetric crypto support.Ben Laurie18-53/+398
2001-08-17More details about session timeout settings.Lutz Jänicke4-3/+50
2001-08-17One more function documented.Lutz Jänicke3-0/+28
2001-08-17SSL_shutdown() has even more properties...Lutz Jänicke4-0/+72
2001-08-17One more step on the way for complete documentation...Lutz Jänicke2-0/+78
2001-08-17Unidirectional shutdown is allowed according to the RFC.Lutz Jänicke1-6/+18
2001-08-17Make sure evil file name characters, like spaces or ampersands (!),Richard Levitte1-2/+2
don't disturb the rehashing process. Spotted and suggested patch from Rudo Thomas <rudo@internet.sk>