First set of logout base classes and non-building draft of SP-initiated logout.
[shibboleth/sp.git] / shibsp / SessionCache.h
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  * @file shibsp/SessionCache.h
19  * 
20  * Caches and manages user sessions
21  */
22
23 #ifndef __shibsp_sessioncache_h__
24 #define __shibsp_sessioncache_h__
25
26 #include <shibsp/base.h>
27
28 #ifndef SHIBSP_LITE
29 # include <saml/saml1/core/Assertions.h>
30 # include <saml/saml2/metadata/Metadata.h>
31 #endif
32 #include <xmltooling/Lockable.h>
33
34 namespace shibsp {
35
36     class SHIBSP_API Application;
37     class SHIBSP_API Attribute;
38
39     class SHIBSP_API Session : public virtual xmltooling::Lockable
40     {
41         MAKE_NONCOPYABLE(Session);
42     protected:
43         Session() {}
44         virtual ~Session() {}
45     public:
46         /**
47          * Returns the session key.
48          *
49          * @return unique ID of session
50          */
51         virtual const char* getID() const=0;
52
53         /**
54          * Returns the address of the client associated with the session.
55          * 
56          * @return  the client's network address
57          */
58         virtual const char* getClientAddress() const=0;
59
60         /**
61          * Returns the entityID of the IdP that initiated the session.
62          * 
63          * @return the IdP's entityID
64          */
65         virtual const char* getEntityID() const=0;
66
67         /**
68          * Returns the protocol family used to initiate the session.
69          *
70          * @return the protocol constant that represents the general SSO protocol used
71          */
72         virtual const char* getProtocol() const=0;
73
74         /**
75          * Returns the UTC timestamp on the authentication event at the IdP.
76          * 
77          * @return  the UTC authentication timestamp 
78          */
79         virtual const char* getAuthnInstant() const=0;
80
81 #ifndef SHIBSP_LITE
82         /**
83          * Returns the NameID associated with a session.
84          * 
85          * <p>SAML 1.x identifiers will be promoted to the 2.0 type.
86          * 
87          * @return a SAML 2.0 NameID associated with the session, if any
88          */
89         virtual const opensaml::saml2::NameID* getNameID() const=0;
90 #endif
91
92         /**
93          * Returns the SessionIndex provided with the session.
94          * 
95          * @return the SessionIndex from the original SSO assertion, if any
96          */
97         virtual const char* getSessionIndex() const=0;
98
99         /**
100          * Returns a URI containing an AuthnContextClassRef provided with the session.
101          * 
102          * <p>SAML 1.x AuthenticationMethods will be returned as class references.
103          * 
104          * @return  a URI identifying the authentication context class
105          */
106         virtual const char* getAuthnContextClassRef() const=0;
107
108         /**
109          * Returns a URI containing an AuthnContextDeclRef provided with the session.
110          * 
111          * @return  a URI identifying the authentication context declaration
112          */
113         virtual const char* getAuthnContextDeclRef() const=0;
114         
115         /**
116          * Returns the resolved attributes associated with the session.
117          * 
118          * @return an immutable map of attributes keyed by attribute ID
119          */
120         virtual const std::multimap<std::string,Attribute*>& getAttributes() const=0;
121         
122         /**
123          * Returns the identifiers of the assertion(s) cached by the session.
124          * 
125          * <p>The SSO assertion is guaranteed to be first in the set.
126          * 
127          * @return  an immutable array of AssertionID values
128          */
129         virtual const std::vector<const char*>& getAssertionIDs() const=0;
130         
131 #ifndef SHIBSP_LITE
132         /**
133          * Adds additional attributes to the session.
134          * 
135          * @param attributes    reference to an array of Attributes to cache (will be freed by cache)
136          */
137         virtual void addAttributes(const std::vector<Attribute*>& attributes)=0;
138
139         /**
140          * Returns an assertion cached by the session.
141          * 
142          * @param id    identifier of the assertion to retrieve
143          * @return pointer to assertion, or NULL
144          */
145         virtual const opensaml::Assertion* getAssertion(const char* id) const=0;
146         
147         /**
148          * Stores an assertion in the session.
149          * 
150          * @param assertion pointer to an assertion to cache (will be freed by cache)
151          */
152         virtual void addAssertion(opensaml::Assertion* assertion)=0;        
153 #endif
154     };
155     
156     /**
157      * Creates and manages user sessions
158      * 
159      * The cache abstracts a persistent (meaning across requests) cache of
160      * instances of the Session interface. Creation of new entries and entry
161      * lookup are confined to this interface to enable the implementation to
162      * remote and/or optimize calls by implementing custom versions of the
163      * Session interface as required.
164      */
165     class SHIBSP_API SessionCache
166     {
167         MAKE_NONCOPYABLE(SessionCache);
168     protected:
169     
170         /**
171          * Constructor
172          * 
173          * <p>The following XML content is supported to configure the cache:
174          * <dl>
175          *  <dt>cacheTimeout</dt>
176          *  <dd>attribute containing maximum lifetime in seconds for unused sessions to remain in cache</dd>
177          * </dl>
178          * 
179          * @param e root of DOM tree to configure the cache
180          */
181         SessionCache(const xercesc::DOMElement* e);
182         
183         /** maximum lifetime in seconds for unused sessions to be cached */
184         unsigned long m_cacheTimeout;
185         
186     public:
187         virtual ~SessionCache() {}
188         
189 #ifndef SHIBSP_LITE
190         /**
191          * Inserts a new session into the cache.
192          * 
193          * <p>The SSO tokens and Attributes remain owned by the caller and are copied by the cache.
194          * 
195          * @param expires           expiration time of session
196          * @param application       reference to Application that owns the Session
197          * @param client_addr       network address of client
198          * @param issuer            issuing metadata of assertion issuer, if known
199          * @param protocol          protocol family used to initiate the session
200          * @param nameid            principal identifier, normalized to SAML 2, if any
201          * @param authn_instant     UTC timestamp of authentication at IdP, if known
202          * @param session_index     index of session between principal and IdP, if any
203          * @param authncontext_class    method/category of authentication event, if known
204          * @param authncontext_decl specifics of authentication event, if known
205          * @param tokens            assertions to cache with session, if any
206          * @param attributes        optional map of resolved Attributes to cache with session
207          * @return  newly created session's key
208          */
209         virtual std::string insert(
210             time_t expires,
211             const Application& application,
212             const char* client_addr=NULL,
213             const opensaml::saml2md::EntityDescriptor* issuer=NULL,
214             const XMLCh* protocol=NULL,
215             const opensaml::saml2::NameID* nameid=NULL,
216             const XMLCh* authn_instant=NULL,
217             const XMLCh* session_index=NULL,
218             const XMLCh* authncontext_class=NULL,
219             const XMLCh* authncontext_decl=NULL,
220             const std::vector<const opensaml::Assertion*>* tokens=NULL,
221             const std::multimap<std::string,Attribute*>* attributes=NULL
222             )=0;
223
224         /**
225          * Deletes an existing session or sessions.
226          * 
227          * @param issuer        source of session(s)
228          * @param nameid        name identifier associated with the session(s) to terminate
229          * @param index         index of session, or NULL for all sessions associated with other parameters
230          * @param application   reference to Application that owns the session(s)
231          * @param sessions      on exit, contains the IDs of the matching sessions removed
232          */
233         virtual void remove(
234             const opensaml::saml2md::EntityDescriptor* issuer,
235             const opensaml::saml2::NameID& nameid,
236             const char* index,
237             const Application& application,
238             std::vector<std::string>& sessions
239             )=0;
240 #endif
241
242         /**
243          * Locates an existing session.
244          * 
245          * <p>If the client address is supplied, then a check will be performed against
246          * the address recorded in the record.
247          * 
248          * @param key           session key
249          * @param application   reference to Application that owns the Session
250          * @param client_addr   network address of client (if known)
251          * @param timeout       inactivity timeout to enforce (0 for none, NULL to bypass check/update of last access)
252          * @return  pointer to locked Session, or NULL
253          */
254         virtual Session* find(
255             const char* key, const Application& application, const char* client_addr=NULL, time_t* timeout=NULL
256             )=0;
257             
258         /**
259          * Deletes an existing session.
260          * 
261          * @param key           session key
262          * @param application   reference to Application that owns the Session
263          */
264         virtual void remove(const char* key, const Application& application)=0;
265     };
266
267 #ifndef SHIBSP_LITE
268     /** SessionCache implementation backed by a StorageService. */
269     #define STORAGESERVICE_SESSION_CACHE    "StorageService"
270 #endif
271
272     /** SessionCache implementation for lite builds that delegates to a remoted version. */
273     #define REMOTED_SESSION_CACHE    "Remoted"
274
275     /**
276      * Registers SessionCache classes into the runtime.
277      */
278     void SHIBSP_API registerSessionCaches();
279 };
280
281 #endif /* __shibsp_sessioncache_h__ */