2015-01-22 03:40:55 +00:00
|
|
|
/*
|
2017-08-18 13:52:46 +10:00
|
|
|
* Copyright 2001-2017 The OpenSSL Project Authors. All Rights Reserved.
|
2001-08-17 00:33:43 +00:00
|
|
|
*
|
2018-12-06 14:00:36 +01:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-17 14:52:22 -04: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
|
2001-08-17 00:33:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 16:56:48 +02:00
|
|
|
#include "internal/cryptlib.h"
|
2017-08-22 07:17:35 +10:00
|
|
|
#include "internal/refcount.h"
|
2001-08-17 00:33:43 +00:00
|
|
|
#include <openssl/asn1.h>
|
|
|
|
#include <openssl/objects.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/x509.h>
|
2015-08-31 21:30:13 +01:00
|
|
|
#include "internal/x509_int.h"
|
2001-08-17 00:33:43 +00:00
|
|
|
|
|
|
|
int X509_CRL_set_version(X509_CRL *x, long version)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
if (x == NULL)
|
2017-10-17 23:04:09 +09:00
|
|
|
return 0;
|
2015-09-16 00:24:43 +01:00
|
|
|
if (x->crl.version == NULL) {
|
|
|
|
if ((x->crl.version = ASN1_INTEGER_new()) == NULL)
|
2017-10-17 23:04:09 +09:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2017-10-17 23:04:09 +09:00
|
|
|
return ASN1_INTEGER_set(x->crl.version, version);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2001-08-17 00:33:43 +00:00
|
|
|
|
|
|
|
int X509_CRL_set_issuer_name(X509_CRL *x, X509_NAME *name)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
2015-09-16 00:24:43 +01:00
|
|
|
if (x == NULL)
|
2017-10-17 23:04:09 +09:00
|
|
|
return 0;
|
|
|
|
return X509_NAME_set(&x->crl.issuer, name);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2001-08-17 00:33:43 +00:00
|
|
|
|
2016-08-19 12:39:57 +01:00
|
|
|
int X509_CRL_set1_lastUpdate(X509_CRL *x, const ASN1_TIME *tm)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
if (x == NULL)
|
2016-08-19 16:12:31 +01:00
|
|
|
return 0;
|
|
|
|
return x509_set1_time(&x->crl.lastUpdate, tm);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2001-08-17 00:33:43 +00:00
|
|
|
|
2016-08-19 12:39:57 +01:00
|
|
|
int X509_CRL_set1_nextUpdate(X509_CRL *x, const ASN1_TIME *tm)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
if (x == NULL)
|
2016-08-19 16:12:31 +01:00
|
|
|
return 0;
|
|
|
|
return x509_set1_time(&x->crl.nextUpdate, tm);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2001-08-17 00:33:43 +00:00
|
|
|
|
|
|
|
int X509_CRL_sort(X509_CRL *c)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
X509_REVOKED *r;
|
|
|
|
/*
|
|
|
|
* sort the data so it will be written in serial number order
|
|
|
|
*/
|
2015-09-16 00:24:43 +01:00
|
|
|
sk_X509_REVOKED_sort(c->crl.revoked);
|
|
|
|
for (i = 0; i < sk_X509_REVOKED_num(c->crl.revoked); i++) {
|
|
|
|
r = sk_X509_REVOKED_value(c->crl.revoked, i);
|
2015-01-22 03:40:55 +00:00
|
|
|
r->sequence = i;
|
|
|
|
}
|
2015-09-16 00:24:43 +01:00
|
|
|
c->crl.enc.modified = 1;
|
2015-01-22 03:40:55 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2001-08-17 00:33:43 +00:00
|
|
|
|
2016-03-07 22:45:58 +01:00
|
|
|
int X509_CRL_up_ref(X509_CRL *crl)
|
2015-08-31 20:30:20 +01:00
|
|
|
{
|
2016-03-01 18:06:15 +00:00
|
|
|
int i;
|
2016-03-07 22:45:58 +01:00
|
|
|
|
2016-08-27 16:01:08 +02:00
|
|
|
if (CRYPTO_UP_REF(&crl->references, &i, crl->lock) <= 0)
|
2016-03-07 22:45:58 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
REF_PRINT_COUNT("X509_CRL", crl);
|
|
|
|
REF_ASSERT_ISNT(i < 2);
|
|
|
|
return ((i > 1) ? 1 : 0);
|
2015-08-31 20:30:20 +01:00
|
|
|
}
|
|
|
|
|
2016-08-01 19:25:16 +01:00
|
|
|
long X509_CRL_get_version(const X509_CRL *crl)
|
2015-08-31 21:30:13 +01:00
|
|
|
{
|
2015-09-16 00:24:43 +01:00
|
|
|
return ASN1_INTEGER_get(crl->crl.version);
|
2015-08-31 21:30:13 +01:00
|
|
|
}
|
|
|
|
|
2016-08-19 12:39:57 +01:00
|
|
|
const ASN1_TIME *X509_CRL_get0_lastUpdate(const X509_CRL *crl)
|
2015-08-31 21:30:13 +01:00
|
|
|
{
|
2015-09-16 00:24:43 +01:00
|
|
|
return crl->crl.lastUpdate;
|
2015-08-31 21:30:13 +01:00
|
|
|
}
|
|
|
|
|
2016-08-19 12:39:57 +01:00
|
|
|
const ASN1_TIME *X509_CRL_get0_nextUpdate(const X509_CRL *crl)
|
2015-08-31 21:30:13 +01:00
|
|
|
{
|
2015-09-16 00:24:43 +01:00
|
|
|
return crl->crl.nextUpdate;
|
2015-08-31 21:30:13 +01:00
|
|
|
}
|
|
|
|
|
2018-11-29 23:05:03 +00:00
|
|
|
#if !OPENSSL_API_1_1_0
|
2016-08-19 12:39:57 +01:00
|
|
|
ASN1_TIME *X509_CRL_get_lastUpdate(X509_CRL *crl)
|
|
|
|
{
|
|
|
|
return crl->crl.lastUpdate;
|
|
|
|
}
|
|
|
|
|
|
|
|
ASN1_TIME *X509_CRL_get_nextUpdate(X509_CRL *crl)
|
|
|
|
{
|
|
|
|
return crl->crl.nextUpdate;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-08-01 19:25:16 +01:00
|
|
|
X509_NAME *X509_CRL_get_issuer(const X509_CRL *crl)
|
2015-08-31 21:30:13 +01:00
|
|
|
{
|
2015-09-16 00:24:43 +01:00
|
|
|
return crl->crl.issuer;
|
2015-08-31 21:30:13 +01:00
|
|
|
}
|
|
|
|
|
2016-08-13 14:44:07 +01:00
|
|
|
const STACK_OF(X509_EXTENSION) *X509_CRL_get0_extensions(const X509_CRL *crl)
|
2015-09-18 02:39:44 +01:00
|
|
|
{
|
|
|
|
return crl->crl.extensions;
|
|
|
|
}
|
|
|
|
|
2015-08-31 21:30:13 +01:00
|
|
|
STACK_OF(X509_REVOKED) *X509_CRL_get_REVOKED(X509_CRL *crl)
|
|
|
|
{
|
2015-09-16 00:24:43 +01:00
|
|
|
return crl->crl.revoked;
|
2015-08-31 21:30:13 +01:00
|
|
|
}
|
|
|
|
|
2016-08-13 14:44:07 +01:00
|
|
|
void X509_CRL_get0_signature(const X509_CRL *crl, const ASN1_BIT_STRING **psig,
|
|
|
|
const X509_ALGOR **palg)
|
2015-08-31 21:30:13 +01:00
|
|
|
{
|
2015-09-22 13:00:03 +01:00
|
|
|
if (psig != NULL)
|
2015-10-11 21:13:42 +01:00
|
|
|
*psig = &crl->signature;
|
2015-09-22 13:00:03 +01:00
|
|
|
if (palg != NULL)
|
2015-09-17 14:44:19 +01:00
|
|
|
*palg = &crl->sig_alg;
|
2015-08-31 21:30:13 +01:00
|
|
|
}
|
|
|
|
|
2015-09-07 16:51:05 +01:00
|
|
|
int X509_CRL_get_signature_nid(const X509_CRL *crl)
|
|
|
|
{
|
|
|
|
return OBJ_obj2nid(crl->sig_alg.algorithm);
|
|
|
|
}
|
|
|
|
|
2016-08-15 12:41:25 +01:00
|
|
|
const ASN1_TIME *X509_REVOKED_get0_revocationDate(const X509_REVOKED *x)
|
2015-09-07 23:32:58 +01:00
|
|
|
{
|
|
|
|
return x->revocationDate;
|
|
|
|
}
|
|
|
|
|
2001-08-17 00:33:43 +00:00
|
|
|
int X509_REVOKED_set_revocationDate(X509_REVOKED *x, ASN1_TIME *tm)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
ASN1_TIME *in;
|
2001-08-17 00:33:43 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (x == NULL)
|
2017-10-17 23:04:09 +09:00
|
|
|
return 0;
|
2015-01-22 03:40:55 +00:00
|
|
|
in = x->revocationDate;
|
|
|
|
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-03-14 04:16:42 +00:00
|
|
|
ASN1_TIME_free(x->revocationDate);
|
2015-01-22 03:40:55 +00:00
|
|
|
x->revocationDate = in;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (in != NULL);
|
|
|
|
}
|
2001-08-17 00:33:43 +00:00
|
|
|
|
2016-08-15 12:41:25 +01:00
|
|
|
const ASN1_INTEGER *X509_REVOKED_get0_serialNumber(const X509_REVOKED *x)
|
2015-09-07 23:32:58 +01:00
|
|
|
{
|
2015-10-11 21:13:42 +01:00
|
|
|
return &x->serialNumber;
|
2015-09-07 23:32:58 +01:00
|
|
|
}
|
|
|
|
|
2001-08-17 00:33:43 +00:00
|
|
|
int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
ASN1_INTEGER *in;
|
2001-08-17 00:33:43 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if (x == NULL)
|
2017-10-17 23:04:09 +09:00
|
|
|
return 0;
|
2015-10-11 21:13:42 +01:00
|
|
|
in = &x->serialNumber;
|
|
|
|
if (in != serial)
|
|
|
|
return ASN1_STRING_copy(in, serial);
|
|
|
|
return 1;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2015-09-07 16:51:05 +01:00
|
|
|
|
2016-08-15 12:41:25 +01:00
|
|
|
const STACK_OF(X509_EXTENSION) *X509_REVOKED_get0_extensions(const X509_REVOKED *r)
|
2015-09-18 02:39:44 +01:00
|
|
|
{
|
|
|
|
return r->extensions;
|
|
|
|
}
|
|
|
|
|
2015-09-07 16:51:05 +01:00
|
|
|
int i2d_re_X509_CRL_tbs(X509_CRL *crl, unsigned char **pp)
|
|
|
|
{
|
|
|
|
crl->crl.enc.modified = 1;
|
|
|
|
return i2d_X509_CRL_INFO(&crl->crl, pp);
|
|
|
|
}
|