Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 1 | /* |
| 2 | * hostapd / RADIUS Accounting |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 3 | * Copyright (c) 2002-2009, 2012-2015, Jouni Malinen <j@w1.fi> |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 4 | * |
Dmitry Shmidt | c5ec7f5 | 2012-03-06 16:33:24 -0800 | [diff] [blame] | 5 | * This software may be distributed under the terms of the BSD license. |
| 6 | * See README for more details. |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include "utils/includes.h" |
| 10 | |
| 11 | #include "utils/common.h" |
| 12 | #include "utils/eloop.h" |
Dmitry Shmidt | fb45fd5 | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 13 | #include "eapol_auth/eapol_auth_sm.h" |
| 14 | #include "eapol_auth/eapol_auth_sm_i.h" |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 15 | #include "radius/radius.h" |
| 16 | #include "radius/radius_client.h" |
| 17 | #include "hostapd.h" |
| 18 | #include "ieee802_1x.h" |
| 19 | #include "ap_config.h" |
| 20 | #include "sta_info.h" |
| 21 | #include "ap_drv_ops.h" |
| 22 | #include "accounting.h" |
| 23 | |
| 24 | |
| 25 | /* Default interval in seconds for polling TX/RX octets from the driver if |
| 26 | * STA is not using interim accounting. This detects wrap arounds for |
| 27 | * input/output octets and updates Acct-{Input,Output}-Gigawords. */ |
| 28 | #define ACCT_DEFAULT_UPDATE_INTERVAL 300 |
| 29 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 30 | static void accounting_sta_interim(struct hostapd_data *hapd, |
| 31 | struct sta_info *sta); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 32 | |
| 33 | |
| 34 | static struct radius_msg * accounting_msg(struct hostapd_data *hapd, |
| 35 | struct sta_info *sta, |
| 36 | int status_type) |
| 37 | { |
| 38 | struct radius_msg *msg; |
| 39 | char buf[128]; |
| 40 | u8 *val; |
| 41 | size_t len; |
| 42 | int i; |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 43 | struct wpabuf *b; |
Dmitry Shmidt | b97e428 | 2016-02-08 10:16:07 -0800 | [diff] [blame] | 44 | struct os_time now; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 45 | |
| 46 | msg = radius_msg_new(RADIUS_CODE_ACCOUNTING_REQUEST, |
| 47 | radius_client_get_id(hapd->radius)); |
| 48 | if (msg == NULL) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 49 | wpa_printf(MSG_INFO, "Could not create new RADIUS packet"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 50 | return NULL; |
| 51 | } |
| 52 | |
Dmitry Shmidt | b97e428 | 2016-02-08 10:16:07 -0800 | [diff] [blame] | 53 | if (radius_msg_make_authenticator(msg) < 0) { |
| 54 | wpa_printf(MSG_INFO, "Could not make Request Authenticator"); |
| 55 | goto fail; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_ACCT_STATUS_TYPE, |
| 59 | status_type)) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 60 | wpa_printf(MSG_INFO, "Could not add Acct-Status-Type"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 61 | goto fail; |
| 62 | } |
| 63 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 64 | if (sta) { |
Dmitry Shmidt | b97e428 | 2016-02-08 10:16:07 -0800 | [diff] [blame] | 65 | if (!hostapd_config_get_radius_attr( |
| 66 | hapd->conf->radius_acct_req_attr, |
| 67 | RADIUS_ATTR_ACCT_AUTHENTIC) && |
| 68 | !radius_msg_add_attr_int32(msg, RADIUS_ATTR_ACCT_AUTHENTIC, |
| 69 | hapd->conf->ieee802_1x ? |
| 70 | RADIUS_ACCT_AUTHENTIC_RADIUS : |
| 71 | RADIUS_ACCT_AUTHENTIC_LOCAL)) { |
| 72 | wpa_printf(MSG_INFO, "Could not add Acct-Authentic"); |
| 73 | goto fail; |
| 74 | } |
| 75 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 76 | /* Use 802.1X identity if available */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 77 | val = ieee802_1x_get_identity(sta->eapol_sm, &len); |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 78 | |
| 79 | /* Use RADIUS ACL identity if 802.1X provides no identity */ |
| 80 | if (!val && sta->identity) { |
| 81 | val = (u8 *) sta->identity; |
| 82 | len = os_strlen(sta->identity); |
| 83 | } |
| 84 | |
| 85 | /* Use STA MAC if neither 802.1X nor RADIUS ACL provided |
| 86 | * identity */ |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 87 | if (!val) { |
| 88 | os_snprintf(buf, sizeof(buf), RADIUS_ADDR_FORMAT, |
| 89 | MAC2STR(sta->addr)); |
| 90 | val = (u8 *) buf; |
| 91 | len = os_strlen(buf); |
| 92 | } |
| 93 | |
| 94 | if (!radius_msg_add_attr(msg, RADIUS_ATTR_USER_NAME, val, |
| 95 | len)) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 96 | wpa_printf(MSG_INFO, "Could not add User-Name"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 97 | goto fail; |
| 98 | } |
| 99 | } |
| 100 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 101 | if (add_common_radius_attr(hapd, hapd->conf->radius_acct_req_attr, sta, |
| 102 | msg) < 0) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 103 | goto fail; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 104 | |
| 105 | if (sta) { |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 106 | for (i = 0; ; i++) { |
| 107 | val = ieee802_1x_get_radius_class(sta->eapol_sm, &len, |
| 108 | i); |
| 109 | if (val == NULL) |
| 110 | break; |
| 111 | |
| 112 | if (!radius_msg_add_attr(msg, RADIUS_ATTR_CLASS, |
| 113 | val, len)) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 114 | wpa_printf(MSG_INFO, "Could not add Class"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 115 | goto fail; |
| 116 | } |
| 117 | } |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 118 | |
| 119 | b = ieee802_1x_get_radius_cui(sta->eapol_sm); |
| 120 | if (b && |
| 121 | !radius_msg_add_attr(msg, |
| 122 | RADIUS_ATTR_CHARGEABLE_USER_IDENTITY, |
| 123 | wpabuf_head(b), wpabuf_len(b))) { |
| 124 | wpa_printf(MSG_ERROR, "Could not add CUI"); |
| 125 | goto fail; |
| 126 | } |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 127 | |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 128 | if (!b && sta->radius_cui && |
| 129 | !radius_msg_add_attr(msg, |
| 130 | RADIUS_ATTR_CHARGEABLE_USER_IDENTITY, |
| 131 | (u8 *) sta->radius_cui, |
| 132 | os_strlen(sta->radius_cui))) { |
| 133 | wpa_printf(MSG_ERROR, "Could not add CUI from ACL"); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 134 | goto fail; |
| 135 | } |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 136 | |
| 137 | if (sta->ipaddr && |
| 138 | !radius_msg_add_attr_int32(msg, |
| 139 | RADIUS_ATTR_FRAMED_IP_ADDRESS, |
| 140 | be_to_host32(sta->ipaddr))) { |
| 141 | wpa_printf(MSG_ERROR, |
| 142 | "Could not add Framed-IP-Address"); |
| 143 | goto fail; |
| 144 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 145 | } |
| 146 | |
Dmitry Shmidt | b97e428 | 2016-02-08 10:16:07 -0800 | [diff] [blame] | 147 | os_get_time(&now); |
| 148 | if (now.sec > 1000000000 && |
| 149 | !radius_msg_add_attr_int32(msg, RADIUS_ATTR_EVENT_TIMESTAMP, |
| 150 | now.sec)) { |
| 151 | wpa_printf(MSG_INFO, "Could not add Event-Timestamp"); |
| 152 | goto fail; |
| 153 | } |
| 154 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 155 | return msg; |
| 156 | |
| 157 | fail: |
| 158 | radius_msg_free(msg); |
| 159 | return NULL; |
| 160 | } |
| 161 | |
| 162 | |
| 163 | static int accounting_sta_update_stats(struct hostapd_data *hapd, |
| 164 | struct sta_info *sta, |
| 165 | struct hostap_sta_driver_data *data) |
| 166 | { |
| 167 | if (hostapd_drv_read_sta_data(hapd, data, sta->addr)) |
| 168 | return -1; |
| 169 | |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame^] | 170 | if (!data->bytes_64bit) { |
| 171 | /* Extend 32-bit counters from the driver to 64-bit counters */ |
| 172 | if (sta->last_rx_bytes_lo > data->rx_bytes) |
| 173 | sta->last_rx_bytes_hi++; |
| 174 | sta->last_rx_bytes_lo = data->rx_bytes; |
| 175 | |
| 176 | if (sta->last_tx_bytes_lo > data->tx_bytes) |
| 177 | sta->last_tx_bytes_hi++; |
| 178 | sta->last_tx_bytes_lo = data->tx_bytes; |
| 179 | } |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 180 | |
| 181 | hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS, |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame^] | 182 | HOSTAPD_LEVEL_DEBUG, |
| 183 | "updated TX/RX stats: rx_bytes=%llu [%u:%u] tx_bytes=%llu [%u:%u] bytes_64bit=%d", |
| 184 | data->rx_bytes, sta->last_rx_bytes_hi, |
| 185 | sta->last_rx_bytes_lo, |
| 186 | data->tx_bytes, sta->last_tx_bytes_hi, |
| 187 | sta->last_tx_bytes_lo, |
| 188 | data->bytes_64bit); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 189 | |
| 190 | return 0; |
| 191 | } |
| 192 | |
| 193 | |
| 194 | static void accounting_interim_update(void *eloop_ctx, void *timeout_ctx) |
| 195 | { |
| 196 | struct hostapd_data *hapd = eloop_ctx; |
| 197 | struct sta_info *sta = timeout_ctx; |
| 198 | int interval; |
| 199 | |
| 200 | if (sta->acct_interim_interval) { |
| 201 | accounting_sta_interim(hapd, sta); |
| 202 | interval = sta->acct_interim_interval; |
| 203 | } else { |
| 204 | struct hostap_sta_driver_data data; |
| 205 | accounting_sta_update_stats(hapd, sta, &data); |
| 206 | interval = ACCT_DEFAULT_UPDATE_INTERVAL; |
| 207 | } |
| 208 | |
| 209 | eloop_register_timeout(interval, 0, accounting_interim_update, |
| 210 | hapd, sta); |
| 211 | } |
| 212 | |
| 213 | |
| 214 | /** |
| 215 | * accounting_sta_start - Start STA accounting |
| 216 | * @hapd: hostapd BSS data |
| 217 | * @sta: The station |
| 218 | */ |
| 219 | void accounting_sta_start(struct hostapd_data *hapd, struct sta_info *sta) |
| 220 | { |
| 221 | struct radius_msg *msg; |
| 222 | int interval; |
| 223 | |
| 224 | if (sta->acct_session_started) |
| 225 | return; |
| 226 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 227 | hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS, |
| 228 | HOSTAPD_LEVEL_INFO, |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame^] | 229 | "starting accounting session %016llX", |
| 230 | (unsigned long long) sta->acct_session_id); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 231 | |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 232 | os_get_reltime(&sta->acct_session_start); |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame^] | 233 | sta->last_rx_bytes_hi = 0; |
| 234 | sta->last_rx_bytes_lo = 0; |
| 235 | sta->last_tx_bytes_hi = 0; |
| 236 | sta->last_tx_bytes_lo = 0; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 237 | hostapd_drv_sta_clear_stats(hapd, sta->addr); |
| 238 | |
| 239 | if (!hapd->conf->radius->acct_server) |
| 240 | return; |
| 241 | |
| 242 | if (sta->acct_interim_interval) |
| 243 | interval = sta->acct_interim_interval; |
| 244 | else |
| 245 | interval = ACCT_DEFAULT_UPDATE_INTERVAL; |
| 246 | eloop_register_timeout(interval, 0, accounting_interim_update, |
| 247 | hapd, sta); |
| 248 | |
| 249 | msg = accounting_msg(hapd, sta, RADIUS_ACCT_STATUS_TYPE_START); |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 250 | if (msg && |
| 251 | radius_client_send(hapd->radius, msg, RADIUS_ACCT, sta->addr) < 0) |
| 252 | radius_msg_free(msg); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 253 | |
| 254 | sta->acct_session_started = 1; |
| 255 | } |
| 256 | |
| 257 | |
| 258 | static void accounting_sta_report(struct hostapd_data *hapd, |
| 259 | struct sta_info *sta, int stop) |
| 260 | { |
| 261 | struct radius_msg *msg; |
| 262 | int cause = sta->acct_terminate_cause; |
| 263 | struct hostap_sta_driver_data data; |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 264 | struct os_reltime now_r, diff; |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame^] | 265 | u64 bytes; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 266 | |
| 267 | if (!hapd->conf->radius->acct_server) |
| 268 | return; |
| 269 | |
| 270 | msg = accounting_msg(hapd, sta, |
| 271 | stop ? RADIUS_ACCT_STATUS_TYPE_STOP : |
| 272 | RADIUS_ACCT_STATUS_TYPE_INTERIM_UPDATE); |
| 273 | if (!msg) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 274 | wpa_printf(MSG_INFO, "Could not create RADIUS Accounting message"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 275 | return; |
| 276 | } |
| 277 | |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 278 | os_get_reltime(&now_r); |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 279 | os_reltime_sub(&now_r, &sta->acct_session_start, &diff); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 280 | if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_ACCT_SESSION_TIME, |
Dmitry Shmidt | fb79edc | 2014-01-10 10:45:54 -0800 | [diff] [blame] | 281 | diff.sec)) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 282 | wpa_printf(MSG_INFO, "Could not add Acct-Session-Time"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 283 | goto fail; |
| 284 | } |
| 285 | |
| 286 | if (accounting_sta_update_stats(hapd, sta, &data) == 0) { |
| 287 | if (!radius_msg_add_attr_int32(msg, |
| 288 | RADIUS_ATTR_ACCT_INPUT_PACKETS, |
| 289 | data.rx_packets)) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 290 | wpa_printf(MSG_INFO, "Could not add Acct-Input-Packets"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 291 | goto fail; |
| 292 | } |
| 293 | if (!radius_msg_add_attr_int32(msg, |
| 294 | RADIUS_ATTR_ACCT_OUTPUT_PACKETS, |
| 295 | data.tx_packets)) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 296 | wpa_printf(MSG_INFO, "Could not add Acct-Output-Packets"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 297 | goto fail; |
| 298 | } |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame^] | 299 | if (data.bytes_64bit) |
| 300 | bytes = data.rx_bytes; |
| 301 | else |
| 302 | bytes = ((u64) sta->last_rx_bytes_hi << 32) | |
| 303 | sta->last_rx_bytes_lo; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 304 | if (!radius_msg_add_attr_int32(msg, |
| 305 | RADIUS_ATTR_ACCT_INPUT_OCTETS, |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame^] | 306 | (u32) bytes)) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 307 | wpa_printf(MSG_INFO, "Could not add Acct-Input-Octets"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 308 | goto fail; |
| 309 | } |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame^] | 310 | if (!radius_msg_add_attr_int32(msg, |
| 311 | RADIUS_ATTR_ACCT_INPUT_GIGAWORDS, |
| 312 | (u32) (bytes >> 32))) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 313 | wpa_printf(MSG_INFO, "Could not add Acct-Input-Gigawords"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 314 | goto fail; |
| 315 | } |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame^] | 316 | if (data.bytes_64bit) |
| 317 | bytes = data.tx_bytes; |
| 318 | else |
| 319 | bytes = ((u64) sta->last_tx_bytes_hi << 32) | |
| 320 | sta->last_tx_bytes_lo; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 321 | if (!radius_msg_add_attr_int32(msg, |
| 322 | RADIUS_ATTR_ACCT_OUTPUT_OCTETS, |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame^] | 323 | (u32) bytes)) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 324 | wpa_printf(MSG_INFO, "Could not add Acct-Output-Octets"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 325 | goto fail; |
| 326 | } |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame^] | 327 | if (!radius_msg_add_attr_int32(msg, |
| 328 | RADIUS_ATTR_ACCT_OUTPUT_GIGAWORDS, |
| 329 | (u32) (bytes >> 32))) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 330 | wpa_printf(MSG_INFO, "Could not add Acct-Output-Gigawords"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 331 | goto fail; |
| 332 | } |
| 333 | } |
| 334 | |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 335 | if (eloop_terminated()) |
| 336 | cause = RADIUS_ACCT_TERMINATE_CAUSE_ADMIN_REBOOT; |
| 337 | |
| 338 | if (stop && cause && |
| 339 | !radius_msg_add_attr_int32(msg, RADIUS_ATTR_ACCT_TERMINATE_CAUSE, |
| 340 | cause)) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 341 | wpa_printf(MSG_INFO, "Could not add Acct-Terminate-Cause"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 342 | goto fail; |
| 343 | } |
| 344 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 345 | if (radius_client_send(hapd->radius, msg, |
| 346 | stop ? RADIUS_ACCT : RADIUS_ACCT_INTERIM, |
| 347 | sta->addr) < 0) |
| 348 | goto fail; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 349 | return; |
| 350 | |
| 351 | fail: |
| 352 | radius_msg_free(msg); |
| 353 | } |
| 354 | |
| 355 | |
| 356 | /** |
| 357 | * accounting_sta_interim - Send a interim STA accounting report |
| 358 | * @hapd: hostapd BSS data |
| 359 | * @sta: The station |
| 360 | */ |
Dmitry Shmidt | 61d9df3 | 2012-08-29 16:22:06 -0700 | [diff] [blame] | 361 | static void accounting_sta_interim(struct hostapd_data *hapd, |
| 362 | struct sta_info *sta) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 363 | { |
| 364 | if (sta->acct_session_started) |
| 365 | accounting_sta_report(hapd, sta, 0); |
| 366 | } |
| 367 | |
| 368 | |
| 369 | /** |
| 370 | * accounting_sta_stop - Stop STA accounting |
| 371 | * @hapd: hostapd BSS data |
| 372 | * @sta: The station |
| 373 | */ |
| 374 | void accounting_sta_stop(struct hostapd_data *hapd, struct sta_info *sta) |
| 375 | { |
| 376 | if (sta->acct_session_started) { |
| 377 | accounting_sta_report(hapd, sta, 1); |
| 378 | eloop_cancel_timeout(accounting_interim_update, hapd, sta); |
| 379 | hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS, |
| 380 | HOSTAPD_LEVEL_INFO, |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame^] | 381 | "stopped accounting session %016llX", |
| 382 | (unsigned long long) sta->acct_session_id); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 383 | sta->acct_session_started = 0; |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | |
Dmitry Shmidt | b97e428 | 2016-02-08 10:16:07 -0800 | [diff] [blame] | 388 | int accounting_sta_get_id(struct hostapd_data *hapd, struct sta_info *sta) |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 389 | { |
Dmitry Shmidt | b97e428 | 2016-02-08 10:16:07 -0800 | [diff] [blame] | 390 | return radius_gen_session_id((u8 *) &sta->acct_session_id, |
| 391 | sizeof(sta->acct_session_id)); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 392 | } |
| 393 | |
| 394 | |
| 395 | /** |
| 396 | * accounting_receive - Process the RADIUS frames from Accounting Server |
| 397 | * @msg: RADIUS response message |
| 398 | * @req: RADIUS request message |
| 399 | * @shared_secret: RADIUS shared secret |
| 400 | * @shared_secret_len: Length of shared_secret in octets |
| 401 | * @data: Context data (struct hostapd_data *) |
| 402 | * Returns: Processing status |
| 403 | */ |
| 404 | static RadiusRxResult |
| 405 | accounting_receive(struct radius_msg *msg, struct radius_msg *req, |
| 406 | const u8 *shared_secret, size_t shared_secret_len, |
| 407 | void *data) |
| 408 | { |
| 409 | if (radius_msg_get_hdr(msg)->code != RADIUS_CODE_ACCOUNTING_RESPONSE) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 410 | wpa_printf(MSG_INFO, "Unknown RADIUS message code"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 411 | return RADIUS_RX_UNKNOWN; |
| 412 | } |
| 413 | |
| 414 | if (radius_msg_verify(msg, shared_secret, shared_secret_len, req, 0)) { |
Dmitry Shmidt | cce0666 | 2013-11-04 18:44:24 -0800 | [diff] [blame] | 415 | wpa_printf(MSG_INFO, "Incoming RADIUS packet did not have correct Authenticator - dropped"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 416 | return RADIUS_RX_INVALID_AUTHENTICATOR; |
| 417 | } |
| 418 | |
| 419 | return RADIUS_RX_PROCESSED; |
| 420 | } |
| 421 | |
| 422 | |
| 423 | static void accounting_report_state(struct hostapd_data *hapd, int on) |
| 424 | { |
| 425 | struct radius_msg *msg; |
| 426 | |
| 427 | if (!hapd->conf->radius->acct_server || hapd->radius == NULL) |
| 428 | return; |
| 429 | |
| 430 | /* Inform RADIUS server that accounting will start/stop so that the |
| 431 | * server can close old accounting sessions. */ |
| 432 | msg = accounting_msg(hapd, NULL, |
| 433 | on ? RADIUS_ACCT_STATUS_TYPE_ACCOUNTING_ON : |
| 434 | RADIUS_ACCT_STATUS_TYPE_ACCOUNTING_OFF); |
| 435 | if (!msg) |
| 436 | return; |
| 437 | |
Dmitry Shmidt | b97e428 | 2016-02-08 10:16:07 -0800 | [diff] [blame] | 438 | if (hapd->acct_session_id) { |
| 439 | char buf[20]; |
| 440 | |
Dmitry Shmidt | 57c2d39 | 2016-02-23 13:40:19 -0800 | [diff] [blame^] | 441 | os_snprintf(buf, sizeof(buf), "%016llX", |
| 442 | (unsigned long long) hapd->acct_session_id); |
Dmitry Shmidt | b97e428 | 2016-02-08 10:16:07 -0800 | [diff] [blame] | 443 | if (!radius_msg_add_attr(msg, RADIUS_ATTR_ACCT_SESSION_ID, |
| 444 | (u8 *) buf, os_strlen(buf))) |
| 445 | wpa_printf(MSG_ERROR, "Could not add Acct-Session-Id"); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 446 | } |
| 447 | |
Dmitry Shmidt | 0494959 | 2012-07-19 12:16:46 -0700 | [diff] [blame] | 448 | if (radius_client_send(hapd->radius, msg, RADIUS_ACCT, NULL) < 0) |
| 449 | radius_msg_free(msg); |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 450 | } |
| 451 | |
| 452 | |
| 453 | /** |
| 454 | * accounting_init: Initialize accounting |
| 455 | * @hapd: hostapd BSS data |
| 456 | * Returns: 0 on success, -1 on failure |
| 457 | */ |
| 458 | int accounting_init(struct hostapd_data *hapd) |
| 459 | { |
Dmitry Shmidt | b97e428 | 2016-02-08 10:16:07 -0800 | [diff] [blame] | 460 | if (radius_gen_session_id((u8 *) &hapd->acct_session_id, |
| 461 | sizeof(hapd->acct_session_id)) < 0) |
| 462 | return -1; |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 463 | |
| 464 | if (radius_client_register(hapd->radius, RADIUS_ACCT, |
| 465 | accounting_receive, hapd)) |
| 466 | return -1; |
| 467 | |
| 468 | accounting_report_state(hapd, 1); |
| 469 | |
| 470 | return 0; |
| 471 | } |
| 472 | |
| 473 | |
| 474 | /** |
Dmitry Shmidt | 7a53dbb | 2015-06-11 13:13:53 -0700 | [diff] [blame] | 475 | * accounting_deinit: Deinitialize accounting |
Dmitry Shmidt | 8d520ff | 2011-05-09 14:06:53 -0700 | [diff] [blame] | 476 | * @hapd: hostapd BSS data |
| 477 | */ |
| 478 | void accounting_deinit(struct hostapd_data *hapd) |
| 479 | { |
| 480 | accounting_report_state(hapd, 0); |
| 481 | } |