ibss_rsn.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  1. /*
  2. * wpa_supplicant - IBSS RSN
  3. * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. */
  14. #include "includes.h"
  15. #include "common.h"
  16. #include "wpa_supplicant_i.h"
  17. #include "wpa.h"
  18. #include "wpa_ie.h"
  19. #include "../hostapd/wpa.h"
  20. #include "ibss_rsn.h"
  21. static void ibss_rsn_free(struct ibss_rsn_peer *peer)
  22. {
  23. wpa_auth_sta_deinit(peer->auth);
  24. wpa_sm_deinit(peer->supp);
  25. os_free(peer);
  26. }
  27. static int supp_ether_send(void *ctx, const u8 *dest, u16 proto, const u8 *buf,
  28. size_t len)
  29. {
  30. /* struct ibss_rsn_peer *peer = ctx; */
  31. wpa_printf(MSG_DEBUG, "SUPP: %s(dest=" MACSTR " proto=0x%04x "
  32. "len=%lu)",
  33. __func__, MAC2STR(dest), proto, (unsigned long) len);
  34. /* TODO: send EAPOL frame */
  35. return 0;
  36. }
  37. static u8 * supp_alloc_eapol(void *ctx, u8 type, const void *data,
  38. u16 data_len, size_t *msg_len, void **data_pos)
  39. {
  40. struct ieee802_1x_hdr *hdr;
  41. wpa_printf(MSG_DEBUG, "SUPP: %s(type=%d data_len=%d)",
  42. __func__, type, data_len);
  43. *msg_len = sizeof(*hdr) + data_len;
  44. hdr = os_malloc(*msg_len);
  45. if (hdr == NULL)
  46. return NULL;
  47. hdr->version = 2;
  48. hdr->type = type;
  49. hdr->length = host_to_be16(data_len);
  50. if (data)
  51. os_memcpy(hdr + 1, data, data_len);
  52. else
  53. os_memset(hdr + 1, 0, data_len);
  54. if (data_pos)
  55. *data_pos = hdr + 1;
  56. return (u8 *) hdr;
  57. }
  58. static int supp_get_beacon_ie(void *ctx)
  59. {
  60. wpa_printf(MSG_DEBUG, "SUPP: %s", __func__);
  61. /* TODO */
  62. return -1;
  63. }
  64. static int supp_set_key(void *ctx, wpa_alg alg,
  65. const u8 *addr, int key_idx, int set_tx,
  66. const u8 *seq, size_t seq_len,
  67. const u8 *key, size_t key_len)
  68. {
  69. wpa_printf(MSG_DEBUG, "SUPP: %s(alg=%d addr=" MACSTR " key_idx=%d "
  70. "set_tx=%d)",
  71. __func__, alg, MAC2STR(addr), key_idx, set_tx);
  72. wpa_hexdump(MSG_DEBUG, "SUPP: set_key - seq", seq, seq_len);
  73. wpa_hexdump(MSG_DEBUG, "SUPP: set_key - key", key, key_len);
  74. return 0;
  75. }
  76. static int supp_mlme_setprotection(void *ctx, const u8 *addr,
  77. int protection_type, int key_type)
  78. {
  79. wpa_printf(MSG_DEBUG, "SUPP: %s(addr=" MACSTR " protection_type=%d "
  80. "key_type=%d)",
  81. __func__, MAC2STR(addr), protection_type, key_type);
  82. return 0;
  83. }
  84. static void supp_cancel_auth_timeout(void *ctx)
  85. {
  86. wpa_printf(MSG_DEBUG, "SUPP: %s", __func__);
  87. }
  88. int ibss_rsn_supp_init(struct ibss_rsn_peer *peer, const u8 *own_addr,
  89. const u8 *psk)
  90. {
  91. struct wpa_sm_ctx *ctx = os_zalloc(sizeof(*ctx));
  92. if (ctx == NULL)
  93. return -1;
  94. ctx->ctx = peer;
  95. ctx->ether_send = supp_ether_send;
  96. ctx->get_beacon_ie = supp_get_beacon_ie;
  97. ctx->alloc_eapol = supp_alloc_eapol;
  98. ctx->set_key = supp_set_key;
  99. ctx->mlme_setprotection = supp_mlme_setprotection;
  100. ctx->cancel_auth_timeout = supp_cancel_auth_timeout;
  101. peer->supp = wpa_sm_init(ctx);
  102. if (peer->supp == NULL) {
  103. wpa_printf(MSG_DEBUG, "SUPP: wpa_sm_init() failed");
  104. return -1;
  105. }
  106. wpa_sm_set_own_addr(peer->supp, own_addr);
  107. wpa_sm_set_param(peer->supp, WPA_PARAM_RSN_ENABLED, 1);
  108. wpa_sm_set_param(peer->supp, WPA_PARAM_PROTO, WPA_PROTO_RSN);
  109. wpa_sm_set_param(peer->supp, WPA_PARAM_PAIRWISE, WPA_CIPHER_CCMP);
  110. wpa_sm_set_param(peer->supp, WPA_PARAM_GROUP, WPA_CIPHER_CCMP);
  111. wpa_sm_set_param(peer->supp, WPA_PARAM_KEY_MGMT, WPA_KEY_MGMT_PSK);
  112. wpa_sm_set_pmk(peer->supp, psk, PMK_LEN);
  113. #if 0 /* TODO? */
  114. peer->supp_ie_len = sizeof(peer->supp_ie);
  115. if (wpa_sm_set_assoc_wpa_ie_default(peer->supp, peer->supp_ie,
  116. &peer->supp_ie_len) < 0) {
  117. wpa_printf(MSG_DEBUG, "SUPP: wpa_sm_set_assoc_wpa_ie_default()"
  118. " failed");
  119. return -1;
  120. }
  121. #endif
  122. wpa_sm_notify_assoc(peer->supp, peer->addr);
  123. return 0;
  124. }
  125. static void auth_logger(void *ctx, const u8 *addr, logger_level level,
  126. const char *txt)
  127. {
  128. if (addr)
  129. wpa_printf(MSG_DEBUG, "AUTH: " MACSTR " - %s",
  130. MAC2STR(addr), txt);
  131. else
  132. wpa_printf(MSG_DEBUG, "AUTH: %s", txt);
  133. }
  134. static const u8 * auth_get_psk(void *ctx, const u8 *addr, const u8 *prev_psk)
  135. {
  136. struct ibss_rsn *ibss_rsn = ctx;
  137. wpa_printf(MSG_DEBUG, "AUTH: %s (addr=" MACSTR " prev_psk=%p)",
  138. __func__, MAC2STR(addr), prev_psk);
  139. if (prev_psk)
  140. return NULL;
  141. return ibss_rsn->psk;
  142. }
  143. static int auth_send_eapol(void *ctx, const u8 *addr, const u8 *data,
  144. size_t data_len, int encrypt)
  145. {
  146. /* struct ibss_rsn *ibss_rsn = ctx; */
  147. wpa_printf(MSG_DEBUG, "AUTH: %s(addr=" MACSTR " data_len=%lu "
  148. "encrypt=%d)",
  149. __func__, MAC2STR(addr), (unsigned long) data_len, encrypt);
  150. /* TODO: send EAPOL frame */
  151. return 0;
  152. }
  153. static int ibss_rsn_auth_init_group(struct ibss_rsn *ibss_rsn,
  154. const u8 *own_addr)
  155. {
  156. struct wpa_auth_config conf;
  157. struct wpa_auth_callbacks cb;
  158. wpa_printf(MSG_DEBUG, "AUTH: Initializing group state machine");
  159. os_memset(&conf, 0, sizeof(conf));
  160. conf.wpa = 2;
  161. conf.wpa_key_mgmt = WPA_KEY_MGMT_PSK;
  162. conf.wpa_pairwise = WPA_CIPHER_CCMP;
  163. conf.rsn_pairwise = WPA_CIPHER_CCMP;
  164. conf.wpa_group = WPA_CIPHER_CCMP;
  165. conf.eapol_version = 2;
  166. os_memset(&cb, 0, sizeof(cb));
  167. cb.ctx = ibss_rsn;
  168. cb.logger = auth_logger;
  169. cb.send_eapol = auth_send_eapol;
  170. cb.get_psk = auth_get_psk;
  171. ibss_rsn->auth_group = wpa_init(own_addr, &conf, &cb);
  172. if (ibss_rsn->auth_group == NULL) {
  173. wpa_printf(MSG_DEBUG, "AUTH: wpa_init() failed");
  174. return -1;
  175. }
  176. return 0;
  177. }
  178. static int ibss_rsn_auth_init(struct ibss_rsn *ibss_rsn,
  179. struct ibss_rsn_peer *peer)
  180. {
  181. peer->auth = wpa_auth_sta_init(ibss_rsn->auth_group, peer->addr);
  182. if (peer->auth == NULL) {
  183. wpa_printf(MSG_DEBUG, "AUTH: wpa_auth_sta_init() failed");
  184. return -1;
  185. }
  186. #if 0 /* TODO: get peer RSN IE with Probe Request */
  187. if (wpa_validate_wpa_ie(ibss_rsn->auth_group, peer->auth, PEER_IE,
  188. PEER_IE_LEN, NULL, 0) != WPA_IE_OK) {
  189. wpa_printf(MSG_DEBUG, "AUTH: wpa_validate_wpa_ie() failed");
  190. return -1;
  191. }
  192. #endif
  193. wpa_auth_sm_event(peer->auth, WPA_ASSOC);
  194. wpa_auth_sta_associated(ibss_rsn->auth_group, peer->auth);
  195. return 0;
  196. }
  197. int ibss_rsn_start(struct ibss_rsn *ibss_rsn, const u8 *addr)
  198. {
  199. struct ibss_rsn_peer *peer;
  200. wpa_printf(MSG_DEBUG, "RSN: Starting IBSS Authenticator and "
  201. "Supplicant for peer " MACSTR, MAC2STR(addr));
  202. peer = os_zalloc(sizeof(*peer));
  203. if (peer == NULL)
  204. return -1;
  205. os_memcpy(peer->addr, addr, ETH_ALEN);
  206. if (ibss_rsn_supp_init(peer, ibss_rsn->wpa_s->own_addr, ibss_rsn->psk)
  207. < 0) {
  208. ibss_rsn_free(peer);
  209. return -1;
  210. }
  211. if (ibss_rsn_auth_init(ibss_rsn, peer) < 0) {
  212. ibss_rsn_free(peer);
  213. return -1;
  214. }
  215. peer->next = ibss_rsn->peers;
  216. ibss_rsn->peers = peer;
  217. return 0;
  218. }
  219. struct ibss_rsn * ibss_rsn_init(struct wpa_supplicant *wpa_s)
  220. {
  221. struct ibss_rsn *ibss_rsn;
  222. ibss_rsn = os_zalloc(sizeof(*ibss_rsn));
  223. if (ibss_rsn == NULL)
  224. return NULL;
  225. ibss_rsn->wpa_s = wpa_s;
  226. if (ibss_rsn_auth_init_group(ibss_rsn, wpa_s->own_addr) < 0) {
  227. ibss_rsn_deinit(ibss_rsn);
  228. return NULL;
  229. }
  230. return ibss_rsn;
  231. }
  232. void ibss_rsn_deinit(struct ibss_rsn *ibss_rsn)
  233. {
  234. struct ibss_rsn_peer *peer, *prev;
  235. if (ibss_rsn == NULL)
  236. return;
  237. peer = ibss_rsn->peers;
  238. while (peer) {
  239. prev = peer;
  240. peer = peer->next;
  241. ibss_rsn_free(prev);
  242. }
  243. wpa_deinit(ibss_rsn->auth_group);
  244. os_free(ibss_rsn);
  245. }