[TIL] Spring Security Autentication의 아키텍처 및 동작원리

썸머·2022년 11월 16일
0

TIL(Today I Learn)

목록 보기
3/3

Spring Security란?

spring security는 Spring 기반의 애플리케이션의 보안을 담당하는 스프링 하위 프레임워크이다.

  • 인증: 해당 사용자가 본인이 맞는지를 확인하는 절차
  • 인가: 인증된 사용자가 요청한 자원에 접근 가능한지를 결정하는 절차

Spring Security 인증관련 아키텍쳐(기본적인 폼 로그인의 경우)


1. SecurityContextHolder

보안 주체의 세부 정보를 포함하여 응용프로그램의 현재 보안 컨텍스트에 대한 세부 정보가 저장된다.

2. SecurityContext

Authentication을 보관하는 역할을 하며, SecurityContext를 통해 Authentication 객체를 꺼내올 수 있다.

3. Authentication

현재 접근하는 주체의 정보와 권한을 담는 인터페이스이다. AUthentication 객체는 Security Context에 저장된다.

4. UsernamePasswordAuthenticationToken

Authentication을 implements한 AbstractAuthenticationToken의 하위 클래스이다. 첫번째 생성자는 인증전의 객체를 생성하고, 두번째 생성자는 인증이 완료된 객체를 생성한다.

5. AuthenticationProvider

실제 인증에 대한 부분을 처리하는데, 인증 전의 Authentication 객체를 받아서 인증이 완료된 객체를 반환하는 역할을 한다.

6. Authentication Manager

인증에 대한 부분은 SpringSecurity의 AuthenticatonManager를 통해서 처리하게 되는데, 실질적으로는 AuthenticationManager에 등록된 AuthenticationProvider에 의해 처리된다.

7. UserDetails

인증에 성공하여 생성된 UserDetails 객체는 Authentication객체를 구현한 UsernamePasswordAuthenticationToken을 생성하기 위해 사용된다. UserDetails 인터페이스를 살펴보면 아래와 같이 정보를 반환하는 메소드를 가지고 있다.

세션에는 Authentication 객체만 들어갈 수 있기 때문이다.

8. UserDetailsService

UserDetailsService 인터페이스는 UserDetails 객체를 반환하는 단 하나의 메소드를 가지고 있는데, 일반적으로 이를 구현한 클래스의 내부에 UserRepository를 주입받아 DB와 연결하여 처리한다.

AuthenticationProvider에서 인증을 처리하기 위해 UserDetailsService메소드가 사용된다.

9. Password Encoding

AuthenticationManagerBuilder.userDetailsService().passwordEncoder() 를 통해 패스워드 암호화에 사용될 PasswordEncoder 구현체를 지정할 수 있다.

10. GrantedAuthority

GrantAuthority는 현재 사용자(principal)가 가지고 있는 권한을 의미한다. ROLEADMIN나 ROLE_USER와 같이 ROLE*의 형태로 사용하며, 보통 "roles" 이라고 한다. GrantedAuthority 객체는 UserDetailsService에 의해 불러올 수 있고, 특정 자원에 대한 권한이 있는지를 검사하여 접근 허용 여부를 결정한다.

정리

  1. 사용자는 로그인 하기 위해 아이디와 비밀번호를 입력해서 로그인 요청을 한다.

  2. 전송이 오면 AuthenticationFilter로 요청이 먼저오고, 아이디와 비밀번호를 기반으로 UserPasswordAuthenticationToken을 발급해준다.

  3. AuthenticationManager는 전달받은 UsernamePasswordToken을 순차적으로 AuthenticationProvider들에게 전달하여 실제 인증의 과정을 수행한다.

  4. AuthenticationProvider는 화면에서 입력한 로그인 정보와 DB에서 가져온 사용자의 정보를 비교해주는 역할을 한다. 이는 UserDetailsService인터페이스에서 loadUserByUsername() 메서드를 이용한다.

  5. AuthenticationProvider에서 UserDetailsService를 통해 조회한 정보와 입력받은 비밀번호가 일치하는지 확인하여, 일치한다면 인증된 토큰을 생성하여 반환해주어야 한다.

    시큐리티 세션 안에는 Authentication 객체만 들어간다. 따라서 Authentication 내부에 반환된 UserDetails 타입을 넣는다.

  6. AuthenticationProvider에서 인증이 완료된 UsernamePasswordAuthenticationTokentAuthenticationFilter로 반환하고 AuthenticationFilter에서는 LoginSuccessHandler로 전달한다.

  7. LoginSuccessHandler로 넘어온 Authentication 객체를 SecurityContextHolder에 저장하면 인증 과정이 끝나게 된다.

  8. 로그인이 성공하고 나면 SecurityContextHolder라는 세션을 활용하여 저장하기 때문에 1번만 로그인 하면 로그인이 필요한 페이지들에 바로 접근할 수 있다.

인증 성공시 or 실패시

profile
썸머의 개발블로그

0개의 댓글