Allow for unsigned artifact response.
[shibboleth/cpp-sp.git] / shibsp / handler / impl / SAML1Consumer.cpp
1 /*
2  *  Copyright 2001-2007 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  * SAML1Consumer.cpp
19  * 
20  * SAML 1.x assertion consumer service 
21  */
22
23 #include "internal.h"
24 #include "Application.h"
25 #include "exceptions.h"
26 #include "ServiceProvider.h"
27 #include "SessionCache.h"
28 #include "attribute/resolver/ResolutionContext.h"
29 #include "handler/AssertionConsumerService.h"
30
31 #include <saml/saml1/core/Assertions.h>
32 #include <saml/saml1/core/Protocols.h>
33 #include <saml/saml1/profile/BrowserSSOProfileValidator.h>
34 #include <saml/saml2/metadata/Metadata.h>
35
36 using namespace shibsp;
37 using namespace opensaml::saml1;
38 using namespace opensaml::saml1p;
39 using namespace opensaml;
40 using namespace xmltooling;
41 using namespace log4cpp;
42 using namespace std;
43 using saml2::NameID;
44 using saml2::NameIDBuilder;
45 using saml2md::EntityDescriptor;
46
47 namespace shibsp {
48
49 #if defined (_MSC_VER)
50     #pragma warning( push )
51     #pragma warning( disable : 4250 )
52 #endif
53     
54     class SHIBSP_DLLLOCAL SAML1Consumer : public AssertionConsumerService
55     {
56     public:
57         SAML1Consumer(const DOMElement* e, const char* appId)
58                 : AssertionConsumerService(e, appId, Category::getInstance(SHIBSP_LOGCAT".SAML1")) {
59             m_post = XMLString::equals(getString("Binding").second, samlconstants::SAML1_PROFILE_BROWSER_POST);
60         }
61         virtual ~SAML1Consumer() {}
62         
63     private:
64         string implementProtocol(
65             const Application& application,
66             const HTTPRequest& httpRequest,
67             SecurityPolicy& policy,
68             const PropertySet* settings,
69             const XMLObject& xmlObject
70             ) const;
71
72         bool m_post;
73     };
74
75 #if defined (_MSC_VER)
76     #pragma warning( pop )
77 #endif
78
79     Handler* SHIBSP_DLLLOCAL SAML1ConsumerFactory(const pair<const DOMElement*,const char*>& p)
80     {
81         return new SAML1Consumer(p.first, p.second);
82     }
83     
84 };
85
86 string SAML1Consumer::implementProtocol(
87     const Application& application,
88     const HTTPRequest& httpRequest,
89     SecurityPolicy& policy,
90     const PropertySet* settings,
91     const XMLObject& xmlObject
92     ) const
93 {
94     // Implementation of SAML 1.x SSO profile(s).
95     m_log.debug("processing message against SAML 1.x SSO profile");
96
97     // With the binding aspects now moved out to the MessageDecoder,
98     // the focus here is on the assertion content. For SAML 1.x POST,
99     // all the security comes from the protocol layer, and signing
100     // the assertion isn't sufficient. So we can check the policy
101     // object now and bail if it's not a secure message.
102     if (m_post && !policy.isSecure())
103         throw SecurityPolicyException("Security of SAML 1.x SSO POST response not established.");
104         
105     // Remember whether we already established trust.
106     bool alreadySecured = policy.isSecure();
107
108     // Check for errors...this will throw if it's not a successful message.
109     checkError(&xmlObject);
110
111     const Response* response = dynamic_cast<const Response*>(&xmlObject);
112     if (!response)
113         throw FatalProfileException("Incoming message was not a samlp:Response.");
114
115     const vector<saml1::Assertion*>& assertions = response->getAssertions();
116     if (assertions.empty())
117         throw FatalProfileException("Incoming message contained no SAML assertions.");
118
119     // Maintain list of "legit" tokens to feed to SP subsystems.
120     const AuthenticationStatement* ssoStatement=NULL;
121     vector<const opensaml::Assertion*> tokens;
122
123     // Profile validator.
124     time_t now = time(NULL);
125     BrowserSSOProfileValidator ssoValidator(application.getAudiences(), now);
126
127     // With this flag on, we ignore any unsigned assertions.
128     pair<bool,bool> flag = settings->getBool("signedAssertions");
129
130     for (vector<saml1::Assertion*>::const_iterator a = assertions.begin(); a!=assertions.end(); ++a) {
131         // Skip unsigned assertion?
132         if (!(*a)->getSignature() && flag.first && flag.second) {
133             m_log.warn("found unsigned assertion in SAML response, ignoring it per signedAssertions policy");
134             continue;
135         }
136
137         try {
138             // We clear the security flag, so we can tell whether the token was secured on its own.
139             policy.setSecure(false);
140             
141             // Run the policy over the assertion. Handles issuer consistency, replay, freshness,
142             // and signature verification, assuming the relevant rules are configured.
143             policy.evaluate(*(*a));
144             
145             // If no security is in place now, we kick it.
146             if (!alreadySecured && !policy.isSecure())
147                 throw SecurityPolicyException("Unable to establish security of the assertion.");
148
149             // Now do profile and core semantic validation to ensure we can use it for SSO.
150             ssoValidator.validateAssertion(*(*a));
151
152             // Track it as a valid token.
153             tokens.push_back(*a);
154
155             // Save off the first valid SSO statement.
156             if (!ssoStatement && !(*a)->getAuthenticationStatements().empty())
157                 ssoStatement = (*a)->getAuthenticationStatements().front();
158         }
159         catch (exception& ex) {
160             m_log.warn("detected a problem with assertion: %s", ex.what());
161         }
162     }
163
164     if (!ssoStatement)
165         throw FatalProfileException("A valid authentication statement was not found in the incoming message.");
166
167     // Address checking.
168     SubjectLocality* locality = ssoStatement->getSubjectLocality();
169     if (locality && locality->getIPAddress()) {
170         auto_ptr_char ip(locality->getIPAddress());
171         checkAddress(application, httpRequest, ip.get());
172     }
173
174     m_log.debug("SSO profile processing completed successfully");
175
176     // We've successfully "accepted" at least one SSO token, along with any additional valid tokens.
177     // To complete processing, we need to resolve attributes and then create the session.
178
179     // First, normalize the SAML 1.x NameIdentifier...
180     auto_ptr<NameID> nameid(NameIDBuilder::buildNameID());
181     NameIdentifier* n = ssoStatement->getSubject()->getNameIdentifier();
182     if (n) {
183         nameid->setName(n->getName());
184         nameid->setFormat(n->getFormat());
185         nameid->setNameQualifier(n->getNameQualifier());
186     }
187
188     const EntityDescriptor* issuerMetadata = dynamic_cast<const EntityDescriptor*>(policy.getIssuerMetadata()->getParent());
189     auto_ptr<ResolutionContext> ctx(
190         resolveAttributes(application, httpRequest, issuerMetadata, *nameid.get(), &tokens)
191         );
192
193     // Copy over any new tokens, but leave them in the context for cleanup.
194     tokens.insert(tokens.end(), ctx->getResolvedAssertions().begin(), ctx->getResolvedAssertions().end());
195
196     // Now we have to extract the authentication details for session setup.
197
198     // Session expiration for SAML 1.x is purely SP-driven, and the method is mapped to a ctx class.
199     const PropertySet* sessionProps = application.getPropertySet("Sessions");
200     pair<bool,unsigned int> lifetime = sessionProps ? sessionProps->getUnsignedInt("lifetime") : make_pair(true,28800);
201     if (!lifetime.first)
202         lifetime.second = 28800;
203     auto_ptr_char authnInstant(
204         ssoStatement->getAuthenticationInstant() ? ssoStatement->getAuthenticationInstant()->getRawData() : NULL
205         );
206     auto_ptr_char authnMethod(ssoStatement->getAuthenticationMethod());
207
208     vector<shibsp::Attribute*>& attrs = ctx->getResolvedAttributes();
209     string key = application.getServiceProvider().getSessionCache()->insert(
210         lifetime.second ? now + lifetime.second : 0,
211         application,
212         httpRequest.getRemoteAddr().c_str(),
213         issuerMetadata,
214         *nameid.get(),
215         authnInstant.get(),
216         NULL,
217         authnMethod.get(),
218         NULL,
219         &tokens,
220         &attrs
221         );
222     attrs.clear();  // Attributes are owned by cache now.
223     return key;
224 }