cregit-Linux how code gets into the kernel

Release 4.15 net/bluetooth/ecdh_helper.c

Directory: net/bluetooth
/*
 * ECDH helper functions - KPP wrappings
 *
 * Copyright (C) 2017 Intel Corporation
 *
 * 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;
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
 * CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *
 * ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
 * COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
 * SOFTWARE IS DISCLAIMED.
 */
#include "ecdh_helper.h"

#include <linux/scatterlist.h>
#include <crypto/ecdh.h>


struct ecdh_completion {
	
struct completion completion;
	
int err;
};


static void ecdh_complete(struct crypto_async_request *req, int err) { struct ecdh_completion *res = req->data; if (err == -EINPROGRESS) return; res->err = err; complete(&res->completion); }

Contributors

PersonTokensPropCommitsCommitProp
Salvatore Benedetto45100.00%1100.00%
Total45100.00%1100.00%


static inline void swap_digits(u64 *in, u64 *out, unsigned int ndigits) { int i; for (i = 0; i < ndigits; i++) out[i] = __swab64(in[ndigits - 1 - i]); }

Contributors

PersonTokensPropCommitsCommitProp
Salvatore Benedetto52100.00%1100.00%
Total52100.00%1100.00%

/* compute_ecdh_secret() - function assumes that the private key was * already set. * @tfm: KPP tfm handle allocated with crypto_alloc_kpp(). * @public_key: pair's ecc public key. * secret: memory where the ecdh computed shared secret will be saved. * * Return: zero on success; error code in case of error. */
int compute_ecdh_secret(struct crypto_kpp *tfm, const u8 public_key[64], u8 secret[32]) { struct kpp_request *req; u8 *tmp; struct ecdh_completion result; struct scatterlist src, dst; int err; tmp = kmalloc(64, GFP_KERNEL); if (!tmp) return -ENOMEM; req = kpp_request_alloc(tfm, GFP_KERNEL); if (!req) { err = -ENOMEM; goto free_tmp; } init_completion(&result.completion); swap_digits((u64 *)public_key, (u64 *)tmp, 4); /* x */ swap_digits((u64 *)&public_key[32], (u64 *)&tmp[32], 4); /* y */ sg_init_one(&src, tmp, 64); sg_init_one(&dst, secret, 32); kpp_request_set_input(req, &src, 64); kpp_request_set_output(req, &dst, 32); kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG, ecdh_complete, &result); err = crypto_kpp_compute_shared_secret(req); if (err == -EINPROGRESS) { wait_for_completion(&result.completion); err = result.err; } if (err < 0) { pr_err("alg: ecdh: compute shared secret failed. err %d\n", err); goto free_all; } swap_digits((u64 *)secret, (u64 *)tmp, 4); memcpy(secret, tmp, 32); free_all: kpp_request_free(req); free_tmp: kzfree(tmp); return err; }

Contributors

PersonTokensPropCommitsCommitProp
Salvatore Benedetto26292.91%233.33%
Tudor-Dan Ambarus207.09%466.67%
Total282100.00%6100.00%

/* set_ecdh_privkey() - set or generate ecc private key. * * Function generates an ecc private key in the crypto subsystem when receiving * a NULL private key or sets the received key when not NULL. * * @tfm: KPP tfm handle allocated with crypto_alloc_kpp(). * @private_key: user's ecc private key. When not NULL, the key is expected * in little endian format. * * Return: zero on success; error code in case of error. */
int set_ecdh_privkey(struct crypto_kpp *tfm, const u8 private_key[32]) { u8 *buf, *tmp = NULL; unsigned int buf_len; int err; struct ecdh p = {0}; p.curve_id = ECC_CURVE_NIST_P256; if (private_key) { tmp = kmalloc(32, GFP_KERNEL); if (!tmp) return -ENOMEM; swap_digits((u64 *)private_key, (u64 *)tmp, 4); p.key = tmp; p.key_size = 32; } buf_len = crypto_ecdh_key_len(&p); buf = kmalloc(buf_len, GFP_KERNEL); if (!buf) { err = -ENOMEM; goto free_tmp; } err = crypto_ecdh_encode_key(buf, buf_len, &p); if (err) goto free_all; err = crypto_kpp_set_secret(tfm, buf, buf_len); /* fall through */ free_all: kzfree(buf); free_tmp: kzfree(tmp); return err; }

Contributors

PersonTokensPropCommitsCommitProp
Salvatore Benedetto9955.00%240.00%
Tudor-Dan Ambarus8145.00%360.00%
Total180100.00%5100.00%

/* generate_ecdh_public_key() - function assumes that the private key was * already set. * * @tfm: KPP tfm handle allocated with crypto_alloc_kpp(). * @public_key: memory where the computed ecc public key will be saved. * * Return: zero on success; error code in case of error. */
int generate_ecdh_public_key(struct crypto_kpp *tfm, u8 public_key[64]) { struct kpp_request *req; u8 *tmp; struct ecdh_completion result; struct scatterlist dst; int err; tmp = kmalloc(64, GFP_KERNEL); if (!tmp) return -ENOMEM; req = kpp_request_alloc(tfm, GFP_KERNEL); if (!req) { err = -ENOMEM; goto free_tmp; } init_completion(&result.completion); sg_init_one(&dst, tmp, 64); kpp_request_set_input(req, NULL, 0); kpp_request_set_output(req, &dst, 64); kpp_request_set_callback(req, CRYPTO_TFM_REQ_MAY_BACKLOG, ecdh_complete, &result); err = crypto_kpp_generate_public_key(req); if (err == -EINPROGRESS) { wait_for_completion(&result.completion); err = result.err; } if (err < 0) goto free_all; /* The public key is handed back in little endian as expected by * the Security Manager Protocol. */ swap_digits((u64 *)tmp, (u64 *)public_key, 4); /* x */ swap_digits((u64 *)&tmp[32], (u64 *)&public_key[32], 4); /* y */ free_all: kpp_request_free(req); free_tmp: kfree(tmp); return err; }

Contributors

PersonTokensPropCommitsCommitProp
Salvatore Benedetto13860.53%250.00%
Tudor-Dan Ambarus8135.53%125.00%
Marcel Holtmann93.95%125.00%
Total228100.00%4100.00%

/* generate_ecdh_keys() - generate ecc key pair. * * @tfm: KPP tfm handle allocated with crypto_alloc_kpp(). * @public_key: memory where the computed ecc public key will be saved. * * Return: zero on success; error code in case of error. */
int generate_ecdh_keys(struct crypto_kpp *tfm, u8 public_key[64]) { int err; err = set_ecdh_privkey(tfm, NULL); if (err) return err; return generate_ecdh_public_key(tfm, public_key); }

Contributors

PersonTokensPropCommitsCommitProp
Tudor-Dan Ambarus43100.00%1100.00%
Total43100.00%1100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Salvatore Benedetto61872.20%228.57%
Tudor-Dan Ambarus22926.75%457.14%
Marcel Holtmann91.05%114.29%
Total856100.00%7100.00%
Directory: net/bluetooth
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.