From 563dabda2fc27d589c0ccf04b7de2ad8e8680ec7 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Fri, 21 Mar 2008 23:47:09 +0000 Subject: [PATCH] SEC-722: Add Open ID Namespace Support http://jira.springframework.org/browse/SEC-722. Added OpenIDProvider to bean registry and fixed login page generator to use correct URL for OpenID. Added user-service-ref to namespace element. Changed OpenID sample to use . --- .../security/config/BeanIds.java | 3 +- .../HttpSecurityBeanDefinitionParser.java | 17 +- .../HttpSecurityConfigPostProcessor.java | 15 + .../DefaultLoginPageGeneratingFilter.java | 2 +- .../security/config/spring-security-2.0.rnc | 4 +- .../security/config/spring-security-2.0.xsd | 2936 ++++++++++------- .../WEB-INF/applicationContext-security.xml | 7 +- 7 files changed, 1869 insertions(+), 1115 deletions(-) diff --git a/core/src/main/java/org/springframework/security/config/BeanIds.java b/core/src/main/java/org/springframework/security/config/BeanIds.java index 4ff05e901f..e6613d5f6f 100644 --- a/core/src/main/java/org/springframework/security/config/BeanIds.java +++ b/core/src/main/java/org/springframework/security/config/BeanIds.java @@ -32,7 +32,8 @@ public abstract class BeanIds { public static final String FORM_LOGIN_FILTER = "_formLoginFilter"; public static final String FORM_LOGIN_ENTRY_POINT = "_formLoginEntryPoint"; public static final String OPEN_ID_FILTER = "_openIDFilter"; - public static final String OPEN_ID_ENTRY_POINT = "_openIDFilterEntryPoint"; + public static final String OPEN_ID_ENTRY_POINT = "_openIDFilterEntryPoint"; + public static final String OPEN_ID_PROVIDER = "_openIDAuthenticationProvider"; public static final String MAIN_ENTRY_POINT = "_mainEntryPoint"; public static final String FILTER_CHAIN_PROXY = "_filterChainProxy"; public static final String HTTP_SESSION_CONTEXT_INTEGRATION_FILTER = "_httpSessionContextIntegrationFilter"; diff --git a/core/src/main/java/org/springframework/security/config/HttpSecurityBeanDefinitionParser.java b/core/src/main/java/org/springframework/security/config/HttpSecurityBeanDefinitionParser.java index a578e21e09..260e2ee637 100644 --- a/core/src/main/java/org/springframework/security/config/HttpSecurityBeanDefinitionParser.java +++ b/core/src/main/java/org/springframework/security/config/HttpSecurityBeanDefinitionParser.java @@ -83,7 +83,8 @@ public class HttpSecurityBeanDefinitionParser implements BeanDefinitionParser { static final String ATT_SERVLET_API_PROVISION = "servlet-api-provision"; static final String DEF_SERVLET_API_PROVISION = "true"; - static final String ATT_ACCESS_MGR = "access-decision-manager-ref"; + static final String ATT_ACCESS_MGR = "access-decision-manager-ref"; + static final String ATT_USER_SERVICE_REF = "user-service-ref"; public BeanDefinition parse(Element element, ParserContext parserContext) { BeanDefinitionRegistry registry = parserContext.getRegistry(); @@ -279,6 +280,20 @@ public class HttpSecurityBeanDefinitionParser implements BeanDefinitionParser { openIDFilter = parser.getFilterBean(); openIDEntryPoint = parser.getEntryPointBean(); openIDLoginPage = parser.getLoginPage(); + + BeanDefinitionBuilder openIDProviderBuilder = + BeanDefinitionBuilder.rootBeanDefinition("org.springframework.security.providers.openid.OpenIDAuthenticationProvider"); + + String userService = openIDLoginElt.getAttribute(ATT_USER_SERVICE_REF); + + if (StringUtils.hasText(userService)) { + openIDProviderBuilder.addPropertyReference("userDetailsService", userService); + } + + BeanDefinition openIDProvider = openIDProviderBuilder.getBeanDefinition(); + ConfigUtils.getRegisteredProviders(parserContext).add(openIDProvider); + + parserContext.getRegistry().registerBeanDefinition(BeanIds.OPEN_ID_PROVIDER, openIDProvider); } if (formLoginFilter == null && openIDFilter == null) { diff --git a/core/src/main/java/org/springframework/security/config/HttpSecurityConfigPostProcessor.java b/core/src/main/java/org/springframework/security/config/HttpSecurityConfigPostProcessor.java index f90542cdb3..804514b28e 100644 --- a/core/src/main/java/org/springframework/security/config/HttpSecurityConfigPostProcessor.java +++ b/core/src/main/java/org/springframework/security/config/HttpSecurityConfigPostProcessor.java @@ -43,6 +43,7 @@ public class HttpSecurityConfigPostProcessor implements BeanFactoryPostProcessor public void postProcessBeanFactory(ConfigurableListableBeanFactory beanFactory) throws BeansException { injectUserDetailsServiceIntoRememberMeServices(beanFactory); injectUserDetailsServiceIntoX509Provider(beanFactory); + injectUserDetailsServiceIntoOpenIDProvider(beanFactory); injectAuthenticationEntryPointIntoExceptionTranslationFilter(beanFactory); @@ -80,6 +81,20 @@ public class HttpSecurityConfigPostProcessor implements BeanFactoryPostProcessor // ignore } } + + private void injectUserDetailsServiceIntoOpenIDProvider(ConfigurableListableBeanFactory beanFactory) { + try { + BeanDefinition openIDProvider = beanFactory.getBeanDefinition(BeanIds.OPEN_ID_PROVIDER); + PropertyValue pv = openIDProvider.getPropertyValues().getPropertyValue("userDetailsService"); + + if (pv == null) { + openIDProvider.getPropertyValues().addPropertyValue("userDetailsService", + ConfigUtils.getUserDetailsService(beanFactory)); + } + } catch (NoSuchBeanDefinitionException e) { + // ignore + } + } /** * Sets the authentication manager, (and remember-me services, if required) on any instances of diff --git a/core/src/main/java/org/springframework/security/ui/webapp/DefaultLoginPageGeneratingFilter.java b/core/src/main/java/org/springframework/security/ui/webapp/DefaultLoginPageGeneratingFilter.java index d3af5d9973..3cc5965548 100644 --- a/core/src/main/java/org/springframework/security/ui/webapp/DefaultLoginPageGeneratingFilter.java +++ b/core/src/main/java/org/springframework/security/ui/webapp/DefaultLoginPageGeneratingFilter.java @@ -63,7 +63,7 @@ public class DefaultLoginPageGeneratingFilter extends SpringSecurityFilter { if (openIDFilter != null) { openIdEnabled = true; - openIDauthenticationUrl = openIDFilter.getAuthenticationFailureUrl(); + openIDauthenticationUrl = openIDFilter.getDefaultFilterProcessesUrl(); openIDusernameParameter = (String) (new BeanWrapperImpl(openIDFilter)).getPropertyValue("claimedIdentityFieldName"); if (openIDFilter.getRememberMeServices() instanceof AbstractRememberMeServices) { diff --git a/core/src/main/resources/org/springframework/security/config/spring-security-2.0.rnc b/core/src/main/resources/org/springframework/security/config/spring-security-2.0.rnc index 715e37e4fa..87f466a83f 100644 --- a/core/src/main/resources/org/springframework/security/config/spring-security-2.0.rnc +++ b/core/src/main/resources/org/springframework/security/config/spring-security-2.0.rnc @@ -165,7 +165,7 @@ annotation-driven.attlist &= http = ## Container element for HTTP security configuration - element http {http.attlist, (intercept-url+ & form-login? & x509? & http-basic? & logout? & concurrent-session-control? & remember-me? & anonymous? & port-mappings) } + element http {http.attlist, (intercept-url+ & form-login? & openid-login & x509? & http-basic? & logout? & concurrent-session-control? & remember-me? & anonymous? & port-mappings) } http.attlist &= ## Automatically registers a login form, BASIC authentication, anonymous authentication, logout services, remember-me and servlet-api-integration. If set to "true", all of these capabilities are added (although you can still customize the configuration of each by providing the respective element). If unspecified, defaults to "false". attribute auto-config {"true" | "false" }? @@ -240,7 +240,7 @@ form-login.attlist &= openid-login = ## Sets up form login for authentication with an Open ID identity - element openid-login {form-login.attlist, empty} + element openid-login {form-login.attlist, user-service-ref?, empty} filter-chain-map = diff --git a/core/src/main/resources/org/springframework/security/config/spring-security-2.0.xsd b/core/src/main/resources/org/springframework/security/config/spring-security-2.0.xsd index c837a78912..17a34c16b9 100644 --- a/core/src/main/resources/org/springframework/security/config/spring-security-2.0.xsd +++ b/core/src/main/resources/org/springframework/security/config/spring-security-2.0.xsd @@ -1,1110 +1,1832 @@ - + + + + + + + + + Defines the hashing algorithm used on user passwords. We recommend strongly against using MD4, as it is a very weak hashing algorithm. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Whether a string should be base64 encoded + + + + + + + + + + + + + + + + + + + + + + + + + + Defines the type of pattern used to specify URL paths (either JDK 1.4-compatible regular expressions, or Apache Ant expressions). Defaults to "ant" if unspecified. + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies an IP port number. Used to configure an embedded LDAP server, for example. + + + + + + + + + + + + + + Specifies a URL. + + + + + + + + + + + + + + A bean identifier, used for referring to the bean elsewhere in the context. + + + + + + + + + + + + + + Defines a reference to a Spring bean Id. + + + + + + + + + + + + + + A reference to a user-service (or UserDetailsService bean) Id + + + + + + + + + + + element which defines a password encoding strategy. Used by an authentication provider to convert submitted passwords to hashed versions, for example. + + + + + + + + + + + + + + A property of the UserDetails object which will be used as salt by a password encoder. Typically something like "username" might be used. + + + + + + + + + + A single value that will be used as the salt for a password encoder. + + + + + + + + + + + + + + + + + + + + + + Defines a reference to a Spring bean Id. + + + + + + + + + + Defines the hashing algorithm used on user passwords. We recommend strongly against using MD4, as it is a very weak hashing algorithm. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Whether a string should be base64 encoded + + + + + + + + + + + + + + + + + + + + + + + + + + + A property of the UserDetails object which will be used as salt by a password encoder. Typically something like "username" might be used. + + + + + + + + + + + + + + A single value that will be used as the salt for a password encoder. + + + + + + + + + + + Defines an LDAP server location or starts an embedded server. The url indicates the location of a remote server. If no url is given, an embedded server will be started, listening on the supplied port number. The port is optional and defaults to 33389. A Spring LDAP ContextSource bean will be registered for the server with the id supplied. + + + + + + + + + + + + + + + + A bean identifier, used for referring to the bean elsewhere in the context. + + + + + + + + + + Specifies a URL. + + + + + + + + + + Specifies an IP port number. Used to configure an embedded LDAP server, for example. + + + + + + + + + + Username (DN) of the "manager" user identity which will be used to authenticate to a (non-embedded) LDAP server. If omitted, anonymous access will be used. + + + + + + + + + + + + Explicitly specifies an ldif file resource to load into an embedded LDAP server + + + + + + + + + + Optional root suffix for the embedded LDAP server. Default is "dc=springframework,dc=org" + + + + + + + + + + + + + + The optional server to use. If omitted, and a default LDAP server is registered (using <ldap-server> with no Id), that server will be used. + + + + + + + + + + + + + + Group search filter. Defaults to (uniqueMember={0}). The substituted parameter is the DN of the user. + + + + + + + + + + + + + + Search base for group membership searches. Defaults to "ou=groups". + + + + + + + + + + + + + + + + + + + + Search base for user searches. Defaults to "". + + + + + + + + + + + + + + The LDAP attribute name which contains the role name which will be used within Spring Security. Defaults to "cn". + + + + + + + + + + + + + + + + + + + + + + A bean identifier, used for referring to the bean elsewhere in the context. + + + + + + + + + + The optional server to use. If omitted, and a default LDAP server is registered (using <ldap-server> with no Id), that server will be used. + + + + + + + + + + + + + + Group search filter. Defaults to (uniqueMember={0}). The substituted parameter is the DN of the user. + + + + + + + + + + Search base for group membership searches. Defaults to "ou=groups". + + + + + + + + + + The LDAP attribute name which contains the role name which will be used within Spring Security. Defaults to "cn". + + + + + + + + + + + Sets up an ldap authentication provider + + + + + + + + + + + + + + + + + + + + + + The optional server to use. If omitted, and a default LDAP server is registered (using <ldap-server> with no Id), that server will be used. + + + + + + + + + + + + + + Search base for group membership searches. Defaults to "ou=groups". + + + + + + + + + + Group search filter. Defaults to (uniqueMember={0}). The substituted parameter is the DN of the user. + + + + + + + + + + The LDAP attribute name which contains the role name which will be used within Spring Security. Defaults to "cn". + + + + + + + + + + A specific pattern used to build the user's DN, for example "uid={0},ou=people". The key "{0}" must be present and will be substituted with the username. + + + + + + + + + + + Specifies that an LDAP provider should use an LDAP compare operation of the user's password to authenticate the user + + + + + + + + + + + + + + + + + + + + + + The attribute in the directory which contains the user password. Defaults to "userPassword". + + + + + + + + + + Defines the hashing algorithm used on user passwords. We recommend strongly against using MD4, as it is a very weak hashing algorithm. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Can be used inside a bean definition to add a security interceptor to the bean and set up access configuration attributes for the bean's methods + + + + + + + + + + + + + + + + + + + + + + Optional AccessDecisionManager bean ID to be used by the created method security interceptor. + + + + + + + + + + + Defines a protected method and the access control configuration attributes that apply to it + + + + + + + + + + + + + + + + A method name + + + + + + + + + + Access configuration attributes list that applies to the method, e.g. "ROLE_A,ROLE_B" + + + + + + + + + + + Activates security annotation scanning. All beans registered in the Spring application context will be scanned for Spring Security annotations. Where found, the beans will automatically be proxied and security authorization applied to the methods accordingly. Please ensure you have the spring-security-tiger-XXX.jar on your classpath. + + + + + + + + + + + + + + + + Specifies that JSR-250 style attributes are to be used (for example "RolesAllowed" instead of "Secured"). This will require the javax.annotation.security classes on the classpath. Defaults to false. + + + + + + + + + + + + + + + + + + + + + + Optional AccessDecisionManager bean ID to override the default. + + + + + + + + + + + Container element for HTTP security configuration + + + + + + + + + + Specifies the access attributes and/or filter list for a particular set of URLs. + + + + + + + + + + + + + Sets up a form login configuration for authentication with a username and password + + + + + + + + + + + + + + + Adds support for X.509 client authentication. + + + + + + + + + + + + + Adds support for basic authentication (this is an element to permit future expansion, such as supporting an "ignoreFailure" attribute) + + + + + + + + + Incorporates a logout processing filter. Most web applications require a logout filter, although you may not require one if you write a controller to provider similar logic. + + + + + + + + + + + + + Adds support for concurrent session control, allowing limits to be placed on the number of sessions a user can have. + + + + + + + + + + + + + + + + + + + + + Adds support for automatically granting all anonymous web requests a particular principal identity and a corresponding granted authority. + + + + + + + + + + + + + Defines the list of mappings between http and https ports for use in redirects + + + + + + + + + + + + + + + + + + + + + + + + + + + Automatically registers a login form, BASIC authentication, anonymous authentication, logout services, remember-me and servlet-api-integration. If set to "true", all of these capabilities are added (although you can still customize the configuration of each by providing the respective element). If unspecified, defaults to "false". + + + + + + + + + + + + + + + + + + + + + + Controls the eagerness with which an HTTP session is created. If not set, defaults to "ifRequired". + + + + + + + + + + + + + + + + + + + + + + + + Defines the type of pattern used to specify URL paths (either JDK 1.4-compatible regular expressions, or Apache Ant expressions). Defaults to "ant" if unspecified. + + + + + + + + + + + + + + + + + + + + + + Whether test URLs should be converted to lower case prior to comparing with defined path patterns. If unspecified, defaults to "true". + + + + + + + + + + + + + + + + + + + + + + Provides versions of HttpServletRequest security methods such as isUserInRole() and getPrincipal() which are implemented by accessing the Spring SecurityContext. Defaults to "true". + + + + + + + + + + + + + + + + + + + + + + Optional attribute specifying the ID of the AccessDecisionManager implementation which should be used for authorizing HTTP requests. + + + + + + + + + + Optional attribute specifying the realm name that will be used for all authentication features that require a realm name (eg BASIC and Digest authentication). If unspecified, defaults to "Spring Security Application". + + + + + + + + + + + + + + + The pattern which defines the URL path. The content will depend on the type set in the containing http element, so will default to ant path syntax. + + + + + + + + + + The access configuration attributes that apply for the configured path. + + + + + + + + + + The HTTP Method for which the access configuration attributes should apply. If not specified, the attributes will apply to any method. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The filter list for the path. Currently can be set to "none" to remove a path from having any filters applied. The full filter stack (consisting of all defined filters, will be applied to any other paths). + + + + + + + + + + + + + + + + + + + + Used to specify that a URL must be accessed over http or https + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Specifies the URL that will cause a logout. Spring Security will initialize a filter that responds to this particular URL. Defaults to /j_spring_security_logout if unspecified. + + + + + + + + + + Specifies the URL to display once the user has logged out. If not specified, defaults to /. + + + + + + + + + + Specifies whether a logout also causes HttpSession invalidation, which is generally desirable. If unspecified, defaults to true. + + + + + + + + + + + + + + + + + + + + + + + + + + + The URL that the login form is posted to. If unspecified, it defaults to /j_spring_security_check. + + + + + + + + + + The URL that will be redirected to after successful authentication, if the user's previous action could not be resumed. This generally happens if the user visits a login page without having first requested a secured operation that triggers authentication. If unspecified, defaults to the root of the application. + + + + + + + + + + The URL for the login page. If no login URL is specified, Spring Security will automatically create a login URL at /spring_security_login and a corresponding filter to render that login URL when requested. + + + + + + + + + + The URL for the login failure page. If no login failure URL is specified, Spring Security will automatically create a failure login URL at /spring_security_login?login_error and a corresponding filter to render that login failure URL when requested. + + + + + + + + + + + Sets up form login for authentication with an Open ID identity + + + + + + + + + + + A reference to a user-service (or UserDetailsService bean) Id + + + + + + + + + + + + Used to explicitly configure a FilterChainProxy instance with a FilterChainMap + + + + + + + + + + Used within filter-chain-map to define a specific URL pattern and the list of filters which apply to the URLs matching that pattern. When multiple filter-chain elements are used within a filter-chain-map element, the most specific patterns must be placed at the top of the list, with most general ones at the bottom. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Used to explicitly configure a FilterInvocationDefinitionSource bean for use with a FilterSecurityInterceptor. Usually only needed if you are configuring a FilterChainProxy explicitly, rather than using the <http> element. The intercept-url elements used should only contain pattern, method and access attributes. Any others will result in a configuration error. + + + + + + + + + + Specifies the access attributes and/or filter list for a particular set of URLs. + + + + + + + + + + + + + + + + + + + + + + + A bean identifier, used for referring to the bean elsewhere in the context. + + + + + + + + + + as for http element + + + + + + + + + + + + + + + + + + + + + + Defines the type of pattern used to specify URL paths (either JDK 1.4-compatible regular expressions, or Apache Ant expressions). Defaults to "ant" if unspecified. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The key used between the provider and filter. This generally does not need to be set. If unset, it will default to "doesNotMatter". + + + + + + + + + + The username that should be assigned to the anonymous request. This allows the principal to be identified, which may be important for logging and auditing. if unset, defaults to "anonymousUser". + + + + + + + + + + The granted authority that should be assigned to the anonymous request. Commonly this is used to assign the anonymous request particular roles, which can subsequently be used in authorization decisions. If unset, defaults to "ROLE_ANONYMOUS". + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + The regular expression used to obtain the username from the certificate's subject. Defaults to matching on the common name using the pattern "CN=(.*?),". + + + + + + + + + + A reference to a user-service (or UserDetailsService bean) Id + + + + + + + + + + + If you are using namespace configuration with Spring Security, an AuthenticationManager will automatically be registered. This element simple allows you to define an alias to allow you to reference the authentication-manager in your own beans. + + + + + + + + + + + + + + The alias you wish to use for the AuthenticationManager bean + + + + + + + + + + + Indicates that the contained user-service should be used as an authentication source. + + + + + + + + + + + + + + + + + + + + + + + + A reference to a user-service (or UserDetailsService bean) Id + + + + + + + + + + + + + + + Creates an in-memory UserDetailsService from a properties file or a list of "user" child elements. + + + + + + + + + + + + + + + A bean identifier, used for referring to the bean elsewhere in the context. + + + + + + + + + + + + + + + + + + + + Represents a user in the application. + + + + + + + + + + + + + + + + The username assigned to the user. + + + + + + + + + + The password assigned to the user. This may be hashed if the corresponding authentication provider supports hashing (remember to set the "hash" attribute of the "user-service" element). + + + + + + + + + + One of more authorities granted to the user. Separate authorities with a comma (but no space). For example, "ROLE_USER,ROLE_ADMINISTRATOR" + + + + + + + + + + Can be set to "true" to mark an account as locked and unusable. + + + + + + + + + + + + + + + + + + + + + + + Causes creation of a JDBC-based UserDetailsService. + + + + + + + + + A bean identifier, used for referring to the bean elsewhere in the context. + + + + + + + + + + + + + + + + + The bean ID of the DataSource which provides the required tables. + + + + + + + + + + + + + + + + + + + + + + + Used to indicate that a filter bean declaration should be incorporated into the security filter chain. If neither the 'after' or 'before' options are supplied, then the filter must implement the Ordered interface directly. + + + + + + + + + The filter immediately after which the custom-filter should be placed in the chain. This feature will only be needed by advanced users who wish to mix their own filters into the security filter chain and have some knowledge of the standard Spring Security filters. The filter names map to specific Spring Security implementation filters. + + + + + + + + + + The filter immediately before which the custom-filter should be placed in the chain + + + + + + + + + + + + + + + The filter immediately after which the custom-filter should be placed in the chain. This feature will only be needed by advanced users who wish to mix their own filters into the security filter chain and have some knowledge of the standard Spring Security filters. The filter names map to specific Spring Security implementation filters. + + + + + + + + + + + + + + The filter immediately before which the custom-filter should be placed in the chain + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - Defines the hashing algorithm used on user passwords. We recommend - strongly against using MD4, as it is a very weak hashing algorithm. - - - - - - - - - - - - - - - - - Whether a string should be base64 encoded - - - - - - - - - - - - - Defines the type of pattern used to specify URL paths (either JDK - 1.4-compatible regular expressions, or Apache Ant expressions). Defaults to - "ant" if unspecified. - - - - - - - - - - - - - Specifies an IP port number. Used to configure an embedded LDAP - server, for example. - - - - - - - Specifies a URL. - - - - - - - A bean identifier, used for referring to the bean elsewhere in the - context. - - - - - - - Defines a reference to a Spring bean Id. - - - - - - - A reference to a user-service (or UserDetailsService bean) Id - - - - - - element which defines a password encoding strategy. Used by an - authentication provider to convert submitted passwords to hashed versions, for - example. - - - - - - - - A property of the UserDetails object which will be - used as salt by a password encoder. Typically something like - "username" might be used. - - - - - A single value that will be used as the salt for a - password encoder. - - - - - - - - - - - - Defines a reference to a Spring bean Id. - - - - - Defines the hashing algorithm used on user passwords. We recommend - strongly against using MD4, as it is a very weak hashing algorithm. - - - - - - - - - - - - - - - Whether a string should be base64 encoded - - - - - - - - - - - - - - A property of the UserDetails object which will be used as salt by - a password encoder. Typically something like "username" might be used. - - - - - - - A single value that will be used as the salt for a password - encoder. - - - - - - Defines an LDAP server location or starts an embedded server. The url - indicates the location of a remote server. If no url is given, an embedded server - will be started, listening on the supplied port number. The port is optional and - defaults to 33389. A Spring LDAP ContextSource bean will be registered for the - server with the id supplied. - - - - - - - - - A bean identifier, used for referring to the bean elsewhere in the - context. - - - - - Specifies a URL. - - - - - Specifies an IP port number. Used to configure an embedded LDAP - server, for example. - - - - - Username (DN) of the "manager" user identity which will be used to - authenticate to a (non-embedded) LDAP server. If omitted, anonymous access will - be used. - - - - - - Explicitly specifies an ldif file resource to load into an - embedded LDAP server - - - - - Optional root suffix for the embedded LDAP server. Default is - "dc=springframework,dc=org" - - - - - - - The optional server to use. If omitted, and a default LDAP server - is registered (using <ldap-server> with no Id), that server will - be used. - - - - - - - Group search filter. Defaults to (uniqueMember={0}). The - substituted parameter is the DN of the user. - - - - - - - Search base for group membership searches. Defaults to - "ou=groups". - - - - - - - - - - Search base for user searches. Defaults to "". - - - - - - - The LDAP attribute name which contains the role name which will be - used within Spring Security. Defaults to "cn". - - - - - - - - - - - - A bean identifier, used for referring to the bean elsewhere in the - context. - - - - - The optional server to use. If omitted, and a default LDAP server - is registered (using <ldap-server> with no Id), that server will - be used. - - - - - - - Group search filter. Defaults to (uniqueMember={0}). The - substituted parameter is the DN of the user. - - - - - Search base for group membership searches. Defaults to - "ou=groups". - - - - - The LDAP attribute name which contains the role name which will be - used within Spring Security. Defaults to "cn". - - - - - - Sets up an ldap authentication provider - - - - - - - - - - - - The optional server to use. If omitted, and a default LDAP server - is registered (using <ldap-server> with no Id), that server will - be used. - - - - - - - Search base for group membership searches. Defaults to - "ou=groups". - - - - - Group search filter. Defaults to (uniqueMember={0}). The - substituted parameter is the DN of the user. - - - - - The LDAP attribute name which contains the role name which will be - used within Spring Security. Defaults to "cn". - - - - - A specific pattern used to build the user's DN, for example - "uid={0},ou=people". The key "{0}" must be present and will be substituted with - the username. - - - - - - Specifies that an LDAP provider should use an LDAP compare operation - of the user's password to authenticate the user - - - - - - - - - - - - The attribute in the directory which contains the user password. - Defaults to "userPassword". - - - - - Defines the hashing algorithm used on user passwords. We recommend - strongly against using MD4, as it is a very weak hashing algorithm. - - - - - - - - - - - - - - - - Can be used inside a bean definition to add a security interceptor to - the bean and set up access configuration attributes for the bean's methods - - - - - - - - - - - - Optional AccessDecisionManager bean ID to be used by the created - method security interceptor. - - - - - - Defines a protected method and the access control configuration - attributes that apply to it - - - - - - - - - A method name - - - - - Access configuration attributes list that applies to the method, - e.g. "ROLE_A,ROLE_B" - - - - - - Activates security annotation scanning. All beans registered in the - Spring application context will be scanned for Spring Security annotations. Where - found, the beans will automatically be proxied and security authorization applied to - the methods accordingly. Please ensure you have the spring-security-tiger-XXX.jar on - your classpath. - - - - - - - - - Specifies that JSR-250 style attributes are to be used (for - example "RolesAllowed" instead of "Secured"). This will require the - javax.annotation.security classes on the classpath. Defaults to false. - - - - - - - - - - - Optional AccessDecisionManager bean ID to override the default. - - - - - - Container element for HTTP security configuration - - - - - - Specifies the access attributes and/or filter list for a - particular set of URLs. - - - - - - - - Sets up a form login configuration for authentication with - a username and password - - - - - - - - Adds support for X.509 client authentication. - - - - - - - - Adds support for basic authentication (this is an element - to permit future expansion, such as supporting an "ignoreFailure" - attribute) - - - - - - Incorporates a logout processing filter. Most web - applications require a logout filter, although you may not require one - if you write a controller to provider similar logic. - - - - - - - - Adds support for concurrent session control, allowing - limits to be placed on the number of sessions a user can have. - - - - - - - - - - - - - Adds support for automatically granting all anonymous web - requests a particular principal identity and a corresponding granted - authority. - - - - - - - - Defines the list of mappings between http and https ports - for use in redirects - - - - - - - - - - - - - - - Automatically registers a login form, BASIC authentication, - anonymous authentication, logout services, remember-me and - servlet-api-integration. If set to "true", all of these capabilities are added - (although you can still customize the configuration of each by providing the - respective element). If unspecified, defaults to "false". - - - - - - - - - - - Controls the eagerness with which an HTTP session is created. If - not set, defaults to "ifRequired". - - - - - - - - - - - - Defines the type of pattern used to specify URL paths (either JDK - 1.4-compatible regular expressions, or Apache Ant expressions). Defaults to - "ant" if unspecified. - - - - - - - - - - - Whether test URLs should be converted to lower case prior to - comparing with defined path patterns. If unspecified, defaults to "true". - - - - - - - - - - - Provides versions of HttpServletRequest security methods such as - isUserInRole() and getPrincipal() which are implemented by accessing the Spring - SecurityContext. Defaults to "true". - - - - - - - - - - - Optional attribute specifying the ID of the AccessDecisionManager - implementation which should be used for authorizing HTTP requests. - - - - - Optional attribute specifying the realm name that will be used for - all authentication features that require a realm name (eg BASIC and Digest - authentication). If unspecified, defaults to "Spring Security Application". - - - - - - - - The pattern which defines the URL path. The content will depend on - the type set in the containing http element, so will default to ant path syntax. - - - - - The access configuration attributes that apply for the configured - path. - - - - - The HTTP Method for which the access configuration attributes - should apply. If not specified, the attributes will apply to any method. - - - - - - - - - - - - - - - - The filter list for the path. Currently can be set to "none" to - remove a path from having any filters applied. The full filter stack (consisting - of all defined filters, will be applied to any other paths). - - - - - - - - - - Used to specify that a URL must be accessed over http or https - - - - - - - - - - - - - - - Specifies the URL that will cause a logout. Spring Security will - initialize a filter that responds to this particular URL. Defaults to - /j_spring_security_logout if unspecified. - - - - - Specifies the URL to display once the user has logged out. If not - specified, defaults to /. - - - - - Specifies whether a logout also causes HttpSession invalidation, - which is generally desirable. If unspecified, defaults to true. - - - - - - - - - - - - - - The URL that the login form is posted to. If unspecified, it - defaults to /j_spring_security_check. - - - - - The URL that will be redirected to after successful - authentication, if the user's previous action could not be resumed. This - generally happens if the user visits a login page without having first requested - a secured operation that triggers authentication. If unspecified, defaults to - the root of the application. - - - - - The URL for the login page. If no login URL is specified, Spring - Security will automatically create a login URL at /spring_security_login and a - corresponding filter to render that login URL when requested. - - - - - The URL for the login failure page. If no login failure URL is - specified, Spring Security will automatically create a failure login URL at - /spring_security_login?login_error and a corresponding filter to render that - login failure URL when requested. - - - - - - Sets up form login for authentication with an Open ID identity - - - - - - - - Used to explicitly configure a FilterChainProxy instance with a - FilterChainMap - - - - - - Used within filter-chain-map to define a specific URL - pattern and the list of filters which apply to the URLs matching that - pattern. When multiple filter-chain elements are used within a - filter-chain-map element, the most specific patterns must be placed at - the top of the list, with most general ones at the bottom. - - - - - - - - - - - - - - - - - - - - Used to explicitly configure a FilterInvocationDefinitionSource bean - for use with a FilterSecurityInterceptor. Usually only needed if you are configuring - a FilterChainProxy explicitly, rather than using the <http> element. - The intercept-url elements used should only contain pattern, method and access - attributes. Any others will result in a configuration error. - - - - - - Specifies the access attributes and/or filter list for a - particular set of URLs. - - - - - - - - - - - - - A bean identifier, used for referring to the bean elsewhere in the - context. - - - - - as for http element - - - - - - - - - - - Defines the type of pattern used to specify URL paths (either JDK - 1.4-compatible regular expressions, or Apache Ant expressions). Defaults to - "ant" if unspecified. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The key used between the provider and filter. This generally does - not need to be set. If unset, it will default to "doesNotMatter". - - - - - The username that should be assigned to the anonymous request. - This allows the principal to be identified, which may be important for logging - and auditing. if unset, defaults to "anonymousUser". - - - - - The granted authority that should be assigned to the anonymous - request. Commonly this is used to assign the anonymous request particular roles, - which can subsequently be used in authorization decisions. If unset, defaults to - "ROLE_ANONYMOUS". - - - - - - - - - - - - - - - - - - - - - The regular expression used to obtain the username from the - certificate's subject. Defaults to matching on the common name using the pattern - "CN=(.*?),". - - - - - A reference to a user-service (or UserDetailsService bean) Id - - - - - - If you are using namespace configuration with Spring Security, an - AuthenticationManager will automatically be registered. This element simple allows - you to define an alias to allow you to reference the authentication-manager in your - own beans. - - - - - - - - The alias you wish to use for the AuthenticationManager bean - - - - - - Indicates that the contained user-service should be used as an - authentication source. - - - - - - - - - - - - - A reference to a user-service (or UserDetailsService bean) Id - - - - - - - - - Creates an in-memory UserDetailsService from a properties file or a - list of "user" child elements. - - - - - - - - A bean identifier, used for referring to the bean elsewhere in - the context. - - - - - - - - - - - Represents a user in the application. - - - - - - - - - The username assigned to the user. - - - - - The password assigned to the user. This may be hashed if the - corresponding authentication provider supports hashing (remember to set the - "hash" attribute of the "user-service" element). - - - - - One of more authorities granted to the user. Separate authorities - with a comma (but no space). For example, "ROLE_USER,ROLE_ADMINISTRATOR" - - - - - Can be set to "true" to mark an account as locked and unusable. - - - - - - - - - - - - Causes creation of a JDBC-based UserDetailsService. - - - - - A bean identifier, used for referring to the bean elsewhere in - the context. - - - - - - - - - The bean ID of the DataSource which provides the required tables. - - - - - - - - - - - - - - - - - - Used to indicate that a filter bean declaration should be incorporated - into the security filter chain. If neither the 'after' or 'before' options are - supplied, then the filter must implement the Ordered interface directly. - - - - - The filter immediately after which the custom-filter should be - placed in the chain. This feature will only be needed by advanced users who - wish to mix their own filters into the security filter chain and have some - knowledge of the standard Spring Security filters. The filter names map to - specific Spring Security implementation filters. - - - - - The filter immediately before which the custom-filter should - be placed in the chain - - - - - - - - The filter immediately after which the custom-filter should be - placed in the chain. This feature will only be needed by advanced users who wish - to mix their own filters into the security filter chain and have some knowledge - of the standard Spring Security filters. The filter names map to specific Spring - Security implementation filters. - - - - - - - The filter immediately before which the custom-filter should be - placed in the chain - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/samples/openid/src/main/webapp/WEB-INF/applicationContext-security.xml b/samples/openid/src/main/webapp/WEB-INF/applicationContext-security.xml index 1a964c69da..015172246d 100644 --- a/samples/openid/src/main/webapp/WEB-INF/applicationContext-security.xml +++ b/samples/openid/src/main/webapp/WEB-INF/applicationContext-security.xml @@ -15,11 +15,12 @@ - + + - +