Rearrange moonshot to have libeap as a subproject
[moonshot.git] / moonshot / mech_eap / util_shib.cpp
1 /*
2  * Copyright (c) 2011, JANET(UK)
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * 3. Neither the name of JANET(UK) nor the names of its contributors
17  *    may be used to endorse or promote products derived from this software
18  *    without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
24  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  */
32 /*
33  * Copyright 2001-2009 Internet2
34  *
35  * Licensed under the Apache License, Version 2.0 (the "License");
36  * you may not use this file except in compliance with the License.
37  * You may obtain a copy of the License at
38  *
39  *     http://www.apache.org/licenses/LICENSE-2.0
40  *
41  * Unless required by applicable law or agreed to in writing, software
42  * distributed under the License is distributed on an "AS IS" BASIS,
43  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
44  * See the License for the specific language governing permissions and
45  * limitations under the License.
46  */
47
48 /*
49  * Local attribute provider implementation.
50  */
51
52 #include <xmltooling/XMLObject.h>
53
54 #include <saml/saml2/core/Assertions.h>
55
56 #include <shibsp/exceptions.h>
57 #include <shibsp/attribute/SimpleAttribute.h>
58 #include <shibresolver/resolver.h>
59
60 #include <sstream>
61
62 #include "gssapiP_eap.h"
63
64 using namespace shibsp;
65 using namespace shibresolver;
66 using namespace opensaml::saml2md;
67 using namespace opensaml;
68 using namespace xmltooling;
69 using namespace std;
70
71 gss_eap_shib_attr_provider::gss_eap_shib_attr_provider(void)
72 {
73     m_initialized = false;
74     m_authenticated = false;
75 }
76
77 gss_eap_shib_attr_provider::~gss_eap_shib_attr_provider(void)
78 {
79     for_each(m_attributes.begin(),
80              m_attributes.end(),
81              xmltooling::cleanup<Attribute>())
82         ;
83 }
84
85 bool
86 gss_eap_shib_attr_provider::initWithExistingContext(const gss_eap_attr_ctx *manager,
87                                                     const gss_eap_attr_provider *ctx)
88 {
89     const gss_eap_shib_attr_provider *shib;
90
91     if (!gss_eap_attr_provider::initWithExistingContext(manager, ctx)) {
92         return false;
93     }
94
95     m_authenticated = false;
96
97     shib = static_cast<const gss_eap_shib_attr_provider *>(ctx);
98     if (shib != NULL) {
99         m_attributes = duplicateAttributes(shib->getAttributes());
100         m_authenticated = shib->authenticated();
101     }
102
103     m_initialized = true;
104
105     return true;
106 }
107
108 bool
109 gss_eap_shib_attr_provider::initWithGssContext(const gss_eap_attr_ctx *manager,
110                                                const gss_cred_id_t gssCred,
111                                                const gss_ctx_id_t gssCtx)
112 {
113     if (!gss_eap_attr_provider::initWithGssContext(manager, gssCred, gssCtx))
114         return false;
115
116     auto_ptr<ShibbolethResolver> resolver(ShibbolethResolver::create());
117
118     /*
119      * For now, leave ApplicationID defaulted.
120      * Later on, we could allow this via config option to the mechanism
121      * or rely on an SPRequest interface to pass in a URI identifying the
122      * acceptor.
123      */
124 #if 0
125     gss_buffer_desc nameBuf = GSS_C_EMPTY_BUFFER;
126     if (gssCred != GSS_C_NO_CREDENTIAL &&
127         gssEapDisplayName(&minor, gssCred->name, &nameBuf, NULL) == GSS_S_COMPLETE) {
128         resolver->setApplicationID((const char *)nameBuf.value);
129         gss_release_buffer(&minor, &nameBuf);
130     }
131 #endif
132
133     gss_buffer_desc mechName = GSS_C_EMPTY_BUFFER;
134     OM_uint32 major, minor;
135
136     major = gssEapExportNameInternal(&minor, gssCtx->initiatorName, &mechName,
137                                      EXPORT_NAME_FLAG_OID |
138                                      EXPORT_NAME_FLAG_COMPOSITE);
139     if (major == GSS_S_COMPLETE) {
140         resolver->addToken(&mechName);
141         gss_release_buffer(&minor, &mechName);
142     }
143
144     const gss_eap_saml_assertion_provider *saml;
145     saml = static_cast<const gss_eap_saml_assertion_provider *>
146         (m_manager->getProvider(ATTR_TYPE_SAML_ASSERTION));
147     if (saml != NULL && saml->getAssertion() != NULL) {
148         resolver->addToken(saml->getAssertion());
149     }
150
151     try {
152         resolver->resolve();
153         m_attributes = resolver->getResolvedAttributes();
154         resolver->getResolvedAttributes().clear();
155     } catch (exception &e) {
156         return false;
157     }
158
159     m_authenticated = true;
160     m_initialized = true;
161
162     return true;
163 }
164
165 ssize_t
166 gss_eap_shib_attr_provider::getAttributeIndex(const gss_buffer_t attr) const
167 {
168     int i = 0;
169
170     assert(m_initialized);
171
172     for (vector<Attribute *>::const_iterator a = m_attributes.begin();
173          a != m_attributes.end();
174          ++a)
175     {
176         for (vector<string>::const_iterator s = (*a)->getAliases().begin();
177              s != (*a)->getAliases().end();
178              ++s) {
179             if (attr->length == (*s).length() &&
180                 memcmp((*s).c_str(), attr->value, attr->length) == 0) {
181                 return i;
182             }
183         }
184     }
185
186     return -1;
187 }
188
189 bool
190 gss_eap_shib_attr_provider::setAttribute(int complete GSSEAP_UNUSED,
191                                          const gss_buffer_t attr,
192                                          const gss_buffer_t value)
193 {
194     string attrStr((char *)attr->value, attr->length);
195     vector <string> ids(1, attrStr);
196     SimpleAttribute *a = new SimpleAttribute(ids);
197
198     assert(m_initialized);
199
200     if (value->length != 0) {
201         string valueStr((char *)value->value, value->length);
202
203         a->getValues().push_back(valueStr);
204     }
205
206     m_attributes.push_back(a);
207     m_authenticated = false;
208
209     return true;
210 }
211
212 bool
213 gss_eap_shib_attr_provider::deleteAttribute(const gss_buffer_t attr)
214 {
215     int i;
216
217     assert(m_initialized);
218
219     i = getAttributeIndex(attr);
220     if (i >= 0)
221         m_attributes.erase(m_attributes.begin() + i);
222
223     m_authenticated = false;
224
225     return true;
226 }
227
228 bool
229 gss_eap_shib_attr_provider::getAttributeTypes(gss_eap_attr_enumeration_cb addAttribute,
230                                               void *data) const
231 {
232     assert(m_initialized);
233
234     for (vector<Attribute*>::const_iterator a = m_attributes.begin();
235         a != m_attributes.end();
236         ++a)
237     {
238         gss_buffer_desc attribute;
239
240         attribute.value = (void *)((*a)->getId());
241         attribute.length = strlen((char *)attribute.value);
242
243         if (!addAttribute(m_manager, this, &attribute, data))
244             return false;
245     }
246
247     return true;
248 }
249
250 const Attribute *
251 gss_eap_shib_attr_provider::getAttribute(const gss_buffer_t attr) const
252 {
253     const Attribute *ret = NULL;
254
255     assert(m_initialized);
256
257     for (vector<Attribute *>::const_iterator a = m_attributes.begin();
258          a != m_attributes.end();
259          ++a)
260     {
261         for (vector<string>::const_iterator s = (*a)->getAliases().begin();
262              s != (*a)->getAliases().end();
263              ++s) {
264             if (attr->length == (*s).length() &&
265                 memcmp((*s).c_str(), attr->value, attr->length) == 0) {
266                 ret = *a;
267                 break;
268             }
269         }
270         if (ret != NULL)
271             break;
272     }
273
274     return ret;
275 }
276
277 bool
278 gss_eap_shib_attr_provider::getAttribute(const gss_buffer_t attr,
279                                          int *authenticated,
280                                          int *complete,
281                                          gss_buffer_t value,
282                                          gss_buffer_t display_value,
283                                          int *more) const
284 {
285     const Attribute *shibAttr = NULL;
286     gss_buffer_desc buf;
287     int nvalues, i = *more;
288
289     assert(m_initialized);
290
291     *more = 0;
292
293     shibAttr = getAttribute(attr);
294     if (shibAttr == NULL)
295         return false;
296
297     nvalues = shibAttr->valueCount();
298
299     if (i == -1)
300         i = 0;
301     if (i >= nvalues)
302         return false;
303
304     buf.value = (void *)shibAttr->getSerializedValues()[*more].c_str();
305     buf.length = strlen((char *)buf.value);
306
307     if (buf.length != 0) {
308         if (value != NULL)
309             duplicateBuffer(buf, value);
310
311         if (display_value != NULL)
312             duplicateBuffer(buf, display_value);
313     }
314
315     if (authenticated != NULL)
316         *authenticated = m_authenticated;
317     if (complete != NULL)
318         *complete = false;
319
320     if (nvalues > ++i)
321         *more = i;
322
323     return true;
324 }
325
326 gss_any_t
327 gss_eap_shib_attr_provider::mapToAny(int authenticated,
328                                      gss_buffer_t type_id GSSEAP_UNUSED) const
329 {
330     gss_any_t output;
331
332     assert(m_initialized);
333
334     if (authenticated && !m_authenticated)
335         return (gss_any_t)NULL;
336
337     vector <Attribute *>v = duplicateAttributes(m_attributes);
338
339     output = (gss_any_t)new vector <Attribute *>(v);
340
341     return output;
342 }
343
344 void
345 gss_eap_shib_attr_provider::releaseAnyNameMapping(gss_buffer_t type_id GSSEAP_UNUSED,
346                                                   gss_any_t input) const
347 {
348     assert(m_initialized);
349
350     vector <Attribute *> *v = ((vector <Attribute *> *)input);
351     delete v;
352 }
353
354 const char *
355 gss_eap_shib_attr_provider::prefix(void) const
356 {
357     return NULL;
358 }
359
360 const char *
361 gss_eap_shib_attr_provider::name(void) const
362 {
363     return "local";
364 }
365
366 JSONObject
367 gss_eap_shib_attr_provider::jsonRepresentation(void) const
368 {
369     JSONObject obj;
370
371     if (m_initialized == false)
372         return obj; /* don't export incomplete context */
373
374     JSONObject jattrs = JSONObject::array();
375
376     for (vector<Attribute*>::const_iterator a = m_attributes.begin();
377          a != m_attributes.end(); ++a) {
378         DDF attr = (*a)->marshall();
379         JSONObject jattr = JSONObject::ddf(attr);
380         jattrs.append(jattr);
381     }
382
383     obj.set("attributes", jattrs);
384
385     obj.set("authenticated", m_authenticated);
386
387     return obj;
388 }
389
390 bool
391 gss_eap_shib_attr_provider::initWithJsonObject(const gss_eap_attr_ctx *ctx,
392                                                JSONObject &obj)
393 {
394     if (!gss_eap_attr_provider::initWithJsonObject(ctx, obj))
395         return false;
396
397     assert(m_authenticated == false);
398     assert(m_attributes.size() == 0);
399
400     JSONObject jattrs = obj["attributes"];
401     size_t nelems = jattrs.size();
402
403     for (size_t i = 0; i < nelems; i++) {
404         JSONObject jattr = jattrs.get(i);
405
406         DDF attr = jattr.ddf();
407         Attribute *attribute = Attribute::unmarshall(attr);
408         m_attributes.push_back(attribute);
409     }
410
411     m_authenticated = obj["authenticated"].integer();
412     m_initialized = true;
413
414     return true;
415 }
416
417 bool
418 gss_eap_shib_attr_provider::init(void)
419 {
420     if (SPConfig::getConfig().getFeatures() == 0 &&
421         ShibbolethResolver::init() == false)
422         return false;
423
424     gss_eap_attr_ctx::registerProvider(ATTR_TYPE_LOCAL, createAttrContext);
425
426     return true;
427 }
428
429 void
430 gss_eap_shib_attr_provider::finalize(void)
431 {
432     gss_eap_attr_ctx::unregisterProvider(ATTR_TYPE_LOCAL);
433     ShibbolethResolver::term();
434 }
435
436 OM_uint32
437 gss_eap_shib_attr_provider::mapException(OM_uint32 *minor,
438                                          std::exception &e) const
439 {
440     if (typeid(e) == typeid(AttributeException))
441         *minor = GSSEAP_SHIB_ATTR_FAILURE;
442     else if (typeid(e) == typeid(AttributeExtractionException))
443         *minor = GSSEAP_SHIB_ATTR_EXTRACT_FAILURE;
444     else if (typeid(e) == typeid(AttributeFilteringException))
445         *minor = GSSEAP_SHIB_ATTR_FILTER_FAILURE;
446     else if (typeid(e) == typeid(AttributeResolutionException))
447         *minor = GSSEAP_SHIB_ATTR_RESOLVE_FAILURE;
448     else if (typeid(e) == typeid(ConfigurationException))
449         *minor = GSSEAP_SHIB_CONFIG_FAILURE;
450     else if (typeid(e) == typeid(ListenerException))
451         *minor = GSSEAP_SHIB_LISTENER_FAILURE;
452     else
453         return GSS_S_CONTINUE_NEEDED;
454
455     gssEapSaveStatusInfo(*minor, "%s", e.what());
456
457     return GSS_S_FAILURE;
458 }
459
460 gss_eap_attr_provider *
461 gss_eap_shib_attr_provider::createAttrContext(void)
462 {
463     return new gss_eap_shib_attr_provider;
464 }
465
466 Attribute *
467 gss_eap_shib_attr_provider::duplicateAttribute(const Attribute *src)
468 {
469     DDF obj = src->marshall();
470     Attribute *attribute = Attribute::unmarshall(obj);
471     obj.destroy();
472
473     return attribute;
474 }
475
476 vector <Attribute *>
477 gss_eap_shib_attr_provider::duplicateAttributes(const vector <Attribute *>src)
478 {
479     vector <Attribute *> dst;
480
481     for (vector<Attribute *>::const_iterator a = src.begin();
482          a != src.end();
483          ++a)
484         dst.push_back(duplicateAttribute(*a));
485
486     return dst;
487 }
488
489 OM_uint32
490 gssEapLocalAttrProviderInit(OM_uint32 *minor)
491 {
492     if (!gss_eap_shib_attr_provider::init()) {
493         *minor = GSSEAP_SHIB_INIT_FAILURE;
494         return GSS_S_FAILURE;
495     }
496     return GSS_S_COMPLETE;
497 }
498
499 OM_uint32
500 gssEapLocalAttrProviderFinalize(OM_uint32 *minor)
501 {
502     gss_eap_shib_attr_provider::finalize();
503
504     *minor = 0;
505     return GSS_S_COMPLETE;
506 }