1 // SPDX-License-Identifier: GPL-2.0
3 * Microchip / Atmel ECC (I2C) driver.
5 * Copyright (c) 2017, Microchip Technology Inc.
6 * Author: Tudor Ambarus
9 #include <linux/delay.h>
10 #include <linux/device.h>
11 #include <linux/err.h>
12 #include <linux/errno.h>
13 #include <linux/i2c.h>
14 #include <linux/init.h>
15 #include <linux/kernel.h>
16 #include <linux/module.h>
18 #include <linux/scatterlist.h>
19 #include <linux/slab.h>
20 #include <linux/workqueue.h>
21 #include <crypto/internal/kpp.h>
22 #include <crypto/ecdh.h>
23 #include <crypto/kpp.h>
24 #include "atmel-i2c.h"
26 static struct atmel_ecc_driver_data driver_data
;
29 * struct atmel_ecdh_ctx - transformation context
30 * @client : pointer to i2c client device
31 * @fallback : used for unsupported curves or when user wants to use its own
33 * @public_key : generated when calling set_secret(). It's the responsibility
34 * of the user to not call set_secret() while
35 * generate_public_key() or compute_shared_secret() are in flight.
36 * @curve_id : elliptic curve id
37 * @do_fallback: true when the device doesn't support the curve or when the user
38 * wants to use its own private key.
40 struct atmel_ecdh_ctx
{
41 struct i2c_client
*client
;
42 struct crypto_kpp
*fallback
;
44 unsigned int curve_id
;
48 static void atmel_ecdh_done(struct atmel_i2c_work_data
*work_data
, void *areq
,
51 struct kpp_request
*req
= areq
;
52 struct atmel_i2c_cmd
*cmd
= &work_data
->cmd
;
58 /* might want less than we've got */
59 n_sz
= min_t(size_t, ATMEL_ECC_NIST_P256_N_SIZE
, req
->dst_len
);
61 /* copy the shared secret */
62 copied
= sg_copy_from_buffer(req
->dst
, sg_nents_for_len(req
->dst
, n_sz
),
63 &cmd
->data
[RSP_DATA_IDX
], n_sz
);
69 kfree_sensitive(work_data
);
70 kpp_request_complete(req
, status
);
74 * A random private key is generated and stored in the device. The device
75 * returns the pair public key.
77 static int atmel_ecdh_set_secret(struct crypto_kpp
*tfm
, const void *buf
,
80 struct atmel_ecdh_ctx
*ctx
= kpp_tfm_ctx(tfm
);
81 struct atmel_i2c_cmd
*cmd
;
86 /* free the old public key, if any */
87 kfree(ctx
->public_key
);
88 /* make sure you don't free the old public key twice */
89 ctx
->public_key
= NULL
;
91 if (crypto_ecdh_decode_key(buf
, len
, ¶ms
) < 0) {
92 dev_err(&ctx
->client
->dev
, "crypto_ecdh_decode_key failed\n");
96 if (params
.key_size
) {
97 /* fallback to ecdh software implementation */
98 ctx
->do_fallback
= true;
99 return crypto_kpp_set_secret(ctx
->fallback
, buf
, len
);
102 cmd
= kmalloc(sizeof(*cmd
), GFP_KERNEL
);
107 * The device only supports NIST P256 ECC keys. The public key size will
108 * always be the same. Use a macro for the key size to avoid unnecessary
111 public_key
= kmalloc(ATMEL_ECC_PUBKEY_SIZE
, GFP_KERNEL
);
115 ctx
->do_fallback
= false;
117 atmel_i2c_init_genkey_cmd(cmd
, DATA_SLOT_2
);
119 ret
= atmel_i2c_send_receive(ctx
->client
, cmd
);
121 goto free_public_key
;
123 /* save the public key */
124 memcpy(public_key
, &cmd
->data
[RSP_DATA_IDX
], ATMEL_ECC_PUBKEY_SIZE
);
125 ctx
->public_key
= public_key
;
137 static int atmel_ecdh_generate_public_key(struct kpp_request
*req
)
139 struct crypto_kpp
*tfm
= crypto_kpp_reqtfm(req
);
140 struct atmel_ecdh_ctx
*ctx
= kpp_tfm_ctx(tfm
);
141 size_t copied
, nbytes
;
144 if (ctx
->do_fallback
) {
145 kpp_request_set_tfm(req
, ctx
->fallback
);
146 return crypto_kpp_generate_public_key(req
);
149 if (!ctx
->public_key
)
152 /* might want less than we've got */
153 nbytes
= min_t(size_t, ATMEL_ECC_PUBKEY_SIZE
, req
->dst_len
);
155 /* public key was saved at private key generation */
156 copied
= sg_copy_from_buffer(req
->dst
,
157 sg_nents_for_len(req
->dst
, nbytes
),
158 ctx
->public_key
, nbytes
);
159 if (copied
!= nbytes
)
165 static int atmel_ecdh_compute_shared_secret(struct kpp_request
*req
)
167 struct crypto_kpp
*tfm
= crypto_kpp_reqtfm(req
);
168 struct atmel_ecdh_ctx
*ctx
= kpp_tfm_ctx(tfm
);
169 struct atmel_i2c_work_data
*work_data
;
173 if (ctx
->do_fallback
) {
174 kpp_request_set_tfm(req
, ctx
->fallback
);
175 return crypto_kpp_compute_shared_secret(req
);
178 /* must have exactly two points to be on the curve */
179 if (req
->src_len
!= ATMEL_ECC_PUBKEY_SIZE
)
182 gfp
= (req
->base
.flags
& CRYPTO_TFM_REQ_MAY_SLEEP
) ? GFP_KERNEL
:
185 work_data
= kmalloc(sizeof(*work_data
), gfp
);
189 work_data
->ctx
= ctx
;
190 work_data
->client
= ctx
->client
;
192 ret
= atmel_i2c_init_ecdh_cmd(&work_data
->cmd
, req
->src
);
196 atmel_i2c_enqueue(work_data
, atmel_ecdh_done
, req
);
205 static struct i2c_client
*atmel_ecc_i2c_client_alloc(void)
207 struct atmel_i2c_client_priv
*i2c_priv
, *min_i2c_priv
= NULL
;
208 struct i2c_client
*client
= ERR_PTR(-ENODEV
);
209 int min_tfm_cnt
= INT_MAX
;
212 spin_lock(&driver_data
.i2c_list_lock
);
214 if (list_empty(&driver_data
.i2c_client_list
)) {
215 spin_unlock(&driver_data
.i2c_list_lock
);
216 return ERR_PTR(-ENODEV
);
219 list_for_each_entry(i2c_priv
, &driver_data
.i2c_client_list
,
220 i2c_client_list_node
) {
221 tfm_cnt
= atomic_read(&i2c_priv
->tfm_count
);
222 if (tfm_cnt
< min_tfm_cnt
) {
223 min_tfm_cnt
= tfm_cnt
;
224 min_i2c_priv
= i2c_priv
;
231 atomic_inc(&min_i2c_priv
->tfm_count
);
232 client
= min_i2c_priv
->client
;
235 spin_unlock(&driver_data
.i2c_list_lock
);
240 static void atmel_ecc_i2c_client_free(struct i2c_client
*client
)
242 struct atmel_i2c_client_priv
*i2c_priv
= i2c_get_clientdata(client
);
244 atomic_dec(&i2c_priv
->tfm_count
);
247 static int atmel_ecdh_init_tfm(struct crypto_kpp
*tfm
)
249 const char *alg
= kpp_alg_name(tfm
);
250 struct crypto_kpp
*fallback
;
251 struct atmel_ecdh_ctx
*ctx
= kpp_tfm_ctx(tfm
);
253 ctx
->curve_id
= ECC_CURVE_NIST_P256
;
254 ctx
->client
= atmel_ecc_i2c_client_alloc();
255 if (IS_ERR(ctx
->client
)) {
256 pr_err("tfm - i2c_client binding failed\n");
257 return PTR_ERR(ctx
->client
);
260 fallback
= crypto_alloc_kpp(alg
, 0, CRYPTO_ALG_NEED_FALLBACK
);
261 if (IS_ERR(fallback
)) {
262 dev_err(&ctx
->client
->dev
, "Failed to allocate transformation for '%s': %ld\n",
263 alg
, PTR_ERR(fallback
));
264 return PTR_ERR(fallback
);
267 crypto_kpp_set_flags(fallback
, crypto_kpp_get_flags(tfm
));
268 ctx
->fallback
= fallback
;
273 static void atmel_ecdh_exit_tfm(struct crypto_kpp
*tfm
)
275 struct atmel_ecdh_ctx
*ctx
= kpp_tfm_ctx(tfm
);
277 kfree(ctx
->public_key
);
278 crypto_free_kpp(ctx
->fallback
);
279 atmel_ecc_i2c_client_free(ctx
->client
);
282 static unsigned int atmel_ecdh_max_size(struct crypto_kpp
*tfm
)
284 struct atmel_ecdh_ctx
*ctx
= kpp_tfm_ctx(tfm
);
287 return crypto_kpp_maxsize(ctx
->fallback
);
290 * The device only supports NIST P256 ECC keys. The public key size will
291 * always be the same. Use a macro for the key size to avoid unnecessary
294 return ATMEL_ECC_PUBKEY_SIZE
;
297 static struct kpp_alg atmel_ecdh_nist_p256
= {
298 .set_secret
= atmel_ecdh_set_secret
,
299 .generate_public_key
= atmel_ecdh_generate_public_key
,
300 .compute_shared_secret
= atmel_ecdh_compute_shared_secret
,
301 .init
= atmel_ecdh_init_tfm
,
302 .exit
= atmel_ecdh_exit_tfm
,
303 .max_size
= atmel_ecdh_max_size
,
305 .cra_flags
= CRYPTO_ALG_NEED_FALLBACK
,
306 .cra_name
= "ecdh-nist-p256",
307 .cra_driver_name
= "atmel-ecdh",
308 .cra_priority
= ATMEL_ECC_PRIORITY
,
309 .cra_module
= THIS_MODULE
,
310 .cra_ctxsize
= sizeof(struct atmel_ecdh_ctx
),
314 static int atmel_ecc_probe(struct i2c_client
*client
)
316 struct atmel_i2c_client_priv
*i2c_priv
;
319 ret
= atmel_i2c_probe(client
);
323 i2c_priv
= i2c_get_clientdata(client
);
325 spin_lock(&driver_data
.i2c_list_lock
);
326 list_add_tail(&i2c_priv
->i2c_client_list_node
,
327 &driver_data
.i2c_client_list
);
328 spin_unlock(&driver_data
.i2c_list_lock
);
330 ret
= crypto_register_kpp(&atmel_ecdh_nist_p256
);
332 spin_lock(&driver_data
.i2c_list_lock
);
333 list_del(&i2c_priv
->i2c_client_list_node
);
334 spin_unlock(&driver_data
.i2c_list_lock
);
336 dev_err(&client
->dev
, "%s alg registration failed\n",
337 atmel_ecdh_nist_p256
.base
.cra_driver_name
);
339 dev_info(&client
->dev
, "atmel ecc algorithms registered in /proc/crypto\n");
345 static void atmel_ecc_remove(struct i2c_client
*client
)
347 struct atmel_i2c_client_priv
*i2c_priv
= i2c_get_clientdata(client
);
349 /* Return EBUSY if i2c client already allocated. */
350 if (atomic_read(&i2c_priv
->tfm_count
)) {
352 * After we return here, the memory backing the device is freed.
353 * That happens no matter what the return value of this function
354 * is because in the Linux device model there is no error
355 * handling for unbinding a driver.
356 * If there is still some action pending, it probably involves
357 * accessing the freed memory.
359 dev_emerg(&client
->dev
, "Device is busy, expect memory corruption.\n");
363 crypto_unregister_kpp(&atmel_ecdh_nist_p256
);
365 spin_lock(&driver_data
.i2c_list_lock
);
366 list_del(&i2c_priv
->i2c_client_list_node
);
367 spin_unlock(&driver_data
.i2c_list_lock
);
371 static const struct of_device_id atmel_ecc_dt_ids
[] = {
373 .compatible
= "atmel,atecc508a",
378 MODULE_DEVICE_TABLE(of
, atmel_ecc_dt_ids
);
381 static const struct i2c_device_id atmel_ecc_id
[] = {
385 MODULE_DEVICE_TABLE(i2c
, atmel_ecc_id
);
387 static struct i2c_driver atmel_ecc_driver
= {
390 .of_match_table
= of_match_ptr(atmel_ecc_dt_ids
),
392 .probe
= atmel_ecc_probe
,
393 .remove
= atmel_ecc_remove
,
394 .id_table
= atmel_ecc_id
,
397 static int __init
atmel_ecc_init(void)
399 spin_lock_init(&driver_data
.i2c_list_lock
);
400 INIT_LIST_HEAD(&driver_data
.i2c_client_list
);
401 return i2c_add_driver(&atmel_ecc_driver
);
404 static void __exit
atmel_ecc_exit(void)
406 atmel_i2c_flush_queue();
407 i2c_del_driver(&atmel_ecc_driver
);
410 module_init(atmel_ecc_init
);
411 module_exit(atmel_ecc_exit
);
413 MODULE_AUTHOR("Tudor Ambarus");
414 MODULE_DESCRIPTION("Microchip / Atmel ECC (I2C) driver");
415 MODULE_LICENSE("GPL v2");