IDM Model Subsystem

Last modified 08 Feb 2024 16:58 +01:00
OUTDATED
This page is outdated, it contains information that was not updated in a long time. The described functionality may or may not work. Do not rely on information provided on this page.

Introduction

IDM Model subsystem implements the theoretical security and access control model that is applied to the system. It implements logic to synchronize users and accounts, fill in the missing values, validate existing values, direct the propagation of changes and so on. Generally speaking, it is enforcing overall identity management policy. IDM Model is the real heart of the system.

Currently the IDM model evaluates a set of expressions that can be used to guide provisioning and synchronization. Later the model will implement a dynamic variant of Role-Based Access Control (RBAC) model. The IDM Model is theoretically replaceable with entirely different implementation, bringing quite an extreme flexibility to the system.

Responsibility

  • Hiding the low-level components behind a single facade

    • The distinction between repository and provisioning is partially hidden from the clients therefore model provides a kind of location transparency.

    • Provisioning functionality is not be exposed directly. The provisioning actions are carried out by a modification of user or account object. Therefore the model provides (partial) uniformity of access to all objects.

  • Enforce access control policies (with respect to target resources)

    • RBAC-based models will maintain roles, their definitions, etc.

    • RBAC-based models will enforce creation/deletion of accounts based on role membership

    • RBAC-based models may enforce account attributes based on role membership

    • the model may implement any mechanism to enforce policies (RuBAC, ABAC, …​) as long as it is usable and consistent.

  • Only one model can be active in a specific deployment (models cannot be mixed in the same system)

  • Maintain values of virtual attributes

    • e.g. attributes implied by role membership, organization, policy, …​

  • Handle synchronization changes

  • Manage reconciliation

Component Diagram

IDM Model Subsystem

Data Structures

The objects defined in the IDM Model Schema is specific for IDM model component. However, it is also using other parts of the Data Model, especially the dynamic Resource Schema. IDM model is interpreting the schema and also evaluating the expressions specified in the Resource Schema Handling part.

One of the most important data model concepts that is processed by IDM model is a concept of Assignment.

Description

Model is the very core of midPoint with regard to the "identity logic". Model is dealing with all the algorithms and processes that are specific to identity management domain, common for all the resources and vast majority of deployments. Therefore Model implements mechanisms like attribute value computation, RBAC, handles synchronization changes, etc.

Current implementation of the model is quite simplistic one. It is only processing Inbound and Outbound Expressions and handles Synchronization Examples. RBAC or other "advanced" mechanisms are not yet implemented.

From the implementation perspective the IDM model is a monolithic component now, but that should change soon MID-67.

Role-Based Access Control

There is no RBAC implementation in the midPoint now. It is designed (see Advanced Hybrid RBAC) and the implementation awaits prioritization in the Roadmap.

IDM Model and Busines Logic

REST API is probably an interface that will often used by business logic to invoke provisioning operations. This can be used in case that midPoint is a provisioning component of a more complex solution. However, there are limits to this usage. For example an "approval" scenario commonly seen in the IDM deployments may be quite difficult to implement in this way.

Current design is documented in the System Interactions section.

Currently there is no practical way how to integrate business logic into the IDM model component. But that should change in the future MID-68

Replacing the Model

The complete IDM Model component is theoretically replaceable - it can be exchanged for a different implementation if needed. However, as the IDM model implements mechanisms common to vast majority of IDM deployments, we expect that this may happen only in a very extreme case.

Please note that both business logic and GUI depends on the model. Therefore replacing the model may break both default GUI and default business logic.

Was this page helpful?
YES NO
Thanks for your feedback