accounting.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512
  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. os_free(msg);
  155. return NULL;
  156. }
  157. static int accounting_sta_update_stats(struct hostapd_data *hapd,
  158. struct sta_info *sta,
  159. struct hostap_sta_driver_data *data)
  160. {
  161. if (hostapd_read_sta_data(hapd, data, sta->addr))
  162. return -1;
  163. if (sta->last_rx_bytes > data->rx_bytes)
  164. sta->acct_input_gigawords++;
  165. if (sta->last_tx_bytes > data->tx_bytes)
  166. sta->acct_output_gigawords++;
  167. sta->last_rx_bytes = data->rx_bytes;
  168. sta->last_tx_bytes = data->tx_bytes;
  169. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS,
  170. HOSTAPD_LEVEL_DEBUG, "updated TX/RX stats: "
  171. "Acct-Input-Octets=%lu Acct-Input-Gigawords=%u "
  172. "Acct-Output-Octets=%lu Acct-Output-Gigawords=%u",
  173. sta->last_rx_bytes, sta->acct_input_gigawords,
  174. sta->last_tx_bytes, sta->acct_output_gigawords);
  175. return 0;
  176. }
  177. static void accounting_interim_update(void *eloop_ctx, void *timeout_ctx)
  178. {
  179. struct hostapd_data *hapd = eloop_ctx;
  180. struct sta_info *sta = timeout_ctx;
  181. int interval;
  182. if (sta->acct_interim_interval) {
  183. accounting_sta_interim(hapd, sta);
  184. interval = sta->acct_interim_interval;
  185. } else {
  186. struct hostap_sta_driver_data data;
  187. accounting_sta_update_stats(hapd, sta, &data);
  188. interval = ACCT_DEFAULT_UPDATE_INTERVAL;
  189. }
  190. eloop_register_timeout(interval, 0, accounting_interim_update,
  191. hapd, sta);
  192. }
  193. /**
  194. * accounting_sta_start - Start STA accounting
  195. * @hapd: hostapd BSS data
  196. * @sta: The station
  197. */
  198. void accounting_sta_start(struct hostapd_data *hapd, struct sta_info *sta)
  199. {
  200. struct radius_msg *msg;
  201. int interval;
  202. if (sta->acct_session_started)
  203. return;
  204. accounting_sta_get_id(hapd, sta);
  205. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS,
  206. HOSTAPD_LEVEL_INFO,
  207. "starting accounting session %08X-%08X",
  208. sta->acct_session_id_hi, sta->acct_session_id_lo);
  209. time(&sta->acct_session_start);
  210. sta->last_rx_bytes = sta->last_tx_bytes = 0;
  211. sta->acct_input_gigawords = sta->acct_output_gigawords = 0;
  212. hostapd_sta_clear_stats(hapd, sta->addr);
  213. if (!hapd->conf->radius->acct_server)
  214. return;
  215. if (sta->acct_interim_interval)
  216. interval = sta->acct_interim_interval;
  217. else
  218. interval = ACCT_DEFAULT_UPDATE_INTERVAL;
  219. eloop_register_timeout(interval, 0, accounting_interim_update,
  220. hapd, sta);
  221. msg = accounting_msg(hapd, sta, RADIUS_ACCT_STATUS_TYPE_START);
  222. if (msg)
  223. radius_client_send(hapd->radius, msg, RADIUS_ACCT, sta->addr);
  224. sta->acct_session_started = 1;
  225. }
  226. static void accounting_sta_report(struct hostapd_data *hapd,
  227. struct sta_info *sta, int stop)
  228. {
  229. struct radius_msg *msg;
  230. int cause = sta->acct_terminate_cause;
  231. struct hostap_sta_driver_data data;
  232. u32 gigawords;
  233. if (!hapd->conf->radius->acct_server)
  234. return;
  235. msg = accounting_msg(hapd, sta,
  236. stop ? RADIUS_ACCT_STATUS_TYPE_STOP :
  237. RADIUS_ACCT_STATUS_TYPE_INTERIM_UPDATE);
  238. if (!msg) {
  239. printf("Could not create RADIUS Accounting message\n");
  240. return;
  241. }
  242. if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_ACCT_SESSION_TIME,
  243. time(NULL) - sta->acct_session_start)) {
  244. printf("Could not add Acct-Session-Time\n");
  245. goto fail;
  246. }
  247. if (accounting_sta_update_stats(hapd, sta, &data) == 0) {
  248. if (!radius_msg_add_attr_int32(msg,
  249. RADIUS_ATTR_ACCT_INPUT_PACKETS,
  250. data.rx_packets)) {
  251. printf("Could not add Acct-Input-Packets\n");
  252. goto fail;
  253. }
  254. if (!radius_msg_add_attr_int32(msg,
  255. RADIUS_ATTR_ACCT_OUTPUT_PACKETS,
  256. data.tx_packets)) {
  257. printf("Could not add Acct-Output-Packets\n");
  258. goto fail;
  259. }
  260. if (!radius_msg_add_attr_int32(msg,
  261. RADIUS_ATTR_ACCT_INPUT_OCTETS,
  262. data.rx_bytes)) {
  263. printf("Could not add Acct-Input-Octets\n");
  264. goto fail;
  265. }
  266. gigawords = sta->acct_input_gigawords;
  267. #if __WORDSIZE == 64
  268. gigawords += data.rx_bytes >> 32;
  269. #endif
  270. if (gigawords &&
  271. !radius_msg_add_attr_int32(
  272. msg, RADIUS_ATTR_ACCT_INPUT_GIGAWORDS,
  273. gigawords)) {
  274. printf("Could not add Acct-Input-Gigawords\n");
  275. goto fail;
  276. }
  277. if (!radius_msg_add_attr_int32(msg,
  278. RADIUS_ATTR_ACCT_OUTPUT_OCTETS,
  279. data.tx_bytes)) {
  280. printf("Could not add Acct-Output-Octets\n");
  281. goto fail;
  282. }
  283. gigawords = sta->acct_output_gigawords;
  284. #if __WORDSIZE == 64
  285. gigawords += data.tx_bytes >> 32;
  286. #endif
  287. if (gigawords &&
  288. !radius_msg_add_attr_int32(
  289. msg, RADIUS_ATTR_ACCT_OUTPUT_GIGAWORDS,
  290. gigawords)) {
  291. printf("Could not add Acct-Output-Gigawords\n");
  292. goto fail;
  293. }
  294. }
  295. if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_EVENT_TIMESTAMP,
  296. time(NULL))) {
  297. printf("Could not add Event-Timestamp\n");
  298. goto fail;
  299. }
  300. if (eloop_terminated())
  301. cause = RADIUS_ACCT_TERMINATE_CAUSE_ADMIN_REBOOT;
  302. if (stop && cause &&
  303. !radius_msg_add_attr_int32(msg, RADIUS_ATTR_ACCT_TERMINATE_CAUSE,
  304. cause)) {
  305. printf("Could not add Acct-Terminate-Cause\n");
  306. goto fail;
  307. }
  308. radius_client_send(hapd->radius, msg,
  309. stop ? RADIUS_ACCT : RADIUS_ACCT_INTERIM,
  310. sta->addr);
  311. return;
  312. fail:
  313. radius_msg_free(msg);
  314. os_free(msg);
  315. }
  316. /**
  317. * accounting_sta_interim - Send a interim STA accounting report
  318. * @hapd: hostapd BSS data
  319. * @sta: The station
  320. */
  321. void accounting_sta_interim(struct hostapd_data *hapd, struct sta_info *sta)
  322. {
  323. if (sta->acct_session_started)
  324. accounting_sta_report(hapd, sta, 0);
  325. }
  326. /**
  327. * accounting_sta_stop - Stop STA accounting
  328. * @hapd: hostapd BSS data
  329. * @sta: The station
  330. */
  331. void accounting_sta_stop(struct hostapd_data *hapd, struct sta_info *sta)
  332. {
  333. if (sta->acct_session_started) {
  334. accounting_sta_report(hapd, sta, 1);
  335. eloop_cancel_timeout(accounting_interim_update, hapd, sta);
  336. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS,
  337. HOSTAPD_LEVEL_INFO,
  338. "stopped accounting session %08X-%08X",
  339. sta->acct_session_id_hi,
  340. sta->acct_session_id_lo);
  341. sta->acct_session_started = 0;
  342. }
  343. }
  344. static void accounting_sta_get_id(struct hostapd_data *hapd,
  345. struct sta_info *sta)
  346. {
  347. sta->acct_session_id_lo = hapd->acct_session_id_lo++;
  348. if (hapd->acct_session_id_lo == 0) {
  349. hapd->acct_session_id_hi++;
  350. }
  351. sta->acct_session_id_hi = hapd->acct_session_id_hi;
  352. }
  353. /**
  354. * accounting_receive - Process the RADIUS frames from Accounting Server
  355. * @msg: RADIUS response message
  356. * @req: RADIUS request message
  357. * @shared_secret: RADIUS shared secret
  358. * @shared_secret_len: Length of shared_secret in octets
  359. * @data: Context data (struct hostapd_data *)
  360. * Returns: Processing status
  361. */
  362. static RadiusRxResult
  363. accounting_receive(struct radius_msg *msg, struct radius_msg *req,
  364. const u8 *shared_secret, size_t shared_secret_len,
  365. void *data)
  366. {
  367. if (msg->hdr->code != RADIUS_CODE_ACCOUNTING_RESPONSE) {
  368. printf("Unknown RADIUS message code\n");
  369. return RADIUS_RX_UNKNOWN;
  370. }
  371. if (radius_msg_verify(msg, shared_secret, shared_secret_len, req, 0)) {
  372. printf("Incoming RADIUS packet did not have correct "
  373. "Authenticator - dropped\n");
  374. return RADIUS_RX_INVALID_AUTHENTICATOR;
  375. }
  376. return RADIUS_RX_PROCESSED;
  377. }
  378. static void accounting_report_state(struct hostapd_data *hapd, int on)
  379. {
  380. struct radius_msg *msg;
  381. if (!hapd->conf->radius->acct_server || hapd->radius == NULL)
  382. return;
  383. /* Inform RADIUS server that accounting will start/stop so that the
  384. * server can close old accounting sessions. */
  385. msg = accounting_msg(hapd, NULL,
  386. on ? RADIUS_ACCT_STATUS_TYPE_ACCOUNTING_ON :
  387. RADIUS_ACCT_STATUS_TYPE_ACCOUNTING_OFF);
  388. if (!msg)
  389. return;
  390. if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_ACCT_TERMINATE_CAUSE,
  391. RADIUS_ACCT_TERMINATE_CAUSE_NAS_REBOOT))
  392. {
  393. printf("Could not add Acct-Terminate-Cause\n");
  394. radius_msg_free(msg);
  395. os_free(msg);
  396. return;
  397. }
  398. radius_client_send(hapd->radius, msg, RADIUS_ACCT, NULL);
  399. }
  400. /**
  401. * accounting_init: Initialize accounting
  402. * @hapd: hostapd BSS data
  403. * Returns: 0 on success, -1 on failure
  404. */
  405. int accounting_init(struct hostapd_data *hapd)
  406. {
  407. /* Acct-Session-Id should be unique over reboots. If reliable clock is
  408. * not available, this could be replaced with reboot counter, etc. */
  409. hapd->acct_session_id_hi = time(NULL);
  410. if (radius_client_register(hapd->radius, RADIUS_ACCT,
  411. accounting_receive, hapd))
  412. return -1;
  413. accounting_report_state(hapd, 1);
  414. return 0;
  415. }
  416. /**
  417. * accounting_deinit: Deinitilize accounting
  418. * @hapd: hostapd BSS data
  419. */
  420. void accounting_deinit(struct hostapd_data *hapd)
  421. {
  422. accounting_report_state(hapd, 0);
  423. }
  424. int accounting_reconfig(struct hostapd_data *hapd,
  425. struct hostapd_config *oldconf)
  426. {
  427. if (!hapd->radius_client_reconfigured)
  428. return 0;
  429. accounting_deinit(hapd);
  430. return accounting_init(hapd);
  431. }