blob: 8a4397cc1b08b2ffae5ca09b2a8f927aa090dac1 [file] [log] [blame]
Jouni Malinen00b9cfa2015-01-24 19:52:06 +02001/*
2 * Copyright 2014-2015, Qualcomm Atheros, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9#include <linux/kernel.h>
10#include <linux/types.h>
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020011#include <linux/err.h>
Herbert Xud8fe0dd2015-04-22 15:06:32 +080012#include <crypto/aead.h>
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020013
14#include <net/mac80211.h>
15#include "key.h"
16#include "aes_gcm.h"
17
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +010018int ieee80211_aes_gcm_encrypt(struct crypto_aead *tfm, u8 *j_0, u8 *aad,
19 u8 *data, size_t data_len, u8 *mic)
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020020{
Herbert Xu957e0fe2015-05-27 16:03:50 +080021 struct scatterlist sg[3];
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +010022 struct aead_request *aead_req;
23 int reqsize = sizeof(*aead_req) + crypto_aead_reqsize(tfm);
24 u8 *__aad;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020025
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +010026 aead_req = kzalloc(reqsize + GCM_AAD_LEN, GFP_ATOMIC);
27 if (!aead_req)
28 return -ENOMEM;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020029
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +010030 __aad = (u8 *)aead_req + reqsize;
31 memcpy(__aad, aad, GCM_AAD_LEN);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020032
Herbert Xu957e0fe2015-05-27 16:03:50 +080033 sg_init_table(sg, 3);
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +010034 sg_set_buf(&sg[0], &__aad[2], be16_to_cpup((__be16 *)__aad));
Herbert Xu957e0fe2015-05-27 16:03:50 +080035 sg_set_buf(&sg[1], data, data_len);
36 sg_set_buf(&sg[2], mic, IEEE80211_GCMP_MIC_LEN);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020037
38 aead_request_set_tfm(aead_req, tfm);
Herbert Xu957e0fe2015-05-27 16:03:50 +080039 aead_request_set_crypt(aead_req, sg, sg, data_len, j_0);
40 aead_request_set_ad(aead_req, sg[0].length);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020041
42 crypto_aead_encrypt(aead_req);
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +010043 kzfree(aead_req);
44 return 0;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020045}
46
47int ieee80211_aes_gcm_decrypt(struct crypto_aead *tfm, u8 *j_0, u8 *aad,
48 u8 *data, size_t data_len, u8 *mic)
49{
Herbert Xu957e0fe2015-05-27 16:03:50 +080050 struct scatterlist sg[3];
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +010051 struct aead_request *aead_req;
52 int reqsize = sizeof(*aead_req) + crypto_aead_reqsize(tfm);
53 u8 *__aad;
54 int err;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020055
56 if (data_len == 0)
57 return -EINVAL;
58
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +010059 aead_req = kzalloc(reqsize + GCM_AAD_LEN, GFP_ATOMIC);
60 if (!aead_req)
61 return -ENOMEM;
62
63 __aad = (u8 *)aead_req + reqsize;
64 memcpy(__aad, aad, GCM_AAD_LEN);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020065
Herbert Xu957e0fe2015-05-27 16:03:50 +080066 sg_init_table(sg, 3);
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +010067 sg_set_buf(&sg[0], &__aad[2], be16_to_cpup((__be16 *)__aad));
Herbert Xu957e0fe2015-05-27 16:03:50 +080068 sg_set_buf(&sg[1], data, data_len);
69 sg_set_buf(&sg[2], mic, IEEE80211_GCMP_MIC_LEN);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020070
71 aead_request_set_tfm(aead_req, tfm);
Herbert Xu957e0fe2015-05-27 16:03:50 +080072 aead_request_set_crypt(aead_req, sg, sg,
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020073 data_len + IEEE80211_GCMP_MIC_LEN, j_0);
Herbert Xu957e0fe2015-05-27 16:03:50 +080074 aead_request_set_ad(aead_req, sg[0].length);
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020075
Ard Biesheuvelf4a067f2016-10-17 15:05:33 +010076 err = crypto_aead_decrypt(aead_req);
77 kzfree(aead_req);
78
79 return err;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020080}
81
82struct crypto_aead *ieee80211_aes_gcm_key_setup_encrypt(const u8 key[],
83 size_t key_len)
84{
85 struct crypto_aead *tfm;
86 int err;
87
88 tfm = crypto_alloc_aead("gcm(aes)", 0, CRYPTO_ALG_ASYNC);
89 if (IS_ERR(tfm))
90 return tfm;
91
92 err = crypto_aead_setkey(tfm, key, key_len);
Johannes Berg07862e12015-03-23 17:08:14 +030093 if (err)
94 goto free_aead;
95 err = crypto_aead_setauthsize(tfm, IEEE80211_GCMP_MIC_LEN);
96 if (err)
97 goto free_aead;
Jouni Malinen00b9cfa2015-01-24 19:52:06 +020098
Johannes Berg07862e12015-03-23 17:08:14 +030099 return tfm;
100
101free_aead:
Jouni Malinen00b9cfa2015-01-24 19:52:06 +0200102 crypto_free_aead(tfm);
103 return ERR_PTR(err);
104}
105
106void ieee80211_aes_gcm_key_free(struct crypto_aead *tfm)
107{
108 crypto_free_aead(tfm);
109}