-
Notifications
You must be signed in to change notification settings - Fork 263
/
Copy pathparsec.c
254 lines (216 loc) · 8.13 KB
/
parsec.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/*
Copyright (c) 2024, MariaDB plc
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA */
#ifdef HAVE_OPENSSL
#include <openssl/evp.h>
#include <openssl/rand.h>
#include <openssl/err.h>
#define random_bytes(B,L) RAND_bytes(B,L)
#elif defined(HAVE_GNUTLS)
#include <nettle/eddsa.h>
#include <nettle/pbkdf2.h>
#include <nettle/sha2.h>
#include <nettle/nettle-meta.h>
#include <nettle/hmac.h>
#include <gnutls/crypto.h>
#define random_bytes(B,L) gnutls_rnd(GNUTLS_RND_NONCE, B, L)
#elif defined(HAVE_SCHANNEL)
#include <windows.h>
#include <ma_crypt.h>
#include <bcrypt.h>
#include <crypto_sign.h>
#define random_bytes(B,L) BCryptGenRandom(NULL ,(PUCHAR)(B),(L), BCRYPT_USE_SYSTEM_PREFERRED_RNG)
#endif
#include <errmsg.h>
#include <ma_global.h>
#include <mysql.h>
#include <mysql/client_plugin.h>
#include <string.h>
#define CHALLENGE_SCRAMBLE_LENGTH 32
#define CHALLENGE_SALT_LENGTH 18
#define ED25519_SIG_LENGTH 64
#define ED25519_KEY_LENGTH 32
#define PBKDF2_HASH_LENGTH ED25519_KEY_LENGTH
#define CLIENT_RESPONSE_LENGTH (CHALLENGE_SCRAMBLE_LENGTH + ED25519_SIG_LENGTH)
struct Passwd_in_memory
{
char algorithm;
uchar iterations;
uchar salt[CHALLENGE_SALT_LENGTH];
uchar pub_key[ED25519_KEY_LENGTH];
};
#ifdef _MSC_VER
# define _Static_assert static_assert
#endif
_Static_assert(sizeof(struct Passwd_in_memory) == 2 + CHALLENGE_SALT_LENGTH
+ ED25519_KEY_LENGTH,
"Passwd_in_memory should be packed.");
struct Client_signed_response
{
union {
struct {
uchar client_scramble[CHALLENGE_SCRAMBLE_LENGTH];
uchar signature[ED25519_SIG_LENGTH];
};
uchar start[1];
};
};
_Static_assert(sizeof(struct Client_signed_response) == CLIENT_RESPONSE_LENGTH,
"Client_signed_response should be packed.");
int compute_derived_key(const char* password, size_t pass_len,
const struct Passwd_in_memory *params,
uchar *derived_key)
{
#if defined(HAVE_OPENSSL)
return !PKCS5_PBKDF2_HMAC(password, (int)pass_len, params->salt,
CHALLENGE_SALT_LENGTH,
1 << (params->iterations + 10),
EVP_sha512(), PBKDF2_HASH_LENGTH, derived_key);
#elif defined(HAVE_GNUTLS) /* HAVE_GNUTLS */
struct hmac_sha512_ctx ctx;
hmac_sha512_set_key(&ctx, pass_len, (const uint8_t *)password);
/*
pbkdf2/nettle functions are third party, so ignore the bad function casts
*/
# if defined __clang_major__ && __clang_major__ >= 16
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wcast-function-type-strict"
# endif
pbkdf2(&ctx, (nettle_hash_update_func *)hmac_sha512_update,
(nettle_hash_digest_func *)hmac_sha512_digest, SHA512_DIGEST_SIZE,
1024 << params->iterations, CHALLENGE_SALT_LENGTH, params->salt,
PBKDF2_HASH_LENGTH, derived_key);
# if defined __clang_major__ && __clang_major__ >= 16
# pragma clang diagnostic pop
# endif
#elif defined(HAVE_SCHANNEL)
BCRYPT_ALG_HANDLE algHdl;
NTSTATUS status;
if ((status = BCryptOpenAlgorithmProvider(&algHdl, BCRYPT_SHA512_ALGORITHM, NULL, BCRYPT_ALG_HANDLE_HMAC_FLAG)) != 0)
goto end;
if ((status = BCryptDeriveKeyPBKDF2(algHdl, (BYTE*)password, (ULONG)pass_len, (BYTE*)params->salt, CHALLENGE_SALT_LENGTH, 1024 << params->iterations, derived_key, PBKDF2_HASH_LENGTH, 0)) != 0)
goto end;
end:
BCryptCloseAlgorithmProvider(algHdl, 0);
return (int)status;
#endif
return 0;
}
int ed25519_sign(const uchar *response, size_t response_len,
const uchar *private_key, uchar *signature,
uchar *public_key)
{
#if defined(HAVE_OPENSSL)
int res= 1;
size_t sig_len= ED25519_SIG_LENGTH, pklen= ED25519_KEY_LENGTH;
EVP_PKEY *pkey = EVP_PKEY_new_raw_private_key(EVP_PKEY_ED25519, NULL,
private_key,
ED25519_KEY_LENGTH);
EVP_MD_CTX* ctx = EVP_MD_CTX_new();
if (!ctx || !pkey)
goto cleanup;
if (EVP_DigestSignInit(ctx, NULL, NULL, NULL, pkey) != 1 ||
EVP_DigestSign(ctx, signature, &sig_len, response, response_len) != 1)
goto cleanup;
EVP_PKEY_get_raw_public_key(pkey, public_key, &pklen);
res= 0;
cleanup:
EVP_MD_CTX_free(ctx);
EVP_PKEY_free(pkey);
return res;
#elif defined(HAVE_GNUTLS) /* HAVE_GNUTLS */
ed25519_sha512_public_key((uint8_t*)public_key, (uint8_t*)private_key);
ed25519_sha512_sign((uint8_t*)public_key, (uint8_t*)private_key,
response_len, (uint8_t*)response, (uint8_t*)signature);
#elif defined(HAVE_SCHANNEL)
unsigned char sig[ED25519_SIG_LENGTH + CHALLENGE_SCRAMBLE_LENGTH * 2];
ma_crypto_sign((unsigned char *)sig, public_key, response, response_len, private_key, ED25519_KEY_LENGTH);
memcpy(signature, sig, ED25519_SIG_LENGTH);
#endif
return 0;
}
#ifdef _MSC_VER
static __declspec(thread) struct Passwd_in_memory pwd_local;
#else
static __thread struct Passwd_in_memory pwd_local;
#endif
static int auth(MYSQL_PLUGIN_VIO *vio, MYSQL *mysql)
{
uchar *serv_scramble;
union
{
struct
{
uchar server_scramble[CHALLENGE_SCRAMBLE_LENGTH];
struct Client_signed_response response;
};
uchar start[1];
} signed_msg;
_Static_assert(sizeof signed_msg == CHALLENGE_SCRAMBLE_LENGTH
+ sizeof(struct Client_signed_response),
"signed_msg should be packed.");
struct Passwd_in_memory *params;
int pkt_len;
uchar priv_key[ED25519_KEY_LENGTH];
size_t pwlen= strlen(mysql->passwd);
pkt_len= vio->read_packet(vio, (uchar**)(&serv_scramble));
if (pkt_len != CHALLENGE_SCRAMBLE_LENGTH)
return CR_SERVER_HANDSHAKE_ERR;
memcpy(signed_msg.server_scramble, serv_scramble, CHALLENGE_SCRAMBLE_LENGTH);
if (vio->write_packet(vio, 0, 0) != 0) // Empty packet = "need salt"
return CR_ERROR;
pkt_len= vio->read_packet(vio, (uchar**)¶ms);
if (pkt_len != 2 + CHALLENGE_SALT_LENGTH)
return CR_SERVER_HANDSHAKE_ERR;
if (params->algorithm != 'P')
return CR_AUTH_PLUGIN_ERR;
if (params->iterations > 3)
return CR_AUTH_PLUGIN_ERR;
random_bytes(signed_msg.response.client_scramble, CHALLENGE_SCRAMBLE_LENGTH);
if (compute_derived_key(mysql->passwd, pwlen, params, priv_key))
return CR_AUTH_PLUGIN_ERR;
if (ed25519_sign(signed_msg.start, CHALLENGE_SCRAMBLE_LENGTH * 2,
priv_key, signed_msg.response.signature, params->pub_key))
return CR_AUTH_PLUGIN_ERR;
/* Save for the future hash_password() call */
memcpy(&pwd_local, params, sizeof(*params));
if (vio->write_packet(vio, signed_msg.response.start,
sizeof signed_msg.response) != 0)
return CR_ERROR;
return CR_OK;
}
static int hash_password(MYSQL *mysql __attribute__((unused)),
unsigned char *out, size_t *outlen)
{
if (*outlen < sizeof(struct Passwd_in_memory))
return 1;
*outlen= sizeof(struct Passwd_in_memory);
/* Use cached value */
memcpy(out, &pwd_local, sizeof(struct Passwd_in_memory));
return 0;
}
#ifndef PLUGIN_DYNAMIC
struct st_mysql_client_plugin_AUTHENTICATION parsec_client_plugin=
#else
struct st_mysql_client_plugin_AUTHENTICATION _mysql_client_plugin_declaration_ =
#endif
{
.type = MYSQL_CLIENT_AUTHENTICATION_PLUGIN,
.interface_version = MYSQL_CLIENT_AUTHENTICATION_PLUGIN_INTERFACE_VERSION,
.name = "parsec",
.author = "Nikita Maliavin",
.desc = "Password Authentication using Response Signed with Elliptic Curve",
.version= {0,1,1},
.license= "LGPL",
.authenticate_user= auth,
.hash_password_bin= hash_password
};