
org.keycloak.authorization.AuthorizationProvider Maven / Gradle / Ivy
/*
* Copyright 2022 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* 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
*
* http://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.keycloak.authorization;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.function.Consumer;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import org.keycloak.authorization.model.PermissionTicket;
import org.keycloak.authorization.model.Policy;
import org.keycloak.authorization.model.Resource;
import org.keycloak.authorization.model.ResourceServer;
import org.keycloak.authorization.model.Scope;
import org.keycloak.authorization.permission.evaluator.Evaluators;
import org.keycloak.authorization.policy.evaluation.PolicyEvaluator;
import org.keycloak.authorization.policy.provider.PolicyProvider;
import org.keycloak.authorization.policy.provider.PolicyProviderFactory;
import org.keycloak.authorization.store.PermissionTicketStore;
import org.keycloak.authorization.store.PolicyStore;
import org.keycloak.authorization.store.ResourceServerStore;
import org.keycloak.authorization.store.ResourceStore;
import org.keycloak.authorization.store.ScopeStore;
import org.keycloak.authorization.store.StoreFactory;
import org.keycloak.models.KeycloakSession;
import org.keycloak.models.RealmModel;
import org.keycloak.models.cache.authorization.CachedStoreFactoryProvider;
import org.keycloak.models.utils.RepresentationToModel;
import org.keycloak.provider.Provider;
import org.keycloak.representations.idm.authorization.AbstractPolicyRepresentation;
/**
* The main contract here is the creation of {@link org.keycloak.authorization.permission.evaluator.PermissionEvaluator} instances. Usually
* an application has a single {@link AuthorizationProvider} instance and threads servicing client requests obtain {@link org.keycloak.authorization.permission.evaluator.PermissionEvaluator}
* from the {@link #evaluators()} method.
*
*
The internal state of a {@link AuthorizationProvider} is immutable. This internal state includes all of the metadata
* used during the evaluation of policies.
*
*
Once created, {@link org.keycloak.authorization.permission.evaluator.PermissionEvaluator} instances can be obtained from the {@link #evaluators()} method:
*
*
* List permissionsToEvaluate = getPermissions(); // the permissions to evaluate
* EvaluationContext evaluationContext = createEvaluationContext(); // the context with runtime environment information
* PermissionEvaluator evaluator = authorization.evaluators().from(permissionsToEvaluate, context);
*
* evaluator.evaluate(new Decision() {
*
* public void onDecision(Evaluation evaluation) {
* // do something on grant
* }
*
* });
*
*
* @author Pedro Igor
*/
public final class AuthorizationProvider implements Provider {
private final PolicyEvaluator policyEvaluator;
private StoreFactory storeFactory;
private StoreFactory storeFactoryDelegate;
private final KeycloakSession keycloakSession;
private final RealmModel realm;
public AuthorizationProvider(KeycloakSession session, RealmModel realm, PolicyEvaluator policyEvaluator) {
this.keycloakSession = session;
this.realm = realm;
this.policyEvaluator = policyEvaluator;
}
/**
* Returns a {@link Evaluators} instance from where {@link org.keycloak.authorization.policy.evaluation.PolicyEvaluator} instances
* can be obtained.
*
* @return a {@link Evaluators} instance
*/
public Evaluators evaluators() {
return new Evaluators(this);
}
/**
* Cache sits in front of this
*
* Returns a {@link StoreFactory}.
*
* @return the {@link StoreFactory}
*/
public StoreFactory getStoreFactory() {
if (storeFactory != null) return storeFactory;
storeFactory = keycloakSession.getProvider(CachedStoreFactoryProvider.class);
if (storeFactory == null) storeFactory = getLocalStoreFactory();
storeFactory = createStoreFactory(storeFactory);
return storeFactory;
}
/**
* No cache sits in front of this
*
* @return
*/
public StoreFactory getLocalStoreFactory() {
if (storeFactoryDelegate != null) return storeFactoryDelegate;
storeFactoryDelegate = keycloakSession.getProvider(StoreFactory.class);
return storeFactoryDelegate;
}
/**
* Returns the registered {@link PolicyProviderFactory}.
*
* @return a {@link Stream} containing all registered {@link PolicyProviderFactory}
*/
public Stream getProviderFactoriesStream() {
return keycloakSession.getKeycloakSessionFactory().getProviderFactoriesStream(PolicyProvider.class)
.map(PolicyProviderFactory.class::cast);
}
/**
* Returns a {@link PolicyProviderFactory} given a type
.
*
* @param type the type of the policy provider
* @return a {@link PolicyProviderFactory} with the given type
*/
public PolicyProviderFactory getProviderFactory(String type) {
return (PolicyProviderFactory) keycloakSession.getKeycloakSessionFactory().getProviderFactory(PolicyProvider.class, type);
}
/**
* Returns a {@link PolicyProviderFactory} given a type
.
*
* @param type the type of the policy provider
* @param the expected type of the provider
* @return a {@link PolicyProvider} with the given type
*/
public
P getProvider(String type) {
PolicyProviderFactory policyProviderFactory = getProviderFactory(type);
if (policyProviderFactory == null) {
return null;
}
return (P) policyProviderFactory.create(this);
}
public KeycloakSession getKeycloakSession() {
return this.keycloakSession;
}
public RealmModel getRealm() {
return realm;
}
public PolicyEvaluator getPolicyEvaluator() {
return policyEvaluator;
}
@Override
public void close() {
}
private StoreFactory createStoreFactory(StoreFactory storeFactory) {
return new StoreFactory() {
ResourceStore resourceStore;
ScopeStore scopeStore;
PolicyStore policyStore;
@Override
public ResourceStore getResourceStore() {
if (resourceStore == null) {
resourceStore = createResourceStoreWrapper(storeFactory);
}
return resourceStore;
}
@Override
public ResourceServerStore getResourceServerStore() {
return storeFactory.getResourceServerStore();
}
@Override
public ScopeStore getScopeStore() {
if (scopeStore == null) {
scopeStore = createScopeWrapper(storeFactory);
}
return scopeStore;
}
@Override
public PolicyStore getPolicyStore() {
if (policyStore == null) {
policyStore = createPolicyWrapper(storeFactory);
}
return policyStore;
}
@Override
public PermissionTicketStore getPermissionTicketStore() {
return storeFactory.getPermissionTicketStore();
}
@Override
public void close() {
storeFactory.close();
}
@Override
public void setReadOnly(boolean readOnly) {
storeFactory.setReadOnly(readOnly);
}
@Override
public boolean isReadOnly() {
return storeFactory.isReadOnly();
}
};
}
private ScopeStore createScopeWrapper(StoreFactory storeFactory) {
return new ScopeStore() {
ScopeStore delegate = storeFactory.getScopeStore();
@Override
public Scope create(ResourceServer resourceServer, String name) {
return delegate.create(resourceServer, name);
}
@Override
public Scope create(ResourceServer resourceServer, String id, String name) {
return delegate.create(resourceServer, id, name);
}
@Override
public void delete(String id) {
Scope scope = findById(null, id);
PermissionTicketStore ticketStore = AuthorizationProvider.this.getStoreFactory().getPermissionTicketStore();
List permissions = ticketStore.findByScope(scope.getResourceServer(), scope);
for (PermissionTicket permission : permissions) {
ticketStore.delete(permission.getId());
}
delegate.delete(id);
}
@Override
public Scope findById(ResourceServer resourceServer, String id) {
return delegate.findById(resourceServer, id);
}
@Override
public Scope findByName(ResourceServer resourceServer, String name) {
return delegate.findByName(resourceServer, name);
}
@Override
public List findByResourceServer(ResourceServer resourceServer) {
return delegate.findByResourceServer(resourceServer);
}
@Override
public List findByResourceServer(ResourceServer resourceServer, Map attributes, Integer firstResult, Integer maxResults) {
return delegate.findByResourceServer(resourceServer, attributes, firstResult, maxResults);
}
};
}
private PolicyStore createPolicyWrapper(StoreFactory storeFactory) {
return new PolicyStore() {
PolicyStore policyStore = storeFactory.getPolicyStore();
@Override
public Policy create(ResourceServer resourceServer, AbstractPolicyRepresentation representation) {
Set resources = representation.getResources();
if (resources != null) {
representation.setResources(resources.stream().map(id -> {
Resource resource = storeFactory.getResourceStore().findById(resourceServer, id);
if (resource == null) {
resource = storeFactory.getResourceStore().findByName(resourceServer, id);
}
if (resource == null) {
throw new RuntimeException("Resource [" + id + "] does not exist or is not owned by the resource server.");
}
return resource.getId();
}).collect(Collectors.toSet()));
}
Set scopes = representation.getScopes();
if (scopes != null) {
representation.setScopes(scopes.stream().map(id -> {
Scope scope = storeFactory.getScopeStore().findById(resourceServer, id);
if (scope == null) {
scope = storeFactory.getScopeStore().findByName(resourceServer, id);
}
if (scope == null) {
throw new RuntimeException("Scope [" + id + "] does not exist");
}
return scope.getId();
}).collect(Collectors.toSet()));
}
Set policies = representation.getPolicies();
if (policies != null) {
representation.setPolicies(policies.stream().map(id -> {
Policy policy = storeFactory.getPolicyStore().findById(resourceServer, id);
if (policy == null) {
policy = storeFactory.getPolicyStore().findByName(resourceServer, id);
}
if (policy == null) {
throw new RuntimeException("Policy [" + id + "] does not exist");
}
return policy.getId();
}).collect(Collectors.toSet()));
}
return RepresentationToModel.toModel(representation, AuthorizationProvider.this, policyStore.create(resourceServer, representation));
}
@Override
public void delete(String id) {
Policy policy = findById(null, id);
if (policy != null) {
ResourceServer resourceServer = policy.getResourceServer();
// if uma policy (owned by a user) also remove associated policies
if (policy.getOwner() != null) {
for (Policy associatedPolicy : policy.getAssociatedPolicies()) {
// only remove associated policies created from the policy being deleted
if (associatedPolicy.getOwner() != null) {
policy.removeAssociatedPolicy(associatedPolicy);
policyStore.delete(associatedPolicy.getId());
}
}
}
findDependentPolicies(resourceServer, policy.getId()).forEach(dependentPolicy -> {
dependentPolicy.removeAssociatedPolicy(policy);
if (dependentPolicy.getAssociatedPolicies().isEmpty()) {
delete(dependentPolicy.getId());
}
});
policyStore.delete(id);
}
}
@Override
public Policy findById(ResourceServer resourceServer, String id) {
return policyStore.findById(resourceServer, id);
}
@Override
public Policy findByName(ResourceServer resourceServer, String name) {
return policyStore.findByName(resourceServer, name);
}
@Override
public List findByResourceServer(ResourceServer resourceServer) {
return policyStore.findByResourceServer(resourceServer);
}
@Override
public List find(ResourceServer resourceServer, Map attributes, Integer firstResult, Integer maxResults) {
return policyStore.find(resourceServer, attributes, firstResult, maxResults);
}
@Override
public List findByResource(ResourceServer resourceServer, Resource resource) {
return policyStore.findByResource(resourceServer, resource);
}
@Override
public void findByResource(ResourceServer resourceServer, Resource resource, Consumer consumer) {
policyStore.findByResource(resourceServer, resource, consumer);
}
@Override
public List findByResourceType(ResourceServer resourceServer, String resourceType) {
return policyStore.findByResourceType(resourceServer, resourceType);
}
@Override
public List findByScopes(ResourceServer resourceServer, List scopes) {
return policyStore.findByScopes(resourceServer, scopes);
}
@Override
public List findByScopes(ResourceServer resourceServer, Resource resource, List scopes) {
return policyStore.findByScopes(resourceServer, resource, scopes);
}
@Override
public void findByScopes(ResourceServer resourceServer, Resource resource, List scopes, Consumer consumer) {
policyStore.findByScopes(resourceServer, resource, scopes, consumer);
}
@Override
public List findByType(ResourceServer resourceServer, String type) {
return policyStore.findByType(resourceServer, type);
}
@Override
public List findDependentPolicies(ResourceServer resourceServer, String id) {
return policyStore.findDependentPolicies(resourceServer, id);
}
@Override
public void findByResourceType(ResourceServer resourceServer, String type, Consumer policyConsumer) {
policyStore.findByResourceType(resourceServer, type, policyConsumer);
}
};
}
private ResourceStore createResourceStoreWrapper(StoreFactory storeFactory) {
return new ResourceStore() {
ResourceStore delegate = storeFactory.getResourceStore();
@Override
public Resource create(ResourceServer resourceServer, String name, String owner) {
return delegate.create(resourceServer, name, owner);
}
@Override
public Resource create(ResourceServer resourceServer, String id, String name, String owner) {
return delegate.create(resourceServer, id, name, owner);
}
@Override
public void delete(String id) {
Resource resource = findById(null, id);
StoreFactory storeFactory = AuthorizationProvider.this.getStoreFactory();
PermissionTicketStore ticketStore = storeFactory.getPermissionTicketStore();
List permissions = ticketStore.findByResource(resource.getResourceServer(), resource);
for (PermissionTicket permission : permissions) {
ticketStore.delete(permission.getId());
}
PolicyStore policyStore = storeFactory.getPolicyStore();
List policies = policyStore.findByResource(resource.getResourceServer(), resource);
for (Policy policyModel : policies) {
if (policyModel.getResources().size() == 1) {
policyStore.delete(policyModel.getId());
} else {
policyModel.removeResource(resource);
}
}
delegate.delete(id);
}
@Override
public Resource findById(ResourceServer resourceServer, String id) {
return delegate.findById(resourceServer, id);
}
@Override
public List findByOwner(ResourceServer resourceServer, String ownerId) {
return delegate.findByOwner(resourceServer, ownerId);
}
@Override
public void findByOwner(ResourceServer resourceServer, String ownerId, Consumer consumer) {
delegate.findByOwner(resourceServer, ownerId, consumer);
}
@Override
public List findByResourceServer(ResourceServer resourceServer) {
return delegate.findByResourceServer(resourceServer);
}
@Override
public List find(ResourceServer resourceServer, Map attributes, Integer firstResult, Integer maxResults) {
return delegate.find(resourceServer, attributes, firstResult, maxResults);
}
@Override
public List findByScopes(ResourceServer resourceServer, Set scopes) {
return delegate.findByScopes(resourceServer, scopes);
}
@Override
public void findByScopes(ResourceServer resourceServer, Set scopes, Consumer consumer) {
delegate.findByScopes(resourceServer, scopes, consumer);
}
@Override
public Resource findByName(ResourceServer resourceServer, String name, String ownerId) {
return delegate.findByName(resourceServer, name, ownerId);
}
@Override
public List findByType(ResourceServer resourceServer, String type) {
return delegate.findByType(resourceServer, type);
}
@Override
public void findByType(ResourceServer resourceServer, String type, Consumer consumer) {
delegate.findByType(resourceServer, type, consumer);
}
@Override
public void findByType(ResourceServer resourceServer, String type, String owner, Consumer consumer) {
delegate.findByType(resourceServer, type, owner, consumer);
}
@Override
public void findByTypeInstance(ResourceServer resourceServer, String type, Consumer consumer) {
delegate.findByTypeInstance(resourceServer, type, consumer);
}
};
}
}