ibss_rsn.c 7.6 KB

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