Skip to content
Snippets Groups Projects
Commit fd05400d authored by Rick Herrick's avatar Rick Herrick
Browse files

XNAT-4405 Added WWW-Authenticate to headers when non-interactive agent calls...

XNAT-4405 Added WWW-Authenticate to headers when non-interactive agent calls data URI. This lets non-preemptive basic auth work properly.
parent 3985b200
No related branches found
No related tags found
No related merge requests found
...@@ -69,7 +69,7 @@ public class SecurityConfig { ...@@ -69,7 +69,7 @@ public class SecurityConfig {
@Bean @Bean
public XnatAuthenticationEntryPoint loginUrlAuthenticationEntryPoint() { public XnatAuthenticationEntryPoint loginUrlAuthenticationEntryPoint() {
final XnatAuthenticationEntryPoint entryPoint = new XnatAuthenticationEntryPoint("/app/template/Login.vm"); final XnatAuthenticationEntryPoint entryPoint = new XnatAuthenticationEntryPoint("/app/template/Login.vm", _configuration);
entryPoint.setDataPaths(Arrays.asList("/xapi/**", "/data/**", "/REST/**", "/fs/**")); entryPoint.setDataPaths(Arrays.asList("/xapi/**", "/data/**", "/REST/**", "/fs/**"));
entryPoint.setInteractiveAgents(Arrays.asList(".*MSIE.*", ".*Mozilla.*", ".*AppleWebKit.*", ".*Opera.*")); entryPoint.setInteractiveAgents(Arrays.asList(".*MSIE.*", ".*Mozilla.*", ".*AppleWebKit.*", ".*Opera.*"));
return entryPoint; return entryPoint;
...@@ -100,8 +100,7 @@ public class SecurityConfig { ...@@ -100,8 +100,7 @@ public class SecurityConfig {
RegisterSessionAuthenticationStrategy registerSessionAuthenticationStrategy = new RegisterSessionAuthenticationStrategy(sessionRegistry); RegisterSessionAuthenticationStrategy registerSessionAuthenticationStrategy = new RegisterSessionAuthenticationStrategy(sessionRegistry);
authStrategies.add(registerSessionAuthenticationStrategy); authStrategies.add(registerSessionAuthenticationStrategy);
final CompositeSessionAuthenticationStrategy compositeSessionAuthenticationStrategy = new CompositeSessionAuthenticationStrategy(authStrategies); return new CompositeSessionAuthenticationStrategy(authStrategies);
return compositeSessionAuthenticationStrategy;
} }
@Bean @Bean
......
...@@ -13,6 +13,8 @@ package org.nrg.xnat.security; ...@@ -13,6 +13,8 @@ package org.nrg.xnat.security;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.apache.commons.logging.Log; import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory; import org.apache.commons.logging.LogFactory;
import org.nrg.config.exceptions.SiteConfigurationException;
import org.nrg.xdat.preferences.InitializerSiteConfiguration;
import org.springframework.security.core.AuthenticationException; import org.springframework.security.core.AuthenticationException;
import org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint; import org.springframework.security.web.authentication.LoginUrlAuthenticationEntryPoint;
import org.springframework.security.web.util.matcher.AntPathRequestMatcher; import org.springframework.security.web.util.matcher.AntPathRequestMatcher;
...@@ -28,8 +30,9 @@ import java.util.regex.Pattern; ...@@ -28,8 +30,9 @@ import java.util.regex.Pattern;
public class XnatAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoint { public class XnatAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoint {
public XnatAuthenticationEntryPoint(String loginFormUrl) { public XnatAuthenticationEntryPoint(final String loginFormUrl, final InitializerSiteConfiguration configuration) {
super(loginFormUrl); super(loginFormUrl);
_configuration = configuration;
} }
/** /**
...@@ -41,8 +44,9 @@ public class XnatAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoi ...@@ -41,8 +44,9 @@ public class XnatAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoi
* @param request HTTP request object. * @param request HTTP request object.
* @param response HTTP response object. * @param response HTTP response object.
* @param authException An authentication exception that may have redirected the agent to re-authenticate. * @param authException An authentication exception that may have redirected the agent to re-authenticate.
* @throws IOException *
* @throws ServletException * @throws IOException When an error occurs reading or writing data.
* @throws ServletException When an error occurs in the framework.
*/ */
@Override @Override
public void commence(final HttpServletRequest request, final HttpServletResponse response, final AuthenticationException authException) throws IOException, ServletException { public void commence(final HttpServletRequest request, final HttpServletResponse response, final AuthenticationException authException) throws IOException, ServletException {
...@@ -51,27 +55,33 @@ public class XnatAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoi ...@@ -51,27 +55,33 @@ public class XnatAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoi
if (_log.isDebugEnabled()) { if (_log.isDebugEnabled()) {
_log.debug("Evaluating data path request: " + strippedUri + ", user agent: " + userAgent); _log.debug("Evaluating data path request: " + strippedUri + ", user agent: " + userAgent);
}
if(!StringUtils.isBlank(strippedUri) && strippedUri.contains("/action/AcceptProjectAccess/par/")) {
int index=strippedUri.indexOf("/par/")+5;
if(strippedUri.length()>index){//par number included?
String parS=strippedUri.substring(index);
if(parS.contains("/")){
parS=parS.substring(0,parS.indexOf("/"));
}
request.getSession().setAttribute("par", parS);
}
} }
if (isDataPath(request) && !isInteractiveAgent(userAgent)) { if (!StringUtils.isBlank(strippedUri) && strippedUri.contains("/action/AcceptProjectAccess/par/")) {
response.sendError(HttpServletResponse.SC_UNAUTHORIZED); int index = strippedUri.indexOf("/par/") + 5;
return; if (strippedUri.length() > index) {//par number included?
String parS = strippedUri.substring(index);
if (parS.contains("/")) {
parS = parS.substring(0, parS.indexOf("/"));
}
request.getSession().setAttribute("par", parS);
}
} }
if (isDataPath(request) && !isInteractiveAgent(userAgent)) {
try {
response.setHeader("WWW-Authenticate", "Basic realm=\"" + _configuration.getSiteId() + "\"");
response.sendError(HttpServletResponse.SC_UNAUTHORIZED);
} catch (SiteConfigurationException e) {
_log.error("An error occurred trying to access system resources: siteId", e);
response.setHeader("WWW-Authenticate", "Basic");
response.sendError(HttpServletResponse.SC_UNAUTHORIZED);
}
} else {
super.commence(request, response, authException); super.commence(request, response, authException);
} }
}
/** /**
* Sets the data paths, i.e. those paths which require a user-agent interactivity test to determine whether the user * Sets the data paths, i.e. those paths which require a user-agent interactivity test to determine whether the user
...@@ -83,7 +93,7 @@ public class XnatAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoi ...@@ -83,7 +93,7 @@ public class XnatAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoi
public void setDataPaths(final List<String> dataPaths) { public void setDataPaths(final List<String> dataPaths) {
if (_log.isDebugEnabled()) { if (_log.isDebugEnabled()) {
_log.debug("Adding " + dataPaths + " data paths"); _log.debug("Adding " + dataPaths + " data paths");
} }
for (final String dataPath : dataPaths) { for (final String dataPath : dataPaths) {
if (_log.isDebugEnabled()) { if (_log.isDebugEnabled()) {
...@@ -102,7 +112,7 @@ public class XnatAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoi ...@@ -102,7 +112,7 @@ public class XnatAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoi
for (final String interactiveAgent : interactiveAgents) { for (final String interactiveAgent : interactiveAgents) {
if (_log.isDebugEnabled()) { if (_log.isDebugEnabled()) {
_log.debug("Adding interactive agent specifier: " + interactiveAgent); _log.debug("Adding interactive agent specifier: " + interactiveAgent);
} }
final Pattern pattern = Pattern.compile(interactiveAgent); final Pattern pattern = Pattern.compile(interactiveAgent);
_agentPatterns.add(pattern); _agentPatterns.add(pattern);
} }
...@@ -146,8 +156,10 @@ public class XnatAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoi ...@@ -146,8 +156,10 @@ public class XnatAuthenticationEntryPoint extends LoginUrlAuthenticationEntryPoi
return false; return false;
} }
private final InitializerSiteConfiguration _configuration;
private static final Log _log = LogFactory.getLog(XnatAuthenticationEntryPoint.class); private static final Log _log = LogFactory.getLog(XnatAuthenticationEntryPoint.class);
private final List<RequestMatcher> _dataPaths = new ArrayList<>(); private final List<RequestMatcher> _dataPaths = new ArrayList<>();
private final List<Pattern> _agentPatterns = new ArrayList<>(); private final List<Pattern> _agentPatterns = new ArrayList<>();
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment