2015-01-22 11:40:55 +08:00
|
|
|
/*
|
2016-05-18 02:51:34 +08:00
|
|
|
* Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1999-12-22 09:39:23 +08:00
|
|
|
*
|
2018-12-06 20:17:34 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:51:34 +08:00
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
1999-12-22 09:39:23 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
2000-12-09 03:09:35 +08:00
|
|
|
#include <openssl/asn1t.h>
|
2004-05-18 03:14:22 +08:00
|
|
|
#include <openssl/bn.h>
|
1999-12-22 09:39:23 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
/*
|
|
|
|
* Custom primitive type for BIGNUM handling. This reads in an ASN1_INTEGER
|
|
|
|
* as a BIGNUM directly. Currently it ignores the sign which isn't a problem
|
|
|
|
* since all BIGNUMs used are non negative and anything that looks negative
|
|
|
|
* is normally due to an encoding error.
|
1999-12-22 09:39:23 +08:00
|
|
|
*/
|
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
#define BN_SENSITIVE 1
|
1999-12-22 09:39:23 +08:00
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
|
2015-04-25 04:39:40 +08:00
|
|
|
static int bn_secure_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
|
2000-12-09 03:09:35 +08:00
|
|
|
static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
|
1999-12-22 09:39:23 +08:00
|
|
|
|
2019-01-16 04:51:25 +08:00
|
|
|
static int bn_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype,
|
2015-01-22 11:40:55 +08:00
|
|
|
const ASN1_ITEM *it);
|
|
|
|
static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
|
|
|
|
int utype, char *free_cont, const ASN1_ITEM *it);
|
2015-04-25 04:39:40 +08:00
|
|
|
static int bn_secure_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
|
|
|
|
int utype, char *free_cont, const ASN1_ITEM *it);
|
2019-01-16 04:51:25 +08:00
|
|
|
static int bn_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
|
2016-07-19 00:52:56 +08:00
|
|
|
int indent, const ASN1_PCTX *pctx);
|
1999-12-22 09:39:23 +08:00
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
static ASN1_PRIMITIVE_FUNCS bignum_pf = {
|
2015-01-22 11:40:55 +08:00
|
|
|
NULL, 0,
|
|
|
|
bn_new,
|
|
|
|
bn_free,
|
|
|
|
0,
|
|
|
|
bn_c2i,
|
2016-07-19 00:52:56 +08:00
|
|
|
bn_i2c,
|
|
|
|
bn_print
|
2000-12-09 03:09:35 +08:00
|
|
|
};
|
1999-12-22 09:39:23 +08:00
|
|
|
|
2015-04-25 04:39:40 +08:00
|
|
|
static ASN1_PRIMITIVE_FUNCS cbignum_pf = {
|
|
|
|
NULL, 0,
|
|
|
|
bn_secure_new,
|
|
|
|
bn_free,
|
|
|
|
0,
|
|
|
|
bn_secure_c2i,
|
2016-07-19 00:52:56 +08:00
|
|
|
bn_i2c,
|
|
|
|
bn_print
|
2015-04-25 04:39:40 +08:00
|
|
|
};
|
|
|
|
|
2001-02-23 11:16:09 +08:00
|
|
|
ASN1_ITEM_start(BIGNUM)
|
2015-01-22 11:40:55 +08:00
|
|
|
ASN1_ITYPE_PRIMITIVE, V_ASN1_INTEGER, NULL, 0, &bignum_pf, 0, "BIGNUM"
|
2001-02-23 20:47:06 +08:00
|
|
|
ASN1_ITEM_end(BIGNUM)
|
2001-02-23 11:16:09 +08:00
|
|
|
|
|
|
|
ASN1_ITEM_start(CBIGNUM)
|
2015-04-25 04:39:40 +08:00
|
|
|
ASN1_ITYPE_PRIMITIVE, V_ASN1_INTEGER, NULL, 0, &cbignum_pf, BN_SENSITIVE, "CBIGNUM"
|
2001-02-23 20:47:06 +08:00
|
|
|
ASN1_ITEM_end(CBIGNUM)
|
2000-12-09 03:09:35 +08:00
|
|
|
|
|
|
|
static int bn_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
|
|
|
|
{
|
2015-03-02 21:26:29 +08:00
|
|
|
*pval = (ASN1_VALUE *)BN_new();
|
2015-10-30 19:12:26 +08:00
|
|
|
if (*pval != NULL)
|
2015-03-02 21:26:29 +08:00
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
2000-12-09 03:09:35 +08:00
|
|
|
}
|
|
|
|
|
2015-04-25 04:39:40 +08:00
|
|
|
static int bn_secure_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
|
|
|
|
{
|
|
|
|
*pval = (ASN1_VALUE *)BN_secure_new();
|
2015-10-30 19:12:26 +08:00
|
|
|
if (*pval != NULL)
|
2015-04-25 04:39:40 +08:00
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2000-12-09 03:09:35 +08:00
|
|
|
static void bn_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
|
|
|
|
{
|
2019-09-17 03:28:57 +08:00
|
|
|
if (*pval == NULL)
|
2015-03-02 21:26:29 +08:00
|
|
|
return;
|
|
|
|
if (it->size & BN_SENSITIVE)
|
|
|
|
BN_clear_free((BIGNUM *)*pval);
|
|
|
|
else
|
|
|
|
BN_free((BIGNUM *)*pval);
|
|
|
|
*pval = NULL;
|
2000-12-09 03:09:35 +08:00
|
|
|
}
|
1999-12-22 09:39:23 +08:00
|
|
|
|
2019-01-16 04:51:25 +08:00
|
|
|
static int bn_i2c(const ASN1_VALUE **pval, unsigned char *cont, int *putype,
|
2015-03-02 21:26:29 +08:00
|
|
|
const ASN1_ITEM *it)
|
1999-12-22 09:39:23 +08:00
|
|
|
{
|
2015-03-02 21:26:29 +08:00
|
|
|
BIGNUM *bn;
|
|
|
|
int pad;
|
2019-09-17 03:28:57 +08:00
|
|
|
if (*pval == NULL)
|
2015-03-02 21:26:29 +08:00
|
|
|
return -1;
|
|
|
|
bn = (BIGNUM *)*pval;
|
|
|
|
/* If MSB set in an octet we need a padding byte */
|
|
|
|
if (BN_num_bits(bn) & 0x7)
|
|
|
|
pad = 0;
|
|
|
|
else
|
|
|
|
pad = 1;
|
|
|
|
if (cont) {
|
|
|
|
if (pad)
|
|
|
|
*cont++ = 0;
|
|
|
|
BN_bn2bin(bn, cont);
|
|
|
|
}
|
|
|
|
return pad + BN_num_bytes(bn);
|
1999-12-22 09:39:23 +08:00
|
|
|
}
|
|
|
|
|
2004-03-16 07:15:26 +08:00
|
|
|
static int bn_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
|
2015-01-22 11:40:55 +08:00
|
|
|
int utype, char *free_cont, const ASN1_ITEM *it)
|
1999-12-22 09:39:23 +08:00
|
|
|
{
|
2015-03-02 21:26:29 +08:00
|
|
|
BIGNUM *bn;
|
2015-04-25 04:39:40 +08:00
|
|
|
|
2015-08-28 16:12:51 +08:00
|
|
|
if (*pval == NULL && !bn_new(pval, it))
|
|
|
|
return 0;
|
2015-03-02 21:26:29 +08:00
|
|
|
bn = (BIGNUM *)*pval;
|
|
|
|
if (!BN_bin2bn(cont, len, bn)) {
|
|
|
|
bn_free(pval, it);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
1999-12-22 09:39:23 +08:00
|
|
|
}
|
2015-04-25 04:39:40 +08:00
|
|
|
|
|
|
|
static int bn_secure_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
|
|
|
|
int utype, char *free_cont, const ASN1_ITEM *it)
|
|
|
|
{
|
2019-09-05 17:13:11 +08:00
|
|
|
int ret;
|
|
|
|
BIGNUM *bn;
|
|
|
|
|
2019-09-17 03:28:57 +08:00
|
|
|
if (*pval == NULL && !bn_secure_new(pval, it))
|
2019-09-05 17:13:11 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
ret = bn_c2i(pval, cont, len, utype, free_cont, it);
|
|
|
|
if (!ret)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Set constant-time flag for all secure BIGNUMS */
|
|
|
|
bn = (BIGNUM *)*pval;
|
|
|
|
BN_set_flags(bn, BN_FLG_CONSTTIME);
|
|
|
|
return ret;
|
2015-04-25 04:39:40 +08:00
|
|
|
}
|
2016-07-19 00:52:56 +08:00
|
|
|
|
2019-01-16 04:51:25 +08:00
|
|
|
static int bn_print(BIO *out, const ASN1_VALUE **pval, const ASN1_ITEM *it,
|
2016-07-19 00:52:56 +08:00
|
|
|
int indent, const ASN1_PCTX *pctx)
|
|
|
|
{
|
|
|
|
if (!BN_print(out, *(BIGNUM **)pval))
|
|
|
|
return 0;
|
|
|
|
if (BIO_puts(out, "\n") <= 0)
|
|
|
|
return 0;
|
|
|
|
return 1;
|
|
|
|
}
|