Hi All: I have OpenVPN-2.0.9 working with the OpenSSL FIPS module. What I've done is added an --enable-fips option to configure which defines a USE_FIPS environment variable. I also created a static variable which is set to 1 if FIPS mode is enabled and 0 if disabled. I created a function used to enable fips mode, by call FIPS_mode_set that I call at the top of the main function in openvpn.c. I added a call to this function in each of the function calls in crypto.c and ssl.c that tests if fips mode is set and if not enables it if USE_FIPS is defined. I also changed the md5sum() function to a sha1sum() function since md5 is not approved in FIPS mode. The changes are wrapped in #ifdef USE_FIPS or #ifndef USE_FIPS as appropriate.
I have a couple questions I hope someone can help me with, so I can get a patch put together for those that are interested. 1) Where is the best place to put the function and static variable definitions. Should I create a new header and source file along the lines of fipsmode.h and fipsmode.c or add them to existing files? 2) On Linux there is apparently an issue with threads when running as a daemon and the FIPS prng. A work around found on the OpenSSL mailing list is to disable fips mode just prior to daemonizing and re-enable it afterward. Right now I am doing this in the possibly_become_daemon() function in init.c. Are there any crypto operations taking place at this point? Should this be done somewhere besides the possibly_become_daemon() function? I've been working my way through the code to make sure I haven't missed anything, but would appreciate any pointers. Thanks, Steve --