Convert ENDLINE refs to eol.
[shibboleth/cpp-sp.git] / siterefresh / siterefresh.cpp
1 /*
2  *  Copyright 2001-2005 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 /* siterefresh.cpp - command-line tool to refresh and verify metadata
18
19    Scott Cantor
20    5/12/03
21
22    $Id$
23 */
24
25 #include <shib-target/shib-target.h>
26
27 #if defined (_MSC_VER) || defined(__BORLANDC__)
28 # include "config_win32.h"
29 #else
30 # include "config.h"
31 #endif
32
33 #if defined(HAVE_LOG4SHIB)
34 # include <log4shib/Category.hh>
35 # include <log4shib/OstreamAppender.hh>
36 namespace siterefresh {
37     namespace logging = log4shib;
38 };
39 #elif defined(HAVE_LOG4CPP)
40 # include <log4cpp/Category.hh>
41 # include <log4cpp/OstreamAppender.hh>
42 namespace siterefresh {
43     namespace logging = log4cpp;
44 };
45 #else
46 # error "Supported logging library not available."
47 #endif
48
49 #include <fstream>
50 #include <xercesc/framework/URLInputSource.hpp>
51 #include <xercesc/framework/StdInInputSource.hpp>
52 #include <xsec/enc/XSECCryptoProvider.hpp>
53 #include <xsec/enc/XSECKeyInfoResolverDefault.hpp>
54 #include <xsec/enc/XSECCryptoException.hpp>
55 #include <xsec/enc/OpenSSL/OpenSSLCryptoX509.hpp>
56 #include <xsec/enc/OpenSSL/OpenSSLCryptoKeyRSA.hpp>
57 #include <xsec/framework/XSECProvider.hpp>
58 #include <xsec/framework/XSECException.hpp>
59 #include <xsec/dsig/DSIGTransformC14n.hpp>
60 #include <xsec/dsig/DSIGReference.hpp>
61 #include <xsec/dsig/DSIGTransformList.hpp>
62
63 using namespace std;
64 using namespace saml;
65 using namespace shibboleth;
66 using namespace siterefresh::logging;
67
68 static const XMLCh TRUST_NS[] = // urn:mace:shibboleth:trust:1.0
69 { chLatin_u, chLatin_r, chLatin_n, chColon, chLatin_m, chLatin_a, chLatin_c, chLatin_e, chColon,
70   chLatin_s, chLatin_h, chLatin_i, chLatin_b, chLatin_b, chLatin_o, chLatin_l, chLatin_e, chLatin_t, chLatin_h, chColon,
71   chLatin_t, chLatin_r, chLatin_u, chLatin_s, chLatin_t, chColon, chDigit_1, chPeriod, chDigit_0, chNull
72 };
73
74 static const XMLCh TRUST_SCHEMA_ID[] = // shibboleth-trust-1.0.xsd
75 { chLatin_s, chLatin_h, chLatin_i, chLatin_b, chLatin_b, chLatin_o, chLatin_l, chLatin_e, chLatin_t, chLatin_h, chDash,
76   chLatin_t, chLatin_r, chLatin_u, chLatin_s, chLatin_t, chDash, chDigit_1, chPeriod, chDigit_0, chPeriod,
77   chLatin_x, chLatin_s, chLatin_d, chNull
78 };
79
80 static const XMLCh SHIB_SCHEMA_ID[] = // shibboleth.xsd
81 { chLatin_s, chLatin_h, chLatin_i, chLatin_b, chLatin_b, chLatin_o, chLatin_l, chLatin_e, chLatin_t, chLatin_h, chPeriod,
82   chLatin_x, chLatin_s, chLatin_d, chNull
83 };
84
85 void verifySignature(DOMDocument* doc, DOMNode* sigNode, const char* cert=NULL)
86 {
87     Category& log=Category::getInstance("siterefresh");
88     static const XMLCh ID[]={chLatin_I, chLatin_D, chNull};
89
90     // Load the signature.
91     XSECProvider prov;
92     DSIGSignature* sig=NULL;
93     try {
94         sig=prov.newSignatureFromDOM(doc,sigNode);
95         sig->load();
96
97         bool valid=false;
98
99         // Verify the signature coverage.
100         DSIGReferenceList* refs=sig->getReferenceList();
101         if (sig->getSignatureMethod()==SIGNATURE_RSA && refs && refs->getSize()==1) {
102             DSIGReference* ref=refs->item(0);
103             if (ref) {
104                 const XMLCh* URI=ref->getURI();
105                 if (!URI || !*URI || (*URI==chPound &&
106                         !XMLString::compareString(&URI[1],static_cast<DOMElement*>(sigNode->getParentNode())->getAttributeNS(NULL,ID)))) {
107                     DSIGTransformList* tlist=ref->getTransforms();
108                     for (unsigned int i=0; tlist && i<tlist->getSize(); i++) {
109                         if (tlist->item(i)->getTransformType()==TRANSFORM_ENVELOPED_SIGNATURE)
110                             valid=true;
111                         else if (tlist->item(i)->getTransformType()!=TRANSFORM_EXC_C14N) {
112                             valid=false;
113                             break;
114                         }
115                     }
116                 }
117             }
118         }
119     
120         if (!valid) {
121             log.error("detected an invalid signature profile");
122             throw InvalidCryptoException("detected an invalid signature profile");
123         }
124
125         if (cert) {
126             // Load the certificate, stripping the header and trailer.
127             string certbuf,line;
128             auto_ptr<OpenSSLCryptoX509> x509(new OpenSSLCryptoX509());
129             bool sawheader=false;
130             ifstream infile(cert);
131             while (!getline(infile,line).fail()) {
132                 if (line.find("CERTIFICATE-----")==string::npos) {
133                     if (sawheader)
134                         certbuf+=line + '\n';
135                 }
136                 else
137                     sawheader=true;
138             }
139             x509->loadX509Base64Bin(certbuf.data(),certbuf.length());
140             sig->setSigningKey(x509->clonePublicKey());
141         }
142         else {
143             log.warn("verifying with key inside signature, this is a sanity check but provides no security");
144             XSECKeyInfoResolverDefault resolver;
145             sig->setKeyInfoResolver(resolver.clone());
146         }
147         
148         if (!sig->verify()) {
149             log.error("detected an invalid signature value");
150             throw InvalidCryptoException("detected an invalid signature value");
151         }
152
153         prov.releaseSignature(sig);
154     }
155     catch(...) {
156         if (sig)
157             prov.releaseSignature(sig);
158         throw;
159     }
160 }
161
162 int main(int argc,char* argv[])
163 {
164     int ret=0;
165     SAMLConfig& conf=SAMLConfig::getConfig();
166     bool verify=true;
167     char* url_param=NULL;
168     char* cert_param=NULL;
169     char* out_param=NULL;
170     char* path=getenv("SHIBSCHEMAS");
171     char* ns_param=NULL;
172     char* name_param=NULL;
173
174     for (int i=1; i<argc; i++) {
175         if (!strcmp(argv[i],"--schema") && i+1<argc)
176             path=argv[++i];
177         else if (!strcmp(argv[i],"--url") && i+1<argc)
178             url_param=argv[++i];
179         else if (!strcmp(argv[i],"--noverify"))
180             verify=false;
181         else if (!strcmp(argv[i],"--cert") && i+1<argc)
182             cert_param=argv[++i];
183         else if (!strcmp(argv[i],"--out") && i+1<argc)
184             out_param=argv[++i];
185         else if (!strcmp(argv[i],"--rootns") && i+1<argc)
186             ns_param=argv[++i];
187         else if (!strcmp(argv[i],"--rootname") && i+1<argc)
188             name_param=argv[++i];
189     }
190
191     if (verify && !cert_param) {
192         cout << "usage: " << argv[0] << endl <<
193             "\t--url <URL of metadata>" << endl <<
194             "\t--noverify OR --cert <PEM Certificate>" << endl <<
195             "\t[--out <pathname to copy data to>]" << endl <<
196             "\t[--schema <schema path>]" << endl <<
197             "\t[--rootns <root element XML namespace>]" << endl <<
198             "\t[--rootname <root element name>]" << endl;
199         return -100;
200     }
201
202     static const XMLCh Trust[] = { chLatin_T, chLatin_r, chLatin_u, chLatin_s, chLatin_t, chNull };
203     static const XMLCh SiteGroup[] =
204     { chLatin_S, chLatin_i, chLatin_t, chLatin_e, chLatin_G, chLatin_r, chLatin_o, chLatin_u, chLatin_p, chNull };
205     static const XMLCh EntitiesDescriptor[] =
206     { chLatin_E, chLatin_n, chLatin_t, chLatin_i, chLatin_t, chLatin_i, chLatin_e, chLatin_s,
207       chLatin_D, chLatin_e, chLatin_s, chLatin_c, chLatin_r, chLatin_i, chLatin_p, chLatin_t, chLatin_o, chLatin_r, chNull };
208     static const XMLCh EntityDescriptor[] =
209     { chLatin_E, chLatin_n, chLatin_t, chLatin_i, chLatin_t, chLatin_y,
210       chLatin_D, chLatin_e, chLatin_s, chLatin_c, chLatin_r, chLatin_i, chLatin_p, chLatin_t, chLatin_o, chLatin_r, chNull };
211
212     Category::setRootPriority(Priority::WARN);
213     Category::getRoot().addAppender(new OstreamAppender("default",&cerr));
214     Category& log=Category::getInstance("siterefresh");
215     conf.schema_dir=path ? path : SHIB_SCHEMAS;
216     if (!conf.init())
217         return -10;
218
219     saml::XML::registerSchema(Constants::SHIB_NS,SHIB_SCHEMA_ID);
220     saml::XML::registerSchema(TRUST_NS,TRUST_SCHEMA_ID);
221     saml::XML::registerSchema(shibtarget::XML::SAML2META_NS,shibtarget::XML::SAML2META_SCHEMA_ID);
222     saml::XML::registerSchema(shibtarget::XML::SAML2ASSERT_NS,shibtarget::XML::SAML2ASSERT_SCHEMA_ID);
223     saml::XML::registerSchema(shibtarget::XML::XMLENC_NS,shibtarget::XML::XMLENC_SCHEMA_ID);
224
225     try {
226         // Parse the specified document.
227         saml::XML::Parser p;
228         static XMLCh base[]={chLatin_f, chLatin_i, chLatin_l, chLatin_e, chColon, chForwardSlash, chForwardSlash, chForwardSlash, chNull};
229         DOMDocument* doc=NULL;
230         if (url_param && *url_param) {
231             URLInputSource src(base,url_param);
232             Wrapper4InputSource dsrc(&src,false);
233             doc=p.parse(dsrc);
234         }
235         else {
236             StdInInputSource src;
237             Wrapper4InputSource dsrc(&src,false);
238             doc=p.parse(dsrc);
239         }
240     
241         // Check root element.
242         if (ns_param && name_param) {
243             auto_ptr_XMLCh ns(ns_param);
244             auto_ptr_XMLCh name(name_param);
245             if (!saml::XML::isElementNamed(doc->getDocumentElement(),ns.get(),name.get()))
246                 throw MalformedException(string("Root element does not match specified QName of {") + ns_param + "}:" + name_param);
247         }
248         else if (!saml::XML::isElementNamed(doc->getDocumentElement(),Constants::SHIB_NS,SiteGroup) &&
249                  !saml::XML::isElementNamed(doc->getDocumentElement(),shibtarget::XML::SAML2META_NS,EntitiesDescriptor) &&
250                  !saml::XML::isElementNamed(doc->getDocumentElement(),shibtarget::XML::SAML2META_NS,EntityDescriptor) &&
251                  !saml::XML::isElementNamed(doc->getDocumentElement(),TRUST_NS,Trust))
252             throw MalformedException("Root element does not signify a known metadata or trust format");
253
254         // Verify the "root" signature.
255         DOMElement* rootSig=saml::XML::getFirstChildElement(doc->getDocumentElement(),saml::XML::XMLSIG_NS,L(Signature));
256         if (verify) {
257             if (rootSig) {
258                 verifySignature(doc,rootSig,cert_param);
259             }
260             else {
261                 doc->release();
262                 log.error("unable to locate root signature to verify in document");
263                 throw InvalidCryptoException("Verification implies that the document must be signed");
264             }
265         }
266         else if (rootSig) {
267             log.warn("verification of signer disabled, make sure you trust the source of this file!");
268             verifySignature(doc,rootSig,cert_param);
269         }
270         else {
271             log.warn("verification disabled, and file is unsigned!");
272         }
273
274         // Verify all signatures.
275         DOMNodeList* siglist=doc->getElementsByTagNameNS(saml::XML::XMLSIG_NS,L(Signature));
276         for (XMLSize_t i=0; siglist && i<siglist->getLength(); i++)
277             verifySignature(doc,siglist->item(i),cert_param);
278
279         if (out_param) {
280             // Output the data to the specified file.
281             ofstream outfile(out_param);
282             outfile << *(doc->getDocumentElement());
283         }
284         else
285             cout << *(doc->getDocumentElement());
286         doc->release();
287     }
288     catch (InvalidCryptoException&) {
289         ret=-1;
290     }
291     catch(SAMLException& e) {
292         log.errorStream() << "caught a SAML exception: " << e.what() << siterefresh::logging::eol;
293         ret=-2;
294     }
295     catch(XMLException& e) {
296         auto_ptr_char temp(e.getMessage());
297         log.errorStream() << "caught an XML exception: " << temp.get() << siterefresh::logging::eol;
298         ret=-3;
299     }
300     catch(XSECException& e) {
301         auto_ptr_char temp(e.getMsg());
302         log.errorStream() << "caught an XMLSec exception: " << temp.get() << siterefresh::logging::eol;
303         ret=-4;
304     }
305     catch(XSECCryptoException& e) {
306         log.errorStream() << "caught an XMLSecCrypto exception: " << e.getMsg() << siterefresh::logging::eol;
307         ret=-5;
308     }
309     catch(...) {
310         log.errorStream() << "caught an unknown exception" << siterefresh::logging::eol;
311         ret=-6;
312     }
313
314     conf.term();
315     return ret;
316 }