All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opensaml.saml.saml2.profile.impl.DecryptAttributes Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
/*
 * Licensed to the University Corporation for Advanced Internet Development, 
 * Inc. (UCAID) under one or more contributor license agreements.  See the 
 * NOTICE file distributed with this work for additional information regarding
 * copyright ownership. The UCAID licenses this file to You 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.opensaml.saml.saml2.profile.impl;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

import net.shibboleth.utilities.java.support.collection.Pair;

import org.opensaml.profile.action.ActionSupport;
import org.opensaml.profile.context.ProfileRequestContext;
import org.opensaml.saml.common.SAMLObject;
import org.opensaml.saml.common.profile.SAMLEventIds;
import org.opensaml.saml.saml2.core.Assertion;
import org.opensaml.saml.saml2.core.Attribute;
import org.opensaml.saml.saml2.core.AttributeStatement;
import org.opensaml.saml.saml2.core.EncryptedAttribute;
import org.opensaml.saml.saml2.core.EncryptedElementType;
import org.opensaml.saml.saml2.core.Response;
import org.opensaml.xmlsec.encryption.support.DecryptionException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * Action to decrypt an {@link EncryptedAttribute} element and replace it with the decrypted
 * {@link Attribute} in situ.
 * 
 * 

All of the built-in SAML message types that may include an {@link EncryptedAttribute} are * potentially handled, but the actual message to handle is obtained via strategy function, by * default the inbound message.

* * @event {@link org.opensaml.profile.action.EventIds#PROCEED_EVENT_ID} * @event {@link SAMLEventIds#DECRYPT_ATTRIBUTE_FAILED} */ public class DecryptAttributes extends AbstractDecryptAction { /** Class logger. */ @Nonnull private final Logger log = LoggerFactory.getLogger(DecryptAttributes.class); /** {@inheritDoc} */ @Override protected void doExecute(@Nonnull final ProfileRequestContext profileRequestContext) { final SAMLObject message = getSAMLObject(); try { if (message instanceof Response) { for (final Assertion a : ((Response) message).getAssertions()) { processAssertion(profileRequestContext, a); } } else if (message instanceof Assertion) { processAssertion(profileRequestContext, (Assertion) message); } else { log.debug("{} Message was of unrecognized type {}, nothing to do", getLogPrefix(), message.getClass().getName()); return; } } catch (final DecryptionException e) { log.warn("{} Failure performing decryption", getLogPrefix(), e); if (isErrorFatal()) { ActionSupport.buildEvent(profileRequestContext, SAMLEventIds.DECRYPT_ATTRIBUTE_FAILED); } } } /** * Decrypt an {@link EncryptedAttribute} and return the result. * * @param profileRequestContext current profile request context * @param encAttr the encrypted object * * @return the decrypted attribute, or null if the object did not need decryption * @throws DecryptionException if an error occurs during decryption */ @Nullable private Attribute processEncryptedAttribute(@Nonnull final ProfileRequestContext profileRequestContext, @Nonnull final EncryptedAttribute encAttr) throws DecryptionException { if (!getDecryptionPredicate().apply( new Pair(profileRequestContext, encAttr))) { return null; } if (getDecrypter() == null) { throw new DecryptionException("No decryption parameters, unable to decrypt EncryptedAttribute"); } return getDecrypter().decrypt(encAttr); } /** * Decrypt any {@link EncryptedAttribute} found in an assertion and replace it with the result. * * @param profileRequestContext current profile request context * @param assertion assertion to operate on * * @throws DecryptionException if an error occurs */ private void processAssertion(@Nonnull final ProfileRequestContext profileRequestContext, @Nonnull final Assertion assertion) throws DecryptionException { final Collection decrypteds = new ArrayList<>(); for (final AttributeStatement s : assertion.getAttributeStatements()) { final Iterator i = s.getEncryptedAttributes().iterator(); while (i.hasNext()) { log.debug("{} Decrypting EncryptedAttribute in AttributeStatement", getLogPrefix()); try { final Attribute decrypted = processEncryptedAttribute(profileRequestContext, i.next()); if (decrypted != null) { decrypteds.add(decrypted); i.remove(); } } catch (final DecryptionException e) { if (isErrorFatal()) { throw e; } log.warn("{} Trapped failure decrypting EncryptedAttribute in AttributeStatement", getLogPrefix(), e); } } s.getAttributes().addAll(decrypteds); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy