mesh_mpm.c 30 KB

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