1 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young (eay@cryptsoft.com).
6 * The implementation was written so as to conform with Netscapes SSL.
7 *
8 * This library is free for commercial and non-commercial use as long as
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
11 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
12 * included with this distribution is covered by the same copyright terms
13 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
14 *
15 * Copyright remains Eric Young's, and as such any Copyright notices in
16 * the code are not to be removed.
17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
19 * This can be in the form of a textual message at program startup or
20 * in documentation (online or textual) provided with the package.
21 *
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
24 * are met:
25 * 1. Redistributions of source code must retain the copyright
26 * notice, this list of conditions and the following disclaimer.
27 * 2. Redistributions in binary form must reproduce the above copyright
28 * notice, this list of conditions and the following disclaimer in the
29 * documentation and/or other materials provided with the distribution.
30 * 3. All advertising materials mentioning features or use of this software
31 * must display the following acknowledgement:
32 * "This product includes cryptographic software written by
33 * Eric Young (eay@cryptsoft.com)"
34 * The word 'cryptographic' can be left out if the rouines from the library
35 * being used are not cryptographic related :-).
36 * 4. If you include any Windows specific code (or a derivative thereof) from
37 * the apps directory (application code) you must include an acknowledgement:
38 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
39 *
40 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
43 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
44 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
46 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
48 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
50 * SUCH DAMAGE.
51 *
52 * The licence and distribution terms for any publically available version or
53 * derivative of this code cannot be changed. i.e. this code cannot simply be
54 * copied and put under another distribution licence
55 * [including the GNU Public Licence.] */
56
57 #include <openssl/asn1.h>
58 #include <openssl/err.h>
59 #include <openssl/evp.h>
60 #include <openssl/obj.h>
61 #include <openssl/stack.h>
62 #include <openssl/x509.h>
63 #include <openssl/x509v3.h>
64
65 #include "internal.h"
66
67
X509v3_get_ext_count(const STACK_OF (X509_EXTENSION)* x)68 int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x) {
69 if (x == NULL) {
70 return 0;
71 }
72 return (int)sk_X509_EXTENSION_num(x);
73 }
74
X509v3_get_ext_by_NID(const STACK_OF (X509_EXTENSION)* x,int nid,int lastpos)75 int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x, int nid,
76 int lastpos) {
77 const ASN1_OBJECT *obj = OBJ_nid2obj(nid);
78 if (obj == NULL) {
79 return -1;
80 }
81 return X509v3_get_ext_by_OBJ(x, obj, lastpos);
82 }
83
X509v3_get_ext_by_OBJ(const STACK_OF (X509_EXTENSION)* sk,const ASN1_OBJECT * obj,int lastpos)84 int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *sk,
85 const ASN1_OBJECT *obj, int lastpos) {
86 if (sk == NULL) {
87 return -1;
88 }
89 lastpos++;
90 if (lastpos < 0) {
91 lastpos = 0;
92 }
93 int n = (int)sk_X509_EXTENSION_num(sk);
94 for (; lastpos < n; lastpos++) {
95 const X509_EXTENSION *ex = sk_X509_EXTENSION_value(sk, lastpos);
96 if (OBJ_cmp(ex->object, obj) == 0) {
97 return lastpos;
98 }
99 }
100 return -1;
101 }
102
X509v3_get_ext_by_critical(const STACK_OF (X509_EXTENSION)* sk,int crit,int lastpos)103 int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *sk, int crit,
104 int lastpos) {
105 if (sk == NULL) {
106 return -1;
107 }
108
109 lastpos++;
110 if (lastpos < 0) {
111 lastpos = 0;
112 }
113
114 crit = !!crit;
115 int n = (int)sk_X509_EXTENSION_num(sk);
116 for (; lastpos < n; lastpos++) {
117 const X509_EXTENSION *ex = sk_X509_EXTENSION_value(sk, lastpos);
118 if (X509_EXTENSION_get_critical(ex) == crit) {
119 return lastpos;
120 }
121 }
122 return -1;
123 }
124
X509v3_get_ext(const STACK_OF (X509_EXTENSION)* x,int loc)125 X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc) {
126 if (x == NULL || loc < 0 || sk_X509_EXTENSION_num(x) <= (size_t)loc) {
127 return NULL;
128 } else {
129 return sk_X509_EXTENSION_value(x, loc);
130 }
131 }
132
X509v3_delete_ext(STACK_OF (X509_EXTENSION)* x,int loc)133 X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc) {
134 X509_EXTENSION *ret;
135
136 if (x == NULL || loc < 0 || sk_X509_EXTENSION_num(x) <= (size_t)loc) {
137 return NULL;
138 }
139 ret = sk_X509_EXTENSION_delete(x, loc);
140 return ret;
141 }
142
STACK_OF(X509_EXTENSION)143 STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x,
144 const X509_EXTENSION *ex, int loc) {
145 X509_EXTENSION *new_ex = NULL;
146 STACK_OF(X509_EXTENSION) *sk = NULL;
147 int free_sk = 0;
148
149 if (x == NULL) {
150 OPENSSL_PUT_ERROR(X509, ERR_R_PASSED_NULL_PARAMETER);
151 goto err;
152 }
153
154 if (*x == NULL) {
155 if ((sk = sk_X509_EXTENSION_new_null()) == NULL) {
156 goto err;
157 }
158 free_sk = 1;
159 } else {
160 sk = *x;
161 }
162
163 int n = (int)sk_X509_EXTENSION_num(sk);
164 if (loc > n) {
165 loc = n;
166 } else if (loc < 0) {
167 loc = n;
168 }
169
170 if ((new_ex = X509_EXTENSION_dup(ex)) == NULL) {
171 goto err;
172 }
173 if (!sk_X509_EXTENSION_insert(sk, new_ex, loc)) {
174 goto err;
175 }
176 if (*x == NULL) {
177 *x = sk;
178 }
179 return sk;
180
181 err:
182 X509_EXTENSION_free(new_ex);
183 if (free_sk) {
184 sk_X509_EXTENSION_free(sk);
185 }
186 return NULL;
187 }
188
X509_EXTENSION_create_by_NID(X509_EXTENSION ** ex,int nid,int crit,const ASN1_OCTET_STRING * data)189 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, int nid,
190 int crit,
191 const ASN1_OCTET_STRING *data) {
192 const ASN1_OBJECT *obj;
193 X509_EXTENSION *ret;
194
195 obj = OBJ_nid2obj(nid);
196 if (obj == NULL) {
197 OPENSSL_PUT_ERROR(X509, X509_R_UNKNOWN_NID);
198 return NULL;
199 }
200 ret = X509_EXTENSION_create_by_OBJ(ex, obj, crit, data);
201 return ret;
202 }
203
X509_EXTENSION_create_by_OBJ(X509_EXTENSION ** ex,const ASN1_OBJECT * obj,int crit,const ASN1_OCTET_STRING * data)204 X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex,
205 const ASN1_OBJECT *obj, int crit,
206 const ASN1_OCTET_STRING *data) {
207 X509_EXTENSION *ret;
208
209 if ((ex == NULL) || (*ex == NULL)) {
210 if ((ret = X509_EXTENSION_new()) == NULL) {
211 return NULL;
212 }
213 } else {
214 ret = *ex;
215 }
216
217 if (!X509_EXTENSION_set_object(ret, obj)) {
218 goto err;
219 }
220 if (!X509_EXTENSION_set_critical(ret, crit)) {
221 goto err;
222 }
223 if (!X509_EXTENSION_set_data(ret, data)) {
224 goto err;
225 }
226
227 if ((ex != NULL) && (*ex == NULL)) {
228 *ex = ret;
229 }
230 return ret;
231 err:
232 if ((ex == NULL) || (ret != *ex)) {
233 X509_EXTENSION_free(ret);
234 }
235 return NULL;
236 }
237
X509_EXTENSION_set_object(X509_EXTENSION * ex,const ASN1_OBJECT * obj)238 int X509_EXTENSION_set_object(X509_EXTENSION *ex, const ASN1_OBJECT *obj) {
239 if ((ex == NULL) || (obj == NULL)) {
240 return 0;
241 }
242 ASN1_OBJECT_free(ex->object);
243 ex->object = OBJ_dup(obj);
244 return ex->object != NULL;
245 }
246
X509_EXTENSION_set_critical(X509_EXTENSION * ex,int crit)247 int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit) {
248 if (ex == NULL) {
249 return 0;
250 }
251 // The critical field is DEFAULT FALSE, so non-critical extensions should omit
252 // the value.
253 ex->critical = crit ? ASN1_BOOLEAN_TRUE : ASN1_BOOLEAN_NONE;
254 return 1;
255 }
256
X509_EXTENSION_set_data(X509_EXTENSION * ex,const ASN1_OCTET_STRING * data)257 int X509_EXTENSION_set_data(X509_EXTENSION *ex, const ASN1_OCTET_STRING *data) {
258 int i;
259
260 if (ex == NULL) {
261 return 0;
262 }
263 i = ASN1_OCTET_STRING_set(ex->value, data->data, data->length);
264 if (!i) {
265 return 0;
266 }
267 return 1;
268 }
269
X509_EXTENSION_get_object(const X509_EXTENSION * ex)270 ASN1_OBJECT *X509_EXTENSION_get_object(const X509_EXTENSION *ex) {
271 if (ex == NULL) {
272 return NULL;
273 }
274 return ex->object;
275 }
276
X509_EXTENSION_get_data(const X509_EXTENSION * ex)277 ASN1_OCTET_STRING *X509_EXTENSION_get_data(const X509_EXTENSION *ex) {
278 if (ex == NULL) {
279 return NULL;
280 }
281 return ex->value;
282 }
283
X509_EXTENSION_get_critical(const X509_EXTENSION * ex)284 int X509_EXTENSION_get_critical(const X509_EXTENSION *ex) {
285 if (ex == NULL) {
286 return 0;
287 }
288 if (ex->critical > 0) {
289 return 1;
290 }
291 return 0;
292 }
293