summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2001-09-01First step in fixing "ex_data" support. Warning: big commit log ...Geoff Thorpe
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 Thorpe
2001-09-01undo, didn't workUlf Möller
2001-09-01*** empty log message ***Ulf Möller
2001-09-01strsep implementation to allow the file to compile on non-BSD systemsUlf Möller
Submitted by: "Brian Havard" <brianh@kheldar.apana.org.au>
2001-09-01make updateUlf Möller
2001-09-01zlib default was broken on most platforms.Ulf Möller
-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 Thorpe
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 Thorpe
leave memory debugging turned off. [Spotted by Götz Babin-Ebell]
2001-08-28Fix SSL memory leak.Ben Laurie
2001-08-27Make sure "CRYPTO_mem_leaks_fp" doesn't itself create a reportable memoryGeoff Thorpe
leak.
2001-08-26"make update"Geoff Thorpe
2001-08-26gcc can't spot that 'derlst' is not used uninitialised, so appease it.Geoff Thorpe
2001-08-26Test digests.Ben Laurie
2001-08-26Add digests.Ben Laurie
2001-08-25Tidy up some code formatting.Geoff Thorpe
2001-08-25Note the "ERR" changes.Geoff Thorpe
2001-08-25This changes the "ERR" code to have all access to state (a hash table ofGeoff Thorpe
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 Thorpe
2001-08-25Changes crypto/evp/ and ssl/ code from directly incrementing referenceGeoff Thorpe
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 Thorpe
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änicke
2001-08-25Wording of comment...Lutz Jänicke
2001-08-25Needed for build on SunOS 4.1.x with gcc (Jeffrey Hutzelman <jhutz@cmu.edu>).Lutz Jänicke
2001-08-24More docs.Lutz Jänicke
2001-08-24-passin argument not used when actually loading the keyLutz Jänicke
(found by Massimiliano Pala <madwolf@hackmasters.net>).
2001-08-23Load OCSP responder key before waiting for an incomingDr. Stephen Henson
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 Henson
2001-08-23Typo.Lutz Jänicke
2001-08-23More manual pages. Constify.Lutz Jänicke
2001-08-23As discussed recently on openssl-users.Lutz Jänicke
2001-08-23Make clear, that using the compression layer is currently not recommended.Lutz Jänicke
2001-08-22typo.Ulf Möller
2001-08-22More tests.Ben Laurie
2001-08-21One more manual page...Lutz Jänicke
2001-08-21Documentation on how to handle compression methods.Lutz Jänicke
Hopefully it is clear enough, that it is currently not recommended.
2001-08-21Checked in from the wrong !@#$%&*() copy...Lutz Jänicke
2001-08-20More interdependencies with respect to shutdown behaviour.Lutz Jänicke
2001-08-19Alert description strings for TLSv1 and documentation.Lutz Jänicke
2001-08-18Add RC4 support to OpenBSD.Ben Laurie
2001-08-18Add AES tests.Ben Laurie
2001-08-18Add EVP test program.Ben Laurie
2001-08-18Add first cut symmetric crypto support.Ben Laurie
2001-08-17More details about session timeout settings.Lutz Jänicke
2001-08-17One more function documented.Lutz Jänicke
2001-08-17SSL_shutdown() has even more properties...Lutz Jänicke
2001-08-17One more step on the way for complete documentation...Lutz Jänicke
2001-08-17Unidirectional shutdown is allowed according to the RFC.Lutz Jänicke
2001-08-17Make sure evil file name characters, like spaces or ampersands (!),Richard Levitte
don't disturb the rehashing process. Spotted and suggested patch from Rudo Thomas <rudo@internet.sk>
2001-08-17Make -passin -passout etc work again.Dr. Stephen Henson
Fix leak in ca.c when using -passin.