More careful matching of alloc/free functions
[mech_eap.orig] / mech_eap / util_radius.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  * RADIUS attribute provider implementation.
35  */
36
37 #include "gssapiP_eap.h"
38
39 /* stuff that should be provided by libradsec/libfreeradius-radius */
40 #define VENDORATTR(vendor, attr)            (((vendor) << 16) | (attr))
41
42 #ifndef ATTRID
43 #define ATTRID(attr)                        ((attr) & 0xFFFF)
44 #endif
45
46 static gss_buffer_desc radiusUrnPrefix = {
47     sizeof("urn:x-radius:") - 1,
48     (void *)"urn:x-radius:"
49 };
50
51 static VALUE_PAIR *copyAvps(const VALUE_PAIR *src);
52
53 gss_eap_radius_attr_provider::gss_eap_radius_attr_provider(void)
54 {
55     m_vps = NULL;
56     m_authenticated = false;
57 }
58
59 gss_eap_radius_attr_provider::~gss_eap_radius_attr_provider(void)
60 {
61     if (m_vps != NULL)
62         pairfree(&m_vps);
63 }
64
65 bool
66 gss_eap_radius_attr_provider::initWithExistingContext(const gss_eap_attr_ctx *manager,
67                                                       const gss_eap_attr_provider *ctx)
68 {
69     const gss_eap_radius_attr_provider *radius;
70
71     if (!gss_eap_attr_provider::initWithExistingContext(manager, ctx))
72         return false;
73
74     radius = static_cast<const gss_eap_radius_attr_provider *>(ctx);
75
76     if (radius->m_vps != NULL)
77         m_vps = copyAvps(const_cast<VALUE_PAIR *>(radius->getAvps()));
78
79     m_authenticated = radius->m_authenticated;
80
81     return true;
82 }
83
84 bool
85 gss_eap_radius_attr_provider::initWithGssContext(const gss_eap_attr_ctx *manager,
86                                                  const gss_cred_id_t gssCred,
87                                                  const gss_ctx_id_t gssCtx)
88 {
89     if (!gss_eap_attr_provider::initWithGssContext(manager, gssCred, gssCtx))
90         return false;
91
92     if (gssCtx != GSS_C_NO_CONTEXT) {
93         if (gssCtx->acceptorCtx.vps != NULL) {
94             m_vps = copyAvps(gssCtx->acceptorCtx.vps);
95             if (m_vps == NULL)
96                 return false;
97
98             /* We assume libradsec validated this for us */
99             GSSEAP_ASSERT(pairfind(m_vps, PW_MESSAGE_AUTHENTICATOR) != NULL);
100             m_authenticated = true;
101         }
102     }
103
104     return true;
105 }
106
107 static bool
108 alreadyAddedAttributeP(std::vector <std::string> &attrs, VALUE_PAIR *vp)
109 {
110     for (std::vector<std::string>::const_iterator a = attrs.begin();
111          a != attrs.end();
112          ++a) {
113         if (strcmp(vp->name, (*a).c_str()) == 0)
114             return true;
115     }
116
117     return false;
118 }
119
120 static bool
121 isSecretAttributeP(uint16_t attrid, uint16_t vendor)
122 {
123     bool bSecretAttribute = false;
124
125     switch (vendor) {
126     case VENDORPEC_MS:
127         switch (attrid) {
128         case PW_MS_MPPE_SEND_KEY:
129         case PW_MS_MPPE_RECV_KEY:
130             bSecretAttribute = true;
131             break;
132         default:
133             break;
134         }
135     default:
136         break;
137     }
138
139     return bSecretAttribute;
140 }
141
142 static bool
143 isSecretAttributeP(uint32_t attribute)
144 {
145     return isSecretAttributeP(ATTRID(attribute), VENDOR(attribute));
146 }
147
148 static bool
149 isInternalAttributeP(uint16_t attrid, uint16_t vendor)
150 {
151     bool bInternalAttribute = false;
152
153     /* should have been filtered */
154     GSSEAP_ASSERT(!isSecretAttributeP(attrid, vendor));
155
156     switch (vendor) {
157     case VENDORPEC_UKERNA:
158         switch (attrid) {
159         case PW_GSS_ACCEPTOR_SERVICE_NAME:
160         case PW_GSS_ACCEPTOR_HOST_NAME:
161         case PW_GSS_ACCEPTOR_SERVICE_SPECIFIC:
162         case PW_GSS_ACCEPTOR_REALM_NAME:
163         case PW_SAML_AAA_ASSERTION:
164             bInternalAttribute = true;
165             break;
166         default:
167             break;
168         }
169         break;
170     default:
171         break;
172     }
173
174     return bInternalAttribute;
175 }
176
177 static bool
178 isInternalAttributeP(uint32_t attribute)
179 {
180     return isInternalAttributeP(ATTRID(attribute), VENDOR(attribute));
181 }
182
183 static bool
184 isFragmentedAttributeP(uint16_t attrid, uint16_t vendor)
185 {
186     /* A bit of a hack for the PAC for now. Should be configurable. */
187     return (vendor == VENDORPEC_UKERNA) &&
188         !isInternalAttributeP(attrid, vendor);
189 }
190
191 static bool
192 isFragmentedAttributeP(uint32_t attribute)
193 {
194     return isFragmentedAttributeP(ATTRID(attribute), VENDOR(attribute));
195 }
196
197 /*
198  * Copy AVP list, same as paircopy except it filters out attributes
199  * containing keys.
200  */
201 static VALUE_PAIR *
202 copyAvps(const VALUE_PAIR *src)
203 {
204     const VALUE_PAIR *vp;
205     VALUE_PAIR *dst = NULL, **pDst = &dst;
206
207     for (vp = src; vp != NULL; vp = vp->next) {
208         VALUE_PAIR *vpcopy;
209
210         if (isSecretAttributeP(vp->attribute))
211             continue;
212
213         vpcopy = paircopyvp(vp);
214         if (vpcopy == NULL) {
215             pairfree(&dst);
216             throw std::bad_alloc();
217         }
218         *pDst = vpcopy;
219         pDst = &vpcopy->next;
220      }
221
222     return dst;
223 }
224
225 bool
226 gss_eap_radius_attr_provider::getAttributeTypes(gss_eap_attr_enumeration_cb addAttribute,
227                                                 void *data) const
228 {
229     VALUE_PAIR *vp;
230     std::vector <std::string> seen;
231
232     for (vp = m_vps; vp != NULL; vp = vp->next) {
233         gss_buffer_desc attribute;
234         char attrid[64];
235
236         /* Don't advertise attributes that are internal to the GSS-EAP mechanism */
237         if (isInternalAttributeP(vp->attribute))
238             continue;
239
240         if (alreadyAddedAttributeP(seen, vp))
241             continue;
242
243         snprintf(attrid, sizeof(attrid), "%s%d",
244             (char *)radiusUrnPrefix.value, vp->attribute);
245
246         attribute.value = attrid;
247         attribute.length = strlen(attrid);
248
249         if (!addAttribute(m_manager, this, &attribute, data))
250             return false;
251
252         seen.push_back(std::string(vp->name));
253     }
254
255     return true;
256 }
257
258 uint32_t
259 getAttributeId(const gss_buffer_t attr)
260 {
261     OM_uint32 tmpMinor;
262     gss_buffer_desc strAttr = GSS_C_EMPTY_BUFFER;
263     DICT_ATTR *da;
264     char *s;
265     uint32_t attrid = 0;
266
267     if (attr->length < radiusUrnPrefix.length ||
268         memcmp(attr->value, radiusUrnPrefix.value, radiusUrnPrefix.length) != 0)
269         return 0;
270
271     /* need to duplicate because attr may not be NUL terminated */
272     duplicateBuffer(*attr, &strAttr);
273     s = (char *)strAttr.value + radiusUrnPrefix.length;
274
275     if (isdigit(*s)) {
276         attrid = strtoul(s, NULL, 10);
277     } else {
278         da = dict_attrbyname(s);
279         if (da != NULL)
280             attrid = da->attr;
281     }
282
283     gss_release_buffer(&tmpMinor, &strAttr);
284
285     return attrid;
286 }
287
288 bool
289 gss_eap_radius_attr_provider::setAttribute(int complete GSSEAP_UNUSED,
290                                            uint32_t attrid,
291                                            const gss_buffer_t value)
292 {
293     OM_uint32 major = GSS_S_UNAVAILABLE, minor;
294
295     if (!isSecretAttributeP(attrid) &&
296         !isInternalAttributeP(attrid)) {
297         deleteAttribute(attrid);
298
299         major = gssEapRadiusAddAvp(&minor, &m_vps,
300                                    ATTRID(attrid), VENDOR(attrid), 
301                                    value);
302     }
303
304     return !GSS_ERROR(major);
305 }
306
307 bool
308 gss_eap_radius_attr_provider::setAttribute(int complete,
309                                            const gss_buffer_t attr,
310                                            const gss_buffer_t value)
311 {
312     uint32_t attrid = getAttributeId(attr);
313
314     if (!attrid)
315         return false;
316
317     return setAttribute(complete, attrid, value);
318 }
319
320 bool
321 gss_eap_radius_attr_provider::deleteAttribute(uint32_t attrid)
322 {
323     if (isSecretAttributeP(attrid) || isInternalAttributeP(attrid) ||
324         pairfind(m_vps, attrid) == NULL)
325         return false;
326
327     pairdelete(&m_vps, attrid);
328
329     return true;
330 }
331
332 bool
333 gss_eap_radius_attr_provider::deleteAttribute(const gss_buffer_t attr)
334 {
335     uint32_t attrid = getAttributeId(attr);
336
337     if (!attrid)
338         return false;
339
340     return deleteAttribute(attrid);
341 }
342
343 bool
344 gss_eap_radius_attr_provider::getAttribute(const gss_buffer_t attr,
345                                            int *authenticated,
346                                            int *complete,
347                                            gss_buffer_t value,
348                                            gss_buffer_t display_value,
349                                            int *more) const
350 {
351     uint32_t attrid;
352
353     attrid = getAttributeId(attr);
354     if (!attrid)
355         return false;
356
357     return getAttribute(attrid, authenticated, complete,
358                         value, display_value, more);
359 }
360
361 bool
362 gss_eap_radius_attr_provider::getAttribute(uint32_t attrid,
363                                            int *authenticated,
364                                            int *complete,
365                                            gss_buffer_t value,
366                                            gss_buffer_t display_value,
367                                            int *more) const
368 {
369     VALUE_PAIR *vp;
370     int i = *more, count = 0;
371
372     *more = 0;
373
374     if (i == -1)
375         i = 0;
376
377     if (isSecretAttributeP(attrid) || isInternalAttributeP(attrid)) {
378         return false;
379     } else if (isFragmentedAttributeP(attrid)) {
380         return getFragmentedAttribute(attrid,
381                                       authenticated,
382                                       complete,
383                                       value);
384     }
385
386     for (vp = pairfind(m_vps, attrid);
387          vp != NULL;
388          vp = pairfind(vp->next, attrid)) {
389         if (count++ == i) {
390             if (pairfind(vp->next, attrid) != NULL)
391                 *more = count;
392             break;
393         }
394     }
395
396     if (vp == NULL && *more == 0)
397         return false;
398
399     if (value != GSS_C_NO_BUFFER) {
400         gss_buffer_desc valueBuf;
401
402         valueBuf.value = (void *)vp->vp_octets;
403         valueBuf.length = vp->length;
404
405         duplicateBuffer(valueBuf, value);
406     }
407
408     if (display_value != GSS_C_NO_BUFFER &&
409         vp->type != PW_TYPE_OCTETS) {
410         char displayString[MAX_STRING_LEN];
411         gss_buffer_desc displayBuf;
412
413         displayBuf.length = vp_prints_value(displayString,
414                                             sizeof(displayString), vp, 0);
415         displayBuf.value = (void *)displayString;
416
417         duplicateBuffer(displayBuf, display_value);
418     }
419
420     if (authenticated != NULL)
421         *authenticated = m_authenticated;
422     if (complete != NULL)
423         *complete = true;
424
425     return true;
426 }
427
428 bool
429 gss_eap_radius_attr_provider::getFragmentedAttribute(uint16_t attribute,
430                                                      uint16_t vendor,
431                                                      int *authenticated,
432                                                      int *complete,
433                                                      gss_buffer_t value) const
434 {
435     OM_uint32 major, minor;
436
437     major = gssEapRadiusGetAvp(&minor, m_vps, attribute, vendor, value, TRUE);
438
439     if (authenticated != NULL)
440         *authenticated = m_authenticated;
441     if (complete != NULL)
442         *complete = true;
443
444     return !GSS_ERROR(major);
445 }
446
447 bool
448 gss_eap_radius_attr_provider::getFragmentedAttribute(uint32_t attrid,
449                                                      int *authenticated,
450                                                      int *complete,
451                                                      gss_buffer_t value) const
452 {
453     return getFragmentedAttribute(ATTRID(attrid), VENDOR(attrid),
454                                   authenticated, complete, value);
455 }
456
457 bool
458 gss_eap_radius_attr_provider::getAttribute(uint16_t attribute,
459                                            uint16_t vendor,
460                                            int *authenticated,
461                                            int *complete,
462                                            gss_buffer_t value,
463                                            gss_buffer_t display_value,
464                                            int *more) const
465 {
466
467     return getAttribute(VENDORATTR(attribute, vendor),
468                         authenticated, complete,
469                         value, display_value, more);
470 }
471
472 gss_any_t
473 gss_eap_radius_attr_provider::mapToAny(int authenticated,
474                                        gss_buffer_t type_id GSSEAP_UNUSED) const
475 {
476     if (authenticated && !m_authenticated)
477         return (gss_any_t)NULL;
478
479     return (gss_any_t)copyAvps(m_vps);
480 }
481
482 void
483 gss_eap_radius_attr_provider::releaseAnyNameMapping(gss_buffer_t type_id GSSEAP_UNUSED,
484                                                     gss_any_t input) const
485 {
486     VALUE_PAIR *vp = (VALUE_PAIR *)input;
487     pairfree(&vp);
488 }
489
490 bool
491 gss_eap_radius_attr_provider::init(void)
492 {
493     gss_eap_attr_ctx::registerProvider(ATTR_TYPE_RADIUS, createAttrContext);
494
495 #ifdef GSSEAP_ENABLE_REAUTH
496     struct rs_context *radContext;
497
498     /*
499      * This hack is necessary in order to force the loading of the global
500      * dictionary, otherwise accepting reauthentication tokens fails unless
501      * the acceptor has already accepted a normal authentication token.
502      */
503     if (rs_context_create(&radContext) != 0)
504         return false;
505
506     if (rs_context_read_config(radContext, RS_CONFIG_FILE) != 0) {
507         rs_context_destroy(radContext);
508         return false;
509     }
510
511     if (rs_context_init_freeradius_dict(radContext, NULL)) {
512         rs_context_destroy(radContext);
513         return false;
514     }
515
516     rs_context_destroy(radContext);
517 #endif
518
519     return true;
520 }
521
522 void
523 gss_eap_radius_attr_provider::finalize(void)
524 {
525     gss_eap_attr_ctx::unregisterProvider(ATTR_TYPE_RADIUS);
526 }
527
528 gss_eap_attr_provider *
529 gss_eap_radius_attr_provider::createAttrContext(void)
530 {
531     return new gss_eap_radius_attr_provider;
532 }
533
534 OM_uint32
535 gssEapRadiusAddAvp(OM_uint32 *minor,
536                    VALUE_PAIR **vps,
537                    uint16_t attribute,
538                    uint16_t vendor,
539                    const gss_buffer_t buffer)
540 {
541     uint32_t attrid = VENDORATTR(vendor, attribute);
542     unsigned char *p = (unsigned char *)buffer->value;
543     size_t remain = buffer->length;
544
545     do {
546         VALUE_PAIR *vp;
547         size_t n = remain;
548
549         /*
550          * There's an extra byte of padding; RADIUS AVPs can only
551          * be 253 octets.
552          */
553         if (n >= MAX_STRING_LEN)
554             n = MAX_STRING_LEN - 1;
555
556         vp = paircreate(attrid, PW_TYPE_OCTETS);
557         if (vp == NULL) {
558             *minor = ENOMEM;
559             return GSS_S_FAILURE;
560         }
561
562         memcpy(vp->vp_octets, p, n);
563         vp->length = n;
564
565         pairadd(vps, vp);
566
567         p += n;
568         remain -= n;
569     } while (remain != 0);
570
571     return GSS_S_COMPLETE;
572 }
573
574 OM_uint32
575 gssEapRadiusGetRawAvp(OM_uint32 *minor,
576                       VALUE_PAIR *vps,
577                       uint16_t attribute,
578                       uint16_t vendor,
579                       VALUE_PAIR **vp)
580 {
581     uint32_t attr = VENDORATTR(vendor, attribute);
582
583     *vp = pairfind(vps, attr);
584     if (*vp == NULL) {
585         *minor = GSSEAP_NO_SUCH_ATTR;
586         return GSS_S_UNAVAILABLE;
587     }
588
589     return GSS_S_COMPLETE;
590 }
591
592 OM_uint32
593 gssEapRadiusGetAvp(OM_uint32 *minor,
594                    VALUE_PAIR *vps,
595                    uint16_t attribute,
596                    uint16_t vendor,
597                    gss_buffer_t buffer,
598                    int concat)
599 {
600     VALUE_PAIR *vp;
601     unsigned char *p;
602     uint32_t attr = VENDORATTR(vendor, attribute);
603
604     if (buffer != GSS_C_NO_BUFFER) {
605         buffer->length = 0;
606         buffer->value = NULL;
607     }
608
609     vp = pairfind(vps, attr);
610     if (vp == NULL) {
611         *minor = GSSEAP_NO_SUCH_ATTR;
612         return GSS_S_UNAVAILABLE;
613     }
614
615     if (buffer != GSS_C_NO_BUFFER) {
616         do {
617             buffer->length += vp->length;
618         } while (concat && (vp = pairfind(vp->next, attr)) != NULL);
619
620         buffer->value = GSSEAP_MALLOC(buffer->length);
621         if (buffer->value == NULL) {
622             *minor = ENOMEM;
623             return GSS_S_FAILURE;
624         }
625
626         p = (unsigned char *)buffer->value;
627
628         for (vp = pairfind(vps, attr);
629              concat && vp != NULL;
630              vp = pairfind(vp->next, attr)) {
631             memcpy(p, vp->vp_octets, vp->length);
632             p += vp->length;
633         }
634     }
635
636     *minor = 0;
637     return GSS_S_COMPLETE;
638 }
639
640 OM_uint32
641 gssEapRadiusFreeAvps(OM_uint32 *minor,
642                      VALUE_PAIR **vps)
643 {
644     pairfree(vps);
645     *minor = 0;
646     return GSS_S_COMPLETE;
647 }
648
649 OM_uint32
650 gssEapRadiusAttrProviderInit(OM_uint32 *minor)
651 {
652     if (!gss_eap_radius_attr_provider::init()) {
653         *minor = GSSEAP_RADSEC_INIT_FAILURE;
654         return GSS_S_FAILURE;
655     }
656
657     return GSS_S_COMPLETE;
658 }
659
660 OM_uint32
661 gssEapRadiusAttrProviderFinalize(OM_uint32 *minor)
662 {
663     gss_eap_radius_attr_provider::finalize();
664
665     *minor = 0;
666     return GSS_S_COMPLETE;
667 }
668
669 static JSONObject
670 avpToJson(const VALUE_PAIR *vp)
671 {
672     JSONObject obj;
673
674     GSSEAP_ASSERT(vp->length <= MAX_STRING_LEN);
675
676     switch (vp->type) {
677     case PW_TYPE_INTEGER:
678     case PW_TYPE_IPADDR:
679     case PW_TYPE_DATE:
680         obj.set("value", vp->lvalue);
681         break;
682     case PW_TYPE_STRING:
683         obj.set("value", vp->vp_strvalue);
684         break;
685     default: {
686         char *b64;
687
688         if (base64Encode(vp->vp_octets, vp->length, &b64) < 0)
689             throw std::bad_alloc();
690
691         obj.set("value", b64);
692         GSSEAP_FREE(b64);
693         break;
694     }
695     }
696
697     obj.set("type", vp->attribute);
698
699     return obj;
700 }
701
702 static bool
703 jsonToAvp(VALUE_PAIR **pVp, JSONObject &obj)
704 {
705     VALUE_PAIR *vp = NULL;
706     DICT_ATTR *da;
707     uint32_t attrid;
708
709     JSONObject type = obj["type"];
710     JSONObject value = obj["value"];
711
712     if (!type.isInteger())
713         goto fail;
714
715     attrid = type.integer();
716     da = dict_attrbyvalue(attrid);
717     if (da != NULL) {
718         vp = pairalloc(da);
719     } else {
720         int type = base64Valid(value.string()) ?
721             PW_TYPE_OCTETS : PW_TYPE_STRING;
722         vp = paircreate(attrid, type);
723     }
724     if (vp == NULL)
725         throw std::bad_alloc();
726
727     switch (vp->type) {
728     case PW_TYPE_INTEGER:
729     case PW_TYPE_IPADDR:
730     case PW_TYPE_DATE:
731         if (!value.isInteger())
732             goto fail;
733
734         vp->length = 4;
735         vp->lvalue = value.integer();
736         break;
737     case PW_TYPE_STRING: {
738         if (!value.isString())
739             goto fail;
740
741         const char *str = value.string();
742         size_t len = strlen(str);
743
744         if (len >= MAX_STRING_LEN)
745             goto fail;
746
747         vp->length = len;
748         memcpy(vp->vp_strvalue, str, len + 1);
749         break;
750     }
751     case PW_TYPE_OCTETS:
752     default: {
753         if (!value.isString())
754             goto fail;
755
756         const char *str = value.string();
757         ssize_t len = strlen(str);
758
759         /* this optimization requires base64Decode only understand packed encoding */
760         if (len >= BASE64_EXPAND(MAX_STRING_LEN))
761             goto fail;
762
763         len = base64Decode(str, vp->vp_octets);
764         if (len < 0)
765             goto fail;
766
767         vp->length = len;
768         break;
769     }
770     }
771
772     *pVp = vp;
773
774     return true;
775
776 fail:
777     if (vp != NULL)
778         pairbasicfree(vp);
779     *pVp = NULL;
780     return false;
781 }
782
783 const char *
784 gss_eap_radius_attr_provider::name(void) const
785 {
786     return "radius";
787 }
788
789 bool
790 gss_eap_radius_attr_provider::initWithJsonObject(const gss_eap_attr_ctx *ctx,
791                                                  JSONObject &obj)
792 {
793     VALUE_PAIR **pNext = &m_vps;
794
795     if (!gss_eap_attr_provider::initWithJsonObject(ctx, obj))
796         return false;
797
798     JSONObject attrs = obj["attributes"];
799     size_t nelems = attrs.size();
800
801     for (size_t i = 0; i < nelems; i++) {
802         JSONObject attr = attrs[i];
803         VALUE_PAIR *vp;
804
805         if (!jsonToAvp(&vp, attr))
806             return false;
807
808         *pNext = vp;
809         pNext = &vp->next;
810     }
811
812     m_authenticated = obj["authenticated"].integer() ? true : false;
813
814     return true;
815 }
816
817 const char *
818 gss_eap_radius_attr_provider::prefix(void) const
819 {
820     return "urn:ietf:params:gss-eap:radius-avp";
821 }
822
823 JSONObject
824 gss_eap_radius_attr_provider::jsonRepresentation(void) const
825 {
826     JSONObject obj, attrs = JSONObject::array();
827
828     for (VALUE_PAIR *vp = m_vps; vp != NULL; vp = vp->next) {
829         JSONObject attr = avpToJson(vp);
830         attrs.append(attr);
831     }
832
833     obj.set("attributes", attrs);
834
835     obj.set("authenticated", m_authenticated);
836
837     return obj;
838 }
839
840 time_t
841 gss_eap_radius_attr_provider::getExpiryTime(void) const
842 {
843     VALUE_PAIR *vp;
844
845     vp = pairfind(m_vps, PW_SESSION_TIMEOUT);
846     if (vp == NULL || vp->lvalue == 0)
847         return 0;
848
849     return time(NULL) + vp->lvalue;
850 }
851
852 OM_uint32
853 gssEapRadiusMapError(OM_uint32 *minor,
854                      struct rs_error *err)
855 {
856     int code;
857
858     GSSEAP_ASSERT(err != NULL);
859
860     code = rs_err_code(err, 0);
861
862     if (code == RSE_OK) {
863         *minor = 0;
864         return GSS_S_COMPLETE;
865     }
866
867     *minor = ERROR_TABLE_BASE_rse + code;
868
869     gssEapSaveStatusInfo(*minor, "%s", rs_err_msg(err));
870     rs_err_free(err);
871
872     return GSS_S_FAILURE;
873 }