authsrv.c revision bd14a57187b024f49f5b9ace55ef457d8d04650a
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 29static int hostapd_sim_db_cb_sta(struct hostapd_data *hapd, 30 struct sta_info *sta, void *ctx) 31{ 32 if (eapol_auth_eap_pending_cb(sta->eapol_sm, ctx) == 0) 33 return 1; 34 return 0; 35} 36 37 38static void hostapd_sim_db_cb(void *ctx, void *session_ctx) 39{ 40 struct hostapd_data *hapd = ctx; 41 if (ap_for_each_sta(hapd, hostapd_sim_db_cb_sta, session_ctx) == 0) { 42#ifdef RADIUS_SERVER 43 radius_server_eap_pending_cb(hapd->radius_srv, session_ctx); 44#endif /* RADIUS_SERVER */ 45 } 46} 47#endif /* EAP_SIM_DB */ 48 49 50#ifdef RADIUS_SERVER 51 52static 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 eap_user = hostapd_get_eap_user(ctx, identity, identity_len, phase2); 60 if (eap_user == NULL) 61 return -1; 62 63 if (user == NULL) 64 return 0; 65 66 os_memset(user, 0, sizeof(*user)); 67 for (i = 0; i < EAP_MAX_METHODS; i++) { 68 user->methods[i].vendor = eap_user->methods[i].vendor; 69 user->methods[i].method = eap_user->methods[i].method; 70 } 71 72 if (eap_user->password) { 73 user->password = os_malloc(eap_user->password_len); 74 if (user->password == NULL) 75 return -1; 76 os_memcpy(user->password, eap_user->password, 77 eap_user->password_len); 78 user->password_len = eap_user->password_len; 79 user->password_hash = eap_user->password_hash; 80 } 81 user->force_version = eap_user->force_version; 82 user->ttls_auth = eap_user->ttls_auth; 83 84 return 0; 85} 86 87 88static int hostapd_setup_radius_srv(struct hostapd_data *hapd) 89{ 90 struct radius_server_conf srv; 91 struct hostapd_bss_config *conf = hapd->conf; 92 os_memset(&srv, 0, sizeof(srv)); 93 srv.client_file = conf->radius_server_clients; 94 srv.auth_port = conf->radius_server_auth_port; 95 srv.acct_port = conf->radius_server_acct_port; 96 srv.conf_ctx = hapd; 97 srv.eap_sim_db_priv = hapd->eap_sim_db_priv; 98 srv.ssl_ctx = hapd->ssl_ctx; 99 srv.msg_ctx = hapd->msg_ctx; 100 srv.pac_opaque_encr_key = conf->pac_opaque_encr_key; 101 srv.eap_fast_a_id = conf->eap_fast_a_id; 102 srv.eap_fast_a_id_len = conf->eap_fast_a_id_len; 103 srv.eap_fast_a_id_info = conf->eap_fast_a_id_info; 104 srv.eap_fast_prov = conf->eap_fast_prov; 105 srv.pac_key_lifetime = conf->pac_key_lifetime; 106 srv.pac_key_refresh_time = conf->pac_key_refresh_time; 107 srv.eap_sim_aka_result_ind = conf->eap_sim_aka_result_ind; 108 srv.tnc = conf->tnc; 109 srv.wps = hapd->wps; 110 srv.ipv6 = conf->radius_server_ipv6; 111 srv.get_eap_user = hostapd_radius_get_eap_user; 112 srv.eap_req_id_text = conf->eap_req_id_text; 113 srv.eap_req_id_text_len = conf->eap_req_id_text_len; 114 srv.pwd_group = conf->pwd_group; 115 srv.server_id = conf->server_id ? conf->server_id : "hostapd"; 116#ifdef CONFIG_RADIUS_TEST 117 srv.dump_msk_file = conf->dump_msk_file; 118#endif /* CONFIG_RADIUS_TEST */ 119 120 hapd->radius_srv = radius_server_init(&srv); 121 if (hapd->radius_srv == NULL) { 122 wpa_printf(MSG_ERROR, "RADIUS server initialization failed."); 123 return -1; 124 } 125 126 return 0; 127} 128 129#endif /* RADIUS_SERVER */ 130 131 132int authsrv_init(struct hostapd_data *hapd) 133{ 134#ifdef EAP_TLS_FUNCS 135 if (hapd->conf->eap_server && 136 (hapd->conf->ca_cert || hapd->conf->server_cert || 137 hapd->conf->private_key || hapd->conf->dh_file)) { 138 struct tls_connection_params params; 139 140 hapd->ssl_ctx = tls_init(NULL); 141 if (hapd->ssl_ctx == NULL) { 142 wpa_printf(MSG_ERROR, "Failed to initialize TLS"); 143 authsrv_deinit(hapd); 144 return -1; 145 } 146 147 os_memset(¶ms, 0, sizeof(params)); 148 params.ca_cert = hapd->conf->ca_cert; 149 params.client_cert = hapd->conf->server_cert; 150 params.private_key = hapd->conf->private_key; 151 params.private_key_passwd = hapd->conf->private_key_passwd; 152 params.dh_file = hapd->conf->dh_file; 153 params.ocsp_stapling_response = 154 hapd->conf->ocsp_stapling_response; 155 156 if (tls_global_set_params(hapd->ssl_ctx, ¶ms)) { 157 wpa_printf(MSG_ERROR, "Failed to set TLS parameters"); 158 authsrv_deinit(hapd); 159 return -1; 160 } 161 162 if (tls_global_set_verify(hapd->ssl_ctx, 163 hapd->conf->check_crl)) { 164 wpa_printf(MSG_ERROR, "Failed to enable check_crl"); 165 authsrv_deinit(hapd); 166 return -1; 167 } 168 } 169#endif /* EAP_TLS_FUNCS */ 170 171#ifdef EAP_SIM_DB 172 if (hapd->conf->eap_sim_db) { 173 hapd->eap_sim_db_priv = 174 eap_sim_db_init(hapd->conf->eap_sim_db, 175 hostapd_sim_db_cb, hapd); 176 if (hapd->eap_sim_db_priv == NULL) { 177 wpa_printf(MSG_ERROR, "Failed to initialize EAP-SIM " 178 "database interface"); 179 authsrv_deinit(hapd); 180 return -1; 181 } 182 } 183#endif /* EAP_SIM_DB */ 184 185#ifdef RADIUS_SERVER 186 if (hapd->conf->radius_server_clients && 187 hostapd_setup_radius_srv(hapd)) 188 return -1; 189#endif /* RADIUS_SERVER */ 190 191 return 0; 192} 193 194 195void authsrv_deinit(struct hostapd_data *hapd) 196{ 197#ifdef RADIUS_SERVER 198 radius_server_deinit(hapd->radius_srv); 199 hapd->radius_srv = NULL; 200#endif /* RADIUS_SERVER */ 201 202#ifdef EAP_TLS_FUNCS 203 if (hapd->ssl_ctx) { 204 tls_deinit(hapd->ssl_ctx); 205 hapd->ssl_ctx = NULL; 206 } 207#endif /* EAP_TLS_FUNCS */ 208 209#ifdef EAP_SIM_DB 210 if (hapd->eap_sim_db_priv) { 211 eap_sim_db_deinit(hapd->eap_sim_db_priv); 212 hapd->eap_sim_db_priv = NULL; 213 } 214#endif /* EAP_SIM_DB */ 215} 216