Branch data Line data Source code
1 : : /*
2 : : * Authentication server setup
3 : : * Copyright (c) 2002-2009, Jouni Malinen <j@w1.fi>
4 : : *
5 : : * This software may be distributed under the terms of the BSD license.
6 : : * See README for more details.
7 : : */
8 : :
9 : : #include "utils/includes.h"
10 : :
11 : : #include "utils/common.h"
12 : : #include "crypto/tls.h"
13 : : #include "eap_server/eap.h"
14 : : #include "eap_server/eap_sim_db.h"
15 : : #include "eapol_auth/eapol_auth_sm.h"
16 : : #include "radius/radius_server.h"
17 : : #include "hostapd.h"
18 : : #include "ap_config.h"
19 : : #include "sta_info.h"
20 : : #include "authsrv.h"
21 : :
22 : :
23 : : #if defined(EAP_SERVER_SIM) || defined(EAP_SERVER_AKA)
24 : : #define EAP_SIM_DB
25 : : #endif /* EAP_SERVER_SIM || EAP_SERVER_AKA */
26 : :
27 : :
28 : : #ifdef EAP_SIM_DB
29 : 0 : static int hostapd_sim_db_cb_sta(struct hostapd_data *hapd,
30 : : struct sta_info *sta, void *ctx)
31 : : {
32 [ # # ]: 0 : if (eapol_auth_eap_pending_cb(sta->eapol_sm, ctx) == 0)
33 : 0 : return 1;
34 : 0 : return 0;
35 : : }
36 : :
37 : :
38 : 9 : static void hostapd_sim_db_cb(void *ctx, void *session_ctx)
39 : : {
40 : 9 : struct hostapd_data *hapd = ctx;
41 [ + - ]: 9 : if (ap_for_each_sta(hapd, hostapd_sim_db_cb_sta, session_ctx) == 0) {
42 : : #ifdef RADIUS_SERVER
43 : 9 : radius_server_eap_pending_cb(hapd->radius_srv, session_ctx);
44 : : #endif /* RADIUS_SERVER */
45 : : }
46 : 9 : }
47 : : #endif /* EAP_SIM_DB */
48 : :
49 : :
50 : : #ifdef RADIUS_SERVER
51 : :
52 : 226 : static int hostapd_radius_get_eap_user(void *ctx, const u8 *identity,
53 : : size_t identity_len, int phase2,
54 : : struct eap_user *user)
55 : : {
56 : : const struct hostapd_eap_user *eap_user;
57 : : int i;
58 : :
59 : 226 : eap_user = hostapd_get_eap_user(ctx, identity, identity_len, phase2);
60 [ - + ]: 226 : if (eap_user == NULL)
61 : 0 : return -1;
62 : :
63 [ + + ]: 226 : if (user == NULL)
64 : 85 : return 0;
65 : :
66 : 141 : os_memset(user, 0, sizeof(*user));
67 [ + + ]: 1269 : for (i = 0; i < EAP_MAX_METHODS; i++) {
68 : 1128 : user->methods[i].vendor = eap_user->methods[i].vendor;
69 : 1128 : user->methods[i].method = eap_user->methods[i].method;
70 : : }
71 : :
72 [ + + ]: 141 : if (eap_user->password) {
73 : 83 : user->password = os_malloc(eap_user->password_len);
74 [ - + ]: 83 : if (user->password == NULL)
75 : 0 : return -1;
76 : 83 : os_memcpy(user->password, eap_user->password,
77 : : eap_user->password_len);
78 : 83 : user->password_len = eap_user->password_len;
79 : 83 : user->password_hash = eap_user->password_hash;
80 : : }
81 : 141 : user->force_version = eap_user->force_version;
82 : 141 : user->ttls_auth = eap_user->ttls_auth;
83 : :
84 : 226 : return 0;
85 : : }
86 : :
87 : :
88 : 1 : static int hostapd_setup_radius_srv(struct hostapd_data *hapd)
89 : : {
90 : : struct radius_server_conf srv;
91 : 1 : struct hostapd_bss_config *conf = hapd->conf;
92 : 1 : os_memset(&srv, 0, sizeof(srv));
93 : 1 : srv.client_file = conf->radius_server_clients;
94 : 1 : srv.auth_port = conf->radius_server_auth_port;
95 : 1 : srv.conf_ctx = hapd;
96 : 1 : srv.eap_sim_db_priv = hapd->eap_sim_db_priv;
97 : 1 : srv.ssl_ctx = hapd->ssl_ctx;
98 : 1 : srv.msg_ctx = hapd->msg_ctx;
99 : 1 : srv.pac_opaque_encr_key = conf->pac_opaque_encr_key;
100 : 1 : srv.eap_fast_a_id = conf->eap_fast_a_id;
101 : 1 : srv.eap_fast_a_id_len = conf->eap_fast_a_id_len;
102 : 1 : srv.eap_fast_a_id_info = conf->eap_fast_a_id_info;
103 : 1 : srv.eap_fast_prov = conf->eap_fast_prov;
104 : 1 : srv.pac_key_lifetime = conf->pac_key_lifetime;
105 : 1 : srv.pac_key_refresh_time = conf->pac_key_refresh_time;
106 : 1 : srv.eap_sim_aka_result_ind = conf->eap_sim_aka_result_ind;
107 : 1 : srv.tnc = conf->tnc;
108 : 1 : srv.wps = hapd->wps;
109 : 1 : srv.ipv6 = conf->radius_server_ipv6;
110 : 1 : srv.get_eap_user = hostapd_radius_get_eap_user;
111 : 1 : srv.eap_req_id_text = conf->eap_req_id_text;
112 : 1 : srv.eap_req_id_text_len = conf->eap_req_id_text_len;
113 : 1 : srv.pwd_group = conf->pwd_group;
114 [ + - ]: 1 : srv.server_id = conf->server_id ? conf->server_id : "hostapd";
115 : : #ifdef CONFIG_RADIUS_TEST
116 : : srv.dump_msk_file = conf->dump_msk_file;
117 : : #endif /* CONFIG_RADIUS_TEST */
118 : :
119 : 1 : hapd->radius_srv = radius_server_init(&srv);
120 [ - + ]: 1 : if (hapd->radius_srv == NULL) {
121 : 0 : wpa_printf(MSG_ERROR, "RADIUS server initialization failed.");
122 : 0 : return -1;
123 : : }
124 : :
125 : 1 : return 0;
126 : : }
127 : :
128 : : #endif /* RADIUS_SERVER */
129 : :
130 : :
131 : 1 : int authsrv_init(struct hostapd_data *hapd)
132 : : {
133 : : #ifdef EAP_TLS_FUNCS
134 [ + - ][ - + ]: 1 : if (hapd->conf->eap_server &&
135 [ # # ][ # # ]: 0 : (hapd->conf->ca_cert || hapd->conf->server_cert ||
136 [ # # ]: 0 : hapd->conf->private_key || hapd->conf->dh_file)) {
137 : : struct tls_connection_params params;
138 : :
139 : 1 : hapd->ssl_ctx = tls_init(NULL);
140 [ - + ]: 1 : if (hapd->ssl_ctx == NULL) {
141 : 0 : wpa_printf(MSG_ERROR, "Failed to initialize TLS");
142 : 0 : authsrv_deinit(hapd);
143 : 0 : return -1;
144 : : }
145 : :
146 : 1 : os_memset(¶ms, 0, sizeof(params));
147 : 1 : params.ca_cert = hapd->conf->ca_cert;
148 : 1 : params.client_cert = hapd->conf->server_cert;
149 : 1 : params.private_key = hapd->conf->private_key;
150 : 1 : params.private_key_passwd = hapd->conf->private_key_passwd;
151 : 1 : params.dh_file = hapd->conf->dh_file;
152 : 1 : params.ocsp_stapling_response =
153 : 1 : hapd->conf->ocsp_stapling_response;
154 : :
155 [ - + ]: 1 : if (tls_global_set_params(hapd->ssl_ctx, ¶ms)) {
156 : 0 : wpa_printf(MSG_ERROR, "Failed to set TLS parameters");
157 : 0 : authsrv_deinit(hapd);
158 : 0 : return -1;
159 : : }
160 : :
161 [ - + ]: 1 : if (tls_global_set_verify(hapd->ssl_ctx,
162 : 1 : hapd->conf->check_crl)) {
163 : 0 : wpa_printf(MSG_ERROR, "Failed to enable check_crl");
164 : 0 : authsrv_deinit(hapd);
165 : 0 : return -1;
166 : : }
167 : : }
168 : : #endif /* EAP_TLS_FUNCS */
169 : :
170 : : #ifdef EAP_SIM_DB
171 [ + - ]: 1 : if (hapd->conf->eap_sim_db) {
172 : 1 : hapd->eap_sim_db_priv =
173 : 1 : eap_sim_db_init(hapd->conf->eap_sim_db,
174 : : hostapd_sim_db_cb, hapd);
175 [ - + ]: 1 : if (hapd->eap_sim_db_priv == NULL) {
176 : 0 : wpa_printf(MSG_ERROR, "Failed to initialize EAP-SIM "
177 : : "database interface");
178 : 0 : authsrv_deinit(hapd);
179 : 0 : return -1;
180 : : }
181 : : }
182 : : #endif /* EAP_SIM_DB */
183 : :
184 : : #ifdef RADIUS_SERVER
185 [ + - - + ]: 2 : if (hapd->conf->radius_server_clients &&
186 : 1 : hostapd_setup_radius_srv(hapd))
187 : 0 : return -1;
188 : : #endif /* RADIUS_SERVER */
189 : :
190 : 1 : return 0;
191 : : }
192 : :
193 : :
194 : 1 : void authsrv_deinit(struct hostapd_data *hapd)
195 : : {
196 : : #ifdef RADIUS_SERVER
197 : 1 : radius_server_deinit(hapd->radius_srv);
198 : 1 : hapd->radius_srv = NULL;
199 : : #endif /* RADIUS_SERVER */
200 : :
201 : : #ifdef EAP_TLS_FUNCS
202 [ + - ]: 1 : if (hapd->ssl_ctx) {
203 : 1 : tls_deinit(hapd->ssl_ctx);
204 : 1 : hapd->ssl_ctx = NULL;
205 : : }
206 : : #endif /* EAP_TLS_FUNCS */
207 : :
208 : : #ifdef EAP_SIM_DB
209 [ + - ]: 1 : if (hapd->eap_sim_db_priv) {
210 : 1 : eap_sim_db_deinit(hapd->eap_sim_db_priv);
211 : 1 : hapd->eap_sim_db_priv = NULL;
212 : : }
213 : : #endif /* EAP_SIM_DB */
214 : 1 : }
|