Re: [Bug] NPE thrown from SASL GSSAPI impl on Java 11+ when TLS is used with QOP auth-int against Active Directory

2025-05-07 Thread Weibing Xiao
Hi Michael, Please share a working copy of the code to duplicate the failure scenario of NPE related to Connection.java. BTW, I checked the stack trace posted on April 28 it did not clearly show Connection::cleanup got called. Was there something missed? Thank you, Weibing From: security-dev

Re: RFR: 8133816: Display extra SSLServerSocket info in debug mode [v3]

2022-08-24 Thread Weibing Xiao
On Tue, 23 Aug 2022 21:48:46 GMT, Xue-Lei Andrew Fan wrote: >> I think Weibing is trying to achieve a balance here - the current TLS logs >> are quite verbose. I'm not sure if we need verbose SSLServerSocket info for >> every server socket operation. The current approach is to print the >> SSL

Re: RFR: 8133816: Display extra SSLServerSocket info in debug mode [v3]

2022-08-23 Thread Weibing Xiao
On Tue, 23 Aug 2022 15:04:44 GMT, Weibing Xiao wrote: >> Log the debugging info for server cipher suites when setting javax.net.debug >> == ssl, handshake. > > Weibing Xiao has updated the pull request incrementally with one additional > commit since the last revision: &

Re: RFR: 8133816: Display extra SSLServerSocket info in debug mode [v3]

2022-08-23 Thread Weibing Xiao
> Log the debugging info for server cipher suites when setting javax.net.debug > == ssl, handshake. Weibing Xiao has updated the pull request incrementally with one additional commit since the last revision: update the code according to review comments - Changes: - all:

Re: RFR: 8133816: Display extra SSLServerSocket info in debug mode [v2]

2022-08-18 Thread Weibing Xiao
On Wed, 17 Aug 2022 14:27:56 GMT, Xue-Lei Andrew Fan wrote: >> Weibing Xiao has updated the pull request incrementally with one additional >> commit since the last revision: >> >> add or remove the blank line according to the comments > > src/java.base/

Re: RFR: 8133816: Display extra SSLServerSocket info in debug mode [v2]

2022-08-18 Thread Weibing Xiao
> Log the debugging info for server cipher suites when setting javax.net.debug > == ssl, handshake. Weibing Xiao has updated the pull request incrementally with one additional commit since the last revision: add or remove the blank line according to the comments - C

Re: RFR: 8133816: Display extra SSLServerSocket info in debug mode

2022-08-18 Thread Weibing Xiao
On Wed, 17 Aug 2022 14:27:15 GMT, Xue-Lei Andrew Fan wrote: >> Log the debugging info for server cipher suites when setting javax.net.debug >> == ssl, handshake. > > src/java.base/share/classes/sun/security/ssl/ServerHello.java line 416: > >> 414: >> 415: List legacySuites = new Li

Re: RFR: 8133816: Display extra SSLServerSocket info in debug mode

2022-08-18 Thread Weibing Xiao
On Wed, 17 Aug 2022 14:25:40 GMT, Xue-Lei Andrew Fan wrote: >> Log the debugging info for server cipher suites when setting javax.net.debug >> == ssl, handshake. > > src/java.base/share/classes/sun/security/ssl/ServerHello.java line 409: > >> 407: if (shc.sslConfig.preferLocalCipher

Re: RFR: 8133816: Display extra SSLServerSocket info in debug mode

2022-08-17 Thread Weibing Xiao
On Wed, 17 Aug 2022 14:25:40 GMT, Xue-Lei Andrew Fan wrote: >> Log the debugging info for server cipher suites when setting javax.net.debug >> == ssl, handshake. > > src/java.base/share/classes/sun/security/ssl/ServerHello.java line 409: > >> 407: if (shc.sslConfig.preferLocalCipher

Re: RFR: 8133816: Display extra SSLServerSocket info in debug mode

2022-08-17 Thread Weibing Xiao
On Mon, 8 Aug 2022 15:59:29 GMT, Sean Coffey wrote: >> Log the debugging info for server cipher suites when setting javax.net.debug >> == ssl, handshake. > > src/java.base/share/classes/sun/security/ssl/ServerHello.java line 440: > >> 438: } >> 439: >> 440: if (

Re: RFR: 8133816: Display extra SSLServerSocket info in debug mode

2022-08-17 Thread Weibing Xiao
On Wed, 3 Aug 2022 15:40:54 GMT, Weibing Xiao wrote: > Log the debugging info for server cipher suites when setting javax.net.debug > == ssl, handshake. The build and test for Oracle Mach5 were passed. - PR: https://git.openjdk.org/jdk/pull/9731

RFR: 8133816: Display extra SSLServerSocket info in debug mode

2022-08-17 Thread Weibing Xiao
Log the debugging info for server cipher suites when setting javax.net.debug == ssl, handshake. - Commit messages: - remove the whitespace - update wording and case of varialbe name - modify the error message for key exchange failure - refine the log message for tlsv1.3 - addres