mac80211: aead api to reduce redundancy
authorXiang Gao <qasdfgtyuiop@gmail.com>
Wed, 11 Oct 2017 02:31:49 +0000 (22:31 -0400)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 11 Oct 2017 07:37:35 +0000 (09:37 +0200)
Currently, the aes_ccm.c and aes_gcm.c are almost line by line copy of
each other. This patch reduce code redundancy by moving the code in these
two files to crypto/aead_api.c to make it a higher level aead api. The
file aes_ccm.c and aes_gcm.c are removed and all the functions there are
now implemented in their headers using the newly added aead api.

Signed-off-by: Xiang Gao <qasdfgtyuiop@gmail.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/Makefile
net/mac80211/aead_api.c [new file with mode: 0644]
net/mac80211/aead_api.h [new file with mode: 0644]
net/mac80211/aes_ccm.c [deleted file]
net/mac80211/aes_ccm.h
net/mac80211/aes_gcm.c [deleted file]
net/mac80211/aes_gcm.h
net/mac80211/wpa.c

index 2829122459387d80f225e509d9d64077b2098d2f..80f25ff2f24bef54bc17cfdcc9e0e7509973798f 100644 (file)
@@ -6,6 +6,7 @@ mac80211-y := \
        driver-ops.o \
        sta_info.o \
        wep.o \
+       aead_api.o \
        wpa.o \
        scan.o offchannel.o \
        ht.o agg-tx.o agg-rx.o \
@@ -15,8 +16,6 @@ mac80211-y := \
        rate.o \
        michael.o \
        tkip.o \
-       aes_ccm.o \
-       aes_gcm.o \
        aes_cmac.o \
        aes_gmac.o \
        fils_aead.o \
diff --git a/net/mac80211/aead_api.c b/net/mac80211/aead_api.c
new file mode 100644 (file)
index 0000000..347f139
--- /dev/null
@@ -0,0 +1,115 @@
+/*
+ * Copyright 2003-2004, Instant802 Networks, Inc.
+ * Copyright 2005-2006, Devicescape Software, Inc.
+ * Copyright 2014-2015, Qualcomm Atheros, Inc.
+ *
+ * Rewrite: Copyright (C) 2013 Linaro Ltd <ard.biesheuvel@linaro.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#include <linux/kernel.h>
+#include <linux/types.h>
+#include <linux/err.h>
+#include <linux/scatterlist.h>
+#include <crypto/aead.h>
+
+#include "aead_api.h"
+
+int aead_encrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad, size_t aad_len,
+                u8 *data, size_t data_len, u8 *mic)
+{
+       size_t mic_len = tfm->authsize;
+       struct scatterlist sg[3];
+       struct aead_request *aead_req;
+       int reqsize = sizeof(*aead_req) + crypto_aead_reqsize(tfm);
+       u8 *__aad;
+
+       aead_req = kzalloc(reqsize + aad_len, GFP_ATOMIC);
+       if (!aead_req)
+               return -ENOMEM;
+
+       __aad = (u8 *)aead_req + reqsize;
+       memcpy(__aad, aad, aad_len);
+
+       sg_init_table(sg, 3);
+       sg_set_buf(&sg[0], __aad, aad_len);
+       sg_set_buf(&sg[1], data, data_len);
+       sg_set_buf(&sg[2], mic, mic_len);
+
+       aead_request_set_tfm(aead_req, tfm);
+       aead_request_set_crypt(aead_req, sg, sg, data_len, b_0);
+       aead_request_set_ad(aead_req, sg[0].length);
+
+       crypto_aead_encrypt(aead_req);
+       kzfree(aead_req);
+
+       return 0;
+}
+
+int aead_decrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad, size_t aad_len,
+                u8 *data, size_t data_len, u8 *mic)
+{
+       size_t mic_len = tfm->authsize;
+       struct scatterlist sg[3];
+       struct aead_request *aead_req;
+       int reqsize = sizeof(*aead_req) + crypto_aead_reqsize(tfm);
+       u8 *__aad;
+       int err;
+
+       if (data_len == 0)
+               return -EINVAL;
+
+       aead_req = kzalloc(reqsize + aad_len, GFP_ATOMIC);
+       if (!aead_req)
+               return -ENOMEM;
+
+       __aad = (u8 *)aead_req + reqsize;
+       memcpy(__aad, aad, aad_len);
+
+       sg_init_table(sg, 3);
+       sg_set_buf(&sg[0], __aad, aad_len);
+       sg_set_buf(&sg[1], data, data_len);
+       sg_set_buf(&sg[2], mic, mic_len);
+
+       aead_request_set_tfm(aead_req, tfm);
+       aead_request_set_crypt(aead_req, sg, sg, data_len + mic_len, b_0);
+       aead_request_set_ad(aead_req, sg[0].length);
+
+       err = crypto_aead_decrypt(aead_req);
+       kzfree(aead_req);
+
+       return err;
+}
+
+struct crypto_aead *
+aead_key_setup_encrypt(const char *alg, const u8 key[],
+                      size_t key_len, size_t mic_len)
+{
+       struct crypto_aead *tfm;
+       int err;
+
+       tfm = crypto_alloc_aead(alg, 0, CRYPTO_ALG_ASYNC);
+       if (IS_ERR(tfm))
+               return tfm;
+
+       err = crypto_aead_setkey(tfm, key, key_len);
+       if (err)
+               goto free_aead;
+       err = crypto_aead_setauthsize(tfm, mic_len);
+       if (err)
+               goto free_aead;
+
+       return tfm;
+
+free_aead:
+       crypto_free_aead(tfm);
+       return ERR_PTR(err);
+}
+
+void aead_key_free(struct crypto_aead *tfm)
+{
+       crypto_free_aead(tfm);
+}
diff --git a/net/mac80211/aead_api.h b/net/mac80211/aead_api.h
new file mode 100644 (file)
index 0000000..5e39ea8
--- /dev/null
@@ -0,0 +1,27 @@
+/*
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ */
+
+#ifndef _AEAD_API_H
+#define _AEAD_API_H
+
+#include <crypto/aead.h>
+#include <linux/crypto.h>
+
+struct crypto_aead *
+aead_key_setup_encrypt(const char *alg, const u8 key[],
+                      size_t key_len, size_t mic_len);
+
+int aead_encrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad,
+                size_t aad_len, u8 *data,
+                size_t data_len, u8 *mic);
+
+int aead_decrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad,
+                size_t aad_len, u8 *data,
+                size_t data_len, u8 *mic);
+
+void aead_key_free(struct crypto_aead *tfm);
+
+#endif /* _AEAD_API_H */
diff --git a/net/mac80211/aes_ccm.c b/net/mac80211/aes_ccm.c
deleted file mode 100644 (file)
index a4e0d59..0000000
+++ /dev/null
@@ -1,115 +0,0 @@
-/*
- * Copyright 2003-2004, Instant802 Networks, Inc.
- * Copyright 2005-2006, Devicescape Software, Inc.
- *
- * Rewrite: Copyright (C) 2013 Linaro Ltd <ard.biesheuvel@linaro.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- */
-
-#include <linux/kernel.h>
-#include <linux/types.h>
-#include <linux/err.h>
-#include <crypto/aead.h>
-
-#include <net/mac80211.h>
-#include "key.h"
-#include "aes_ccm.h"
-
-int ieee80211_aes_ccm_encrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad,
-                             u8 *data, size_t data_len, u8 *mic,
-                             size_t mic_len)
-{
-       struct scatterlist sg[3];
-       struct aead_request *aead_req;
-       int reqsize = sizeof(*aead_req) + crypto_aead_reqsize(tfm);
-       u8 *__aad;
-
-       aead_req = kzalloc(reqsize + CCM_AAD_LEN, GFP_ATOMIC);
-       if (!aead_req)
-               return -ENOMEM;
-
-       __aad = (u8 *)aead_req + reqsize;
-       memcpy(__aad, aad, CCM_AAD_LEN);
-
-       sg_init_table(sg, 3);
-       sg_set_buf(&sg[0], &__aad[2], be16_to_cpup((__be16 *)__aad));
-       sg_set_buf(&sg[1], data, data_len);
-       sg_set_buf(&sg[2], mic, mic_len);
-
-       aead_request_set_tfm(aead_req, tfm);
-       aead_request_set_crypt(aead_req, sg, sg, data_len, b_0);
-       aead_request_set_ad(aead_req, sg[0].length);
-
-       crypto_aead_encrypt(aead_req);
-       kzfree(aead_req);
-
-       return 0;
-}
-
-int ieee80211_aes_ccm_decrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad,
-                             u8 *data, size_t data_len, u8 *mic,
-                             size_t mic_len)
-{
-       struct scatterlist sg[3];
-       struct aead_request *aead_req;
-       int reqsize = sizeof(*aead_req) + crypto_aead_reqsize(tfm);
-       u8 *__aad;
-       int err;
-
-       if (data_len == 0)
-               return -EINVAL;
-
-       aead_req = kzalloc(reqsize + CCM_AAD_LEN, GFP_ATOMIC);
-       if (!aead_req)
-               return -ENOMEM;
-
-       __aad = (u8 *)aead_req + reqsize;
-       memcpy(__aad, aad, CCM_AAD_LEN);
-
-       sg_init_table(sg, 3);
-       sg_set_buf(&sg[0], &__aad[2], be16_to_cpup((__be16 *)__aad));
-       sg_set_buf(&sg[1], data, data_len);
-       sg_set_buf(&sg[2], mic, mic_len);
-
-       aead_request_set_tfm(aead_req, tfm);
-       aead_request_set_crypt(aead_req, sg, sg, data_len + mic_len, b_0);
-       aead_request_set_ad(aead_req, sg[0].length);
-
-       err = crypto_aead_decrypt(aead_req);
-       kzfree(aead_req);
-
-       return err;
-}
-
-struct crypto_aead *ieee80211_aes_key_setup_encrypt(const u8 key[],
-                                                   size_t key_len,
-                                                   size_t mic_len)
-{
-       struct crypto_aead *tfm;
-       int err;
-
-       tfm = crypto_alloc_aead("ccm(aes)", 0, CRYPTO_ALG_ASYNC);
-       if (IS_ERR(tfm))
-               return tfm;
-
-       err = crypto_aead_setkey(tfm, key, key_len);
-       if (err)
-               goto free_aead;
-       err = crypto_aead_setauthsize(tfm, mic_len);
-       if (err)
-               goto free_aead;
-
-       return tfm;
-
-free_aead:
-       crypto_free_aead(tfm);
-       return ERR_PTR(err);
-}
-
-void ieee80211_aes_key_free(struct crypto_aead *tfm)
-{
-       crypto_free_aead(tfm);
-}
index fcd3254c5cf08d9c61c6bb7ff6f6260922f8c583..e9b7ca0bde5b92f2d829f90dc1aa7d232a3794c5 100644 (file)
 #ifndef AES_CCM_H
 #define AES_CCM_H
 
-#include <linux/crypto.h>
+#include "aead_api.h"
 
 #define CCM_AAD_LEN    32
 
-struct crypto_aead *ieee80211_aes_key_setup_encrypt(const u8 key[],
-                                                   size_t key_len,
-                                                   size_t mic_len);
-int ieee80211_aes_ccm_encrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad,
-                             u8 *data, size_t data_len, u8 *mic,
-                             size_t mic_len);
-int ieee80211_aes_ccm_decrypt(struct crypto_aead *tfm, u8 *b_0, u8 *aad,
-                             u8 *data, size_t data_len, u8 *mic,
-                             size_t mic_len);
-void ieee80211_aes_key_free(struct crypto_aead *tfm);
+static inline struct crypto_aead *
+ieee80211_aes_key_setup_encrypt(const u8 key[], size_t key_len, size_t mic_len)
+{
+       return aead_key_setup_encrypt("ccm(aes)", key, key_len, mic_len);
+}
+
+static inline int
+ieee80211_aes_ccm_encrypt(struct crypto_aead *tfm,
+                         u8 *b_0, u8 *aad, u8 *data,
+                         size_t data_len, u8 *mic)
+{
+       return aead_encrypt(tfm, b_0, aad + 2,
+                           be16_to_cpup((__be16 *)aad),
+                           data, data_len, mic);
+}
+
+static inline int
+ieee80211_aes_ccm_decrypt(struct crypto_aead *tfm,
+                         u8 *b_0, u8 *aad, u8 *data,
+                         size_t data_len, u8 *mic)
+{
+       return aead_decrypt(tfm, b_0, aad + 2,
+                           be16_to_cpup((__be16 *)aad),
+                           data, data_len, mic);
+}
+
+static inline void ieee80211_aes_key_free(struct crypto_aead *tfm)
+{
+       return aead_key_free(tfm);
+}
 
 #endif /* AES_CCM_H */
diff --git a/net/mac80211/aes_gcm.c b/net/mac80211/aes_gcm.c
deleted file mode 100644 (file)
index 8a4397c..0000000
+++ /dev/null
@@ -1,109 +0,0 @@
-/*
- * Copyright 2014-2015, Qualcomm Atheros, Inc.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- */
-
-#include <linux/kernel.h>
-#include <linux/types.h>
-#include <linux/err.h>
-#include <crypto/aead.h>
-
-#include <net/mac80211.h>
-#include "key.h"
-#include "aes_gcm.h"
-
-int ieee80211_aes_gcm_encrypt(struct crypto_aead *tfm, u8 *j_0, u8 *aad,
-                             u8 *data, size_t data_len, u8 *mic)
-{
-       struct scatterlist sg[3];
-       struct aead_request *aead_req;
-       int reqsize = sizeof(*aead_req) + crypto_aead_reqsize(tfm);
-       u8 *__aad;
-
-       aead_req = kzalloc(reqsize + GCM_AAD_LEN, GFP_ATOMIC);
-       if (!aead_req)
-               return -ENOMEM;
-
-       __aad = (u8 *)aead_req + reqsize;
-       memcpy(__aad, aad, GCM_AAD_LEN);
-
-       sg_init_table(sg, 3);
-       sg_set_buf(&sg[0], &__aad[2], be16_to_cpup((__be16 *)__aad));
-       sg_set_buf(&sg[1], data, data_len);
-       sg_set_buf(&sg[2], mic, IEEE80211_GCMP_MIC_LEN);
-
-       aead_request_set_tfm(aead_req, tfm);
-       aead_request_set_crypt(aead_req, sg, sg, data_len, j_0);
-       aead_request_set_ad(aead_req, sg[0].length);
-
-       crypto_aead_encrypt(aead_req);
-       kzfree(aead_req);
-       return 0;
-}
-
-int ieee80211_aes_gcm_decrypt(struct crypto_aead *tfm, u8 *j_0, u8 *aad,
-                             u8 *data, size_t data_len, u8 *mic)
-{
-       struct scatterlist sg[3];
-       struct aead_request *aead_req;
-       int reqsize = sizeof(*aead_req) + crypto_aead_reqsize(tfm);
-       u8 *__aad;
-       int err;
-
-       if (data_len == 0)
-               return -EINVAL;
-
-       aead_req = kzalloc(reqsize + GCM_AAD_LEN, GFP_ATOMIC);
-       if (!aead_req)
-               return -ENOMEM;
-
-       __aad = (u8 *)aead_req + reqsize;
-       memcpy(__aad, aad, GCM_AAD_LEN);
-
-       sg_init_table(sg, 3);
-       sg_set_buf(&sg[0], &__aad[2], be16_to_cpup((__be16 *)__aad));
-       sg_set_buf(&sg[1], data, data_len);
-       sg_set_buf(&sg[2], mic, IEEE80211_GCMP_MIC_LEN);
-
-       aead_request_set_tfm(aead_req, tfm);
-       aead_request_set_crypt(aead_req, sg, sg,
-                              data_len + IEEE80211_GCMP_MIC_LEN, j_0);
-       aead_request_set_ad(aead_req, sg[0].length);
-
-       err = crypto_aead_decrypt(aead_req);
-       kzfree(aead_req);
-
-       return err;
-}
-
-struct crypto_aead *ieee80211_aes_gcm_key_setup_encrypt(const u8 key[],
-                                                       size_t key_len)
-{
-       struct crypto_aead *tfm;
-       int err;
-
-       tfm = crypto_alloc_aead("gcm(aes)", 0, CRYPTO_ALG_ASYNC);
-       if (IS_ERR(tfm))
-               return tfm;
-
-       err = crypto_aead_setkey(tfm, key, key_len);
-       if (err)
-               goto free_aead;
-       err = crypto_aead_setauthsize(tfm, IEEE80211_GCMP_MIC_LEN);
-       if (err)
-               goto free_aead;
-
-       return tfm;
-
-free_aead:
-       crypto_free_aead(tfm);
-       return ERR_PTR(err);
-}
-
-void ieee80211_aes_gcm_key_free(struct crypto_aead *tfm)
-{
-       crypto_free_aead(tfm);
-}
index 55aed5352494fca761f6a30b8c5782ed7effaf10..d2b09603300922ac9d199a2045e93ed8a3082960 100644 (file)
@@ -9,16 +9,38 @@
 #ifndef AES_GCM_H
 #define AES_GCM_H
 
-#include <linux/crypto.h>
+#include "aead_api.h"
 
 #define GCM_AAD_LEN    32
 
-int ieee80211_aes_gcm_encrypt(struct crypto_aead *tfm, u8 *j_0, u8 *aad,
-                             u8 *data, size_t data_len, u8 *mic);
-int ieee80211_aes_gcm_decrypt(struct crypto_aead *tfm, u8 *j_0, u8 *aad,
-                             u8 *data, size_t data_len, u8 *mic);
-struct crypto_aead *ieee80211_aes_gcm_key_setup_encrypt(const u8 key[],
-                                                       size_t key_len);
-void ieee80211_aes_gcm_key_free(struct crypto_aead *tfm);
+static inline int ieee80211_aes_gcm_encrypt(struct crypto_aead *tfm,
+                                           u8 *j_0, u8 *aad,  u8 *data,
+                                           size_t data_len, u8 *mic)
+{
+       return aead_encrypt(tfm, j_0, aad + 2,
+                           be16_to_cpup((__be16 *)aad),
+                           data, data_len, mic);
+}
+
+static inline int ieee80211_aes_gcm_decrypt(struct crypto_aead *tfm,
+                                           u8 *j_0, u8 *aad, u8 *data,
+                                           size_t data_len, u8 *mic)
+{
+       return aead_decrypt(tfm, j_0, aad + 2,
+                           be16_to_cpup((__be16 *)aad),
+                           data, data_len, mic);
+}
+
+static inline struct crypto_aead *
+ieee80211_aes_gcm_key_setup_encrypt(const u8 key[], size_t key_len)
+{
+       return aead_key_setup_encrypt("gcm(aes)", key,
+                                     key_len, IEEE80211_GCMP_MIC_LEN);
+}
+
+static inline void ieee80211_aes_gcm_key_free(struct crypto_aead *tfm)
+{
+       return aead_key_free(tfm);
+}
 
 #endif /* AES_GCM_H */
index 0d722ea98a1b34217c8a6c2e1a749afee5d3ee6b..b58722d9de379563b6a711e59137e4569c193186 100644 (file)
@@ -464,7 +464,7 @@ static int ccmp_encrypt_skb(struct ieee80211_tx_data *tx, struct sk_buff *skb,
        pos += IEEE80211_CCMP_HDR_LEN;
        ccmp_special_blocks(skb, pn, b_0, aad);
        return ieee80211_aes_ccm_encrypt(key->u.ccmp.tfm, b_0, aad, pos, len,
-                                        skb_put(skb, mic_len), mic_len);
+                                        skb_put(skb, mic_len));
 }
 
 
@@ -543,7 +543,7 @@ ieee80211_crypto_ccmp_decrypt(struct ieee80211_rx_data *rx,
                                    key->u.ccmp.tfm, b_0, aad,
                                    skb->data + hdrlen + IEEE80211_CCMP_HDR_LEN,
                                    data_len,
-                                   skb->data + skb->len - mic_len, mic_len))
+                                   skb->data + skb->len - mic_len))
                                return RX_DROP_UNUSABLE;
                }