ieee802_11_shared.c 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399
  1. /*
  2. * hostapd / IEEE 802.11 Management
  3. * Copyright (c) 2002-2010, 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. #include "utils/includes.h"
  9. #include "utils/common.h"
  10. #include "common/ieee802_11_defs.h"
  11. #include "hostapd.h"
  12. #include "sta_info.h"
  13. #include "ap_config.h"
  14. #include "ap_drv_ops.h"
  15. #include "ieee802_11.h"
  16. #ifdef CONFIG_IEEE80211W
  17. u8 * hostapd_eid_assoc_comeback_time(struct hostapd_data *hapd,
  18. struct sta_info *sta, u8 *eid)
  19. {
  20. u8 *pos = eid;
  21. u32 timeout, tu;
  22. struct os_time now, passed;
  23. *pos++ = WLAN_EID_TIMEOUT_INTERVAL;
  24. *pos++ = 5;
  25. *pos++ = WLAN_TIMEOUT_ASSOC_COMEBACK;
  26. os_get_time(&now);
  27. os_time_sub(&now, &sta->sa_query_start, &passed);
  28. tu = (passed.sec * 1000000 + passed.usec) / 1024;
  29. if (hapd->conf->assoc_sa_query_max_timeout > tu)
  30. timeout = hapd->conf->assoc_sa_query_max_timeout - tu;
  31. else
  32. timeout = 0;
  33. if (timeout < hapd->conf->assoc_sa_query_max_timeout)
  34. timeout++; /* add some extra time for local timers */
  35. WPA_PUT_LE32(pos, timeout);
  36. pos += 4;
  37. return pos;
  38. }
  39. /* MLME-SAQuery.request */
  40. void ieee802_11_send_sa_query_req(struct hostapd_data *hapd,
  41. const u8 *addr, const u8 *trans_id)
  42. {
  43. struct ieee80211_mgmt mgmt;
  44. u8 *end;
  45. wpa_printf(MSG_DEBUG, "IEEE 802.11: Sending SA Query Request to "
  46. MACSTR, MAC2STR(addr));
  47. wpa_hexdump(MSG_DEBUG, "IEEE 802.11: SA Query Transaction ID",
  48. trans_id, WLAN_SA_QUERY_TR_ID_LEN);
  49. os_memset(&mgmt, 0, sizeof(mgmt));
  50. mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  51. WLAN_FC_STYPE_ACTION);
  52. os_memcpy(mgmt.da, addr, ETH_ALEN);
  53. os_memcpy(mgmt.sa, hapd->own_addr, ETH_ALEN);
  54. os_memcpy(mgmt.bssid, hapd->own_addr, ETH_ALEN);
  55. mgmt.u.action.category = WLAN_ACTION_SA_QUERY;
  56. mgmt.u.action.u.sa_query_req.action = WLAN_SA_QUERY_REQUEST;
  57. os_memcpy(mgmt.u.action.u.sa_query_req.trans_id, trans_id,
  58. WLAN_SA_QUERY_TR_ID_LEN);
  59. end = mgmt.u.action.u.sa_query_req.trans_id + WLAN_SA_QUERY_TR_ID_LEN;
  60. if (hostapd_drv_send_mlme(hapd, &mgmt, end - (u8 *) &mgmt, 0) < 0)
  61. perror("ieee802_11_send_sa_query_req: send");
  62. }
  63. static void ieee802_11_send_sa_query_resp(struct hostapd_data *hapd,
  64. const u8 *sa, const u8 *trans_id)
  65. {
  66. struct sta_info *sta;
  67. struct ieee80211_mgmt resp;
  68. u8 *end;
  69. wpa_printf(MSG_DEBUG, "IEEE 802.11: Received SA Query Request from "
  70. MACSTR, MAC2STR(sa));
  71. wpa_hexdump(MSG_DEBUG, "IEEE 802.11: SA Query Transaction ID",
  72. trans_id, WLAN_SA_QUERY_TR_ID_LEN);
  73. sta = ap_get_sta(hapd, sa);
  74. if (sta == NULL || !(sta->flags & WLAN_STA_ASSOC)) {
  75. wpa_printf(MSG_DEBUG, "IEEE 802.11: Ignore SA Query Request "
  76. "from unassociated STA " MACSTR, MAC2STR(sa));
  77. return;
  78. }
  79. wpa_printf(MSG_DEBUG, "IEEE 802.11: Sending SA Query Response to "
  80. MACSTR, MAC2STR(sa));
  81. os_memset(&resp, 0, sizeof(resp));
  82. resp.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
  83. WLAN_FC_STYPE_ACTION);
  84. os_memcpy(resp.da, sa, ETH_ALEN);
  85. os_memcpy(resp.sa, hapd->own_addr, ETH_ALEN);
  86. os_memcpy(resp.bssid, hapd->own_addr, ETH_ALEN);
  87. resp.u.action.category = WLAN_ACTION_SA_QUERY;
  88. resp.u.action.u.sa_query_req.action = WLAN_SA_QUERY_RESPONSE;
  89. os_memcpy(resp.u.action.u.sa_query_req.trans_id, trans_id,
  90. WLAN_SA_QUERY_TR_ID_LEN);
  91. end = resp.u.action.u.sa_query_req.trans_id + WLAN_SA_QUERY_TR_ID_LEN;
  92. if (hostapd_drv_send_mlme(hapd, &resp, end - (u8 *) &resp, 0) < 0)
  93. perror("ieee80211_mgmt_sa_query_request: send");
  94. }
  95. void ieee802_11_sa_query_action(struct hostapd_data *hapd, const u8 *sa,
  96. const u8 action_type, const u8 *trans_id)
  97. {
  98. struct sta_info *sta;
  99. int i;
  100. if (action_type == WLAN_SA_QUERY_REQUEST) {
  101. ieee802_11_send_sa_query_resp(hapd, sa, trans_id);
  102. return;
  103. }
  104. if (action_type != WLAN_SA_QUERY_RESPONSE) {
  105. wpa_printf(MSG_DEBUG, "IEEE 802.11: Unexpected SA Query "
  106. "Action %d", action_type);
  107. return;
  108. }
  109. wpa_printf(MSG_DEBUG, "IEEE 802.11: Received SA Query Response from "
  110. MACSTR, MAC2STR(sa));
  111. wpa_hexdump(MSG_DEBUG, "IEEE 802.11: SA Query Transaction ID",
  112. trans_id, WLAN_SA_QUERY_TR_ID_LEN);
  113. /* MLME-SAQuery.confirm */
  114. sta = ap_get_sta(hapd, sa);
  115. if (sta == NULL || sta->sa_query_trans_id == NULL) {
  116. wpa_printf(MSG_DEBUG, "IEEE 802.11: No matching STA with "
  117. "pending SA Query request found");
  118. return;
  119. }
  120. for (i = 0; i < sta->sa_query_count; i++) {
  121. if (os_memcmp(sta->sa_query_trans_id +
  122. i * WLAN_SA_QUERY_TR_ID_LEN,
  123. trans_id, WLAN_SA_QUERY_TR_ID_LEN) == 0)
  124. break;
  125. }
  126. if (i >= sta->sa_query_count) {
  127. wpa_printf(MSG_DEBUG, "IEEE 802.11: No matching SA Query "
  128. "transaction identifier found");
  129. return;
  130. }
  131. hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
  132. HOSTAPD_LEVEL_DEBUG,
  133. "Reply to pending SA Query received");
  134. ap_sta_stop_sa_query(hapd, sta);
  135. }
  136. #endif /* CONFIG_IEEE80211W */
  137. u8 * hostapd_eid_ext_capab(struct hostapd_data *hapd, u8 *eid)
  138. {
  139. u8 *pos = eid;
  140. u8 len = 0;
  141. if (hapd->conf->tdls & (TDLS_PROHIBIT | TDLS_PROHIBIT_CHAN_SWITCH))
  142. len = 5;
  143. if (len < 4 && hapd->conf->interworking)
  144. len = 4;
  145. if (len == 0)
  146. return eid;
  147. *pos++ = WLAN_EID_EXT_CAPAB;
  148. *pos++ = len;
  149. *pos++ = 0x00;
  150. *pos++ = 0x00;
  151. *pos++ = 0x00;
  152. *pos = 0x00;
  153. if (hapd->conf->time_advertisement == 2)
  154. *pos |= 0x08; /* Bit 27 - UTC TSF Offset */
  155. if (hapd->conf->interworking)
  156. *pos |= 0x80; /* Bit 31 - Interworking */
  157. pos++;
  158. if (len < 5)
  159. return pos;
  160. *pos = 0x00;
  161. if (hapd->conf->tdls & TDLS_PROHIBIT)
  162. *pos |= 0x40; /* Bit 38 - TDLS Prohibited */
  163. if (hapd->conf->tdls & TDLS_PROHIBIT_CHAN_SWITCH)
  164. *pos |= 0x80; /* Bit 39 - TDLS Channel Switching Prohibited */
  165. pos++;
  166. return pos;
  167. }
  168. u8 * hostapd_eid_interworking(struct hostapd_data *hapd, u8 *eid)
  169. {
  170. u8 *pos = eid;
  171. #ifdef CONFIG_INTERWORKING
  172. u8 *len;
  173. if (!hapd->conf->interworking)
  174. return eid;
  175. *pos++ = WLAN_EID_INTERWORKING;
  176. len = pos++;
  177. *pos = hapd->conf->access_network_type;
  178. if (hapd->conf->internet)
  179. *pos |= INTERWORKING_ANO_INTERNET;
  180. if (hapd->conf->asra)
  181. *pos |= INTERWORKING_ANO_ASRA;
  182. if (hapd->conf->esr)
  183. *pos |= INTERWORKING_ANO_ESR;
  184. if (hapd->conf->uesa)
  185. *pos |= INTERWORKING_ANO_UESA;
  186. pos++;
  187. if (hapd->conf->venue_info_set) {
  188. *pos++ = hapd->conf->venue_group;
  189. *pos++ = hapd->conf->venue_type;
  190. }
  191. if (!is_zero_ether_addr(hapd->conf->hessid)) {
  192. os_memcpy(pos, hapd->conf->hessid, ETH_ALEN);
  193. pos += ETH_ALEN;
  194. }
  195. *len = pos - len - 1;
  196. #endif /* CONFIG_INTERWORKING */
  197. return pos;
  198. }
  199. u8 * hostapd_eid_adv_proto(struct hostapd_data *hapd, u8 *eid)
  200. {
  201. u8 *pos = eid;
  202. #ifdef CONFIG_INTERWORKING
  203. /* TODO: Separate configuration for ANQP? */
  204. if (!hapd->conf->interworking)
  205. return eid;
  206. *pos++ = WLAN_EID_ADV_PROTO;
  207. *pos++ = 2;
  208. *pos++ = 0x7F; /* Query Response Length Limit | PAME-BI */
  209. *pos++ = ACCESS_NETWORK_QUERY_PROTOCOL;
  210. #endif /* CONFIG_INTERWORKING */
  211. return pos;
  212. }
  213. u8 * hostapd_eid_roaming_consortium(struct hostapd_data *hapd, u8 *eid)
  214. {
  215. u8 *pos = eid;
  216. #ifdef CONFIG_INTERWORKING
  217. u8 *len;
  218. unsigned int i, count;
  219. if (!hapd->conf->interworking ||
  220. hapd->conf->roaming_consortium == NULL ||
  221. hapd->conf->roaming_consortium_count == 0)
  222. return eid;
  223. *pos++ = WLAN_EID_ROAMING_CONSORTIUM;
  224. len = pos++;
  225. /* Number of ANQP OIs (in addition to the max 3 listed here) */
  226. if (hapd->conf->roaming_consortium_count > 3 + 255)
  227. *pos++ = 255;
  228. else if (hapd->conf->roaming_consortium_count > 3)
  229. *pos++ = hapd->conf->roaming_consortium_count - 3;
  230. else
  231. *pos++ = 0;
  232. /* OU #1 and #2 Lengths */
  233. *pos = hapd->conf->roaming_consortium[0].len;
  234. if (hapd->conf->roaming_consortium_count > 1)
  235. *pos |= hapd->conf->roaming_consortium[1].len << 4;
  236. pos++;
  237. if (hapd->conf->roaming_consortium_count > 3)
  238. count = 3;
  239. else
  240. count = hapd->conf->roaming_consortium_count;
  241. for (i = 0; i < count; i++) {
  242. os_memcpy(pos, hapd->conf->roaming_consortium[i].oi,
  243. hapd->conf->roaming_consortium[i].len);
  244. pos += hapd->conf->roaming_consortium[i].len;
  245. }
  246. *len = pos - len - 1;
  247. #endif /* CONFIG_INTERWORKING */
  248. return pos;
  249. }
  250. u8 * hostapd_eid_time_adv(struct hostapd_data *hapd, u8 *eid)
  251. {
  252. if (hapd->conf->time_advertisement != 2)
  253. return eid;
  254. if (hapd->time_adv == NULL &&
  255. hostapd_update_time_adv(hapd) < 0)
  256. return eid;
  257. if (hapd->time_adv == NULL)
  258. return eid;
  259. os_memcpy(eid, wpabuf_head(hapd->time_adv),
  260. wpabuf_len(hapd->time_adv));
  261. eid += wpabuf_len(hapd->time_adv);
  262. return eid;
  263. }
  264. u8 * hostapd_eid_time_zone(struct hostapd_data *hapd, u8 *eid)
  265. {
  266. size_t len;
  267. if (hapd->conf->time_advertisement != 2)
  268. return eid;
  269. len = os_strlen(hapd->conf->time_zone);
  270. *eid++ = WLAN_EID_TIME_ZONE;
  271. *eid++ = len;
  272. os_memcpy(eid, hapd->conf->time_zone, len);
  273. eid += len;
  274. return eid;
  275. }
  276. int hostapd_update_time_adv(struct hostapd_data *hapd)
  277. {
  278. const int elen = 2 + 1 + 10 + 5 + 1;
  279. struct os_time t;
  280. struct os_tm tm;
  281. u8 *pos;
  282. if (hapd->conf->time_advertisement != 2)
  283. return 0;
  284. if (os_get_time(&t) < 0 || os_gmtime(t.sec, &tm) < 0)
  285. return -1;
  286. if (!hapd->time_adv) {
  287. hapd->time_adv = wpabuf_alloc(elen);
  288. if (hapd->time_adv == NULL)
  289. return -1;
  290. pos = wpabuf_put(hapd->time_adv, elen);
  291. } else
  292. pos = wpabuf_mhead_u8(hapd->time_adv);
  293. *pos++ = WLAN_EID_TIME_ADVERTISEMENT;
  294. *pos++ = 1 + 10 + 5 + 1;
  295. *pos++ = 2; /* UTC time at which the TSF timer is 0 */
  296. /* Time Value at TSF 0 */
  297. /* FIX: need to calculate this based on the current TSF value */
  298. WPA_PUT_LE16(pos, tm.year); /* Year */
  299. pos += 2;
  300. *pos++ = tm.month; /* Month */
  301. *pos++ = tm.day; /* Day of month */
  302. *pos++ = tm.hour; /* Hours */
  303. *pos++ = tm.min; /* Minutes */
  304. *pos++ = tm.sec; /* Seconds */
  305. WPA_PUT_LE16(pos, 0); /* Milliseconds (not used) */
  306. pos += 2;
  307. *pos++ = 0; /* Reserved */
  308. /* Time Error */
  309. /* TODO: fill in an estimate on the error */
  310. *pos++ = 0;
  311. *pos++ = 0;
  312. *pos++ = 0;
  313. *pos++ = 0;
  314. *pos++ = 0;
  315. *pos++ = hapd->time_update_counter++;
  316. return 0;
  317. }