Added WirelessManager, a port of wpa_supplicant.
[AROS.git] / workbench / network / WirelessManager / src / radius / radius_server.h
blobf9c951d05f241ec45daa83e842c84674ba9e45a1
1 /*
2 * RADIUS authentication server
3 * Copyright (c) 2005-2009, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
12 * See README and COPYING for more details.
15 #ifndef RADIUS_SERVER_H
16 #define RADIUS_SERVER_H
18 struct radius_server_data;
19 struct eap_user;
21 /**
22 * struct radius_server_conf - RADIUS server configuration
24 struct radius_server_conf {
25 /**
26 * auth_port - UDP port to listen to as an authentication server
28 int auth_port;
30 /**
31 * client_file - RADIUS client configuration file
33 * This file contains the RADIUS clients and the shared secret to be
34 * used with them in a format where each client is on its own line. The
35 * first item on the line is the IPv4 or IPv6 address of the client
36 * with an optional address mask to allow full network to be specified
37 * (e.g., 192.168.1.2 or 192.168.1.0/24). This is followed by white
38 * space (space or tabulator) and the shared secret. Lines starting
39 * with '#' are skipped and can be used as comments.
41 char *client_file;
43 /**
44 * conf_ctx - Context pointer for callbacks
46 * This is used as the ctx argument in get_eap_user() calls.
48 void *conf_ctx;
50 /**
51 * eap_sim_db_priv - EAP-SIM/AKA database context
53 * This is passed to the EAP-SIM/AKA server implementation as a
54 * callback context.
56 void *eap_sim_db_priv;
58 /**
59 * ssl_ctx - TLS context
61 * This is passed to the EAP server implementation as a callback
62 * context for TLS operations.
64 void *ssl_ctx;
66 /**
67 * pac_opaque_encr_key - PAC-Opaque encryption key for EAP-FAST
69 * This parameter is used to set a key for EAP-FAST to encrypt the
70 * PAC-Opaque data. It can be set to %NULL if EAP-FAST is not used. If
71 * set, must point to a 16-octet key.
73 u8 *pac_opaque_encr_key;
75 /**
76 * eap_fast_a_id - EAP-FAST authority identity (A-ID)
78 * If EAP-FAST is not used, this can be set to %NULL. In theory, this
79 * is a variable length field, but due to some existing implementations
80 * requiring A-ID to be 16 octets in length, it is recommended to use
81 * that length for the field to provide interoperability with deployed
82 * peer implementations.
84 u8 *eap_fast_a_id;
86 /**
87 * eap_fast_a_id_len - Length of eap_fast_a_id buffer in octets
89 size_t eap_fast_a_id_len;
91 /**
92 * eap_fast_a_id_info - EAP-FAST authority identifier information
94 * This A-ID-Info contains a user-friendly name for the A-ID. For
95 * example, this could be the enterprise and server names in
96 * human-readable format. This field is encoded as UTF-8. If EAP-FAST
97 * is not used, this can be set to %NULL.
99 char *eap_fast_a_id_info;
102 * eap_fast_prov - EAP-FAST provisioning modes
104 * 0 = provisioning disabled, 1 = only anonymous provisioning allowed,
105 * 2 = only authenticated provisioning allowed, 3 = both provisioning
106 * modes allowed.
108 int eap_fast_prov;
111 * pac_key_lifetime - EAP-FAST PAC-Key lifetime in seconds
113 * This is the hard limit on how long a provisioned PAC-Key can be
114 * used.
116 int pac_key_lifetime;
119 * pac_key_refresh_time - EAP-FAST PAC-Key refresh time in seconds
121 * This is a soft limit on the PAC-Key. The server will automatically
122 * generate a new PAC-Key when this number of seconds (or fewer) of the
123 * lifetime remains.
125 int pac_key_refresh_time;
128 * eap_sim_aka_result_ind - EAP-SIM/AKA protected success indication
130 * This controls whether the protected success/failure indication
131 * (AT_RESULT_IND) is used with EAP-SIM and EAP-AKA.
133 int eap_sim_aka_result_ind;
136 * tnc - Trusted Network Connect (TNC)
138 * This controls whether TNC is enabled and will be required before the
139 * peer is allowed to connect. Note: This is only used with EAP-TTLS
140 * and EAP-FAST. If any other EAP method is enabled, the peer will be
141 * allowed to connect without TNC.
143 int tnc;
146 * wps - Wi-Fi Protected Setup context
148 * If WPS is used with an external RADIUS server (which is quite
149 * unlikely configuration), this is used to provide a pointer to WPS
150 * context data. Normally, this can be set to %NULL.
152 struct wps_context *wps;
155 * ipv6 - Whether to enable IPv6 support in the RADIUS server
157 int ipv6;
160 * get_eap_user - Callback for fetching EAP user information
161 * @ctx: Context data from conf_ctx
162 * @identity: User identity
163 * @identity_len: identity buffer length in octets
164 * @phase2: Whether this is for Phase 2 identity
165 * @user: Data structure for filling in the user information
166 * Returns: 0 on success, -1 on failure
168 * This is used to fetch information from user database. The callback
169 * will fill in information about allowed EAP methods and the user
170 * password. The password field will be an allocated copy of the
171 * password data and RADIUS server will free it after use.
173 int (*get_eap_user)(void *ctx, const u8 *identity, size_t identity_len,
174 int phase2, struct eap_user *user);
177 * eap_req_id_text - Optional data for EAP-Request/Identity
179 * This can be used to configure an optional, displayable message that
180 * will be sent in EAP-Request/Identity. This string can contain an
181 * ASCII-0 character (nul) to separate network infromation per RFC
182 * 4284. The actual string length is explicit provided in
183 * eap_req_id_text_len since nul character will not be used as a string
184 * terminator.
186 const char *eap_req_id_text;
189 * eap_req_id_text_len - Length of eap_req_id_text buffer in octets
191 size_t eap_req_id_text_len;
194 * msg_ctx - Context data for wpa_msg() calls
196 void *msg_ctx;
200 struct radius_server_data *
201 radius_server_init(struct radius_server_conf *conf);
203 void radius_server_deinit(struct radius_server_data *data);
205 int radius_server_get_mib(struct radius_server_data *data, char *buf,
206 size_t buflen);
208 void radius_server_eap_pending_cb(struct radius_server_data *data, void *ctx);
210 #endif /* RADIUS_SERVER_H */