LCOV - code coverage report
Current view: top level - src/radius - radius_server.c (source / functions) Hit Total Coverage
Test: wpa_supplicant/hostapd combined for hwsim test run 1443382998 Lines: 690 919 75.1 %
Date: 2015-09-27 Functions: 33 34 97.1 %

          Line data    Source code
       1             : /*
       2             :  * RADIUS authentication server
       3             :  * Copyright (c) 2005-2009, 2011-2014, 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 "includes.h"
      10             : #include <net/if.h>
      11             : #ifdef CONFIG_SQLITE
      12             : #include <sqlite3.h>
      13             : #endif /* CONFIG_SQLITE */
      14             : 
      15             : #include "common.h"
      16             : #include "radius.h"
      17             : #include "eloop.h"
      18             : #include "eap_server/eap.h"
      19             : #include "ap/ap_config.h"
      20             : #include "crypto/tls.h"
      21             : #include "radius_server.h"
      22             : 
      23             : /**
      24             :  * RADIUS_SESSION_TIMEOUT - Session timeout in seconds
      25             :  */
      26             : #define RADIUS_SESSION_TIMEOUT 60
      27             : 
      28             : /**
      29             :  * RADIUS_MAX_SESSION - Maximum number of active sessions
      30             :  */
      31             : #define RADIUS_MAX_SESSION 100
      32             : 
      33             : /**
      34             :  * RADIUS_MAX_MSG_LEN - Maximum message length for incoming RADIUS messages
      35             :  */
      36             : #define RADIUS_MAX_MSG_LEN 3000
      37             : 
      38             : static const struct eapol_callbacks radius_server_eapol_cb;
      39             : 
      40             : struct radius_client;
      41             : struct radius_server_data;
      42             : 
      43             : /**
      44             :  * struct radius_server_counters - RADIUS server statistics counters
      45             :  */
      46             : struct radius_server_counters {
      47             :         u32 access_requests;
      48             :         u32 invalid_requests;
      49             :         u32 dup_access_requests;
      50             :         u32 access_accepts;
      51             :         u32 access_rejects;
      52             :         u32 access_challenges;
      53             :         u32 malformed_access_requests;
      54             :         u32 bad_authenticators;
      55             :         u32 packets_dropped;
      56             :         u32 unknown_types;
      57             : 
      58             :         u32 acct_requests;
      59             :         u32 invalid_acct_requests;
      60             :         u32 acct_responses;
      61             :         u32 malformed_acct_requests;
      62             :         u32 acct_bad_authenticators;
      63             :         u32 unknown_acct_types;
      64             : };
      65             : 
      66             : /**
      67             :  * struct radius_session - Internal RADIUS server data for a session
      68             :  */
      69             : struct radius_session {
      70             :         struct radius_session *next;
      71             :         struct radius_client *client;
      72             :         struct radius_server_data *server;
      73             :         unsigned int sess_id;
      74             :         struct eap_sm *eap;
      75             :         struct eap_eapol_interface *eap_if;
      76             :         char *username; /* from User-Name attribute */
      77             :         char *nas_ip;
      78             : 
      79             :         struct radius_msg *last_msg;
      80             :         char *last_from_addr;
      81             :         int last_from_port;
      82             :         struct sockaddr_storage last_from;
      83             :         socklen_t last_fromlen;
      84             :         u8 last_identifier;
      85             :         struct radius_msg *last_reply;
      86             :         u8 last_authenticator[16];
      87             : 
      88             :         unsigned int remediation:1;
      89             :         unsigned int macacl:1;
      90             : 
      91             :         struct hostapd_radius_attr *accept_attr;
      92             : };
      93             : 
      94             : /**
      95             :  * struct radius_client - Internal RADIUS server data for a client
      96             :  */
      97             : struct radius_client {
      98             :         struct radius_client *next;
      99             :         struct in_addr addr;
     100             :         struct in_addr mask;
     101             : #ifdef CONFIG_IPV6
     102             :         struct in6_addr addr6;
     103             :         struct in6_addr mask6;
     104             : #endif /* CONFIG_IPV6 */
     105             :         char *shared_secret;
     106             :         int shared_secret_len;
     107             :         struct radius_session *sessions;
     108             :         struct radius_server_counters counters;
     109             : };
     110             : 
     111             : /**
     112             :  * struct radius_server_data - Internal RADIUS server data
     113             :  */
     114             : struct radius_server_data {
     115             :         /**
     116             :          * auth_sock - Socket for RADIUS authentication messages
     117             :          */
     118             :         int auth_sock;
     119             : 
     120             :         /**
     121             :          * acct_sock - Socket for RADIUS accounting messages
     122             :          */
     123             :         int acct_sock;
     124             : 
     125             :         /**
     126             :          * clients - List of authorized RADIUS clients
     127             :          */
     128             :         struct radius_client *clients;
     129             : 
     130             :         /**
     131             :          * next_sess_id - Next session identifier
     132             :          */
     133             :         unsigned int next_sess_id;
     134             : 
     135             :         /**
     136             :          * conf_ctx - Context pointer for callbacks
     137             :          *
     138             :          * This is used as the ctx argument in get_eap_user() calls.
     139             :          */
     140             :         void *conf_ctx;
     141             : 
     142             :         /**
     143             :          * num_sess - Number of active sessions
     144             :          */
     145             :         int num_sess;
     146             : 
     147             :         /**
     148             :          * eap_sim_db_priv - EAP-SIM/AKA database context
     149             :          *
     150             :          * This is passed to the EAP-SIM/AKA server implementation as a
     151             :          * callback context.
     152             :          */
     153             :         void *eap_sim_db_priv;
     154             : 
     155             :         /**
     156             :          * ssl_ctx - TLS context
     157             :          *
     158             :          * This is passed to the EAP server implementation as a callback
     159             :          * context for TLS operations.
     160             :          */
     161             :         void *ssl_ctx;
     162             : 
     163             :         /**
     164             :          * pac_opaque_encr_key - PAC-Opaque encryption key for EAP-FAST
     165             :          *
     166             :          * This parameter is used to set a key for EAP-FAST to encrypt the
     167             :          * PAC-Opaque data. It can be set to %NULL if EAP-FAST is not used. If
     168             :          * set, must point to a 16-octet key.
     169             :          */
     170             :         u8 *pac_opaque_encr_key;
     171             : 
     172             :         /**
     173             :          * eap_fast_a_id - EAP-FAST authority identity (A-ID)
     174             :          *
     175             :          * If EAP-FAST is not used, this can be set to %NULL. In theory, this
     176             :          * is a variable length field, but due to some existing implementations
     177             :          * requiring A-ID to be 16 octets in length, it is recommended to use
     178             :          * that length for the field to provide interoperability with deployed
     179             :          * peer implementations.
     180             :          */
     181             :         u8 *eap_fast_a_id;
     182             : 
     183             :         /**
     184             :          * eap_fast_a_id_len - Length of eap_fast_a_id buffer in octets
     185             :          */
     186             :         size_t eap_fast_a_id_len;
     187             : 
     188             :         /**
     189             :          * eap_fast_a_id_info - EAP-FAST authority identifier information
     190             :          *
     191             :          * This A-ID-Info contains a user-friendly name for the A-ID. For
     192             :          * example, this could be the enterprise and server names in
     193             :          * human-readable format. This field is encoded as UTF-8. If EAP-FAST
     194             :          * is not used, this can be set to %NULL.
     195             :          */
     196             :         char *eap_fast_a_id_info;
     197             : 
     198             :         /**
     199             :          * eap_fast_prov - EAP-FAST provisioning modes
     200             :          *
     201             :          * 0 = provisioning disabled, 1 = only anonymous provisioning allowed,
     202             :          * 2 = only authenticated provisioning allowed, 3 = both provisioning
     203             :          * modes allowed.
     204             :          */
     205             :         int eap_fast_prov;
     206             : 
     207             :         /**
     208             :          * pac_key_lifetime - EAP-FAST PAC-Key lifetime in seconds
     209             :          *
     210             :          * This is the hard limit on how long a provisioned PAC-Key can be
     211             :          * used.
     212             :          */
     213             :         int pac_key_lifetime;
     214             : 
     215             :         /**
     216             :          * pac_key_refresh_time - EAP-FAST PAC-Key refresh time in seconds
     217             :          *
     218             :          * This is a soft limit on the PAC-Key. The server will automatically
     219             :          * generate a new PAC-Key when this number of seconds (or fewer) of the
     220             :          * lifetime remains.
     221             :          */
     222             :         int pac_key_refresh_time;
     223             : 
     224             :         /**
     225             :          * eap_sim_aka_result_ind - EAP-SIM/AKA protected success indication
     226             :          *
     227             :          * This controls whether the protected success/failure indication
     228             :          * (AT_RESULT_IND) is used with EAP-SIM and EAP-AKA.
     229             :          */
     230             :         int eap_sim_aka_result_ind;
     231             : 
     232             :         /**
     233             :          * tnc - Trusted Network Connect (TNC)
     234             :          *
     235             :          * This controls whether TNC is enabled and will be required before the
     236             :          * peer is allowed to connect. Note: This is only used with EAP-TTLS
     237             :          * and EAP-FAST. If any other EAP method is enabled, the peer will be
     238             :          * allowed to connect without TNC.
     239             :          */
     240             :         int tnc;
     241             : 
     242             :         /**
     243             :          * pwd_group - The D-H group assigned for EAP-pwd
     244             :          *
     245             :          * If EAP-pwd is not used it can be set to zero.
     246             :          */
     247             :         u16 pwd_group;
     248             : 
     249             :         /**
     250             :          * server_id - Server identity
     251             :          */
     252             :         const char *server_id;
     253             : 
     254             :         /**
     255             :          * erp - Whether EAP Re-authentication Protocol (ERP) is enabled
     256             :          *
     257             :          * This controls whether the authentication server derives ERP key
     258             :          * hierarchy (rRK and rIK) from full EAP authentication and allows
     259             :          * these keys to be used to perform ERP to derive rMSK instead of full
     260             :          * EAP authentication to derive MSK.
     261             :          */
     262             :         int erp;
     263             : 
     264             :         const char *erp_domain;
     265             : 
     266             :         struct dl_list erp_keys; /* struct eap_server_erp_key */
     267             : 
     268             :         unsigned int tls_session_lifetime;
     269             : 
     270             :         /**
     271             :          * wps - Wi-Fi Protected Setup context
     272             :          *
     273             :          * If WPS is used with an external RADIUS server (which is quite
     274             :          * unlikely configuration), this is used to provide a pointer to WPS
     275             :          * context data. Normally, this can be set to %NULL.
     276             :          */
     277             :         struct wps_context *wps;
     278             : 
     279             :         /**
     280             :          * ipv6 - Whether to enable IPv6 support in the RADIUS server
     281             :          */
     282             :         int ipv6;
     283             : 
     284             :         /**
     285             :          * start_time - Timestamp of server start
     286             :          */
     287             :         struct os_reltime start_time;
     288             : 
     289             :         /**
     290             :          * counters - Statistics counters for server operations
     291             :          *
     292             :          * These counters are the sum over all clients.
     293             :          */
     294             :         struct radius_server_counters counters;
     295             : 
     296             :         /**
     297             :          * get_eap_user - Callback for fetching EAP user information
     298             :          * @ctx: Context data from conf_ctx
     299             :          * @identity: User identity
     300             :          * @identity_len: identity buffer length in octets
     301             :          * @phase2: Whether this is for Phase 2 identity
     302             :          * @user: Data structure for filling in the user information
     303             :          * Returns: 0 on success, -1 on failure
     304             :          *
     305             :          * This is used to fetch information from user database. The callback
     306             :          * will fill in information about allowed EAP methods and the user
     307             :          * password. The password field will be an allocated copy of the
     308             :          * password data and RADIUS server will free it after use.
     309             :          */
     310             :         int (*get_eap_user)(void *ctx, const u8 *identity, size_t identity_len,
     311             :                             int phase2, struct eap_user *user);
     312             : 
     313             :         /**
     314             :          * eap_req_id_text - Optional data for EAP-Request/Identity
     315             :          *
     316             :          * This can be used to configure an optional, displayable message that
     317             :          * will be sent in EAP-Request/Identity. This string can contain an
     318             :          * ASCII-0 character (nul) to separate network infromation per RFC
     319             :          * 4284. The actual string length is explicit provided in
     320             :          * eap_req_id_text_len since nul character will not be used as a string
     321             :          * terminator.
     322             :          */
     323             :         char *eap_req_id_text;
     324             : 
     325             :         /**
     326             :          * eap_req_id_text_len - Length of eap_req_id_text buffer in octets
     327             :          */
     328             :         size_t eap_req_id_text_len;
     329             : 
     330             :         /*
     331             :          * msg_ctx - Context data for wpa_msg() calls
     332             :          */
     333             :         void *msg_ctx;
     334             : 
     335             : #ifdef CONFIG_RADIUS_TEST
     336             :         char *dump_msk_file;
     337             : #endif /* CONFIG_RADIUS_TEST */
     338             : 
     339             :         char *subscr_remediation_url;
     340             :         u8 subscr_remediation_method;
     341             : 
     342             : #ifdef CONFIG_SQLITE
     343             :         sqlite3 *db;
     344             : #endif /* CONFIG_SQLITE */
     345             : };
     346             : 
     347             : 
     348             : #define RADIUS_DEBUG(args...) \
     349             : wpa_printf(MSG_DEBUG, "RADIUS SRV: " args)
     350             : #define RADIUS_ERROR(args...) \
     351             : wpa_printf(MSG_ERROR, "RADIUS SRV: " args)
     352             : #define RADIUS_DUMP(args...) \
     353             : wpa_hexdump(MSG_MSGDUMP, "RADIUS SRV: " args)
     354             : #define RADIUS_DUMP_ASCII(args...) \
     355             : wpa_hexdump_ascii(MSG_MSGDUMP, "RADIUS SRV: " args)
     356             : 
     357             : 
     358             : static void radius_server_session_timeout(void *eloop_ctx, void *timeout_ctx);
     359             : static void radius_server_session_remove_timeout(void *eloop_ctx,
     360             :                                                  void *timeout_ctx);
     361             : 
     362             : void srv_log(struct radius_session *sess, const char *fmt, ...)
     363             : PRINTF_FORMAT(2, 3);
     364             : 
     365        4261 : void srv_log(struct radius_session *sess, const char *fmt, ...)
     366             : {
     367             :         va_list ap;
     368             :         char *buf;
     369             :         int buflen;
     370             : 
     371        4261 :         va_start(ap, fmt);
     372        4261 :         buflen = vsnprintf(NULL, 0, fmt, ap) + 1;
     373        4261 :         va_end(ap);
     374             : 
     375        4261 :         buf = os_malloc(buflen);
     376        4261 :         if (buf == NULL)
     377        4261 :                 return;
     378        4261 :         va_start(ap, fmt);
     379        4261 :         vsnprintf(buf, buflen, fmt, ap);
     380        4261 :         va_end(ap);
     381             : 
     382        4261 :         RADIUS_DEBUG("[0x%x %s] %s", sess->sess_id, sess->nas_ip, buf);
     383             : 
     384             : #ifdef CONFIG_SQLITE
     385        4261 :         if (sess->server->db) {
     386             :                 char *sql;
     387           6 :                 sql = sqlite3_mprintf("INSERT INTO authlog"
     388             :                                       "(timestamp,session,nas_ip,username,note)"
     389             :                                       " VALUES ("
     390             :                                       "strftime('%%Y-%%m-%%d %%H:%%M:%%f',"
     391             :                                       "'now'),%u,%Q,%Q,%Q)",
     392             :                                       sess->sess_id, sess->nas_ip,
     393             :                                       sess->username, buf);
     394           6 :                 if (sql) {
     395           6 :                         if (sqlite3_exec(sess->server->db, sql, NULL, NULL,
     396             :                                          NULL) != SQLITE_OK) {
     397           0 :                                 RADIUS_ERROR("Failed to add authlog entry into sqlite database: %s",
     398             :                                              sqlite3_errmsg(sess->server->db));
     399             :                         }
     400           6 :                         sqlite3_free(sql);
     401             :                 }
     402             :         }
     403             : #endif /* CONFIG_SQLITE */
     404             : 
     405        4261 :         os_free(buf);
     406             : }
     407             : 
     408             : 
     409             : static struct radius_client *
     410        3798 : radius_server_get_client(struct radius_server_data *data, struct in_addr *addr,
     411             :                          int ipv6)
     412             : {
     413        3798 :         struct radius_client *client = data->clients;
     414             : 
     415        7596 :         while (client) {
     416             : #ifdef CONFIG_IPV6
     417        3798 :                 if (ipv6) {
     418             :                         struct in6_addr *addr6;
     419             :                         int i;
     420             : 
     421           7 :                         addr6 = (struct in6_addr *) addr;
     422         119 :                         for (i = 0; i < 16; i++) {
     423         224 :                                 if ((addr6->s6_addr[i] &
     424         112 :                                      client->mask6.s6_addr[i]) !=
     425         112 :                                     (client->addr6.s6_addr[i] &
     426             :                                      client->mask6.s6_addr[i])) {
     427           0 :                                         i = 17;
     428           0 :                                         break;
     429             :                                 }
     430             :                         }
     431           7 :                         if (i == 16) {
     432           7 :                                 break;
     433             :                         }
     434             :                 }
     435             : #endif /* CONFIG_IPV6 */
     436        7582 :                 if (!ipv6 && (client->addr.s_addr & client->mask.s_addr) ==
     437        3791 :                     (addr->s_addr & client->mask.s_addr)) {
     438        3791 :                         break;
     439             :                 }
     440             : 
     441           0 :                 client = client->next;
     442             :         }
     443             : 
     444        3798 :         return client;
     445             : }
     446             : 
     447             : 
     448             : static struct radius_session *
     449        2495 : radius_server_get_session(struct radius_client *client, unsigned int sess_id)
     450             : {
     451        2495 :         struct radius_session *sess = client->sessions;
     452             : 
     453        4997 :         while (sess) {
     454        2502 :                 if (sess->sess_id == sess_id) {
     455        2495 :                         break;
     456             :                 }
     457           7 :                 sess = sess->next;
     458             :         }
     459             : 
     460        2495 :         return sess;
     461             : }
     462             : 
     463             : 
     464         812 : static void radius_server_session_free(struct radius_server_data *data,
     465             :                                        struct radius_session *sess)
     466             : {
     467         812 :         eloop_cancel_timeout(radius_server_session_timeout, data, sess);
     468         812 :         eloop_cancel_timeout(radius_server_session_remove_timeout, data, sess);
     469         812 :         eap_server_sm_deinit(sess->eap);
     470         812 :         radius_msg_free(sess->last_msg);
     471         812 :         os_free(sess->last_from_addr);
     472         812 :         radius_msg_free(sess->last_reply);
     473         812 :         os_free(sess->username);
     474         812 :         os_free(sess->nas_ip);
     475         812 :         os_free(sess);
     476         812 :         data->num_sess--;
     477         812 : }
     478             : 
     479             : 
     480         764 : static void radius_server_session_remove(struct radius_server_data *data,
     481             :                                          struct radius_session *sess)
     482             : {
     483         764 :         struct radius_client *client = sess->client;
     484             :         struct radius_session *session, *prev;
     485             : 
     486         764 :         eloop_cancel_timeout(radius_server_session_remove_timeout, data, sess);
     487             : 
     488         764 :         prev = NULL;
     489         764 :         session = client->sessions;
     490        9264 :         while (session) {
     491        8500 :                 if (session == sess) {
     492         764 :                         if (prev == NULL) {
     493          51 :                                 client->sessions = sess->next;
     494             :                         } else {
     495         713 :                                 prev->next = sess->next;
     496             :                         }
     497         764 :                         radius_server_session_free(data, sess);
     498         764 :                         break;
     499             :                 }
     500        7736 :                 prev = session;
     501        7736 :                 session = session->next;
     502             :         }
     503         764 : }
     504             : 
     505             : 
     506         721 : static void radius_server_session_remove_timeout(void *eloop_ctx,
     507             :                                                  void *timeout_ctx)
     508             : {
     509         721 :         struct radius_server_data *data = eloop_ctx;
     510         721 :         struct radius_session *sess = timeout_ctx;
     511         721 :         RADIUS_DEBUG("Removing completed session 0x%x", sess->sess_id);
     512         721 :         radius_server_session_remove(data, sess);
     513         721 : }
     514             : 
     515             : 
     516          43 : static void radius_server_session_timeout(void *eloop_ctx, void *timeout_ctx)
     517             : {
     518          43 :         struct radius_server_data *data = eloop_ctx;
     519          43 :         struct radius_session *sess = timeout_ctx;
     520             : 
     521          43 :         RADIUS_DEBUG("Timing out authentication session 0x%x", sess->sess_id);
     522          43 :         radius_server_session_remove(data, sess);
     523          43 : }
     524             : 
     525             : 
     526             : static struct radius_session *
     527         812 : radius_server_new_session(struct radius_server_data *data,
     528             :                           struct radius_client *client)
     529             : {
     530             :         struct radius_session *sess;
     531             : 
     532         812 :         if (data->num_sess >= RADIUS_MAX_SESSION) {
     533           0 :                 RADIUS_DEBUG("Maximum number of existing session - no room "
     534             :                              "for a new session");
     535           0 :                 return NULL;
     536             :         }
     537             : 
     538         812 :         sess = os_zalloc(sizeof(*sess));
     539         812 :         if (sess == NULL)
     540           0 :                 return NULL;
     541             : 
     542         812 :         sess->server = data;
     543         812 :         sess->client = client;
     544         812 :         sess->sess_id = data->next_sess_id++;
     545         812 :         sess->next = client->sessions;
     546         812 :         client->sessions = sess;
     547         812 :         eloop_register_timeout(RADIUS_SESSION_TIMEOUT, 0,
     548             :                                radius_server_session_timeout, data, sess);
     549         812 :         data->num_sess++;
     550         812 :         return sess;
     551             : }
     552             : 
     553             : 
     554             : #ifdef CONFIG_TESTING_OPTIONS
     555           0 : static void radius_server_testing_options_tls(struct radius_session *sess,
     556             :                                               const char *tls,
     557             :                                               struct eap_config *eap_conf)
     558             : {
     559           0 :         int test = atoi(tls);
     560             : 
     561           0 :         switch (test) {
     562             :         case 1:
     563           0 :                 srv_log(sess, "TLS test - break VerifyData");
     564           0 :                 eap_conf->tls_test_flags = TLS_BREAK_VERIFY_DATA;
     565           0 :                 break;
     566             :         case 2:
     567           0 :                 srv_log(sess, "TLS test - break ServerKeyExchange ServerParams hash");
     568           0 :                 eap_conf->tls_test_flags = TLS_BREAK_SRV_KEY_X_HASH;
     569           0 :                 break;
     570             :         case 3:
     571           0 :                 srv_log(sess, "TLS test - break ServerKeyExchange ServerParams Signature");
     572           0 :                 eap_conf->tls_test_flags = TLS_BREAK_SRV_KEY_X_SIGNATURE;
     573           0 :                 break;
     574             :         case 4:
     575           0 :                 srv_log(sess, "TLS test - RSA-DHE using a short 511-bit prime");
     576           0 :                 eap_conf->tls_test_flags = TLS_DHE_PRIME_511B;
     577           0 :                 break;
     578             :         case 5:
     579           0 :                 srv_log(sess, "TLS test - RSA-DHE using a short 767-bit prime");
     580           0 :                 eap_conf->tls_test_flags = TLS_DHE_PRIME_767B;
     581           0 :                 break;
     582             :         case 6:
     583           0 :                 srv_log(sess, "TLS test - RSA-DHE using a bogus 15 \"prime\"");
     584           0 :                 eap_conf->tls_test_flags = TLS_DHE_PRIME_15;
     585           0 :                 break;
     586             :         case 7:
     587           0 :                 srv_log(sess, "TLS test - RSA-DHE using a short 58-bit prime in long container");
     588           0 :                 eap_conf->tls_test_flags = TLS_DHE_PRIME_58B;
     589           0 :                 break;
     590             :         case 8:
     591           0 :                 srv_log(sess, "TLS test - RSA-DHE using a non-prime");
     592           0 :                 eap_conf->tls_test_flags = TLS_DHE_NON_PRIME;
     593           0 :                 break;
     594             :         default:
     595           0 :                 srv_log(sess, "Unrecognized TLS test");
     596           0 :                 break;
     597             :         }
     598           0 : }
     599             : #endif /* CONFIG_TESTING_OPTIONS */
     600             : 
     601         812 : static void radius_server_testing_options(struct radius_session *sess,
     602             :                                           struct eap_config *eap_conf)
     603             : {
     604             : #ifdef CONFIG_TESTING_OPTIONS
     605             :         const char *pos;
     606             : 
     607         812 :         pos = os_strstr(sess->username, "@test-");
     608         812 :         if (pos == NULL)
     609        1624 :                 return;
     610           0 :         pos += 6;
     611           0 :         if (os_strncmp(pos, "tls-", 4) == 0)
     612           0 :                 radius_server_testing_options_tls(sess, pos + 4, eap_conf);
     613             :         else
     614           0 :                 srv_log(sess, "Unrecognized test: %s", pos);
     615             : #endif /* CONFIG_TESTING_OPTIONS */
     616             : }
     617             : 
     618             : 
     619             : static struct radius_session *
     620         812 : radius_server_get_new_session(struct radius_server_data *data,
     621             :                               struct radius_client *client,
     622             :                               struct radius_msg *msg, const char *from_addr)
     623             : {
     624             :         u8 *user;
     625             :         size_t user_len;
     626             :         int res;
     627             :         struct radius_session *sess;
     628             :         struct eap_config eap_conf;
     629             :         struct eap_user tmp;
     630             : 
     631         812 :         RADIUS_DEBUG("Creating a new session");
     632             : 
     633         812 :         if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_USER_NAME, &user,
     634             :                                     &user_len, NULL) < 0) {
     635           0 :                 RADIUS_DEBUG("Could not get User-Name");
     636           0 :                 return NULL;
     637             :         }
     638         812 :         RADIUS_DUMP_ASCII("User-Name", user, user_len);
     639             : 
     640         812 :         os_memset(&tmp, 0, sizeof(tmp));
     641         812 :         res = data->get_eap_user(data->conf_ctx, user, user_len, 0, &tmp);
     642         812 :         bin_clear_free(tmp.password, tmp.password_len);
     643             : 
     644         812 :         if (res != 0) {
     645           0 :                 RADIUS_DEBUG("User-Name not found from user database");
     646           0 :                 return NULL;
     647             :         }
     648             : 
     649         812 :         RADIUS_DEBUG("Matching user entry found");
     650         812 :         sess = radius_server_new_session(data, client);
     651         812 :         if (sess == NULL) {
     652           0 :                 RADIUS_DEBUG("Failed to create a new session");
     653           0 :                 return NULL;
     654             :         }
     655         812 :         sess->accept_attr = tmp.accept_attr;
     656         812 :         sess->macacl = tmp.macacl;
     657             : 
     658         812 :         sess->username = os_malloc(user_len * 4 + 1);
     659         812 :         if (sess->username == NULL) {
     660           0 :                 radius_server_session_free(data, sess);
     661           0 :                 return NULL;
     662             :         }
     663         812 :         printf_encode(sess->username, user_len * 4 + 1, user, user_len);
     664             : 
     665         812 :         sess->nas_ip = os_strdup(from_addr);
     666         812 :         if (sess->nas_ip == NULL) {
     667           0 :                 radius_server_session_free(data, sess);
     668           0 :                 return NULL;
     669             :         }
     670             : 
     671         812 :         srv_log(sess, "New session created");
     672             : 
     673         812 :         os_memset(&eap_conf, 0, sizeof(eap_conf));
     674         812 :         eap_conf.ssl_ctx = data->ssl_ctx;
     675         812 :         eap_conf.msg_ctx = data->msg_ctx;
     676         812 :         eap_conf.eap_sim_db_priv = data->eap_sim_db_priv;
     677         812 :         eap_conf.backend_auth = TRUE;
     678         812 :         eap_conf.eap_server = 1;
     679         812 :         eap_conf.pac_opaque_encr_key = data->pac_opaque_encr_key;
     680         812 :         eap_conf.eap_fast_a_id = data->eap_fast_a_id;
     681         812 :         eap_conf.eap_fast_a_id_len = data->eap_fast_a_id_len;
     682         812 :         eap_conf.eap_fast_a_id_info = data->eap_fast_a_id_info;
     683         812 :         eap_conf.eap_fast_prov = data->eap_fast_prov;
     684         812 :         eap_conf.pac_key_lifetime = data->pac_key_lifetime;
     685         812 :         eap_conf.pac_key_refresh_time = data->pac_key_refresh_time;
     686         812 :         eap_conf.eap_sim_aka_result_ind = data->eap_sim_aka_result_ind;
     687         812 :         eap_conf.tnc = data->tnc;
     688         812 :         eap_conf.wps = data->wps;
     689         812 :         eap_conf.pwd_group = data->pwd_group;
     690         812 :         eap_conf.server_id = (const u8 *) data->server_id;
     691         812 :         eap_conf.server_id_len = os_strlen(data->server_id);
     692         812 :         eap_conf.erp = data->erp;
     693         812 :         eap_conf.tls_session_lifetime = data->tls_session_lifetime;
     694         812 :         radius_server_testing_options(sess, &eap_conf);
     695         812 :         sess->eap = eap_server_sm_init(sess, &radius_server_eapol_cb,
     696             :                                        &eap_conf);
     697         812 :         if (sess->eap == NULL) {
     698           0 :                 RADIUS_DEBUG("Failed to initialize EAP state machine for the "
     699             :                              "new session");
     700           0 :                 radius_server_session_free(data, sess);
     701           0 :                 return NULL;
     702             :         }
     703         812 :         sess->eap_if = eap_get_interface(sess->eap);
     704         812 :         sess->eap_if->eapRestart = TRUE;
     705         812 :         sess->eap_if->portEnabled = TRUE;
     706             : 
     707         812 :         RADIUS_DEBUG("New session 0x%x initialized", sess->sess_id);
     708             : 
     709         812 :         return sess;
     710             : }
     711             : 
     712             : 
     713             : static struct radius_msg *
     714        3292 : radius_server_encapsulate_eap(struct radius_server_data *data,
     715             :                               struct radius_client *client,
     716             :                               struct radius_session *sess,
     717             :                               struct radius_msg *request)
     718             : {
     719             :         struct radius_msg *msg;
     720             :         int code;
     721             :         unsigned int sess_id;
     722        3292 :         struct radius_hdr *hdr = radius_msg_get_hdr(request);
     723             : 
     724        3292 :         if (sess->eap_if->eapFail) {
     725         104 :                 sess->eap_if->eapFail = FALSE;
     726         104 :                 code = RADIUS_CODE_ACCESS_REJECT;
     727        3188 :         } else if (sess->eap_if->eapSuccess) {
     728         665 :                 sess->eap_if->eapSuccess = FALSE;
     729         665 :                 code = RADIUS_CODE_ACCESS_ACCEPT;
     730             :         } else {
     731        2523 :                 sess->eap_if->eapReq = FALSE;
     732        2523 :                 code = RADIUS_CODE_ACCESS_CHALLENGE;
     733             :         }
     734             : 
     735        3292 :         msg = radius_msg_new(code, hdr->identifier);
     736        3292 :         if (msg == NULL) {
     737           0 :                 RADIUS_DEBUG("Failed to allocate reply message");
     738           0 :                 return NULL;
     739             :         }
     740             : 
     741        3292 :         sess_id = htonl(sess->sess_id);
     742        5815 :         if (code == RADIUS_CODE_ACCESS_CHALLENGE &&
     743        2523 :             !radius_msg_add_attr(msg, RADIUS_ATTR_STATE,
     744             :                                  (u8 *) &sess_id, sizeof(sess_id))) {
     745           0 :                 RADIUS_DEBUG("Failed to add State attribute");
     746             :         }
     747             : 
     748        6584 :         if (sess->eap_if->eapReqData &&
     749        3292 :             !radius_msg_add_eap(msg, wpabuf_head(sess->eap_if->eapReqData),
     750        3292 :                                 wpabuf_len(sess->eap_if->eapReqData))) {
     751           0 :                 RADIUS_DEBUG("Failed to add EAP-Message attribute");
     752             :         }
     753             : 
     754        3292 :         if (code == RADIUS_CODE_ACCESS_ACCEPT && sess->eap_if->eapKeyData) {
     755             :                 int len;
     756             : #ifdef CONFIG_RADIUS_TEST
     757             :                 if (data->dump_msk_file) {
     758             :                         FILE *f;
     759             :                         char buf[2 * 64 + 1];
     760             :                         f = fopen(data->dump_msk_file, "a");
     761             :                         if (f) {
     762             :                                 len = sess->eap_if->eapKeyDataLen;
     763             :                                 if (len > 64)
     764             :                                         len = 64;
     765             :                                 len = wpa_snprintf_hex(
     766             :                                         buf, sizeof(buf),
     767             :                                         sess->eap_if->eapKeyData, len);
     768             :                                 buf[len] = '\0';
     769             :                                 fprintf(f, "%s\n", buf);
     770             :                                 fclose(f);
     771             :                         }
     772             :                 }
     773             : #endif /* CONFIG_RADIUS_TEST */
     774         665 :                 if (sess->eap_if->eapKeyDataLen > 64) {
     775           0 :                         len = 32;
     776             :                 } else {
     777         665 :                         len = sess->eap_if->eapKeyDataLen / 2;
     778             :                 }
     779        3325 :                 if (!radius_msg_add_mppe_keys(msg, hdr->authenticator,
     780         665 :                                               (u8 *) client->shared_secret,
     781         665 :                                               client->shared_secret_len,
     782         665 :                                               sess->eap_if->eapKeyData + len,
     783         665 :                                               len, sess->eap_if->eapKeyData,
     784             :                                               len)) {
     785           0 :                         RADIUS_DEBUG("Failed to add MPPE key attributes");
     786             :                 }
     787             :         }
     788             : 
     789             : #ifdef CONFIG_HS20
     790        3293 :         if (code == RADIUS_CODE_ACCESS_ACCEPT && sess->remediation &&
     791           2 :             data->subscr_remediation_url) {
     792             :                 u8 *buf;
     793           1 :                 size_t url_len = os_strlen(data->subscr_remediation_url);
     794           1 :                 buf = os_malloc(1 + url_len);
     795           1 :                 if (buf == NULL) {
     796           0 :                         radius_msg_free(msg);
     797           0 :                         return NULL;
     798             :                 }
     799           1 :                 buf[0] = data->subscr_remediation_method;
     800           1 :                 os_memcpy(&buf[1], data->subscr_remediation_url, url_len);
     801           1 :                 if (!radius_msg_add_wfa(
     802             :                             msg, RADIUS_VENDOR_ATTR_WFA_HS20_SUBSCR_REMEDIATION,
     803             :                             buf, 1 + url_len)) {
     804           0 :                         RADIUS_DEBUG("Failed to add WFA-HS20-SubscrRem");
     805             :                 }
     806           1 :                 os_free(buf);
     807        3291 :         } else if (code == RADIUS_CODE_ACCESS_ACCEPT && sess->remediation) {
     808             :                 u8 buf[1];
     809           0 :                 if (!radius_msg_add_wfa(
     810             :                             msg, RADIUS_VENDOR_ATTR_WFA_HS20_SUBSCR_REMEDIATION,
     811             :                             buf, 0)) {
     812           0 :                         RADIUS_DEBUG("Failed to add WFA-HS20-SubscrRem");
     813             :                 }
     814             :         }
     815             : #endif /* CONFIG_HS20 */
     816             : 
     817        3292 :         if (radius_msg_copy_attr(msg, request, RADIUS_ATTR_PROXY_STATE) < 0) {
     818           0 :                 RADIUS_DEBUG("Failed to copy Proxy-State attribute(s)");
     819           0 :                 radius_msg_free(msg);
     820           0 :                 return NULL;
     821             :         }
     822             : 
     823        3292 :         if (code == RADIUS_CODE_ACCESS_ACCEPT) {
     824             :                 struct hostapd_radius_attr *attr;
     825         725 :                 for (attr = sess->accept_attr; attr; attr = attr->next) {
     826         120 :                         if (!radius_msg_add_attr(msg, attr->type,
     827          60 :                                                  wpabuf_head(attr->val),
     828          60 :                                                  wpabuf_len(attr->val))) {
     829           0 :                                 wpa_printf(MSG_ERROR, "Could not add RADIUS attribute");
     830           0 :                                 radius_msg_free(msg);
     831           0 :                                 return NULL;
     832             :                         }
     833             :                 }
     834             :         }
     835             : 
     836        3292 :         if (radius_msg_finish_srv(msg, (u8 *) client->shared_secret,
     837        3292 :                                   client->shared_secret_len,
     838        3292 :                                   hdr->authenticator) < 0) {
     839           0 :                 RADIUS_DEBUG("Failed to add Message-Authenticator attribute");
     840             :         }
     841             : 
     842        3292 :         return msg;
     843             : }
     844             : 
     845             : 
     846             : static struct radius_msg *
     847           4 : radius_server_macacl(struct radius_server_data *data,
     848             :                      struct radius_client *client,
     849             :                      struct radius_session *sess,
     850             :                      struct radius_msg *request)
     851             : {
     852             :         struct radius_msg *msg;
     853             :         int code;
     854           4 :         struct radius_hdr *hdr = radius_msg_get_hdr(request);
     855             :         u8 *pw;
     856             :         size_t pw_len;
     857             : 
     858           4 :         code = RADIUS_CODE_ACCESS_ACCEPT;
     859             : 
     860           4 :         if (radius_msg_get_attr_ptr(request, RADIUS_ATTR_USER_PASSWORD, &pw,
     861             :                                     &pw_len, NULL) < 0) {
     862           0 :                 RADIUS_DEBUG("Could not get User-Password");
     863           0 :                 code = RADIUS_CODE_ACCESS_REJECT;
     864             :         } else {
     865             :                 int res;
     866             :                 struct eap_user tmp;
     867             : 
     868           4 :                 os_memset(&tmp, 0, sizeof(tmp));
     869           8 :                 res = data->get_eap_user(data->conf_ctx, (u8 *) sess->username,
     870           4 :                                          os_strlen(sess->username), 0, &tmp);
     871           4 :                 if (res || !tmp.macacl || tmp.password == NULL) {
     872           0 :                         RADIUS_DEBUG("No MAC ACL user entry");
     873           0 :                         bin_clear_free(tmp.password, tmp.password_len);
     874           0 :                         code = RADIUS_CODE_ACCESS_REJECT;
     875             :                 } else {
     876             :                         u8 buf[128];
     877          12 :                         res = radius_user_password_hide(
     878           4 :                                 request, tmp.password, tmp.password_len,
     879           4 :                                 (u8 *) client->shared_secret,
     880           4 :                                 client->shared_secret_len,
     881             :                                 buf, sizeof(buf));
     882           4 :                         bin_clear_free(tmp.password, tmp.password_len);
     883             : 
     884           8 :                         if (res < 0 || pw_len != (size_t) res ||
     885           4 :                             os_memcmp_const(pw, buf, res) != 0) {
     886           0 :                                 RADIUS_DEBUG("Incorrect User-Password");
     887           0 :                                 code = RADIUS_CODE_ACCESS_REJECT;
     888             :                         }
     889             :                 }
     890             :         }
     891             : 
     892           4 :         msg = radius_msg_new(code, hdr->identifier);
     893           4 :         if (msg == NULL) {
     894           0 :                 RADIUS_DEBUG("Failed to allocate reply message");
     895           0 :                 return NULL;
     896             :         }
     897             : 
     898           4 :         if (radius_msg_copy_attr(msg, request, RADIUS_ATTR_PROXY_STATE) < 0) {
     899           0 :                 RADIUS_DEBUG("Failed to copy Proxy-State attribute(s)");
     900           0 :                 radius_msg_free(msg);
     901           0 :                 return NULL;
     902             :         }
     903             : 
     904           4 :         if (code == RADIUS_CODE_ACCESS_ACCEPT) {
     905             :                 struct hostapd_radius_attr *attr;
     906           8 :                 for (attr = sess->accept_attr; attr; attr = attr->next) {
     907           8 :                         if (!radius_msg_add_attr(msg, attr->type,
     908           4 :                                                  wpabuf_head(attr->val),
     909           4 :                                                  wpabuf_len(attr->val))) {
     910           0 :                                 wpa_printf(MSG_ERROR, "Could not add RADIUS attribute");
     911           0 :                                 radius_msg_free(msg);
     912           0 :                                 return NULL;
     913             :                         }
     914             :                 }
     915             :         }
     916             : 
     917           4 :         if (radius_msg_finish_srv(msg, (u8 *) client->shared_secret,
     918           4 :                                   client->shared_secret_len,
     919           4 :                                   hdr->authenticator) < 0) {
     920           0 :                 RADIUS_DEBUG("Failed to add Message-Authenticator attribute");
     921             :         }
     922             : 
     923           4 :         return msg;
     924             : }
     925             : 
     926             : 
     927           1 : static int radius_server_reject(struct radius_server_data *data,
     928             :                                 struct radius_client *client,
     929             :                                 struct radius_msg *request,
     930             :                                 struct sockaddr *from, socklen_t fromlen,
     931             :                                 const char *from_addr, int from_port)
     932             : {
     933             :         struct radius_msg *msg;
     934           1 :         int ret = 0;
     935             :         struct eap_hdr eapfail;
     936             :         struct wpabuf *buf;
     937           1 :         struct radius_hdr *hdr = radius_msg_get_hdr(request);
     938             : 
     939           1 :         RADIUS_DEBUG("Reject invalid request from %s:%d",
     940             :                      from_addr, from_port);
     941             : 
     942           1 :         msg = radius_msg_new(RADIUS_CODE_ACCESS_REJECT, hdr->identifier);
     943           1 :         if (msg == NULL) {
     944           0 :                 return -1;
     945             :         }
     946             : 
     947           1 :         os_memset(&eapfail, 0, sizeof(eapfail));
     948           1 :         eapfail.code = EAP_CODE_FAILURE;
     949           1 :         eapfail.identifier = 0;
     950           1 :         eapfail.length = host_to_be16(sizeof(eapfail));
     951             : 
     952           1 :         if (!radius_msg_add_eap(msg, (u8 *) &eapfail, sizeof(eapfail))) {
     953           0 :                 RADIUS_DEBUG("Failed to add EAP-Message attribute");
     954             :         }
     955             : 
     956           1 :         if (radius_msg_copy_attr(msg, request, RADIUS_ATTR_PROXY_STATE) < 0) {
     957           0 :                 RADIUS_DEBUG("Failed to copy Proxy-State attribute(s)");
     958           0 :                 radius_msg_free(msg);
     959           0 :                 return -1;
     960             :         }
     961             : 
     962           1 :         if (radius_msg_finish_srv(msg, (u8 *) client->shared_secret,
     963           1 :                                   client->shared_secret_len,
     964           1 :                                   hdr->authenticator) <
     965             :             0) {
     966           0 :                 RADIUS_DEBUG("Failed to add Message-Authenticator attribute");
     967             :         }
     968             : 
     969           1 :         if (wpa_debug_level <= MSG_MSGDUMP) {
     970           1 :                 radius_msg_dump(msg);
     971             :         }
     972             : 
     973           1 :         data->counters.access_rejects++;
     974           1 :         client->counters.access_rejects++;
     975           1 :         buf = radius_msg_get_buf(msg);
     976           1 :         if (sendto(data->auth_sock, wpabuf_head(buf), wpabuf_len(buf), 0,
     977             :                    (struct sockaddr *) from, sizeof(*from)) < 0) {
     978           0 :                 wpa_printf(MSG_INFO, "sendto[RADIUS SRV]: %s", strerror(errno));
     979           0 :                 ret = -1;
     980             :         }
     981             : 
     982           1 :         radius_msg_free(msg);
     983             : 
     984           1 :         return ret;
     985             : }
     986             : 
     987             : 
     988        3397 : static int radius_server_request(struct radius_server_data *data,
     989             :                                  struct radius_msg *msg,
     990             :                                  struct sockaddr *from, socklen_t fromlen,
     991             :                                  struct radius_client *client,
     992             :                                  const char *from_addr, int from_port,
     993             :                                  struct radius_session *force_sess)
     994             : {
     995        3397 :         struct wpabuf *eap = NULL;
     996        3397 :         int res, state_included = 0;
     997             :         u8 statebuf[4];
     998             :         unsigned int state;
     999             :         struct radius_session *sess;
    1000             :         struct radius_msg *reply;
    1001        3397 :         int is_complete = 0;
    1002             : 
    1003        3397 :         if (force_sess)
    1004          89 :                 sess = force_sess;
    1005             :         else {
    1006        3308 :                 res = radius_msg_get_attr(msg, RADIUS_ATTR_STATE, statebuf,
    1007             :                                           sizeof(statebuf));
    1008        3308 :                 state_included = res >= 0;
    1009        3308 :                 if (res == sizeof(statebuf)) {
    1010        2495 :                         state = WPA_GET_BE32(statebuf);
    1011        2495 :                         sess = radius_server_get_session(client, state);
    1012             :                 } else {
    1013         813 :                         sess = NULL;
    1014             :                 }
    1015             :         }
    1016             : 
    1017        3397 :         if (sess) {
    1018        2584 :                 RADIUS_DEBUG("Request for session 0x%x", sess->sess_id);
    1019         813 :         } else if (state_included) {
    1020           1 :                 RADIUS_DEBUG("State attribute included but no session found");
    1021           1 :                 radius_server_reject(data, client, msg, from, fromlen,
    1022             :                                      from_addr, from_port);
    1023           1 :                 return -1;
    1024             :         } else {
    1025         812 :                 sess = radius_server_get_new_session(data, client, msg,
    1026             :                                                      from_addr);
    1027         812 :                 if (sess == NULL) {
    1028           0 :                         RADIUS_DEBUG("Could not create a new session");
    1029           0 :                         radius_server_reject(data, client, msg, from, fromlen,
    1030             :                                              from_addr, from_port);
    1031           0 :                         return -1;
    1032             :                 }
    1033             :         }
    1034             : 
    1035        5980 :         if (sess->last_from_port == from_port &&
    1036        2592 :             sess->last_identifier == radius_msg_get_hdr(msg)->identifier &&
    1037           8 :             os_memcmp(sess->last_authenticator,
    1038             :                       radius_msg_get_hdr(msg)->authenticator, 16) == 0) {
    1039           8 :                 RADIUS_DEBUG("Duplicate message from %s", from_addr);
    1040           8 :                 data->counters.dup_access_requests++;
    1041           8 :                 client->counters.dup_access_requests++;
    1042             : 
    1043           8 :                 if (sess->last_reply) {
    1044             :                         struct wpabuf *buf;
    1045           8 :                         buf = radius_msg_get_buf(sess->last_reply);
    1046           8 :                         res = sendto(data->auth_sock, wpabuf_head(buf),
    1047             :                                      wpabuf_len(buf), 0,
    1048             :                                      (struct sockaddr *) from, fromlen);
    1049           8 :                         if (res < 0) {
    1050           0 :                                 wpa_printf(MSG_INFO, "sendto[RADIUS SRV]: %s",
    1051           0 :                                            strerror(errno));
    1052             :                         }
    1053           8 :                         return 0;
    1054             :                 }
    1055             : 
    1056           0 :                 RADIUS_DEBUG("No previous reply available for duplicate "
    1057             :                              "message");
    1058           0 :                 return -1;
    1059             :         }
    1060             :                       
    1061        3388 :         eap = radius_msg_get_eap(msg);
    1062        3388 :         if (eap == NULL && sess->macacl) {
    1063           4 :                 reply = radius_server_macacl(data, client, sess, msg);
    1064           4 :                 if (reply == NULL)
    1065           0 :                         return -1;
    1066           4 :                 goto send_reply;
    1067             :         }
    1068        3384 :         if (eap == NULL) {
    1069           1 :                 RADIUS_DEBUG("No EAP-Message in RADIUS packet from %s",
    1070             :                              from_addr);
    1071           1 :                 data->counters.packets_dropped++;
    1072           1 :                 client->counters.packets_dropped++;
    1073           1 :                 return -1;
    1074             :         }
    1075             : 
    1076        3383 :         RADIUS_DUMP("Received EAP data", wpabuf_head(eap), wpabuf_len(eap));
    1077             : 
    1078             :         /* FIX: if Code is Request, Success, or Failure, send Access-Reject;
    1079             :          * RFC3579 Sect. 2.6.2.
    1080             :          * Include EAP-Response/Nak with no preferred method if
    1081             :          * code == request.
    1082             :          * If code is not 1-4, discard the packet silently.
    1083             :          * Or is this already done by the EAP state machine? */
    1084             : 
    1085        3383 :         wpabuf_free(sess->eap_if->eapRespData);
    1086        3383 :         sess->eap_if->eapRespData = eap;
    1087        3383 :         sess->eap_if->eapResp = TRUE;
    1088        3383 :         eap_server_sm_step(sess->eap);
    1089             : 
    1090        3578 :         if ((sess->eap_if->eapReq || sess->eap_if->eapSuccess ||
    1091        3487 :              sess->eap_if->eapFail) && sess->eap_if->eapReqData) {
    1092        3292 :                 RADIUS_DUMP("EAP data from the state machine",
    1093             :                             wpabuf_head(sess->eap_if->eapReqData),
    1094             :                             wpabuf_len(sess->eap_if->eapReqData));
    1095          91 :         } else if (sess->eap_if->eapFail) {
    1096           0 :                 RADIUS_DEBUG("No EAP data from the state machine, but eapFail "
    1097             :                              "set");
    1098          91 :         } else if (eap_sm_method_pending(sess->eap)) {
    1099          89 :                 radius_msg_free(sess->last_msg);
    1100          89 :                 sess->last_msg = msg;
    1101          89 :                 sess->last_from_port = from_port;
    1102          89 :                 os_free(sess->last_from_addr);
    1103          89 :                 sess->last_from_addr = os_strdup(from_addr);
    1104          89 :                 sess->last_fromlen = fromlen;
    1105          89 :                 os_memcpy(&sess->last_from, from, fromlen);
    1106          89 :                 return -2;
    1107             :         } else {
    1108           2 :                 RADIUS_DEBUG("No EAP data from the state machine - ignore this"
    1109             :                              " Access-Request silently (assuming it was a "
    1110             :                              "duplicate)");
    1111           2 :                 data->counters.packets_dropped++;
    1112           2 :                 client->counters.packets_dropped++;
    1113           2 :                 return -1;
    1114             :         }
    1115             : 
    1116        3292 :         if (sess->eap_if->eapSuccess || sess->eap_if->eapFail)
    1117         769 :                 is_complete = 1;
    1118        3292 :         if (sess->eap_if->eapFail)
    1119         104 :                 srv_log(sess, "EAP authentication failed");
    1120        3188 :         else if (sess->eap_if->eapSuccess)
    1121         665 :                 srv_log(sess, "EAP authentication succeeded");
    1122             : 
    1123        3292 :         reply = radius_server_encapsulate_eap(data, client, sess, msg);
    1124             : 
    1125             : send_reply:
    1126        3296 :         if (reply) {
    1127             :                 struct wpabuf *buf;
    1128             :                 struct radius_hdr *hdr;
    1129             : 
    1130        3296 :                 RADIUS_DEBUG("Reply to %s:%d", from_addr, from_port);
    1131        3296 :                 if (wpa_debug_level <= MSG_MSGDUMP) {
    1132        3296 :                         radius_msg_dump(reply);
    1133             :                 }
    1134             : 
    1135        3296 :                 switch (radius_msg_get_hdr(reply)->code) {
    1136             :                 case RADIUS_CODE_ACCESS_ACCEPT:
    1137         669 :                         srv_log(sess, "Sending Access-Accept");
    1138         669 :                         data->counters.access_accepts++;
    1139         669 :                         client->counters.access_accepts++;
    1140         669 :                         break;
    1141             :                 case RADIUS_CODE_ACCESS_REJECT:
    1142         104 :                         srv_log(sess, "Sending Access-Reject");
    1143         104 :                         data->counters.access_rejects++;
    1144         104 :                         client->counters.access_rejects++;
    1145         104 :                         break;
    1146             :                 case RADIUS_CODE_ACCESS_CHALLENGE:
    1147        2523 :                         data->counters.access_challenges++;
    1148        2523 :                         client->counters.access_challenges++;
    1149        2523 :                         break;
    1150             :                 }
    1151        3296 :                 buf = radius_msg_get_buf(reply);
    1152        3296 :                 res = sendto(data->auth_sock, wpabuf_head(buf),
    1153             :                              wpabuf_len(buf), 0,
    1154             :                              (struct sockaddr *) from, fromlen);
    1155        3296 :                 if (res < 0) {
    1156           0 :                         wpa_printf(MSG_INFO, "sendto[RADIUS SRV]: %s",
    1157           0 :                                    strerror(errno));
    1158             :                 }
    1159        3296 :                 radius_msg_free(sess->last_reply);
    1160        3296 :                 sess->last_reply = reply;
    1161        3296 :                 sess->last_from_port = from_port;
    1162        3296 :                 hdr = radius_msg_get_hdr(msg);
    1163        3296 :                 sess->last_identifier = hdr->identifier;
    1164        3296 :                 os_memcpy(sess->last_authenticator, hdr->authenticator, 16);
    1165             :         } else {
    1166           0 :                 data->counters.packets_dropped++;
    1167           0 :                 client->counters.packets_dropped++;
    1168             :         }
    1169             : 
    1170        3296 :         if (is_complete) {
    1171         769 :                 RADIUS_DEBUG("Removing completed session 0x%x after timeout",
    1172             :                              sess->sess_id);
    1173         769 :                 eloop_cancel_timeout(radius_server_session_remove_timeout,
    1174             :                                      data, sess);
    1175         769 :                 eloop_register_timeout(10, 0,
    1176             :                                        radius_server_session_remove_timeout,
    1177             :                                        data, sess);
    1178             :         }
    1179             : 
    1180        3296 :         return 0;
    1181             : }
    1182             : 
    1183             : 
    1184        3309 : static void radius_server_receive_auth(int sock, void *eloop_ctx,
    1185             :                                        void *sock_ctx)
    1186             : {
    1187        3309 :         struct radius_server_data *data = eloop_ctx;
    1188        3309 :         u8 *buf = NULL;
    1189             :         union {
    1190             :                 struct sockaddr_storage ss;
    1191             :                 struct sockaddr_in sin;
    1192             : #ifdef CONFIG_IPV6
    1193             :                 struct sockaddr_in6 sin6;
    1194             : #endif /* CONFIG_IPV6 */
    1195             :         } from;
    1196             :         socklen_t fromlen;
    1197             :         int len;
    1198        3309 :         struct radius_client *client = NULL;
    1199        3309 :         struct radius_msg *msg = NULL;
    1200             :         char abuf[50];
    1201        3309 :         int from_port = 0;
    1202             : 
    1203        3309 :         buf = os_malloc(RADIUS_MAX_MSG_LEN);
    1204        3309 :         if (buf == NULL) {
    1205           0 :                 goto fail;
    1206             :         }
    1207             : 
    1208        3309 :         fromlen = sizeof(from);
    1209        3309 :         len = recvfrom(sock, buf, RADIUS_MAX_MSG_LEN, 0,
    1210             :                        (struct sockaddr *) &from.ss, &fromlen);
    1211        3309 :         if (len < 0) {
    1212           0 :                 wpa_printf(MSG_INFO, "recvfrom[radius_server]: %s",
    1213           0 :                            strerror(errno));
    1214           0 :                 goto fail;
    1215             :         }
    1216             : 
    1217             : #ifdef CONFIG_IPV6
    1218        3309 :         if (data->ipv6) {
    1219           3 :                 if (inet_ntop(AF_INET6, &from.sin6.sin6_addr, abuf,
    1220             :                               sizeof(abuf)) == NULL)
    1221           0 :                         abuf[0] = '\0';
    1222           3 :                 from_port = ntohs(from.sin6.sin6_port);
    1223           3 :                 RADIUS_DEBUG("Received %d bytes from %s:%d",
    1224             :                              len, abuf, from_port);
    1225             : 
    1226           3 :                 client = radius_server_get_client(data,
    1227             :                                                   (struct in_addr *)
    1228             :                                                   &from.sin6.sin6_addr, 1);
    1229             :         }
    1230             : #endif /* CONFIG_IPV6 */
    1231             : 
    1232        3309 :         if (!data->ipv6) {
    1233        3306 :                 os_strlcpy(abuf, inet_ntoa(from.sin.sin_addr), sizeof(abuf));
    1234        3306 :                 from_port = ntohs(from.sin.sin_port);
    1235        3306 :                 RADIUS_DEBUG("Received %d bytes from %s:%d",
    1236             :                              len, abuf, from_port);
    1237             : 
    1238        3306 :                 client = radius_server_get_client(data, &from.sin.sin_addr, 0);
    1239             :         }
    1240             : 
    1241        3309 :         RADIUS_DUMP("Received data", buf, len);
    1242             : 
    1243        3309 :         if (client == NULL) {
    1244           0 :                 RADIUS_DEBUG("Unknown client %s - packet ignored", abuf);
    1245           0 :                 data->counters.invalid_requests++;
    1246           0 :                 goto fail;
    1247             :         }
    1248             : 
    1249        3309 :         msg = radius_msg_parse(buf, len);
    1250        3309 :         if (msg == NULL) {
    1251           0 :                 RADIUS_DEBUG("Parsing incoming RADIUS frame failed");
    1252           0 :                 data->counters.malformed_access_requests++;
    1253           0 :                 client->counters.malformed_access_requests++;
    1254           0 :                 goto fail;
    1255             :         }
    1256             : 
    1257        3309 :         os_free(buf);
    1258        3309 :         buf = NULL;
    1259             : 
    1260        3309 :         if (wpa_debug_level <= MSG_MSGDUMP) {
    1261        3309 :                 radius_msg_dump(msg);
    1262             :         }
    1263             : 
    1264        3309 :         if (radius_msg_get_hdr(msg)->code != RADIUS_CODE_ACCESS_REQUEST) {
    1265           0 :                 RADIUS_DEBUG("Unexpected RADIUS code %d",
    1266             :                              radius_msg_get_hdr(msg)->code);
    1267           0 :                 data->counters.unknown_types++;
    1268           0 :                 client->counters.unknown_types++;
    1269           0 :                 goto fail;
    1270             :         }
    1271             : 
    1272        3309 :         data->counters.access_requests++;
    1273        3309 :         client->counters.access_requests++;
    1274             : 
    1275        3309 :         if (radius_msg_verify_msg_auth(msg, (u8 *) client->shared_secret,
    1276        3309 :                                        client->shared_secret_len, NULL)) {
    1277           1 :                 RADIUS_DEBUG("Invalid Message-Authenticator from %s", abuf);
    1278           1 :                 data->counters.bad_authenticators++;
    1279           1 :                 client->counters.bad_authenticators++;
    1280           1 :                 goto fail;
    1281             :         }
    1282             : 
    1283        3308 :         if (radius_server_request(data, msg, (struct sockaddr *) &from,
    1284             :                                   fromlen, client, abuf, from_port, NULL) ==
    1285             :             -2)
    1286        3398 :                 return; /* msg was stored with the session */
    1287             : 
    1288             : fail:
    1289        3220 :         radius_msg_free(msg);
    1290        3220 :         os_free(buf);
    1291             : }
    1292             : 
    1293             : 
    1294         489 : static void radius_server_receive_acct(int sock, void *eloop_ctx,
    1295             :                                        void *sock_ctx)
    1296             : {
    1297         489 :         struct radius_server_data *data = eloop_ctx;
    1298         489 :         u8 *buf = NULL;
    1299             :         union {
    1300             :                 struct sockaddr_storage ss;
    1301             :                 struct sockaddr_in sin;
    1302             : #ifdef CONFIG_IPV6
    1303             :                 struct sockaddr_in6 sin6;
    1304             : #endif /* CONFIG_IPV6 */
    1305             :         } from;
    1306             :         socklen_t fromlen;
    1307             :         int len, res;
    1308         489 :         struct radius_client *client = NULL;
    1309         489 :         struct radius_msg *msg = NULL, *resp = NULL;
    1310             :         char abuf[50];
    1311         489 :         int from_port = 0;
    1312             :         struct radius_hdr *hdr;
    1313             :         struct wpabuf *rbuf;
    1314             : 
    1315         489 :         buf = os_malloc(RADIUS_MAX_MSG_LEN);
    1316         489 :         if (buf == NULL) {
    1317           0 :                 goto fail;
    1318             :         }
    1319             : 
    1320         489 :         fromlen = sizeof(from);
    1321         489 :         len = recvfrom(sock, buf, RADIUS_MAX_MSG_LEN, 0,
    1322             :                        (struct sockaddr *) &from.ss, &fromlen);
    1323         489 :         if (len < 0) {
    1324           0 :                 wpa_printf(MSG_INFO, "recvfrom[radius_server]: %s",
    1325           0 :                            strerror(errno));
    1326           0 :                 goto fail;
    1327             :         }
    1328             : 
    1329             : #ifdef CONFIG_IPV6
    1330         489 :         if (data->ipv6) {
    1331           4 :                 if (inet_ntop(AF_INET6, &from.sin6.sin6_addr, abuf,
    1332             :                               sizeof(abuf)) == NULL)
    1333           0 :                         abuf[0] = '\0';
    1334           4 :                 from_port = ntohs(from.sin6.sin6_port);
    1335           4 :                 RADIUS_DEBUG("Received %d bytes from %s:%d",
    1336             :                              len, abuf, from_port);
    1337             : 
    1338           4 :                 client = radius_server_get_client(data,
    1339             :                                                   (struct in_addr *)
    1340             :                                                   &from.sin6.sin6_addr, 1);
    1341             :         }
    1342             : #endif /* CONFIG_IPV6 */
    1343             : 
    1344         489 :         if (!data->ipv6) {
    1345         485 :                 os_strlcpy(abuf, inet_ntoa(from.sin.sin_addr), sizeof(abuf));
    1346         485 :                 from_port = ntohs(from.sin.sin_port);
    1347         485 :                 RADIUS_DEBUG("Received %d bytes from %s:%d",
    1348             :                              len, abuf, from_port);
    1349             : 
    1350         485 :                 client = radius_server_get_client(data, &from.sin.sin_addr, 0);
    1351             :         }
    1352             : 
    1353         489 :         RADIUS_DUMP("Received data", buf, len);
    1354             : 
    1355         489 :         if (client == NULL) {
    1356           0 :                 RADIUS_DEBUG("Unknown client %s - packet ignored", abuf);
    1357           0 :                 data->counters.invalid_acct_requests++;
    1358           0 :                 goto fail;
    1359             :         }
    1360             : 
    1361         489 :         msg = radius_msg_parse(buf, len);
    1362         489 :         if (msg == NULL) {
    1363           0 :                 RADIUS_DEBUG("Parsing incoming RADIUS frame failed");
    1364           0 :                 data->counters.malformed_acct_requests++;
    1365           0 :                 client->counters.malformed_acct_requests++;
    1366           0 :                 goto fail;
    1367             :         }
    1368             : 
    1369         489 :         os_free(buf);
    1370         489 :         buf = NULL;
    1371             : 
    1372         489 :         if (wpa_debug_level <= MSG_MSGDUMP) {
    1373         489 :                 radius_msg_dump(msg);
    1374             :         }
    1375             : 
    1376         489 :         if (radius_msg_get_hdr(msg)->code != RADIUS_CODE_ACCOUNTING_REQUEST) {
    1377           0 :                 RADIUS_DEBUG("Unexpected RADIUS code %d",
    1378             :                              radius_msg_get_hdr(msg)->code);
    1379           0 :                 data->counters.unknown_acct_types++;
    1380           0 :                 client->counters.unknown_acct_types++;
    1381           0 :                 goto fail;
    1382             :         }
    1383             : 
    1384         489 :         data->counters.acct_requests++;
    1385         489 :         client->counters.acct_requests++;
    1386             : 
    1387         489 :         if (radius_msg_verify_acct_req(msg, (u8 *) client->shared_secret,
    1388         489 :                                        client->shared_secret_len)) {
    1389           1 :                 RADIUS_DEBUG("Invalid Authenticator from %s", abuf);
    1390           1 :                 data->counters.acct_bad_authenticators++;
    1391           1 :                 client->counters.acct_bad_authenticators++;
    1392           1 :                 goto fail;
    1393             :         }
    1394             : 
    1395             :         /* TODO: Write accounting information to a file or database */
    1396             : 
    1397         488 :         hdr = radius_msg_get_hdr(msg);
    1398             : 
    1399         488 :         resp = radius_msg_new(RADIUS_CODE_ACCOUNTING_RESPONSE, hdr->identifier);
    1400         488 :         if (resp == NULL)
    1401           0 :                 goto fail;
    1402             : 
    1403         488 :         radius_msg_finish_acct_resp(resp, (u8 *) client->shared_secret,
    1404         488 :                                     client->shared_secret_len,
    1405         488 :                                     hdr->authenticator);
    1406             : 
    1407         488 :         RADIUS_DEBUG("Reply to %s:%d", abuf, from_port);
    1408         488 :         if (wpa_debug_level <= MSG_MSGDUMP) {
    1409         488 :                 radius_msg_dump(resp);
    1410             :         }
    1411         488 :         rbuf = radius_msg_get_buf(resp);
    1412         488 :         data->counters.acct_responses++;
    1413         488 :         client->counters.acct_responses++;
    1414         488 :         res = sendto(data->acct_sock, wpabuf_head(rbuf), wpabuf_len(rbuf), 0,
    1415             :                      (struct sockaddr *) &from.ss, fromlen);
    1416         488 :         if (res < 0) {
    1417           0 :                 wpa_printf(MSG_INFO, "sendto[RADIUS SRV]: %s",
    1418           0 :                            strerror(errno));
    1419             :         }
    1420             : 
    1421             : fail:
    1422         489 :         radius_msg_free(resp);
    1423         489 :         radius_msg_free(msg);
    1424         489 :         os_free(buf);
    1425         489 : }
    1426             : 
    1427             : 
    1428          31 : static int radius_server_disable_pmtu_discovery(int s)
    1429             : {
    1430          31 :         int r = -1;
    1431             : #if defined(IP_MTU_DISCOVER) && defined(IP_PMTUDISC_DONT)
    1432             :         /* Turn off Path MTU discovery on IPv4/UDP sockets. */
    1433          31 :         int action = IP_PMTUDISC_DONT;
    1434          31 :         r = setsockopt(s, IPPROTO_IP, IP_MTU_DISCOVER, &action,
    1435             :                        sizeof(action));
    1436          31 :         if (r == -1)
    1437           0 :                 wpa_printf(MSG_ERROR, "Failed to set IP_MTU_DISCOVER: "
    1438           0 :                            "%s", strerror(errno));
    1439             : #endif
    1440          31 :         return r;
    1441             : }
    1442             : 
    1443             : 
    1444          31 : static int radius_server_open_socket(int port)
    1445             : {
    1446             :         int s;
    1447             :         struct sockaddr_in addr;
    1448             : 
    1449          31 :         s = socket(PF_INET, SOCK_DGRAM, 0);
    1450          31 :         if (s < 0) {
    1451           0 :                 wpa_printf(MSG_INFO, "RADIUS: socket: %s", strerror(errno));
    1452           0 :                 return -1;
    1453             :         }
    1454             : 
    1455          31 :         radius_server_disable_pmtu_discovery(s);
    1456             : 
    1457          31 :         os_memset(&addr, 0, sizeof(addr));
    1458          31 :         addr.sin_family = AF_INET;
    1459          31 :         addr.sin_port = htons(port);
    1460          31 :         if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
    1461           0 :                 wpa_printf(MSG_INFO, "RADIUS: bind: %s", strerror(errno));
    1462           0 :                 close(s);
    1463           0 :                 return -1;
    1464             :         }
    1465             : 
    1466          31 :         return s;
    1467             : }
    1468             : 
    1469             : 
    1470             : #ifdef CONFIG_IPV6
    1471           2 : static int radius_server_open_socket6(int port)
    1472             : {
    1473             :         int s;
    1474             :         struct sockaddr_in6 addr;
    1475             : 
    1476           2 :         s = socket(PF_INET6, SOCK_DGRAM, 0);
    1477           2 :         if (s < 0) {
    1478           0 :                 wpa_printf(MSG_INFO, "RADIUS: socket[IPv6]: %s",
    1479           0 :                            strerror(errno));
    1480           0 :                 return -1;
    1481             :         }
    1482             : 
    1483           2 :         os_memset(&addr, 0, sizeof(addr));
    1484           2 :         addr.sin6_family = AF_INET6;
    1485           2 :         os_memcpy(&addr.sin6_addr, &in6addr_any, sizeof(in6addr_any));
    1486           2 :         addr.sin6_port = htons(port);
    1487           2 :         if (bind(s, (struct sockaddr *) &addr, sizeof(addr)) < 0) {
    1488           0 :                 wpa_printf(MSG_INFO, "RADIUS: bind: %s", strerror(errno));
    1489           0 :                 close(s);
    1490           0 :                 return -1;
    1491             :         }
    1492             : 
    1493           2 :         return s;
    1494             : }
    1495             : #endif /* CONFIG_IPV6 */
    1496             : 
    1497             : 
    1498          26 : static void radius_server_free_sessions(struct radius_server_data *data,
    1499             :                                         struct radius_session *sessions)
    1500             : {
    1501             :         struct radius_session *session, *prev;
    1502             : 
    1503          26 :         session = sessions;
    1504         100 :         while (session) {
    1505          48 :                 prev = session;
    1506          48 :                 session = session->next;
    1507          48 :                 radius_server_session_free(data, prev);
    1508             :         }
    1509          26 : }
    1510             : 
    1511             : 
    1512          26 : static void radius_server_free_clients(struct radius_server_data *data,
    1513             :                                        struct radius_client *clients)
    1514             : {
    1515             :         struct radius_client *client, *prev;
    1516             : 
    1517          26 :         client = clients;
    1518          78 :         while (client) {
    1519          26 :                 prev = client;
    1520          26 :                 client = client->next;
    1521             : 
    1522          26 :                 radius_server_free_sessions(data, prev->sessions);
    1523          26 :                 os_free(prev->shared_secret);
    1524          26 :                 os_free(prev);
    1525             :         }
    1526          26 : }
    1527             : 
    1528             : 
    1529             : static struct radius_client *
    1530          26 : radius_server_read_clients(const char *client_file, int ipv6)
    1531             : {
    1532             :         FILE *f;
    1533          26 :         const int buf_size = 1024;
    1534             :         char *buf, *pos;
    1535             :         struct radius_client *clients, *tail, *entry;
    1536          26 :         int line = 0, mask, failed = 0, i;
    1537             :         struct in_addr addr;
    1538             : #ifdef CONFIG_IPV6
    1539             :         struct in6_addr addr6;
    1540             : #endif /* CONFIG_IPV6 */
    1541             :         unsigned int val;
    1542             : 
    1543          26 :         f = fopen(client_file, "r");
    1544          26 :         if (f == NULL) {
    1545           0 :                 RADIUS_ERROR("Could not open client file '%s'", client_file);
    1546           0 :                 return NULL;
    1547             :         }
    1548             : 
    1549          26 :         buf = os_malloc(buf_size);
    1550          26 :         if (buf == NULL) {
    1551           0 :                 fclose(f);
    1552           0 :                 return NULL;
    1553             :         }
    1554             : 
    1555          26 :         clients = tail = NULL;
    1556          78 :         while (fgets(buf, buf_size, f)) {
    1557             :                 /* Configuration file format:
    1558             :                  * 192.168.1.0/24 secret
    1559             :                  * 192.168.1.2 secret
    1560             :                  * fe80::211:22ff:fe33:4455/64 secretipv6
    1561             :                  */
    1562          26 :                 line++;
    1563          26 :                 buf[buf_size - 1] = '\0';
    1564          26 :                 pos = buf;
    1565         462 :                 while (*pos != '\0' && *pos != '\n')
    1566         410 :                         pos++;
    1567          26 :                 if (*pos == '\n')
    1568          26 :                         *pos = '\0';
    1569          26 :                 if (*buf == '\0' || *buf == '#')
    1570           0 :                         continue;
    1571             : 
    1572          26 :                 pos = buf;
    1573         258 :                 while ((*pos >= '0' && *pos <= '9') || *pos == '.' ||
    1574          54 :                        (*pos >= 'a' && *pos <= 'f') || *pos == ':' ||
    1575          26 :                        (*pos >= 'A' && *pos <= 'F')) {
    1576         178 :                         pos++;
    1577             :                 }
    1578             : 
    1579          26 :                 if (*pos == '\0') {
    1580           0 :                         failed = 1;
    1581           0 :                         break;
    1582             :                 }
    1583             : 
    1584          26 :                 if (*pos == '/') {
    1585             :                         char *end;
    1586          25 :                         *pos++ = '\0';
    1587          25 :                         mask = strtol(pos, &end, 10);
    1588          25 :                         if ((pos == end) ||
    1589          25 :                             (mask < 0 || mask > (ipv6 ? 128 : 32))) {
    1590           0 :                                 failed = 1;
    1591           0 :                                 break;
    1592             :                         }
    1593          25 :                         pos = end;
    1594             :                 } else {
    1595           1 :                         mask = ipv6 ? 128 : 32;
    1596           1 :                         *pos++ = '\0';
    1597             :                 }
    1598             : 
    1599          26 :                 if (!ipv6 && inet_aton(buf, &addr) == 0) {
    1600           0 :                         failed = 1;
    1601           0 :                         break;
    1602             :                 }
    1603             : #ifdef CONFIG_IPV6
    1604          26 :                 if (ipv6 && inet_pton(AF_INET6, buf, &addr6) <= 0) {
    1605           0 :                         if (inet_pton(AF_INET, buf, &addr) <= 0) {
    1606           0 :                                 failed = 1;
    1607           0 :                                 break;
    1608             :                         }
    1609             :                         /* Convert IPv4 address to IPv6 */
    1610           0 :                         if (mask <= 32)
    1611           0 :                                 mask += (128 - 32);
    1612           0 :                         os_memset(addr6.s6_addr, 0, 10);
    1613           0 :                         addr6.s6_addr[10] = 0xff;
    1614           0 :                         addr6.s6_addr[11] = 0xff;
    1615           0 :                         os_memcpy(addr6.s6_addr + 12, (char *) &addr.s_addr,
    1616             :                                   4);
    1617             :                 }
    1618             : #endif /* CONFIG_IPV6 */
    1619             : 
    1620          77 :                 while (*pos == ' ' || *pos == '\t') {
    1621          25 :                         pos++;
    1622             :                 }
    1623             : 
    1624          26 :                 if (*pos == '\0') {
    1625           0 :                         failed = 1;
    1626           0 :                         break;
    1627             :                 }
    1628             : 
    1629          26 :                 entry = os_zalloc(sizeof(*entry));
    1630          26 :                 if (entry == NULL) {
    1631           0 :                         failed = 1;
    1632           0 :                         break;
    1633             :                 }
    1634          26 :                 entry->shared_secret = os_strdup(pos);
    1635          26 :                 if (entry->shared_secret == NULL) {
    1636           0 :                         failed = 1;
    1637           0 :                         os_free(entry);
    1638           0 :                         break;
    1639             :                 }
    1640          26 :                 entry->shared_secret_len = os_strlen(entry->shared_secret);
    1641          26 :                 if (!ipv6) {
    1642          25 :                         entry->addr.s_addr = addr.s_addr;
    1643          25 :                         val = 0;
    1644          25 :                         for (i = 0; i < mask; i++)
    1645           0 :                                 val |= 1 << (31 - i);
    1646          25 :                         entry->mask.s_addr = htonl(val);
    1647             :                 }
    1648             : #ifdef CONFIG_IPV6
    1649          26 :                 if (ipv6) {
    1650           1 :                         int offset = mask / 8;
    1651             : 
    1652           1 :                         os_memcpy(entry->addr6.s6_addr, addr6.s6_addr, 16);
    1653           1 :                         os_memset(entry->mask6.s6_addr, 0xff, offset);
    1654           1 :                         val = 0;
    1655           1 :                         for (i = 0; i < (mask % 8); i++)
    1656           0 :                                 val |= 1 << (7 - i);
    1657           1 :                         if (offset < 16)
    1658           0 :                                 entry->mask6.s6_addr[offset] = val;
    1659             :                 }
    1660             : #endif /* CONFIG_IPV6 */
    1661             : 
    1662          26 :                 if (tail == NULL) {
    1663          26 :                         clients = tail = entry;
    1664             :                 } else {
    1665           0 :                         tail->next = entry;
    1666           0 :                         tail = entry;
    1667             :                 }
    1668             :         }
    1669             : 
    1670          26 :         if (failed) {
    1671           0 :                 RADIUS_ERROR("Invalid line %d in '%s'", line, client_file);
    1672           0 :                 radius_server_free_clients(NULL, clients);
    1673           0 :                 clients = NULL;
    1674             :         }
    1675             : 
    1676          26 :         os_free(buf);
    1677          26 :         fclose(f);
    1678             : 
    1679          26 :         return clients;
    1680             : }
    1681             : 
    1682             : 
    1683             : /**
    1684             :  * radius_server_init - Initialize RADIUS server
    1685             :  * @conf: Configuration for the RADIUS server
    1686             :  * Returns: Pointer to private RADIUS server context or %NULL on failure
    1687             :  *
    1688             :  * This initializes a RADIUS server instance and returns a context pointer that
    1689             :  * will be used in other calls to the RADIUS server module. The server can be
    1690             :  * deinitialize by calling radius_server_deinit().
    1691             :  */
    1692             : struct radius_server_data *
    1693          26 : radius_server_init(struct radius_server_conf *conf)
    1694             : {
    1695             :         struct radius_server_data *data;
    1696             : 
    1697             : #ifndef CONFIG_IPV6
    1698             :         if (conf->ipv6) {
    1699             :                 wpa_printf(MSG_ERROR, "RADIUS server compiled without IPv6 support");
    1700             :                 return NULL;
    1701             :         }
    1702             : #endif /* CONFIG_IPV6 */
    1703             : 
    1704          26 :         data = os_zalloc(sizeof(*data));
    1705          26 :         if (data == NULL)
    1706           0 :                 return NULL;
    1707             : 
    1708          26 :         dl_list_init(&data->erp_keys);
    1709          26 :         os_get_reltime(&data->start_time);
    1710          26 :         data->conf_ctx = conf->conf_ctx;
    1711          26 :         data->eap_sim_db_priv = conf->eap_sim_db_priv;
    1712          26 :         data->ssl_ctx = conf->ssl_ctx;
    1713          26 :         data->msg_ctx = conf->msg_ctx;
    1714          26 :         data->ipv6 = conf->ipv6;
    1715          26 :         if (conf->pac_opaque_encr_key) {
    1716          14 :                 data->pac_opaque_encr_key = os_malloc(16);
    1717          14 :                 if (data->pac_opaque_encr_key) {
    1718          14 :                         os_memcpy(data->pac_opaque_encr_key,
    1719             :                                   conf->pac_opaque_encr_key, 16);
    1720             :                 }
    1721             :         }
    1722          26 :         if (conf->eap_fast_a_id) {
    1723          14 :                 data->eap_fast_a_id = os_malloc(conf->eap_fast_a_id_len);
    1724          14 :                 if (data->eap_fast_a_id) {
    1725          14 :                         os_memcpy(data->eap_fast_a_id, conf->eap_fast_a_id,
    1726             :                                   conf->eap_fast_a_id_len);
    1727          14 :                         data->eap_fast_a_id_len = conf->eap_fast_a_id_len;
    1728             :                 }
    1729             :         }
    1730          26 :         if (conf->eap_fast_a_id_info)
    1731          14 :                 data->eap_fast_a_id_info = os_strdup(conf->eap_fast_a_id_info);
    1732          26 :         data->eap_fast_prov = conf->eap_fast_prov;
    1733          26 :         data->pac_key_lifetime = conf->pac_key_lifetime;
    1734          26 :         data->pac_key_refresh_time = conf->pac_key_refresh_time;
    1735          26 :         data->get_eap_user = conf->get_eap_user;
    1736          26 :         data->eap_sim_aka_result_ind = conf->eap_sim_aka_result_ind;
    1737          26 :         data->tnc = conf->tnc;
    1738          26 :         data->wps = conf->wps;
    1739          26 :         data->pwd_group = conf->pwd_group;
    1740          26 :         data->server_id = conf->server_id;
    1741          26 :         if (conf->eap_req_id_text) {
    1742           0 :                 data->eap_req_id_text = os_malloc(conf->eap_req_id_text_len);
    1743           0 :                 if (data->eap_req_id_text) {
    1744           0 :                         os_memcpy(data->eap_req_id_text, conf->eap_req_id_text,
    1745             :                                   conf->eap_req_id_text_len);
    1746           0 :                         data->eap_req_id_text_len = conf->eap_req_id_text_len;
    1747             :                 }
    1748             :         }
    1749          26 :         data->erp = conf->erp;
    1750          26 :         data->erp_domain = conf->erp_domain;
    1751          26 :         data->tls_session_lifetime = conf->tls_session_lifetime;
    1752             : 
    1753          26 :         if (conf->subscr_remediation_url) {
    1754           1 :                 data->subscr_remediation_url =
    1755           1 :                         os_strdup(conf->subscr_remediation_url);
    1756             :         }
    1757          26 :         data->subscr_remediation_method = conf->subscr_remediation_method;
    1758             : 
    1759             : #ifdef CONFIG_SQLITE
    1760          26 :         if (conf->sqlite_file) {
    1761           1 :                 if (sqlite3_open(conf->sqlite_file, &data->db)) {
    1762           0 :                         RADIUS_ERROR("Could not open SQLite file '%s'",
    1763             :                                      conf->sqlite_file);
    1764           0 :                         radius_server_deinit(data);
    1765           0 :                         return NULL;
    1766             :                 }
    1767             :         }
    1768             : #endif /* CONFIG_SQLITE */
    1769             : 
    1770             : #ifdef CONFIG_RADIUS_TEST
    1771             :         if (conf->dump_msk_file)
    1772             :                 data->dump_msk_file = os_strdup(conf->dump_msk_file);
    1773             : #endif /* CONFIG_RADIUS_TEST */
    1774             : 
    1775          26 :         data->clients = radius_server_read_clients(conf->client_file,
    1776             :                                                    conf->ipv6);
    1777          26 :         if (data->clients == NULL) {
    1778           0 :                 wpa_printf(MSG_ERROR, "No RADIUS clients configured");
    1779           0 :                 radius_server_deinit(data);
    1780           0 :                 return NULL;
    1781             :         }
    1782             : 
    1783             : #ifdef CONFIG_IPV6
    1784          26 :         if (conf->ipv6)
    1785           1 :                 data->auth_sock = radius_server_open_socket6(conf->auth_port);
    1786             :         else
    1787             : #endif /* CONFIG_IPV6 */
    1788          25 :         data->auth_sock = radius_server_open_socket(conf->auth_port);
    1789          26 :         if (data->auth_sock < 0) {
    1790           0 :                 wpa_printf(MSG_ERROR, "Failed to open UDP socket for RADIUS authentication server");
    1791           0 :                 radius_server_deinit(data);
    1792           0 :                 return NULL;
    1793             :         }
    1794          26 :         if (eloop_register_read_sock(data->auth_sock,
    1795             :                                      radius_server_receive_auth,
    1796             :                                      data, NULL)) {
    1797           0 :                 radius_server_deinit(data);
    1798           0 :                 return NULL;
    1799             :         }
    1800             : 
    1801          26 :         if (conf->acct_port) {
    1802             : #ifdef CONFIG_IPV6
    1803           7 :                 if (conf->ipv6)
    1804           1 :                         data->acct_sock = radius_server_open_socket6(
    1805             :                                 conf->acct_port);
    1806             :                 else
    1807             : #endif /* CONFIG_IPV6 */
    1808           6 :                 data->acct_sock = radius_server_open_socket(conf->acct_port);
    1809           7 :                 if (data->acct_sock < 0) {
    1810           0 :                         wpa_printf(MSG_ERROR, "Failed to open UDP socket for RADIUS accounting server");
    1811           0 :                         radius_server_deinit(data);
    1812           0 :                         return NULL;
    1813             :                 }
    1814           7 :                 if (eloop_register_read_sock(data->acct_sock,
    1815             :                                              radius_server_receive_acct,
    1816             :                                              data, NULL)) {
    1817           0 :                         radius_server_deinit(data);
    1818           0 :                         return NULL;
    1819             :                 }
    1820             :         } else {
    1821          19 :                 data->acct_sock = -1;
    1822             :         }
    1823             : 
    1824          26 :         return data;
    1825             : }
    1826             : 
    1827             : 
    1828             : /**
    1829             :  * radius_server_erp_flush - Flush all ERP keys
    1830             :  * @data: RADIUS server context from radius_server_init()
    1831             :  */
    1832          27 : void radius_server_erp_flush(struct radius_server_data *data)
    1833             : {
    1834             :         struct eap_server_erp_key *erp;
    1835             : 
    1836          27 :         if (data == NULL)
    1837          28 :                 return;
    1838          66 :         while ((erp = dl_list_first(&data->erp_keys, struct eap_server_erp_key,
    1839             :                                     list)) != NULL) {
    1840          14 :                 dl_list_del(&erp->list);
    1841          14 :                 bin_clear_free(erp, sizeof(*erp));
    1842             :         }
    1843             : }
    1844             : 
    1845             : 
    1846             : /**
    1847             :  * radius_server_deinit - Deinitialize RADIUS server
    1848             :  * @data: RADIUS server context from radius_server_init()
    1849             :  */
    1850        1685 : void radius_server_deinit(struct radius_server_data *data)
    1851             : {
    1852        1685 :         if (data == NULL)
    1853        3344 :                 return;
    1854             : 
    1855          26 :         if (data->auth_sock >= 0) {
    1856          26 :                 eloop_unregister_read_sock(data->auth_sock);
    1857          26 :                 close(data->auth_sock);
    1858             :         }
    1859             : 
    1860          26 :         if (data->acct_sock >= 0) {
    1861           7 :                 eloop_unregister_read_sock(data->acct_sock);
    1862           7 :                 close(data->acct_sock);
    1863             :         }
    1864             : 
    1865          26 :         radius_server_free_clients(data, data->clients);
    1866             : 
    1867          26 :         os_free(data->pac_opaque_encr_key);
    1868          26 :         os_free(data->eap_fast_a_id);
    1869          26 :         os_free(data->eap_fast_a_id_info);
    1870          26 :         os_free(data->eap_req_id_text);
    1871             : #ifdef CONFIG_RADIUS_TEST
    1872             :         os_free(data->dump_msk_file);
    1873             : #endif /* CONFIG_RADIUS_TEST */
    1874          26 :         os_free(data->subscr_remediation_url);
    1875             : 
    1876             : #ifdef CONFIG_SQLITE
    1877          26 :         if (data->db)
    1878           1 :                 sqlite3_close(data->db);
    1879             : #endif /* CONFIG_SQLITE */
    1880             : 
    1881          26 :         radius_server_erp_flush(data);
    1882             : 
    1883          26 :         os_free(data);
    1884             : }
    1885             : 
    1886             : 
    1887             : /**
    1888             :  * radius_server_get_mib - Get RADIUS server MIB information
    1889             :  * @data: RADIUS server context from radius_server_init()
    1890             :  * @buf: Buffer for returning the MIB data in text format
    1891             :  * @buflen: buf length in octets
    1892             :  * Returns: Number of octets written into buf
    1893             :  */
    1894          10 : int radius_server_get_mib(struct radius_server_data *data, char *buf,
    1895             :                           size_t buflen)
    1896             : {
    1897             :         int ret, uptime;
    1898             :         unsigned int idx;
    1899             :         char *end, *pos;
    1900             :         struct os_reltime now;
    1901             :         struct radius_client *cli;
    1902             : 
    1903             :         /* RFC 2619 - RADIUS Authentication Server MIB */
    1904             : 
    1905          10 :         if (data == NULL || buflen == 0)
    1906           0 :                 return 0;
    1907             : 
    1908          10 :         pos = buf;
    1909          10 :         end = buf + buflen;
    1910             : 
    1911          10 :         os_get_reltime(&now);
    1912          20 :         uptime = (now.sec - data->start_time.sec) * 100 +
    1913          10 :                 ((now.usec - data->start_time.usec) / 10000) % 100;
    1914          10 :         ret = os_snprintf(pos, end - pos,
    1915             :                           "RADIUS-AUTH-SERVER-MIB\n"
    1916             :                           "radiusAuthServIdent=hostapd\n"
    1917             :                           "radiusAuthServUpTime=%d\n"
    1918             :                           "radiusAuthServResetTime=0\n"
    1919             :                           "radiusAuthServConfigReset=4\n",
    1920             :                           uptime);
    1921          10 :         if (os_snprintf_error(end - pos, ret)) {
    1922           0 :                 *pos = '\0';
    1923           0 :                 return pos - buf;
    1924             :         }
    1925          10 :         pos += ret;
    1926             : 
    1927          10 :         ret = os_snprintf(pos, end - pos,
    1928             :                           "radiusAuthServTotalAccessRequests=%u\n"
    1929             :                           "radiusAuthServTotalInvalidRequests=%u\n"
    1930             :                           "radiusAuthServTotalDupAccessRequests=%u\n"
    1931             :                           "radiusAuthServTotalAccessAccepts=%u\n"
    1932             :                           "radiusAuthServTotalAccessRejects=%u\n"
    1933             :                           "radiusAuthServTotalAccessChallenges=%u\n"
    1934             :                           "radiusAuthServTotalMalformedAccessRequests=%u\n"
    1935             :                           "radiusAuthServTotalBadAuthenticators=%u\n"
    1936             :                           "radiusAuthServTotalPacketsDropped=%u\n"
    1937             :                           "radiusAuthServTotalUnknownTypes=%u\n"
    1938             :                           "radiusAccServTotalRequests=%u\n"
    1939             :                           "radiusAccServTotalInvalidRequests=%u\n"
    1940             :                           "radiusAccServTotalResponses=%u\n"
    1941             :                           "radiusAccServTotalMalformedRequests=%u\n"
    1942             :                           "radiusAccServTotalBadAuthenticators=%u\n"
    1943             :                           "radiusAccServTotalUnknownTypes=%u\n",
    1944             :                           data->counters.access_requests,
    1945             :                           data->counters.invalid_requests,
    1946             :                           data->counters.dup_access_requests,
    1947             :                           data->counters.access_accepts,
    1948             :                           data->counters.access_rejects,
    1949             :                           data->counters.access_challenges,
    1950             :                           data->counters.malformed_access_requests,
    1951             :                           data->counters.bad_authenticators,
    1952             :                           data->counters.packets_dropped,
    1953             :                           data->counters.unknown_types,
    1954             :                           data->counters.acct_requests,
    1955             :                           data->counters.invalid_acct_requests,
    1956             :                           data->counters.acct_responses,
    1957             :                           data->counters.malformed_acct_requests,
    1958             :                           data->counters.acct_bad_authenticators,
    1959             :                           data->counters.unknown_acct_types);
    1960          10 :         if (os_snprintf_error(end - pos, ret)) {
    1961           0 :                 *pos = '\0';
    1962           0 :                 return pos - buf;
    1963             :         }
    1964          10 :         pos += ret;
    1965             : 
    1966          20 :         for (cli = data->clients, idx = 0; cli; cli = cli->next, idx++) {
    1967             :                 char abuf[50], mbuf[50];
    1968             : #ifdef CONFIG_IPV6
    1969          10 :                 if (data->ipv6) {
    1970           0 :                         if (inet_ntop(AF_INET6, &cli->addr6, abuf,
    1971             :                                       sizeof(abuf)) == NULL)
    1972           0 :                                 abuf[0] = '\0';
    1973           0 :                         if (inet_ntop(AF_INET6, &cli->mask6, mbuf,
    1974             :                                       sizeof(mbuf)) == NULL)
    1975           0 :                                 mbuf[0] = '\0';
    1976             :                 }
    1977             : #endif /* CONFIG_IPV6 */
    1978          10 :                 if (!data->ipv6) {
    1979          10 :                         os_strlcpy(abuf, inet_ntoa(cli->addr), sizeof(abuf));
    1980          10 :                         os_strlcpy(mbuf, inet_ntoa(cli->mask), sizeof(mbuf));
    1981             :                 }
    1982             : 
    1983          10 :                 ret = os_snprintf(pos, end - pos,
    1984             :                                   "radiusAuthClientIndex=%u\n"
    1985             :                                   "radiusAuthClientAddress=%s/%s\n"
    1986             :                                   "radiusAuthServAccessRequests=%u\n"
    1987             :                                   "radiusAuthServDupAccessRequests=%u\n"
    1988             :                                   "radiusAuthServAccessAccepts=%u\n"
    1989             :                                   "radiusAuthServAccessRejects=%u\n"
    1990             :                                   "radiusAuthServAccessChallenges=%u\n"
    1991             :                                   "radiusAuthServMalformedAccessRequests=%u\n"
    1992             :                                   "radiusAuthServBadAuthenticators=%u\n"
    1993             :                                   "radiusAuthServPacketsDropped=%u\n"
    1994             :                                   "radiusAuthServUnknownTypes=%u\n"
    1995             :                                   "radiusAccServTotalRequests=%u\n"
    1996             :                                   "radiusAccServTotalInvalidRequests=%u\n"
    1997             :                                   "radiusAccServTotalResponses=%u\n"
    1998             :                                   "radiusAccServTotalMalformedRequests=%u\n"
    1999             :                                   "radiusAccServTotalBadAuthenticators=%u\n"
    2000             :                                   "radiusAccServTotalUnknownTypes=%u\n",
    2001             :                                   idx,
    2002             :                                   abuf, mbuf,
    2003             :                                   cli->counters.access_requests,
    2004             :                                   cli->counters.dup_access_requests,
    2005             :                                   cli->counters.access_accepts,
    2006             :                                   cli->counters.access_rejects,
    2007             :                                   cli->counters.access_challenges,
    2008             :                                   cli->counters.malformed_access_requests,
    2009             :                                   cli->counters.bad_authenticators,
    2010             :                                   cli->counters.packets_dropped,
    2011             :                                   cli->counters.unknown_types,
    2012             :                                   cli->counters.acct_requests,
    2013             :                                   cli->counters.invalid_acct_requests,
    2014             :                                   cli->counters.acct_responses,
    2015             :                                   cli->counters.malformed_acct_requests,
    2016             :                                   cli->counters.acct_bad_authenticators,
    2017             :                                   cli->counters.unknown_acct_types);
    2018          10 :                 if (os_snprintf_error(end - pos, ret)) {
    2019           0 :                         *pos = '\0';
    2020           0 :                         return pos - buf;
    2021             :                 }
    2022          10 :                 pos += ret;
    2023             :         }
    2024             : 
    2025          10 :         return pos - buf;
    2026             : }
    2027             : 
    2028             : 
    2029        1116 : static int radius_server_get_eap_user(void *ctx, const u8 *identity,
    2030             :                                       size_t identity_len, int phase2,
    2031             :                                       struct eap_user *user)
    2032             : {
    2033        1116 :         struct radius_session *sess = ctx;
    2034        1116 :         struct radius_server_data *data = sess->server;
    2035             :         int ret;
    2036             : 
    2037        1116 :         ret = data->get_eap_user(data->conf_ctx, identity, identity_len,
    2038             :                                  phase2, user);
    2039        1116 :         if (ret == 0 && user) {
    2040        1115 :                 sess->accept_attr = user->accept_attr;
    2041        1115 :                 sess->remediation = user->remediation;
    2042        1115 :                 sess->macacl = user->macacl;
    2043             :         }
    2044             : 
    2045        1116 :         if (ret) {
    2046           1 :                 RADIUS_DEBUG("%s: User-Name not found from user database",
    2047             :                              __func__);
    2048             :         }
    2049             : 
    2050        1116 :         return ret;
    2051             : }
    2052             : 
    2053             : 
    2054          47 : static const char * radius_server_get_eap_req_id_text(void *ctx, size_t *len)
    2055             : {
    2056          47 :         struct radius_session *sess = ctx;
    2057          47 :         struct radius_server_data *data = sess->server;
    2058          47 :         *len = data->eap_req_id_text_len;
    2059          47 :         return data->eap_req_id_text;
    2060             : }
    2061             : 
    2062             : 
    2063        1907 : static void radius_server_log_msg(void *ctx, const char *msg)
    2064             : {
    2065        1907 :         struct radius_session *sess = ctx;
    2066        1907 :         srv_log(sess, "EAP: %s", msg);
    2067        1907 : }
    2068             : 
    2069             : 
    2070             : #ifdef CONFIG_ERP
    2071             : 
    2072          14 : static const char * radius_server_get_erp_domain(void *ctx)
    2073             : {
    2074          14 :         struct radius_session *sess = ctx;
    2075          14 :         struct radius_server_data *data = sess->server;
    2076             : 
    2077          14 :         return data->erp_domain;
    2078             : }
    2079             : 
    2080             : 
    2081             : static struct eap_server_erp_key *
    2082          16 : radius_server_erp_get_key(void *ctx, const char *keyname)
    2083             : {
    2084          16 :         struct radius_session *sess = ctx;
    2085          16 :         struct radius_server_data *data = sess->server;
    2086             :         struct eap_server_erp_key *erp;
    2087             : 
    2088          16 :         dl_list_for_each(erp, &data->erp_keys, struct eap_server_erp_key,
    2089             :                          list) {
    2090          16 :                 if (os_strcmp(erp->keyname_nai, keyname) == 0)
    2091          16 :                         return erp;
    2092             :         }
    2093             : 
    2094           0 :         return NULL;
    2095             : }
    2096             : 
    2097             : 
    2098          14 : static int radius_server_erp_add_key(void *ctx, struct eap_server_erp_key *erp)
    2099             : {
    2100          14 :         struct radius_session *sess = ctx;
    2101          14 :         struct radius_server_data *data = sess->server;
    2102             : 
    2103          14 :         dl_list_add(&data->erp_keys, &erp->list);
    2104          14 :         return 0;
    2105             : }
    2106             : 
    2107             : #endif /* CONFIG_ERP */
    2108             : 
    2109             : 
    2110             : static const struct eapol_callbacks radius_server_eapol_cb =
    2111             : {
    2112             :         .get_eap_user = radius_server_get_eap_user,
    2113             :         .get_eap_req_id_text = radius_server_get_eap_req_id_text,
    2114             :         .log_msg = radius_server_log_msg,
    2115             : #ifdef CONFIG_ERP
    2116             :         .get_erp_send_reauth_start = NULL,
    2117             :         .get_erp_domain = radius_server_get_erp_domain,
    2118             :         .erp_get_key = radius_server_erp_get_key,
    2119             :         .erp_add_key = radius_server_erp_add_key,
    2120             : #endif /* CONFIG_ERP */
    2121             : };
    2122             : 
    2123             : 
    2124             : /**
    2125             :  * radius_server_eap_pending_cb - Pending EAP data notification
    2126             :  * @data: RADIUS server context from radius_server_init()
    2127             :  * @ctx: Pending EAP context pointer
    2128             :  *
    2129             :  * This function is used to notify EAP server module that a pending operation
    2130             :  * has been completed and processing of the EAP session can proceed.
    2131             :  */
    2132          89 : void radius_server_eap_pending_cb(struct radius_server_data *data, void *ctx)
    2133             : {
    2134             :         struct radius_client *cli;
    2135          89 :         struct radius_session *s, *sess = NULL;
    2136             :         struct radius_msg *msg;
    2137             : 
    2138          89 :         if (data == NULL)
    2139           0 :                 return;
    2140             : 
    2141          89 :         for (cli = data->clients; cli; cli = cli->next) {
    2142          89 :                 for (s = cli->sessions; s; s = s->next) {
    2143          89 :                         if (s->eap == ctx && s->last_msg) {
    2144          89 :                                 sess = s;
    2145          89 :                                 break;
    2146             :                         }
    2147             :                 }
    2148          89 :                 if (sess)
    2149          89 :                         break;
    2150             :         }
    2151             : 
    2152          89 :         if (sess == NULL) {
    2153           0 :                 RADIUS_DEBUG("No session matched callback ctx");
    2154           0 :                 return;
    2155             :         }
    2156             : 
    2157          89 :         msg = sess->last_msg;
    2158          89 :         sess->last_msg = NULL;
    2159          89 :         eap_sm_pending_cb(sess->eap);
    2160         267 :         if (radius_server_request(data, msg,
    2161          89 :                                   (struct sockaddr *) &sess->last_from,
    2162             :                                   sess->last_fromlen, cli,
    2163          89 :                                   sess->last_from_addr,
    2164             :                                   sess->last_from_port, sess) == -2)
    2165           0 :                 return; /* msg was stored with the session */
    2166             : 
    2167          89 :         radius_msg_free(msg);
    2168             : }

Generated by: LCOV version 1.10