/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF 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.
==================================================================== */

/* ====================================================================
   This product contains an ASLv2 licensed version of the OOXML signer
   package from the eID Applet project
   http://code.google.com/p/eid-applet/source/browse/trunk/README.txt  
   Copyright (C) 2008-2014 FedICT.
   ================================================================= */ 

package org.apache.poi.poifs.crypt.dsig.facets;

import static java.util.Collections.singletonList;

import java.security.MessageDigest;
import java.security.cert.CertificateEncodingException;
import java.security.cert.X509Certificate;
import java.util.Arrays;
import java.util.Calendar;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.TimeZone;

import javax.xml.crypto.XMLStructure;
import javax.xml.crypto.dom.DOMStructure;
import javax.xml.crypto.dsig.CanonicalizationMethod;
import javax.xml.crypto.dsig.Reference;
import javax.xml.crypto.dsig.Transform;
import javax.xml.crypto.dsig.XMLObject;
import javax.xml.crypto.dsig.XMLSignatureException;

import org.apache.poi.poifs.crypt.CryptoFunctions;
import org.apache.poi.poifs.crypt.HashAlgorithm;
import org.apache.poi.poifs.crypt.dsig.SignatureConfig;
import org.apache.poi.poifs.crypt.dsig.services.SignaturePolicyService;
import org.apache.poi.util.POILogFactory;
import org.apache.poi.util.POILogger;
import org.apache.xmlbeans.XmlCursor;
import org.apache.xmlbeans.XmlObject;
import org.apache.xmlbeans.XmlString;
import org.etsi.uri.x01903.v13.AnyType;
import org.etsi.uri.x01903.v13.CertIDListType;
import org.etsi.uri.x01903.v13.CertIDType;
import org.etsi.uri.x01903.v13.ClaimedRolesListType;
import org.etsi.uri.x01903.v13.DataObjectFormatType;
import org.etsi.uri.x01903.v13.DigestAlgAndValueType;
import org.etsi.uri.x01903.v13.ObjectIdentifierType;
import org.etsi.uri.x01903.v13.QualifyingPropertiesDocument;
import org.etsi.uri.x01903.v13.QualifyingPropertiesType;
import org.etsi.uri.x01903.v13.SignaturePolicyIdType;
import org.etsi.uri.x01903.v13.SignaturePolicyIdentifierType;
import org.etsi.uri.x01903.v13.SignedPropertiesType;
import org.etsi.uri.x01903.v13.SignedSignaturePropertiesType;
import org.etsi.uri.x01903.v13.SignerRoleType;
import org.w3.x2000.x09.xmldsig.DigestMethodType;
import org.w3.x2000.x09.xmldsig.X509IssuerSerialType;
import org.w3c.dom.Document;
import org.w3c.dom.Node;

XAdES Signature Facet. Implements XAdES v1.4.1 which is compatible with XAdES v1.3.2. The implemented XAdES format is XAdES-BES/EPES. It's up to another part of the signature service to upgrade the XAdES-BES to a XAdES-X-L. This implementation has been tested against an implementation that participated multiple ETSI XAdES plugtests.
Author:Frank Cornelis
See Also:
/** * XAdES Signature Facet. Implements XAdES v1.4.1 which is compatible with XAdES * v1.3.2. The implemented XAdES format is XAdES-BES/EPES. It's up to another * part of the signature service to upgrade the XAdES-BES to a XAdES-X-L. * * This implementation has been tested against an implementation that * participated multiple ETSI XAdES plugtests. * * @author Frank Cornelis * @see <a href="http://en.wikipedia.org/wiki/XAdES">XAdES</a> * */
public class XAdESSignatureFacet extends SignatureFacet { private static final POILogger LOG = POILogFactory.getLogger(XAdESSignatureFacet.class); private static final String XADES_TYPE = "http://uri.etsi.org/01903#SignedProperties"; private final Map<String, String> dataObjectFormatMimeTypes = new HashMap<>(); @Override public void preSign( Document document , List<Reference> references , List<XMLObject> objects) throws XMLSignatureException { LOG.log(POILogger.DEBUG, "preSign"); // QualifyingProperties QualifyingPropertiesDocument qualDoc = QualifyingPropertiesDocument.Factory.newInstance(); QualifyingPropertiesType qualifyingProperties = qualDoc.addNewQualifyingProperties(); qualifyingProperties.setTarget("#" + signatureConfig.getPackageSignatureId()); // SignedProperties SignedPropertiesType signedProperties = qualifyingProperties.addNewSignedProperties(); signedProperties.setId(signatureConfig.getXadesSignatureId()); // SignedSignatureProperties SignedSignaturePropertiesType signedSignatureProperties = signedProperties.addNewSignedSignatureProperties(); // SigningTime addSigningTime(signedSignatureProperties); // SigningCertificate addCertificate(signedSignatureProperties); // ClaimedRole addXadesRole(signedSignatureProperties); // XAdES-EPES addPolicy(signedSignatureProperties); // DataObjectFormat addMimeTypes(signedProperties); // add XAdES ds:Object objects.add(addXadesObject(document, qualifyingProperties)); // add XAdES ds:Reference references.add(addXadesReference()); } private void addSigningTime(SignedSignaturePropertiesType signedSignatureProperties) { Calendar xmlGregorianCalendar = Calendar.getInstance(TimeZone.getTimeZone("Z"), Locale.ROOT); xmlGregorianCalendar.setTime(signatureConfig.getExecutionTime()); xmlGregorianCalendar.clear(Calendar.MILLISECOND); signedSignatureProperties.setSigningTime(xmlGregorianCalendar); } private void addCertificate(SignedSignaturePropertiesType signedSignatureProperties) { List<X509Certificate> chain = signatureConfig.getSigningCertificateChain(); if (chain == null || chain.isEmpty()) { throw new RuntimeException("no signing certificate chain available"); } CertIDListType signingCertificates = signedSignatureProperties.addNewSigningCertificate(); CertIDType certId = signingCertificates.addNewCert(); setCertID(certId, signatureConfig, signatureConfig.isXadesIssuerNameNoReverseOrder(), chain.get(0)); } private void addXadesRole(SignedSignaturePropertiesType signedSignatureProperties) { String role = signatureConfig.getXadesRole(); if (role == null || role.isEmpty()) { return; } SignerRoleType signerRole = signedSignatureProperties.addNewSignerRole(); signedSignatureProperties.setSignerRole(signerRole); ClaimedRolesListType claimedRolesList = signerRole.addNewClaimedRoles(); AnyType claimedRole = claimedRolesList.addNewClaimedRole(); XmlString roleString = XmlString.Factory.newInstance(); roleString.setStringValue(role); insertXChild(claimedRole, roleString); } private void addPolicy(SignedSignaturePropertiesType signedSignatureProperties) { SignaturePolicyService policyService = signatureConfig.getSignaturePolicyService(); if (policyService == null) { if (signatureConfig.isXadesSignaturePolicyImplied()) { signedSignatureProperties. addNewSignaturePolicyIdentifier(). addNewSignaturePolicyImplied(); } return; } SignaturePolicyIdentifierType policyId = signedSignatureProperties.addNewSignaturePolicyIdentifier(); SignaturePolicyIdType signaturePolicyId = policyId.addNewSignaturePolicyId(); ObjectIdentifierType oit = signaturePolicyId.addNewSigPolicyId(); oit.setDescription(policyService.getSignaturePolicyDescription()); oit.addNewIdentifier().setStringValue(policyService.getSignaturePolicyIdentifier()); byte[] signaturePolicyDocumentData = policyService.getSignaturePolicyDocument(); DigestAlgAndValueType sigPolicyHash = signaturePolicyId.addNewSigPolicyHash(); setDigestAlgAndValue(sigPolicyHash, signaturePolicyDocumentData, signatureConfig.getDigestAlgo()); String signaturePolicyDownloadUrl = policyService.getSignaturePolicyDownloadUrl(); if (signaturePolicyDownloadUrl == null) { return; } AnyType sigPolicyQualifier = signaturePolicyId.addNewSigPolicyQualifiers().addNewSigPolicyQualifier(); XmlString spUriElement = XmlString.Factory.newInstance(); spUriElement.setStringValue(signaturePolicyDownloadUrl); insertXChild(sigPolicyQualifier, spUriElement); } private void addMimeTypes(SignedPropertiesType signedProperties) { if (dataObjectFormatMimeTypes.isEmpty()) { return; } List<DataObjectFormatType> dataObjectFormats = signedProperties. addNewSignedDataObjectProperties(). getDataObjectFormatList(); dataObjectFormatMimeTypes.forEach((key,value) -> { DataObjectFormatType dof = DataObjectFormatType.Factory.newInstance(); dof.setObjectReference("#" + key); dof.setMimeType(value); dataObjectFormats.add(dof); }); } private XMLObject addXadesObject(Document document, QualifyingPropertiesType qualifyingProperties) { Node qualDocElSrc = qualifyingProperties.getDomNode(); Node qualDocEl = document.importNode(qualDocElSrc, true); List<XMLStructure> xadesObjectContent = Arrays.asList(new DOMStructure(qualDocEl)); return getSignatureFactory().newXMLObject(xadesObjectContent, null, null, null); } private Reference addXadesReference() throws XMLSignatureException { List<Transform> transforms = singletonList(newTransform(CanonicalizationMethod.INCLUSIVE)); return newReference("#"+signatureConfig.getXadesSignatureId(), transforms, XADES_TYPE, null, null); }
Gives back the JAXB DigestAlgAndValue data structure.
Params:
  • digestAlgAndValue – the parent for the new digest element
  • data – the data to be digested
  • digestAlgo – the digest algorithm
/** * Gives back the JAXB DigestAlgAndValue data structure. * * @param digestAlgAndValue the parent for the new digest element * @param data the data to be digested * @param digestAlgo the digest algorithm */
protected static void setDigestAlgAndValue( DigestAlgAndValueType digestAlgAndValue, byte[] data, HashAlgorithm digestAlgo) { DigestMethodType digestMethod = digestAlgAndValue.addNewDigestMethod(); digestMethod.setAlgorithm(SignatureConfig.getDigestMethodUri(digestAlgo)); MessageDigest messageDigest = CryptoFunctions.getMessageDigest(digestAlgo); byte[] digestValue = messageDigest.digest(data); digestAlgAndValue.setDigestValue(digestValue); }
Gives back the JAXB CertID data structure.
/** * Gives back the JAXB CertID data structure. */
protected static void setCertID (CertIDType certId, SignatureConfig signatureConfig, boolean issuerNameNoReverseOrder, X509Certificate certificate) { X509IssuerSerialType issuerSerial = certId.addNewIssuerSerial(); String issuerName; if (issuerNameNoReverseOrder) { /* * Make sure the DN is encoded using the same order as present * within the certificate. This is an Office2010 work-around. * Should be reverted back. * * XXX: not correct according to RFC 4514. */ // TODO: check if issuerName is different on getTBSCertificate // issuerName = PrincipalUtil.getIssuerX509Principal(certificate).getName().replace(",", ", "); issuerName = certificate.getIssuerDN().getName().replace(",", ", "); } else { issuerName = certificate.getIssuerX500Principal().toString(); } issuerSerial.setX509IssuerName(issuerName); issuerSerial.setX509SerialNumber(certificate.getSerialNumber()); byte[] encodedCertificate; try { encodedCertificate = certificate.getEncoded(); } catch (CertificateEncodingException e) { throw new RuntimeException("certificate encoding error: " + e.getMessage(), e); } DigestAlgAndValueType certDigest = certId.addNewCertDigest(); setDigestAlgAndValue(certDigest, encodedCertificate, signatureConfig.getXadesDigestAlgo()); }
Adds a mime-type for the given ds:Reference (referred via its @URI). This information is added via the xades:DataObjectFormat element.
Params:
  • dsReferenceUri –
  • mimetype –
/** * Adds a mime-type for the given ds:Reference (referred via its @URI). This * information is added via the xades:DataObjectFormat element. * * @param dsReferenceUri * @param mimetype */
public void addMimeType(String dsReferenceUri, String mimetype) { this.dataObjectFormatMimeTypes.put(dsReferenceUri, mimetype); } protected static void insertXChild(XmlObject root, XmlObject child) { XmlCursor rootCursor = root.newCursor(); rootCursor.toEndToken(); XmlCursor childCursor = child.newCursor(); childCursor.toNextToken(); childCursor.moveXml(rootCursor); childCursor.dispose(); rootCursor.dispose(); } }