2 * hostapd / RADIUS Accounting
3 * Copyright (c) 2002-2007, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
18 #include "radius/radius.h"
19 #include "radius/radius_client.h"
21 #include "accounting.h"
22 #include "ieee802_1x.h"
26 /* Default interval in seconds for polling TX/RX octets from the driver if
27 * STA is not using interim accounting. This detects wrap arounds for
28 * input/output octets and updates Acct-{Input,Output}-Gigawords. */
29 #define ACCT_DEFAULT_UPDATE_INTERVAL 300
31 /* from ieee802_1x.c */
32 const char *radius_mode_txt(struct hostapd_data
*hapd
);
33 int radius_sta_rate(struct hostapd_data
*hapd
, struct sta_info
*sta
);
36 static struct radius_msg
* accounting_msg(struct hostapd_data
*hapd
,
40 struct radius_msg
*msg
;
46 msg
= radius_msg_new(RADIUS_CODE_ACCOUNTING_REQUEST
,
47 radius_client_get_id(hapd
->radius
));
49 printf("Could not create net RADIUS packet\n");
54 radius_msg_make_authenticator(msg
, (u8
*) sta
, sizeof(*sta
));
56 os_snprintf(buf
, sizeof(buf
), "%08X-%08X",
57 sta
->acct_session_id_hi
, sta
->acct_session_id_lo
);
58 if (!radius_msg_add_attr(msg
, RADIUS_ATTR_ACCT_SESSION_ID
,
59 (u8
*) buf
, os_strlen(buf
))) {
60 printf("Could not add Acct-Session-Id\n");
64 radius_msg_make_authenticator(msg
, (u8
*) hapd
, sizeof(*hapd
));
67 if (!radius_msg_add_attr_int32(msg
, RADIUS_ATTR_ACCT_STATUS_TYPE
,
69 printf("Could not add Acct-Status-Type\n");
73 if (!radius_msg_add_attr_int32(msg
, RADIUS_ATTR_ACCT_AUTHENTIC
,
74 hapd
->conf
->ieee802_1x
?
75 RADIUS_ACCT_AUTHENTIC_RADIUS
:
76 RADIUS_ACCT_AUTHENTIC_LOCAL
)) {
77 printf("Could not add Acct-Authentic\n");
82 val
= ieee802_1x_get_identity(sta
->eapol_sm
, &len
);
84 os_snprintf(buf
, sizeof(buf
), RADIUS_ADDR_FORMAT
,
90 if (!radius_msg_add_attr(msg
, RADIUS_ATTR_USER_NAME
, val
,
92 printf("Could not add User-Name\n");
97 if (hapd
->conf
->own_ip_addr
.af
== AF_INET
&&
98 !radius_msg_add_attr(msg
, RADIUS_ATTR_NAS_IP_ADDRESS
,
99 (u8
*) &hapd
->conf
->own_ip_addr
.u
.v4
, 4)) {
100 printf("Could not add NAS-IP-Address\n");
105 if (hapd
->conf
->own_ip_addr
.af
== AF_INET6
&&
106 !radius_msg_add_attr(msg
, RADIUS_ATTR_NAS_IPV6_ADDRESS
,
107 (u8
*) &hapd
->conf
->own_ip_addr
.u
.v6
, 16)) {
108 printf("Could not add NAS-IPv6-Address\n");
111 #endif /* CONFIG_IPV6 */
113 if (hapd
->conf
->nas_identifier
&&
114 !radius_msg_add_attr(msg
, RADIUS_ATTR_NAS_IDENTIFIER
,
115 (u8
*) hapd
->conf
->nas_identifier
,
116 os_strlen(hapd
->conf
->nas_identifier
))) {
117 printf("Could not add NAS-Identifier\n");
122 !radius_msg_add_attr_int32(msg
, RADIUS_ATTR_NAS_PORT
, sta
->aid
)) {
123 printf("Could not add NAS-Port\n");
127 os_snprintf(buf
, sizeof(buf
), RADIUS_802_1X_ADDR_FORMAT
":%s",
128 MAC2STR(hapd
->own_addr
), hapd
->conf
->ssid
.ssid
);
129 if (!radius_msg_add_attr(msg
, RADIUS_ATTR_CALLED_STATION_ID
,
130 (u8
*) buf
, os_strlen(buf
))) {
131 printf("Could not add Called-Station-Id\n");
136 os_snprintf(buf
, sizeof(buf
), RADIUS_802_1X_ADDR_FORMAT
,
138 if (!radius_msg_add_attr(msg
, RADIUS_ATTR_CALLING_STATION_ID
,
139 (u8
*) buf
, os_strlen(buf
))) {
140 printf("Could not add Calling-Station-Id\n");
144 if (!radius_msg_add_attr_int32(
145 msg
, RADIUS_ATTR_NAS_PORT_TYPE
,
146 RADIUS_NAS_PORT_TYPE_IEEE_802_11
)) {
147 printf("Could not add NAS-Port-Type\n");
151 os_snprintf(buf
, sizeof(buf
), "CONNECT %d%sMbps %s",
152 radius_sta_rate(hapd
, sta
) / 2,
153 (radius_sta_rate(hapd
, sta
) & 1) ? ".5" : "",
154 radius_mode_txt(hapd
));
155 if (!radius_msg_add_attr(msg
, RADIUS_ATTR_CONNECT_INFO
,
156 (u8
*) buf
, os_strlen(buf
))) {
157 printf("Could not add Connect-Info\n");
162 val
= ieee802_1x_get_radius_class(sta
->eapol_sm
, &len
,
167 if (!radius_msg_add_attr(msg
, RADIUS_ATTR_CLASS
,
169 printf("Could not add Class\n");
178 radius_msg_free(msg
);
184 static int accounting_sta_update_stats(struct hostapd_data
*hapd
,
185 struct sta_info
*sta
,
186 struct hostap_sta_driver_data
*data
)
188 if (hostapd_read_sta_data(hapd
, data
, sta
->addr
))
191 if (sta
->last_rx_bytes
> data
->rx_bytes
)
192 sta
->acct_input_gigawords
++;
193 if (sta
->last_tx_bytes
> data
->tx_bytes
)
194 sta
->acct_output_gigawords
++;
195 sta
->last_rx_bytes
= data
->rx_bytes
;
196 sta
->last_tx_bytes
= data
->tx_bytes
;
198 hostapd_logger(hapd
, sta
->addr
, HOSTAPD_MODULE_RADIUS
,
199 HOSTAPD_LEVEL_DEBUG
, "updated TX/RX stats: "
200 "Acct-Input-Octets=%lu Acct-Input-Gigawords=%u "
201 "Acct-Output-Octets=%lu Acct-Output-Gigawords=%u",
202 sta
->last_rx_bytes
, sta
->acct_input_gigawords
,
203 sta
->last_tx_bytes
, sta
->acct_output_gigawords
);
209 static void accounting_interim_update(void *eloop_ctx
, void *timeout_ctx
)
211 struct hostapd_data
*hapd
= eloop_ctx
;
212 struct sta_info
*sta
= timeout_ctx
;
215 if (sta
->acct_interim_interval
) {
216 accounting_sta_interim(hapd
, sta
);
217 interval
= sta
->acct_interim_interval
;
219 struct hostap_sta_driver_data data
;
220 accounting_sta_update_stats(hapd
, sta
, &data
);
221 interval
= ACCT_DEFAULT_UPDATE_INTERVAL
;
224 eloop_register_timeout(interval
, 0, accounting_interim_update
,
229 void accounting_sta_start(struct hostapd_data
*hapd
, struct sta_info
*sta
)
231 struct radius_msg
*msg
;
234 if (sta
->acct_session_started
)
237 time(&sta
->acct_session_start
);
238 sta
->last_rx_bytes
= sta
->last_tx_bytes
= 0;
239 sta
->acct_input_gigawords
= sta
->acct_output_gigawords
= 0;
240 hostapd_sta_clear_stats(hapd
, sta
->addr
);
242 if (!hapd
->conf
->radius
->acct_server
)
245 if (sta
->acct_interim_interval
)
246 interval
= sta
->acct_interim_interval
;
248 interval
= ACCT_DEFAULT_UPDATE_INTERVAL
;
249 eloop_register_timeout(interval
, 0, accounting_interim_update
,
252 msg
= accounting_msg(hapd
, sta
, RADIUS_ACCT_STATUS_TYPE_START
);
254 radius_client_send(hapd
->radius
, msg
, RADIUS_ACCT
, sta
->addr
);
256 sta
->acct_session_started
= 1;
260 void accounting_sta_report(struct hostapd_data
*hapd
, struct sta_info
*sta
,
263 struct radius_msg
*msg
;
264 int cause
= sta
->acct_terminate_cause
;
265 struct hostap_sta_driver_data data
;
268 if (!hapd
->conf
->radius
->acct_server
)
271 msg
= accounting_msg(hapd
, sta
,
272 stop
? RADIUS_ACCT_STATUS_TYPE_STOP
:
273 RADIUS_ACCT_STATUS_TYPE_INTERIM_UPDATE
);
275 printf("Could not create RADIUS Accounting message\n");
279 if (!radius_msg_add_attr_int32(msg
, RADIUS_ATTR_ACCT_SESSION_TIME
,
280 time(NULL
) - sta
->acct_session_start
)) {
281 printf("Could not add Acct-Session-Time\n");
285 if (accounting_sta_update_stats(hapd
, sta
, &data
) == 0) {
286 if (!radius_msg_add_attr_int32(msg
,
287 RADIUS_ATTR_ACCT_INPUT_PACKETS
,
289 printf("Could not add Acct-Input-Packets\n");
292 if (!radius_msg_add_attr_int32(msg
,
293 RADIUS_ATTR_ACCT_OUTPUT_PACKETS
,
295 printf("Could not add Acct-Output-Packets\n");
298 if (!radius_msg_add_attr_int32(msg
,
299 RADIUS_ATTR_ACCT_INPUT_OCTETS
,
301 printf("Could not add Acct-Input-Octets\n");
304 gigawords
= sta
->acct_input_gigawords
;
306 gigawords
+= data
.rx_bytes
>> 32;
309 !radius_msg_add_attr_int32(
310 msg
, RADIUS_ATTR_ACCT_INPUT_GIGAWORDS
,
312 printf("Could not add Acct-Input-Gigawords\n");
315 if (!radius_msg_add_attr_int32(msg
,
316 RADIUS_ATTR_ACCT_OUTPUT_OCTETS
,
318 printf("Could not add Acct-Output-Octets\n");
321 gigawords
= sta
->acct_output_gigawords
;
323 gigawords
+= data
.tx_bytes
>> 32;
326 !radius_msg_add_attr_int32(
327 msg
, RADIUS_ATTR_ACCT_OUTPUT_GIGAWORDS
,
329 printf("Could not add Acct-Output-Gigawords\n");
334 if (!radius_msg_add_attr_int32(msg
, RADIUS_ATTR_EVENT_TIMESTAMP
,
336 printf("Could not add Event-Timestamp\n");
340 if (eloop_terminated())
341 cause
= RADIUS_ACCT_TERMINATE_CAUSE_ADMIN_REBOOT
;
344 !radius_msg_add_attr_int32(msg
, RADIUS_ATTR_ACCT_TERMINATE_CAUSE
,
346 printf("Could not add Acct-Terminate-Cause\n");
350 radius_client_send(hapd
->radius
, msg
,
351 stop
? RADIUS_ACCT
: RADIUS_ACCT_INTERIM
,
356 radius_msg_free(msg
);
361 void accounting_sta_interim(struct hostapd_data
*hapd
, struct sta_info
*sta
)
363 if (sta
->acct_session_started
)
364 accounting_sta_report(hapd
, sta
, 0);
368 void accounting_sta_stop(struct hostapd_data
*hapd
, struct sta_info
*sta
)
370 if (sta
->acct_session_started
) {
371 accounting_sta_report(hapd
, sta
, 1);
372 eloop_cancel_timeout(accounting_interim_update
, hapd
, sta
);
373 sta
->acct_session_started
= 0;
378 void accounting_sta_get_id(struct hostapd_data
*hapd
, struct sta_info
*sta
)
380 sta
->acct_session_id_lo
= hapd
->acct_session_id_lo
++;
381 if (hapd
->acct_session_id_lo
== 0) {
382 hapd
->acct_session_id_hi
++;
384 sta
->acct_session_id_hi
= hapd
->acct_session_id_hi
;
388 /* Process the RADIUS frames from Accounting Server */
389 static RadiusRxResult
390 accounting_receive(struct radius_msg
*msg
, struct radius_msg
*req
,
391 u8
*shared_secret
, size_t shared_secret_len
, void *data
)
393 if (msg
->hdr
->code
!= RADIUS_CODE_ACCOUNTING_RESPONSE
) {
394 printf("Unknown RADIUS message code\n");
395 return RADIUS_RX_UNKNOWN
;
398 if (radius_msg_verify(msg
, shared_secret
, shared_secret_len
, req
, 0)) {
399 printf("Incoming RADIUS packet did not have correct "
400 "Authenticator - dropped\n");
401 return RADIUS_RX_INVALID_AUTHENTICATOR
;
404 return RADIUS_RX_PROCESSED
;
408 static void accounting_report_state(struct hostapd_data
*hapd
, int on
)
410 struct radius_msg
*msg
;
412 if (!hapd
->conf
->radius
->acct_server
|| hapd
->radius
== NULL
)
415 /* Inform RADIUS server that accounting will start/stop so that the
416 * server can close old accounting sessions. */
417 msg
= accounting_msg(hapd
, NULL
,
418 on
? RADIUS_ACCT_STATUS_TYPE_ACCOUNTING_ON
:
419 RADIUS_ACCT_STATUS_TYPE_ACCOUNTING_OFF
);
423 if (!radius_msg_add_attr_int32(msg
, RADIUS_ATTR_ACCT_TERMINATE_CAUSE
,
424 RADIUS_ACCT_TERMINATE_CAUSE_NAS_REBOOT
))
426 printf("Could not add Acct-Terminate-Cause\n");
427 radius_msg_free(msg
);
432 radius_client_send(hapd
->radius
, msg
, RADIUS_ACCT
, NULL
);
436 int accounting_init(struct hostapd_data
*hapd
)
438 /* Acct-Session-Id should be unique over reboots. If reliable clock is
439 * not available, this could be replaced with reboot counter, etc. */
440 hapd
->acct_session_id_hi
= time(NULL
);
442 if (radius_client_register(hapd
->radius
, RADIUS_ACCT
,
443 accounting_receive
, hapd
))
446 accounting_report_state(hapd
, 1);
452 void accounting_deinit(struct hostapd_data
*hapd
)
454 accounting_report_state(hapd
, 0);
458 int accounting_reconfig(struct hostapd_data
*hapd
,
459 struct hostapd_config
*oldconf
)
461 if (!hapd
->radius_client_reconfigured
)
464 accounting_deinit(hapd
);
465 return accounting_init(hapd
);