Reducing header overuse, non-inlining selected methods (CPPOST-35).
[shibboleth/cpp-opensaml.git] / saml / signature / SignatureProfileValidator.cpp
1 /*
2  *  Copyright 2001-2009 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * SignatureProfileValidator.cpp
19  * 
20  * SAML-specific signature verification 
21  */
22  
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "signature/SignatureProfileValidator.h"
26
27 #include <xmltooling/signature/Signature.h>
28
29 #include <xercesc/util/XMLUniDefs.hpp>
30 #include <xsec/dsig/DSIGReference.hpp>
31 #include <xsec/dsig/DSIGSignature.hpp>
32 #include <xsec/dsig/DSIGTransformC14n.hpp>
33 #include <xsec/dsig/DSIGTransformList.hpp>
34
35 using namespace opensaml;
36 using namespace xmlsignature;
37 using namespace xmltooling;
38 using namespace std;
39
40 void SignatureProfileValidator::validate(const XMLObject* xmlObject) const
41 {
42     const Signature* sigObj=dynamic_cast<const Signature*>(xmlObject);
43     if (!sigObj)
44         throw ValidationException("Validator only applies to Signature objects.");
45     validateSignature(*sigObj);
46 }
47
48 void SignatureProfileValidator::validateSignature(const Signature& sigObj) const
49 {
50     DSIGSignature* sig=sigObj.getXMLSignature();
51     if (!sig)
52         throw ValidationException("Signature does not exist yet.");
53
54     const SignableObject* signableObj=dynamic_cast<const SignableObject*>(sigObj.getParent());
55     if (!signableObj)
56         throw ValidationException("Signature is not a child of a signable SAML object.");
57     
58     bool valid=false;
59     DSIGReferenceList* refs=sig->getReferenceList();
60     if (refs && refs->getSize()==1) {
61         DSIGReference* ref=refs->item(0);
62         if (ref) {
63             const XMLCh* URI=ref->getURI();
64             const XMLCh* ID=signableObj->getXMLID();
65             if (URI==NULL || *URI==0 || (*URI==chPound && ID && !XMLString::compareString(URI+1,ID))) {
66                 DSIGTransformList* tlist=ref->getTransforms();
67                 if (tlist->getSize() <= 2) { 
68                     for (unsigned int i=0; tlist && i<tlist->getSize(); i++) {
69                         if (tlist->item(i)->getTransformType()==TRANSFORM_ENVELOPED_SIGNATURE)
70                             valid=true;
71                         else if (tlist->item(i)->getTransformType()!=TRANSFORM_EXC_C14N &&
72                                  tlist->item(i)->getTransformType()!=TRANSFORM_C14N) {
73                             valid=false;
74                             break;
75                         }
76                     }
77                 }
78             }
79         }
80     }
81     
82     if (!valid)
83         throw ValidationException("Invalid signature profile for SAML object.");
84 }