2013-09-16 13:49:26 +02:00
|
|
|
/*
|
|
|
|
* X.509 certificate writing
|
|
|
|
*
|
2020-08-07 13:07:28 +02:00
|
|
|
* Copyright The Mbed TLS Contributors
|
2015-09-04 14:21:07 +02:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2013-09-16 13:49:26 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
|
|
* not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2013-09-16 13:49:26 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-09-16 13:49:26 +02:00
|
|
|
*
|
2015-09-04 14:21:07 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2013-09-16 13:49:26 +02:00
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* References:
|
|
|
|
* - certificates: RFC 5280, updated by RFC 6818
|
|
|
|
* - CSRs: PKCS#10 v1.7 aka RFC 2986
|
|
|
|
* - attributes: PKCS#9 v2.0 aka RFC 2985
|
|
|
|
*/
|
|
|
|
|
2020-06-03 01:43:33 +02:00
|
|
|
#include "common.h"
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_X509_CRT_WRITE_C)
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/x509_crt.h"
|
|
|
|
#include "mbedtls/asn1write.h"
|
2019-12-18 16:07:04 +01:00
|
|
|
#include "mbedtls/error.h"
|
|
|
|
#include "mbedtls/oid.h"
|
2023-04-04 12:56:14 +02:00
|
|
|
#include "mbedtls/platform.h"
|
2018-04-17 16:51:09 +02:00
|
|
|
#include "mbedtls/platform_util.h"
|
2023-02-24 12:37:07 +01:00
|
|
|
#include "mbedtls/md.h"
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2015-02-06 14:43:58 +01:00
|
|
|
#include <string.h>
|
2023-04-27 14:25:41 +02:00
|
|
|
#include <stdint.h>
|
2015-02-06 14:43:58 +01:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PEM_WRITE_C)
|
2015-03-09 18:05:11 +01:00
|
|
|
#include "mbedtls/pem.h"
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PEM_WRITE_C */
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2022-02-07 14:40:55 +01:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
|
|
#include "psa/crypto.h"
|
|
|
|
#include "mbedtls/psa_util.h"
|
2023-03-28 12:33:20 +02:00
|
|
|
#include "md_psa.h"
|
2022-02-07 14:40:55 +01:00
|
|
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
|
|
|
|
2023-04-27 14:25:41 +02:00
|
|
|
#define CHECK_OVERFLOW_ADD(a, b) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
if (a > SIZE_MAX - (b)) \
|
|
|
|
{ \
|
|
|
|
return MBEDTLS_ERR_X509_BAD_INPUT_DATA; \
|
|
|
|
} \
|
|
|
|
a += b; \
|
|
|
|
} while (0)
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_x509write_crt_init(mbedtls_x509write_cert *ctx)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
memset(ctx, 0, sizeof(mbedtls_x509write_cert));
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
ctx->version = MBEDTLS_X509_CRT_VERSION_3;
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_x509write_crt_free(mbedtls_x509write_cert *ctx)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_asn1_free_named_data_list(&ctx->subject);
|
|
|
|
mbedtls_asn1_free_named_data_list(&ctx->issuer);
|
|
|
|
mbedtls_asn1_free_named_data_list(&ctx->extensions);
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
mbedtls_platform_zeroize(ctx, sizeof(mbedtls_x509write_cert));
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_x509write_crt_set_version(mbedtls_x509write_cert *ctx,
|
|
|
|
int version)
|
2013-10-11 10:54:28 +02:00
|
|
|
{
|
|
|
|
ctx->version = version;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_x509write_crt_set_md_alg(mbedtls_x509write_cert *ctx,
|
|
|
|
mbedtls_md_type_t md_alg)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
|
|
|
ctx->md_alg = md_alg;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_x509write_crt_set_subject_key(mbedtls_x509write_cert *ctx,
|
|
|
|
mbedtls_pk_context *key)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
|
|
|
ctx->subject_key = key;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
void mbedtls_x509write_crt_set_issuer_key(mbedtls_x509write_cert *ctx,
|
|
|
|
mbedtls_pk_context *key)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
|
|
|
ctx->issuer_key = key;
|
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_x509write_crt_set_subject_name(mbedtls_x509write_cert *ctx,
|
|
|
|
const char *subject_name)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_x509_string_to_names(&ctx->subject, subject_name);
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_x509write_crt_set_issuer_name(mbedtls_x509write_cert *ctx,
|
|
|
|
const char *issuer_name)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_x509_string_to_names(&ctx->issuer, issuer_name);
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-01-09 12:19:40 +01:00
|
|
|
#if defined(MBEDTLS_BIGNUM_C) && !defined(MBEDTLS_DEPRECATED_REMOVED)
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_x509write_crt_set_serial(mbedtls_x509write_cert *ctx,
|
|
|
|
const mbedtls_mpi *serial)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
2023-01-05 16:46:59 +01:00
|
|
|
int ret;
|
|
|
|
size_t tmp_len;
|
|
|
|
|
|
|
|
/* Ensure that the MPI value fits into the buffer */
|
|
|
|
tmp_len = mbedtls_mpi_size(serial);
|
|
|
|
if (tmp_len > MBEDTLS_X509_RFC5280_MAX_SERIAL_LEN) {
|
|
|
|
return MBEDTLS_ERR_X509_BAD_INPUT_DATA;
|
|
|
|
}
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-05 16:46:59 +01:00
|
|
|
ctx->serial_len = tmp_len;
|
|
|
|
|
2023-01-10 16:00:15 +01:00
|
|
|
ret = mbedtls_mpi_write_binary(serial, ctx->serial, tmp_len);
|
2023-01-05 16:46:59 +01:00
|
|
|
if (ret < 0) {
|
2023-01-11 14:50:10 +01:00
|
|
|
return ret;
|
|
|
|
}
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-05 16:46:59 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2023-01-09 12:19:40 +01:00
|
|
|
#endif // MBEDTLS_BIGNUM_C && !MBEDTLS_DEPRECATED_REMOVED
|
2023-01-05 16:46:59 +01:00
|
|
|
|
2023-01-26 17:43:09 +01:00
|
|
|
int mbedtls_x509write_crt_set_serial_raw(mbedtls_x509write_cert *ctx,
|
2023-01-10 11:46:34 +01:00
|
|
|
unsigned char *serial, size_t serial_len)
|
2023-01-05 16:46:59 +01:00
|
|
|
{
|
2023-01-10 11:46:34 +01:00
|
|
|
if (serial_len > MBEDTLS_X509_RFC5280_MAX_SERIAL_LEN) {
|
2023-01-05 16:46:59 +01:00
|
|
|
return MBEDTLS_ERR_X509_BAD_INPUT_DATA;
|
|
|
|
}
|
|
|
|
|
2023-01-10 11:46:34 +01:00
|
|
|
ctx->serial_len = serial_len;
|
|
|
|
memcpy(ctx->serial, serial, serial_len);
|
2023-01-05 16:46:59 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_x509write_crt_set_validity(mbedtls_x509write_cert *ctx,
|
|
|
|
const char *not_before,
|
|
|
|
const char *not_after)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
if (strlen(not_before) != MBEDTLS_X509_RFC5280_UTC_TIME_LEN - 1 ||
|
|
|
|
strlen(not_after) != MBEDTLS_X509_RFC5280_UTC_TIME_LEN - 1) {
|
|
|
|
return MBEDTLS_ERR_X509_BAD_INPUT_DATA;
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
2023-01-11 14:50:10 +01:00
|
|
|
strncpy(ctx->not_before, not_before, MBEDTLS_X509_RFC5280_UTC_TIME_LEN);
|
|
|
|
strncpy(ctx->not_after, not_after, MBEDTLS_X509_RFC5280_UTC_TIME_LEN);
|
2015-04-08 12:49:31 +02:00
|
|
|
ctx->not_before[MBEDTLS_X509_RFC5280_UTC_TIME_LEN - 1] = 'Z';
|
|
|
|
ctx->not_after[MBEDTLS_X509_RFC5280_UTC_TIME_LEN - 1] = 'Z';
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-04-04 12:56:14 +02:00
|
|
|
int mbedtls_x509write_crt_set_subject_alternative_name(mbedtls_x509write_cert *ctx,
|
|
|
|
const mbedtls_x509_san_list *san_list)
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
const mbedtls_x509_san_list *cur;
|
|
|
|
unsigned char *buf;
|
|
|
|
unsigned char *p;
|
|
|
|
size_t len;
|
|
|
|
size_t buflen = 0;
|
|
|
|
|
|
|
|
/* Determine the maximum size of the SubjectAltName list */
|
|
|
|
for (cur = san_list; cur != NULL; cur = cur->next) {
|
|
|
|
/* Calculate size of the required buffer */
|
|
|
|
switch (cur->node.type) {
|
|
|
|
case MBEDTLS_X509_SAN_DNS_NAME:
|
|
|
|
case MBEDTLS_X509_SAN_UNIFORM_RESOURCE_IDENTIFIER:
|
|
|
|
case MBEDTLS_X509_SAN_IP_ADDRESS:
|
2023-04-25 10:31:26 +02:00
|
|
|
case MBEDTLS_X509_SAN_RFC822_NAME:
|
2023-04-04 12:56:14 +02:00
|
|
|
/* length of value for each name entry,
|
|
|
|
* maximum 4 bytes for the length field,
|
|
|
|
* 1 byte for the tag/type.
|
|
|
|
*/
|
2023-06-02 11:02:41 +02:00
|
|
|
CHECK_OVERFLOW_ADD(buflen, cur->node.san.unstructured_name.len);
|
|
|
|
CHECK_OVERFLOW_ADD(buflen, 4 + 1);
|
2023-04-04 12:56:14 +02:00
|
|
|
break;
|
|
|
|
case MBEDTLS_X509_SAN_DIRECTORY_NAME:
|
2023-04-04 15:30:12 +02:00
|
|
|
{
|
2023-04-04 12:56:14 +02:00
|
|
|
const mbedtls_asn1_named_data *chunk = &cur->node.san.directory_name;
|
|
|
|
while (chunk != NULL) {
|
2023-06-02 11:02:41 +02:00
|
|
|
// Max 4 bytes for length, +1 for tag,
|
2023-04-04 12:56:14 +02:00
|
|
|
// additional 4 max for length, +1 for tag.
|
|
|
|
// See x509_write_name for more information.
|
2023-06-02 11:02:41 +02:00
|
|
|
CHECK_OVERFLOW_ADD(buflen, 4 + 1 + 4 + 1);
|
|
|
|
CHECK_OVERFLOW_ADD(buflen, chunk->oid.len);
|
|
|
|
CHECK_OVERFLOW_ADD(buflen, chunk->val.len);
|
2023-04-04 12:56:14 +02:00
|
|
|
chunk = chunk->next;
|
|
|
|
}
|
2023-06-02 11:02:41 +02:00
|
|
|
CHECK_OVERFLOW_ADD(buflen, 4 + 1);
|
2023-04-04 12:56:14 +02:00
|
|
|
break;
|
2023-04-04 15:30:12 +02:00
|
|
|
}
|
2023-04-04 12:56:14 +02:00
|
|
|
default:
|
2023-04-25 08:29:00 +02:00
|
|
|
/* Not supported - return. */
|
|
|
|
return MBEDTLS_ERR_X509_FEATURE_UNAVAILABLE;
|
2023-04-04 12:56:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add the extra length field and tag */
|
2023-04-27 14:25:41 +02:00
|
|
|
CHECK_OVERFLOW_ADD(buflen, 4 + 1);
|
2023-04-04 12:56:14 +02:00
|
|
|
|
|
|
|
/* Allocate buffer */
|
|
|
|
buf = mbedtls_calloc(1, buflen);
|
|
|
|
if (buf == NULL) {
|
|
|
|
return MBEDTLS_ERR_ASN1_ALLOC_FAILED;
|
|
|
|
}
|
|
|
|
p = buf + buflen;
|
|
|
|
|
|
|
|
/* Write ASN.1-based structure */
|
|
|
|
cur = san_list;
|
|
|
|
len = 0;
|
|
|
|
while (cur != NULL) {
|
|
|
|
size_t single_san_len = 0;
|
|
|
|
switch (cur->node.type) {
|
|
|
|
case MBEDTLS_X509_SAN_DNS_NAME:
|
|
|
|
case MBEDTLS_X509_SAN_RFC822_NAME:
|
|
|
|
case MBEDTLS_X509_SAN_UNIFORM_RESOURCE_IDENTIFIER:
|
|
|
|
case MBEDTLS_X509_SAN_IP_ADDRESS:
|
|
|
|
{
|
|
|
|
const unsigned char *unstructured_name =
|
|
|
|
(const unsigned char *) cur->node.san.unstructured_name.p;
|
|
|
|
size_t unstructured_name_len = cur->node.san.unstructured_name.len;
|
|
|
|
|
|
|
|
MBEDTLS_ASN1_CHK_CLEANUP_ADD(single_san_len,
|
|
|
|
mbedtls_asn1_write_raw_buffer(
|
|
|
|
&p, buf,
|
|
|
|
unstructured_name, unstructured_name_len));
|
|
|
|
MBEDTLS_ASN1_CHK_CLEANUP_ADD(single_san_len, mbedtls_asn1_write_len(
|
|
|
|
&p, buf, unstructured_name_len));
|
|
|
|
MBEDTLS_ASN1_CHK_CLEANUP_ADD(single_san_len,
|
|
|
|
mbedtls_asn1_write_tag(
|
|
|
|
&p, buf,
|
|
|
|
MBEDTLS_ASN1_CONTEXT_SPECIFIC | cur->node.type));
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MBEDTLS_X509_SAN_DIRECTORY_NAME:
|
|
|
|
MBEDTLS_ASN1_CHK_CLEANUP_ADD(single_san_len,
|
|
|
|
mbedtls_x509_write_names(&p, buf,
|
|
|
|
(mbedtls_asn1_named_data *) &
|
|
|
|
cur->node
|
|
|
|
.san.directory_name));
|
|
|
|
MBEDTLS_ASN1_CHK_CLEANUP_ADD(single_san_len,
|
|
|
|
mbedtls_asn1_write_len(&p, buf, single_san_len));
|
|
|
|
MBEDTLS_ASN1_CHK_CLEANUP_ADD(single_san_len,
|
|
|
|
mbedtls_asn1_write_tag(&p, buf,
|
|
|
|
MBEDTLS_ASN1_CONTEXT_SPECIFIC |
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED |
|
|
|
|
MBEDTLS_X509_SAN_DIRECTORY_NAME));
|
|
|
|
break;
|
|
|
|
default:
|
2023-04-25 08:29:00 +02:00
|
|
|
/* Error out on an unsupported SAN */
|
|
|
|
ret = MBEDTLS_ERR_X509_FEATURE_UNAVAILABLE;
|
|
|
|
goto cleanup;
|
2023-04-04 12:56:14 +02:00
|
|
|
}
|
|
|
|
cur = cur->next;
|
2023-04-27 14:25:41 +02:00
|
|
|
/* check for overflow */
|
|
|
|
if (len > SIZE_MAX - single_san_len) {
|
|
|
|
ret = MBEDTLS_ERR_X509_BAD_INPUT_DATA;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2023-04-04 12:56:14 +02:00
|
|
|
len += single_san_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
MBEDTLS_ASN1_CHK_CLEANUP_ADD(len, mbedtls_asn1_write_len(&p, buf, len));
|
|
|
|
MBEDTLS_ASN1_CHK_CLEANUP_ADD(len,
|
|
|
|
mbedtls_asn1_write_tag(&p, buf,
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED |
|
|
|
|
MBEDTLS_ASN1_SEQUENCE));
|
|
|
|
|
|
|
|
ret = mbedtls_x509write_crt_set_extension(
|
|
|
|
ctx,
|
|
|
|
MBEDTLS_OID_SUBJECT_ALT_NAME,
|
|
|
|
MBEDTLS_OID_SIZE(MBEDTLS_OID_SUBJECT_ALT_NAME),
|
|
|
|
0,
|
|
|
|
buf + buflen - len,
|
|
|
|
len);
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
mbedtls_free(buf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_x509write_crt_set_extension(mbedtls_x509write_cert *ctx,
|
|
|
|
const char *oid, size_t oid_len,
|
|
|
|
int critical,
|
|
|
|
const unsigned char *val, size_t val_len)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_x509_set_extension(&ctx->extensions, oid, oid_len,
|
|
|
|
critical, val, val_len);
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_x509write_crt_set_basic_constraints(mbedtls_x509write_cert *ctx,
|
|
|
|
int is_ca, int max_pathlen)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
2019-12-16 12:46:15 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2013-09-16 13:49:26 +02:00
|
|
|
unsigned char buf[9];
|
|
|
|
unsigned char *c = buf + sizeof(buf);
|
|
|
|
size_t len = 0;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
memset(buf, 0, sizeof(buf));
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (is_ca && max_pathlen > 127) {
|
|
|
|
return MBEDTLS_ERR_X509_BAD_INPUT_DATA;
|
|
|
|
}
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (is_ca) {
|
|
|
|
if (max_pathlen >= 0) {
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_int(&c, buf,
|
|
|
|
max_pathlen));
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_bool(&c, buf, 1));
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf, len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(&c, buf,
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED |
|
|
|
|
MBEDTLS_ASN1_SEQUENCE));
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return
|
|
|
|
mbedtls_x509write_crt_set_extension(ctx, MBEDTLS_OID_BASIC_CONSTRAINTS,
|
|
|
|
MBEDTLS_OID_SIZE(MBEDTLS_OID_BASIC_CONSTRAINTS),
|
|
|
|
is_ca, buf + sizeof(buf) - len, len);
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-03-17 12:08:50 +01:00
|
|
|
#if defined(MBEDTLS_MD_CAN_SHA1)
|
2023-01-11 14:50:10 +01:00
|
|
|
static int mbedtls_x509write_crt_set_key_identifier(mbedtls_x509write_cert *ctx,
|
|
|
|
int is_ca,
|
|
|
|
unsigned char tag)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
2019-12-16 12:46:15 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2015-04-08 12:49:31 +02:00
|
|
|
unsigned char buf[MBEDTLS_MPI_MAX_SIZE * 2 + 20]; /* tag, length + 2xMPI */
|
2013-09-16 13:49:26 +02:00
|
|
|
unsigned char *c = buf + sizeof(buf);
|
|
|
|
size_t len = 0;
|
2022-02-07 14:40:55 +01:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
|
|
|
size_t hash_length;
|
|
|
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
memset(buf, 0, sizeof(buf));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len,
|
|
|
|
mbedtls_pk_write_pubkey(&c,
|
|
|
|
buf,
|
|
|
|
is_ca ?
|
|
|
|
ctx->issuer_key :
|
|
|
|
ctx->subject_key));
|
2022-02-17 15:18:47 +01:00
|
|
|
|
2022-02-14 15:20:57 +01:00
|
|
|
|
2022-02-07 14:40:55 +01:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
2023-01-11 14:50:10 +01:00
|
|
|
status = psa_hash_compute(PSA_ALG_SHA_1,
|
|
|
|
buf + sizeof(buf) - len,
|
|
|
|
len,
|
|
|
|
buf + sizeof(buf) - 20,
|
|
|
|
20,
|
|
|
|
&hash_length);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
return MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED;
|
2022-02-07 14:40:55 +01:00
|
|
|
}
|
|
|
|
#else
|
2023-02-24 12:37:07 +01:00
|
|
|
ret = mbedtls_md(mbedtls_md_info_from_type(MBEDTLS_MD_SHA1),
|
|
|
|
buf + sizeof(buf) - len, len,
|
|
|
|
buf + sizeof(buf) - 20);
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ret != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2022-02-07 14:40:55 +01:00
|
|
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
c = buf + sizeof(buf) - 20;
|
2013-09-16 13:49:26 +02:00
|
|
|
len = 20;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf, len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(&c, buf, tag));
|
|
|
|
|
|
|
|
if (is_ca) { // writes AuthorityKeyIdentifier sequence
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf, len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len,
|
|
|
|
mbedtls_asn1_write_tag(&c,
|
|
|
|
buf,
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED |
|
|
|
|
MBEDTLS_ASN1_SEQUENCE));
|
2022-02-14 15:20:57 +01:00
|
|
|
}
|
2022-02-28 11:49:54 +01:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (is_ca) {
|
|
|
|
return mbedtls_x509write_crt_set_extension(ctx,
|
|
|
|
MBEDTLS_OID_AUTHORITY_KEY_IDENTIFIER,
|
|
|
|
MBEDTLS_OID_SIZE(
|
|
|
|
MBEDTLS_OID_AUTHORITY_KEY_IDENTIFIER),
|
|
|
|
0, buf + sizeof(buf) - len, len);
|
|
|
|
} else {
|
|
|
|
return mbedtls_x509write_crt_set_extension(ctx,
|
|
|
|
MBEDTLS_OID_SUBJECT_KEY_IDENTIFIER,
|
|
|
|
MBEDTLS_OID_SIZE(
|
|
|
|
MBEDTLS_OID_SUBJECT_KEY_IDENTIFIER),
|
|
|
|
0, buf + sizeof(buf) - len, len);
|
|
|
|
}
|
2022-02-14 15:20:57 +01:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_x509write_crt_set_subject_key_identifier(mbedtls_x509write_cert *ctx)
|
2022-02-14 15:20:57 +01:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_x509write_crt_set_key_identifier(ctx,
|
|
|
|
0,
|
|
|
|
MBEDTLS_ASN1_OCTET_STRING);
|
2022-02-14 15:20:57 +01:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_x509write_crt_set_authority_key_identifier(mbedtls_x509write_cert *ctx)
|
2022-02-14 15:20:57 +01:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_x509write_crt_set_key_identifier(ctx,
|
|
|
|
1,
|
|
|
|
(MBEDTLS_ASN1_CONTEXT_SPECIFIC | 0));
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
2023-03-17 12:08:50 +01:00
|
|
|
#endif /* MBEDTLS_MD_CAN_SHA1 */
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_x509write_crt_set_key_usage(mbedtls_x509write_cert *ctx,
|
|
|
|
unsigned int key_usage)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
unsigned char buf[5] = { 0 }, ku[2] = { 0 };
|
2013-09-16 13:49:26 +02:00
|
|
|
unsigned char *c;
|
2019-12-16 12:46:15 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2018-09-26 11:48:24 +02:00
|
|
|
const unsigned int allowed_bits = MBEDTLS_X509_KU_DIGITAL_SIGNATURE |
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_X509_KU_NON_REPUDIATION |
|
|
|
|
MBEDTLS_X509_KU_KEY_ENCIPHERMENT |
|
|
|
|
MBEDTLS_X509_KU_DATA_ENCIPHERMENT |
|
|
|
|
MBEDTLS_X509_KU_KEY_AGREEMENT |
|
|
|
|
MBEDTLS_X509_KU_KEY_CERT_SIGN |
|
|
|
|
MBEDTLS_X509_KU_CRL_SIGN |
|
|
|
|
MBEDTLS_X509_KU_ENCIPHER_ONLY |
|
|
|
|
MBEDTLS_X509_KU_DECIPHER_ONLY;
|
2018-09-26 11:48:24 +02:00
|
|
|
|
|
|
|
/* Check that nothing other than the allowed flags is set */
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((key_usage & ~allowed_bits) != 0) {
|
|
|
|
return MBEDTLS_ERR_X509_FEATURE_UNAVAILABLE;
|
|
|
|
}
|
2015-06-23 11:07:37 +02:00
|
|
|
|
2018-09-26 11:48:24 +02:00
|
|
|
c = buf + 5;
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_PUT_UINT16_LE(key_usage, ku, 0);
|
|
|
|
ret = mbedtls_asn1_write_named_bitstring(&c, buf, ku, 9);
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ret < 0) {
|
|
|
|
return ret;
|
|
|
|
} else if (ret < 3 || ret > 5) {
|
|
|
|
return MBEDTLS_ERR_X509_INVALID_FORMAT;
|
|
|
|
}
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = mbedtls_x509write_crt_set_extension(ctx, MBEDTLS_OID_KEY_USAGE,
|
|
|
|
MBEDTLS_OID_SIZE(MBEDTLS_OID_KEY_USAGE),
|
|
|
|
1, c, (size_t) ret);
|
|
|
|
if (ret != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_x509write_crt_set_ext_key_usage(mbedtls_x509write_cert *ctx,
|
|
|
|
const mbedtls_asn1_sequence *exts)
|
2015-09-09 20:03:34 +02:00
|
|
|
{
|
|
|
|
unsigned char buf[256];
|
|
|
|
unsigned char *c = buf + sizeof(buf);
|
|
|
|
int ret;
|
|
|
|
size_t len = 0;
|
2022-08-11 15:38:26 +02:00
|
|
|
const mbedtls_asn1_sequence *last_ext = NULL;
|
2022-08-11 17:04:13 +02:00
|
|
|
const mbedtls_asn1_sequence *ext;
|
2022-08-11 15:38:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
memset(buf, 0, sizeof(buf));
|
2015-09-09 20:03:34 +02:00
|
|
|
|
2015-11-13 15:22:36 +01:00
|
|
|
/* We need at least one extension: SEQUENCE SIZE (1..MAX) OF KeyPurposeId */
|
2023-01-11 14:50:10 +01:00
|
|
|
if (exts == NULL) {
|
|
|
|
return MBEDTLS_ERR_X509_BAD_INPUT_DATA;
|
|
|
|
}
|
2015-09-09 20:03:34 +02:00
|
|
|
|
2015-11-13 15:22:36 +01:00
|
|
|
/* Iterate over exts backwards, so we write them out in the requested order */
|
2023-01-11 14:50:10 +01:00
|
|
|
while (last_ext != exts) {
|
|
|
|
for (ext = exts; ext->next != last_ext; ext = ext->next) {
|
|
|
|
}
|
|
|
|
if (ext->buf.tag != MBEDTLS_ASN1_OID) {
|
|
|
|
return MBEDTLS_ERR_X509_BAD_INPUT_DATA;
|
|
|
|
}
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_raw_buffer(&c, buf, ext->buf.p, ext->buf.len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf, ext->buf.len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(&c, buf, MBEDTLS_ASN1_OID));
|
2015-11-13 15:22:36 +01:00
|
|
|
last_ext = ext;
|
2015-09-09 20:03:34 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf, len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len,
|
|
|
|
mbedtls_asn1_write_tag(&c, buf,
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED | MBEDTLS_ASN1_SEQUENCE));
|
2015-09-09 20:03:34 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return mbedtls_x509write_crt_set_extension(ctx,
|
|
|
|
MBEDTLS_OID_EXTENDED_KEY_USAGE,
|
|
|
|
MBEDTLS_OID_SIZE(MBEDTLS_OID_EXTENDED_KEY_USAGE),
|
|
|
|
1, c, len);
|
2015-09-09 20:03:34 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_x509write_crt_set_ns_cert_type(mbedtls_x509write_cert *ctx,
|
|
|
|
unsigned char ns_cert_type)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
2023-01-11 14:50:10 +01:00
|
|
|
unsigned char buf[4] = { 0 };
|
2013-09-16 13:49:26 +02:00
|
|
|
unsigned char *c;
|
2019-12-16 12:46:15 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2013-09-16 13:49:26 +02:00
|
|
|
|
|
|
|
c = buf + 4;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = mbedtls_asn1_write_named_bitstring(&c, buf, &ns_cert_type, 8);
|
|
|
|
if (ret < 3 || ret > 4) {
|
|
|
|
return ret;
|
|
|
|
}
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
ret = mbedtls_x509write_crt_set_extension(ctx, MBEDTLS_OID_NS_CERT_TYPE,
|
|
|
|
MBEDTLS_OID_SIZE(MBEDTLS_OID_NS_CERT_TYPE),
|
|
|
|
0, c, (size_t) ret);
|
|
|
|
if (ret != 0) {
|
|
|
|
return ret;
|
|
|
|
}
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
static int x509_write_time(unsigned char **p, unsigned char *start,
|
|
|
|
const char *t, size_t size)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
2019-12-16 12:46:15 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2013-09-16 13:49:26 +02:00
|
|
|
size_t len = 0;
|
|
|
|
|
|
|
|
/*
|
2015-04-08 12:49:31 +02:00
|
|
|
* write MBEDTLS_ASN1_UTC_TIME if year < 2050 (2 bytes shorter)
|
2013-09-16 13:49:26 +02:00
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
if (t[0] < '2' || (t[0] == '2' && t[1] == '0' && t[2] < '5')) {
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_raw_buffer(p, start,
|
|
|
|
(const unsigned char *) t + 2,
|
|
|
|
size - 2));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(p, start, len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(p, start,
|
|
|
|
MBEDTLS_ASN1_UTC_TIME));
|
|
|
|
} else {
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_raw_buffer(p, start,
|
|
|
|
(const unsigned char *) t,
|
|
|
|
size));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(p, start, len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(p, start,
|
|
|
|
MBEDTLS_ASN1_GENERALIZED_TIME));
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return (int) len;
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_x509write_crt_der(mbedtls_x509write_cert *ctx,
|
|
|
|
unsigned char *buf, size_t size,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
2019-12-16 12:46:15 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2013-09-16 13:49:26 +02:00
|
|
|
const char *sig_oid;
|
|
|
|
size_t sig_oid_len = 0;
|
|
|
|
unsigned char *c, *c2;
|
2019-11-08 19:21:51 +01:00
|
|
|
unsigned char sig[MBEDTLS_PK_SIGNATURE_MAX_SIZE];
|
2022-02-07 14:40:55 +01:00
|
|
|
size_t hash_length = 0;
|
2023-03-28 11:20:23 +02:00
|
|
|
unsigned char hash[MBEDTLS_MD_MAX_SIZE];
|
2022-02-07 14:40:55 +01:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
|
|
psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
|
|
|
|
psa_algorithm_t psa_algorithm;
|
|
|
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
|
|
|
|
2013-09-16 13:49:26 +02:00
|
|
|
size_t sub_len = 0, pub_len = 0, sig_and_oid_len = 0, sig_len;
|
|
|
|
size_t len = 0;
|
2015-04-08 12:49:31 +02:00
|
|
|
mbedtls_pk_type_t pk_alg;
|
2013-09-16 13:49:26 +02:00
|
|
|
|
|
|
|
/*
|
2019-05-04 08:54:36 +02:00
|
|
|
* Prepare data to be signed at the end of the target buffer
|
2013-09-16 13:49:26 +02:00
|
|
|
*/
|
2019-05-04 08:54:36 +02:00
|
|
|
c = buf + size;
|
2013-09-16 13:49:26 +02:00
|
|
|
|
|
|
|
/* Signature algorithm needed in TBS, and later for actual signature */
|
2017-09-13 09:45:48 +02:00
|
|
|
|
|
|
|
/* There's no direct way of extracting a signature algorithm
|
|
|
|
* (represented as an element of mbedtls_pk_type_t) from a PK instance. */
|
2023-01-11 14:50:10 +01:00
|
|
|
if (mbedtls_pk_can_do(ctx->issuer_key, MBEDTLS_PK_RSA)) {
|
2017-09-13 09:45:48 +02:00
|
|
|
pk_alg = MBEDTLS_PK_RSA;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else if (mbedtls_pk_can_do(ctx->issuer_key, MBEDTLS_PK_ECDSA)) {
|
2015-04-08 12:49:31 +02:00
|
|
|
pk_alg = MBEDTLS_PK_ECDSA;
|
2023-01-11 14:50:10 +01:00
|
|
|
} else {
|
|
|
|
return MBEDTLS_ERR_X509_INVALID_ALG;
|
|
|
|
}
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_oid_get_oid_by_sig_alg(pk_alg, ctx->md_alg,
|
|
|
|
&sig_oid, &sig_oid_len)) != 0) {
|
|
|
|
return ret;
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension
|
|
|
|
*/
|
2017-09-13 13:00:15 +02:00
|
|
|
|
|
|
|
/* Only for v3 */
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ctx->version == MBEDTLS_X509_CRT_VERSION_3) {
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len,
|
|
|
|
mbedtls_x509_write_extensions(&c,
|
|
|
|
buf, ctx->extensions));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf, len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len,
|
|
|
|
mbedtls_asn1_write_tag(&c, buf,
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED |
|
|
|
|
MBEDTLS_ASN1_SEQUENCE));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf, len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len,
|
|
|
|
mbedtls_asn1_write_tag(&c, buf,
|
|
|
|
MBEDTLS_ASN1_CONTEXT_SPECIFIC |
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED | 3));
|
2017-09-13 13:00:15 +02:00
|
|
|
}
|
2013-09-16 13:49:26 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* SubjectPublicKeyInfo
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(pub_len,
|
|
|
|
mbedtls_pk_write_pubkey_der(ctx->subject_key,
|
|
|
|
buf, c - buf));
|
2013-09-16 13:49:26 +02:00
|
|
|
c -= pub_len;
|
|
|
|
len += pub_len;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Subject ::= Name
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len,
|
|
|
|
mbedtls_x509_write_names(&c, buf,
|
|
|
|
ctx->subject));
|
2013-09-16 13:49:26 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Validity ::= SEQUENCE {
|
|
|
|
* notBefore Time,
|
|
|
|
* notAfter Time }
|
|
|
|
*/
|
|
|
|
sub_len = 0;
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(sub_len,
|
|
|
|
x509_write_time(&c, buf, ctx->not_after,
|
|
|
|
MBEDTLS_X509_RFC5280_UTC_TIME_LEN));
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(sub_len,
|
|
|
|
x509_write_time(&c, buf, ctx->not_before,
|
|
|
|
MBEDTLS_X509_RFC5280_UTC_TIME_LEN));
|
2013-09-16 13:49:26 +02:00
|
|
|
|
|
|
|
len += sub_len;
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf, sub_len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len,
|
|
|
|
mbedtls_asn1_write_tag(&c, buf,
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED |
|
|
|
|
MBEDTLS_ASN1_SEQUENCE));
|
2013-09-16 13:49:26 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Issuer ::= Name
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_x509_write_names(&c, buf,
|
|
|
|
ctx->issuer));
|
2013-09-16 13:49:26 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Signature ::= AlgorithmIdentifier
|
|
|
|
*/
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len,
|
|
|
|
mbedtls_asn1_write_algorithm_identifier(&c, buf,
|
|
|
|
sig_oid, strlen(sig_oid), 0));
|
2013-09-16 13:49:26 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Serial ::= INTEGER
|
2023-01-05 16:46:59 +01:00
|
|
|
*
|
|
|
|
* Written data is:
|
2023-01-10 16:00:15 +01:00
|
|
|
* - "ctx->serial_len" bytes for the raw serial buffer
|
|
|
|
* - if MSb of "serial" is 1, then prepend an extra 0x00 byte
|
2023-01-05 16:46:59 +01:00
|
|
|
* - 1 byte for the length
|
|
|
|
* - 1 byte for the TAG
|
2013-09-16 13:49:26 +02:00
|
|
|
*/
|
2023-01-05 16:46:59 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_raw_buffer(&c, buf,
|
|
|
|
ctx->serial, ctx->serial_len));
|
2023-01-10 16:00:15 +01:00
|
|
|
if (*c & 0x80) {
|
|
|
|
if (c - buf < 1) {
|
|
|
|
return MBEDTLS_ERR_X509_BUFFER_TOO_SMALL;
|
|
|
|
}
|
2023-01-12 14:56:54 +01:00
|
|
|
*(--c) = 0x0;
|
2023-01-10 16:00:15 +01:00
|
|
|
len++;
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf,
|
|
|
|
ctx->serial_len + 1));
|
|
|
|
} else {
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf,
|
|
|
|
ctx->serial_len));
|
|
|
|
}
|
2023-01-05 16:46:59 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(&c, buf,
|
|
|
|
MBEDTLS_ASN1_INTEGER));
|
2013-09-16 13:49:26 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Version ::= INTEGER { v1(0), v2(1), v3(2) }
|
|
|
|
*/
|
2017-09-13 12:59:26 +02:00
|
|
|
|
|
|
|
/* Can be omitted for v1 */
|
2023-01-11 14:50:10 +01:00
|
|
|
if (ctx->version != MBEDTLS_X509_CRT_VERSION_1) {
|
2017-09-13 12:59:26 +02:00
|
|
|
sub_len = 0;
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(sub_len,
|
|
|
|
mbedtls_asn1_write_int(&c, buf, ctx->version));
|
2017-09-13 12:59:26 +02:00
|
|
|
len += sub_len;
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len,
|
|
|
|
mbedtls_asn1_write_len(&c, buf, sub_len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len,
|
|
|
|
mbedtls_asn1_write_tag(&c, buf,
|
|
|
|
MBEDTLS_ASN1_CONTEXT_SPECIFIC |
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED | 0));
|
2017-09-13 12:59:26 +02:00
|
|
|
}
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf, len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len,
|
|
|
|
mbedtls_asn1_write_tag(&c, buf, MBEDTLS_ASN1_CONSTRUCTED |
|
|
|
|
MBEDTLS_ASN1_SEQUENCE));
|
2013-09-16 13:49:26 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make signature
|
|
|
|
*/
|
2019-05-04 08:54:36 +02:00
|
|
|
|
|
|
|
/* Compute hash of CRT. */
|
2022-02-07 14:40:55 +01:00
|
|
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
2023-03-28 11:38:08 +02:00
|
|
|
psa_algorithm = mbedtls_md_psa_alg_from_type(ctx->md_alg);
|
2023-01-11 14:50:10 +01:00
|
|
|
|
|
|
|
status = psa_hash_compute(psa_algorithm,
|
|
|
|
c,
|
|
|
|
len,
|
|
|
|
hash,
|
|
|
|
sizeof(hash),
|
|
|
|
&hash_length);
|
|
|
|
if (status != PSA_SUCCESS) {
|
|
|
|
return MBEDTLS_ERR_PLATFORM_HW_ACCEL_FAILED;
|
2022-02-07 14:40:55 +01:00
|
|
|
}
|
|
|
|
#else
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_md(mbedtls_md_info_from_type(ctx->md_alg), c,
|
|
|
|
len, hash)) != 0) {
|
|
|
|
return ret;
|
2017-06-28 12:07:30 +02:00
|
|
|
}
|
2022-02-07 14:40:55 +01:00
|
|
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
|
|
|
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_pk_sign(ctx->issuer_key, ctx->md_alg,
|
|
|
|
hash, hash_length, sig, sizeof(sig), &sig_len,
|
|
|
|
f_rng, p_rng)) != 0) {
|
|
|
|
return ret;
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2019-05-04 08:54:36 +02:00
|
|
|
/* Move CRT to the front of the buffer to have space
|
|
|
|
* for the signature. */
|
2023-01-11 14:50:10 +01:00
|
|
|
memmove(buf, c, len);
|
2019-05-04 08:54:36 +02:00
|
|
|
c = buf + len;
|
|
|
|
|
|
|
|
/* Add signature at the end of the buffer,
|
|
|
|
* making sure that it doesn't underflow
|
|
|
|
* into the CRT buffer. */
|
2013-09-16 13:49:26 +02:00
|
|
|
c2 = buf + size;
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(sig_and_oid_len, mbedtls_x509_write_sig(&c2, c,
|
|
|
|
sig_oid, sig_oid_len, sig,
|
|
|
|
sig_len));
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2019-05-04 08:54:36 +02:00
|
|
|
/*
|
|
|
|
* Memory layout after this step:
|
|
|
|
*
|
|
|
|
* buf c=buf+len c2 buf+size
|
|
|
|
* [CRT0,...,CRTn, UNUSED, ..., UNUSED, SIG0, ..., SIGm]
|
|
|
|
*/
|
2016-09-02 16:23:48 +02:00
|
|
|
|
2019-05-04 08:54:36 +02:00
|
|
|
/* Move raw CRT to just before the signature. */
|
|
|
|
c = c2 - len;
|
2023-01-11 14:50:10 +01:00
|
|
|
memmove(c, buf, len);
|
2013-09-16 13:49:26 +02:00
|
|
|
|
|
|
|
len += sig_and_oid_len;
|
2023-01-11 14:50:10 +01:00
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_len(&c, buf, len));
|
|
|
|
MBEDTLS_ASN1_CHK_ADD(len, mbedtls_asn1_write_tag(&c, buf,
|
|
|
|
MBEDTLS_ASN1_CONSTRUCTED |
|
|
|
|
MBEDTLS_ASN1_SEQUENCE));
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return (int) len;
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#define PEM_BEGIN_CRT "-----BEGIN CERTIFICATE-----\n"
|
|
|
|
#define PEM_END_CRT "-----END CERTIFICATE-----\n"
|
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#if defined(MBEDTLS_PEM_WRITE_C)
|
2023-01-11 14:50:10 +01:00
|
|
|
int mbedtls_x509write_crt_pem(mbedtls_x509write_cert *crt,
|
|
|
|
unsigned char *buf, size_t size,
|
|
|
|
int (*f_rng)(void *, unsigned char *, size_t),
|
|
|
|
void *p_rng)
|
2013-09-16 13:49:26 +02:00
|
|
|
{
|
2019-12-16 12:46:15 +01:00
|
|
|
int ret = MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED;
|
2019-05-04 09:13:23 +02:00
|
|
|
size_t olen;
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_x509write_crt_der(crt, buf, size,
|
|
|
|
f_rng, p_rng)) < 0) {
|
|
|
|
return ret;
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
if ((ret = mbedtls_pem_write_buffer(PEM_BEGIN_CRT, PEM_END_CRT,
|
|
|
|
buf + size - ret, ret,
|
|
|
|
buf, size, &olen)) != 0) {
|
|
|
|
return ret;
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
|
|
|
|
2023-01-11 14:50:10 +01:00
|
|
|
return 0;
|
2013-09-16 13:49:26 +02:00
|
|
|
}
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_PEM_WRITE_C */
|
2013-09-16 13:49:26 +02:00
|
|
|
|
2015-04-08 12:49:31 +02:00
|
|
|
#endif /* MBEDTLS_X509_CRT_WRITE_C */
|