#include <linux/ieee80211.h>
 
 #include <linux/crypto.h>
+#include <crypto/aead.h>
 
 #include <net/lib80211.h>
 
 
        int key_idx;
 
-       struct crypto_cipher *tfm;
+       struct crypto_aead *tfm;
 
        /* scratch buffers for virt_to_page() (crypto API) */
-       u8 tx_b0[AES_BLOCK_LEN], tx_b[AES_BLOCK_LEN],
-           tx_e[AES_BLOCK_LEN], tx_s0[AES_BLOCK_LEN];
-       u8 rx_b0[AES_BLOCK_LEN], rx_b[AES_BLOCK_LEN], rx_a[AES_BLOCK_LEN];
+       u8 tx_aad[2 * AES_BLOCK_LEN];
+       u8 rx_aad[2 * AES_BLOCK_LEN];
 };
 
-static inline void lib80211_ccmp_aes_encrypt(struct crypto_cipher *tfm,
-                                             const u8 pt[16], u8 ct[16])
-{
-       crypto_cipher_encrypt_one(tfm, ct, pt);
-}
-
 static void *lib80211_ccmp_init(int key_idx)
 {
        struct lib80211_ccmp_data *priv;
                goto fail;
        priv->key_idx = key_idx;
 
-       priv->tfm = crypto_alloc_cipher("aes", 0, 0);
+       priv->tfm = crypto_alloc_aead("ccm(aes)", 0, CRYPTO_ALG_ASYNC);
        if (IS_ERR(priv->tfm)) {
                priv->tfm = NULL;
                goto fail;
       fail:
        if (priv) {
                if (priv->tfm)
-                       crypto_free_cipher(priv->tfm);
+                       crypto_free_aead(priv->tfm);
                kfree(priv);
        }
 
 {
        struct lib80211_ccmp_data *_priv = priv;
        if (_priv && _priv->tfm)
-               crypto_free_cipher(_priv->tfm);
+               crypto_free_aead(_priv->tfm);
        kfree(priv);
 }
 
-static inline void xor_block(u8 * b, u8 * a, size_t len)
-{
-       int i;
-       for (i = 0; i < len; i++)
-               b[i] ^= a[i];
-}
-
-static void ccmp_init_blocks(struct crypto_cipher *tfm,
-                            struct ieee80211_hdr *hdr,
-                            u8 * pn, size_t dlen, u8 * b0, u8 * auth, u8 * s0)
+static int ccmp_init_iv_and_aad(const struct ieee80211_hdr *hdr,
+                               const u8 *pn, u8 *iv, u8 *aad)
 {
        u8 *pos, qc = 0;
        size_t aad_len;
        int a4_included, qc_included;
-       u8 aad[2 * AES_BLOCK_LEN];
 
        a4_included = ieee80211_has_a4(hdr->frame_control);
        qc_included = ieee80211_is_data_qos(hdr->frame_control);
                aad_len += 2;
        }
 
-       /* CCM Initial Block:
-        * Flag (Include authentication header, M=3 (8-octet MIC),
-        *       L=1 (2-octet Dlen))
-        * Nonce: 0x00 | A2 | PN
-        * Dlen */
-       b0[0] = 0x59;
-       b0[1] = qc;
-       memcpy(b0 + 2, hdr->addr2, ETH_ALEN);
-       memcpy(b0 + 8, pn, CCMP_PN_LEN);
-       b0[14] = (dlen >> 8) & 0xff;
-       b0[15] = dlen & 0xff;
+       /* In CCM, the initial vectors (IV) used for CTR mode encryption and CBC
+        * mode authentication are not allowed to collide, yet both are derived
+        * from the same vector. We only set L := 1 here to indicate that the
+        * data size can be represented in (L+1) bytes. The CCM layer will take
+        * care of storing the data length in the top (L+1) bytes and setting
+        * and clearing the other bits as is required to derive the two IVs.
+        */
+       iv[0] = 0x1;
+
+       /* Nonce: QC | A2 | PN */
+       iv[1] = qc;
+       memcpy(iv + 2, hdr->addr2, ETH_ALEN);
+       memcpy(iv + 8, pn, CCMP_PN_LEN);
 
        /* AAD:
         * FC with bits 4..6 and 11..13 masked to zero; 14 is always one
         * QC (if present)
         */
        pos = (u8 *) hdr;
-       aad[0] = 0;             /* aad_len >> 8 */
-       aad[1] = aad_len & 0xff;
-       aad[2] = pos[0] & 0x8f;
-       aad[3] = pos[1] & 0xc7;
-       memcpy(aad + 4, hdr->addr1, 3 * ETH_ALEN);
+       aad[0] = pos[0] & 0x8f;
+       aad[1] = pos[1] & 0xc7;
+       memcpy(aad + 2, hdr->addr1, 3 * ETH_ALEN);
        pos = (u8 *) & hdr->seq_ctrl;
-       aad[22] = pos[0] & 0x0f;
-       aad[23] = 0;            /* all bits masked */
-       memset(aad + 24, 0, 8);
+       aad[20] = pos[0] & 0x0f;
+       aad[21] = 0;            /* all bits masked */
+       memset(aad + 22, 0, 8);
        if (a4_included)
-               memcpy(aad + 24, hdr->addr4, ETH_ALEN);
+               memcpy(aad + 22, hdr->addr4, ETH_ALEN);
        if (qc_included) {
-               aad[a4_included ? 30 : 24] = qc;
+               aad[a4_included ? 28 : 22] = qc;
                /* rest of QC masked */
        }
-
-       /* Start with the first block and AAD */
-       lib80211_ccmp_aes_encrypt(tfm, b0, auth);
-       xor_block(auth, aad, AES_BLOCK_LEN);
-       lib80211_ccmp_aes_encrypt(tfm, auth, auth);
-       xor_block(auth, &aad[AES_BLOCK_LEN], AES_BLOCK_LEN);
-       lib80211_ccmp_aes_encrypt(tfm, auth, auth);
-       b0[0] &= 0x07;
-       b0[14] = b0[15] = 0;
-       lib80211_ccmp_aes_encrypt(tfm, b0, s0);
+       return aad_len;
 }
 
 static int lib80211_ccmp_hdr(struct sk_buff *skb, int hdr_len,
 static int lib80211_ccmp_encrypt(struct sk_buff *skb, int hdr_len, void *priv)
 {
        struct lib80211_ccmp_data *key = priv;
-       int data_len, i, blocks, last, len;
-       u8 *pos, *mic;
        struct ieee80211_hdr *hdr;
-       u8 *b0 = key->tx_b0;
-       u8 *b = key->tx_b;
-       u8 *e = key->tx_e;
-       u8 *s0 = key->tx_s0;
+       struct aead_request *req;
+       struct scatterlist sg[2];
+       u8 *aad = key->tx_aad;
+       u8 iv[AES_BLOCK_LEN];
+       int len, data_len, aad_len;
+       int ret;
 
        if (skb_tailroom(skb) < CCMP_MIC_LEN || skb->len < hdr_len)
                return -1;
        if (len < 0)
                return -1;
 
-       pos = skb->data + hdr_len + CCMP_HDR_LEN;
+       req = aead_request_alloc(key->tfm, GFP_ATOMIC);
+       if (!req)
+               return -ENOMEM;
+
        hdr = (struct ieee80211_hdr *)skb->data;
-       ccmp_init_blocks(key->tfm, hdr, key->tx_pn, data_len, b0, b, s0);
-
-       blocks = DIV_ROUND_UP(data_len, AES_BLOCK_LEN);
-       last = data_len % AES_BLOCK_LEN;
-
-       for (i = 1; i <= blocks; i++) {
-               len = (i == blocks && last) ? last : AES_BLOCK_LEN;
-               /* Authentication */
-               xor_block(b, pos, len);
-               lib80211_ccmp_aes_encrypt(key->tfm, b, b);
-               /* Encryption, with counter */
-               b0[14] = (i >> 8) & 0xff;
-               b0[15] = i & 0xff;
-               lib80211_ccmp_aes_encrypt(key->tfm, b0, e);
-               xor_block(pos, e, len);
-               pos += len;
-       }
+       aad_len = ccmp_init_iv_and_aad(hdr, key->tx_pn, iv, aad);
 
-       mic = skb_put(skb, CCMP_MIC_LEN);
-       for (i = 0; i < CCMP_MIC_LEN; i++)
-               mic[i] = b[i] ^ s0[i];
+       skb_put(skb, CCMP_MIC_LEN);
 
-       return 0;
+       sg_init_table(sg, 2);
+       sg_set_buf(&sg[0], aad, aad_len);
+       sg_set_buf(&sg[1], skb->data + hdr_len + CCMP_HDR_LEN,
+                  data_len + CCMP_MIC_LEN);
+
+       aead_request_set_callback(req, 0, NULL, NULL);
+       aead_request_set_ad(req, aad_len);
+       aead_request_set_crypt(req, sg, sg, data_len, iv);
+
+       ret = crypto_aead_encrypt(req);
+       aead_request_free(req);
+
+       return ret;
 }
 
 /*
        struct lib80211_ccmp_data *key = priv;
        u8 keyidx, *pos;
        struct ieee80211_hdr *hdr;
-       u8 *b0 = key->rx_b0;
-       u8 *b = key->rx_b;
-       u8 *a = key->rx_a;
+       struct aead_request *req;
+       struct scatterlist sg[2];
+       u8 *aad = key->rx_aad;
+       u8 iv[AES_BLOCK_LEN];
        u8 pn[6];
-       int i, blocks, last, len;
-       size_t data_len = skb->len - hdr_len - CCMP_HDR_LEN - CCMP_MIC_LEN;
-       u8 *mic = skb->data + skb->len - CCMP_MIC_LEN;
+       int aad_len, ret;
+       size_t data_len = skb->len - hdr_len - CCMP_HDR_LEN;
 
        if (skb->len < hdr_len + CCMP_HDR_LEN + CCMP_MIC_LEN) {
                key->dot11RSNAStatsCCMPFormatErrors++;
                return -4;
        }
 
-       ccmp_init_blocks(key->tfm, hdr, pn, data_len, b0, a, b);
-       xor_block(mic, b, CCMP_MIC_LEN);
-
-       blocks = DIV_ROUND_UP(data_len, AES_BLOCK_LEN);
-       last = data_len % AES_BLOCK_LEN;
-
-       for (i = 1; i <= blocks; i++) {
-               len = (i == blocks && last) ? last : AES_BLOCK_LEN;
-               /* Decrypt, with counter */
-               b0[14] = (i >> 8) & 0xff;
-               b0[15] = i & 0xff;
-               lib80211_ccmp_aes_encrypt(key->tfm, b0, b);
-               xor_block(pos, b, len);
-               /* Authentication */
-               xor_block(a, pos, len);
-               lib80211_ccmp_aes_encrypt(key->tfm, a, a);
-               pos += len;
-       }
+       req = aead_request_alloc(key->tfm, GFP_ATOMIC);
+       if (!req)
+               return -ENOMEM;
 
-       if (memcmp(mic, a, CCMP_MIC_LEN) != 0) {
-               net_dbg_ratelimited("CCMP: decrypt failed: STA=%pM\n",
-                                   hdr->addr2);
+       aad_len = ccmp_init_iv_and_aad(hdr, pn, iv, aad);
+
+       sg_init_table(sg, 2);
+       sg_set_buf(&sg[0], aad, aad_len);
+       sg_set_buf(&sg[1], pos, data_len);
+
+       aead_request_set_callback(req, 0, NULL, NULL);
+       aead_request_set_ad(req, aad_len);
+       aead_request_set_crypt(req, sg, sg, data_len, iv);
+
+       ret = crypto_aead_decrypt(req);
+       aead_request_free(req);
+
+       if (ret) {
+               net_dbg_ratelimited("CCMP: decrypt failed: STA=%pM (%d)\n",
+                                   hdr->addr2, ret);
                key->dot11RSNAStatsCCMPDecryptErrors++;
                return -5;
        }
 {
        struct lib80211_ccmp_data *data = priv;
        int keyidx;
-       struct crypto_cipher *tfm = data->tfm;
+       struct crypto_aead *tfm = data->tfm;
 
        keyidx = data->key_idx;
        memset(data, 0, sizeof(*data));
                        data->rx_pn[4] = seq[1];
                        data->rx_pn[5] = seq[0];
                }
-               crypto_cipher_setkey(data->tfm, data->key, CCMP_TK_LEN);
+               if (crypto_aead_setauthsize(data->tfm, CCMP_MIC_LEN) ||
+                   crypto_aead_setkey(data->tfm, data->key, CCMP_TK_LEN))
+                       return -1;
        } else if (len == 0)
                data->key_set = 0;
        else