Imported Upstream version 2.2.1+dfsg
[shibboleth/sp.git] / shibsp / handler / impl / WAYFSessionInitiator.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  * WAYFSessionInitiator.cpp
19  * 
20  * Shibboleth WAYF support.
21  */
22
23 #include "internal.h"
24 #include "Application.h"
25 #include "exceptions.h"
26 #include "SPRequest.h"
27 #include "handler/AbstractHandler.h"
28 #include "handler/SessionInitiator.h"
29
30 #include <ctime>
31 #include <xmltooling/XMLToolingConfig.h>
32 #include <xmltooling/util/URLEncoder.h>
33
34 using namespace shibsp;
35 using namespace opensaml;
36 using namespace xmltooling;
37 using namespace std;
38
39 namespace shibsp {
40
41 #if defined (_MSC_VER)
42     #pragma warning( push )
43     #pragma warning( disable : 4250 )
44 #endif
45
46     class SHIBSP_DLLLOCAL WAYFSessionInitiator : public SessionInitiator, public AbstractHandler
47     {
48     public:
49         WAYFSessionInitiator(const DOMElement* e, const char* appId)
50                 : AbstractHandler(e, Category::getInstance(SHIBSP_LOGCAT".SessionInitiator.WAYF")), m_url(NULL) {
51             pair<bool,const char*> url = getString("URL");
52             if (!url.first)
53                 throw ConfigurationException("WAYF SessionInitiator requires a URL property.");
54             m_url = url.second;
55         }
56         virtual ~WAYFSessionInitiator() {}
57         
58         pair<bool,long> run(SPRequest& request, string& entityID, bool isHandler=true) const;
59
60     private:
61         const char* m_url;
62     };
63
64 #if defined (_MSC_VER)
65     #pragma warning( pop )
66 #endif
67
68     SessionInitiator* SHIBSP_DLLLOCAL WAYFSessionInitiatorFactory(const pair<const DOMElement*,const char*>& p)
69     {
70         return new WAYFSessionInitiator(p.first, p.second);
71     }
72
73 };
74
75 pair<bool,long> WAYFSessionInitiator::run(SPRequest& request, string& entityID, bool isHandler) const
76 {
77     // The IdP CANNOT be specified for us to run. Otherwise, we'd be redirecting to a WAYF
78     // anytime the IdP's metadata was wrong.
79     if (!entityID.empty())
80         return make_pair(false,0L);
81
82     string target;
83     string postData;
84     const char* option;
85     const Handler* ACS=NULL;
86     const Application& app=request.getApplication();
87
88     if (isHandler) {
89         option=request.getParameter("acsIndex");
90         if (option) {
91             ACS=app.getAssertionConsumerServiceByIndex(atoi(option));
92             if (!ACS)
93                 request.log(SPRequest::SPWarn, "invalid acsIndex specified in request, using default ACS location");
94         }
95
96         option = request.getParameter("target");
97         if (option)
98             target = option;
99         recoverRelayState(request.getApplication(), request, request, target, false);
100     }
101     else {
102         // We're running as a "virtual handler" from within the filter.
103         // The target resource is the current one and everything else is defaulted.
104         target=request.getRequestURL();
105     }
106     
107     // Since we're not passing by index, we need to fully compute the return URL.
108     if (!ACS) {
109         pair<bool,unsigned int> index = getUnsignedInt("defaultACSIndex");
110         if (index.first) {
111             ACS = app.getAssertionConsumerServiceByIndex(index.second);
112             if (!ACS)
113                 request.log(SPRequest::SPWarn, "invalid defaultACSIndex, using default ACS location");
114         }
115         if (!ACS)
116             ACS = app.getDefaultAssertionConsumerService();
117     }
118
119     // Validate the ACS for use with this protocol.
120     pair<bool,const char*> ACSbinding = ACS ? ACS->getString("Binding") : pair<bool,const char*>(false,NULL);
121     if (ACSbinding.first) {
122         pair<bool,const char*> compatibleBindings = getString("compatibleBindings");
123         if (compatibleBindings.first && strstr(compatibleBindings.second, ACSbinding.second) == NULL) {
124             m_log.info("configured or requested ACS has non-SAML 1.x binding");
125             return make_pair(false,0L);
126         }
127         else if (strcmp(ACSbinding.second, samlconstants::SAML1_PROFILE_BROWSER_POST) &&
128                  strcmp(ACSbinding.second, samlconstants::SAML1_PROFILE_BROWSER_ARTIFACT)) {
129             m_log.info("configured or requested ACS has non-SAML 1.x binding");
130             return make_pair(false,0L);
131         }
132     }
133
134     m_log.debug("sending request to WAYF (%s)", m_url);
135
136     // Compute the ACS URL. We add the ACS location to the base handlerURL.
137     string ACSloc=request.getHandlerURL(target.c_str());
138     pair<bool,const char*> loc=ACS ? ACS->getString("Location") : pair<bool,const char*>(false,NULL);
139     if (loc.first) ACSloc+=loc.second;
140
141     if (isHandler) {
142         // We may already have RelayState set if we looped back here,
143         // but just in case target is a resource, we reset it back.
144         option = request.getParameter("target");
145         if (option)
146             target = option;
147     }
148     preserveRelayState(request.getApplication(), request, target);
149     if (!isHandler)
150         preservePostData(request.getApplication(), request, request, target.c_str());
151
152     // WAYF requires a target value.
153     if (target.empty())
154         target = "default";
155
156     char timebuf[16];
157     sprintf(timebuf,"%lu",time(NULL));
158     const URLEncoder* urlenc = XMLToolingConfig::getConfig().getURLEncoder();
159     string req=string(m_url) + (strchr(m_url,'?') ? '&' : '?') + "shire=" + urlenc->encode(ACSloc.c_str()) +
160         "&time=" + timebuf + "&target=" + urlenc->encode(target.c_str()) +
161         "&providerId=" + urlenc->encode(app.getString("entityID").second);
162
163     return make_pair(true, request.sendRedirect(req.c_str()));
164 }