mesh_mpm.c 22 KB

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