wpa.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821
  1. /*
  2. * Copyright 2002-2004, Instant802 Networks, Inc.
  3. * Copyright 2008, 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. #include <linux/netdevice.h>
  10. #include <linux/types.h>
  11. #include <linux/skbuff.h>
  12. #include <linux/compiler.h>
  13. #include <linux/ieee80211.h>
  14. #include <linux/gfp.h>
  15. #include <asm/unaligned.h>
  16. #include <net/mac80211.h>
  17. #include <crypto/aes.h>
  18. #include "ieee80211_i.h"
  19. #include "michael.h"
  20. #include "tkip.h"
  21. #include "aes_ccm.h"
  22. #include "aes_cmac.h"
  23. #include "wpa.h"
  24. ieee80211_tx_result
  25. ieee80211_tx_h_michael_mic_add(struct ieee80211_tx_data *tx)
  26. {
  27. u8 *data, *key, *mic;
  28. size_t data_len;
  29. unsigned int hdrlen;
  30. struct ieee80211_hdr *hdr;
  31. struct sk_buff *skb = tx->skb;
  32. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  33. int tail;
  34. hdr = (struct ieee80211_hdr *)skb->data;
  35. if (!tx->key || tx->key->conf.cipher != WLAN_CIPHER_SUITE_TKIP ||
  36. skb->len < 24 || !ieee80211_is_data_present(hdr->frame_control))
  37. return TX_CONTINUE;
  38. hdrlen = ieee80211_hdrlen(hdr->frame_control);
  39. if (skb->len < hdrlen)
  40. return TX_DROP;
  41. data = skb->data + hdrlen;
  42. data_len = skb->len - hdrlen;
  43. if (unlikely(info->flags & IEEE80211_TX_INTFL_TKIP_MIC_FAILURE)) {
  44. /* Need to use software crypto for the test */
  45. info->control.hw_key = NULL;
  46. }
  47. if (info->control.hw_key &&
  48. (info->flags & IEEE80211_TX_CTL_DONTFRAG ||
  49. tx->local->ops->set_frag_threshold) &&
  50. !(tx->key->conf.flags & IEEE80211_KEY_FLAG_GENERATE_MMIC)) {
  51. /* hwaccel - with no need for SW-generated MMIC */
  52. return TX_CONTINUE;
  53. }
  54. tail = MICHAEL_MIC_LEN;
  55. if (!info->control.hw_key)
  56. tail += IEEE80211_TKIP_ICV_LEN;
  57. if (WARN(skb_tailroom(skb) < tail ||
  58. skb_headroom(skb) < IEEE80211_TKIP_IV_LEN,
  59. "mmic: not enough head/tail (%d/%d,%d/%d)\n",
  60. skb_headroom(skb), IEEE80211_TKIP_IV_LEN,
  61. skb_tailroom(skb), tail))
  62. return TX_DROP;
  63. key = &tx->key->conf.key[NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY];
  64. mic = skb_put(skb, MICHAEL_MIC_LEN);
  65. michael_mic(key, hdr, data, data_len, mic);
  66. if (unlikely(info->flags & IEEE80211_TX_INTFL_TKIP_MIC_FAILURE))
  67. mic[0]++;
  68. return TX_CONTINUE;
  69. }
  70. ieee80211_rx_result
  71. ieee80211_rx_h_michael_mic_verify(struct ieee80211_rx_data *rx)
  72. {
  73. u8 *data, *key = NULL;
  74. size_t data_len;
  75. unsigned int hdrlen;
  76. u8 mic[MICHAEL_MIC_LEN];
  77. struct sk_buff *skb = rx->skb;
  78. struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
  79. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
  80. /*
  81. * it makes no sense to check for MIC errors on anything other
  82. * than data frames.
  83. */
  84. if (!ieee80211_is_data_present(hdr->frame_control))
  85. return RX_CONTINUE;
  86. /*
  87. * No way to verify the MIC if the hardware stripped it or
  88. * the IV with the key index. In this case we have solely rely
  89. * on the driver to set RX_FLAG_MMIC_ERROR in the event of a
  90. * MIC failure report.
  91. */
  92. if (status->flag & (RX_FLAG_MMIC_STRIPPED | RX_FLAG_IV_STRIPPED)) {
  93. if (status->flag & RX_FLAG_MMIC_ERROR)
  94. goto mic_fail_no_key;
  95. if (!(status->flag & RX_FLAG_IV_STRIPPED) && rx->key &&
  96. rx->key->conf.cipher == WLAN_CIPHER_SUITE_TKIP)
  97. goto update_iv;
  98. return RX_CONTINUE;
  99. }
  100. /*
  101. * Some hardware seems to generate Michael MIC failure reports; even
  102. * though, the frame was not encrypted with TKIP and therefore has no
  103. * MIC. Ignore the flag them to avoid triggering countermeasures.
  104. */
  105. if (!rx->key || rx->key->conf.cipher != WLAN_CIPHER_SUITE_TKIP ||
  106. !(status->flag & RX_FLAG_DECRYPTED))
  107. return RX_CONTINUE;
  108. if (rx->sdata->vif.type == NL80211_IFTYPE_AP && rx->key->conf.keyidx) {
  109. /*
  110. * APs with pairwise keys should never receive Michael MIC
  111. * errors for non-zero keyidx because these are reserved for
  112. * group keys and only the AP is sending real multicast
  113. * frames in the BSS.
  114. */
  115. return RX_DROP_UNUSABLE;
  116. }
  117. if (status->flag & RX_FLAG_MMIC_ERROR)
  118. goto mic_fail;
  119. hdrlen = ieee80211_hdrlen(hdr->frame_control);
  120. if (skb->len < hdrlen + MICHAEL_MIC_LEN)
  121. return RX_DROP_UNUSABLE;
  122. if (skb_linearize(rx->skb))
  123. return RX_DROP_UNUSABLE;
  124. hdr = (void *)skb->data;
  125. data = skb->data + hdrlen;
  126. data_len = skb->len - hdrlen - MICHAEL_MIC_LEN;
  127. key = &rx->key->conf.key[NL80211_TKIP_DATA_OFFSET_RX_MIC_KEY];
  128. michael_mic(key, hdr, data, data_len, mic);
  129. if (memcmp(mic, data + data_len, MICHAEL_MIC_LEN) != 0)
  130. goto mic_fail;
  131. /* remove Michael MIC from payload */
  132. skb_trim(skb, skb->len - MICHAEL_MIC_LEN);
  133. update_iv:
  134. /* update IV in key information to be able to detect replays */
  135. rx->key->u.tkip.rx[rx->security_idx].iv32 = rx->tkip_iv32;
  136. rx->key->u.tkip.rx[rx->security_idx].iv16 = rx->tkip_iv16;
  137. return RX_CONTINUE;
  138. mic_fail:
  139. rx->key->u.tkip.mic_failures++;
  140. mic_fail_no_key:
  141. /*
  142. * In some cases the key can be unset - e.g. a multicast packet, in
  143. * a driver that supports HW encryption. Send up the key idx only if
  144. * the key is set.
  145. */
  146. mac80211_ev_michael_mic_failure(rx->sdata,
  147. rx->key ? rx->key->conf.keyidx : -1,
  148. (void *) skb->data, NULL, GFP_ATOMIC);
  149. return RX_DROP_UNUSABLE;
  150. }
  151. static int tkip_encrypt_skb(struct ieee80211_tx_data *tx, struct sk_buff *skb)
  152. {
  153. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
  154. struct ieee80211_key *key = tx->key;
  155. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  156. unsigned int hdrlen;
  157. int len, tail;
  158. u8 *pos;
  159. if (info->control.hw_key &&
  160. !(info->control.hw_key->flags & IEEE80211_KEY_FLAG_GENERATE_IV) &&
  161. !(info->control.hw_key->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE)) {
  162. /* hwaccel - with no need for software-generated IV */
  163. return 0;
  164. }
  165. hdrlen = ieee80211_hdrlen(hdr->frame_control);
  166. len = skb->len - hdrlen;
  167. if (info->control.hw_key)
  168. tail = 0;
  169. else
  170. tail = IEEE80211_TKIP_ICV_LEN;
  171. if (WARN_ON(skb_tailroom(skb) < tail ||
  172. skb_headroom(skb) < IEEE80211_TKIP_IV_LEN))
  173. return -1;
  174. pos = skb_push(skb, IEEE80211_TKIP_IV_LEN);
  175. memmove(pos, pos + IEEE80211_TKIP_IV_LEN, hdrlen);
  176. skb_set_network_header(skb, skb_network_offset(skb) +
  177. IEEE80211_TKIP_IV_LEN);
  178. pos += hdrlen;
  179. /* the HW only needs room for the IV, but not the actual IV */
  180. if (info->control.hw_key &&
  181. (info->control.hw_key->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE))
  182. return 0;
  183. /* Increase IV for the frame */
  184. spin_lock(&key->u.tkip.txlock);
  185. key->u.tkip.tx.iv16++;
  186. if (key->u.tkip.tx.iv16 == 0)
  187. key->u.tkip.tx.iv32++;
  188. pos = ieee80211_tkip_add_iv(pos, key);
  189. spin_unlock(&key->u.tkip.txlock);
  190. /* hwaccel - with software IV */
  191. if (info->control.hw_key)
  192. return 0;
  193. /* Add room for ICV */
  194. skb_put(skb, IEEE80211_TKIP_ICV_LEN);
  195. return ieee80211_tkip_encrypt_data(tx->local->wep_tx_tfm,
  196. key, skb, pos, len);
  197. }
  198. ieee80211_tx_result
  199. ieee80211_crypto_tkip_encrypt(struct ieee80211_tx_data *tx)
  200. {
  201. struct sk_buff *skb;
  202. ieee80211_tx_set_protected(tx);
  203. skb_queue_walk(&tx->skbs, skb) {
  204. if (tkip_encrypt_skb(tx, skb) < 0)
  205. return TX_DROP;
  206. }
  207. return TX_CONTINUE;
  208. }
  209. ieee80211_rx_result
  210. ieee80211_crypto_tkip_decrypt(struct ieee80211_rx_data *rx)
  211. {
  212. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) rx->skb->data;
  213. int hdrlen, res, hwaccel = 0;
  214. struct ieee80211_key *key = rx->key;
  215. struct sk_buff *skb = rx->skb;
  216. struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
  217. hdrlen = ieee80211_hdrlen(hdr->frame_control);
  218. if (!ieee80211_is_data(hdr->frame_control))
  219. return RX_CONTINUE;
  220. if (!rx->sta || skb->len - hdrlen < 12)
  221. return RX_DROP_UNUSABLE;
  222. /* it may be possible to optimize this a bit more */
  223. if (skb_linearize(rx->skb))
  224. return RX_DROP_UNUSABLE;
  225. hdr = (void *)skb->data;
  226. /*
  227. * Let TKIP code verify IV, but skip decryption.
  228. * In the case where hardware checks the IV as well,
  229. * we don't even get here, see ieee80211_rx_h_decrypt()
  230. */
  231. if (status->flag & RX_FLAG_DECRYPTED)
  232. hwaccel = 1;
  233. res = ieee80211_tkip_decrypt_data(rx->local->wep_rx_tfm,
  234. key, skb->data + hdrlen,
  235. skb->len - hdrlen, rx->sta->sta.addr,
  236. hdr->addr1, hwaccel, rx->security_idx,
  237. &rx->tkip_iv32,
  238. &rx->tkip_iv16);
  239. if (res != TKIP_DECRYPT_OK)
  240. return RX_DROP_UNUSABLE;
  241. /* Trim ICV */
  242. skb_trim(skb, skb->len - IEEE80211_TKIP_ICV_LEN);
  243. /* Remove IV */
  244. memmove(skb->data + IEEE80211_TKIP_IV_LEN, skb->data, hdrlen);
  245. skb_pull(skb, IEEE80211_TKIP_IV_LEN);
  246. return RX_CONTINUE;
  247. }
  248. static void ccmp_special_blocks(struct sk_buff *skb, u8 *pn, u8 *b_0, u8 *aad)
  249. {
  250. __le16 mask_fc;
  251. int a4_included, mgmt;
  252. u8 qos_tid;
  253. u16 len_a;
  254. unsigned int hdrlen;
  255. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
  256. /*
  257. * Mask FC: zero subtype b4 b5 b6 (if not mgmt)
  258. * Retry, PwrMgt, MoreData; set Protected
  259. */
  260. mgmt = ieee80211_is_mgmt(hdr->frame_control);
  261. mask_fc = hdr->frame_control;
  262. mask_fc &= ~cpu_to_le16(IEEE80211_FCTL_RETRY |
  263. IEEE80211_FCTL_PM | IEEE80211_FCTL_MOREDATA);
  264. if (!mgmt)
  265. mask_fc &= ~cpu_to_le16(0x0070);
  266. mask_fc |= cpu_to_le16(IEEE80211_FCTL_PROTECTED);
  267. hdrlen = ieee80211_hdrlen(hdr->frame_control);
  268. len_a = hdrlen - 2;
  269. a4_included = ieee80211_has_a4(hdr->frame_control);
  270. if (ieee80211_is_data_qos(hdr->frame_control))
  271. qos_tid = *ieee80211_get_qos_ctl(hdr) & IEEE80211_QOS_CTL_TID_MASK;
  272. else
  273. qos_tid = 0;
  274. /* In CCM, the initial vectors (IV) used for CTR mode encryption and CBC
  275. * mode authentication are not allowed to collide, yet both are derived
  276. * from this vector b_0. We only set L := 1 here to indicate that the
  277. * data size can be represented in (L+1) bytes. The CCM layer will take
  278. * care of storing the data length in the top (L+1) bytes and setting
  279. * and clearing the other bits as is required to derive the two IVs.
  280. */
  281. b_0[0] = 0x1;
  282. /* Nonce: Nonce Flags | A2 | PN
  283. * Nonce Flags: Priority (b0..b3) | Management (b4) | Reserved (b5..b7)
  284. */
  285. b_0[1] = qos_tid | (mgmt << 4);
  286. memcpy(&b_0[2], hdr->addr2, ETH_ALEN);
  287. memcpy(&b_0[8], pn, IEEE80211_CCMP_PN_LEN);
  288. /* AAD (extra authenticate-only data) / masked 802.11 header
  289. * FC | A1 | A2 | A3 | SC | [A4] | [QC] */
  290. put_unaligned_be16(len_a, &aad[0]);
  291. put_unaligned(mask_fc, (__le16 *)&aad[2]);
  292. memcpy(&aad[4], &hdr->addr1, 3 * ETH_ALEN);
  293. /* Mask Seq#, leave Frag# */
  294. aad[22] = *((u8 *) &hdr->seq_ctrl) & 0x0f;
  295. aad[23] = 0;
  296. if (a4_included) {
  297. memcpy(&aad[24], hdr->addr4, ETH_ALEN);
  298. aad[30] = qos_tid;
  299. aad[31] = 0;
  300. } else {
  301. memset(&aad[24], 0, ETH_ALEN + IEEE80211_QOS_CTL_LEN);
  302. aad[24] = qos_tid;
  303. }
  304. }
  305. static inline void ccmp_pn2hdr(u8 *hdr, u8 *pn, int key_id)
  306. {
  307. hdr[0] = pn[5];
  308. hdr[1] = pn[4];
  309. hdr[2] = 0;
  310. hdr[3] = 0x20 | (key_id << 6);
  311. hdr[4] = pn[3];
  312. hdr[5] = pn[2];
  313. hdr[6] = pn[1];
  314. hdr[7] = pn[0];
  315. }
  316. static inline void ccmp_hdr2pn(u8 *pn, u8 *hdr)
  317. {
  318. pn[0] = hdr[7];
  319. pn[1] = hdr[6];
  320. pn[2] = hdr[5];
  321. pn[3] = hdr[4];
  322. pn[4] = hdr[1];
  323. pn[5] = hdr[0];
  324. }
  325. static int ccmp_encrypt_skb(struct ieee80211_tx_data *tx, struct sk_buff *skb)
  326. {
  327. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
  328. struct ieee80211_key *key = tx->key;
  329. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  330. int hdrlen, len, tail;
  331. u8 *pos;
  332. u8 pn[6];
  333. u64 pn64;
  334. u8 aad[2 * AES_BLOCK_SIZE];
  335. u8 b_0[AES_BLOCK_SIZE];
  336. if (info->control.hw_key &&
  337. !(info->control.hw_key->flags & IEEE80211_KEY_FLAG_GENERATE_IV) &&
  338. !(info->control.hw_key->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE) &&
  339. !((info->control.hw_key->flags &
  340. IEEE80211_KEY_FLAG_GENERATE_IV_MGMT) &&
  341. ieee80211_is_mgmt(hdr->frame_control))) {
  342. /*
  343. * hwaccel has no need for preallocated room for CCMP
  344. * header or MIC fields
  345. */
  346. return 0;
  347. }
  348. hdrlen = ieee80211_hdrlen(hdr->frame_control);
  349. len = skb->len - hdrlen;
  350. if (info->control.hw_key)
  351. tail = 0;
  352. else
  353. tail = IEEE80211_CCMP_MIC_LEN;
  354. if (WARN_ON(skb_tailroom(skb) < tail ||
  355. skb_headroom(skb) < IEEE80211_CCMP_HDR_LEN))
  356. return -1;
  357. pos = skb_push(skb, IEEE80211_CCMP_HDR_LEN);
  358. memmove(pos, pos + IEEE80211_CCMP_HDR_LEN, hdrlen);
  359. skb_set_network_header(skb, skb_network_offset(skb) +
  360. IEEE80211_CCMP_HDR_LEN);
  361. /* the HW only needs room for the IV, but not the actual IV */
  362. if (info->control.hw_key &&
  363. (info->control.hw_key->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE))
  364. return 0;
  365. hdr = (struct ieee80211_hdr *) pos;
  366. pos += hdrlen;
  367. pn64 = atomic64_inc_return(&key->u.ccmp.tx_pn);
  368. pn[5] = pn64;
  369. pn[4] = pn64 >> 8;
  370. pn[3] = pn64 >> 16;
  371. pn[2] = pn64 >> 24;
  372. pn[1] = pn64 >> 32;
  373. pn[0] = pn64 >> 40;
  374. ccmp_pn2hdr(pos, pn, key->conf.keyidx);
  375. /* hwaccel - with software CCMP header */
  376. if (info->control.hw_key)
  377. return 0;
  378. pos += IEEE80211_CCMP_HDR_LEN;
  379. ccmp_special_blocks(skb, pn, b_0, aad);
  380. ieee80211_aes_ccm_encrypt(key->u.ccmp.tfm, b_0, aad, pos, len,
  381. skb_put(skb, IEEE80211_CCMP_MIC_LEN));
  382. return 0;
  383. }
  384. ieee80211_tx_result
  385. ieee80211_crypto_ccmp_encrypt(struct ieee80211_tx_data *tx)
  386. {
  387. struct sk_buff *skb;
  388. ieee80211_tx_set_protected(tx);
  389. skb_queue_walk(&tx->skbs, skb) {
  390. if (ccmp_encrypt_skb(tx, skb) < 0)
  391. return TX_DROP;
  392. }
  393. return TX_CONTINUE;
  394. }
  395. ieee80211_rx_result
  396. ieee80211_crypto_ccmp_decrypt(struct ieee80211_rx_data *rx)
  397. {
  398. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
  399. int hdrlen;
  400. struct ieee80211_key *key = rx->key;
  401. struct sk_buff *skb = rx->skb;
  402. struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
  403. u8 pn[IEEE80211_CCMP_PN_LEN];
  404. int data_len;
  405. int queue;
  406. hdrlen = ieee80211_hdrlen(hdr->frame_control);
  407. if (!ieee80211_is_data(hdr->frame_control) &&
  408. !ieee80211_is_robust_mgmt_frame(skb))
  409. return RX_CONTINUE;
  410. data_len = skb->len - hdrlen - IEEE80211_CCMP_HDR_LEN -
  411. IEEE80211_CCMP_MIC_LEN;
  412. if (!rx->sta || data_len < 0)
  413. return RX_DROP_UNUSABLE;
  414. if (status->flag & RX_FLAG_DECRYPTED) {
  415. if (!pskb_may_pull(rx->skb, hdrlen + IEEE80211_CCMP_HDR_LEN))
  416. return RX_DROP_UNUSABLE;
  417. } else {
  418. if (skb_linearize(rx->skb))
  419. return RX_DROP_UNUSABLE;
  420. }
  421. ccmp_hdr2pn(pn, skb->data + hdrlen);
  422. queue = rx->security_idx;
  423. if (memcmp(pn, key->u.ccmp.rx_pn[queue], IEEE80211_CCMP_PN_LEN) <= 0) {
  424. key->u.ccmp.replays++;
  425. return RX_DROP_UNUSABLE;
  426. }
  427. if (!(status->flag & RX_FLAG_DECRYPTED)) {
  428. u8 aad[2 * AES_BLOCK_SIZE];
  429. u8 b_0[AES_BLOCK_SIZE];
  430. /* hardware didn't decrypt/verify MIC */
  431. ccmp_special_blocks(skb, pn, b_0, aad);
  432. if (ieee80211_aes_ccm_decrypt(
  433. key->u.ccmp.tfm, b_0, aad,
  434. skb->data + hdrlen + IEEE80211_CCMP_HDR_LEN,
  435. data_len,
  436. skb->data + skb->len - IEEE80211_CCMP_MIC_LEN))
  437. return RX_DROP_UNUSABLE;
  438. }
  439. memcpy(key->u.ccmp.rx_pn[queue], pn, IEEE80211_CCMP_PN_LEN);
  440. /* Remove CCMP header and MIC */
  441. if (pskb_trim(skb, skb->len - IEEE80211_CCMP_MIC_LEN))
  442. return RX_DROP_UNUSABLE;
  443. memmove(skb->data + IEEE80211_CCMP_HDR_LEN, skb->data, hdrlen);
  444. skb_pull(skb, IEEE80211_CCMP_HDR_LEN);
  445. return RX_CONTINUE;
  446. }
  447. static ieee80211_tx_result
  448. ieee80211_crypto_cs_encrypt(struct ieee80211_tx_data *tx,
  449. struct sk_buff *skb)
  450. {
  451. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)skb->data;
  452. struct ieee80211_key *key = tx->key;
  453. struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
  454. const struct ieee80211_cipher_scheme *cs = key->sta->cipher_scheme;
  455. int hdrlen;
  456. u8 *pos;
  457. if (info->control.hw_key &&
  458. !(info->control.hw_key->flags & IEEE80211_KEY_FLAG_PUT_IV_SPACE)) {
  459. /* hwaccel has no need for preallocated head room */
  460. return TX_CONTINUE;
  461. }
  462. if (unlikely(skb_headroom(skb) < cs->hdr_len &&
  463. pskb_expand_head(skb, cs->hdr_len, 0, GFP_ATOMIC)))
  464. return TX_DROP;
  465. hdrlen = ieee80211_hdrlen(hdr->frame_control);
  466. pos = skb_push(skb, cs->hdr_len);
  467. memmove(pos, pos + cs->hdr_len, hdrlen);
  468. skb_set_network_header(skb, skb_network_offset(skb) + cs->hdr_len);
  469. return TX_CONTINUE;
  470. }
  471. static inline int ieee80211_crypto_cs_pn_compare(u8 *pn1, u8 *pn2, int len)
  472. {
  473. int i;
  474. /* pn is little endian */
  475. for (i = len - 1; i >= 0; i--) {
  476. if (pn1[i] < pn2[i])
  477. return -1;
  478. else if (pn1[i] > pn2[i])
  479. return 1;
  480. }
  481. return 0;
  482. }
  483. static ieee80211_rx_result
  484. ieee80211_crypto_cs_decrypt(struct ieee80211_rx_data *rx)
  485. {
  486. struct ieee80211_key *key = rx->key;
  487. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)rx->skb->data;
  488. const struct ieee80211_cipher_scheme *cs = NULL;
  489. int hdrlen = ieee80211_hdrlen(hdr->frame_control);
  490. struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(rx->skb);
  491. int data_len;
  492. u8 *rx_pn;
  493. u8 *skb_pn;
  494. u8 qos_tid;
  495. if (!rx->sta || !rx->sta->cipher_scheme ||
  496. !(status->flag & RX_FLAG_DECRYPTED))
  497. return RX_DROP_UNUSABLE;
  498. if (!ieee80211_is_data(hdr->frame_control))
  499. return RX_CONTINUE;
  500. cs = rx->sta->cipher_scheme;
  501. data_len = rx->skb->len - hdrlen - cs->hdr_len;
  502. if (data_len < 0)
  503. return RX_DROP_UNUSABLE;
  504. if (ieee80211_is_data_qos(hdr->frame_control))
  505. qos_tid = *ieee80211_get_qos_ctl(hdr) &
  506. IEEE80211_QOS_CTL_TID_MASK;
  507. else
  508. qos_tid = 0;
  509. if (skb_linearize(rx->skb))
  510. return RX_DROP_UNUSABLE;
  511. hdr = (struct ieee80211_hdr *)rx->skb->data;
  512. rx_pn = key->u.gen.rx_pn[qos_tid];
  513. skb_pn = rx->skb->data + hdrlen + cs->pn_off;
  514. if (ieee80211_crypto_cs_pn_compare(skb_pn, rx_pn, cs->pn_len) <= 0)
  515. return RX_DROP_UNUSABLE;
  516. memcpy(rx_pn, skb_pn, cs->pn_len);
  517. /* remove security header and MIC */
  518. if (pskb_trim(rx->skb, rx->skb->len - cs->mic_len))
  519. return RX_DROP_UNUSABLE;
  520. memmove(rx->skb->data + cs->hdr_len, rx->skb->data, hdrlen);
  521. skb_pull(rx->skb, cs->hdr_len);
  522. return RX_CONTINUE;
  523. }
  524. static void bip_aad(struct sk_buff *skb, u8 *aad)
  525. {
  526. __le16 mask_fc;
  527. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
  528. /* BIP AAD: FC(masked) || A1 || A2 || A3 */
  529. /* FC type/subtype */
  530. /* Mask FC Retry, PwrMgt, MoreData flags to zero */
  531. mask_fc = hdr->frame_control;
  532. mask_fc &= ~cpu_to_le16(IEEE80211_FCTL_RETRY | IEEE80211_FCTL_PM |
  533. IEEE80211_FCTL_MOREDATA);
  534. put_unaligned(mask_fc, (__le16 *) &aad[0]);
  535. /* A1 || A2 || A3 */
  536. memcpy(aad + 2, &hdr->addr1, 3 * ETH_ALEN);
  537. }
  538. static inline void bip_ipn_set64(u8 *d, u64 pn)
  539. {
  540. *d++ = pn;
  541. *d++ = pn >> 8;
  542. *d++ = pn >> 16;
  543. *d++ = pn >> 24;
  544. *d++ = pn >> 32;
  545. *d = pn >> 40;
  546. }
  547. static inline void bip_ipn_swap(u8 *d, const u8 *s)
  548. {
  549. *d++ = s[5];
  550. *d++ = s[4];
  551. *d++ = s[3];
  552. *d++ = s[2];
  553. *d++ = s[1];
  554. *d = s[0];
  555. }
  556. ieee80211_tx_result
  557. ieee80211_crypto_aes_cmac_encrypt(struct ieee80211_tx_data *tx)
  558. {
  559. struct sk_buff *skb;
  560. struct ieee80211_tx_info *info;
  561. struct ieee80211_key *key = tx->key;
  562. struct ieee80211_mmie *mmie;
  563. u8 aad[20];
  564. u64 pn64;
  565. if (WARN_ON(skb_queue_len(&tx->skbs) != 1))
  566. return TX_DROP;
  567. skb = skb_peek(&tx->skbs);
  568. info = IEEE80211_SKB_CB(skb);
  569. if (info->control.hw_key)
  570. return TX_CONTINUE;
  571. if (WARN_ON(skb_tailroom(skb) < sizeof(*mmie)))
  572. return TX_DROP;
  573. mmie = (struct ieee80211_mmie *) skb_put(skb, sizeof(*mmie));
  574. mmie->element_id = WLAN_EID_MMIE;
  575. mmie->length = sizeof(*mmie) - 2;
  576. mmie->key_id = cpu_to_le16(key->conf.keyidx);
  577. /* PN = PN + 1 */
  578. pn64 = atomic64_inc_return(&key->u.aes_cmac.tx_pn);
  579. bip_ipn_set64(mmie->sequence_number, pn64);
  580. bip_aad(skb, aad);
  581. /*
  582. * MIC = AES-128-CMAC(IGTK, AAD || Management Frame Body || MMIE, 64)
  583. */
  584. ieee80211_aes_cmac(key->u.aes_cmac.tfm, aad,
  585. skb->data + 24, skb->len - 24, mmie->mic);
  586. return TX_CONTINUE;
  587. }
  588. ieee80211_rx_result
  589. ieee80211_crypto_aes_cmac_decrypt(struct ieee80211_rx_data *rx)
  590. {
  591. struct sk_buff *skb = rx->skb;
  592. struct ieee80211_rx_status *status = IEEE80211_SKB_RXCB(skb);
  593. struct ieee80211_key *key = rx->key;
  594. struct ieee80211_mmie *mmie;
  595. u8 aad[20], mic[8], ipn[6];
  596. struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
  597. if (!ieee80211_is_mgmt(hdr->frame_control))
  598. return RX_CONTINUE;
  599. /* management frames are already linear */
  600. if (skb->len < 24 + sizeof(*mmie))
  601. return RX_DROP_UNUSABLE;
  602. mmie = (struct ieee80211_mmie *)
  603. (skb->data + skb->len - sizeof(*mmie));
  604. if (mmie->element_id != WLAN_EID_MMIE ||
  605. mmie->length != sizeof(*mmie) - 2)
  606. return RX_DROP_UNUSABLE; /* Invalid MMIE */
  607. bip_ipn_swap(ipn, mmie->sequence_number);
  608. if (memcmp(ipn, key->u.aes_cmac.rx_pn, 6) <= 0) {
  609. key->u.aes_cmac.replays++;
  610. return RX_DROP_UNUSABLE;
  611. }
  612. if (!(status->flag & RX_FLAG_DECRYPTED)) {
  613. /* hardware didn't decrypt/verify MIC */
  614. bip_aad(skb, aad);
  615. ieee80211_aes_cmac(key->u.aes_cmac.tfm, aad,
  616. skb->data + 24, skb->len - 24, mic);
  617. if (memcmp(mic, mmie->mic, sizeof(mmie->mic)) != 0) {
  618. key->u.aes_cmac.icverrors++;
  619. return RX_DROP_UNUSABLE;
  620. }
  621. }
  622. memcpy(key->u.aes_cmac.rx_pn, ipn, 6);
  623. /* Remove MMIE */
  624. skb_trim(skb, skb->len - sizeof(*mmie));
  625. return RX_CONTINUE;
  626. }
  627. ieee80211_tx_result
  628. ieee80211_crypto_hw_encrypt(struct ieee80211_tx_data *tx)
  629. {
  630. struct sk_buff *skb;
  631. struct ieee80211_tx_info *info = NULL;
  632. ieee80211_tx_result res;
  633. skb_queue_walk(&tx->skbs, skb) {
  634. info = IEEE80211_SKB_CB(skb);
  635. /* handle hw-only algorithm */
  636. if (!info->control.hw_key)
  637. return TX_DROP;
  638. if (tx->key->sta->cipher_scheme) {
  639. res = ieee80211_crypto_cs_encrypt(tx, skb);
  640. if (res != TX_CONTINUE)
  641. return res;
  642. }
  643. }
  644. ieee80211_tx_set_protected(tx);
  645. return TX_CONTINUE;
  646. }
  647. ieee80211_rx_result
  648. ieee80211_crypto_hw_decrypt(struct ieee80211_rx_data *rx)
  649. {
  650. if (rx->sta && rx->sta->cipher_scheme)
  651. return ieee80211_crypto_cs_decrypt(rx);
  652. return RX_DROP_UNUSABLE;
  653. }