blob: b0e8a4939b4ff7c215fdef30719991db5c988359 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Yuan Kang4c1ec1f2012-06-22 19:48:45 -05002/*
3 * CAAM/SEC 4.x functions for handling key-generation jobs
4 *
5 * Copyright 2008-2011 Freescale Semiconductor, Inc.
6 *
7 */
8#include "compat.h"
9#include "jr.h"
10#include "error.h"
11#include "desc_constr.h"
12#include "key_gen.h"
13
14void split_key_done(struct device *dev, u32 *desc, u32 err,
15 void *context)
16{
17 struct split_key_result *res = context;
Horia Geantă1984aae2019-07-31 16:08:03 +030018 int ecode = 0;
Yuan Kang4c1ec1f2012-06-22 19:48:45 -050019
Sascha Hauer6e005502019-05-23 10:50:29 +020020 dev_dbg(dev, "%s %d: err 0x%x\n", __func__, __LINE__, err);
Yuan Kang4c1ec1f2012-06-22 19:48:45 -050021
Marek Vasutfa9659c2014-04-24 20:05:12 +020022 if (err)
Horia Geantă1984aae2019-07-31 16:08:03 +030023 ecode = caam_jr_strstatus(dev, err);
Yuan Kang4c1ec1f2012-06-22 19:48:45 -050024
Horia Geantă1984aae2019-07-31 16:08:03 +030025 res->err = ecode;
Yuan Kang4c1ec1f2012-06-22 19:48:45 -050026
27 complete(&res->completion);
28}
29EXPORT_SYMBOL(split_key_done);
30/*
31get a split ipad/opad key
32
33Split key generation-----------------------------------------------
34
35[00] 0xb0810008 jobdesc: stidx=1 share=never len=8
36[01] 0x04000014 key: class2->keyreg len=20
37 @0xffe01000
38[03] 0x84410014 operation: cls2-op sha1 hmac init dec
39[04] 0x24940000 fifold: class2 msgdata-last2 len=0 imm
40[05] 0xa4000001 jump: class2 local all ->1 [06]
41[06] 0x64260028 fifostr: class2 mdsplit-jdk len=40
42 @0xffe04000
43*/
Horia Geantădb576562016-11-22 15:44:04 +020044int gen_split_key(struct device *jrdev, u8 *key_out,
Horia Geantă6655cb8e52016-11-22 15:44:10 +020045 struct alginfo * const adata, const u8 *key_in, u32 keylen,
46 int max_keylen)
Yuan Kang4c1ec1f2012-06-22 19:48:45 -050047{
48 u32 *desc;
49 struct split_key_result result;
Horia Geantă30724442019-02-19 16:56:57 +020050 dma_addr_t dma_addr;
Horia Geantăe9b49132019-07-31 16:08:11 +030051 unsigned int local_max;
Cristian Stoica738459e2014-10-30 14:40:22 +020052 int ret = -ENOMEM;
Yuan Kang4c1ec1f2012-06-22 19:48:45 -050053
Horia Geantă6655cb8e52016-11-22 15:44:10 +020054 adata->keylen = split_key_len(adata->algtype & OP_ALG_ALGSEL_MASK);
55 adata->keylen_pad = split_key_pad_len(adata->algtype &
56 OP_ALG_ALGSEL_MASK);
Horia Geantăe9b49132019-07-31 16:08:11 +030057 local_max = max(keylen, adata->keylen_pad);
Horia Geantă6655cb8e52016-11-22 15:44:10 +020058
Sascha Hauer6e005502019-05-23 10:50:29 +020059 dev_dbg(jrdev, "split keylen %d split keylen padded %d\n",
Horia Geantă6655cb8e52016-11-22 15:44:10 +020060 adata->keylen, adata->keylen_pad);
Sascha Hauer6e005502019-05-23 10:50:29 +020061 print_hex_dump_debug("ctx.key@" __stringify(__LINE__)": ",
62 DUMP_PREFIX_ADDRESS, 16, 4, key_in, keylen, 1);
Horia Geantă6655cb8e52016-11-22 15:44:10 +020063
Horia Geantăe9b49132019-07-31 16:08:11 +030064 if (local_max > max_keylen)
Horia Geantă6655cb8e52016-11-22 15:44:10 +020065 return -EINVAL;
66
Yuan Kang4c1ec1f2012-06-22 19:48:45 -050067 desc = kmalloc(CAAM_CMD_SZ * 6 + CAAM_PTR_SZ * 2, GFP_KERNEL | GFP_DMA);
Kim Phillips2af8f4a2012-09-07 04:17:03 +080068 if (!desc) {
69 dev_err(jrdev, "unable to allocate key input memory\n");
Cristian Stoica738459e2014-10-30 14:40:22 +020070 return ret;
Kim Phillips2af8f4a2012-09-07 04:17:03 +080071 }
Yuan Kang4c1ec1f2012-06-22 19:48:45 -050072
Horia Geantă30724442019-02-19 16:56:57 +020073 memcpy(key_out, key_in, keylen);
74
Horia Geantăe9b49132019-07-31 16:08:11 +030075 dma_addr = dma_map_single(jrdev, key_out, local_max, DMA_BIDIRECTIONAL);
Horia Geantă30724442019-02-19 16:56:57 +020076 if (dma_mapping_error(jrdev, dma_addr)) {
77 dev_err(jrdev, "unable to map key memory\n");
Cristian Stoica738459e2014-10-30 14:40:22 +020078 goto out_free;
Yuan Kang4c1ec1f2012-06-22 19:48:45 -050079 }
Cristian Stoica738459e2014-10-30 14:40:22 +020080
Cristian Stoica738459e2014-10-30 14:40:22 +020081 init_job_desc(desc, 0);
Horia Geantă30724442019-02-19 16:56:57 +020082 append_key(desc, dma_addr, keylen, CLASS_2 | KEY_DEST_CLASS_REG);
Yuan Kang4c1ec1f2012-06-22 19:48:45 -050083
84 /* Sets MDHA up into an HMAC-INIT */
Horia Geantă488ebc32016-11-22 15:44:05 +020085 append_operation(desc, (adata->algtype & OP_ALG_ALGSEL_MASK) |
86 OP_ALG_AAI_HMAC | OP_TYPE_CLASS2_ALG | OP_ALG_DECRYPT |
87 OP_ALG_AS_INIT);
Yuan Kang4c1ec1f2012-06-22 19:48:45 -050088
89 /*
90 * do a FIFO_LOAD of zero, this will trigger the internal key expansion
91 * into both pads inside MDHA
92 */
93 append_fifo_load_as_imm(desc, NULL, 0, LDST_CLASS_2_CCB |
94 FIFOLD_TYPE_MSG | FIFOLD_TYPE_LAST2);
95
96 /*
97 * FIFO_STORE with the explicit split-key content store
98 * (0x26 output type)
99 */
Horia Geantă30724442019-02-19 16:56:57 +0200100 append_fifo_store(desc, dma_addr, adata->keylen,
Yuan Kang4c1ec1f2012-06-22 19:48:45 -0500101 LDST_CLASS_2_CCB | FIFOST_TYPE_SPLIT_KEK);
102
Sascha Hauer6e005502019-05-23 10:50:29 +0200103 print_hex_dump_debug("jobdesc@"__stringify(__LINE__)": ",
104 DUMP_PREFIX_ADDRESS, 16, 4, desc, desc_bytes(desc),
105 1);
Yuan Kang4c1ec1f2012-06-22 19:48:45 -0500106
107 result.err = 0;
108 init_completion(&result.completion);
109
110 ret = caam_jr_enqueue(jrdev, desc, split_key_done, &result);
Iuliana Prodan4d370a12020-02-12 19:55:20 +0200111 if (ret == -EINPROGRESS) {
Yuan Kang4c1ec1f2012-06-22 19:48:45 -0500112 /* in progress */
Horia Geantă7459e1d2017-07-07 16:57:06 +0300113 wait_for_completion(&result.completion);
Yuan Kang4c1ec1f2012-06-22 19:48:45 -0500114 ret = result.err;
Sascha Hauer6e005502019-05-23 10:50:29 +0200115
116 print_hex_dump_debug("ctx.key@"__stringify(__LINE__)": ",
117 DUMP_PREFIX_ADDRESS, 16, 4, key_out,
118 adata->keylen_pad, 1);
Yuan Kang4c1ec1f2012-06-22 19:48:45 -0500119 }
120
Horia Geantăe9b49132019-07-31 16:08:11 +0300121 dma_unmap_single(jrdev, dma_addr, local_max, DMA_BIDIRECTIONAL);
Cristian Stoica738459e2014-10-30 14:40:22 +0200122out_free:
Yuan Kang4c1ec1f2012-06-22 19:48:45 -0500123 kfree(desc);
Yuan Kang4c1ec1f2012-06-22 19:48:45 -0500124 return ret;
125}
Ben Collins3b75a2c2012-08-23 18:39:57 -0400126EXPORT_SYMBOL(gen_split_key);