[jira] [Updated] (IGNITE-15353) CPP: Ignored loading openssl libraries from OPENSSL_HOME on Windows

2022-03-29 Thread Amelchev Nikita (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-15353?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Amelchev Nikita updated IGNITE-15353:
-
Ignite Flags: Release Notes Required  (was: Docs Required,Release Notes 
Required)
Release Note: CPP: Fixed OpenSSL shared library load order, added OpenSSL 
3.0.x support

> CPP: Ignored loading openssl libraries from OPENSSL_HOME on Windows
> ---
>
> Key: IGNITE-15353
> URL: https://issues.apache.org/jira/browse/IGNITE-15353
> Project: Ignite
>  Issue Type: Bug
>Reporter: Ivan Daschinsky
>Assignee: Ivan Daschinsky
>Priority: Major
>  Labels: platform
> Fix For: 2.13
>
>  Time Spent: 40m
>  Remaining Estimate: 0h
>
> Currently, logic looks like this 
> {code}
> libssl = LoadSslLibrary("libssl");
> if (!libssl.IsLoaded())
> {
> libcrypto = LoadSslLibrary("libcrypto-1_1-x64");
> libssl = LoadSslLibrary("libssl-1_1-x64");
> }
> if (!libssl.IsLoaded())
> {
> libeay32 = LoadSslLibrary("libeay32");
> ssleay32 = LoadSslLibrary("ssleay32");
> }
> {code}
> 1. First line is for linux, it is ok.
> 2. Second line has a few problem.
> * On 64 bit -- If OPENSSL_HOME contains 1.0.x version of openssl, it is 
> ignored and another version is loaded. 
> *  On 32 bit -- naming is different, libcrypto-1_1 and libssl-1_1, so loading 
> will fail



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Updated] (IGNITE-15353) CPP: Ignored loading openssl libraries from OPENSSL_HOME on Windows

2022-01-20 Thread Ivan Daschinsky (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-15353?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Daschinsky updated IGNITE-15353:
-
Fix Version/s: 2.13

> CPP: Ignored loading openssl libraries from OPENSSL_HOME on Windows
> ---
>
> Key: IGNITE-15353
> URL: https://issues.apache.org/jira/browse/IGNITE-15353
> Project: Ignite
>  Issue Type: Bug
>Reporter: Ivan Daschinsky
>Assignee: Ivan Daschinsky
>Priority: Major
>  Labels: platform
> Fix For: 2.13
>
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> Currently, logic looks like this 
> {code}
> libssl = LoadSslLibrary("libssl");
> if (!libssl.IsLoaded())
> {
> libcrypto = LoadSslLibrary("libcrypto-1_1-x64");
> libssl = LoadSslLibrary("libssl-1_1-x64");
> }
> if (!libssl.IsLoaded())
> {
> libeay32 = LoadSslLibrary("libeay32");
> ssleay32 = LoadSslLibrary("ssleay32");
> }
> {code}
> 1. First line is for linux, it is ok.
> 2. Second line has a few problem.
> * On 64 bit -- If OPENSSL_HOME contains 1.0.x version of openssl, it is 
> ignored and another version is loaded. 
> *  On 32 bit -- naming is different, libcrypto-1_1 and libssl-1_1, so loading 
> will fail



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Updated] (IGNITE-15353) CPP: Ignored loading openssl libraries from OPENSSL_HOME on Windows

2021-08-20 Thread Ivan Daschinsky (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-15353?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Daschinsky updated IGNITE-15353:
-
Description: 
Currently, logic looks like this 
{code}
libssl = LoadSslLibrary("libssl");

if (!libssl.IsLoaded())
{
libcrypto = LoadSslLibrary("libcrypto-1_1-x64");
libssl = LoadSslLibrary("libssl-1_1-x64");
}

if (!libssl.IsLoaded())
{
libeay32 = LoadSslLibrary("libeay32");
ssleay32 = LoadSslLibrary("ssleay32");
}
{code}

1. First line is for linux, it is ok.
2. Second line has a few problem.
* On 64 bit -- If OPENSSL_HOME contains 1.0.x version of openssl, it is ignored 
and another version is loaded. 
*  On 32 bit -- naming is different, libcrypto-1_1 and libssl-1_1, so loading 
will fail

  was:
Currently, logic looks like this 
{{code}}
libssl = LoadSslLibrary("libssl");

if (!libssl.IsLoaded())
{
libcrypto = LoadSslLibrary("libcrypto-1_1-x64");
libssl = LoadSslLibrary("libssl-1_1-x64");
}

if (!libssl.IsLoaded())
{
libeay32 = LoadSslLibrary("libeay32");
ssleay32 = LoadSslLibrary("ssleay32");
}
{{code}}

1. First line is for linux, it is ok.
2. Second line has a few problem.
* On 64 bit -- If OPENSSL_HOME contains 1.0.x version of openssl, it is ignored 
and another version is loaded. 
*  On 32 bit -- naming is different, libcrypto-1_1 and libssl-1_1, so loading 
will fail


> CPP: Ignored loading openssl libraries from OPENSSL_HOME on Windows
> ---
>
> Key: IGNITE-15353
> URL: https://issues.apache.org/jira/browse/IGNITE-15353
> Project: Ignite
>  Issue Type: Bug
>Reporter: Ivan Daschinsky
>Assignee: Igor Sapego
>Priority: Major
>  Labels: platform
>
> Currently, logic looks like this 
> {code}
> libssl = LoadSslLibrary("libssl");
> if (!libssl.IsLoaded())
> {
> libcrypto = LoadSslLibrary("libcrypto-1_1-x64");
> libssl = LoadSslLibrary("libssl-1_1-x64");
> }
> if (!libssl.IsLoaded())
> {
> libeay32 = LoadSslLibrary("libeay32");
> ssleay32 = LoadSslLibrary("ssleay32");
> }
> {code}
> 1. First line is for linux, it is ok.
> 2. Second line has a few problem.
> * On 64 bit -- If OPENSSL_HOME contains 1.0.x version of openssl, it is 
> ignored and another version is loaded. 
> *  On 32 bit -- naming is different, libcrypto-1_1 and libssl-1_1, so loading 
> will fail



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (IGNITE-15353) CPP: Ignored loading openssl libraries from OPENSSL_HOME on Windows

2021-08-20 Thread Ivan Daschinsky (Jira)


 [ 
https://issues.apache.org/jira/browse/IGNITE-15353?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ivan Daschinsky updated IGNITE-15353:
-
Labels: platform  (was: )

> CPP: Ignored loading openssl libraries from OPENSSL_HOME on Windows
> ---
>
> Key: IGNITE-15353
> URL: https://issues.apache.org/jira/browse/IGNITE-15353
> Project: Ignite
>  Issue Type: Bug
>Reporter: Ivan Daschinsky
>Assignee: Igor Sapego
>Priority: Major
>  Labels: platform
>
> Currently, logic looks like this 
> {{code}}
> libssl = LoadSslLibrary("libssl");
> if (!libssl.IsLoaded())
> {
> libcrypto = LoadSslLibrary("libcrypto-1_1-x64");
> libssl = LoadSslLibrary("libssl-1_1-x64");
> }
> if (!libssl.IsLoaded())
> {
> libeay32 = LoadSslLibrary("libeay32");
> ssleay32 = LoadSslLibrary("ssleay32");
> }
> {{code}}
> 1. First line is for linux, it is ok.
> 2. Second line has a few problem.
> * On 64 bit -- If OPENSSL_HOME contains 1.0.x version of openssl, it is 
> ignored and another version is loaded. 
> *  On 32 bit -- naming is different, libcrypto-1_1 and libssl-1_1, so loading 
> will fail



--
This message was sent by Atlassian Jira
(v8.3.4#803005)