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 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
|
/*
* Copyright (C) 2008-2012 Free Software Foundation, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
* This file is part of GnuTLS.
*
* The GnuTLS is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>
*
*/
#include "errors.h"
#include "gnutls_int.h"
#include <gnutls/crypto.h>
#include "crypto-backend.h"
#include "crypto.h"
#include "mpi.h"
#include "pk.h"
#include "random.h"
#include "cipher_int.h"
#ifdef ENABLE_PKCS11
#include "pkcs11/p11_provider.h"
#endif
/* default values for priorities */
int crypto_mac_prio = INT_MAX;
int crypto_digest_prio = INT_MAX;
int crypto_cipher_prio = INT_MAX;
typedef struct algo_list {
int algorithm;
int priority;
void *alg_data;
int free_alg_data;
struct algo_list *next;
} algo_list;
#define cipher_list algo_list
#define mac_list algo_list
#define digest_list algo_list
static int _algo_register(algo_list *al, int algorithm, int priority, void *s,
int free_s)
{
algo_list *cl;
algo_list *last_cl = al;
int ret;
if (al == NULL) {
ret = gnutls_assert_val(GNUTLS_E_INVALID_REQUEST);
goto cleanup;
}
/* look if there is any cipher with lowest priority. In that case do not add.
*/
cl = al;
while (cl && cl->alg_data) {
if (cl->algorithm == algorithm) {
if (cl->priority < priority) {
gnutls_assert();
ret = GNUTLS_E_CRYPTO_ALREADY_REGISTERED;
goto cleanup;
} else {
/* the current has higher priority -> overwrite */
cl->algorithm = algorithm;
cl->priority = priority;
cl->alg_data = s;
cl->free_alg_data = free_s;
return 0;
}
}
cl = cl->next;
if (cl)
last_cl = cl;
}
cl = gnutls_calloc(1, sizeof(cipher_list));
if (cl == NULL) {
gnutls_assert();
ret = GNUTLS_E_MEMORY_ERROR;
goto cleanup;
}
last_cl->algorithm = algorithm;
last_cl->priority = priority;
last_cl->alg_data = s;
last_cl->free_alg_data = free_s;
last_cl->next = cl;
return 0;
cleanup:
if (free_s)
gnutls_free(s);
return ret;
}
static const void *_get_algo(algo_list *al, int algo)
{
cipher_list *cl;
/* look if there is any cipher with lowest priority. In that case do not add.
*/
cl = al;
while (cl && cl->alg_data) {
if (cl->algorithm == algo) {
return cl->alg_data;
}
cl = cl->next;
}
return NULL;
}
static cipher_list glob_cl = { GNUTLS_CIPHER_NULL, 0, NULL, 0, NULL };
static mac_list glob_ml = { GNUTLS_MAC_NULL, 0, NULL, 0, NULL };
static digest_list glob_dl = { GNUTLS_MAC_NULL, 0, NULL, 0, NULL };
static void _deregister(algo_list *cl)
{
algo_list *next;
next = cl->next;
cl->next = NULL;
cl = next;
while (cl) {
next = cl->next;
if (cl->free_alg_data)
gnutls_free(cl->alg_data);
gnutls_free(cl);
cl = next;
}
}
void _gnutls_crypto_deregister(void)
{
_deregister(&glob_cl);
_deregister(&glob_ml);
_deregister(&glob_dl);
}
extern gnutls_crypto_cipher_st _gnutls_cipher_ops;
extern gnutls_crypto_pk_st _gnutls_pk_ops;
extern gnutls_crypto_mac_st _gnutls_mac_ops;
extern gnutls_crypto_digest_st _gnutls_digest_ops;
extern gnutls_crypto_kdf_st _gnutls_kdf_ops;
#ifdef ENABLE_PKCS11
extern gnutls_crypto_cipher_st _gnutls_p11_cipher_ops;
extern gnutls_crypto_pk_st _gnutls_p11_pk_ops;
extern gnutls_crypto_mac_st _gnutls_p11_mac_ops;
extern gnutls_crypto_digest_st _gnutls_p11_digest_ops;
extern gnutls_crypto_kdf_st _gnutls_p11_kdf_ops;
#endif
const gnutls_crypto_cipher_st *_gnutls_cipher_backend(void)
{
#if defined(ENABLE_PKCS11) && defined(ENABLE_FIPS140)
if (_p11_provider_is_initialized())
return &_gnutls_p11_cipher_ops;
#endif
return &_gnutls_cipher_ops;
}
const gnutls_crypto_pk_st *_gnutls_pk_backend(void)
{
#if defined(ENABLE_PKCS11) && defined(ENABLE_FIPS140)
if (_p11_provider_is_initialized())
return &_gnutls_p11_pk_ops;
#endif
return &_gnutls_pk_ops;
}
const gnutls_crypto_mac_st *_gnutls_mac_backend(void)
{
#if defined(ENABLE_PKCS11) && defined(ENABLE_FIPS140)
if (_p11_provider_is_initialized())
return &_gnutls_p11_mac_ops;
#endif
return &_gnutls_mac_ops;
}
const gnutls_crypto_digest_st *_gnutls_digest_backend(void)
{
#if defined(ENABLE_PKCS11) && defined(ENABLE_FIPS140)
if (_p11_provider_is_initialized())
return &_gnutls_p11_digest_ops;
#endif
return &_gnutls_digest_ops;
}
const gnutls_crypto_kdf_st *_gnutls_kdf_backend(void)
{
#if defined(ENABLE_PKCS11) && defined(ENABLE_FIPS140)
if (_p11_provider_is_initialized())
return &_gnutls_p11_kdf_ops;
#endif
return &_gnutls_kdf_ops;
}
/*-
* gnutls_crypto_single_cipher_register:
* @algorithm: is the gnutls algorithm identifier
* @priority: is the priority of the algorithm
* @s: is a structure holding new cipher's data
*
* This function will register a cipher algorithm to be used by
* gnutls. Any algorithm registered will override the included
* algorithms and by convention kernel implemented algorithms have
* priority of 90 and CPU-assisted of 80. The algorithm with the lowest priority will be
* used by gnutls.
*
* In the case the registered init or setkey functions return %GNUTLS_E_NEED_FALLBACK,
* GnuTLS will attempt to use the next in priority registered cipher.
*
* This function should be called before gnutls_global_init().
*
* For simplicity you can use the convenience
* gnutls_crypto_single_cipher_register() macro.
*
* Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.
*
* Since: 2.6.0
-*/
int gnutls_crypto_single_cipher_register(gnutls_cipher_algorithm_t algorithm,
int priority,
const gnutls_crypto_cipher_st *s,
int free_s)
{
/* we override const in case free_s is set */
return _algo_register(&glob_cl, algorithm, priority, (void *)s, free_s);
}
const gnutls_crypto_cipher_st *
_gnutls_get_crypto_cipher(gnutls_cipher_algorithm_t algo)
{
return _get_algo(&glob_cl, algo);
}
/**
* gnutls_crypto_register_cipher:
* @algorithm: is the gnutls algorithm identifier
* @priority: is the priority of the algorithm
* @init: A function which initializes the cipher
* @setkey: A function which sets the key of the cipher
* @setiv: A function which sets the nonce/IV of the cipher (non-AEAD)
* @encrypt: A function which performs encryption (non-AEAD)
* @decrypt: A function which performs decryption (non-AEAD)
* @deinit: A function which deinitializes the cipher
*
* This function will register a cipher algorithm to be used by
* gnutls. Any algorithm registered will override the included
* algorithms and by convention kernel implemented algorithms have
* priority of 90 and CPU-assisted of 80. The algorithm with the lowest priority will be
* used by gnutls.
*
* In the case the registered init or setkey functions return %GNUTLS_E_NEED_FALLBACK,
* GnuTLS will attempt to use the next in priority registered cipher.
*
* The functions which are marked as non-AEAD they are not required when
* registering a cipher to be used with the new AEAD API introduced in
* GnuTLS 3.4.0. Internally GnuTLS uses the new AEAD API.
*
* Deprecated: since 3.7.0 it is no longer possible to override cipher implementation
*
* Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.
*
* Since: 3.4.0
**/
int gnutls_crypto_register_cipher(gnutls_cipher_algorithm_t algorithm,
int priority, gnutls_cipher_init_func init,
gnutls_cipher_setkey_func setkey,
gnutls_cipher_setiv_func setiv,
gnutls_cipher_encrypt_func encrypt,
gnutls_cipher_decrypt_func decrypt,
gnutls_cipher_deinit_func deinit)
{
_gnutls_debug_log(
"called the deprecated gnutls_crypto_register_cipher()\n");
return 0;
}
int _gnutls_crypto_register_cipher(gnutls_cipher_algorithm_t algorithm,
int priority, gnutls_cipher_init_func init,
gnutls_cipher_setkey_func setkey,
gnutls_cipher_setiv_func setiv,
gnutls_cipher_encrypt_func encrypt,
gnutls_cipher_decrypt_func decrypt,
gnutls_cipher_deinit_func deinit)
{
gnutls_crypto_cipher_st *s =
gnutls_calloc(1, sizeof(gnutls_crypto_cipher_st));
if (s == NULL)
return gnutls_assert_val(GNUTLS_E_MEMORY_ERROR);
s->init = init;
s->setkey = setkey;
s->setiv = setiv;
s->encrypt = encrypt;
s->decrypt = decrypt;
s->deinit = deinit;
return gnutls_crypto_single_cipher_register(algorithm, priority, s, 1);
}
/**
* gnutls_crypto_register_aead_cipher:
* @algorithm: is the gnutls AEAD cipher identifier
* @priority: is the priority of the algorithm
* @init: A function which initializes the cipher
* @setkey: A function which sets the key of the cipher
* @aead_encrypt: Perform the AEAD encryption
* @aead_decrypt: Perform the AEAD decryption
* @deinit: A function which deinitializes the cipher
*
* This function will register a cipher algorithm to be used by
* gnutls. Any algorithm registered will override the included
* algorithms and by convention kernel implemented algorithms have
* priority of 90 and CPU-assisted of 80. The algorithm with the lowest priority will be
* used by gnutls.
*
* In the case the registered init or setkey functions return %GNUTLS_E_NEED_FALLBACK,
* GnuTLS will attempt to use the next in priority registered cipher.
*
* The functions registered will be used with the new AEAD API introduced in
* GnuTLS 3.4.0. Internally GnuTLS uses the new AEAD API.
*
* Deprecated: since 3.7.0 it is no longer possible to override cipher implementation
*
* Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.
*
* Since: 3.4.0
**/
int gnutls_crypto_register_aead_cipher(
gnutls_cipher_algorithm_t algorithm, int priority,
gnutls_cipher_init_func init, gnutls_cipher_setkey_func setkey,
gnutls_cipher_aead_encrypt_func aead_encrypt,
gnutls_cipher_aead_decrypt_func aead_decrypt,
gnutls_cipher_deinit_func deinit)
{
_gnutls_debug_log(
"called the deprecated gnutls_crypto_register_aead_cipher()\n");
return 0;
}
/*-
* gnutls_crypto_rnd_register:
* @priority: is the priority of the generator
* @s: is a structure holding new generator's data
*
* This function will register a random generator to be used by
* gnutls. Any generator registered will override the included
* generator and by convention kernel implemented generators have
* priority of 90 and CPU-assisted of 80. The generator with the lowest priority will be
* used by gnutls.
*
* This function should be called before gnutls_global_init().
*
* For simplicity you can use the convenience
* gnutls_crypto_rnd_register() macro.
*
* Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.
*
* Since: 2.6.0
-*/
int gnutls_crypto_rnd_register(int priority, const gnutls_crypto_rnd_st *s)
{
if (crypto_rnd_prio >= priority) {
memcpy(&_gnutls_rnd_ops, s, sizeof(*s));
crypto_rnd_prio = priority;
return 0;
}
return GNUTLS_E_CRYPTO_ALREADY_REGISTERED;
}
/*-
* gnutls_crypto_single_mac_register:
* @algorithm: is the gnutls algorithm identifier
* @priority: is the priority of the algorithm
* @s: is a structure holding new algorithms's data
*
* This function will register a MAC algorithm to be used by gnutls.
* Any algorithm registered will override the included algorithms and
* by convention kernel implemented algorithms have priority of 90
* and CPU-assisted of 80.
* The algorithm with the lowest priority will be used by gnutls.
*
* This function should be called before gnutls_global_init().
*
* For simplicity you can use the convenience
* gnutls_crypto_single_mac_register() macro.
*
* Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.
*
* Since: 2.6.0
-*/
int gnutls_crypto_single_mac_register(gnutls_mac_algorithm_t algorithm,
int priority,
const gnutls_crypto_mac_st *s, int free_s)
{
return _algo_register(&glob_ml, algorithm, priority, (void *)s, free_s);
}
const gnutls_crypto_mac_st *_gnutls_get_crypto_mac(gnutls_mac_algorithm_t algo)
{
return _get_algo(&glob_ml, algo);
}
/*-
* gnutls_crypto_single_digest_register:
* @algorithm: is the gnutls algorithm identifier
* @priority: is the priority of the algorithm
* @s: is a structure holding new algorithms's data
*
* This function will register a digest (hash) algorithm to be used by
* gnutls. Any algorithm registered will override the included
* algorithms and by convention kernel implemented algorithms have
* priority of 90 and CPU-assisted of 80. The algorithm with the lowest priority will be
* used by gnutls.
*
* This function should be called before gnutls_global_init().
*
* For simplicity you can use the convenience
* gnutls_crypto_single_digest_register() macro.
*
* Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.
*
* Since: 2.6.0
-*/
int gnutls_crypto_single_digest_register(gnutls_digest_algorithm_t algorithm,
int priority,
const gnutls_crypto_digest_st *s,
int free_s)
{
return _algo_register(&glob_dl, algorithm, priority, (void *)s, free_s);
}
const gnutls_crypto_digest_st *
_gnutls_get_crypto_digest(gnutls_digest_algorithm_t algo)
{
return _get_algo(&glob_dl, algo);
}
/**
* gnutls_crypto_register_mac:
* @algorithm: is the gnutls MAC identifier
* @priority: is the priority of the algorithm
* @init: A function which initializes the MAC
* @setkey: A function which sets the key of the MAC
* @setnonce: A function which sets the nonce for the mac (may be %NULL for common MAC algorithms)
* @hash: Perform the hash operation
* @output: Provide the output of the MAC
* @deinit: A function which deinitializes the MAC
* @hash_fast: Perform the MAC operation in one go
*
* This function will register a MAC algorithm to be used by gnutls.
* Any algorithm registered will override the included algorithms and
* by convention kernel implemented algorithms have priority of 90
* and CPU-assisted of 80.
* The algorithm with the lowest priority will be used by gnutls.
*
* Deprecated: since 3.7.0 it is no longer possible to override cipher implementation
*
* Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.
*
* Since: 3.4.0
**/
int gnutls_crypto_register_mac(gnutls_mac_algorithm_t algorithm, int priority,
gnutls_mac_init_func init,
gnutls_mac_setkey_func setkey,
gnutls_mac_setnonce_func setnonce,
gnutls_mac_hash_func hash,
gnutls_mac_output_func output,
gnutls_mac_deinit_func deinit,
gnutls_mac_fast_func hash_fast)
{
_gnutls_debug_log(
"called the deprecated gnutls_crypto_register_mac()\n");
return 0;
}
/**
* gnutls_crypto_register_digest:
* @algorithm: is the gnutls digest identifier
* @priority: is the priority of the algorithm
* @init: A function which initializes the digest
* @hash: Perform the hash operation
* @output: Provide the output of the digest
* @deinit: A function which deinitializes the digest
* @hash_fast: Perform the digest operation in one go
*
* This function will register a digest algorithm to be used by gnutls.
* Any algorithm registered will override the included algorithms and
* by convention kernel implemented algorithms have priority of 90
* and CPU-assisted of 80.
* The algorithm with the lowest priority will be used by gnutls.
*
* Deprecated: since 3.7.0 it is no longer possible to override cipher implementation
*
* Returns: %GNUTLS_E_SUCCESS on success, otherwise a negative error code.
*
* Since: 3.4.0
**/
int gnutls_crypto_register_digest(gnutls_digest_algorithm_t algorithm,
int priority, gnutls_digest_init_func init,
gnutls_digest_hash_func hash,
gnutls_digest_output_func output,
gnutls_digest_deinit_func deinit,
gnutls_digest_fast_func hash_fast)
{
_gnutls_debug_log(
"called the deprecated gnutls_crypto_register_digest()\n");
return 0;
}
|