mesh_mpm.c 26 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028
  1. /*
  2. * WPA Supplicant - Basic mesh peer management
  3. * Copyright (c) 2013-2014, cozybit, Inc. All rights reserved.
  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 "utils/eloop.h"
  11. #include "common/ieee802_11_defs.h"
  12. #include "ap/hostapd.h"
  13. #include "ap/sta_info.h"
  14. #include "ap/ieee802_11.h"
  15. #include "wpa_supplicant_i.h"
  16. #include "driver_i.h"
  17. #include "mesh_mpm.h"
  18. #include "mesh_rsn.h"
  19. struct mesh_peer_mgmt_ie {
  20. const u8 *proto_id;
  21. const u8 *llid;
  22. const u8 *plid;
  23. const u8 *reason;
  24. const u8 *pmk;
  25. };
  26. static void plink_timer(void *eloop_ctx, void *user_data);
  27. enum plink_event {
  28. PLINK_UNDEFINED,
  29. OPN_ACPT,
  30. OPN_RJCT,
  31. OPN_IGNR,
  32. CNF_ACPT,
  33. CNF_RJCT,
  34. CNF_IGNR,
  35. CLS_ACPT,
  36. CLS_IGNR
  37. };
  38. static const char * const mplstate[] = {
  39. [PLINK_LISTEN] = "LISTEN",
  40. [PLINK_OPEN_SENT] = "OPEN_SENT",
  41. [PLINK_OPEN_RCVD] = "OPEN_RCVD",
  42. [PLINK_CNF_RCVD] = "CNF_RCVD",
  43. [PLINK_ESTAB] = "ESTAB",
  44. [PLINK_HOLDING] = "HOLDING",
  45. [PLINK_BLOCKED] = "BLOCKED"
  46. };
  47. static const char * const mplevent[] = {
  48. [PLINK_UNDEFINED] = "UNDEFINED",
  49. [OPN_ACPT] = "OPN_ACPT",
  50. [OPN_RJCT] = "OPN_RJCT",
  51. [OPN_IGNR] = "OPN_IGNR",
  52. [CNF_ACPT] = "CNF_ACPT",
  53. [CNF_RJCT] = "CNF_RJCT",
  54. [CNF_IGNR] = "CNF_IGNR",
  55. [CLS_ACPT] = "CLS_ACPT",
  56. [CLS_IGNR] = "CLS_IGNR"
  57. };
  58. static int mesh_mpm_parse_peer_mgmt(struct wpa_supplicant *wpa_s,
  59. u8 action_field,
  60. const u8 *ie, size_t len,
  61. struct mesh_peer_mgmt_ie *mpm_ie)
  62. {
  63. os_memset(mpm_ie, 0, sizeof(*mpm_ie));
  64. /* remove optional PMK at end */
  65. if (len >= 16) {
  66. len -= 16;
  67. mpm_ie->pmk = ie + len - 16;
  68. }
  69. if ((action_field == PLINK_OPEN && len != 4) ||
  70. (action_field == PLINK_CONFIRM && len != 6) ||
  71. (action_field == PLINK_CLOSE && len != 6 && len != 8)) {
  72. wpa_msg(wpa_s, MSG_DEBUG, "MPM: Invalid peer mgmt ie");
  73. return -1;
  74. }
  75. /* required fields */
  76. if (len < 4)
  77. return -1;
  78. mpm_ie->proto_id = ie;
  79. mpm_ie->llid = ie + 2;
  80. ie += 4;
  81. len -= 4;
  82. /* close reason is always present at end for close */
  83. if (action_field == PLINK_CLOSE) {
  84. if (len < 2)
  85. return -1;
  86. mpm_ie->reason = ie + len - 2;
  87. len -= 2;
  88. }
  89. /* plid, present for confirm, and possibly close */
  90. if (len)
  91. mpm_ie->plid = ie;
  92. return 0;
  93. }
  94. static int plink_free_count(struct hostapd_data *hapd)
  95. {
  96. if (hapd->max_plinks > hapd->num_plinks)
  97. return hapd->max_plinks - hapd->num_plinks;
  98. return 0;
  99. }
  100. static u16 copy_supp_rates(struct wpa_supplicant *wpa_s,
  101. struct sta_info *sta,
  102. struct ieee802_11_elems *elems)
  103. {
  104. if (!elems->supp_rates) {
  105. wpa_msg(wpa_s, MSG_ERROR, "no supported rates from " MACSTR,
  106. MAC2STR(sta->addr));
  107. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  108. }
  109. if (elems->supp_rates_len + elems->ext_supp_rates_len >
  110. sizeof(sta->supported_rates)) {
  111. wpa_msg(wpa_s, MSG_ERROR,
  112. "Invalid supported rates element length " MACSTR
  113. " %d+%d", MAC2STR(sta->addr), elems->supp_rates_len,
  114. elems->ext_supp_rates_len);
  115. return WLAN_STATUS_UNSPECIFIED_FAILURE;
  116. }
  117. sta->supported_rates_len = merge_byte_arrays(
  118. sta->supported_rates, sizeof(sta->supported_rates),
  119. elems->supp_rates, elems->supp_rates_len,
  120. elems->ext_supp_rates, elems->ext_supp_rates_len);
  121. return WLAN_STATUS_SUCCESS;
  122. }
  123. /* return true if elems from a neighbor match this MBSS */
  124. static Boolean matches_local(struct wpa_supplicant *wpa_s,
  125. struct ieee802_11_elems *elems)
  126. {
  127. struct mesh_conf *mconf = wpa_s->ifmsh->mconf;
  128. if (elems->mesh_config_len < 5)
  129. return FALSE;
  130. return (mconf->meshid_len == elems->mesh_id_len &&
  131. os_memcmp(mconf->meshid, elems->mesh_id,
  132. elems->mesh_id_len) == 0 &&
  133. mconf->mesh_pp_id == elems->mesh_config[0] &&
  134. mconf->mesh_pm_id == elems->mesh_config[1] &&
  135. mconf->mesh_cc_id == elems->mesh_config[2] &&
  136. mconf->mesh_sp_id == elems->mesh_config[3] &&
  137. mconf->mesh_auth_id == elems->mesh_config[4]);
  138. }
  139. /* check if local link id is already used with another peer */
  140. static Boolean llid_in_use(struct wpa_supplicant *wpa_s, u16 llid)
  141. {
  142. struct sta_info *sta;
  143. struct hostapd_data *hapd = wpa_s->ifmsh->bss[0];
  144. for (sta = hapd->sta_list; sta; sta = sta->next) {
  145. if (sta->my_lid == llid)
  146. return TRUE;
  147. }
  148. return FALSE;
  149. }
  150. /* generate an llid for a link and set to initial state */
  151. static void mesh_mpm_init_link(struct wpa_supplicant *wpa_s,
  152. struct sta_info *sta)
  153. {
  154. u16 llid;
  155. do {
  156. if (os_get_random((u8 *) &llid, sizeof(llid)) < 0)
  157. continue;
  158. } while (!llid || llid_in_use(wpa_s, llid));
  159. sta->my_lid = llid;
  160. sta->peer_lid = 0;
  161. sta->plink_state = PLINK_LISTEN;
  162. }
  163. static void mesh_mpm_send_plink_action(struct wpa_supplicant *wpa_s,
  164. struct sta_info *sta,
  165. enum plink_action_field type,
  166. u16 close_reason)
  167. {
  168. struct wpabuf *buf;
  169. struct hostapd_iface *ifmsh = wpa_s->ifmsh;
  170. struct hostapd_data *bss = ifmsh->bss[0];
  171. struct mesh_conf *conf = ifmsh->mconf;
  172. u8 supp_rates[2 + 2 + 32];
  173. #ifdef CONFIG_IEEE80211N
  174. u8 ht_capa_oper[2 + 26 + 2 + 22];
  175. #endif /* CONFIG_IEEE80211N */
  176. u8 *pos, *cat;
  177. u8 ie_len, add_plid = 0;
  178. int ret;
  179. int ampe = conf->security & MESH_CONF_SEC_AMPE;
  180. size_t buf_len;
  181. if (!sta)
  182. return;
  183. buf_len = 2 + /* capability info */
  184. 2 + /* AID */
  185. 2 + 8 + /* supported rates */
  186. 2 + (32 - 8) +
  187. 2 + 32 + /* mesh ID */
  188. 2 + 7 + /* mesh config */
  189. 2 + 23 + /* peering management */
  190. 2 + 96 + /* AMPE */
  191. 2 + 16; /* MIC */
  192. #ifdef CONFIG_IEEE80211N
  193. if (type != PLINK_CLOSE && wpa_s->mesh_ht_enabled) {
  194. buf_len += 2 + 26 + /* HT capabilities */
  195. 2 + 22; /* HT operation */
  196. }
  197. #endif /* CONFIG_IEEE80211N */
  198. buf = wpabuf_alloc(buf_len);
  199. if (!buf)
  200. return;
  201. cat = wpabuf_mhead_u8(buf);
  202. wpabuf_put_u8(buf, WLAN_ACTION_SELF_PROTECTED);
  203. wpabuf_put_u8(buf, type);
  204. if (type != PLINK_CLOSE) {
  205. u8 info;
  206. /* capability info */
  207. wpabuf_put_le16(buf, ampe ? IEEE80211_CAP_PRIVACY : 0);
  208. /* aid */
  209. if (type == PLINK_CONFIRM)
  210. wpabuf_put_le16(buf, sta->peer_lid);
  211. /* IE: supp + ext. supp rates */
  212. pos = hostapd_eid_supp_rates(bss, supp_rates);
  213. pos = hostapd_eid_ext_supp_rates(bss, pos);
  214. wpabuf_put_data(buf, supp_rates, pos - supp_rates);
  215. /* IE: Mesh ID */
  216. wpabuf_put_u8(buf, WLAN_EID_MESH_ID);
  217. wpabuf_put_u8(buf, conf->meshid_len);
  218. wpabuf_put_data(buf, conf->meshid, conf->meshid_len);
  219. /* IE: mesh conf */
  220. wpabuf_put_u8(buf, WLAN_EID_MESH_CONFIG);
  221. wpabuf_put_u8(buf, 7);
  222. wpabuf_put_u8(buf, conf->mesh_pp_id);
  223. wpabuf_put_u8(buf, conf->mesh_pm_id);
  224. wpabuf_put_u8(buf, conf->mesh_cc_id);
  225. wpabuf_put_u8(buf, conf->mesh_sp_id);
  226. wpabuf_put_u8(buf, conf->mesh_auth_id);
  227. info = (bss->num_plinks > 63 ? 63 : bss->num_plinks) << 1;
  228. /* TODO: Add Connected to Mesh Gate/AS subfields */
  229. wpabuf_put_u8(buf, info);
  230. /* always forwarding & accepting plinks for now */
  231. wpabuf_put_u8(buf, 0x1 | 0x8);
  232. } else { /* Peer closing frame */
  233. /* IE: Mesh ID */
  234. wpabuf_put_u8(buf, WLAN_EID_MESH_ID);
  235. wpabuf_put_u8(buf, conf->meshid_len);
  236. wpabuf_put_data(buf, conf->meshid, conf->meshid_len);
  237. }
  238. /* IE: Mesh Peering Management element */
  239. ie_len = 4;
  240. if (ampe)
  241. ie_len += PMKID_LEN;
  242. switch (type) {
  243. case PLINK_OPEN:
  244. break;
  245. case PLINK_CONFIRM:
  246. ie_len += 2;
  247. add_plid = 1;
  248. break;
  249. case PLINK_CLOSE:
  250. ie_len += 2;
  251. add_plid = 1;
  252. ie_len += 2; /* reason code */
  253. break;
  254. }
  255. wpabuf_put_u8(buf, WLAN_EID_PEER_MGMT);
  256. wpabuf_put_u8(buf, ie_len);
  257. /* peering protocol */
  258. if (ampe)
  259. wpabuf_put_le16(buf, 1);
  260. else
  261. wpabuf_put_le16(buf, 0);
  262. wpabuf_put_le16(buf, sta->my_lid);
  263. if (add_plid)
  264. wpabuf_put_le16(buf, sta->peer_lid);
  265. if (type == PLINK_CLOSE)
  266. wpabuf_put_le16(buf, close_reason);
  267. if (ampe) {
  268. if (sta->sae == NULL) {
  269. wpa_msg(wpa_s, MSG_INFO, "Mesh MPM: no SAE session");
  270. goto fail;
  271. }
  272. mesh_rsn_get_pmkid(wpa_s->mesh_rsn, sta,
  273. wpabuf_put(buf, PMKID_LEN));
  274. }
  275. #ifdef CONFIG_IEEE80211N
  276. if (type != PLINK_CLOSE && wpa_s->mesh_ht_enabled) {
  277. pos = hostapd_eid_ht_capabilities(bss, ht_capa_oper);
  278. pos = hostapd_eid_ht_operation(bss, pos);
  279. wpabuf_put_data(buf, ht_capa_oper, pos - ht_capa_oper);
  280. }
  281. #endif /* CONFIG_IEEE80211N */
  282. if (ampe && mesh_rsn_protect_frame(wpa_s->mesh_rsn, sta, cat, buf)) {
  283. wpa_msg(wpa_s, MSG_INFO,
  284. "Mesh MPM: failed to add AMPE and MIC IE");
  285. goto fail;
  286. }
  287. ret = wpa_drv_send_action(wpa_s, wpa_s->assoc_freq, 0,
  288. sta->addr, wpa_s->own_addr, wpa_s->own_addr,
  289. wpabuf_head(buf), wpabuf_len(buf), 0);
  290. if (ret < 0)
  291. wpa_msg(wpa_s, MSG_INFO,
  292. "Mesh MPM: failed to send peering frame");
  293. fail:
  294. wpabuf_free(buf);
  295. }
  296. /* configure peering state in ours and driver's station entry */
  297. static void
  298. wpa_mesh_set_plink_state(struct wpa_supplicant *wpa_s, struct sta_info *sta,
  299. enum mesh_plink_state state)
  300. {
  301. struct hostapd_sta_add_params params;
  302. int ret;
  303. sta->plink_state = state;
  304. os_memset(&params, 0, sizeof(params));
  305. params.addr = sta->addr;
  306. params.plink_state = state;
  307. params.set = 1;
  308. wpa_msg(wpa_s, MSG_DEBUG, "MPM set " MACSTR " into %s",
  309. MAC2STR(sta->addr), mplstate[state]);
  310. ret = wpa_drv_sta_add(wpa_s, &params);
  311. if (ret) {
  312. wpa_msg(wpa_s, MSG_ERROR, "Driver failed to set " MACSTR
  313. ": %d", MAC2STR(sta->addr), ret);
  314. }
  315. }
  316. static void mesh_mpm_fsm_restart(struct wpa_supplicant *wpa_s,
  317. struct sta_info *sta)
  318. {
  319. struct hostapd_data *hapd = wpa_s->ifmsh->bss[0];
  320. eloop_cancel_timeout(plink_timer, wpa_s, sta);
  321. if (sta->mpm_close_reason == WLAN_REASON_MESH_CLOSE_RCVD) {
  322. ap_free_sta(hapd, sta);
  323. return;
  324. }
  325. wpa_mesh_set_plink_state(wpa_s, sta, PLINK_LISTEN);
  326. sta->my_lid = sta->peer_lid = sta->mpm_close_reason = 0;
  327. sta->mpm_retries = 0;
  328. }
  329. static void plink_timer(void *eloop_ctx, void *user_data)
  330. {
  331. struct wpa_supplicant *wpa_s = eloop_ctx;
  332. struct sta_info *sta = user_data;
  333. u16 reason = 0;
  334. struct mesh_conf *conf = wpa_s->ifmsh->mconf;
  335. switch (sta->plink_state) {
  336. case PLINK_OPEN_RCVD:
  337. case PLINK_OPEN_SENT:
  338. /* retry timer */
  339. if (sta->mpm_retries < conf->dot11MeshMaxRetries) {
  340. eloop_register_timeout(
  341. conf->dot11MeshRetryTimeout / 1000,
  342. (conf->dot11MeshRetryTimeout % 1000) * 1000,
  343. plink_timer, wpa_s, sta);
  344. mesh_mpm_send_plink_action(wpa_s, sta, PLINK_OPEN, 0);
  345. sta->mpm_retries++;
  346. break;
  347. }
  348. reason = WLAN_REASON_MESH_MAX_RETRIES;
  349. /* fall through on else */
  350. case PLINK_CNF_RCVD:
  351. /* confirm timer */
  352. if (!reason)
  353. reason = WLAN_REASON_MESH_CONFIRM_TIMEOUT;
  354. sta->plink_state = PLINK_HOLDING;
  355. eloop_register_timeout(conf->dot11MeshHoldingTimeout / 1000,
  356. (conf->dot11MeshHoldingTimeout % 1000) * 1000,
  357. plink_timer, wpa_s, sta);
  358. mesh_mpm_send_plink_action(wpa_s, sta, PLINK_CLOSE, reason);
  359. break;
  360. case PLINK_HOLDING:
  361. /* holding timer */
  362. mesh_mpm_fsm_restart(wpa_s, sta);
  363. break;
  364. default:
  365. break;
  366. }
  367. }
  368. /* initiate peering with station */
  369. static void
  370. mesh_mpm_plink_open(struct wpa_supplicant *wpa_s, struct sta_info *sta,
  371. enum mesh_plink_state next_state)
  372. {
  373. struct mesh_conf *conf = wpa_s->ifmsh->mconf;
  374. eloop_cancel_timeout(plink_timer, wpa_s, sta);
  375. eloop_register_timeout(conf->dot11MeshRetryTimeout / 1000,
  376. (conf->dot11MeshRetryTimeout % 1000) * 1000,
  377. plink_timer, wpa_s, sta);
  378. mesh_mpm_send_plink_action(wpa_s, sta, PLINK_OPEN, 0);
  379. wpa_mesh_set_plink_state(wpa_s, sta, next_state);
  380. }
  381. int mesh_mpm_plink_close(struct hostapd_data *hapd,
  382. struct sta_info *sta, void *ctx)
  383. {
  384. struct wpa_supplicant *wpa_s = ctx;
  385. int reason = WLAN_REASON_MESH_PEERING_CANCELLED;
  386. if (sta) {
  387. wpa_mesh_set_plink_state(wpa_s, sta, PLINK_HOLDING);
  388. mesh_mpm_send_plink_action(wpa_s, sta, PLINK_CLOSE, reason);
  389. wpa_printf(MSG_DEBUG, "MPM closing plink sta=" MACSTR,
  390. MAC2STR(sta->addr));
  391. eloop_cancel_timeout(plink_timer, wpa_s, sta);
  392. return 0;
  393. }
  394. return 1;
  395. }
  396. void mesh_mpm_deinit(struct wpa_supplicant *wpa_s, struct hostapd_iface *ifmsh)
  397. {
  398. struct hostapd_data *hapd = ifmsh->bss[0];
  399. /* notify peers we're leaving */
  400. ap_for_each_sta(hapd, mesh_mpm_plink_close, wpa_s);
  401. hapd->num_plinks = 0;
  402. hostapd_free_stas(hapd);
  403. }
  404. /* for mesh_rsn to indicate this peer has completed authentication, and we're
  405. * ready to start AMPE */
  406. void mesh_mpm_auth_peer(struct wpa_supplicant *wpa_s, const u8 *addr)
  407. {
  408. struct hostapd_data *data = wpa_s->ifmsh->bss[0];
  409. struct hostapd_sta_add_params params;
  410. struct sta_info *sta;
  411. int ret;
  412. sta = ap_get_sta(data, addr);
  413. if (!sta) {
  414. wpa_msg(wpa_s, MSG_DEBUG, "no such mesh peer");
  415. return;
  416. }
  417. /* TODO: Should do nothing if this STA is already authenticated, but
  418. * the AP code already sets this flag. */
  419. sta->flags |= WLAN_STA_AUTH;
  420. mesh_rsn_init_ampe_sta(wpa_s, sta);
  421. os_memset(&params, 0, sizeof(params));
  422. params.addr = sta->addr;
  423. params.flags = WPA_STA_AUTHENTICATED | WPA_STA_AUTHORIZED;
  424. params.set = 1;
  425. wpa_msg(wpa_s, MSG_DEBUG, "MPM authenticating " MACSTR,
  426. MAC2STR(sta->addr));
  427. ret = wpa_drv_sta_add(wpa_s, &params);
  428. if (ret) {
  429. wpa_msg(wpa_s, MSG_ERROR,
  430. "Driver failed to set " MACSTR ": %d",
  431. MAC2STR(sta->addr), ret);
  432. }
  433. if (!sta->my_lid)
  434. mesh_mpm_init_link(wpa_s, sta);
  435. mesh_mpm_plink_open(wpa_s, sta, PLINK_OPEN_SENT);
  436. }
  437. void wpa_mesh_new_mesh_peer(struct wpa_supplicant *wpa_s, const u8 *addr,
  438. struct ieee802_11_elems *elems)
  439. {
  440. struct hostapd_sta_add_params params;
  441. struct mesh_conf *conf = wpa_s->ifmsh->mconf;
  442. struct hostapd_data *data = wpa_s->ifmsh->bss[0];
  443. struct sta_info *sta;
  444. struct wpa_ssid *ssid = wpa_s->current_ssid;
  445. int ret = 0;
  446. sta = ap_get_sta(data, addr);
  447. if (!sta) {
  448. sta = ap_sta_add(data, addr);
  449. if (!sta)
  450. return;
  451. }
  452. /* initialize sta */
  453. if (copy_supp_rates(wpa_s, sta, elems))
  454. return;
  455. mesh_mpm_init_link(wpa_s, sta);
  456. #ifdef CONFIG_IEEE80211N
  457. copy_sta_ht_capab(data, sta, elems->ht_capabilities,
  458. elems->ht_capabilities_len);
  459. update_ht_state(data, sta);
  460. #endif /* CONFIG_IEEE80211N */
  461. /* insert into driver */
  462. os_memset(&params, 0, sizeof(params));
  463. params.supp_rates = sta->supported_rates;
  464. params.supp_rates_len = sta->supported_rates_len;
  465. params.addr = addr;
  466. params.plink_state = sta->plink_state;
  467. params.aid = sta->peer_lid;
  468. params.listen_interval = 100;
  469. params.ht_capabilities = sta->ht_capabilities;
  470. params.flags |= WPA_STA_WMM;
  471. params.flags_mask |= WPA_STA_AUTHENTICATED;
  472. if (conf->security == MESH_CONF_SEC_NONE) {
  473. params.flags |= WPA_STA_AUTHORIZED;
  474. params.flags |= WPA_STA_AUTHENTICATED;
  475. } else {
  476. sta->flags |= WLAN_STA_MFP;
  477. params.flags |= WPA_STA_MFP;
  478. }
  479. ret = wpa_drv_sta_add(wpa_s, &params);
  480. if (ret) {
  481. wpa_msg(wpa_s, MSG_ERROR,
  482. "Driver failed to insert " MACSTR ": %d",
  483. MAC2STR(addr), ret);
  484. return;
  485. }
  486. if (ssid && ssid->no_auto_peer) {
  487. wpa_msg(wpa_s, MSG_INFO, "will not initiate new peer link with "
  488. MACSTR " because of no_auto_peer", MAC2STR(addr));
  489. if (data->mesh_pending_auth) {
  490. struct os_reltime age;
  491. const struct ieee80211_mgmt *mgmt;
  492. struct hostapd_frame_info fi;
  493. mgmt = wpabuf_head(data->mesh_pending_auth);
  494. os_reltime_age(&data->mesh_pending_auth_time, &age);
  495. if (age.sec < 2 &&
  496. os_memcmp(mgmt->sa, addr, ETH_ALEN) == 0) {
  497. wpa_printf(MSG_DEBUG,
  498. "mesh: Process pending Authentication frame from %u.%06u seconds ago",
  499. (unsigned int) age.sec,
  500. (unsigned int) age.usec);
  501. os_memset(&fi, 0, sizeof(fi));
  502. ieee802_11_mgmt(
  503. data,
  504. wpabuf_head(data->mesh_pending_auth),
  505. wpabuf_len(data->mesh_pending_auth),
  506. &fi);
  507. }
  508. wpabuf_free(data->mesh_pending_auth);
  509. data->mesh_pending_auth = NULL;
  510. }
  511. return;
  512. }
  513. if (conf->security == MESH_CONF_SEC_NONE)
  514. mesh_mpm_plink_open(wpa_s, sta, PLINK_OPEN_SENT);
  515. else
  516. mesh_rsn_auth_sae_sta(wpa_s, sta);
  517. }
  518. void mesh_mpm_mgmt_rx(struct wpa_supplicant *wpa_s, struct rx_mgmt *rx_mgmt)
  519. {
  520. struct hostapd_frame_info fi;
  521. os_memset(&fi, 0, sizeof(fi));
  522. fi.datarate = rx_mgmt->datarate;
  523. fi.ssi_signal = rx_mgmt->ssi_signal;
  524. ieee802_11_mgmt(wpa_s->ifmsh->bss[0], rx_mgmt->frame,
  525. rx_mgmt->frame_len, &fi);
  526. }
  527. static void mesh_mpm_plink_estab(struct wpa_supplicant *wpa_s,
  528. struct sta_info *sta)
  529. {
  530. struct hostapd_data *hapd = wpa_s->ifmsh->bss[0];
  531. struct mesh_conf *conf = wpa_s->ifmsh->mconf;
  532. u8 seq[6] = {};
  533. wpa_msg(wpa_s, MSG_INFO, "mesh plink with " MACSTR " established",
  534. MAC2STR(sta->addr));
  535. if (conf->security & MESH_CONF_SEC_AMPE) {
  536. wpa_drv_set_key(wpa_s, WPA_ALG_CCMP, sta->addr, 0, 0,
  537. seq, sizeof(seq), sta->mtk, sizeof(sta->mtk));
  538. wpa_drv_set_key(wpa_s, WPA_ALG_CCMP, sta->addr, 1, 0,
  539. seq, sizeof(seq),
  540. sta->mgtk, sizeof(sta->mgtk));
  541. wpa_drv_set_key(wpa_s, WPA_ALG_IGTK, sta->addr, 4, 0,
  542. seq, sizeof(seq),
  543. sta->mgtk, sizeof(sta->mgtk));
  544. wpa_hexdump_key(MSG_DEBUG, "mtk:", sta->mtk, sizeof(sta->mtk));
  545. wpa_hexdump_key(MSG_DEBUG, "mgtk:",
  546. sta->mgtk, sizeof(sta->mgtk));
  547. }
  548. wpa_mesh_set_plink_state(wpa_s, sta, PLINK_ESTAB);
  549. hapd->num_plinks++;
  550. sta->flags |= WLAN_STA_ASSOC;
  551. eloop_cancel_timeout(plink_timer, wpa_s, sta);
  552. /* Send ctrl event */
  553. wpa_msg_ctrl(wpa_s, MSG_INFO, MESH_PEER_CONNECTED MACSTR,
  554. MAC2STR(sta->addr));
  555. }
  556. static void mesh_mpm_fsm(struct wpa_supplicant *wpa_s, struct sta_info *sta,
  557. enum plink_event event)
  558. {
  559. struct hostapd_data *hapd = wpa_s->ifmsh->bss[0];
  560. struct mesh_conf *conf = wpa_s->ifmsh->mconf;
  561. u16 reason = 0;
  562. wpa_msg(wpa_s, MSG_DEBUG, "MPM " MACSTR " state %s event %s",
  563. MAC2STR(sta->addr), mplstate[sta->plink_state],
  564. mplevent[event]);
  565. switch (sta->plink_state) {
  566. case PLINK_LISTEN:
  567. switch (event) {
  568. case CLS_ACPT:
  569. mesh_mpm_fsm_restart(wpa_s, sta);
  570. break;
  571. case OPN_ACPT:
  572. mesh_mpm_plink_open(wpa_s, sta, PLINK_OPEN_RCVD);
  573. mesh_mpm_send_plink_action(wpa_s, sta, PLINK_CONFIRM,
  574. 0);
  575. break;
  576. default:
  577. break;
  578. }
  579. break;
  580. case PLINK_OPEN_SENT:
  581. switch (event) {
  582. case OPN_RJCT:
  583. case CNF_RJCT:
  584. reason = WLAN_REASON_MESH_CONFIG_POLICY_VIOLATION;
  585. /* fall-through */
  586. case CLS_ACPT:
  587. wpa_mesh_set_plink_state(wpa_s, sta, PLINK_HOLDING);
  588. if (!reason)
  589. reason = WLAN_REASON_MESH_CLOSE_RCVD;
  590. eloop_register_timeout(
  591. conf->dot11MeshHoldingTimeout / 1000,
  592. (conf->dot11MeshHoldingTimeout % 1000) * 1000,
  593. plink_timer, wpa_s, sta);
  594. mesh_mpm_send_plink_action(wpa_s, sta,
  595. PLINK_CLOSE, reason);
  596. break;
  597. case OPN_ACPT:
  598. /* retry timer is left untouched */
  599. wpa_mesh_set_plink_state(wpa_s, sta, PLINK_OPEN_RCVD);
  600. mesh_mpm_send_plink_action(wpa_s, sta,
  601. PLINK_CONFIRM, 0);
  602. break;
  603. case CNF_ACPT:
  604. wpa_mesh_set_plink_state(wpa_s, sta, PLINK_CNF_RCVD);
  605. eloop_register_timeout(
  606. conf->dot11MeshConfirmTimeout / 1000,
  607. (conf->dot11MeshConfirmTimeout % 1000) * 1000,
  608. plink_timer, wpa_s, sta);
  609. break;
  610. default:
  611. break;
  612. }
  613. break;
  614. case PLINK_OPEN_RCVD:
  615. switch (event) {
  616. case OPN_RJCT:
  617. case CNF_RJCT:
  618. reason = WLAN_REASON_MESH_CONFIG_POLICY_VIOLATION;
  619. /* fall-through */
  620. case CLS_ACPT:
  621. wpa_mesh_set_plink_state(wpa_s, sta, PLINK_HOLDING);
  622. if (!reason)
  623. reason = WLAN_REASON_MESH_CLOSE_RCVD;
  624. eloop_register_timeout(
  625. conf->dot11MeshHoldingTimeout / 1000,
  626. (conf->dot11MeshHoldingTimeout % 1000) * 1000,
  627. plink_timer, wpa_s, sta);
  628. sta->mpm_close_reason = reason;
  629. mesh_mpm_send_plink_action(wpa_s, sta,
  630. PLINK_CLOSE, reason);
  631. break;
  632. case OPN_ACPT:
  633. mesh_mpm_send_plink_action(wpa_s, sta,
  634. PLINK_CONFIRM, 0);
  635. break;
  636. case CNF_ACPT:
  637. if (conf->security & MESH_CONF_SEC_AMPE)
  638. mesh_rsn_derive_mtk(wpa_s, sta);
  639. mesh_mpm_plink_estab(wpa_s, sta);
  640. break;
  641. default:
  642. break;
  643. }
  644. break;
  645. case PLINK_CNF_RCVD:
  646. switch (event) {
  647. case OPN_RJCT:
  648. case CNF_RJCT:
  649. reason = WLAN_REASON_MESH_CONFIG_POLICY_VIOLATION;
  650. /* fall-through */
  651. case CLS_ACPT:
  652. wpa_mesh_set_plink_state(wpa_s, sta, PLINK_HOLDING);
  653. if (!reason)
  654. reason = WLAN_REASON_MESH_CLOSE_RCVD;
  655. eloop_register_timeout(
  656. conf->dot11MeshHoldingTimeout / 1000,
  657. (conf->dot11MeshHoldingTimeout % 1000) * 1000,
  658. plink_timer, wpa_s, sta);
  659. sta->mpm_close_reason = reason;
  660. mesh_mpm_send_plink_action(wpa_s, sta,
  661. PLINK_CLOSE, reason);
  662. break;
  663. case OPN_ACPT:
  664. mesh_mpm_plink_estab(wpa_s, sta);
  665. mesh_mpm_send_plink_action(wpa_s, sta,
  666. PLINK_CONFIRM, 0);
  667. break;
  668. default:
  669. break;
  670. }
  671. break;
  672. case PLINK_ESTAB:
  673. switch (event) {
  674. case CLS_ACPT:
  675. wpa_mesh_set_plink_state(wpa_s, sta, PLINK_HOLDING);
  676. reason = WLAN_REASON_MESH_CLOSE_RCVD;
  677. eloop_register_timeout(
  678. conf->dot11MeshHoldingTimeout / 1000,
  679. (conf->dot11MeshHoldingTimeout % 1000) * 1000,
  680. plink_timer, wpa_s, sta);
  681. sta->mpm_close_reason = reason;
  682. wpa_msg(wpa_s, MSG_INFO, "mesh plink with " MACSTR
  683. " closed with reason %d",
  684. MAC2STR(sta->addr), reason);
  685. wpa_msg_ctrl(wpa_s, MSG_INFO,
  686. MESH_PEER_DISCONNECTED MACSTR,
  687. MAC2STR(sta->addr));
  688. hapd->num_plinks--;
  689. mesh_mpm_send_plink_action(wpa_s, sta,
  690. PLINK_CLOSE, reason);
  691. break;
  692. case OPN_ACPT:
  693. mesh_mpm_send_plink_action(wpa_s, sta,
  694. PLINK_CONFIRM, 0);
  695. break;
  696. default:
  697. break;
  698. }
  699. break;
  700. case PLINK_HOLDING:
  701. switch (event) {
  702. case CLS_ACPT:
  703. mesh_mpm_fsm_restart(wpa_s, sta);
  704. break;
  705. case OPN_ACPT:
  706. case CNF_ACPT:
  707. case OPN_RJCT:
  708. case CNF_RJCT:
  709. reason = sta->mpm_close_reason;
  710. mesh_mpm_send_plink_action(wpa_s, sta,
  711. PLINK_CLOSE, reason);
  712. break;
  713. default:
  714. break;
  715. }
  716. break;
  717. default:
  718. wpa_msg(wpa_s, MSG_DEBUG,
  719. "Unsupported MPM event %s for state %s",
  720. mplevent[event], mplstate[sta->plink_state]);
  721. break;
  722. }
  723. }
  724. void mesh_mpm_action_rx(struct wpa_supplicant *wpa_s,
  725. const struct ieee80211_mgmt *mgmt, size_t len)
  726. {
  727. u8 action_field;
  728. struct hostapd_data *hapd = wpa_s->ifmsh->bss[0];
  729. struct mesh_conf *mconf = wpa_s->ifmsh->mconf;
  730. struct sta_info *sta;
  731. u16 plid = 0, llid = 0;
  732. enum plink_event event;
  733. struct ieee802_11_elems elems;
  734. struct mesh_peer_mgmt_ie peer_mgmt_ie;
  735. const u8 *ies;
  736. size_t ie_len;
  737. int ret;
  738. if (mgmt->u.action.category != WLAN_ACTION_SELF_PROTECTED)
  739. return;
  740. action_field = mgmt->u.action.u.slf_prot_action.action;
  741. if (action_field != PLINK_OPEN &&
  742. action_field != PLINK_CONFIRM &&
  743. action_field != PLINK_CLOSE)
  744. return;
  745. ies = mgmt->u.action.u.slf_prot_action.variable;
  746. ie_len = (const u8 *) mgmt + len -
  747. mgmt->u.action.u.slf_prot_action.variable;
  748. /* at least expect mesh id and peering mgmt */
  749. if (ie_len < 2 + 2) {
  750. wpa_printf(MSG_DEBUG,
  751. "MPM: Ignore too short action frame %u ie_len %u",
  752. action_field, (unsigned int) ie_len);
  753. return;
  754. }
  755. wpa_printf(MSG_DEBUG, "MPM: Received PLINK action %u", action_field);
  756. if (action_field == PLINK_OPEN || action_field == PLINK_CONFIRM) {
  757. wpa_printf(MSG_DEBUG, "MPM: Capability 0x%x",
  758. WPA_GET_LE16(ies));
  759. ies += 2; /* capability */
  760. ie_len -= 2;
  761. }
  762. if (action_field == PLINK_CONFIRM) {
  763. wpa_printf(MSG_DEBUG, "MPM: AID 0x%x", WPA_GET_LE16(ies));
  764. ies += 2; /* aid */
  765. ie_len -= 2;
  766. }
  767. /* check for mesh peering, mesh id and mesh config IEs */
  768. if (ieee802_11_parse_elems(ies, ie_len, &elems, 0) == ParseFailed) {
  769. wpa_printf(MSG_DEBUG, "MPM: Failed to parse PLINK IEs");
  770. return;
  771. }
  772. if (!elems.peer_mgmt) {
  773. wpa_printf(MSG_DEBUG,
  774. "MPM: No Mesh Peering Management element");
  775. return;
  776. }
  777. if (action_field != PLINK_CLOSE) {
  778. if (!elems.mesh_id || !elems.mesh_config) {
  779. wpa_printf(MSG_DEBUG,
  780. "MPM: No Mesh ID or Mesh Configuration element");
  781. return;
  782. }
  783. if (!matches_local(wpa_s, &elems)) {
  784. wpa_printf(MSG_DEBUG,
  785. "MPM: Mesh ID or Mesh Configuration element do not match local MBSS");
  786. return;
  787. }
  788. }
  789. ret = mesh_mpm_parse_peer_mgmt(wpa_s, action_field,
  790. elems.peer_mgmt,
  791. elems.peer_mgmt_len,
  792. &peer_mgmt_ie);
  793. if (ret) {
  794. wpa_printf(MSG_DEBUG, "MPM: Mesh parsing rejected frame");
  795. return;
  796. }
  797. /* the sender's llid is our plid and vice-versa */
  798. plid = WPA_GET_LE16(peer_mgmt_ie.llid);
  799. if (peer_mgmt_ie.plid)
  800. llid = WPA_GET_LE16(peer_mgmt_ie.plid);
  801. wpa_printf(MSG_DEBUG, "MPM: plid=0x%x llid=0x%x", plid, llid);
  802. sta = ap_get_sta(hapd, mgmt->sa);
  803. if (!sta) {
  804. wpa_printf(MSG_DEBUG, "MPM: No STA entry for peer");
  805. return;
  806. }
  807. #ifdef CONFIG_SAE
  808. /* peer is in sae_accepted? */
  809. if (sta->sae && sta->sae->state != SAE_ACCEPTED) {
  810. wpa_printf(MSG_DEBUG, "MPM: SAE not yet accepted for peer");
  811. return;
  812. }
  813. #endif /* CONFIG_SAE */
  814. if (!sta->my_lid)
  815. mesh_mpm_init_link(wpa_s, sta);
  816. if ((mconf->security & MESH_CONF_SEC_AMPE) &&
  817. mesh_rsn_process_ampe(wpa_s, sta, &elems,
  818. &mgmt->u.action.category,
  819. ies, ie_len)) {
  820. wpa_printf(MSG_DEBUG, "MPM: RSN process rejected frame");
  821. return;
  822. }
  823. if (sta->plink_state == PLINK_BLOCKED) {
  824. wpa_printf(MSG_DEBUG, "MPM: PLINK_BLOCKED");
  825. return;
  826. }
  827. /* Now we will figure out the appropriate event... */
  828. switch (action_field) {
  829. case PLINK_OPEN:
  830. if (plink_free_count(hapd) == 0) {
  831. event = OPN_IGNR;
  832. wpa_printf(MSG_INFO,
  833. "MPM: Peer link num over quota(%d)",
  834. hapd->max_plinks);
  835. } else if (sta->peer_lid && sta->peer_lid != plid) {
  836. event = OPN_IGNR;
  837. } else {
  838. sta->peer_lid = plid;
  839. event = OPN_ACPT;
  840. }
  841. break;
  842. case PLINK_CONFIRM:
  843. if (plink_free_count(hapd) == 0) {
  844. event = CNF_IGNR;
  845. wpa_printf(MSG_INFO,
  846. "MPM: Peer link num over quota(%d)",
  847. hapd->max_plinks);
  848. } else if (sta->my_lid != llid ||
  849. (sta->peer_lid && sta->peer_lid != plid)) {
  850. event = CNF_IGNR;
  851. } else {
  852. if (!sta->peer_lid)
  853. sta->peer_lid = plid;
  854. event = CNF_ACPT;
  855. }
  856. break;
  857. case PLINK_CLOSE:
  858. if (sta->plink_state == PLINK_ESTAB)
  859. /* Do not check for llid or plid. This does not
  860. * follow the standard but since multiple plinks
  861. * per cand are not supported, it is necessary in
  862. * order to avoid a livelock when MP A sees an
  863. * establish peer link to MP B but MP B does not
  864. * see it. This can be caused by a timeout in
  865. * B's peer link establishment or B being
  866. * restarted.
  867. */
  868. event = CLS_ACPT;
  869. else if (sta->peer_lid != plid)
  870. event = CLS_IGNR;
  871. else if (peer_mgmt_ie.plid && sta->my_lid != llid)
  872. event = CLS_IGNR;
  873. else
  874. event = CLS_ACPT;
  875. break;
  876. default:
  877. /*
  878. * This cannot be hit due to the action_field check above, but
  879. * compilers may not be able to figure that out and can warn
  880. * about uninitialized event below.
  881. */
  882. return;
  883. }
  884. mesh_mpm_fsm(wpa_s, sta, event);
  885. }
  886. /* called by ap_free_sta */
  887. void mesh_mpm_free_sta(struct sta_info *sta)
  888. {
  889. eloop_cancel_timeout(plink_timer, ELOOP_ALL_CTX, sta);
  890. eloop_cancel_timeout(mesh_auth_timer, ELOOP_ALL_CTX, sta);
  891. }