Revise attribute APIs to use vectors in place of multimaps.
[shibboleth/cpp-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 array of attributes
119          */
120         virtual const std::vector<Attribute*>& getAttributes() const=0;
121
122         /**
123          * Returns the resolved attributes associated with the session, indexed by ID
124          * 
125          * @return an immutable map of attributes keyed by attribute ID
126          */
127         virtual const std::multimap<std::string,const Attribute*>& getIndexedAttributes() const=0;
128         
129         /**
130          * Returns the identifiers of the assertion(s) cached by the session.
131          * 
132          * <p>The SSO assertion is guaranteed to be first in the set.
133          * 
134          * @return  an immutable array of AssertionID values
135          */
136         virtual const std::vector<const char*>& getAssertionIDs() const=0;
137         
138 #ifndef SHIBSP_LITE
139         /**
140          * Adds additional attributes to the session.
141          * 
142          * @param attributes    reference to an array of Attributes to cache (will be freed by cache)
143          */
144         virtual void addAttributes(const std::vector<Attribute*>& attributes)=0;
145
146         /**
147          * Returns an assertion cached by the session.
148          * 
149          * @param id    identifier of the assertion to retrieve
150          * @return pointer to assertion, or NULL
151          */
152         virtual const opensaml::Assertion* getAssertion(const char* id) const=0;
153         
154         /**
155          * Stores an assertion in the session.
156          * 
157          * @param assertion pointer to an assertion to cache (will be freed by cache)
158          */
159         virtual void addAssertion(opensaml::Assertion* assertion)=0;        
160 #endif
161     };
162     
163     /**
164      * Creates and manages user sessions
165      * 
166      * The cache abstracts a persistent (meaning across requests) cache of
167      * instances of the Session interface. Creation of new entries and entry
168      * lookup are confined to this interface to enable the implementation to
169      * remote and/or optimize calls by implementing custom versions of the
170      * Session interface as required.
171      */
172     class SHIBSP_API SessionCache
173     {
174         MAKE_NONCOPYABLE(SessionCache);
175     protected:
176     
177         /**
178          * Constructor
179          * 
180          * <p>The following XML content is supported to configure the cache:
181          * <dl>
182          *  <dt>cacheTimeout</dt>
183          *  <dd>attribute containing maximum lifetime in seconds for unused sessions to remain in cache</dd>
184          * </dl>
185          * 
186          * @param e root of DOM tree to configure the cache
187          */
188         SessionCache(const xercesc::DOMElement* e);
189         
190         /** maximum lifetime in seconds for unused sessions to be cached */
191         unsigned long m_cacheTimeout;
192         
193     public:
194         virtual ~SessionCache() {}
195         
196 #ifndef SHIBSP_LITE
197         /**
198          * Inserts a new session into the cache.
199          * 
200          * <p>The SSO tokens and Attributes remain owned by the caller and are copied by the cache.
201          * 
202          * @param expires           expiration time of session
203          * @param application       reference to Application that owns the Session
204          * @param client_addr       network address of client
205          * @param issuer            issuing metadata of assertion issuer, if known
206          * @param protocol          protocol family used to initiate the session
207          * @param nameid            principal identifier, normalized to SAML 2, if any
208          * @param authn_instant     UTC timestamp of authentication at IdP, if known
209          * @param session_index     index of session between principal and IdP, if any
210          * @param authncontext_class    method/category of authentication event, if known
211          * @param authncontext_decl specifics of authentication event, if known
212          * @param tokens            assertions to cache with session, if any
213          * @param attributes        optional array of resolved Attributes to cache with session
214          * @return  newly created session's key
215          */
216         virtual std::string insert(
217             time_t expires,
218             const Application& application,
219             const char* client_addr=NULL,
220             const opensaml::saml2md::EntityDescriptor* issuer=NULL,
221             const XMLCh* protocol=NULL,
222             const opensaml::saml2::NameID* nameid=NULL,
223             const XMLCh* authn_instant=NULL,
224             const XMLCh* session_index=NULL,
225             const XMLCh* authncontext_class=NULL,
226             const XMLCh* authncontext_decl=NULL,
227             const std::vector<const opensaml::Assertion*>* tokens=NULL,
228             const std::vector<Attribute*>* attributes=NULL
229             )=0;
230
231         /**
232          * Returns active sessions that match particular parameters and records the logout
233          * to prevent race conditions.
234          *
235          * <p>On exit, the mapping between these sessions and the associated information MAY be
236          * removed by the cache, so subsequent calls to this method may not return anything.
237          *
238          * <p>Until logout expiration, any attempt to create a session with the same parameters
239          * will be blocked by the cache.
240          * 
241          * @param issuer        source of session(s)
242          * @param nameid        name identifier associated with the session(s) to terminate
243          * @param indexes       indexes of sessions, or NULL for all sessions associated with other parameters
244          * @param expires       logout expiration
245          * @param application   reference to Application that owns the session(s)
246          * @param sessions      on exit, contains the IDs of the matching sessions found
247          */
248         virtual std::vector<std::string>::size_type logout(
249             const opensaml::saml2md::EntityDescriptor* issuer,
250             const opensaml::saml2::NameID& nameid,
251             const std::set<std::string>* indexes,
252             time_t expires,
253             const Application& application,
254             std::vector<std::string>& sessions
255             )=0;
256
257         /**
258          * Determines whether a given session (based on its ID) matches a set of input
259          * criteria.
260          * 
261          * @param key           session key to check
262          * @param issuer        required source of session(s)
263          * @param nameid        required name identifier
264          * @param indexes       session indexes
265          * @param application   reference to Application that owns the Session
266          * @return  true iff the session matches the input criteria
267          */
268         virtual bool matches(
269             const char* key,
270             const opensaml::saml2md::EntityDescriptor* issuer,
271             const opensaml::saml2::NameID& nameid,
272             const std::set<std::string>* indexes,
273             const Application& application
274             )=0;
275 #endif
276
277         /**
278          * Locates an existing session.
279          * 
280          * <p>If the client address is supplied, then a check will be performed against
281          * the address recorded in the record.
282          * 
283          * @param key           session key
284          * @param application   reference to Application that owns the Session
285          * @param client_addr   network address of client (if known)
286          * @param timeout       inactivity timeout to enforce (0 for none, NULL to bypass check/update of last access)
287          * @return  pointer to locked Session, or NULL
288          */
289         virtual Session* find(
290             const char* key, const Application& application, const char* client_addr=NULL, time_t* timeout=NULL
291             )=0;
292             
293         /**
294          * Deletes an existing session.
295          * 
296          * @param key           session key
297          * @param application   reference to Application that owns the Session
298          */
299         virtual void remove(const char* key, const Application& application)=0;
300     };
301
302 #ifndef SHIBSP_LITE
303     /** SessionCache implementation backed by a StorageService. */
304     #define STORAGESERVICE_SESSION_CACHE    "StorageService"
305 #endif
306
307     /** SessionCache implementation for lite builds that delegates to a remoted version. */
308     #define REMOTED_SESSION_CACHE    "Remoted"
309
310     /**
311      * Registers SessionCache classes into the runtime.
312      */
313     void SHIBSP_API registerSessionCaches();
314 };
315
316 #endif /* __shibsp_sessioncache_h__ */