Avoid duplicated code.
[oweals/openssl.git] / crypto / x509 / x509cset.c
1 /*
2  * Copyright 2001-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the OpenSSL license (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <stdio.h>
11 #include "internal/cryptlib.h"
12 #include <openssl/asn1.h>
13 #include <openssl/objects.h>
14 #include <openssl/evp.h>
15 #include <openssl/x509.h>
16 #include "internal/x509_int.h"
17
18 int X509_CRL_set_version(X509_CRL *x, long version)
19 {
20     if (x == NULL)
21         return (0);
22     if (x->crl.version == NULL) {
23         if ((x->crl.version = ASN1_INTEGER_new()) == NULL)
24             return (0);
25     }
26     return (ASN1_INTEGER_set(x->crl.version, version));
27 }
28
29 int X509_CRL_set_issuer_name(X509_CRL *x, X509_NAME *name)
30 {
31     if (x == NULL)
32         return (0);
33     return (X509_NAME_set(&x->crl.issuer, name));
34 }
35
36 int X509_CRL_set_lastUpdate(X509_CRL *x, const ASN1_TIME *tm)
37 {
38     if (x == NULL)
39         return 0;
40     return x509_set1_time(&x->crl.lastUpdate, tm);
41 }
42
43 int X509_CRL_set_nextUpdate(X509_CRL *x, const ASN1_TIME *tm)
44 {
45     if (x == NULL)
46         return 0;
47     return x509_set1_time(&x->crl.nextUpdate, tm);
48 }
49
50 int X509_CRL_sort(X509_CRL *c)
51 {
52     int i;
53     X509_REVOKED *r;
54     /*
55      * sort the data so it will be written in serial number order
56      */
57     sk_X509_REVOKED_sort(c->crl.revoked);
58     for (i = 0; i < sk_X509_REVOKED_num(c->crl.revoked); i++) {
59         r = sk_X509_REVOKED_value(c->crl.revoked, i);
60         r->sequence = i;
61     }
62     c->crl.enc.modified = 1;
63     return 1;
64 }
65
66 int X509_CRL_up_ref(X509_CRL *crl)
67 {
68     int i;
69
70     if (CRYPTO_atomic_add(&crl->references, 1, &i, crl->lock) <= 0)
71         return 0;
72
73     REF_PRINT_COUNT("X509_CRL", crl);
74     REF_ASSERT_ISNT(i < 2);
75     return ((i > 1) ? 1 : 0);
76 }
77
78 long X509_CRL_get_version(const X509_CRL *crl)
79 {
80     return ASN1_INTEGER_get(crl->crl.version);
81 }
82
83 ASN1_TIME *X509_CRL_get_lastUpdate(const X509_CRL *crl)
84 {
85     return crl->crl.lastUpdate;
86 }
87
88 ASN1_TIME *X509_CRL_get_nextUpdate(const X509_CRL *crl)
89 {
90     return crl->crl.nextUpdate;
91 }
92
93 X509_NAME *X509_CRL_get_issuer(const X509_CRL *crl)
94 {
95     return crl->crl.issuer;
96 }
97
98 const STACK_OF(X509_EXTENSION) *X509_CRL_get0_extensions(const X509_CRL *crl)
99 {
100     return crl->crl.extensions;
101 }
102
103 STACK_OF(X509_REVOKED) *X509_CRL_get_REVOKED(X509_CRL *crl)
104 {
105     return crl->crl.revoked;
106 }
107
108 void X509_CRL_get0_signature(const X509_CRL *crl, const ASN1_BIT_STRING **psig,
109                              const X509_ALGOR **palg)
110 {
111     if (psig != NULL)
112         *psig = &crl->signature;
113     if (palg != NULL)
114         *palg = &crl->sig_alg;
115 }
116
117 int X509_CRL_get_signature_nid(const X509_CRL *crl)
118 {
119     return OBJ_obj2nid(crl->sig_alg.algorithm);
120 }
121
122 const ASN1_TIME *X509_REVOKED_get0_revocationDate(const X509_REVOKED *x)
123 {
124     return x->revocationDate;
125 }
126
127 int X509_REVOKED_set_revocationDate(X509_REVOKED *x, ASN1_TIME *tm)
128 {
129     ASN1_TIME *in;
130
131     if (x == NULL)
132         return (0);
133     in = x->revocationDate;
134     if (in != tm) {
135         in = ASN1_STRING_dup(tm);
136         if (in != NULL) {
137             ASN1_TIME_free(x->revocationDate);
138             x->revocationDate = in;
139         }
140     }
141     return (in != NULL);
142 }
143
144 const ASN1_INTEGER *X509_REVOKED_get0_serialNumber(const X509_REVOKED *x)
145 {
146     return &x->serialNumber;
147 }
148
149 int X509_REVOKED_set_serialNumber(X509_REVOKED *x, ASN1_INTEGER *serial)
150 {
151     ASN1_INTEGER *in;
152
153     if (x == NULL)
154         return (0);
155     in = &x->serialNumber;
156     if (in != serial)
157         return ASN1_STRING_copy(in, serial);
158     return 1;
159 }
160
161 const STACK_OF(X509_EXTENSION) *X509_REVOKED_get0_extensions(const X509_REVOKED *r)
162 {
163     return r->extensions;
164 }
165
166 int i2d_re_X509_CRL_tbs(X509_CRL *crl, unsigned char **pp)
167 {
168     crl->crl.enc.modified = 1;
169     return i2d_X509_CRL_INFO(&crl->crl, pp);
170 }