[fedfs-utils] [PATCH 1/2] openssl-1.1 update fixes

Ian Kent raven at themaw.net
Fri Apr 14 17:08:53 PDT 2017


On Tue, 2017-04-11 at 10:17 -0400, Chuck Lever wrote:
> > On Apr 11, 2017, at 4:54 AM, Ian Kent <raven at themaw.net> wrote:
> > 
> > On Mon, 2017-04-10 at 13:49 -0400, Chuck Lever wrote:
> > > From: Ian Kent <ikent at redhat.com>
> > > 
> > > Changing OpenSSL to version 1.1 changes the API in some cases.
> > > The two functions excluded here do nothing and have been deprecated
> > > or removed in OpenSSL 1.1.
> > > 
> > > Signed-off-by: Ian Kent <ikent at redhat.com>
> > 
> > Indeed yes, sorry, I meant to post this here myself but got side tracked.
> 
> No problem! I just pulled this patch from the fedoraproject notification.
> 
> Where does the OPENSSL_VERSION_NUMBER macro get defined?

It's defined in one of the OpenSSL header files.
That's why I thought using it, and nothing else, was simplest and best to fix
the problem.

> 
> 
> > > ---
> > >  src/libnsdb/connsec.c |    4 ++++
> > >  1 file changed, 4 insertions(+)
> > > 
> > > diff --git a/src/libnsdb/connsec.c b/src/libnsdb/connsec.c
> > > index bb81eee..8bbf306 100644
> > > --- a/src/libnsdb/connsec.c
> > > +++ b/src/libnsdb/connsec.c
> > > @@ -44,7 +44,9 @@ nsdb_connsec_crypto_startup(void)
> > >  {
> > >  	xlog(D_CALL, "%s", __func__);
> > >  
> > > +#if OPENSSL_VERSION_NUMBER < 0x10100000L
> > >  	CRYPTO_malloc_init();
> > > +#endif
> > >  	ERR_load_crypto_strings();
> > >  	OpenSSL_add_all_algorithms();
> > >  	ENGINE_load_builtin_engines();
> > > @@ -62,7 +64,9 @@ nsdb_connsec_crypto_shutdown(void)
> > >  	EVP_cleanup();
> > >  	ENGINE_cleanup();
> > >  	CRYPTO_cleanup_all_ex_data();
> > > +#if OPENSSL_VERSION_NUMBER < 0x10100000L
> > >  	ERR_remove_thread_state(NULL);
> > > +#endif
> > >  	ERR_free_strings();
> > >  }
> > >  
> > > 
> > > 
> > > _______________________________________________
> > > fedfs-utils-devel mailing list
> > > fedfs-utils-devel at oss.oracle.com
> > > https://oss.oracle.com/mailman/listinfo/fedfs-utils-devel
> > 
> > _______________________________________________
> > fedfs-utils-devel mailing list
> > fedfs-utils-devel at oss.oracle.com
> > https://oss.oracle.com/mailman/listinfo/fedfs-utils-devel
> 
> --
> Chuck Lever
> 
> 
> 
> 
> _______________________________________________
> fedfs-utils-devel mailing list
> fedfs-utils-devel at oss.oracle.com
> https://oss.oracle.com/mailman/listinfo/fedfs-utils-devel



More information about the fedfs-utils-devel mailing list