-
Notifications
You must be signed in to change notification settings - Fork 6.1k
AuthorizationManager + Method Security Support #9350
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
87 changes: 87 additions & 0 deletions
87
...springframework/security/config/annotation/method/configuration/EnableMethodSecurity.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
/* | ||
* Copyright 2002-2021 the original author or authors. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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.springframework.security.config.annotation.method.configuration; | ||
|
||
import java.lang.annotation.Documented; | ||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
import org.springframework.context.annotation.AdviceMode; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.context.annotation.Import; | ||
import org.springframework.core.Ordered; | ||
import org.springframework.security.access.annotation.Secured; | ||
|
||
/** | ||
* Enables Spring Security Method Security. | ||
* @author Evgeniy Cheban | ||
* @since 5.5 | ||
*/ | ||
@Retention(RetentionPolicy.RUNTIME) | ||
@Target(ElementType.TYPE) | ||
@Documented | ||
@Import(MethodSecuritySelector.class) | ||
@Configuration | ||
public @interface EnableMethodSecurity { | ||
|
||
/** | ||
* Determines if Spring Security's {@link Secured} annotation should be enabled. | ||
* Default is false. | ||
* @return true if {@link Secured} annotation should be enabled false otherwise | ||
*/ | ||
boolean securedEnabled() default false; | ||
|
||
/** | ||
* Determines if JSR-250 annotations should be enabled. Default is false. | ||
* @return true if JSR-250 should be enabled false otherwise | ||
*/ | ||
boolean jsr250Enabled() default false; | ||
|
||
/** | ||
* Indicate whether subclass-based (CGLIB) proxies are to be created as opposed to | ||
* standard Java interface-based proxies. The default is {@code false}. <strong> | ||
* Applicable only if {@link #mode()} is set to {@link AdviceMode#PROXY}</strong>. | ||
* <p> | ||
* Note that setting this attribute to {@code true} will affect <em>all</em> | ||
* Spring-managed beans requiring proxying, not just those marked with | ||
* {@code @Cacheable}. For example, other beans marked with Spring's | ||
* {@code @Transactional} annotation will be upgraded to subclass proxying at the same | ||
* time. This approach has no negative impact in practice unless one is explicitly | ||
* expecting one type of proxy vs another, e.g. in tests. | ||
* @return true if subclass-based (CGLIB) proxies are to be created | ||
*/ | ||
boolean proxyTargetClass() default false; | ||
|
||
/** | ||
* Indicate how security advice should be applied. The default is | ||
* {@link AdviceMode#PROXY}. | ||
* @see AdviceMode | ||
* @return the {@link AdviceMode} to use | ||
*/ | ||
AdviceMode mode() default AdviceMode.PROXY; | ||
|
||
/** | ||
* Indicate the ordering of the execution of the security advisor when multiple | ||
* advices are applied at a specific joinpoint. The default is | ||
* {@link Ordered#LOWEST_PRECEDENCE}. | ||
* @return the order the security advisor should be applied | ||
*/ | ||
int order() default Ordered.LOWEST_PRECEDENCE; | ||
|
||
} |
252 changes: 252 additions & 0 deletions
252
...ramework/security/config/annotation/method/configuration/MethodSecurityConfiguration.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,252 @@ | ||
/* | ||
* Copyright 2002-2021 the original author or authors. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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.springframework.security.config.annotation.method.configuration; | ||
|
||
import java.lang.annotation.Annotation; | ||
import java.lang.reflect.AnnotatedElement; | ||
import java.lang.reflect.Method; | ||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.HashSet; | ||
import java.util.List; | ||
import java.util.Map; | ||
import java.util.Set; | ||
|
||
import javax.annotation.security.DenyAll; | ||
import javax.annotation.security.PermitAll; | ||
import javax.annotation.security.RolesAllowed; | ||
|
||
import org.springframework.aop.MethodMatcher; | ||
import org.springframework.aop.Pointcut; | ||
import org.springframework.aop.support.AopUtils; | ||
import org.springframework.aop.support.DefaultPointcutAdvisor; | ||
import org.springframework.aop.support.Pointcuts; | ||
import org.springframework.aop.support.StaticMethodMatcher; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.beans.factory.config.BeanDefinition; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.context.annotation.ImportAware; | ||
import org.springframework.context.annotation.Role; | ||
import org.springframework.core.annotation.AnnotatedElementUtils; | ||
import org.springframework.core.annotation.AnnotationAttributes; | ||
import org.springframework.core.type.AnnotationMetadata; | ||
import org.springframework.security.access.annotation.Jsr250AuthorizationManager; | ||
import org.springframework.security.access.annotation.Secured; | ||
import org.springframework.security.access.annotation.SecuredAuthorizationManager; | ||
import org.springframework.security.access.expression.method.DefaultMethodSecurityExpressionHandler; | ||
import org.springframework.security.access.expression.method.MethodSecurityExpressionHandler; | ||
import org.springframework.security.access.intercept.aopalliance.AuthorizationMethodInterceptor; | ||
import org.springframework.security.access.method.AuthorizationManagerMethodAfterAdvice; | ||
import org.springframework.security.access.method.AuthorizationManagerMethodBeforeAdvice; | ||
import org.springframework.security.access.method.AuthorizationMethodAfterAdvice; | ||
import org.springframework.security.access.method.AuthorizationMethodBeforeAdvice; | ||
import org.springframework.security.access.method.DelegatingAuthorizationMethodAfterAdvice; | ||
import org.springframework.security.access.method.DelegatingAuthorizationMethodBeforeAdvice; | ||
import org.springframework.security.access.method.MethodAuthorizationContext; | ||
import org.springframework.security.access.prepost.PostAuthorize; | ||
import org.springframework.security.access.prepost.PreAuthorize; | ||
import org.springframework.security.authorization.method.PostAuthorizeAuthorizationManager; | ||
import org.springframework.security.authorization.method.PostFilterAuthorizationMethodAfterAdvice; | ||
import org.springframework.security.authorization.method.PreAuthorizeAuthorizationManager; | ||
import org.springframework.security.authorization.method.PreFilterAuthorizationMethodBeforeAdvice; | ||
import org.springframework.security.config.core.GrantedAuthorityDefaults; | ||
|
||
/** | ||
* Base {@link Configuration} for enabling Spring Security Method Security. | ||
* | ||
* @author Evgeniy Cheban | ||
* @see EnableMethodSecurity | ||
* @since 5.5 | ||
*/ | ||
@Configuration(proxyBeanMethods = false) | ||
@Role(BeanDefinition.ROLE_INFRASTRUCTURE) | ||
final class MethodSecurityConfiguration implements ImportAware { | ||
|
||
private MethodSecurityExpressionHandler methodSecurityExpressionHandler; | ||
|
||
private GrantedAuthorityDefaults grantedAuthorityDefaults; | ||
|
||
private AuthorizationMethodBeforeAdvice<MethodAuthorizationContext> authorizationMethodBeforeAdvice; | ||
|
||
private AuthorizationMethodAfterAdvice<MethodAuthorizationContext> authorizationMethodAfterAdvice; | ||
|
||
private AnnotationAttributes enableMethodSecurity; | ||
|
||
@Bean | ||
@Role(BeanDefinition.ROLE_INFRASTRUCTURE) | ||
DefaultPointcutAdvisor methodSecurityAdvisor(AuthorizationMethodInterceptor interceptor) { | ||
Pointcut pointcut = Pointcuts.union(getAuthorizationMethodBeforeAdvice(), getAuthorizationMethodAfterAdvice()); | ||
DefaultPointcutAdvisor advisor = new DefaultPointcutAdvisor(pointcut, interceptor); | ||
advisor.setOrder(order()); | ||
return advisor; | ||
} | ||
|
||
@Bean | ||
@Role(BeanDefinition.ROLE_INFRASTRUCTURE) | ||
AuthorizationMethodInterceptor authorizationMethodInterceptor() { | ||
return new AuthorizationMethodInterceptor(getAuthorizationMethodBeforeAdvice(), | ||
getAuthorizationMethodAfterAdvice()); | ||
} | ||
|
||
private MethodSecurityExpressionHandler getMethodSecurityExpressionHandler() { | ||
if (this.methodSecurityExpressionHandler == null) { | ||
this.methodSecurityExpressionHandler = new DefaultMethodSecurityExpressionHandler(); | ||
} | ||
return this.methodSecurityExpressionHandler; | ||
} | ||
|
||
@Autowired(required = false) | ||
void setMethodSecurityExpressionHandler(MethodSecurityExpressionHandler methodSecurityExpressionHandler) { | ||
this.methodSecurityExpressionHandler = methodSecurityExpressionHandler; | ||
} | ||
|
||
@Autowired(required = false) | ||
void setGrantedAuthorityDefaults(GrantedAuthorityDefaults grantedAuthorityDefaults) { | ||
this.grantedAuthorityDefaults = grantedAuthorityDefaults; | ||
} | ||
|
||
private AuthorizationMethodBeforeAdvice<MethodAuthorizationContext> getAuthorizationMethodBeforeAdvice() { | ||
if (this.authorizationMethodBeforeAdvice == null) { | ||
this.authorizationMethodBeforeAdvice = createDefaultAuthorizationMethodBeforeAdvice(); | ||
} | ||
return this.authorizationMethodBeforeAdvice; | ||
} | ||
|
||
private AuthorizationMethodBeforeAdvice<MethodAuthorizationContext> createDefaultAuthorizationMethodBeforeAdvice() { | ||
List<AuthorizationMethodBeforeAdvice<MethodAuthorizationContext>> beforeAdvices = new ArrayList<>(); | ||
beforeAdvices.add(getPreFilterAuthorizationMethodBeforeAdvice()); | ||
jzheaux marked this conversation as resolved.
Show resolved
Hide resolved
|
||
beforeAdvices.add(getPreAuthorizeAuthorizationMethodBeforeAdvice()); | ||
if (securedEnabled()) { | ||
beforeAdvices.add(getSecuredAuthorizationMethodBeforeAdvice()); | ||
} | ||
if (jsr250Enabled()) { | ||
beforeAdvices.add(getJsr250AuthorizationMethodBeforeAdvice()); | ||
} | ||
return new DelegatingAuthorizationMethodBeforeAdvice(beforeAdvices); | ||
} | ||
|
||
private PreFilterAuthorizationMethodBeforeAdvice getPreFilterAuthorizationMethodBeforeAdvice() { | ||
PreFilterAuthorizationMethodBeforeAdvice preFilterBeforeAdvice = new PreFilterAuthorizationMethodBeforeAdvice(); | ||
preFilterBeforeAdvice.setExpressionHandler(getMethodSecurityExpressionHandler()); | ||
return preFilterBeforeAdvice; | ||
} | ||
|
||
private AuthorizationMethodBeforeAdvice<MethodAuthorizationContext> getPreAuthorizeAuthorizationMethodBeforeAdvice() { | ||
MethodMatcher methodMatcher = new SecurityAnnotationsStaticMethodMatcher(PreAuthorize.class); | ||
PreAuthorizeAuthorizationManager authorizationManager = new PreAuthorizeAuthorizationManager(); | ||
authorizationManager.setExpressionHandler(getMethodSecurityExpressionHandler()); | ||
return new AuthorizationManagerMethodBeforeAdvice<>(methodMatcher, authorizationManager); | ||
} | ||
|
||
private AuthorizationManagerMethodBeforeAdvice<MethodAuthorizationContext> getSecuredAuthorizationMethodBeforeAdvice() { | ||
MethodMatcher methodMatcher = new SecurityAnnotationsStaticMethodMatcher(Secured.class); | ||
SecuredAuthorizationManager authorizationManager = new SecuredAuthorizationManager(); | ||
return new AuthorizationManagerMethodBeforeAdvice<>(methodMatcher, authorizationManager); | ||
} | ||
|
||
private AuthorizationManagerMethodBeforeAdvice<MethodAuthorizationContext> getJsr250AuthorizationMethodBeforeAdvice() { | ||
MethodMatcher methodMatcher = new SecurityAnnotationsStaticMethodMatcher(DenyAll.class, PermitAll.class, | ||
RolesAllowed.class); | ||
Jsr250AuthorizationManager authorizationManager = new Jsr250AuthorizationManager(); | ||
if (this.grantedAuthorityDefaults != null) { | ||
authorizationManager.setRolePrefix(this.grantedAuthorityDefaults.getRolePrefix()); | ||
} | ||
return new AuthorizationManagerMethodBeforeAdvice<>(methodMatcher, authorizationManager); | ||
} | ||
|
||
@Autowired(required = false) | ||
void setAuthorizationMethodBeforeAdvice( | ||
AuthorizationMethodBeforeAdvice<MethodAuthorizationContext> authorizationMethodBeforeAdvice) { | ||
this.authorizationMethodBeforeAdvice = authorizationMethodBeforeAdvice; | ||
} | ||
|
||
private AuthorizationMethodAfterAdvice<MethodAuthorizationContext> getAuthorizationMethodAfterAdvice() { | ||
if (this.authorizationMethodAfterAdvice == null) { | ||
this.authorizationMethodAfterAdvice = createDefaultAuthorizationMethodAfterAdvice(); | ||
} | ||
return this.authorizationMethodAfterAdvice; | ||
} | ||
|
||
private AuthorizationMethodAfterAdvice<MethodAuthorizationContext> createDefaultAuthorizationMethodAfterAdvice() { | ||
List<AuthorizationMethodAfterAdvice<MethodAuthorizationContext>> afterAdvices = new ArrayList<>(); | ||
afterAdvices.add(getPostFilterAuthorizationMethodAfterAdvice()); | ||
afterAdvices.add(getPostAuthorizeAuthorizationMethodAfterAdvice()); | ||
return new DelegatingAuthorizationMethodAfterAdvice(afterAdvices); | ||
} | ||
|
||
private PostFilterAuthorizationMethodAfterAdvice getPostFilterAuthorizationMethodAfterAdvice() { | ||
PostFilterAuthorizationMethodAfterAdvice postFilterAfterAdvice = new PostFilterAuthorizationMethodAfterAdvice(); | ||
postFilterAfterAdvice.setExpressionHandler(getMethodSecurityExpressionHandler()); | ||
return postFilterAfterAdvice; | ||
} | ||
|
||
private AuthorizationManagerMethodAfterAdvice<MethodAuthorizationContext> getPostAuthorizeAuthorizationMethodAfterAdvice() { | ||
MethodMatcher methodMatcher = new SecurityAnnotationsStaticMethodMatcher(PostAuthorize.class); | ||
PostAuthorizeAuthorizationManager authorizationManager = new PostAuthorizeAuthorizationManager(); | ||
authorizationManager.setExpressionHandler(getMethodSecurityExpressionHandler()); | ||
return new AuthorizationManagerMethodAfterAdvice<>(methodMatcher, authorizationManager); | ||
} | ||
|
||
@Autowired(required = false) | ||
void setAuthorizationMethodAfterAdvice( | ||
AuthorizationMethodAfterAdvice<MethodAuthorizationContext> authorizationMethodAfterAdvice) { | ||
this.authorizationMethodAfterAdvice = authorizationMethodAfterAdvice; | ||
} | ||
|
||
@Override | ||
public void setImportMetadata(AnnotationMetadata importMetadata) { | ||
Map<String, Object> attributes = importMetadata.getAnnotationAttributes(EnableMethodSecurity.class.getName()); | ||
this.enableMethodSecurity = AnnotationAttributes.fromMap(attributes); | ||
} | ||
|
||
private boolean securedEnabled() { | ||
return this.enableMethodSecurity.getBoolean("securedEnabled"); | ||
} | ||
|
||
private boolean jsr250Enabled() { | ||
return this.enableMethodSecurity.getBoolean("jsr250Enabled"); | ||
} | ||
|
||
private int order() { | ||
return this.enableMethodSecurity.getNumber("order"); | ||
} | ||
|
||
private static final class SecurityAnnotationsStaticMethodMatcher extends StaticMethodMatcher { | ||
|
||
private final Set<Class<? extends Annotation>> annotationClasses; | ||
|
||
@SafeVarargs | ||
private SecurityAnnotationsStaticMethodMatcher(Class<? extends Annotation>... annotationClasses) { | ||
this.annotationClasses = new HashSet<>(Arrays.asList(annotationClasses)); | ||
} | ||
|
||
@Override | ||
public boolean matches(Method method, Class<?> targetClass) { | ||
Method specificMethod = AopUtils.getMostSpecificMethod(method, targetClass); | ||
return hasAnnotations(specificMethod) || hasAnnotations(specificMethod.getDeclaringClass()); | ||
} | ||
|
||
private boolean hasAnnotations(AnnotatedElement annotatedElement) { | ||
Set<Annotation> annotations = AnnotatedElementUtils.findAllMergedAnnotations(annotatedElement, | ||
this.annotationClasses); | ||
return !annotations.isEmpty(); | ||
} | ||
|
||
} | ||
|
||
} |
50 changes: 50 additions & 0 deletions
50
...ringframework/security/config/annotation/method/configuration/MethodSecuritySelector.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
/* | ||
* Copyright 2002-2021 the original author or authors. | ||
* | ||
* Licensed 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 | ||
* | ||
* https://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.springframework.security.config.annotation.method.configuration; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import org.springframework.context.annotation.AdviceMode; | ||
import org.springframework.context.annotation.AdviceModeImportSelector; | ||
import org.springframework.context.annotation.AutoProxyRegistrar; | ||
|
||
/** | ||
* Dynamically determines which imports to include using the {@link EnableMethodSecurity} | ||
* annotation. | ||
* | ||
* @author Evgeniy Cheban | ||
* @since 5.5 | ||
*/ | ||
final class MethodSecuritySelector extends AdviceModeImportSelector<EnableMethodSecurity> { | ||
|
||
@Override | ||
protected String[] selectImports(AdviceMode adviceMode) { | ||
if (adviceMode == AdviceMode.PROXY) { | ||
return getProxyImports(); | ||
} | ||
throw new IllegalStateException("AdviceMode '" + adviceMode + "' is not supported"); | ||
} | ||
|
||
private String[] getProxyImports() { | ||
List<String> result = new ArrayList<>(); | ||
result.add(AutoProxyRegistrar.class.getName()); | ||
result.add(MethodSecurityConfiguration.class.getName()); | ||
return result.toArray(new String[0]); | ||
} | ||
|
||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.