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