1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <config_gpgme.h>
22 #include <sal/config.h>
24 #include <cppuhelper/supportsservice.hxx>
25 #include <gpg/xmlsignature_gpgimpl.hxx>
31 #include <signingresult.h>
32 #include <importresult.h>
34 #include <xmlsec/xmldocumentwrapper_xmlsecimpl.hxx>
35 #include <xmlsec/xmlelementwrapper_xmlsecimpl.hxx>
36 #include <xmlsec/xmlstreamio.hxx>
37 #include <xmlsec/errorcallback.hxx>
39 #include "SecurityEnvironment.hxx"
40 #include <xmlsec-wrapper.h>
42 using namespace css::uno
;
43 using namespace css::lang
;
44 using namespace css::xml::wrapper
;
45 using namespace css::xml::crypto
;
47 XMLSignature_GpgImpl::XMLSignature_GpgImpl() {
50 XMLSignature_GpgImpl::~XMLSignature_GpgImpl() {
54 Reference
< XXMLSignatureTemplate
>
55 SAL_CALL
XMLSignature_GpgImpl::generate(
56 const Reference
< XXMLSignatureTemplate
>& aTemplate
,
57 const Reference
< XSecurityEnvironment
>& aEnvironment
60 xmlSecDSigCtxPtr pDsigCtx
= nullptr ;
61 xmlNodePtr pNode
= nullptr ;
64 throw RuntimeException() ;
66 if( !aEnvironment
.is() )
67 throw RuntimeException() ;
70 Reference
< XXMLElementWrapper
> xElement
= aTemplate
->getTemplate() ;
71 if( !xElement
.is() ) {
72 throw RuntimeException() ;
75 XMLElementWrapper_XmlSecImpl
* pElement
=
76 dynamic_cast<XMLElementWrapper_XmlSecImpl
*>(xElement
.get());
77 if( pElement
== nullptr ) {
78 throw RuntimeException() ;
81 pNode
= pElement
->getNativeElement() ;
83 //Get the stream/URI binding
84 Reference
< XUriBinding
> xUriBinding
= aTemplate
->getBinding() ;
85 if( xUriBinding
.is() ) {
86 //Register the stream input callbacks into libxml2
87 if( xmlRegisterStreamInputCallbacks( xUriBinding
) < 0 )
88 throw RuntimeException() ;
92 SecurityEnvironmentGpg
* pSecEnv
=
93 dynamic_cast<SecurityEnvironmentGpg
*>(aEnvironment
.get());
94 if( pSecEnv
== nullptr )
95 throw RuntimeException() ;
99 //Create Signature context
100 pDsigCtx
= xmlSecDSigCtxCreate( nullptr ) ;
101 if( pDsigCtx
== nullptr )
103 clearErrorRecorder();
107 // set intended operation to sign - several asserts inside libxmlsec
108 // wanting that for digest / transforms
109 pDsigCtx
->operation
= xmlSecTransformOperationSign
;
111 // we default to SHA512 for all digests - nss crypto does not have it...
112 //pDsigCtx->defDigestMethodId = xmlSecTransformSha512Id;
114 // Calculate digest for all references
115 xmlNodePtr cur
= xmlSecGetNextElementNode(pNode
->children
);
117 cur
= xmlSecGetNextElementNode(cur
->children
);
118 while( cur
!= nullptr )
120 // some of those children I suppose should be reference elements
121 if( xmlSecCheckNodeName(cur
, xmlSecNodeReference
, xmlSecDSigNs
) )
123 xmlSecDSigReferenceCtxPtr pDsigRefCtx
=
124 xmlSecDSigReferenceCtxCreate(pDsigCtx
,
125 xmlSecDSigReferenceOriginSignedInfo
);
126 if(pDsigRefCtx
== nullptr)
127 throw RuntimeException();
129 // add this one to the list
130 if( xmlSecPtrListAdd(&(pDsigCtx
->signedInfoReferences
),
133 // TODO resource handling
134 xmlSecDSigReferenceCtxDestroy(pDsigRefCtx
);
135 throw RuntimeException();
138 if( xmlSecDSigReferenceCtxProcessNode(pDsigRefCtx
, cur
) < 0 )
139 throw RuntimeException();
141 // final check - all good?
142 if(pDsigRefCtx
->status
!= xmlSecDSigStatusSucceeded
)
144 pDsigCtx
->status
= xmlSecDSigStatusInvalid
;
145 return aTemplate
; // TODO - harder error?
149 cur
= xmlSecGetNextElementNode(cur
->next
);
152 // get me a digestible buffer from the signature template!
153 // -------------------------------------------------------
155 // run the transformations over SignedInfo element (first child of
157 xmlSecNodeSetPtr nodeset
= nullptr;
158 cur
= xmlSecGetNextElementNode(pNode
->children
);
159 // TODO assert that...
160 nodeset
= xmlSecNodeSetGetChildren(pNode
->doc
, cur
, 1, 0);
161 if(nodeset
== nullptr)
162 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
164 if( xmlSecTransformCtxXmlExecute(&(pDsigCtx
->transformCtx
), nodeset
) < 0 )
165 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
167 // now extract the keyid from PGPData
168 // walk xml tree to PGPData node - go to children, first is
169 // SignedInfo, 2nd is signaturevalue, 3rd is KeyInfo
170 // 1st child is PGPData, 1st grandchild is PGPKeyID
171 cur
= xmlSecGetNextElementNode(pNode
->children
);
172 // TODO error handling
173 cur
= xmlSecGetNextElementNode(cur
->next
);
174 cur
= xmlSecGetNextElementNode(cur
->next
);
175 cur
= xmlSecGetNextElementNode(cur
->children
);
176 // check that this is now PGPData
177 if(!xmlSecCheckNodeName(cur
, xmlSecNodePGPData
, xmlSecDSigNs
))
178 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
179 // check that this is now PGPKeyID
180 cur
= xmlSecGetNextElementNode(cur
->children
);
181 static const xmlChar xmlSecNodePGPKeyID
[] = "PGPKeyID";
182 if(!xmlSecCheckNodeName(cur
, xmlSecNodePGPKeyID
, xmlSecDSigNs
))
183 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
185 GpgME::Context
& rCtx
=pSecEnv
->getGpgContext();
186 rCtx
.setKeyListMode(GPGME_KEYLIST_MODE_LOCAL
);
188 xmlChar
* pKey
=xmlNodeGetContent(cur
);
189 if(xmlSecBase64Decode(pKey
, reinterpret_cast<xmlSecByte
*>(pKey
), xmlStrlen(pKey
)) < 0)
190 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
191 if( rCtx
.addSigningKey(
193 reinterpret_cast<char*>(pKey
), err
, true)) )
194 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
198 // good, ctx is setup now, let's sign the lot
200 reinterpret_cast<char*>(xmlSecBufferGetData(pDsigCtx
->transformCtx
.result
)),
201 xmlSecBufferGetSize(pDsigCtx
->transformCtx
.result
), false);
202 GpgME::Data data_out
;
204 SAL_INFO("xmlsecurity.xmlsec.gpg", "Generating signature for: " << xmlSecBufferGetData(pDsigCtx
->transformCtx
.result
));
206 // we base64-encode anyway
207 rCtx
.setArmor(false);
208 GpgME::SigningResult sign_res
=rCtx
.sign(data_in
, data_out
,
210 off_t result
= data_out
.seek(0,SEEK_SET
);
213 int len
=0, curr
=0; char buf
;
214 while( (curr
=data_out
.read(&buf
, 1)) )
217 if(sign_res
.error() || !len
)
218 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
220 // write signed data to xml
221 xmlChar
* signature
= static_cast<xmlChar
*>(xmlMalloc(len
+ 1));
222 if(signature
== nullptr)
223 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
224 result
= data_out
.seek(0,SEEK_SET
);
226 if( data_out
.read(signature
, len
) != len
)
227 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
229 // conversion to base64
230 xmlChar
* signatureEncoded
=nullptr;
231 if( !(signatureEncoded
=xmlSecBase64Encode(reinterpret_cast<xmlSecByte
*>(signature
), len
, 79)) )
232 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
235 // walk xml tree to sign value node - go to children, first is
236 // SignedInfo, 2nd is signaturevalue
237 cur
= xmlSecGetNextElementNode(pNode
->children
);
238 cur
= xmlSecGetNextElementNode(cur
->next
);
240 // TODO some assert would be good...
241 xmlNodeSetContentLen(cur
, signatureEncoded
, xmlStrlen(signatureEncoded
));
242 xmlFree(signatureEncoded
);
244 aTemplate
->setStatus(SecurityOperationStatus_OPERATION_SUCCEEDED
);
247 xmlSecDSigCtxDestroy( pDsigCtx
) ;
249 //Unregistered the stream/URI binding
250 if( xUriBinding
.is() )
251 xmlUnregisterStreamInputCallbacks() ;
253 clearErrorRecorder();
258 Reference
< XXMLSignatureTemplate
>
259 SAL_CALL
XMLSignature_GpgImpl::validate(
260 const Reference
< XXMLSignatureTemplate
>& aTemplate
,
261 const Reference
< XXMLSecurityContext
>& aSecurityCtx
263 xmlSecDSigCtxPtr pDsigCtx
= nullptr ;
264 xmlNodePtr pNode
= nullptr ;
266 if( !aTemplate
.is() )
267 throw RuntimeException() ;
269 if( !aSecurityCtx
.is() )
270 throw RuntimeException() ;
273 Reference
< XXMLElementWrapper
> xElement
= aTemplate
->getTemplate() ;
275 throw RuntimeException() ;
277 XMLElementWrapper_XmlSecImpl
* pElement
=
278 dynamic_cast<XMLElementWrapper_XmlSecImpl
*>(xElement
.get());
279 if( pElement
== nullptr )
280 throw RuntimeException() ;
282 pNode
= pElement
->getNativeElement() ;
284 //Get the stream/URI binding
285 Reference
< XUriBinding
> xUriBinding
= aTemplate
->getBinding() ;
286 if( xUriBinding
.is() ) {
287 //Register the stream input callbacks into libxml2
288 if( xmlRegisterStreamInputCallbacks( xUriBinding
) < 0 )
289 throw RuntimeException() ;
294 sal_Int32 nSecurityEnvironment
= aSecurityCtx
->getSecurityEnvironmentNumber();
297 for (i
=0; i
<nSecurityEnvironment
; ++i
)
299 Reference
< XSecurityEnvironment
> aEnvironment
= aSecurityCtx
->getSecurityEnvironmentByIndex(i
);
301 SecurityEnvironmentGpg
* pSecEnv
=
302 dynamic_cast<SecurityEnvironmentGpg
*>(aEnvironment
.get());
303 if( pSecEnv
== nullptr )
304 throw RuntimeException() ;
306 // TODO figure out key from pSecEnv!
307 // unclear how/where that is transported in nss impl...
309 //Create Signature context
310 pDsigCtx
= xmlSecDSigCtxCreate( nullptr ) ;
311 if( pDsigCtx
== nullptr )
313 clearErrorRecorder();
317 // set intended operation to verify - several asserts inside libxmlsec
318 // wanting that for digest / transforms
319 pDsigCtx
->operation
= xmlSecTransformOperationVerify
;
321 // reset status - to be set later
322 pDsigCtx
->status
= xmlSecDSigStatusUnknown
;
324 // get me a digestible buffer from the SignatureInfo node!
325 // -------------------------------------------------------
327 // run the transformations - first child node is required to
329 xmlSecNodeSetPtr nodeset
= nullptr;
330 xmlNodePtr cur
= xmlSecGetNextElementNode(pNode
->children
);
331 // TODO assert that...
332 nodeset
= xmlSecNodeSetGetChildren(pNode
->doc
, cur
, 1, 0);
333 if(nodeset
== nullptr)
334 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
336 // TODO assert we really have the SignatureInfo here?
337 if( xmlSecTransformCtxXmlExecute(&(pDsigCtx
->transformCtx
), nodeset
) < 0 )
338 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
340 // Validate the template via gpgme
341 GpgME::Context
& rCtx
=pSecEnv
->getGpgContext();
343 GpgME::Data
data_text(
344 reinterpret_cast<char*>(xmlSecBufferGetData(pDsigCtx
->transformCtx
.result
)),
345 xmlSecBufferGetSize(pDsigCtx
->transformCtx
.result
), false);
347 SAL_INFO("xmlsecurity.xmlsec.gpg", "Validating SignatureInfo: " << xmlSecBufferGetData(pDsigCtx
->transformCtx
.result
));
349 // walk xml tree to sign value node - go to children, first is
350 // SignedInfo, 2nd is signaturevalue
351 cur
= xmlSecGetNextElementNode(pNode
->children
);
352 cur
= xmlSecGetNextElementNode(cur
->next
);
354 if(!xmlSecCheckNodeName(cur
, xmlSecNodeSignatureValue
, xmlSecDSigNs
))
355 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
356 xmlChar
* pSignatureValue
=xmlNodeGetContent(cur
);
357 int nSigSize
= xmlSecBase64Decode(pSignatureValue
, reinterpret_cast<xmlSecByte
*>(pSignatureValue
), xmlStrlen(pSignatureValue
));
359 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
361 GpgME::Data
data_signature(
362 reinterpret_cast<char*>(pSignatureValue
),
365 GpgME::VerificationResult verify_res
=rCtx
.verifyDetachedSignature(
366 data_signature
, data_text
);
368 // TODO: needs some more error handling, needs checking _all_ signatures
369 if( verify_res
.isNull() || verify_res
.numSignatures() == 0
370 // there is at least 1 signature and it is anything else than fully valid
371 || ( (verify_res
.numSignatures() > 0)
372 && verify_res
.signature(0).status().encodedError() > 0 ) )
374 // let's try again, but this time import the public key
375 // payload (avoiding that in a first cut for being a bit
376 // speedier. also prevents all too easy poisoning/sha1
377 // fingerprint collision attacks)
379 // walk xml tree to PGPData node - go to children, first is
380 // SignedInfo, 2nd is signaturevalue, 3rd is KeyInfo
381 // 1st child is PGPData, 1st or 2nd grandchild is PGPKeyPacket
382 cur
= xmlSecGetNextElementNode(pNode
->children
);
383 // TODO error handling
384 cur
= xmlSecGetNextElementNode(cur
->next
);
385 cur
= xmlSecGetNextElementNode(cur
->next
);
386 cur
= xmlSecGetNextElementNode(cur
->children
);
387 // check that this is now PGPData
388 if(!xmlSecCheckNodeName(cur
, xmlSecNodePGPData
, xmlSecDSigNs
))
389 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
390 // check that this is now PGPKeyPacket
391 cur
= xmlSecGetNextElementNode(cur
->children
);
392 static const xmlChar xmlSecNodePGPKeyPacket
[] = "PGPKeyPacket";
393 if(!xmlSecCheckNodeName(cur
, xmlSecNodePGPKeyPacket
, xmlSecDSigNs
))
395 // not this one, maybe the next?
396 cur
= xmlSecGetNextElementNode(cur
->next
);
397 if(!xmlSecCheckNodeName(cur
, xmlSecNodePGPKeyPacket
, xmlSecDSigNs
))
400 clearErrorRecorder();
401 xmlFree(pSignatureValue
);
407 // got a key packet, import & re-validate
408 xmlChar
* pKeyPacket
=xmlNodeGetContent(cur
);
409 int nKeyLen
= xmlSecBase64Decode(pKeyPacket
, reinterpret_cast<xmlSecByte
*>(pKeyPacket
), xmlStrlen(pKeyPacket
));
411 throw RuntimeException("The GpgME library failed to initialize for the OpenPGP protocol.");
413 GpgME::Data
data_key(
414 reinterpret_cast<char*>(pKeyPacket
),
417 GpgME::ImportResult import_res
=rCtx
.importKeys(data_key
);
420 // and re-run (rewind text and signature streams to position 0)
421 data_text
.seek(0,SEEK_SET
);
422 data_signature
.seek(0,SEEK_SET
);
423 verify_res
=rCtx
.verifyDetachedSignature(data_signature
, data_text
);
425 // TODO: needs some more error handling, needs checking _all_ signatures
426 if( verify_res
.isNull() || verify_res
.numSignatures() == 0
427 // there is at least 1 signature and it is anything else than valid
428 || ( (verify_res
.numSignatures() > 0)
429 && verify_res
.signature(0).status().encodedError() > 0 ) )
431 clearErrorRecorder();
432 xmlFree(pSignatureValue
);
438 xmlFree(pSignatureValue
);
440 // now verify digest for all references
441 cur
= xmlSecGetNextElementNode(pNode
->children
);
443 cur
= xmlSecGetNextElementNode(cur
->children
);
444 while( cur
!= nullptr )
446 // some of those children I suppose should be reference elements
447 if( xmlSecCheckNodeName(cur
, xmlSecNodeReference
, xmlSecDSigNs
) )
449 xmlSecDSigReferenceCtxPtr pDsigRefCtx
=
450 xmlSecDSigReferenceCtxCreate(pDsigCtx
,
451 xmlSecDSigReferenceOriginSignedInfo
);
452 if(pDsigRefCtx
== nullptr)
453 throw RuntimeException();
455 // add this one to the list
456 if( xmlSecPtrListAdd(&(pDsigCtx
->signedInfoReferences
),
459 // TODO resource handling
460 xmlSecDSigReferenceCtxDestroy(pDsigRefCtx
);
461 throw RuntimeException();
464 if( xmlSecDSigReferenceCtxProcessNode(pDsigRefCtx
, cur
) < 0 )
465 throw RuntimeException();
467 // final check - all good?
468 if(pDsigRefCtx
->status
!= xmlSecDSigStatusSucceeded
)
470 pDsigCtx
->status
= xmlSecDSigStatusInvalid
;
471 return aTemplate
; // TODO - harder error?
475 cur
= xmlSecGetNextElementNode(cur
->next
);
478 // TODO - also verify manifest (only relevant for ooxml)?
479 aTemplate
->setStatus(SecurityOperationStatus_OPERATION_SUCCEEDED
);
482 xmlSecDSigCtxDestroy( pDsigCtx
) ;
485 //Unregistered the stream/URI binding
486 if( xUriBinding
.is() )
487 xmlUnregisterStreamInputCallbacks() ;
489 clearErrorRecorder();
494 OUString SAL_CALL
XMLSignature_GpgImpl::getImplementationName() {
495 return impl_getImplementationName() ;
499 sal_Bool SAL_CALL
XMLSignature_GpgImpl::supportsService( const OUString
& serviceName
) {
500 return cppu::supportsService(this, serviceName
);
504 Sequence
< OUString
> SAL_CALL
XMLSignature_GpgImpl::getSupportedServiceNames() {
505 return impl_getSupportedServiceNames() ;
508 //Helper for XServiceInfo
509 Sequence
< OUString
> XMLSignature_GpgImpl::impl_getSupportedServiceNames() {
510 ::osl::Guard
< ::osl::Mutex
> aGuard( ::osl::Mutex::getGlobalMutex() ) ;
511 Sequence
<OUString
> seqServiceNames
{ "com.sun.star.xml.crypto.XMLSignature" };
512 return seqServiceNames
;
515 OUString
XMLSignature_GpgImpl::impl_getImplementationName() {
516 return OUString("com.sun.star.xml.security.bridge.xmlsec.XMLSignature_GpgImpl") ;
519 //Helper for registry
520 Reference
< XInterface
> SAL_CALL
XMLSignature_GpgImpl::impl_createInstance( const Reference
< XMultiServiceFactory
>& ) {
521 return Reference
< XInterface
>( *new XMLSignature_GpgImpl
) ;
524 Reference
< XSingleServiceFactory
> XMLSignature_GpgImpl::impl_createFactory( const Reference
< XMultiServiceFactory
>& aServiceManager
) {
525 return ::cppu::createSingleFactory( aServiceManager
, impl_getImplementationName() , impl_createInstance
, impl_getSupportedServiceNames() ) ;
528 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */