104 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| """passbook policy engine"""
 | |
| from multiprocessing import Pipe, set_start_method
 | |
| from multiprocessing.connection import Connection
 | |
| from typing import List, Optional, Tuple
 | |
| 
 | |
| from django.core.cache import cache
 | |
| from django.http import HttpRequest
 | |
| from structlog import get_logger
 | |
| 
 | |
| from passbook.core.models import Policy, User
 | |
| from passbook.policies.process import PolicyProcess, cache_key
 | |
| from passbook.policies.types import PolicyRequest, PolicyResult
 | |
| 
 | |
| LOGGER = get_logger()
 | |
| # This is only really needed for macOS, because Python 3.8 changed the default to spawn
 | |
| # spawn causes issues with objects that aren't picklable, and also the django setup
 | |
| set_start_method("fork")
 | |
| 
 | |
| 
 | |
| class PolicyProcessInfo:
 | |
|     """Dataclass to hold all information and communication channels to a process"""
 | |
| 
 | |
|     process: PolicyProcess
 | |
|     connection: Connection
 | |
|     result: Optional[PolicyResult]
 | |
|     policy: Policy
 | |
| 
 | |
|     def __init__(self, process: PolicyProcess, connection: Connection, policy: Policy):
 | |
|         self.process = process
 | |
|         self.connection = connection
 | |
|         self.policy = policy
 | |
|         self.result = None
 | |
| 
 | |
| 
 | |
| class PolicyEngine:
 | |
|     """Orchestrate policy checking, launch tasks and return result"""
 | |
| 
 | |
|     use_cache: bool = True
 | |
|     policies: List[Policy] = []
 | |
|     request: PolicyRequest
 | |
| 
 | |
|     __cached_policies: List[PolicyResult]
 | |
|     __processes: List[PolicyProcessInfo]
 | |
| 
 | |
|     def __init__(self, policies, user: User, request: HttpRequest = None):
 | |
|         self.policies = policies
 | |
|         self.request = PolicyRequest(user)
 | |
|         if request:
 | |
|             self.request.http_request = request
 | |
|         self.__cached_policies = []
 | |
|         self.__processes = []
 | |
| 
 | |
|     def _select_subclasses(self) -> List[Policy]:
 | |
|         """Make sure all Policies are their respective classes"""
 | |
|         return (
 | |
|             Policy.objects.filter(pk__in=[x.pk for x in self.policies])
 | |
|             .select_subclasses()
 | |
|             .order_by("order")
 | |
|         )
 | |
| 
 | |
|     def build(self) -> "PolicyEngine":
 | |
|         """Build task group"""
 | |
|         for policy in self._select_subclasses():
 | |
|             cached_policy = cache.get(cache_key(policy, self.request.user), None)
 | |
|             if cached_policy and self.use_cache:
 | |
|                 LOGGER.debug("P_ENG: Taking result from cache", policy=policy)
 | |
|                 self.__cached_policies.append(cached_policy)
 | |
|                 continue
 | |
|             LOGGER.debug("P_ENG: Evaluating policy", policy=policy)
 | |
|             our_end, task_end = Pipe(False)
 | |
|             task = PolicyProcess(policy, self.request, task_end)
 | |
|             LOGGER.debug("P_ENG: Starting Process", policy=policy)
 | |
|             task.start()
 | |
|             self.__processes.append(
 | |
|                 PolicyProcessInfo(process=task, connection=our_end, policy=policy)
 | |
|             )
 | |
|         # If all policies are cached, we have an empty list here.
 | |
|         for proc_info in self.__processes:
 | |
|             proc_info.process.join(proc_info.policy.timeout)
 | |
|             # Only call .recv() if no result is saved, otherwise we just deadlock here
 | |
|             if not proc_info.result:
 | |
|                 proc_info.result = proc_info.connection.recv()
 | |
|         return self
 | |
| 
 | |
|     @property
 | |
|     def result(self) -> Tuple[bool, List[str]]:
 | |
|         """Get policy-checking result"""
 | |
|         messages: List[str] = []
 | |
|         process_results: List[PolicyResult] = [
 | |
|             x.result for x in self.__processes if x.result
 | |
|         ]
 | |
|         for result in process_results + self.__cached_policies:
 | |
|             LOGGER.debug("P_ENG: result", passing=result.passing)
 | |
|             if result.messages:
 | |
|                 messages += result.messages
 | |
|             if not result.passing:
 | |
|                 return False, messages
 | |
|         return True, messages
 | |
| 
 | |
|     @property
 | |
|     def passing(self) -> bool:
 | |
|         """Only get true/false if user passes"""
 | |
|         return self.result[0]
 | 
