gss_map_name_to_any
[mech_eap.git] / util_saml.cpp
1 /*
2  * Copyright (c) 2010, 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 #include <gssapi/gssapi.h>
49 #include <gssapi/gssapi_ext.h>
50 #include "util.h"
51
52 #include <shibsp/Application.h>
53 #include <shibsp/exceptions.h>
54 #include <shibsp/SPConfig.h>
55 #include <shibsp/ServiceProvider.h>
56 #include <shibsp/attribute/Attribute.h>
57 #include <shibsp/attribute/SimpleAttribute.h>
58 #include <shibsp/attribute/resolver/ResolutionContext.h>
59 #include <shibsp/handler/AssertionConsumerService.h>
60 #include <shibsp/metadata/MetadataProviderCriteria.h>
61 #include <shibsp/util/SPConstants.h>
62
63 #include <saml/saml1/core/Assertions.h>
64 #include <saml/saml2/core/Assertions.h>
65 #include <saml/saml2/metadata/Metadata.h>
66 #include <xercesc/util/XMLUniDefs.hpp>
67 #include <xmltooling/XMLToolingConfig.h>
68 #include <xmltooling/util/XMLHelper.h>
69
70 using namespace shibsp;
71 using namespace opensaml::saml2md;
72 using namespace opensaml;
73 using namespace xmltooling::logging;
74 using namespace xmltooling;
75 using namespace xercesc;
76 using namespace std;
77
78 class GSSEAPResolver : public shibsp::AssertionConsumerService
79 {
80 public:
81     GSSEAPResolver(const DOMElement *e, const char *appId)
82         : shibsp::AssertionConsumerService(e, appId, Category::getInstance(SHIBSP_LOGCAT".GSSEAPResolver")) {
83     }
84     virtual ~GSSEAPResolver() {}
85
86     ResolutionContext* resolveAttributes (
87         const Application& application,
88         const RoleDescriptor* issuer,
89         const XMLCh* protocol,
90         const saml1::NameIdentifier* v1nameid,
91         const saml2::NameID* nameid,
92         const XMLCh* authncontext_class,
93         const XMLCh* authncontext_decl,
94         const vector<const Assertion*>* tokens
95         ) const {
96             return shibsp::AssertionConsumerService::resolveAttributes(
97                     application, issuer, protocol, v1nameid,
98                     nameid, authncontext_class, authncontext_decl, tokens
99             );
100     }
101
102 private:
103     void implementProtocol(
104         const Application& application,
105         const HTTPRequest& httpRequest,
106         HTTPResponse& httpResponse,
107         SecurityPolicy& policy,
108         const PropertySet* settings,
109         const XMLObject& xmlObject
110         ) const {
111             throw FatalProfileException("Should never be called.");
112     }
113 };
114
115 struct eap_gss_saml_attr_ctx {
116 public:
117     eap_gss_saml_attr_ctx();
118     eap_gss_saml_attr_ctx(const gss_buffer_t buffer);
119     eap_gss_saml_attr_ctx(const Assertion *assertion);
120
121     eap_gss_saml_attr_ctx(const vector<Attribute*>& attributes,
122                           const Assertion *assertion);
123
124     eap_gss_saml_attr_ctx(const eap_gss_saml_attr_ctx &ctx) {
125         eap_gss_saml_attr_ctx(ctx.m_attributes, ctx.m_assertion);
126     }
127
128     ~eap_gss_saml_attr_ctx();
129
130     const vector <Attribute *> getAttributes(void) const {
131         return m_attributes;
132     }
133
134     void addAttribute(Attribute *attr, bool copy = true);
135     void setAttributes(const vector<Attribute*> attributes);
136
137     void setAttribute(int complete,
138                       const gss_buffer_t attr,
139                       const gss_buffer_t value);
140     void deleteAttribute(const gss_buffer_t attr);
141
142     int getAttributeIndex(const gss_buffer_t attr) const;
143     const Attribute *getAttribute(const gss_buffer_t attr) const;
144
145     bool getAttribute(const gss_buffer_t attr,
146                       int *authenticated,
147                       int *complete,
148                       gss_buffer_t value,
149                       gss_buffer_t display_value,
150                       int *more);
151
152     const Assertion *getAssertion(void) const {
153         return m_assertion;
154     }
155
156     bool getAssertion(gss_buffer_t buffer);
157
158     DDF marshall() const;
159     static eap_gss_saml_attr_ctx *unmarshall(DDF &in);
160
161     void marshall(gss_buffer_t buffer);
162     static eap_gss_saml_attr_ctx *unmarshall(const gss_buffer_t buffer);
163
164 private:
165     mutable vector<Attribute*> m_attributes;
166     mutable Assertion *m_assertion;
167
168     bool parseAssertion(const gss_buffer_t buffer);
169 };
170
171 eap_gss_saml_attr_ctx::eap_gss_saml_attr_ctx(const vector<Attribute*>& attributes,
172                                              const Assertion *assertion)
173 {
174     m_assertion = dynamic_cast<Assertion *>(assertion->clone());
175     setAttributes(attributes);
176 }
177
178 eap_gss_saml_attr_ctx::~eap_gss_saml_attr_ctx()
179 {
180     for_each(m_attributes.begin(), m_attributes.end(), xmltooling::cleanup<Attribute>());
181     delete m_assertion;
182 }
183
184 eap_gss_saml_attr_ctx::eap_gss_saml_attr_ctx(const gss_buffer_t buffer)
185 {
186     parseAssertion(buffer);
187 }
188
189 static OM_uint32
190 mapException(OM_uint32 *minor, exception &e)
191 {
192     return GSS_S_FAILURE;
193 }
194
195 bool
196 eap_gss_saml_attr_ctx::parseAssertion(const gss_buffer_t buffer)
197 {
198     DOMDocument *doc;
199     const XMLObjectBuilder *b;
200     DOMElement *elem;
201     XMLObject *xobj;
202     string str((char *)buffer->value, buffer->length);
203     istringstream istream(str);
204
205     doc = XMLToolingConfig::getConfig().getParser().parse(istream);
206     b = XMLObjectBuilder::getDefaultBuilder();
207     elem = doc->getDocumentElement();
208     xobj = b->buildOneFromElement(elem, true);
209
210     m_assertion = dynamic_cast<Assertion *>(xobj);
211
212     return (m_assertion != NULL);
213 }
214
215 static inline void
216 duplicateBuffer(gss_buffer_desc &src, gss_buffer_t dst)
217 {
218     OM_uint32 minor;
219
220     if (GSS_ERROR(duplicateBuffer(&minor, &src, dst)))
221         throw new bad_alloc();
222 }
223
224 static inline void
225 duplicateBuffer(string &str, gss_buffer_t buffer)
226 {
227     gss_buffer_desc tmp;
228
229     tmp.length = str.length();
230     tmp.value = (char *)str.c_str();
231
232     duplicateBuffer(tmp, buffer);
233 }
234
235 DDF
236 eap_gss_saml_attr_ctx::marshall() const
237 {
238     DDF obj;
239     DDF attrs;
240     DDF assertion;
241
242     obj.addmember("version").integer(1);
243
244     attrs = obj.addmember("attributes").list();
245     for (vector<Attribute*>::const_iterator a = m_attributes.begin();
246          a != m_attributes.end(); ++a) {
247         DDF attr = (*a)->marshall();
248         attrs.add(attr);
249     }
250
251     ostringstream sink;
252     sink << *m_assertion;
253     assertion = obj.addmember("assertion").string(sink.str().c_str());
254
255     return obj;
256 }
257
258 eap_gss_saml_attr_ctx *
259 eap_gss_saml_attr_ctx::unmarshall(DDF &obj)
260 {
261     eap_gss_saml_attr_ctx *ctx = new eap_gss_saml_attr_ctx();
262
263     DDF version = obj["version"];
264     if (version.integer() != 1)
265         return NULL;
266
267     DDF assertion = obj["assertion"];
268     gss_buffer_desc buffer;
269
270     if (!assertion.isnull()) {
271         buffer.length = assertion.strlen();
272         buffer.value = (void *)assertion.string();
273     } else {
274         buffer.length = 0;
275     }
276
277     if (buffer.length != 0)
278         ctx->parseAssertion(&buffer);
279
280     DDF attrs = obj["attributes"];
281     DDF attr = attrs.first();
282     while (!attr.isnull()) {
283         Attribute *attribute = Attribute::unmarshall(attr);
284         ctx->addAttribute(attribute, false);
285         attr = attrs.next();
286     }
287
288     return ctx;
289 }
290
291 void
292 eap_gss_saml_attr_ctx::marshall(gss_buffer_t buffer)
293 {
294     DDF obj;
295     ostringstream sink;
296     string str;
297
298     obj = marshall();
299     sink << obj;
300     str = sink.str();
301
302     duplicateBuffer(str, buffer);
303 }
304
305 eap_gss_saml_attr_ctx *
306 eap_gss_saml_attr_ctx::unmarshall(const gss_buffer_t buffer)
307 {
308     DDF obj;
309     string str((const char *)buffer->value, buffer->length);
310     istringstream source(str);
311     source >> obj;
312
313     return unmarshall(obj);
314 }
315
316 bool
317 eap_gss_saml_attr_ctx::getAssertion(gss_buffer_t buffer)
318 {
319     string str;
320
321     if (m_assertion == NULL)
322         return false;
323
324     buffer->value = NULL;
325     buffer->length = 0;
326
327     XMLHelper::serialize(m_assertion->marshall((DOMDocument *)NULL), str);
328
329     duplicateBuffer(str, buffer);
330
331     return true;
332 }
333
334 static Attribute *
335 duplicateAttribute(const Attribute *src)
336 {
337     DDF obj = src->marshall();
338     return Attribute::unmarshall(obj);
339 }
340
341 static vector <Attribute *>
342 duplicateAttributes(const vector <Attribute *>src)
343 {
344     vector <Attribute *> dst;
345
346     for (vector<Attribute *>::const_iterator a = src.begin();
347          a != src.end();
348          ++a)
349         dst.push_back(duplicateAttribute(*a));
350
351     return dst;
352 }
353
354 void
355 eap_gss_saml_attr_ctx::addAttribute(Attribute *attribute, bool copy)
356 {
357     Attribute *a;
358
359     a = copy ? duplicateAttribute(attribute) : attribute;
360
361     m_attributes.push_back(a);
362 }
363
364 void
365 eap_gss_saml_attr_ctx::setAttributes(const vector<Attribute*> attributes)
366 {
367     for_each(m_attributes.begin(), m_attributes.end(), xmltooling::cleanup<Attribute>());
368     m_attributes = duplicateAttributes(attributes);
369 }
370
371 int
372 eap_gss_saml_attr_ctx::getAttributeIndex(const gss_buffer_t attr) const
373 {
374     int i = 0;
375
376     for (vector<Attribute *>::const_iterator a = getAttributes().begin();
377          a != getAttributes().end();
378          ++a)
379     {
380         for (vector<string>::const_iterator s = (*a)->getAliases().begin();
381              s != (*a)->getAliases().end();
382              ++s) {
383             if (attr->length == (*s).length() &&
384                 memcmp((*s).c_str(), attr->value, attr->length) == 0) {
385                 return i;
386             }
387         }
388     }
389
390     return -1;
391 }
392
393 const Attribute *
394 eap_gss_saml_attr_ctx::getAttribute(const gss_buffer_t attr) const
395 {
396     const Attribute *ret = NULL;
397
398     for (vector<Attribute *>::const_iterator a = getAttributes().begin();
399          a != getAttributes().end();
400          ++a)
401     {
402         for (vector<string>::const_iterator s = (*a)->getAliases().begin();
403              s != (*a)->getAliases().end();
404              ++s) {
405             if (attr->length == (*s).length() &&
406                 memcmp((*s).c_str(), attr->value, attr->length) == 0) {
407                 ret = *a;
408                 break;
409             }
410         }
411         if (ret != NULL)
412             break;
413     }
414
415     return ret;
416 }
417
418 bool
419 eap_gss_saml_attr_ctx::getAttribute(const gss_buffer_t attr,
420                                     int *authenticated,
421                                     int *complete,
422                                     gss_buffer_t value,
423                                     gss_buffer_t display_value,
424                                     int *more)
425 {
426     const Attribute *shibAttr = NULL;
427     gss_buffer_desc buf;
428
429     shibAttr = getAttribute(attr);
430     if (shibAttr == NULL)
431         return false;
432
433     if (*more == -1) {
434         *more = 0;
435     } else if (*more >= (int)shibAttr->valueCount()) {
436         *more = 0;
437         return true;
438     }
439
440     buf.value = (void *)shibAttr->getString(*more);
441     buf.length = strlen((char *)buf.value);
442
443     duplicateBuffer(buf, value);
444  
445     *authenticated = TRUE;
446     *complete = FALSE;
447
448     return true;
449 }
450
451 void
452 eap_gss_saml_attr_ctx::setAttribute(int complete,
453                                     const gss_buffer_t attr,
454                                     const gss_buffer_t value)
455 {
456     string attrStr((char *)attr->value, attr->length);
457     vector <string> ids(1);
458     SimpleAttribute *a;
459
460     ids.push_back(attrStr);
461
462     a = new SimpleAttribute(ids);
463
464     if (value->length != 0) {
465         string valStr((char *)value->value, value->length);
466
467         a->getValues().push_back(valStr);        
468     }
469
470     m_attributes.push_back(a);
471 }
472
473 void
474 eap_gss_saml_attr_ctx::deleteAttribute(const gss_buffer_t attr)
475 {
476     int i;
477
478     i = getAttributeIndex(attr);
479     if (i >= 0)
480         m_attributes.erase(m_attributes.begin() + i);
481 }
482
483 OM_uint32
484 samlReleaseAttrContext(OM_uint32 *minor,
485                        struct eap_gss_saml_attr_ctx **pCtx)
486 {
487     eap_gss_saml_attr_ctx *ctx = *pCtx;
488
489     if (ctx != NULL) {
490         delete ctx;
491         *pCtx = NULL;
492     }
493
494     *minor = 0;
495     return GSS_S_COMPLETE;
496 }
497
498 OM_uint32
499 samlCreateAttrContext(OM_uint32 *minor,
500                       gss_buffer_t buffer,
501                       gss_name_t acceptorName,
502                       struct eap_gss_saml_attr_ctx **pCtx)
503 {
504     OM_uint32 major, tmpMinor;
505     eap_gss_saml_attr_ctx *ctx = NULL;
506     SPConfig &conf = SPConfig::getConfig();
507     ServiceProvider *sp;
508     const Application *app;
509     MetadataProvider *m;
510     gss_buffer_desc nameBuf;
511     const XMLCh *issuer = NULL;
512     saml2::NameID *subjectName = NULL;
513     saml2::Assertion *assertion;
514     ResolutionContext *resolverContext;
515
516     nameBuf.length = 0;
517     nameBuf.value = NULL;
518
519     conf.setFeatures(SPConfig::Metadata             |
520                      SPConfig::Trust                |
521                      SPConfig::AttributeResolution  |
522                      SPConfig::Credentials          |
523                      SPConfig::OutOfProcess);
524     if (!conf.init())
525         return GSS_S_FAILURE;
526     if (!conf.instantiate())
527         return GSS_S_FAILURE;
528
529     sp = conf.getServiceProvider();
530     sp->lock();
531
532     major = gss_display_name(minor, acceptorName, &nameBuf, NULL);
533     if (GSS_ERROR(major))
534         goto cleanup;
535
536     app = sp->getApplication((const char *)nameBuf.value);
537     if (app == NULL) {
538         major = GSS_S_FAILURE;
539         goto cleanup;
540     }
541
542     try {
543         ctx = new eap_gss_saml_attr_ctx(buffer);
544
545         if (assertion->getIssuer() != NULL)
546             issuer = assertion->getIssuer()->getName();
547         if (assertion->getSubject() != NULL)
548             subjectName = assertion->getSubject()->getNameID();
549
550         m = app->getMetadataProvider();
551         xmltooling::Locker mlocker(m);
552         MetadataProviderCriteria mc(*app, issuer,
553                                     &IDPSSODescriptor::ELEMENT_QNAME,
554                                     samlconstants::SAML20P_NS);
555         pair<const EntityDescriptor *, const RoleDescriptor *> site =
556             m->getEntityDescriptor(mc);
557         if (!site.first) {
558             auto_ptr_char temp(issuer);
559             throw MetadataException("Unable to locate metadata for IdP ($1).",
560                                     params(1,temp.get()));
561         }
562         vector<const Assertion*> tokens(1, assertion);
563         GSSEAPResolver gssResolver(NULL, (const char *)nameBuf.value);
564         resolverContext = gssResolver.resolveAttributes(*app, site.second,
565                                                         samlconstants::SAML20P_NS,
566                                                         NULL, subjectName, NULL,
567                                                         NULL, &tokens);
568         ctx->setAttributes(resolverContext->getResolvedAttributes());
569     } catch (exception &ex) {
570         major = mapException(minor, ex);
571         goto cleanup;
572     }
573
574     major = GSS_S_COMPLETE;
575     *pCtx = ctx;
576
577 cleanup:
578     sp->unlock();
579     conf.term();
580
581     if (GSS_ERROR(major))
582         delete ctx;
583     gss_release_buffer(&tmpMinor, &nameBuf);
584
585     return major;
586 }
587
588 OM_uint32
589 samlGetAttributeTypes(OM_uint32 *minor,
590                       const struct eap_gss_saml_attr_ctx *ctx,
591                       void *data,
592                       OM_uint32 (*addAttribute)(OM_uint32 *, void *, gss_buffer_t))
593 {
594     OM_uint32 major = GSS_S_COMPLETE;
595
596     if (ctx == NULL)
597         return GSS_S_COMPLETE;
598
599     for (vector<Attribute*>::const_iterator a = ctx->getAttributes().begin();
600         a != ctx->getAttributes().end();
601         ++a)
602     {
603         gss_buffer_desc attribute;
604
605         attribute.value = (void *)((*a)->getId());
606         attribute.length = strlen((char *)attribute.value);
607
608         major = addAttribute(minor, data, &attribute);
609         if (GSS_ERROR(major))
610             break;
611     }
612
613     return major;
614 }
615
616 /*
617  * SAML implementation of gss_get_name_attribute
618  */
619 OM_uint32
620 samlGetAttribute(OM_uint32 *minor,
621                  struct eap_gss_saml_attr_ctx *ctx,
622                  gss_buffer_t attr,
623                  int *authenticated,
624                  int *complete,
625                  gss_buffer_t value,
626                  gss_buffer_t display_value,
627                  int *more)
628 {
629     if (ctx == NULL)
630         return GSS_S_UNAVAILABLE;
631
632     if (!ctx->getAttribute(attr, authenticated, complete,
633                            value, display_value, more))
634         return GSS_S_UNAVAILABLE;
635
636     return GSS_S_COMPLETE;
637 }
638
639 OM_uint32
640 samlSetAttribute(OM_uint32 *minor,
641                  struct eap_gss_saml_attr_ctx *ctx,
642                  int complete,
643                  gss_buffer_t attr,
644                  gss_buffer_t value)
645 {
646     try {
647         ctx->setAttribute(complete, attr, value);
648     } catch (exception &e) {
649         return mapException(minor, e);
650     }
651
652     return GSS_S_COMPLETE;
653 }
654
655 OM_uint32
656 samlDeleteAttribute(OM_uint32 *minor,
657                     struct eap_gss_saml_attr_ctx *ctx,
658                     gss_buffer_t attr)
659 {
660     try {
661         ctx->deleteAttribute(attr);
662     } catch (exception &e) {
663         return mapException(minor, e);
664     }
665
666     return GSS_S_COMPLETE;
667 }
668
669 /*
670  * In order to implement gss_export_name and gss_export_sec_context,
671  * we need to serialise a resolved attribute context to a buffer.
672  */
673 OM_uint32
674 samlExportAttrContext(OM_uint32 *minor,
675                       struct eap_gss_saml_attr_ctx *ctx,
676                       gss_buffer_t buffer)
677 {
678     try {
679         ctx->marshall(buffer);
680     } catch (exception &e) {
681         return mapException(minor, e);
682     }        
683
684     return GSS_S_COMPLETE;
685 }
686
687 /*
688  * In order to implement gss_import_name and gss_import_sec_context,
689  * we need to deserialise a resolved attribute context from a buffer.
690  */
691 OM_uint32
692 samlImportAttrContext(OM_uint32 *minor,
693                       gss_buffer_t buffer,
694                       struct eap_gss_saml_attr_ctx **pCtx)
695 {
696     try {
697         *pCtx = eap_gss_saml_attr_ctx::unmarshall(buffer);
698     } catch (exception &e) {
699         return mapException(minor, e);
700     }
701
702     return GSS_S_COMPLETE;
703 }
704
705 OM_uint32
706 samlGetAssertion(OM_uint32 *minor,
707                  struct eap_gss_saml_attr_ctx *ctx,
708                  gss_buffer_t assertion)
709 {
710     try {
711         ctx->getAssertion(assertion);
712     } catch (exception &e) {
713         return mapException(minor, e);
714     }
715
716     return GSS_S_COMPLETE;
717 }
718
719 OM_uint32
720 samlDuplicateAttrContext(OM_uint32 *minor,
721                          const struct eap_gss_saml_attr_ctx *in,
722                          struct eap_gss_saml_attr_ctx **out)
723 {
724     try {
725         *out = new eap_gss_saml_attr_ctx(*in);
726     } catch (exception &e) {
727         return mapException(minor, e);
728     }
729
730     return GSS_S_COMPLETE;
731 }
732
733 OM_uint32
734 samlMapNametoAny(OM_uint32 *minor,
735                  const struct eap_gss_saml_attr_ctx *ctx,
736                  int authenticated,
737                  gss_buffer_t type_id,
738                  gss_any_t *output)
739 {
740     if (bufferEqualString(type_id, "shibsp::Attribute")) {
741         vector <Attribute *>v = duplicateAttributes(ctx->getAttributes());
742
743         *output = (gss_any_t)new vector <Attribute *>(v);
744     } else if (bufferEqualString(type_id, "opensaml::Assertion")) {
745         *output = (gss_any_t)ctx->getAssertion()->clone();
746     } else {
747         *output = (gss_any_t)NULL;
748         return GSS_S_UNAVAILABLE;
749     }
750
751     return GSS_S_COMPLETE;
752 }
753
754 OM_uint32
755 samlReleaseAnyNameMapping(OM_uint32 *minor,
756                           const struct eap_gss_saml_attr_ctx *ctx,
757                           gss_buffer_t type_id,
758                           gss_any_t *input)
759 {
760     if (bufferEqualString(type_id, "vector<shibsp::Attribute>")) {
761         vector <Attribute *> *v = ((vector <Attribute *> *)*input);
762         delete v;
763     } else if (bufferEqualString(type_id, "opensaml::Assertion")) {
764         delete (Assertion *)*input;
765     } else {
766         return GSS_S_UNAVAILABLE;
767     }
768
769     *input = (gss_any_t)NULL;
770     return GSS_S_COMPLETE;
771 }