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
|
/*
* Copyright (C) 2001-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/>
*
*/
/* Here lie everything that has to do with large numbers, libgcrypt and
* other stuff that didn't fit anywhere else.
*/
#include "gnutls_int.h"
#include <libtasn1.h>
#include "errors.h"
#include <num.h>
#include <mpi.h>
#include <random.h>
#include <x509/x509_int.h>
/* Functions that refer to the mpi library.
*/
/* Returns a random number r, 0 < r < p */
bigint_t
_gnutls_mpi_random_modp(bigint_t r, bigint_t p,
gnutls_rnd_level_t level)
{
size_t size;
int ret;
bigint_t tmp;
uint8_t tmpbuf[512];
uint8_t *buf;
int buf_release = 0;
size = ((_gnutls_mpi_get_nbits(p)+64)/8) + 1;
if (size < sizeof(tmpbuf)) {
buf = tmpbuf;
} else {
buf = gnutls_malloc(size);
if (buf == NULL) {
gnutls_assert();
goto cleanup;
}
buf_release = 1;
}
ret = gnutls_rnd(level, buf, size);
if (ret < 0) {
gnutls_assert();
goto cleanup;
}
ret = _gnutls_mpi_init_scan(&tmp, buf, size);
if (ret < 0) {
gnutls_assert();
goto cleanup;
}
ret = _gnutls_mpi_modm(tmp, tmp, p);
if (ret < 0) {
gnutls_assert();
goto cleanup;
}
if (_gnutls_mpi_cmp_ui(tmp, 0) == 0) {
ret = _gnutls_mpi_add_ui(tmp, tmp, 1);
if (ret < 0) {
gnutls_assert();
goto cleanup;
}
}
if (buf_release != 0) {
gnutls_free(buf);
}
if (r != NULL) {
ret = _gnutls_mpi_set(r, tmp);
if (ret < 0)
goto cleanup;
_gnutls_mpi_release(&tmp);
return r;
}
return tmp;
cleanup:
if (buf_release != 0)
gnutls_free(buf);
return NULL;
}
/* returns %GNUTLS_E_SUCCESS (0) on success
*/
int _gnutls_mpi_init_scan(bigint_t * ret_mpi, const void *buffer, size_t nbytes)
{
bigint_t r;
int ret;
ret = _gnutls_mpi_init(&r);
if (ret < 0)
return gnutls_assert_val(ret);
ret =
_gnutls_mpi_scan(r, buffer, nbytes);
if (ret < 0) {
gnutls_assert();
_gnutls_mpi_release(&r);
return ret;
}
*ret_mpi = r;
return 0;
}
/* returns %GNUTLS_E_SUCCESS (0) on success. Fails if the number is zero.
*/
int
_gnutls_mpi_init_scan_nz(bigint_t * ret_mpi, const void *buffer, size_t nbytes)
{
int ret;
ret = _gnutls_mpi_init_scan(ret_mpi, buffer, nbytes);
if (ret < 0)
return ret;
/* MPIs with 0 bits are illegal
*/
if (_gnutls_mpi_cmp_ui(*ret_mpi, 0) == 0) {
_gnutls_mpi_release(ret_mpi);
return GNUTLS_E_MPI_SCAN_FAILED;
}
return 0;
}
int
_gnutls_mpi_init_scan_le(bigint_t * ret_mpi, const void *buffer, size_t nbytes)
{
bigint_t r;
int ret;
ret = _gnutls_mpi_init(&r);
if (ret < 0)
return gnutls_assert_val(ret);
ret = _gnutls_mpi_scan_le(r, buffer, nbytes);
if (ret < 0) {
gnutls_assert();
_gnutls_mpi_release(&r);
return ret;
}
*ret_mpi = r;
return 0;
}
int _gnutls_mpi_dprint_le(const bigint_t a, gnutls_datum_t * dest)
{
int ret;
uint8_t *buf = NULL;
size_t bytes = 0;
if (dest == NULL || a == NULL)
return GNUTLS_E_INVALID_REQUEST;
_gnutls_mpi_print_le(a, NULL, &bytes);
if (bytes != 0)
buf = gnutls_malloc(bytes);
if (buf == NULL)
return GNUTLS_E_MEMORY_ERROR;
ret = _gnutls_mpi_print_le(a, buf, &bytes);
if (ret < 0) {
gnutls_free(buf);
return ret;
}
dest->data = buf;
dest->size = bytes;
return 0;
}
/* Always has the first bit zero */
int _gnutls_mpi_dprint_lz(const bigint_t a, gnutls_datum_t * dest)
{
int ret;
uint8_t *buf = NULL;
size_t bytes = 0;
if (dest == NULL || a == NULL)
return GNUTLS_E_INVALID_REQUEST;
_gnutls_mpi_print_lz(a, NULL, &bytes);
if (bytes != 0)
buf = gnutls_malloc(bytes);
if (buf == NULL)
return GNUTLS_E_MEMORY_ERROR;
ret = _gnutls_mpi_print_lz(a, buf, &bytes);
if (ret < 0) {
gnutls_free(buf);
return ret;
}
dest->data = buf;
dest->size = bytes;
return 0;
}
int _gnutls_mpi_dprint(const bigint_t a, gnutls_datum_t * dest)
{
int ret;
uint8_t *buf = NULL;
size_t bytes = 0;
if (dest == NULL || a == NULL)
return GNUTLS_E_INVALID_REQUEST;
_gnutls_mpi_print(a, NULL, &bytes);
if (bytes != 0)
buf = gnutls_malloc(bytes);
if (buf == NULL)
return GNUTLS_E_MEMORY_ERROR;
ret = _gnutls_mpi_print(a, buf, &bytes);
if (ret < 0) {
gnutls_free(buf);
return ret;
}
dest->data = buf;
dest->size = bytes;
return 0;
}
/* This function will copy the mpi data into a datum,
* but will set minimum size to 'size'. That means that
* the output value is left padded with zeros.
*/
int
_gnutls_mpi_dprint_size(const bigint_t a, gnutls_datum_t * dest,
size_t size)
{
int ret;
uint8_t *buf = NULL;
size_t bytes = 0;
unsigned int i;
if (dest == NULL || a == NULL)
return GNUTLS_E_INVALID_REQUEST;
_gnutls_mpi_print(a, NULL, &bytes);
if (bytes != 0)
buf = gnutls_malloc(MAX(size, bytes));
if (buf == NULL)
return GNUTLS_E_MEMORY_ERROR;
if (bytes <= size) {
size_t diff = size - bytes;
for (i = 0; i < diff; i++)
buf[i] = 0;
ret = _gnutls_mpi_print(a, &buf[diff], &bytes);
} else {
ret = _gnutls_mpi_print(a, buf, &bytes);
}
if (ret < 0) {
gnutls_free(buf);
return ret;
}
dest->data = buf;
dest->size = MAX(size, bytes);
return 0;
}
/* like _gnutls_mpi_dprint_size, but prints into preallocated byte buffer */
int
_gnutls_mpi_bprint_size(const bigint_t a, uint8_t *buf, size_t size)
{
int result;
size_t bytes = 0;
result = _gnutls_mpi_print(a, NULL, &bytes);
if (result != GNUTLS_E_SHORT_MEMORY_BUFFER)
return gnutls_assert_val(result);
if (bytes <= size) {
unsigned i;
size_t diff = size - bytes;
for (i = 0; i < diff; i++)
buf[i] = 0;
result = _gnutls_mpi_print(a, &buf[diff], &bytes);
} else {
result = _gnutls_mpi_print(a, buf, &bytes);
}
return result;
}
/* Flags for __gnutls_x509_read_int() and __gnutls_x509_write_int */
#define GNUTLS_X509_INT_OVERWRITE (1 << 0)
#define GNUTLS_X509_INT_LE (1 << 1)
#define GNUTLS_X509_INT_LZ (1 << 2) /* write only */
/* this function reads an integer
* from asn1 structs. Combines the read and mpi_scan
* steps.
*/
static int
__gnutls_x509_read_int(ASN1_TYPE node, const char *value,
bigint_t * ret_mpi, unsigned int flags)
{
int result;
uint8_t *tmpstr = NULL;
int tmpstr_size;
tmpstr_size = 0;
result = asn1_read_value(node, value, NULL, &tmpstr_size);
if (result != ASN1_MEM_ERROR) {
gnutls_assert();
return _gnutls_asn2err(result);
}
tmpstr = gnutls_malloc(tmpstr_size);
if (tmpstr == NULL) {
gnutls_assert();
return GNUTLS_E_MEMORY_ERROR;
}
result = asn1_read_value(node, value, tmpstr, &tmpstr_size);
if (result != ASN1_SUCCESS) {
gnutls_assert();
gnutls_free(tmpstr);
return _gnutls_asn2err(result);
}
if (flags & GNUTLS_X509_INT_LE)
result = _gnutls_mpi_init_scan_le(ret_mpi, tmpstr,
tmpstr_size);
else
result = _gnutls_mpi_init_scan(ret_mpi, tmpstr,
tmpstr_size);
if (flags & GNUTLS_X509_INT_OVERWRITE)
zeroize_key(tmpstr, tmpstr_size);
gnutls_free(tmpstr);
if (result < 0) {
gnutls_assert();
return result;
}
return 0;
}
int
_gnutls_x509_read_int(ASN1_TYPE node, const char *value,
bigint_t * ret_mpi)
{
return __gnutls_x509_read_int(node, value, ret_mpi,
0);
}
int
_gnutls_x509_read_key_int(ASN1_TYPE node, const char *value,
bigint_t * ret_mpi)
{
return __gnutls_x509_read_int(node, value, ret_mpi,
GNUTLS_X509_INT_OVERWRITE);
}
int
_gnutls_x509_read_key_int_le(ASN1_TYPE node, const char *value,
bigint_t * ret_mpi)
{
return __gnutls_x509_read_int(node, value, ret_mpi,
GNUTLS_X509_INT_OVERWRITE |
GNUTLS_X509_INT_LE);
}
/* Writes the specified integer into the specified node.
*/
static int
__gnutls_x509_write_int(ASN1_TYPE node, const char *value, bigint_t mpi,
unsigned int flags)
{
uint8_t *tmpstr;
size_t s_len;
int result;
s_len = 0;
if (flags & GNUTLS_X509_INT_LZ)
result = _gnutls_mpi_print_lz(mpi, NULL, &s_len);
else if (GNUTLS_X509_INT_LE)
result = _gnutls_mpi_print_le(mpi, NULL, &s_len);
else
result = _gnutls_mpi_print(mpi, NULL, &s_len);
if (result != GNUTLS_E_SHORT_MEMORY_BUFFER) {
gnutls_assert();
return result;
}
tmpstr = gnutls_malloc(s_len);
if (tmpstr == NULL) {
gnutls_assert();
return GNUTLS_E_MEMORY_ERROR;
}
if (flags & GNUTLS_X509_INT_LZ)
result = _gnutls_mpi_print_lz(mpi, tmpstr, &s_len);
else if (GNUTLS_X509_INT_LE)
result = _gnutls_mpi_print_le(mpi, tmpstr, &s_len);
else
result = _gnutls_mpi_print(mpi, tmpstr, &s_len);
if (result != 0) {
gnutls_assert();
gnutls_free(tmpstr);
return GNUTLS_E_MPI_PRINT_FAILED;
}
result = asn1_write_value(node, value, tmpstr, s_len);
if (flags & GNUTLS_X509_INT_OVERWRITE)
zeroize_key(tmpstr, s_len);
gnutls_free(tmpstr);
if (result != ASN1_SUCCESS) {
gnutls_assert();
return _gnutls_asn2err(result);
}
return 0;
}
int
_gnutls_x509_write_int(ASN1_TYPE node, const char *value, bigint_t mpi,
int lz)
{
return __gnutls_x509_write_int(node, value, mpi,
lz ? GNUTLS_X509_INT_LZ : 0);
}
int
_gnutls_x509_write_key_int(ASN1_TYPE node, const char *value, bigint_t mpi,
int lz)
{
return __gnutls_x509_write_int(node, value, mpi,
(lz ? GNUTLS_X509_INT_LZ : 0) |
GNUTLS_X509_INT_OVERWRITE);
}
int
_gnutls_x509_write_key_int_le(ASN1_TYPE node, const char *value, bigint_t mpi)
{
return __gnutls_x509_write_int(node, value, mpi,
GNUTLS_X509_INT_OVERWRITE |
GNUTLS_X509_INT_LE);
}
|