You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2018/02/21 17:12:17 UTC

[Bug 62122] New: undefined symbol: SSL_COMP_free_compression_methods

https://bz.apache.org/bugzilla/show_bug.cgi?id=62122

            Bug ID: 62122
           Summary: undefined symbol: SSL_COMP_free_compression_methods
           Product: Tomcat Native
           Version: 1.2.14
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: major
          Priority: P2
         Component: Library
          Assignee: dev@tomcat.apache.org
          Reporter: jballon@akamai.com
  Target Milestone: ---

OpenSSL 1.1.0 removed this function,
https://www.openssl.org/docs/man1.1.0/ssl/SSL_COMP_free_compression_methods.html 

native/src/ssl.c

366 #if OPENSSL_VERSION_NUMBER >= 0x1000200fL
367     SSL_COMP_free_compression_methods();
368 #endif

this will need to be patched, suggestion below this is untested:

366 #if OPENSSL_VERSION_NUMBER >= 0x1000200fL && OPENSSL_VERSION_NUMBER <
0x10100000L 
367     SSL_COMP_free_compression_methods();
368 #endif

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[Bug 62122] undefined symbol: SSL_COMP_free_compression_methods

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=62122

--- Comment #3 from Christopher Schultz <ch...@christopherschultz.net> ---
Re-opening original BZ issue.

Seems like this needs to be fixed by capping the OpenSSL version number used in
the #ifdef.

jballon, would you mind actually testing your proposed solution?

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[Bug 62122] undefined symbol: SSL_COMP_free_compression_methods

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=62122

Christopher Schultz <ch...@christopherschultz.net> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|INVALID                     |---

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[Bug 62122] undefined symbol: SSL_COMP_free_compression_methods

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=62122

--- Comment #5 from jballon@akamai.com ---
I successfully rested with this fix. I verified that I no longer received the
error message.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[Bug 62122] undefined symbol: SSL_COMP_free_compression_methods

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=62122

--- Comment #4 from jfclere <jf...@gmail.com> ---
I think the problen is fixed by r1832911.
Could you please retest?

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[Bug 62122] undefined symbol: SSL_COMP_free_compression_methods

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=62122

jfclere <jf...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|---                         |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[Bug 62122] undefined symbol: SSL_COMP_free_compression_methods

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=62122

--- Comment #2 from Christopher Schultz <ch...@christopherschultz.net> ---
*** Bug 62428 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org


[Bug 62122] undefined symbol: SSL_COMP_free_compression_methods

Posted by bu...@apache.org.
https://bz.apache.org/bugzilla/show_bug.cgi?id=62122

jfclere <jf...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |INVALID
             Status|NEW                         |RESOLVED

--- Comment #1 from jfclere <jf...@gmail.com> ---
per openssl doc it says it is deprecated and do nothing, so I close the bug.

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org