some cleanup work on marshalling
[mech_eap.git] / util_radius.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 #include "gssapiP_eap.h"
34
35 bool
36 gss_eap_radius_attr_provider::initFromExistingContext(const gss_eap_attr_ctx *source,
37                                                       const gss_eap_attr_provider *ctx)
38 {
39     if (!gss_eap_attr_provider::initFromExistingContext(source, ctx))
40         return false;
41
42     return true;
43 }
44
45 bool
46 gss_eap_radius_attr_provider::initFromGssContext(const gss_eap_attr_ctx *source,
47                                                  const gss_cred_id_t gssCred,
48                                                  const gss_ctx_id_t gssCtx)
49 {
50     if (!gss_eap_attr_provider::initFromGssContext(source, gssCred, gssCtx))
51         return false;
52
53     return true;
54 }
55
56 gss_eap_radius_attr_provider::~gss_eap_radius_attr_provider(void)
57 {
58 }
59
60 bool
61 gss_eap_radius_attr_provider::getAttributeTypes(gss_eap_attr_enumeration_cb addAttribute, void *data) const
62 {
63     return true;
64 }
65
66 void
67 gss_eap_radius_attr_provider::setAttribute(int complete,
68                                            const gss_buffer_t attr,
69                                            const gss_buffer_t value)
70 {
71 }
72
73 void
74 gss_eap_radius_attr_provider::deleteAttribute(const gss_buffer_t value)
75 {
76 }
77
78 bool
79 gss_eap_radius_attr_provider::getAttribute(const gss_buffer_t attr,
80                                            int *authenticated,
81                                            int *complete,
82                                            gss_buffer_t value,
83                                            gss_buffer_t display_value,
84                                            int *more) const
85 {
86     return false;
87 }
88
89 bool
90 gss_eap_radius_attr_provider::getAttribute(unsigned int attr,
91                                            int *authenticated,
92                                            int *complete,
93                                            gss_buffer_t value,
94                                            gss_buffer_t display_value,
95                                            int *more) const
96 {
97     return false;
98 }
99
100 gss_any_t
101 gss_eap_radius_attr_provider::mapToAny(int authenticated,
102                                        gss_buffer_t type_id) const
103 {
104     return (gss_any_t)NULL;
105 }
106
107 void
108 gss_eap_radius_attr_provider::releaseAnyNameMapping(gss_buffer_t type_id,
109                                                     gss_any_t input) const
110 {
111 }
112
113 void
114 gss_eap_radius_attr_provider::exportToBuffer(gss_buffer_t buffer) const
115 {
116 }
117
118 bool
119 gss_eap_radius_attr_provider::initFromBuffer(const gss_eap_attr_ctx *ctx,
120                                              const gss_buffer_t buffer)
121 {
122     return false;
123 }
124
125 bool
126 gss_eap_radius_attr_provider::init(void)
127 {
128     return true;
129 }
130
131 void
132 gss_eap_radius_attr_provider::finalize(void)
133 {
134 }
135
136 gss_eap_attr_provider *
137 gss_eap_radius_attr_provider::createAttrContext(void)
138 {
139     return new gss_eap_radius_attr_provider;
140 }