accounting.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  1. /*
  2. * hostapd / RADIUS Accounting
  3. * Copyright (c) 2002-2008, Jouni Malinen <j@w1.fi>
  4. *
  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.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include "common.h"
  16. #include "hostapd.h"
  17. #include "radius/radius.h"
  18. #include "radius/radius_client.h"
  19. #include "eloop.h"
  20. #include "accounting.h"
  21. #include "ieee802_1x.h"
  22. #include "driver_i.h"
  23. #include "sta_info.h"
  24. /* Default interval in seconds for polling TX/RX octets from the driver if
  25. * STA is not using interim accounting. This detects wrap arounds for
  26. * input/output octets and updates Acct-{Input,Output}-Gigawords. */
  27. #define ACCT_DEFAULT_UPDATE_INTERVAL 300
  28. static void accounting_sta_get_id(struct hostapd_data *hapd,
  29. struct sta_info *sta);
  30. static struct radius_msg * accounting_msg(struct hostapd_data *hapd,
  31. struct sta_info *sta,
  32. int status_type)
  33. {
  34. struct radius_msg *msg;
  35. char buf[128];
  36. u8 *val;
  37. size_t len;
  38. int i;
  39. msg = radius_msg_new(RADIUS_CODE_ACCOUNTING_REQUEST,
  40. radius_client_get_id(hapd->radius));
  41. if (msg == NULL) {
  42. printf("Could not create net RADIUS packet\n");
  43. return NULL;
  44. }
  45. if (sta) {
  46. radius_msg_make_authenticator(msg, (u8 *) sta, sizeof(*sta));
  47. os_snprintf(buf, sizeof(buf), "%08X-%08X",
  48. sta->acct_session_id_hi, sta->acct_session_id_lo);
  49. if (!radius_msg_add_attr(msg, RADIUS_ATTR_ACCT_SESSION_ID,
  50. (u8 *) buf, os_strlen(buf))) {
  51. printf("Could not add Acct-Session-Id\n");
  52. goto fail;
  53. }
  54. } else {
  55. radius_msg_make_authenticator(msg, (u8 *) hapd, sizeof(*hapd));
  56. }
  57. if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_ACCT_STATUS_TYPE,
  58. status_type)) {
  59. printf("Could not add Acct-Status-Type\n");
  60. goto fail;
  61. }
  62. if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_ACCT_AUTHENTIC,
  63. hapd->conf->ieee802_1x ?
  64. RADIUS_ACCT_AUTHENTIC_RADIUS :
  65. RADIUS_ACCT_AUTHENTIC_LOCAL)) {
  66. printf("Could not add Acct-Authentic\n");
  67. goto fail;
  68. }
  69. if (sta) {
  70. val = ieee802_1x_get_identity(sta->eapol_sm, &len);
  71. if (!val) {
  72. os_snprintf(buf, sizeof(buf), RADIUS_ADDR_FORMAT,
  73. MAC2STR(sta->addr));
  74. val = (u8 *) buf;
  75. len = os_strlen(buf);
  76. }
  77. if (!radius_msg_add_attr(msg, RADIUS_ATTR_USER_NAME, val,
  78. len)) {
  79. printf("Could not add User-Name\n");
  80. goto fail;
  81. }
  82. }
  83. if (hapd->conf->own_ip_addr.af == AF_INET &&
  84. !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IP_ADDRESS,
  85. (u8 *) &hapd->conf->own_ip_addr.u.v4, 4)) {
  86. printf("Could not add NAS-IP-Address\n");
  87. goto fail;
  88. }
  89. #ifdef CONFIG_IPV6
  90. if (hapd->conf->own_ip_addr.af == AF_INET6 &&
  91. !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IPV6_ADDRESS,
  92. (u8 *) &hapd->conf->own_ip_addr.u.v6, 16)) {
  93. printf("Could not add NAS-IPv6-Address\n");
  94. goto fail;
  95. }
  96. #endif /* CONFIG_IPV6 */
  97. if (hapd->conf->nas_identifier &&
  98. !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IDENTIFIER,
  99. (u8 *) hapd->conf->nas_identifier,
  100. os_strlen(hapd->conf->nas_identifier))) {
  101. printf("Could not add NAS-Identifier\n");
  102. goto fail;
  103. }
  104. if (sta &&
  105. !radius_msg_add_attr_int32(msg, RADIUS_ATTR_NAS_PORT, sta->aid)) {
  106. printf("Could not add NAS-Port\n");
  107. goto fail;
  108. }
  109. os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT ":%s",
  110. MAC2STR(hapd->own_addr), hapd->conf->ssid.ssid);
  111. if (!radius_msg_add_attr(msg, RADIUS_ATTR_CALLED_STATION_ID,
  112. (u8 *) buf, os_strlen(buf))) {
  113. printf("Could not add Called-Station-Id\n");
  114. goto fail;
  115. }
  116. if (sta) {
  117. os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT,
  118. MAC2STR(sta->addr));
  119. if (!radius_msg_add_attr(msg, RADIUS_ATTR_CALLING_STATION_ID,
  120. (u8 *) buf, os_strlen(buf))) {
  121. printf("Could not add Calling-Station-Id\n");
  122. goto fail;
  123. }
  124. if (!radius_msg_add_attr_int32(
  125. msg, RADIUS_ATTR_NAS_PORT_TYPE,
  126. RADIUS_NAS_PORT_TYPE_IEEE_802_11)) {
  127. printf("Could not add NAS-Port-Type\n");
  128. goto fail;
  129. }
  130. os_snprintf(buf, sizeof(buf), "CONNECT %d%sMbps %s",
  131. radius_sta_rate(hapd, sta) / 2,
  132. (radius_sta_rate(hapd, sta) & 1) ? ".5" : "",
  133. radius_mode_txt(hapd));
  134. if (!radius_msg_add_attr(msg, RADIUS_ATTR_CONNECT_INFO,
  135. (u8 *) buf, os_strlen(buf))) {
  136. printf("Could not add Connect-Info\n");
  137. goto fail;
  138. }
  139. for (i = 0; ; i++) {
  140. val = ieee802_1x_get_radius_class(sta->eapol_sm, &len,
  141. i);
  142. if (val == NULL)
  143. break;
  144. if (!radius_msg_add_attr(msg, RADIUS_ATTR_CLASS,
  145. val, len)) {
  146. printf("Could not add Class\n");
  147. goto fail;
  148. }
  149. }
  150. }
  151. return msg;
  152. fail:
  153. radius_msg_free(msg);
  154. return NULL;
  155. }
  156. static int accounting_sta_update_stats(struct hostapd_data *hapd,
  157. struct sta_info *sta,
  158. struct hostap_sta_driver_data *data)
  159. {
  160. if (hostapd_read_sta_data(hapd, data, sta->addr))
  161. return -1;
  162. if (sta->last_rx_bytes > data->rx_bytes)
  163. sta->acct_input_gigawords++;
  164. if (sta->last_tx_bytes > data->tx_bytes)
  165. sta->acct_output_gigawords++;
  166. sta->last_rx_bytes = data->rx_bytes;
  167. sta->last_tx_bytes = data->tx_bytes;
  168. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS,
  169. HOSTAPD_LEVEL_DEBUG, "updated TX/RX stats: "
  170. "Acct-Input-Octets=%lu Acct-Input-Gigawords=%u "
  171. "Acct-Output-Octets=%lu Acct-Output-Gigawords=%u",
  172. sta->last_rx_bytes, sta->acct_input_gigawords,
  173. sta->last_tx_bytes, sta->acct_output_gigawords);
  174. return 0;
  175. }
  176. static void accounting_interim_update(void *eloop_ctx, void *timeout_ctx)
  177. {
  178. struct hostapd_data *hapd = eloop_ctx;
  179. struct sta_info *sta = timeout_ctx;
  180. int interval;
  181. if (sta->acct_interim_interval) {
  182. accounting_sta_interim(hapd, sta);
  183. interval = sta->acct_interim_interval;
  184. } else {
  185. struct hostap_sta_driver_data data;
  186. accounting_sta_update_stats(hapd, sta, &data);
  187. interval = ACCT_DEFAULT_UPDATE_INTERVAL;
  188. }
  189. eloop_register_timeout(interval, 0, accounting_interim_update,
  190. hapd, sta);
  191. }
  192. /**
  193. * accounting_sta_start - Start STA accounting
  194. * @hapd: hostapd BSS data
  195. * @sta: The station
  196. */
  197. void accounting_sta_start(struct hostapd_data *hapd, struct sta_info *sta)
  198. {
  199. struct radius_msg *msg;
  200. int interval;
  201. if (sta->acct_session_started)
  202. return;
  203. accounting_sta_get_id(hapd, sta);
  204. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS,
  205. HOSTAPD_LEVEL_INFO,
  206. "starting accounting session %08X-%08X",
  207. sta->acct_session_id_hi, sta->acct_session_id_lo);
  208. time(&sta->acct_session_start);
  209. sta->last_rx_bytes = sta->last_tx_bytes = 0;
  210. sta->acct_input_gigawords = sta->acct_output_gigawords = 0;
  211. hostapd_sta_clear_stats(hapd, sta->addr);
  212. if (!hapd->conf->radius->acct_server)
  213. return;
  214. if (sta->acct_interim_interval)
  215. interval = sta->acct_interim_interval;
  216. else
  217. interval = ACCT_DEFAULT_UPDATE_INTERVAL;
  218. eloop_register_timeout(interval, 0, accounting_interim_update,
  219. hapd, sta);
  220. msg = accounting_msg(hapd, sta, RADIUS_ACCT_STATUS_TYPE_START);
  221. if (msg)
  222. radius_client_send(hapd->radius, msg, RADIUS_ACCT, sta->addr);
  223. sta->acct_session_started = 1;
  224. }
  225. static void accounting_sta_report(struct hostapd_data *hapd,
  226. struct sta_info *sta, int stop)
  227. {
  228. struct radius_msg *msg;
  229. int cause = sta->acct_terminate_cause;
  230. struct hostap_sta_driver_data data;
  231. u32 gigawords;
  232. if (!hapd->conf->radius->acct_server)
  233. return;
  234. msg = accounting_msg(hapd, sta,
  235. stop ? RADIUS_ACCT_STATUS_TYPE_STOP :
  236. RADIUS_ACCT_STATUS_TYPE_INTERIM_UPDATE);
  237. if (!msg) {
  238. printf("Could not create RADIUS Accounting message\n");
  239. return;
  240. }
  241. if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_ACCT_SESSION_TIME,
  242. time(NULL) - sta->acct_session_start)) {
  243. printf("Could not add Acct-Session-Time\n");
  244. goto fail;
  245. }
  246. if (accounting_sta_update_stats(hapd, sta, &data) == 0) {
  247. if (!radius_msg_add_attr_int32(msg,
  248. RADIUS_ATTR_ACCT_INPUT_PACKETS,
  249. data.rx_packets)) {
  250. printf("Could not add Acct-Input-Packets\n");
  251. goto fail;
  252. }
  253. if (!radius_msg_add_attr_int32(msg,
  254. RADIUS_ATTR_ACCT_OUTPUT_PACKETS,
  255. data.tx_packets)) {
  256. printf("Could not add Acct-Output-Packets\n");
  257. goto fail;
  258. }
  259. if (!radius_msg_add_attr_int32(msg,
  260. RADIUS_ATTR_ACCT_INPUT_OCTETS,
  261. data.rx_bytes)) {
  262. printf("Could not add Acct-Input-Octets\n");
  263. goto fail;
  264. }
  265. gigawords = sta->acct_input_gigawords;
  266. #if __WORDSIZE == 64
  267. gigawords += data.rx_bytes >> 32;
  268. #endif
  269. if (gigawords &&
  270. !radius_msg_add_attr_int32(
  271. msg, RADIUS_ATTR_ACCT_INPUT_GIGAWORDS,
  272. gigawords)) {
  273. printf("Could not add Acct-Input-Gigawords\n");
  274. goto fail;
  275. }
  276. if (!radius_msg_add_attr_int32(msg,
  277. RADIUS_ATTR_ACCT_OUTPUT_OCTETS,
  278. data.tx_bytes)) {
  279. printf("Could not add Acct-Output-Octets\n");
  280. goto fail;
  281. }
  282. gigawords = sta->acct_output_gigawords;
  283. #if __WORDSIZE == 64
  284. gigawords += data.tx_bytes >> 32;
  285. #endif
  286. if (gigawords &&
  287. !radius_msg_add_attr_int32(
  288. msg, RADIUS_ATTR_ACCT_OUTPUT_GIGAWORDS,
  289. gigawords)) {
  290. printf("Could not add Acct-Output-Gigawords\n");
  291. goto fail;
  292. }
  293. }
  294. if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_EVENT_TIMESTAMP,
  295. time(NULL))) {
  296. printf("Could not add Event-Timestamp\n");
  297. goto fail;
  298. }
  299. if (eloop_terminated())
  300. cause = RADIUS_ACCT_TERMINATE_CAUSE_ADMIN_REBOOT;
  301. if (stop && cause &&
  302. !radius_msg_add_attr_int32(msg, RADIUS_ATTR_ACCT_TERMINATE_CAUSE,
  303. cause)) {
  304. printf("Could not add Acct-Terminate-Cause\n");
  305. goto fail;
  306. }
  307. radius_client_send(hapd->radius, msg,
  308. stop ? RADIUS_ACCT : RADIUS_ACCT_INTERIM,
  309. sta->addr);
  310. return;
  311. fail:
  312. radius_msg_free(msg);
  313. }
  314. /**
  315. * accounting_sta_interim - Send a interim STA accounting report
  316. * @hapd: hostapd BSS data
  317. * @sta: The station
  318. */
  319. void accounting_sta_interim(struct hostapd_data *hapd, struct sta_info *sta)
  320. {
  321. if (sta->acct_session_started)
  322. accounting_sta_report(hapd, sta, 0);
  323. }
  324. /**
  325. * accounting_sta_stop - Stop STA accounting
  326. * @hapd: hostapd BSS data
  327. * @sta: The station
  328. */
  329. void accounting_sta_stop(struct hostapd_data *hapd, struct sta_info *sta)
  330. {
  331. if (sta->acct_session_started) {
  332. accounting_sta_report(hapd, sta, 1);
  333. eloop_cancel_timeout(accounting_interim_update, hapd, sta);
  334. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS,
  335. HOSTAPD_LEVEL_INFO,
  336. "stopped accounting session %08X-%08X",
  337. sta->acct_session_id_hi,
  338. sta->acct_session_id_lo);
  339. sta->acct_session_started = 0;
  340. }
  341. }
  342. static void accounting_sta_get_id(struct hostapd_data *hapd,
  343. struct sta_info *sta)
  344. {
  345. sta->acct_session_id_lo = hapd->acct_session_id_lo++;
  346. if (hapd->acct_session_id_lo == 0) {
  347. hapd->acct_session_id_hi++;
  348. }
  349. sta->acct_session_id_hi = hapd->acct_session_id_hi;
  350. }
  351. /**
  352. * accounting_receive - Process the RADIUS frames from Accounting Server
  353. * @msg: RADIUS response message
  354. * @req: RADIUS request message
  355. * @shared_secret: RADIUS shared secret
  356. * @shared_secret_len: Length of shared_secret in octets
  357. * @data: Context data (struct hostapd_data *)
  358. * Returns: Processing status
  359. */
  360. static RadiusRxResult
  361. accounting_receive(struct radius_msg *msg, struct radius_msg *req,
  362. const u8 *shared_secret, size_t shared_secret_len,
  363. void *data)
  364. {
  365. if (radius_msg_get_hdr(msg)->code != RADIUS_CODE_ACCOUNTING_RESPONSE) {
  366. printf("Unknown RADIUS message code\n");
  367. return RADIUS_RX_UNKNOWN;
  368. }
  369. if (radius_msg_verify(msg, shared_secret, shared_secret_len, req, 0)) {
  370. printf("Incoming RADIUS packet did not have correct "
  371. "Authenticator - dropped\n");
  372. return RADIUS_RX_INVALID_AUTHENTICATOR;
  373. }
  374. return RADIUS_RX_PROCESSED;
  375. }
  376. static void accounting_report_state(struct hostapd_data *hapd, int on)
  377. {
  378. struct radius_msg *msg;
  379. if (!hapd->conf->radius->acct_server || hapd->radius == NULL)
  380. return;
  381. /* Inform RADIUS server that accounting will start/stop so that the
  382. * server can close old accounting sessions. */
  383. msg = accounting_msg(hapd, NULL,
  384. on ? RADIUS_ACCT_STATUS_TYPE_ACCOUNTING_ON :
  385. RADIUS_ACCT_STATUS_TYPE_ACCOUNTING_OFF);
  386. if (!msg)
  387. return;
  388. if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_ACCT_TERMINATE_CAUSE,
  389. RADIUS_ACCT_TERMINATE_CAUSE_NAS_REBOOT))
  390. {
  391. printf("Could not add Acct-Terminate-Cause\n");
  392. radius_msg_free(msg);
  393. return;
  394. }
  395. radius_client_send(hapd->radius, msg, RADIUS_ACCT, NULL);
  396. }
  397. /**
  398. * accounting_init: Initialize accounting
  399. * @hapd: hostapd BSS data
  400. * Returns: 0 on success, -1 on failure
  401. */
  402. int accounting_init(struct hostapd_data *hapd)
  403. {
  404. /* Acct-Session-Id should be unique over reboots. If reliable clock is
  405. * not available, this could be replaced with reboot counter, etc. */
  406. hapd->acct_session_id_hi = time(NULL);
  407. if (radius_client_register(hapd->radius, RADIUS_ACCT,
  408. accounting_receive, hapd))
  409. return -1;
  410. accounting_report_state(hapd, 1);
  411. return 0;
  412. }
  413. /**
  414. * accounting_deinit: Deinitilize accounting
  415. * @hapd: hostapd BSS data
  416. */
  417. void accounting_deinit(struct hostapd_data *hapd)
  418. {
  419. accounting_report_state(hapd, 0);
  420. }