Linux 5.7.7
[linux/fpc-iii.git] / net / mptcp / crypto.c
blob0f5a414a936632d16a4647df26472a735611e5ce
1 // SPDX-License-Identifier: GPL-2.0
2 /* Multipath TCP cryptographic functions
3 * Copyright (c) 2017 - 2019, Intel Corporation.
5 * Note: This code is based on mptcp_ctrl.c, mptcp_ipv4.c, and
6 * mptcp_ipv6 from multipath-tcp.org, authored by:
8 * Sébastien Barré <sebastien.barre@uclouvain.be>
9 * Christoph Paasch <christoph.paasch@uclouvain.be>
10 * Jaakko Korkeaniemi <jaakko.korkeaniemi@aalto.fi>
11 * Gregory Detal <gregory.detal@uclouvain.be>
12 * Fabien Duchêne <fabien.duchene@uclouvain.be>
13 * Andreas Seelinger <Andreas.Seelinger@rwth-aachen.de>
14 * Lavkesh Lahngir <lavkesh51@gmail.com>
15 * Andreas Ripke <ripke@neclab.eu>
16 * Vlad Dogaru <vlad.dogaru@intel.com>
17 * Octavian Purdila <octavian.purdila@intel.com>
18 * John Ronan <jronan@tssg.org>
19 * Catalin Nicutar <catalin.nicutar@gmail.com>
20 * Brandon Heller <brandonh@stanford.edu>
23 #include <linux/kernel.h>
24 #include <crypto/sha.h>
25 #include <asm/unaligned.h>
27 #include "protocol.h"
29 #define SHA256_DIGEST_WORDS (SHA256_DIGEST_SIZE / 4)
31 void mptcp_crypto_key_sha(u64 key, u32 *token, u64 *idsn)
33 __be32 mptcp_hashed_key[SHA256_DIGEST_WORDS];
34 __be64 input = cpu_to_be64(key);
35 struct sha256_state state;
37 sha256_init(&state);
38 sha256_update(&state, (__force u8 *)&input, sizeof(input));
39 sha256_final(&state, (u8 *)mptcp_hashed_key);
41 if (token)
42 *token = be32_to_cpu(mptcp_hashed_key[0]);
43 if (idsn)
44 *idsn = be64_to_cpu(*((__be64 *)&mptcp_hashed_key[6]));
47 void mptcp_crypto_hmac_sha(u64 key1, u64 key2, u8 *msg, int len, void *hmac)
49 u8 input[SHA256_BLOCK_SIZE + SHA256_DIGEST_SIZE];
50 struct sha256_state state;
51 u8 key1be[8];
52 u8 key2be[8];
53 int i;
55 if (WARN_ON_ONCE(len > SHA256_DIGEST_SIZE))
56 len = SHA256_DIGEST_SIZE;
58 put_unaligned_be64(key1, key1be);
59 put_unaligned_be64(key2, key2be);
61 /* Generate key xored with ipad */
62 memset(input, 0x36, SHA_MESSAGE_BYTES);
63 for (i = 0; i < 8; i++)
64 input[i] ^= key1be[i];
65 for (i = 0; i < 8; i++)
66 input[i + 8] ^= key2be[i];
68 memcpy(&input[SHA256_BLOCK_SIZE], msg, len);
70 sha256_init(&state);
71 sha256_update(&state, input, SHA256_BLOCK_SIZE + len);
73 /* emit sha256(K1 || msg) on the second input block, so we can
74 * reuse 'input' for the last hashing
76 sha256_final(&state, &input[SHA256_BLOCK_SIZE]);
78 /* Prepare second part of hmac */
79 memset(input, 0x5C, SHA_MESSAGE_BYTES);
80 for (i = 0; i < 8; i++)
81 input[i] ^= key1be[i];
82 for (i = 0; i < 8; i++)
83 input[i + 8] ^= key2be[i];
85 sha256_init(&state);
86 sha256_update(&state, input, SHA256_BLOCK_SIZE + SHA256_DIGEST_SIZE);
87 sha256_final(&state, (u8 *)hmac);
90 #ifdef CONFIG_MPTCP_HMAC_TEST
91 struct test_cast {
92 char *key;
93 char *msg;
94 char *result;
97 /* we can't reuse RFC 4231 test vectors, as we have constraint on the
98 * input and key size.
100 static struct test_cast tests[] = {
102 .key = "0b0b0b0b0b0b0b0b",
103 .msg = "48692054",
104 .result = "8385e24fb4235ac37556b6b886db106284a1da671699f46db1f235ec622dcafa",
107 .key = "aaaaaaaaaaaaaaaa",
108 .msg = "dddddddd",
109 .result = "2c5e219164ff1dca1c4a92318d847bb6b9d44492984e1eb71aff9022f71046e9",
112 .key = "0102030405060708",
113 .msg = "cdcdcdcd",
114 .result = "e73b9ba9969969cefb04aa0d6df18ec2fcc075b6f23b4d8c4da736a5dbbc6e7d",
118 static int __init test_mptcp_crypto(void)
120 char hmac[32], hmac_hex[65];
121 u32 nonce1, nonce2;
122 u64 key1, key2;
123 u8 msg[8];
124 int i, j;
126 for (i = 0; i < ARRAY_SIZE(tests); ++i) {
127 /* mptcp hmap will convert to be before computing the hmac */
128 key1 = be64_to_cpu(*((__be64 *)&tests[i].key[0]));
129 key2 = be64_to_cpu(*((__be64 *)&tests[i].key[8]));
130 nonce1 = be32_to_cpu(*((__be32 *)&tests[i].msg[0]));
131 nonce2 = be32_to_cpu(*((__be32 *)&tests[i].msg[4]));
133 put_unaligned_be32(nonce1, &msg[0]);
134 put_unaligned_be32(nonce2, &msg[4]);
136 mptcp_crypto_hmac_sha(key1, key2, msg, 8, hmac);
137 for (j = 0; j < 32; ++j)
138 sprintf(&hmac_hex[j << 1], "%02x", hmac[j] & 0xff);
139 hmac_hex[64] = 0;
141 if (memcmp(hmac_hex, tests[i].result, 64))
142 pr_err("test %d failed, got %s expected %s", i,
143 hmac_hex, tests[i].result);
144 else
145 pr_info("test %d [ ok ]", i);
147 return 0;
150 late_initcall(test_mptcp_crypto);
151 #endif