2016-05-18 02:52:22 +08:00
|
|
|
/*
|
|
|
|
* Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1998-12-21 18:52:47 +08:00
|
|
|
*
|
2016-05-18 02:52:22 +08:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* 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
|
1998-12-21 18:52:47 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/asn1.h>
|
|
|
|
#include <openssl/objects.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/x509.h>
|
2015-09-22 22:23:05 +08:00
|
|
|
#include "internal/x509_int.h"
|
1998-12-21 18:52:47 +08:00
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
int X509_set_version(X509 *x, long version)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
if (x == NULL)
|
|
|
|
return (0);
|
|
|
|
if (version == 0) {
|
2015-09-17 01:40:26 +08:00
|
|
|
ASN1_INTEGER_free(x->cert_info.version);
|
|
|
|
x->cert_info.version = NULL;
|
2015-01-22 11:40:55 +08:00
|
|
|
return (1);
|
|
|
|
}
|
2015-09-17 01:40:26 +08:00
|
|
|
if (x->cert_info.version == NULL) {
|
|
|
|
if ((x->cert_info.version = ASN1_INTEGER_new()) == NULL)
|
2015-01-22 11:40:55 +08:00
|
|
|
return (0);
|
|
|
|
}
|
2015-09-17 01:40:26 +08:00
|
|
|
return (ASN1_INTEGER_set(x->cert_info.version, version));
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
ASN1_INTEGER *in;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if (x == NULL)
|
2015-10-12 04:05:49 +08:00
|
|
|
return 0;
|
|
|
|
in = &x->cert_info.serialNumber;
|
|
|
|
if (in != serial)
|
|
|
|
return ASN1_STRING_copy(in, serial);
|
|
|
|
return 1;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
int X509_set_issuer_name(X509 *x, X509_NAME *name)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2015-09-17 01:40:26 +08:00
|
|
|
if (x == NULL)
|
2015-01-22 11:40:55 +08:00
|
|
|
return (0);
|
2015-09-17 01:40:26 +08:00
|
|
|
return (X509_NAME_set(&x->cert_info.issuer, name));
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
int X509_set_subject_name(X509 *x, X509_NAME *name)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2015-09-17 01:40:26 +08:00
|
|
|
if (x == NULL)
|
2015-01-22 11:40:55 +08:00
|
|
|
return (0);
|
2015-09-17 01:40:26 +08:00
|
|
|
return (X509_NAME_set(&x->cert_info.subject, name));
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2006-12-12 06:35:51 +08:00
|
|
|
int X509_set_notBefore(X509 *x, const ASN1_TIME *tm)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
ASN1_TIME *in;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2015-09-16 00:10:51 +08:00
|
|
|
if (x == NULL)
|
2015-01-22 11:40:55 +08:00
|
|
|
return (0);
|
2015-09-17 01:40:26 +08:00
|
|
|
in = x->cert_info.validity.notBefore;
|
2015-01-22 11:40:55 +08:00
|
|
|
if (in != tm) {
|
2015-03-14 12:16:42 +08:00
|
|
|
in = ASN1_STRING_dup(tm);
|
2015-01-22 11:40:55 +08:00
|
|
|
if (in != NULL) {
|
2015-09-17 01:40:26 +08:00
|
|
|
ASN1_TIME_free(x->cert_info.validity.notBefore);
|
|
|
|
x->cert_info.validity.notBefore = in;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return (in != NULL);
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2006-12-12 06:35:51 +08:00
|
|
|
int X509_set_notAfter(X509 *x, const ASN1_TIME *tm)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
ASN1_TIME *in;
|
1998-12-21 18:52:47 +08:00
|
|
|
|
2015-09-16 00:10:51 +08:00
|
|
|
if (x == NULL)
|
2015-01-22 11:40:55 +08:00
|
|
|
return (0);
|
2015-09-17 01:40:26 +08:00
|
|
|
in = x->cert_info.validity.notAfter;
|
2015-01-22 11:40:55 +08:00
|
|
|
if (in != tm) {
|
2015-03-14 12:16:42 +08:00
|
|
|
in = ASN1_STRING_dup(tm);
|
2015-01-22 11:40:55 +08:00
|
|
|
if (in != NULL) {
|
2015-09-17 01:40:26 +08:00
|
|
|
ASN1_TIME_free(x->cert_info.validity.notAfter);
|
|
|
|
x->cert_info.validity.notAfter = in;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return (in != NULL);
|
|
|
|
}
|
1998-12-21 18:52:47 +08:00
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
int X509_set_pubkey(X509 *x, EVP_PKEY *pkey)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
2015-09-17 01:40:26 +08:00
|
|
|
if (x == NULL)
|
2015-01-22 11:40:55 +08:00
|
|
|
return (0);
|
2015-09-17 01:40:26 +08:00
|
|
|
return (X509_PUBKEY_set(&(x->cert_info.key), pkey));
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2015-09-01 03:29:57 +08:00
|
|
|
|
2016-03-08 05:45:58 +08:00
|
|
|
int X509_up_ref(X509 *x)
|
2015-09-01 03:29:57 +08:00
|
|
|
{
|
2016-03-02 02:06:15 +08:00
|
|
|
int i;
|
2016-03-08 05:45:58 +08:00
|
|
|
|
|
|
|
if (CRYPTO_atomic_add(&x->references, 1, &i, x->lock) <= 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
REF_PRINT_COUNT("X509", x);
|
|
|
|
REF_ASSERT_ISNT(i < 2);
|
|
|
|
return ((i > 1) ? 1 : 0);
|
2015-09-01 03:29:57 +08:00
|
|
|
}
|
2015-09-03 04:46:39 +08:00
|
|
|
|
|
|
|
long X509_get_version(X509 *x)
|
|
|
|
{
|
2015-09-17 01:40:26 +08:00
|
|
|
return ASN1_INTEGER_get(x->cert_info.version);
|
2015-09-03 04:46:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ASN1_TIME * X509_get_notBefore(X509 *x)
|
|
|
|
{
|
2015-09-17 01:40:26 +08:00
|
|
|
return x->cert_info.validity.notBefore;
|
2015-09-03 04:46:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
ASN1_TIME *X509_get_notAfter(X509 *x)
|
|
|
|
{
|
2015-09-17 01:40:26 +08:00
|
|
|
return x->cert_info.validity.notAfter;
|
2015-09-03 04:46:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int X509_get_signature_type(const X509 *x)
|
|
|
|
{
|
2015-09-17 21:44:19 +08:00
|
|
|
return EVP_PKEY_type(OBJ_obj2nid(x->sig_alg.algorithm));
|
2015-09-03 04:46:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
X509_PUBKEY *X509_get_X509_PUBKEY(const X509 *x)
|
|
|
|
{
|
2015-09-17 01:40:26 +08:00
|
|
|
return x->cert_info.key;
|
2015-09-03 04:46:39 +08:00
|
|
|
}
|
2015-09-23 06:40:43 +08:00
|
|
|
|
|
|
|
STACK_OF(X509_EXTENSION) *X509_get0_extensions(const X509 *x)
|
|
|
|
{
|
|
|
|
return x->cert_info.extensions;
|
|
|
|
}
|
|
|
|
|
|
|
|
void X509_get0_uids(ASN1_BIT_STRING **piuid, ASN1_BIT_STRING **psuid, X509 *x)
|
|
|
|
{
|
|
|
|
if (piuid != NULL)
|
|
|
|
*piuid = x->cert_info.issuerUID;
|
|
|
|
if (psuid != NULL)
|
|
|
|
*psuid = x->cert_info.subjectUID;
|
|
|
|
}
|
|
|
|
|
|
|
|
X509_ALGOR *X509_get0_tbs_sigalg(X509 *x)
|
|
|
|
{
|
|
|
|
return &x->cert_info.signature;
|
|
|
|
}
|