comment out dumping code
[mech_eap.orig] / util_saml.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 /*
34  * SAML attribute provider implementation.
35  */
36
37 #include "gssapiP_eap.h"
38
39 #include <sstream>
40
41 #include <xercesc/util/XMLUniDefs.hpp>
42 #include <xmltooling/unicode.h>
43 #include <xmltooling/XMLToolingConfig.h>
44 #include <xmltooling/util/XMLHelper.h>
45 #include <xmltooling/util/ParserPool.h>
46 #include <xmltooling/util/DateTime.h>
47
48 #include <saml/exceptions.h>
49 #include <saml/saml1/core/Assertions.h>
50 #include <saml/saml2/core/Assertions.h>
51 #include <saml/saml2/metadata/Metadata.h>
52 #include <saml/saml2/metadata/MetadataProvider.h>
53
54 using namespace xmltooling;
55 using namespace opensaml::saml2md;
56 using namespace opensaml;
57 using namespace xercesc;
58 using namespace std;
59
60 /*
61  * gss_eap_saml_assertion_provider is for retrieving the underlying
62  * assertion.
63  */
64 gss_eap_saml_assertion_provider::gss_eap_saml_assertion_provider(void)
65 {
66     m_assertion = NULL;
67     m_authenticated = false;
68 }
69
70 gss_eap_saml_assertion_provider::~gss_eap_saml_assertion_provider(void)
71 {
72     delete m_assertion;
73 }
74
75 bool
76 gss_eap_saml_assertion_provider::initFromExistingContext(const gss_eap_attr_ctx *manager,
77                                                          const gss_eap_attr_provider *ctx)
78 {
79     /* Then we may be creating from an existing attribute context */
80     const gss_eap_saml_assertion_provider *saml;
81
82     assert(m_assertion == NULL);
83
84     if (!gss_eap_attr_provider::initFromExistingContext(manager, ctx))
85         return false;
86
87     saml = static_cast<const gss_eap_saml_assertion_provider *>(ctx);
88     setAssertion(saml->getAssertion(), saml->authenticated());
89
90     return true;
91 }
92
93 bool
94 gss_eap_saml_assertion_provider::initFromGssContext(const gss_eap_attr_ctx *manager,
95                                                     const gss_cred_id_t gssCred,
96                                                     const gss_ctx_id_t gssCtx)
97 {
98     const gss_eap_radius_attr_provider *radius;
99     gss_buffer_desc value = GSS_C_EMPTY_BUFFER;
100     int authenticated, complete;
101     OM_uint32 minor;
102
103     assert(m_assertion == NULL);
104
105     if (!gss_eap_attr_provider::initFromGssContext(manager, gssCred, gssCtx))
106         return false;
107
108     /*
109      * XXX TODO we need to support draft-howlett-radius-saml-attr-00
110      */
111     radius = static_cast<const gss_eap_radius_attr_provider *>
112         (m_manager->getProvider(ATTR_TYPE_RADIUS));
113     if (radius != NULL &&
114         radius->getFragmentedAttribute(PW_SAML_AAA_ASSERTION,
115                                        VENDORPEC_UKERNA,
116                                        &authenticated, &complete, &value)) {
117         setAssertion(&value, authenticated);
118         gss_release_buffer(&minor, &value);
119     } else {
120         m_assertion = NULL;
121     }
122
123     return true;
124 }
125
126 void
127 gss_eap_saml_assertion_provider::setAssertion(const saml2::Assertion *assertion,
128                                               bool authenticated)
129 {
130
131     delete m_assertion;
132
133     if (assertion != NULL) {
134 #ifdef __APPLE__
135         m_assertion = (saml2::Assertion *)((void *)assertion->clone());
136 #else
137         m_assertion = dynamic_cast<saml2::Assertion *>(assertion->clone());
138 #endif
139         m_authenticated = authenticated;
140     } else {
141         m_assertion = NULL;
142         m_authenticated = false;
143     }
144 }
145
146 void
147 gss_eap_saml_assertion_provider::setAssertion(const gss_buffer_t buffer,
148                                               bool authenticated)
149 {
150     delete m_assertion;
151
152     m_assertion = parseAssertion(buffer);
153     m_authenticated = (m_assertion != NULL && authenticated);
154 }
155
156 saml2::Assertion *
157 gss_eap_saml_assertion_provider::parseAssertion(const gss_buffer_t buffer)
158 {
159     string str((char *)buffer->value, buffer->length);
160     istringstream istream(str);
161     DOMDocument *doc;
162     const XMLObjectBuilder *b;
163
164     try {
165         doc = XMLToolingConfig::getConfig().getParser().parse(istream);
166         if (doc == NULL)
167             return NULL;
168
169         b = XMLObjectBuilder::getBuilder(doc->getDocumentElement());
170
171 #ifdef __APPLE__
172         return (saml2::Assertion *)((void *)b->buildFromDocument(doc));
173 #else
174         return dynamic_cast<saml2::Assertion *>(b->buildFromDocument(doc));
175 #endif
176     } catch (exception &e) {
177         return NULL;
178     }
179 }
180
181 bool
182 gss_eap_saml_assertion_provider::getAttributeTypes(gss_eap_attr_enumeration_cb addAttribute,
183                                                    void *data) const
184 {
185     bool ret;
186
187     /* just add the prefix */
188     if (m_assertion != NULL)
189         ret = addAttribute(m_manager, this, GSS_C_NO_BUFFER, data);
190     else
191         ret = true;
192
193     return ret;
194 }
195
196 bool
197 gss_eap_saml_assertion_provider::setAttribute(int complete GSSEAP_UNUSED,
198                                               const gss_buffer_t attr,
199                                               const gss_buffer_t value)
200 {
201     if (attr == GSS_C_NO_BUFFER || attr->length == 0) {
202         setAssertion(value);
203         return true;
204     }
205
206     return false;
207 }
208
209 bool
210 gss_eap_saml_assertion_provider::deleteAttribute(const gss_buffer_t value GSSEAP_UNUSED)
211 {
212     delete m_assertion;
213     m_assertion = NULL;
214     m_authenticated = false;
215
216     return true;
217 }
218
219 time_t
220 gss_eap_saml_assertion_provider::getExpiryTime(void) const
221 {
222     saml2::Conditions *conditions;
223     time_t expiryTime = 0;
224
225     if (m_assertion == NULL)
226         return 0;
227
228     conditions = m_assertion->getConditions();
229
230     if (conditions != NULL && conditions->getNotOnOrAfter() != NULL)
231         expiryTime = conditions->getNotOnOrAfter()->getEpoch();
232
233     return expiryTime;
234 }
235
236 OM_uint32
237 gss_eap_saml_assertion_provider::mapException(OM_uint32 *minor,
238                                               std::exception &e) const
239 {
240     if (typeid(e) == typeid(SecurityPolicyException))
241         *minor = GSSEAP_SAML_SEC_POLICY_FAILURE;
242     else if (typeid(e) == typeid(BindingException))
243         *minor = GSSEAP_SAML_BINDING_FAILURE;
244     else if (typeid(e) == typeid(ProfileException))
245         *minor = GSSEAP_SAML_PROFILE_FAILURE;
246     else if (typeid(e) == typeid(FatalProfileException))
247         *minor = GSSEAP_SAML_FATAL_PROFILE_FAILURE;
248     else if (typeid(e) == typeid(RetryableProfileException))
249         *minor = GSSEAP_SAML_RETRY_PROFILE_FAILURE;
250     else if (typeid(e) == typeid(MetadataException))
251         *minor = GSSEAP_SAML_METADATA_FAILURE;
252     else
253         return GSS_S_CONTINUE_NEEDED;
254
255     return GSS_S_FAILURE;
256 }
257
258 bool
259 gss_eap_saml_assertion_provider::getAttribute(const gss_buffer_t attr,
260                                               int *authenticated,
261                                               int *complete,
262                                               gss_buffer_t value,
263                                               gss_buffer_t display_value GSSEAP_UNUSED,
264                                               int *more) const
265 {
266     string str;
267
268     if (attr != GSS_C_NO_BUFFER && attr->length != 0)
269         return false;
270
271     if (m_assertion == NULL)
272         return false;
273
274     if (*more != -1)
275         return false;
276
277     if (authenticated != NULL)
278         *authenticated = m_authenticated;
279     if (complete != NULL)
280         *complete = true;
281
282     XMLHelper::serialize(m_assertion->marshall((DOMDocument *)NULL), str);
283
284     duplicateBuffer(str, value);
285     *more = 0;
286
287     return true;
288 }
289
290 gss_any_t
291 gss_eap_saml_assertion_provider::mapToAny(int authenticated,
292                                           gss_buffer_t type_id GSSEAP_UNUSED) const
293 {
294     if (authenticated && !m_authenticated)
295         return (gss_any_t)NULL;
296
297     return (gss_any_t)m_assertion;
298 }
299
300 void
301 gss_eap_saml_assertion_provider::releaseAnyNameMapping(gss_buffer_t type_id GSSEAP_UNUSED,
302                                                        gss_any_t input) const
303 {
304     delete ((saml2::Assertion *)input);
305 }
306
307 const char *
308 gss_eap_saml_assertion_provider::prefix(void) const
309 {
310     return "urn:ietf:params:gss-eap:saml-aaa-assertion";
311 }
312
313 bool
314 gss_eap_saml_assertion_provider::init(void)
315 {
316     gss_eap_attr_ctx::registerProvider(ATTR_TYPE_SAML_ASSERTION, createAttrContext);
317     return true;
318 }
319
320 void
321 gss_eap_saml_assertion_provider::finalize(void)
322 {
323     gss_eap_attr_ctx::unregisterProvider(ATTR_TYPE_SAML_ASSERTION);
324 }
325
326 gss_eap_attr_provider *
327 gss_eap_saml_assertion_provider::createAttrContext(void)
328 {
329     return new gss_eap_saml_assertion_provider;
330 }
331
332 saml2::Assertion *
333 gss_eap_saml_assertion_provider::initAssertion(void)
334 {
335     delete m_assertion;
336     m_assertion = saml2::AssertionBuilder::buildAssertion();
337     m_authenticated = false;
338
339     return m_assertion;
340 }
341
342 /*
343  * gss_eap_saml_attr_provider is for retrieving the underlying attributes.
344  */
345 bool
346 gss_eap_saml_attr_provider::getAssertion(int *authenticated,
347                                          saml2::Assertion **pAssertion,
348                                          bool createIfAbsent) const
349 {
350     gss_eap_saml_assertion_provider *saml;
351
352     if (authenticated != NULL)
353         *authenticated = false;
354     if (pAssertion != NULL)
355         *pAssertion = NULL;
356
357     saml = static_cast<const gss_eap_saml_assertion_provider *>
358         (m_manager->getProvider(ATTR_TYPE_SAML_ASSERTION));
359     if (saml == NULL)
360         return false;
361
362     if (authenticated != NULL)
363         *authenticated = saml->authenticated();
364     if (pAssertion != NULL)
365         *pAssertion = saml->getAssertion();
366
367     if (saml->getAssertion() == NULL) {
368         if (createIfAbsent) {
369             if (authenticated != NULL)
370                 *authenticated = false;
371             if (pAssertion != NULL)
372                 *pAssertion = saml->initAssertion();
373         } else
374             return false;
375     }
376
377     return true;
378 }
379
380 bool
381 gss_eap_saml_attr_provider::getAttributeTypes(gss_eap_attr_enumeration_cb addAttribute,
382                                               void *data) const
383 {
384     saml2::Assertion *assertion;
385     int authenticated;
386
387     if (!getAssertion(&authenticated, &assertion))
388         return true;
389
390     /*
391      * Note: the first prefix is added by the attribute provider manager
392      *
393      * From draft-hartman-gss-eap-naming-00:
394      *
395      *   Each attribute carried in the assertion SHOULD also be a GSS name
396      *   attribute.  The name of this attribute has three parts, all separated
397      *   by an ASCII space character.  The first part is
398      *   urn:ietf:params:gss-eap:saml-attr.  The second part is the URI for
399      *   the SAML attribute name format.  The final part is the name of the
400      *   SAML attribute.  If the mechanism performs an additional attribute
401      *   query, the retrieved attributes SHOULD be GSS-API name attributes
402      *   using the same name syntax.
403      */
404     /* For each attribute statement, look for an attribute match */
405     const vector <saml2::AttributeStatement *> &statements =
406         const_cast<const saml2::Assertion *>(assertion)->getAttributeStatements();
407
408     for (vector<saml2::AttributeStatement *>::const_iterator s = statements.begin();
409         s != statements.end();
410         ++s) {
411         const vector<saml2::Attribute*> &attrs =
412             const_cast<const saml2::AttributeStatement*>(*s)->getAttributes();
413
414         for (vector<saml2::Attribute*>::const_iterator a = attrs.begin(); a != attrs.end(); ++a) {
415             const XMLCh *attributeName, *attributeNameFormat;
416             XMLCh *qualifiedName;
417             XMLCh space[2] = { ' ', 0 };
418             gss_buffer_desc utf8;
419             bool ret;
420
421             attributeName = (*a)->getName();
422             attributeNameFormat = (*a)->getNameFormat();
423             if (attributeNameFormat == NULL || attributeNameFormat[0] == '\0')
424                 attributeNameFormat = saml2::Attribute::UNSPECIFIED;
425
426             qualifiedName = new XMLCh[XMLString::stringLen(attributeNameFormat) + 1 +
427                                       XMLString::stringLen(attributeName) + 1];
428             XMLString::copyString(qualifiedName, attributeNameFormat);
429             XMLString::catString(qualifiedName, space);
430             XMLString::catString(qualifiedName, attributeName);
431
432             utf8.value = (void *)toUTF8(qualifiedName);
433             utf8.length = strlen((char *)utf8.value);
434
435             ret = addAttribute(m_manager, this, &utf8, data);
436
437             delete qualifiedName;
438
439             if (!ret)
440                 return ret;
441         }
442     }
443
444     return true;
445 }
446
447 static BaseRefVectorOf<XMLCh> *
448 decomposeAttributeName(const gss_buffer_t attr)
449 {
450     XMLCh *qualifiedAttr = new XMLCh[attr->length + 1];
451     XMLString::transcode((const char *)attr->value, qualifiedAttr, attr->length);
452
453     BaseRefVectorOf<XMLCh> *components = XMLString::tokenizeString(qualifiedAttr);
454
455     delete qualifiedAttr;
456
457     if (components->size() != 2) {
458         delete components;
459         components = NULL;
460     }
461
462     return components;
463 }
464
465 bool
466 gss_eap_saml_attr_provider::setAttribute(int complete GSSEAP_UNUSED,
467                                          const gss_buffer_t attr,
468                                          const gss_buffer_t value)
469 {
470     saml2::Assertion *assertion;
471     saml2::Attribute *attribute;
472     saml2::AttributeValue *attributeValue;
473     saml2::AttributeStatement *attributeStatement;
474
475     if (!getAssertion(NULL, &assertion, true))
476         return false;
477
478     if (assertion->getAttributeStatements().size() != 0) {
479         attributeStatement = assertion->getAttributeStatements().front();
480     } else {
481         attributeStatement = saml2::AttributeStatementBuilder::buildAttributeStatement();
482         assertion->getAttributeStatements().push_back(attributeStatement);
483     }
484
485     /* Check the attribute name consists of name format | whsp | name */
486     BaseRefVectorOf<XMLCh> *components = decomposeAttributeName(attr);
487     if (components == NULL)
488         return false;
489
490     attribute = saml2::AttributeBuilder::buildAttribute();
491     attribute->setNameFormat(components->elementAt(0));
492     attribute->setName(components->elementAt(1));
493
494     XMLCh *xmlValue = new XMLCh[value->length + 1];
495     XMLString::transcode((const char *)value->value, xmlValue, attr->length);
496
497     attributeValue = saml2::AttributeValueBuilder::buildAttributeValue();
498     attributeValue->setTextContent(xmlValue);
499
500     attribute->getAttributeValues().push_back(attributeValue);
501
502     assert(attributeStatement != NULL);
503     attributeStatement->getAttributes().push_back(attribute);
504
505     delete components;
506     delete xmlValue;
507
508     return true;
509 }
510
511 bool
512 gss_eap_saml_attr_provider::deleteAttribute(const gss_buffer_t attr)
513 {
514     saml2::Assertion *assertion;
515     bool ret = false;
516
517     if (!getAssertion(NULL, &assertion) ||
518         assertion->getAttributeStatements().size() == 0)
519         return false;
520
521     /* Check the attribute name consists of name format | whsp | name */
522     BaseRefVectorOf<XMLCh> *components = decomposeAttributeName(attr);
523     if (components == NULL)
524         return false;
525
526     /* For each attribute statement, look for an attribute match */
527     const vector<saml2::AttributeStatement *> &statements =
528         const_cast<const saml2::Assertion *>(assertion)->getAttributeStatements();
529
530     for (vector<saml2::AttributeStatement *>::const_iterator s = statements.begin();
531         s != statements.end();
532         ++s) {
533         const vector<saml2::Attribute *> &attrs =
534             const_cast<const saml2::AttributeStatement *>(*s)->getAttributes();
535         ssize_t index = -1, i = 0;
536
537         /* There's got to be an easier way to do this */
538         for (vector<saml2::Attribute *>::const_iterator a = attrs.begin();
539              a != attrs.end();
540              ++a) {
541             if (XMLString::equals((*a)->getNameFormat(), components->elementAt(0)) &&
542                 XMLString::equals((*a)->getName(), components->elementAt(1))) {
543                 index = i;
544                 break;
545             }
546             ++i;
547         }
548         if (index != -1) {
549             (*s)->getAttributes().erase((*s)->getAttributes().begin() + index);
550             ret = true;
551         }
552     }
553
554     delete components;
555
556     return ret;
557 }
558
559 bool
560 gss_eap_saml_attr_provider::getAttribute(const gss_buffer_t attr,
561                                          int *authenticated,
562                                          int *complete,
563                                          const saml2::Attribute **pAttribute) const
564 {
565     saml2::Assertion *assertion;
566
567     if (authenticated != NULL)
568         *authenticated = false;
569     if (complete != NULL)
570         *complete = true;
571     *pAttribute = NULL;
572
573     if (!getAssertion(authenticated, &assertion) ||
574         assertion->getAttributeStatements().size() == 0)
575         return false;
576
577     /* Check the attribute name consists of name format | whsp | name */
578     BaseRefVectorOf<XMLCh> *components = decomposeAttributeName(attr);
579     if (components == NULL)
580         return false;
581
582     /* For each attribute statement, look for an attribute match */
583     const vector <saml2::AttributeStatement *> &statements =
584         const_cast<const saml2::Assertion *>(assertion)->getAttributeStatements();
585     const saml2::Attribute *ret = NULL;
586
587     for (vector<saml2::AttributeStatement *>::const_iterator s = statements.begin();
588         s != statements.end();
589         ++s) {
590         const vector<saml2::Attribute *> &attrs =
591             const_cast<const saml2::AttributeStatement*>(*s)->getAttributes();
592
593         for (vector<saml2::Attribute *>::const_iterator a = attrs.begin(); a != attrs.end(); ++a) {
594             const XMLCh *attributeName, *attributeNameFormat;
595
596             attributeName = (*a)->getName();
597             attributeNameFormat = (*a)->getNameFormat();
598             if (attributeNameFormat == NULL || attributeNameFormat[0] == '\0')
599                 attributeNameFormat = saml2::Attribute::UNSPECIFIED;
600
601             if (XMLString::equals(attributeNameFormat, components->elementAt(0)) &&
602                 XMLString::equals(attributeName, components->elementAt(1))) {
603                 ret = *a;
604                 break;
605             }
606         }
607
608         if (ret != NULL)
609             break;
610     }
611
612     delete components;
613
614     *pAttribute = ret;
615
616     return (ret != NULL);
617 }
618
619 bool
620 gss_eap_saml_attr_provider::getAttribute(const gss_buffer_t attr,
621                                          int *authenticated,
622                                          int *complete,
623                                          gss_buffer_t value,
624                                          gss_buffer_t display_value,
625                                          int *more) const
626 {
627     const saml2::Attribute *a;
628     const saml2::AttributeValue *av;
629     int nvalues, i = *more;
630
631     *more = 0;
632
633     if (!getAttribute(attr, authenticated, complete, &a))
634         return false;
635
636     nvalues = a->getAttributeValues().size();
637
638     if (i == -1)
639         i = 0;
640     else if (i >= nvalues)
641         return false;
642 #ifdef __APPLE__
643     av = (const saml2::AttributeValue *)((void *)(a->getAttributeValues().at(i)));
644 #else
645     av = dynamic_cast<const saml2::AttributeValue *>(a->getAttributeValues().at(i));
646 #endif
647     if (av != NULL) {
648         if (value != NULL) {
649             value->value = toUTF8(av->getTextContent(), true);
650             value->length = strlen((char *)value->value);
651         }
652         if (display_value != NULL) {
653             display_value->value = toUTF8(av->getTextContent(), true);
654             display_value->length = strlen((char *)value->value);
655         }
656     }
657
658     if (nvalues > ++i)
659         *more = i;
660
661     return true;
662 }
663
664 gss_any_t
665 gss_eap_saml_attr_provider::mapToAny(int authenticated GSSEAP_UNUSED,
666                                      gss_buffer_t type_id GSSEAP_UNUSED) const
667 {
668     return (gss_any_t)NULL;
669 }
670
671 void
672 gss_eap_saml_attr_provider::releaseAnyNameMapping(gss_buffer_t type_id GSSEAP_UNUSED,
673                                                   gss_any_t input GSSEAP_UNUSED) const
674 {
675 }
676
677 const char *
678 gss_eap_saml_attr_provider::prefix(void) const
679 {
680     return "urn:ietf:params:gss-eap:saml-attr";
681 }
682
683 bool
684 gss_eap_saml_attr_provider::init(void)
685 {
686     gss_eap_attr_ctx::registerProvider(ATTR_TYPE_SAML, createAttrContext);
687     return true;
688 }
689
690 void
691 gss_eap_saml_attr_provider::finalize(void)
692 {
693     gss_eap_attr_ctx::unregisterProvider(ATTR_TYPE_SAML);
694 }
695
696 gss_eap_attr_provider *
697 gss_eap_saml_attr_provider::createAttrContext(void)
698 {
699     return new gss_eap_saml_attr_provider;
700 }
701
702 OM_uint32
703 gssEapSamlAttrProvidersInit(OM_uint32 *minor)
704 {
705     if (!gss_eap_saml_assertion_provider::init() ||
706         !gss_eap_saml_attr_provider::init()) {
707         *minor = GSSEAP_SAML_INIT_FAILURE;
708         return GSS_S_FAILURE;
709     }
710
711     return GSS_S_COMPLETE;
712 }
713
714 OM_uint32
715 gssEapSamlAttrProvidersFinalize(OM_uint32 *minor)
716 {
717     gss_eap_saml_attr_provider::finalize();
718     gss_eap_saml_assertion_provider::finalize();
719
720     *minor = 0;
721     return GSS_S_COMPLETE;
722 }