查看原文
其他

前面的部分,我们关注了Spring Security是如何完成认证工作的,但是另外一部分核心的内容:过滤器,一直没有提到,我们已经知道Spring Security使用了springSecurityFillterChian作为了安全过滤的入口,这一节主要分析一下这个过滤器链都包含了哪些关键的过滤器,并且各自的使命是什么。

目录:

过滤器详解

4 过滤器详解

4.1 核心过滤器概述

由于过滤器链路中的过滤较多,即使是Spring Security的官方文档中也并未对所有的过滤器进行介绍,在之前,《Spring Security(二)--Guides》入门指南中我们配置了一个表单登录的demo,以此为例,来看看这过程中Spring Security都帮我们自动配置了哪些过滤器。

  1. Creating filter chain: o.s.s.web.util.matcher.AnyRequestMatcher@1,

  2. [o.s.s.web.context.SecurityContextPersistenceFilter@8851ce1,

  3. o.s.s.web.header.HeaderWriterFilter@6a472566, o.s.s.web.csrf.CsrfFilter@61cd1c71,

  4. o.s.s.web.authentication.logout.LogoutFilter@5e1d03d7,

  5. o.s.s.web.authentication.UsernamePasswordAuthenticationFilter@122d6c22,

  6. o.s.s.web.savedrequest.RequestCacheAwareFilter@5ef6fd7f,

  7. o.s.s.web.servletapi.SecurityContextHolderAwareRequestFilter@4beaf6bd,

  8. o.s.s.web.authentication.AnonymousAuthenticationFilter@6edcad64,

  9. o.s.s.web.session.SessionManagementFilter@5e65afb6,

  10. o.s.s.web.access.ExceptionTranslationFilter@5b9396d3,

  11. o.s.s.web.access.intercept.FilterSecurityInterceptor@3c5dbdf8

  12. ]

上述的log信息是我从springboot启动的日志中CV所得,spring security的过滤器日志有一个特点:log打印顺序与实际配置顺序符合,也就意味着 SecurityContextPersistenceFilter是整个过滤器链的第一个过滤器,而 FilterSecurityInterceptor则是末置的过滤器。另外通过观察过滤器的名称,和所在的包名,可以大致地分析出他们各自的作用,如 UsernamePasswordAuthenticationFilter明显便是与使用用户名和密码登录相关的过滤器,而 FilterSecurityInterceptor我们似乎看不出它的作用,但是其位于 web.access包下,大致可以分析出他与访问限制相关。第四篇文章主要就是介绍这些常用的过滤器,对其中关键的过滤器进行一些源码分析。先大致介绍下每个过滤器的作用:

其中加粗的过滤器可以被认为是Spring Security的核心过滤器,将在下面,一个过滤器对应一个小节来讲解。

4.2 SecurityContextPersistenceFilter

试想一下,如果我们不使用Spring Security,如果保存用户信息呢,大多数情况下会考虑使用Session对吧?在Spring Security中也是如此,用户在登录过一次之后,后续的访问便是通过sessionId来识别,从而认为用户已经被认证。具体在何处存放用户信息,便是第一篇文章中提到的SecurityContextHolder;认证相关的信息是如何被存放到其中的,便是通过SecurityContextPersistenceFilter。在4.1概述中也提到了,SecurityContextPersistenceFilter的两个主要作用便是请求来临时,创建 SecurityContext安全上下文信息和请求结束时清空 SecurityContextHolder。顺带提一下:微服务的一个设计理念需要实现服务通信的无状态,而http协议中的无状态意味着不允许存在session,这可以通过 setAllowSessionCreation(false) 实现,这并不意味着SecurityContextPersistenceFilter变得无用,因为它还需要负责清除用户信息。在Spring Security中,虽然安全上下文信息被存储于Session中,但我们在实际使用中不应该直接操作Session,而应当使用SecurityContextHolder。

源码分析

org.springframework.security.web.context.SecurityContextPersistenceFilter

  1. public class SecurityContextPersistenceFilter extends GenericFilterBean {

  2.   static final String FILTER_APPLIED = "__spring_security_scpf_applied";

  3.   //安全上下文存储的仓库

  4.   private SecurityContextRepository repo;

  5.   public SecurityContextPersistenceFilter() {

  6.      //HttpSessionSecurityContextRepository是SecurityContextRepository接口的一个实现类

  7.      //使用HttpSession来存储SecurityContext

  8.      this(new HttpSessionSecurityContextRepository());

  9.   }

  10.   public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain)

  11.         throws IOException, ServletException {

  12.      HttpServletRequest request = (HttpServletRequest) req;

  13.      HttpServletResponse response = (HttpServletResponse) res;

  14.      if (request.getAttribute(FILTER_APPLIED) != null) {

  15.         // ensure that filter is only applied once per request

  16.         chain.doFilter(request, response);

  17.         return;

  18.      }

  19.      request.setAttribute(FILTER_APPLIED, Boolean.TRUE);

  20.      //包装request,response

  21.      HttpRequestResponseHolder holder = new HttpRequestResponseHolder(request,

  22.            response);

  23.      //从Session中获取安全上下文信息

  24.      SecurityContext contextBeforeChainExecution = repo.loadContext(holder);

  25.      try {

  26.         //请求开始时,设置安全上下文信息,这样就避免了用户直接从Session中获取安全上下文信息

  27.         SecurityContextHolder.setContext(contextBeforeChainExecution);

  28.         chain.doFilter(holder.getRequest(), holder.getResponse());

  29.      }

  30.      finally {

  31.         //请求结束后,清空安全上下文信息

  32.         SecurityContext contextAfterChainExecution = SecurityContextHolder

  33.               .getContext();

  34.         SecurityContextHolder.clearContext();

  35.         repo.saveContext(contextAfterChainExecution, holder.getRequest(),

  36.               holder.getResponse());

  37.         request.removeAttribute(FILTER_APPLIED);

  38.         if (debug) {

  39.            logger.debug("SecurityContextHolder now cleared, as request processing completed");

  40.         }

  41.      }

  42.   }

  43. }

过滤器一般负责核心的处理流程,而具体的业务实现,通常交给其中聚合的其他实体类,这在Filter的设计中很常见,同时也符合职责分离模式。例如存储安全上下文和读取安全上下文的工作完全委托给了HttpSessionSecurityContextRepository去处理,而这个类中也有几个方法可以稍微解读下,方便我们理解内部的工作流程

org.springframework.security.web.context.HttpSessionSecurityContextRepository

  1. public class HttpSessionSecurityContextRepository implements SecurityContextRepository {

  2.   // 'SPRING_SECURITY_CONTEXT'是安全上下文默认存储在Session中的键值

  3.   public static final String SPRING_SECURITY_CONTEXT_KEY = "SPRING_SECURITY_CONTEXT";

  4.   ...

  5.   private final Object contextObject = SecurityContextHolder.createEmptyContext();

  6.   private boolean allowSessionCreation = true;

  7.   private boolean disableUrlRewriting = false;

  8.   private String springSecurityContextKey = SPRING_SECURITY_CONTEXT_KEY;

  9.   private AuthenticationTrustResolver trustResolver = new AuthenticationTrustResolverImpl();

  10.   //从当前request中取出安全上下文,如果session为空,则会返回一个新的安全上下文

  11.   public SecurityContext loadContext(HttpRequestResponseHolder requestResponseHolder) {

  12.      HttpServletRequest request = requestResponseHolder.getRequest();

  13.      HttpServletResponse response = requestResponseHolder.getResponse();

  14.      HttpSession httpSession = request.getSession(false);

  15.      SecurityContext context = readSecurityContextFromSession(httpSession);

  16.      if (context == null) {

  17.         context = generateNewContext();

  18.      }

  19.      ...

  20.      return context;

  21.   }

  22.   ...

  23.   public boolean containsContext(HttpServletRequest request) {

  24.      HttpSession session = request.getSession(false);

  25.      if (session == null) {

  26.         return false;

  27.      }

  28.      return session.getAttribute(springSecurityContextKey) != null;

  29.   }

  30.   private SecurityContext readSecurityContextFromSession(HttpSession httpSession) {

  31.      if (httpSession == null) {

  32.         return null;

  33.      }

  34.      ...

  35.      // Session存在的情况下,尝试获取其中的SecurityContext

  36.      Object contextFromSession = httpSession.getAttribute(springSecurityContextKey);

  37.      if (contextFromSession == null) {

  38.         return null;

  39.      }

  40.      ...

  41.      return (SecurityContext) contextFromSession;

  42.   }

  43.   //初次请求时创建一个新的SecurityContext实例

  44.   protected SecurityContext generateNewContext() {

  45.      return SecurityContextHolder.createEmptyContext();

  46.   }

  47. }

SecurityContextPersistenceFilter和HttpSessionSecurityContextRepository配合使用,构成了Spring Security整个调用链路的入口,为什么将它放在最开始的地方也是显而易见的,后续的过滤器中大概率会依赖Session信息和安全上下文信息。

4.3 UsernamePasswordAuthenticationFilter

表单认证是最常用的一个认证方式,一个最直观的业务场景便是允许用户在表单中输入用户名和密码进行登录,而这背后的UsernamePasswordAuthenticationFilter,在整个Spring Security的认证体系中则扮演着至关重要的角色。

上述的时序图,可以看出UsernamePasswordAuthenticationFilter主要肩负起了调用身份认证器,校验身份的作用,至于认证的细节,在前面几章花了很大篇幅进行了介绍,到这里,其实Spring Security的基本流程就已经走通了。

源码分析

org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter#attemptAuthentication

  1. public Authentication attemptAuthentication(HttpServletRequest request,

  2.      HttpServletResponse response) throws AuthenticationException {

  3.   //获取表单中的用户名和密码

  4.   String username = obtainUsername(request);

  5.   String password = obtainPassword(request);

  6.   ...

  7.   username = username.trim();

  8.   //组装成username+password形式的token

  9.   UsernamePasswordAuthenticationToken authRequest = new UsernamePasswordAuthenticationToken(

  10.         username, password);

  11.   // Allow subclasses to set the "details" property

  12.   setDetails(request, authRequest);

  13.   //交给内部的AuthenticationManager去认证,并返回认证信息

  14.   return this.getAuthenticationManager().authenticate(authRequest);

  15. }

UsernamePasswordAuthenticationFilter本身的代码只包含了上述这么一个方法,非常简略,而在其父类 AbstractAuthenticationProcessingFilter中包含了大量的细节,值得我们分析:

  1. public abstract class AbstractAuthenticationProcessingFilter extends GenericFilterBean

  2.      implements ApplicationEventPublisherAware, MessageSourceAware {

  3.    //包含了一个身份认证器

  4.    private AuthenticationManager authenticationManager;

  5.    //用于实现remeberMe

  6.    private RememberMeServices rememberMeServices = new NullRememberMeServices();

  7.    private RequestMatcher requiresAuthenticationRequestMatcher;

  8.    //这两个Handler很关键,分别代表了认证成功和失败相应的处理器

  9.    private AuthenticationSuccessHandler successHandler = new SavedRequestAwareAuthenticationSuccessHandler();

  10.    private AuthenticationFailureHandler failureHandler = new SimpleUrlAuthenticationFailureHandler();

  11.    public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain)

  12.            throws IOException, ServletException {

  13.        HttpServletRequest request = (HttpServletRequest) req;

  14.        HttpServletResponse response = (HttpServletResponse) res;

  15.        ...

  16.        Authentication authResult;

  17.        try {

  18.            //此处实际上就是调用UsernamePasswordAuthenticationFilter的attemptAuthentication方法

  19.            authResult = attemptAuthentication(request, response);

  20.            if (authResult == null) {

  21.                //子类未完成认证,立刻返回

  22.                return;

  23.            }

  24.            sessionStrategy.onAuthentication(authResult, request, response);

  25.        }

  26.        //在认证过程中可以直接抛出异常,在过滤器中,就像此处一样,进行捕获

  27.        catch (InternalAuthenticationServiceException failed) {

  28.            //内部服务异常

  29.            unsuccessfulAuthentication(request, response, failed);

  30.            return;

  31.        }

  32.        catch (AuthenticationException failed) {

  33.            //认证失败

  34.            unsuccessfulAuthentication(request, response, failed);

  35.            return;

  36.        }

  37.        //认证成功

  38.        if (continueChainBeforeSuccessfulAuthentication) {

  39.            chain.doFilter(request, response);

  40.        }

  41.        //注意,认证成功后过滤器把authResult结果也传递给了成功处理器

  42.        successfulAuthentication(request, response, chain, authResult);

  43.    }

  44. }

整个流程理解起来也并不难,主要就是内部调用了authenticationManager完成认证,根据认证结果执行successfulAuthentication或者unsuccessfulAuthentication,无论成功失败,一般的实现都是转发或者重定向等处理,不再细究AuthenticationSuccessHandler和AuthenticationFailureHandler,有兴趣的朋友,可以去看看两者的实现类。

4.4 AnonymousAuthenticationFilter

匿名认证过滤器,可能有人会想:匿名了还有身份?我自己对于Anonymous匿名身份的理解是Spirng Security为了整体逻辑的统一性,即使是未通过认证的用户,也给予了一个匿名身份。而 AnonymousAuthenticationFilter该过滤器的位置也是非常的科学的,它位于常用的身份认证过滤器(如 UsernamePasswordAuthenticationFilter、 BasicAuthenticationFilter、 RememberMeAuthenticationFilter)之后,意味着只有在上述身份过滤器执行完毕后,SecurityContext依旧没有用户信息, AnonymousAuthenticationFilter该过滤器才会有意义----基于用户一个匿名身份。

源码分析

org.springframework.security.web.authentication.AnonymousAuthenticationFilter

  1. public class AnonymousAuthenticationFilter extends GenericFilterBean implements

  2.      InitializingBean {

  3.   private AuthenticationDetailsSource<HttpServletRequest, ?> authenticationDetailsSource = new WebAuthenticationDetailsSource();

  4.   private String key;

  5.   private Object principal;

  6.   private List<GrantedAuthority> authorities;

  7.   //自动创建一个"anonymousUser"的匿名用户,其具有ANONYMOUS角色

  8.   public AnonymousAuthenticationFilter(String key) {

  9.      this(key, "anonymousUser", AuthorityUtils.createAuthorityList("ROLE_ANONYMOUS"));

  10.   }

  11.   /**

  12.    *

  13.    * @param key key用来识别该过滤器创建的身份

  14.    * @param principal principal代表匿名用户的身份

  15.    * @param authorities authorities代表匿名用户的权限集合

  16.    */

  17.   public AnonymousAuthenticationFilter(String key, Object principal,

  18.         List<GrantedAuthority> authorities) {

  19.      Assert.hasLength(key, "key cannot be null or empty");

  20.      Assert.notNull(principal, "Anonymous authentication principal must be set");

  21.      Assert.notNull(authorities, "Anonymous authorities must be set");

  22.      this.key = key;

  23.      this.principal = principal;

  24.      this.authorities = authorities;

  25.   }

  26.   ...

  27.   public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain)

  28.         throws IOException, ServletException {

  29.      //过滤器链都执行到匿名认证过滤器这儿了还没有身份信息,塞一个匿名身份进去

  30.      if (SecurityContextHolder.getContext().getAuthentication() == null) {

  31.         SecurityContextHolder.getContext().setAuthentication(

  32.               createAuthentication((HttpServletRequest) req));

  33.      }

  34.      chain.doFilter(req, res);

  35.   }

  36.   protected Authentication createAuthentication(HttpServletRequest request) {

  37.     //创建一个AnonymousAuthenticationToken

  38.      AnonymousAuthenticationToken auth = new AnonymousAuthenticationToken(key,

  39.            principal, authorities);

  40.      auth.setDetails(authenticationDetailsSource.buildDetails(request));

  41.      return auth;

  42.   }

  43.   ...

  44. }

其实对比AnonymousAuthenticationFilter和UsernamePasswordAuthenticationFilter就可以发现一些门道了,UsernamePasswordAuthenticationToken对应AnonymousAuthenticationToken,他们都是Authentication的实现类,而Authentication则是被SecurityContextHolder(SecurityContext)持有的,一切都被串联在了一起。

4.5 ExceptionTranslationFilter

ExceptionTranslationFilter异常转换过滤器位于整个springSecurityFilterChain的后方,用来转换整个链路中出现的异常,将其转化,顾名思义,转化以意味本身并不处理。一般其只处理两大类异常:AccessDeniedException访问异常和AuthenticationException认证异常。

这个过滤器非常重要,因为它将Java中的异常和HTTP的响应连接在了一起,这样在处理异常时,我们不用考虑密码错误该跳到什么页面,账号锁定该如何,只需要关注自己的业务逻辑,抛出相应的异常便可。如果该过滤器检测到AuthenticationException,则将会交给内部的AuthenticationEntryPoint去处理,如果检测到AccessDeniedException,需要先判断当前用户是不是匿名用户,如果是匿名访问,则和前面一样运行AuthenticationEntryPoint,否则会委托给AccessDeniedHandler去处理,而AccessDeniedHandler的默认实现,是AccessDeniedHandlerImpl。所以ExceptionTranslationFilter内部的AuthenticationEntryPoint是至关重要的,顾名思义:认证的入口点。

源码分析

  1. public class ExceptionTranslationFilter extends GenericFilterBean {

  2.  //处理异常转换的核心方法

  3.  private void handleSpringSecurityException(HttpServletRequest request,

  4.        HttpServletResponse response, FilterChain chain, RuntimeException exception)

  5.        throws IOException, ServletException {

  6.     if (exception instanceof AuthenticationException) {

  7.           //重定向到登录端点

  8.        sendStartAuthentication(request, response, chain,

  9.              (AuthenticationException) exception);

  10.     }

  11.     else if (exception instanceof AccessDeniedException) {

  12.        Authentication authentication = SecurityContextHolder.getContext().getAuthentication();

  13.        if (authenticationTrustResolver.isAnonymous(authentication) || authenticationTrustResolver.isRememberMe(authentication)) {

  14.          //重定向到登录端点

  15.           sendStartAuthentication(

  16.                 request,

  17.                 response,

  18.                 chain,

  19.                 new InsufficientAuthenticationException(

  20.                       "Full authentication is required to access this resource"));

  21.        }

  22.        else {

  23.           //交给accessDeniedHandler处理

  24.           accessDeniedHandler.handle(request, response,

  25.                 (AccessDeniedException) exception);

  26.        }

  27.     }

  28.  }

  29. }

剩下的便是要搞懂AuthenticationEntryPoint和AccessDeniedHandler就可以了。

选择了几个常用的登录端点,以其中第一个为例来介绍,看名字就能猜到是认证失败之后,让用户跳转到登录页面。还记得我们一开始怎么配置表单登录页面的吗?

  1. @Configuration

  2. @EnableWebSecurity

  3. public class WebSecurityConfig extends WebSecurityConfigurerAdapter {

  4.    @Override

  5.    protected void configure(HttpSecurity http) throws Exception {

  6.        http

  7.            .authorizeRequests()

  8.                .antMatchers("/", "/home").permitAll()

  9.                .anyRequest().authenticated()

  10.                .and()

  11.            .formLogin()//FormLoginConfigurer

  12.                .loginPage("/login")

  13.                .permitAll()

  14.                .and()

  15.            .logout()

  16.                .permitAll();

  17.    }

  18. }

我们顺着formLogin返回的FormLoginConfigurer往下找,看看能发现什么,最终在FormLoginConfigurer的父类AbstractAuthenticationFilterConfigurer中有了不小的收获:

  1. public abstract class AbstractAuthenticationFilterConfigurer extends ...{

  2.   ...

  3.   //formLogin不出所料配置了AuthenticationEntryPoint

  4.   private LoginUrlAuthenticationEntryPoint authenticationEntryPoint;

  5.   //认证失败的处理器

  6.   private AuthenticationFailureHandler failureHandler;

  7.   ...

  8. }

具体如何配置的就不看了,我们得出了结论,formLogin()配置了之后最起码做了两件事,其一,为UsernamePasswordAuthenticationFilter设置了相关的配置,其二配置了AuthenticationEntryPoint。

登录端点还有Http401AuthenticationEntryPoint,Http403ForbiddenEntryPoint这些都是很简单的实现,有时候我们访问受限页面,又没有配置登录,就看到了一个空荡荡的默认错误页面,上面显示着401,403,就是这两个入口起了作用。

还剩下一个AccessDeniedHandler访问决策器未被讲解,简单提一下:AccessDeniedHandlerImpl这个默认实现类会根据errorPage和状态码来判断,最终决定跳转的页面

org.springframework.security.web.access.AccessDeniedHandlerImpl#handle

  1. public void handle(HttpServletRequest request, HttpServletResponse response,

  2.      AccessDeniedException accessDeniedException) throws IOException,

  3.      ServletException {

  4.   if (!response.isCommitted()) {

  5.      if (errorPage != null) {

  6.         // Put exception into request scope (perhaps of use to a view)

  7.         request.setAttribute(WebAttributes.ACCESS_DENIED_403,

  8.               accessDeniedException);

  9.         // Set the 403 status code.

  10.         response.setStatus(HttpServletResponse.SC_FORBIDDEN);

  11.         // forward to error page.

  12.         RequestDispatcher dispatcher = request.getRequestDispatcher(errorPage);

  13.         dispatcher.forward(request, response);

  14.      }

  15.      else {

  16.         response.sendError(HttpServletResponse.SC_FORBIDDEN,

  17.               accessDeniedException.getMessage());

  18.      }

  19.   }

  20. }

4.6 FilterSecurityInterceptor

想想整个认证安全控制流程还缺了什么?我们已经有了认证,有了请求的封装,有了Session的关联...还缺一个:由什么控制哪些资源是受限的,这些受限的资源需要什么权限,需要什么角色...这一切和访问控制相关的操作,都是由FilterSecurityInterceptor完成的。

FilterSecurityInterceptor的工作流程用笔者的理解可以理解如下:FilterSecurityInterceptor从SecurityContextHolder中获取Authentication对象,然后比对用户拥有的权限和资源所需的权限。前者可以通过Authentication对象直接获得,而后者则需要引入我们之前一直未提到过的两个类:SecurityMetadataSource,AccessDecisionManager。理解清楚决策管理器的整个创建流程和SecurityMetadataSource的作用需要花很大一笔功夫,这里,暂时只介绍其大概的作用。

在JavaConfig的配置中,我们通常如下配置路径的访问控制:

  1. @Override

  2. protected void configure(HttpSecurity http) throws Exception {

  3.    http

  4.        .authorizeRequests()

  5.            .antMatchers("/resources/**", "/signup", "/about").permitAll()

  6.             .antMatchers("/admin/**").hasRole("ADMIN")

  7.             .antMatchers("/db/**").access("hasRole('ADMIN') and hasRole('DBA')")

  8.             .anyRequest().authenticated()

  9.            .withObjectPostProcessor(new ObjectPostProcessor<FilterSecurityInterceptor>() {

  10.                public <O extends FilterSecurityInterceptor> O postProcess(

  11.                        O fsi) {

  12.                    fsi.setPublishAuthorizationSuccess(true);

  13.                    return fsi;

  14.                }

  15.            });

  16. }

在ObjectPostProcessor的泛型中看到了FilterSecurityInterceptor,以笔者的经验,目前并没有太多机会需要修改FilterSecurityInterceptor的配置。

总结

本篇文章在介绍过滤器时,顺便进行了一些源码的分析,目的是方便理解整个Spring Security的工作流。伴随着整个过滤器链的介绍,安全框架的轮廓应该已经浮出水面了,下面的章节,主要打算通过自定义一些需求,再次分析其他组件的源码,学习应该如何改造Spring Security,为我们所用。


您可能也对以下帖子感兴趣

文章有问题?点此查看未经处理的缓存