Imported Upstream version 2.4+dfsg
[shibboleth/sp.git] / shibsp / Application.cpp
1 /*
2  *  Copyright 2001-2010 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  * Application.cpp
19  *
20  * Interface to a Shibboleth Application instance.
21  */
22
23 #include "internal.h"
24 #include "Application.h"
25 #include "SPRequest.h"
26 #include "ServiceProvider.h"
27 #include "attribute/Attribute.h"
28 #include "remoting/ListenerService.h"
29
30 #include <algorithm>
31 #include <xmltooling/util/Threads.h>
32
33 using namespace shibsp;
34 using namespace xmltooling;
35 using namespace std;
36
37 Application::Application(const ServiceProvider* sp) : m_sp(sp), m_lock(RWLock::create())
38 {
39 }
40
41 Application::~Application()
42 {
43     delete m_lock;
44 }
45
46 const ServiceProvider& Application::getServiceProvider() const
47 {
48     return *m_sp;
49 }
50
51 const char* Application::getId() const
52 {
53     pair<bool,const char*> ret = getString("id");
54     return ret.first ? ret.second : "default";
55 }
56
57 pair<string,const char*> Application::getCookieNameProps(const char* prefix, time_t* lifetime) const
58 {
59     static const char* defProps="; path=/";
60
61     if (lifetime)
62         *lifetime = 0;
63     const PropertySet* props=getPropertySet("Sessions");
64     if (props) {
65         if (lifetime) {
66             pair<bool,unsigned int> lt = props->getUnsignedInt("cookieLifetime");
67             if (lt.first)
68                 *lifetime = lt.second;
69         }
70         pair<bool,const char*> p=props->getString("cookieProps");
71         if (!p.first)
72             p.second=defProps;
73         pair<bool,const char*> p2=props->getString("cookieName");
74         if (p2.first)
75             return make_pair(string(prefix) + p2.second,p.second);
76         return make_pair(string(prefix) + getHash(),p.second);
77     }
78
79     // Shouldn't happen, but just in case..
80     return pair<string,const char*>(prefix,defProps);
81 }
82
83 void Application::clearHeader(SPRequest& request, const char* rawname, const char* cginame) const
84 {
85     request.clearHeader(rawname, cginame);
86 }
87
88 void Application::setHeader(SPRequest& request, const char* name, const char* value) const
89 {
90     request.setHeader(name, value);
91 }
92
93 string Application::getSecureHeader(const SPRequest& request, const char* name) const
94 {
95     return request.getSecureHeader(name);
96 }
97
98 void Application::clearAttributeHeaders(SPRequest& request) const
99 {
100     if (SPConfig::getConfig().isEnabled(SPConfig::OutOfProcess)) {
101         for (vector< pair<string,string> >::const_iterator i = m_unsetHeaders.begin(); i!=m_unsetHeaders.end(); ++i)
102             request.clearHeader(i->first.c_str(), i->second.c_str());
103         return;
104     }
105
106     m_lock->rdlock();
107     if (m_unsetHeaders.empty()) {
108         // No headers yet, so we have to request them from the remote half.
109         m_lock->unlock();
110         m_lock->wrlock();
111         if (m_unsetHeaders.empty()) {
112             SharedLock wrlock(m_lock, false);
113             string addr=string(getId()) + "::getHeaders::Application";
114             DDF out,in = DDF(addr.c_str());
115             DDFJanitor jin(in),jout(out);
116             out = getServiceProvider().getListenerService()->send(in);
117             if (out.islist()) {
118                 DDF header = out.first();
119                 while (header.isstring()) {
120                     m_unsetHeaders.push_back(pair<string,string>(header.name(),header.string()));
121                     header = out.next();
122                 }
123             }
124         }
125         else {
126             m_lock->unlock();
127         }
128         m_lock->rdlock();
129     }
130
131     // Now holding read lock.
132     SharedLock unsetLock(m_lock, false);
133     for (vector< pair<string,string> >::const_iterator i = m_unsetHeaders.begin(); i!=m_unsetHeaders.end(); ++i)
134         request.clearHeader(i->first.c_str(), i->second.c_str());
135 }
136
137 const Handler* Application::getAssertionConsumerServiceByProtocol(const XMLCh* protocol, const char* binding) const
138 {
139     auto_ptr_XMLCh b(binding);
140     const vector<const Handler*>& handlers = getAssertionConsumerServicesByBinding(b.get());
141     return handlers.empty() ? nullptr : handlers.front();
142 }