Skip to content

Commit 10f1674

Browse files
author
Alexey Bakhtin
committedMar 14, 2023
8303809: Dispose context in SPNEGO NegotiatorImpl
Reviewed-by: dfuchs, weijun
1 parent 9f9ab02 commit 10f1674

File tree

5 files changed

+70
-0
lines changed

5 files changed

+70
-0
lines changed
 

‎src/java.base/share/classes/sun/net/www/protocol/http/AuthenticationInfo.java

+9
Original file line numberDiff line numberDiff line change
@@ -519,4 +519,13 @@ private synchronized void writeObject(java.io.ObjectOutputStream s)
519519
s2 = new String (pw.getPassword());
520520
s.defaultWriteObject ();
521521
}
522+
523+
/**
524+
* Releases any system or cryptographic resources.
525+
* It is up to implementors to override disposeContext()
526+
* to take necessary action.
527+
*/
528+
public void disposeContext() {
529+
// do nothing
530+
}
522531
}

‎src/java.base/share/classes/sun/net/www/protocol/http/HttpURLConnection.java

+13
Original file line numberDiff line numberDiff line change
@@ -2009,6 +2009,12 @@ private InputStream getInputStream0() throws IOException {
20092009
if (serverAuthKey != null) {
20102010
AuthenticationInfo.endAuthRequest(serverAuthKey);
20112011
}
2012+
if (proxyAuthentication != null) {
2013+
proxyAuthentication.disposeContext();
2014+
}
2015+
if (serverAuthentication != null) {
2016+
serverAuthentication.disposeContext();
2017+
}
20122018
}
20132019
}
20142020

@@ -2252,6 +2258,9 @@ private void doTunneling0() throws IOException {
22522258
if (proxyAuthKey != null) {
22532259
AuthenticationInfo.endAuthRequest(proxyAuthKey);
22542260
}
2261+
if (proxyAuthentication != null) {
2262+
proxyAuthentication.disposeContext();
2263+
}
22552264
}
22562265

22572266
// restore original request headers
@@ -2502,6 +2511,7 @@ public InetAddress run()
25022511
}
25032512
if (ret != null) {
25042513
if (!ret.setHeaders(this, p, raw)) {
2514+
ret.disposeContext();
25052515
ret = null;
25062516
}
25072517
}
@@ -2674,6 +2684,7 @@ private AuthenticationInfo getServerAuthentication(AuthenticationHeader authhdr)
26742684

26752685
if (ret != null ) {
26762686
if (!ret.setHeaders(this, p, raw)) {
2687+
ret.disposeContext();
26772688
ret = null;
26782689
}
26792690
}
@@ -2700,6 +2711,7 @@ private void checkResponseCredentials (boolean inClose) throws IOException {
27002711
DigestAuthentication da = (DigestAuthentication)
27012712
currentProxyCredentials;
27022713
da.checkResponse (raw, method, getRequestURI());
2714+
currentProxyCredentials.disposeContext();
27032715
currentProxyCredentials = null;
27042716
}
27052717
}
@@ -2710,6 +2722,7 @@ private void checkResponseCredentials (boolean inClose) throws IOException {
27102722
DigestAuthentication da = (DigestAuthentication)
27112723
currentServerCredentials;
27122724
da.checkResponse (raw, method, url);
2725+
currentServerCredentials.disposeContext();
27132726
currentServerCredentials = null;
27142727
}
27152728
}

‎src/java.base/share/classes/sun/net/www/protocol/http/NegotiateAuthentication.java

+16
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,22 @@ private byte[] nextToken(byte[] token) throws IOException {
242242
return negotiator.nextToken(token);
243243
}
244244

245+
/**
246+
* Releases any system resources and cryptographic information stored in
247+
* the context object and invalidates the context.
248+
*/
249+
@Override
250+
public void disposeContext() {
251+
if (negotiator != null) {
252+
try {
253+
negotiator.disposeContext();
254+
} catch (IOException ioEx) {
255+
//do not rethrow IOException
256+
}
257+
negotiator = null;
258+
}
259+
}
260+
245261
// MS will send a final WWW-Authenticate even if the status is already
246262
// 200 OK. The token can be fed into initSecContext() again to determine
247263
// if the server can be trusted. This is not the same concept as Digest's

‎src/java.base/share/classes/sun/net/www/protocol/http/Negotiator.java

+2
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,7 @@ private static void finest(Exception e) {
8282
logger.finest("NegotiateAuthentication: " + e);
8383
}
8484
}
85+
86+
public void disposeContext() throws IOException { };
8587
}
8688

‎src/java.security.jgss/share/classes/sun/net/www/protocol/http/spnego/NegotiatorImpl.java

+30
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,11 @@ public NegotiatorImpl(HttpCallerInfo hci) throws IOException {
127127
"fallback to other scheme if allowed. Reason:");
128128
e.printStackTrace();
129129
}
130+
try {
131+
disposeContext();
132+
} catch (Exception ex) {
133+
//dispose context silently
134+
}
130135
throw new IOException("Negotiate support not initiated", e);
131136
}
132137
}
@@ -149,6 +154,9 @@ public byte[] firstToken() {
149154
@Override
150155
public byte[] nextToken(byte[] token) throws IOException {
151156
try {
157+
if (context == null) {
158+
throw new IOException("Negotiate support cannot continue. Context is invalidated");
159+
}
152160
return context.initSecContext(token, 0, token.length);
153161
} catch (GSSException e) {
154162
if (DEBUG) {
@@ -158,4 +166,26 @@ public byte[] nextToken(byte[] token) throws IOException {
158166
throw new IOException("Negotiate support cannot continue", e);
159167
}
160168
}
169+
170+
/**
171+
* Releases any system resources and cryptographic information stored in
172+
* the context object and invalidates the context.
173+
*
174+
* @throws IOException containing a reason of failure in the cause
175+
*/
176+
@Override
177+
public void disposeContext() throws IOException {
178+
try {
179+
if (context != null) {
180+
context.dispose();
181+
}
182+
} catch (GSSException e) {
183+
if (DEBUG) {
184+
System.out.println("Cannot release resources. Reason:");
185+
e.printStackTrace();
186+
}
187+
throw new IOException("Cannot release resources", e);
188+
};
189+
context = null;
190+
}
161191
}

0 commit comments

Comments
 (0)
Please sign in to comment.