goutamadwant commented on code in PR #2149: URL: https://github.com/apache/maven-resolver/pull/2149#discussion_r4069017705
########## maven-resolver-transport-http/src/main/java/org/eclipse/aether/transport/http/SystemProxyAuthenticationStrategy.java: ########## @@ -0,0 +1,118 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.eclipse.aether.transport.http; + +import java.util.Map; +import java.util.Queue; + +import org.apache.http.Header; +import org.apache.http.HttpHost; +import org.apache.http.HttpRequest; +import org.apache.http.HttpRequestInterceptor; +import org.apache.http.HttpResponse; +import org.apache.http.auth.AuthOption; +import org.apache.http.auth.AuthScope; +import org.apache.http.auth.AuthState; +import org.apache.http.auth.MalformedChallengeException; +import org.apache.http.auth.NTCredentials; +import org.apache.http.auth.UsernamePasswordCredentials; +import org.apache.http.client.CredentialsProvider; +import org.apache.http.client.config.AuthSchemes; +import org.apache.http.client.protocol.HttpClientContext; +import org.apache.http.conn.routing.RouteInfo; +import org.apache.http.impl.client.BasicCredentialsProvider; +import org.apache.http.impl.client.ProxyAuthenticationStrategy; +import org.apache.http.protocol.BasicHttpContext; +import org.apache.http.protocol.HttpContext; + +/** + * Adds system proxy credentials only while selecting authentication for the current route's proxy. + */ +final class SystemProxyAuthenticationStrategy extends ProxyAuthenticationStrategy implements HttpRequestInterceptor { + private static final String SYSTEM_PROXY = SystemProxyAuthenticationStrategy.class.getName() + ".proxy"; + + @Override + public void process(HttpRequest request, HttpContext context) { + HttpHost authenticatedProxy = (HttpHost) context.getAttribute(SYSTEM_PROXY); + RouteInfo route = HttpClientContext.adapt(context).getHttpRoute(); + if (authenticatedProxy != null && route != null && !authenticatedProxy.equals(route.getProxyHost())) { + // HttpClient retains Basic proxy authentication across redirects, even when the proxy changes. + AuthState state = HttpClientContext.adapt(context).getProxyAuthState(); + if (state != null) { + state.reset(); + } + request.removeHeaders("Proxy-Authorization"); + context.removeAttribute(SYSTEM_PROXY); + } + } + + @Override + public Queue<AuthOption> select( + Map<String, Header> challenges, HttpHost authhost, HttpResponse response, HttpContext context) + throws MalformedChallengeException { + Queue<AuthOption> options = super.select(challenges, authhost, response, context); + if (!options.isEmpty()) { + return options; + } + RouteInfo route = HttpClientContext.adapt(context).getHttpRoute(); + if (route == null || !authhost.equals(route.getProxyHost())) { + return options; + } + CredentialsProvider credentials = credentials(authhost, "http"); + if (credentials == null) { + credentials = credentials(authhost, "https"); + } + if (credentials == null) { + return options; + } + // A child context keeps proxy secrets out of server authentication, including after redirects. + HttpClientContext proxyContext = HttpClientContext.adapt(new BasicHttpContext(context)); + proxyContext.setCredentialsProvider(credentials); Review Comment: fixed: the 1.9.x strategy now tries credentials for the route's target protocol first and retains the opposite-protocol fallback. Added HTTP/HTTPS precedence and fallback tests. I also found that redirects through the same proxy could retain the prior protocol's Basic auth state, so this branch now clears it when the target protocol changes. ########## maven-resolver-transport-http/src/main/java/org/eclipse/aether/transport/http/SystemProxyAuthenticationStrategy.java: ########## @@ -0,0 +1,118 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +package org.eclipse.aether.transport.http; + +import java.util.Map; +import java.util.Queue; + +import org.apache.http.Header; +import org.apache.http.HttpHost; +import org.apache.http.HttpRequest; +import org.apache.http.HttpRequestInterceptor; +import org.apache.http.HttpResponse; +import org.apache.http.auth.AuthOption; +import org.apache.http.auth.AuthScope; +import org.apache.http.auth.AuthState; +import org.apache.http.auth.MalformedChallengeException; +import org.apache.http.auth.NTCredentials; +import org.apache.http.auth.UsernamePasswordCredentials; +import org.apache.http.client.CredentialsProvider; +import org.apache.http.client.config.AuthSchemes; +import org.apache.http.client.protocol.HttpClientContext; +import org.apache.http.conn.routing.RouteInfo; +import org.apache.http.impl.client.BasicCredentialsProvider; +import org.apache.http.impl.client.ProxyAuthenticationStrategy; +import org.apache.http.protocol.BasicHttpContext; +import org.apache.http.protocol.HttpContext; + +/** + * Adds system proxy credentials only while selecting authentication for the current route's proxy. + */ +final class SystemProxyAuthenticationStrategy extends ProxyAuthenticationStrategy implements HttpRequestInterceptor { + private static final String SYSTEM_PROXY = SystemProxyAuthenticationStrategy.class.getName() + ".proxy"; + + @Override + public void process(HttpRequest request, HttpContext context) { + HttpHost authenticatedProxy = (HttpHost) context.getAttribute(SYSTEM_PROXY); + RouteInfo route = HttpClientContext.adapt(context).getHttpRoute(); + if (authenticatedProxy != null && route != null && !authenticatedProxy.equals(route.getProxyHost())) { + // HttpClient retains Basic proxy authentication across redirects, even when the proxy changes. + AuthState state = HttpClientContext.adapt(context).getProxyAuthState(); + if (state != null) { + state.reset(); + } + request.removeHeaders("Proxy-Authorization"); + context.removeAttribute(SYSTEM_PROXY); + } + } + + @Override + public Queue<AuthOption> select( + Map<String, Header> challenges, HttpHost authhost, HttpResponse response, HttpContext context) + throws MalformedChallengeException { + Queue<AuthOption> options = super.select(challenges, authhost, response, context); + if (!options.isEmpty()) { + return options; + } + RouteInfo route = HttpClientContext.adapt(context).getHttpRoute(); + if (route == null || !authhost.equals(route.getProxyHost())) { + return options; + } + CredentialsProvider credentials = credentials(authhost, "http"); + if (credentials == null) { + credentials = credentials(authhost, "https"); + } + if (credentials == null) { + return options; + } + // A child context keeps proxy secrets out of server authentication, including after redirects. + HttpClientContext proxyContext = HttpClientContext.adapt(new BasicHttpContext(context)); + proxyContext.setCredentialsProvider(credentials); + options = super.select(challenges, authhost, response, proxyContext); + if (!options.isEmpty()) { + context.setAttribute(SYSTEM_PROXY, authhost); + } + return options; + } + + private static CredentialsProvider credentials(HttpHost proxy, String protocol) { + String prefix = protocol + ".proxy"; + if (!proxy.getHostName().equalsIgnoreCase(System.getProperty(prefix + "Host"))) { + return null; + } + try { + if (proxy.getPort() != Integer.parseInt(System.getProperty(prefix + "Port"))) { + return null; + } + } catch (NumberFormatException e) { + return null; + } + String username = System.getProperty(prefix + "User"); + if (username == null) { + return null; Review Comment: fixed: an omitted proxyPort now matches the selected protocol's default port (80/443), while invalid or nonmatching ports still decline credentials. Added default-port tests without binding privileged ports; the existing nondefault-port rejection test remains. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
