Utility to setup vc build env on windows
[mech_eap.git] / mech_eap / util_radius.h
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.
35  */
36
37 #ifndef _UTIL_RADIUS_H_
38 #define _UTIL_RADIUS_H_ 1
39
40 #ifdef __cplusplus
41
42 #ifdef GSSEAP_ENABLE_ACCEPTOR
43
44 #include <utility>
45 typedef std::pair <unsigned int, unsigned int> gss_eap_attrid;
46
47 struct gss_eap_radius_attr_provider : gss_eap_attr_provider {
48 public:
49     gss_eap_radius_attr_provider(void);
50     ~gss_eap_radius_attr_provider(void);
51
52     bool initWithExistingContext(const gss_eap_attr_ctx *source,
53                                  const gss_eap_attr_provider *ctx);
54     bool initWithGssContext(const gss_eap_attr_ctx *source,
55                             const gss_cred_id_t cred,
56                             const gss_ctx_id_t ctx);
57
58     bool getAttributeTypes(gss_eap_attr_enumeration_cb, void *data) const;
59     bool setAttribute(int complete,
60                       const gss_buffer_t attr,
61                       const gss_buffer_t value);
62     bool deleteAttribute(const gss_buffer_t attr);
63     bool getAttribute(const gss_buffer_t attr,
64                       int *authenticated,
65                       int *complete,
66                       gss_buffer_t value,
67                       gss_buffer_t display_value,
68                       int *more) const;
69     gss_any_t mapToAny(int authenticated,
70                        gss_buffer_t type_id) const;
71     void releaseAnyNameMapping(gss_buffer_t type_id,
72                                gss_any_t input) const;
73
74     const char *prefix(void) const;
75     const char *name(void) const;
76     bool initWithJsonObject(const gss_eap_attr_ctx *manager,
77                            JSONObject &obj);
78     JSONObject jsonRepresentation(void) const;
79
80     bool getAttribute(const gss_eap_attrid &attrid,
81                       int *authenticated,
82                       int *complete,
83                       gss_buffer_t value,
84                       gss_buffer_t display_value,
85                       int *more) const;
86     bool setAttribute(int complete,
87                       const gss_eap_attrid &attrid,
88                       const gss_buffer_t value);
89     bool deleteAttribute(const gss_eap_attrid &attrid);
90
91     bool getFragmentedAttribute(const gss_eap_attrid &attrid,
92                                 int *authenticated,
93                                 int *complete,
94                                 gss_buffer_t value) const;
95
96     bool authenticated(void) const { return m_authenticated; }
97
98     time_t getExpiryTime(void) const;
99
100     static bool init(void);
101     static void finalize(void);
102
103     static gss_eap_attr_provider *createAttrContext(void);
104
105 private:
106     rs_const_avp *getAvps(void) const {
107         return m_vps;
108     }
109
110     rs_avp *m_vps;
111     bool m_authenticated;
112 };
113
114 #endif /* GSSEAP_ENABLE_ACCEPTOR */
115
116 /* For now */
117 extern "C" {
118 #endif
119
120 #ifdef GSSEAP_ENABLE_ACCEPTOR
121
122 OM_uint32
123 gssEapRadiusAddAvp(OM_uint32 *minor,
124                    struct rs_packet *pkt,
125                    unsigned int type,
126                    unsigned int vendor,
127                    const gss_buffer_t buffer);
128
129 OM_uint32
130 gssEapRadiusGetAvp(OM_uint32 *minor,
131                    struct rs_packet *pkt,
132                    unsigned int type,
133                    unsigned int vendor,
134                    gss_buffer_t buffer,
135                    int concat);
136
137 OM_uint32
138 gssEapRadiusGetRawAvp(OM_uint32 *minor,
139                       rs_const_avp *vps,
140                       unsigned int type,
141                       unsigned int vendor,
142                       rs_const_avp **vp);
143 OM_uint32
144 gssEapRadiusFreeAvps(OM_uint32 *minor,
145                      rs_avp **vps);
146
147 OM_uint32 gssEapRadiusAttrProviderInit(OM_uint32 *minor);
148 OM_uint32 gssEapRadiusAttrProviderFinalize(OM_uint32 *minor);
149
150 OM_uint32
151 gssEapRadiusMapError(OM_uint32 *minor,
152                      struct rs_error *err);
153
154 OM_uint32
155 gssEapCreateRadiusContext(OM_uint32 *minor,
156                           gss_cred_id_t cred,
157                           struct rs_context **pRadContext);
158
159 #endif /* GSSEAP_ENABLE_ACCEPTOR */
160
161 /* initiator utilities that require only libeap, and not freeradius */
162 struct wpabuf;
163
164 OM_uint32
165 gssEapRadiusAddAttr(OM_uint32 *minor,
166                     struct wpabuf **dst,
167                     uint16_t type,
168                     uint16_t vendor,
169                     gss_buffer_t value);
170
171 /* This really needs to be a function call on Windows */
172 #define RS_CONFIG_FILE      SYSCONFDIR "/radsec.conf"
173
174 #ifdef __cplusplus
175 }
176 #endif
177
178 #endif /* _UTIL_RADIUS_H_ */