1 /* Copyright (C) 1995-1998 Eric Young ([email protected])
2 * All rights reserved.
3 *
4 * This package is an SSL implementation written
5 * by Eric Young ([email protected]).
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 ([email protected]).
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 ([email protected])"
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 ([email protected])"
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
64 #include "internal.h"
65
66
X509v3_get_ext_count(const STACK_OF (X509_EXTENSION)* x)67 int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x) {
68 if (x == NULL) {
69 return 0;
70 }
71 return (int)sk_X509_EXTENSION_num(x);
72 }
73
X509v3_get_ext_by_NID(const STACK_OF (X509_EXTENSION)* x,int nid,int lastpos)74 int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x, int nid,
75 int lastpos) {
76 const ASN1_OBJECT *obj = OBJ_nid2obj(nid);
77 if (obj == NULL) {
78 return -1;
79 }
80 return X509v3_get_ext_by_OBJ(x, obj, lastpos);
81 }
82
X509v3_get_ext_by_OBJ(const STACK_OF (X509_EXTENSION)* sk,const ASN1_OBJECT * obj,int lastpos)83 int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *sk,
84 const ASN1_OBJECT *obj, int lastpos) {
85 if (sk == NULL) {
86 return -1;
87 }
88 lastpos++;
89 if (lastpos < 0) {
90 lastpos = 0;
91 }
92 int n = (int)sk_X509_EXTENSION_num(sk);
93 for (; lastpos < n; lastpos++) {
94 const X509_EXTENSION *ex = sk_X509_EXTENSION_value(sk, lastpos);
95 if (OBJ_cmp(ex->object, obj) == 0) {
96 return lastpos;
97 }
98 }
99 return -1;
100 }
101
X509v3_get_ext_by_critical(const STACK_OF (X509_EXTENSION)* sk,int crit,int lastpos)102 int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *sk, int crit,
103 int lastpos) {
104 if (sk == NULL) {
105 return -1;
106 }
107
108 lastpos++;
109 if (lastpos < 0) {
110 lastpos = 0;
111 }
112
113 crit = !!crit;
114 int n = (int)sk_X509_EXTENSION_num(sk);
115 for (; lastpos < n; lastpos++) {
116 const X509_EXTENSION *ex = sk_X509_EXTENSION_value(sk, lastpos);
117 if (X509_EXTENSION_get_critical(ex) == crit) {
118 return lastpos;
119 }
120 }
121 return -1;
122 }
123
X509v3_get_ext(const STACK_OF (X509_EXTENSION)* x,int loc)124 X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc) {
125 if (x == NULL || loc < 0 || sk_X509_EXTENSION_num(x) <= (size_t)loc) {
126 return NULL;
127 } else {
128 return sk_X509_EXTENSION_value(x, loc);
129 }
130 }
131
X509v3_delete_ext(STACK_OF (X509_EXTENSION)* x,int loc)132 X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc) {
133 X509_EXTENSION *ret;
134
135 if (x == NULL || loc < 0 || sk_X509_EXTENSION_num(x) <= (size_t)loc) {
136 return NULL;
137 }
138 ret = sk_X509_EXTENSION_delete(x, loc);
139 return ret;
140 }
141
STACK_OF(X509_EXTENSION)142 STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x,
143 const X509_EXTENSION *ex, int loc) {
144 X509_EXTENSION *new_ex = NULL;
145 STACK_OF(X509_EXTENSION) *sk = NULL;
146 int free_sk = 0;
147
148 if (x == NULL) {
149 OPENSSL_PUT_ERROR(X509, ERR_R_PASSED_NULL_PARAMETER);
150 goto err;
151 }
152
153 if (*x == NULL) {
154 if ((sk = sk_X509_EXTENSION_new_null()) == NULL) {
155 goto err;
156 }
157 free_sk = 1;
158 } else {
159 sk = *x;
160 }
161
162 int n = (int)sk_X509_EXTENSION_num(sk);
163 if (loc > n) {
164 loc = n;
165 } else if (loc < 0) {
166 loc = n;
167 }
168
169 if ((new_ex = X509_EXTENSION_dup(ex)) == NULL) {
170 goto err;
171 }
172 if (!sk_X509_EXTENSION_insert(sk, new_ex, loc)) {
173 goto err;
174 }
175 if (*x == NULL) {
176 *x = sk;
177 }
178 return sk;
179
180 err:
181 X509_EXTENSION_free(new_ex);
182 if (free_sk) {
183 sk_X509_EXTENSION_free(sk);
184 }
185 return NULL;
186 }
187
X509_EXTENSION_create_by_NID(X509_EXTENSION ** ex,int nid,int crit,const ASN1_OCTET_STRING * data)188 X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, int nid,
189 int crit,
190 const ASN1_OCTET_STRING *data) {
191 const ASN1_OBJECT *obj;
192 X509_EXTENSION *ret;
193
194 obj = OBJ_nid2obj(nid);
195 if (obj == NULL) {
196 OPENSSL_PUT_ERROR(X509, X509_R_UNKNOWN_NID);
197 return NULL;
198 }
199 ret = X509_EXTENSION_create_by_OBJ(ex, obj, crit, data);
200 return ret;
201 }
202
X509_EXTENSION_create_by_OBJ(X509_EXTENSION ** ex,const ASN1_OBJECT * obj,int crit,const ASN1_OCTET_STRING * data)203 X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex,
204 const ASN1_OBJECT *obj, int crit,
205 const ASN1_OCTET_STRING *data) {
206 X509_EXTENSION *ret;
207
208 if ((ex == NULL) || (*ex == NULL)) {
209 if ((ret = X509_EXTENSION_new()) == NULL) {
210 return NULL;
211 }
212 } else {
213 ret = *ex;
214 }
215
216 if (!X509_EXTENSION_set_object(ret, obj)) {
217 goto err;
218 }
219 if (!X509_EXTENSION_set_critical(ret, crit)) {
220 goto err;
221 }
222 if (!X509_EXTENSION_set_data(ret, data)) {
223 goto err;
224 }
225
226 if ((ex != NULL) && (*ex == NULL)) {
227 *ex = ret;
228 }
229 return ret;
230 err:
231 if ((ex == NULL) || (ret != *ex)) {
232 X509_EXTENSION_free(ret);
233 }
234 return NULL;
235 }
236
X509_EXTENSION_set_object(X509_EXTENSION * ex,const ASN1_OBJECT * obj)237 int X509_EXTENSION_set_object(X509_EXTENSION *ex, const ASN1_OBJECT *obj) {
238 if ((ex == NULL) || (obj == NULL)) {
239 return 0;
240 }
241 ASN1_OBJECT_free(ex->object);
242 ex->object = OBJ_dup(obj);
243 return ex->object != NULL;
244 }
245
X509_EXTENSION_set_critical(X509_EXTENSION * ex,int crit)246 int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit) {
247 if (ex == NULL) {
248 return 0;
249 }
250 // The critical field is DEFAULT FALSE, so non-critical extensions should omit
251 // the value.
252 ex->critical = crit ? ASN1_BOOLEAN_TRUE : ASN1_BOOLEAN_NONE;
253 return 1;
254 }
255
X509_EXTENSION_set_data(X509_EXTENSION * ex,const ASN1_OCTET_STRING * data)256 int X509_EXTENSION_set_data(X509_EXTENSION *ex, const ASN1_OCTET_STRING *data) {
257 int i;
258
259 if (ex == NULL) {
260 return 0;
261 }
262 i = ASN1_OCTET_STRING_set(ex->value, data->data, data->length);
263 if (!i) {
264 return 0;
265 }
266 return 1;
267 }
268
X509_EXTENSION_get_object(const X509_EXTENSION * ex)269 ASN1_OBJECT *X509_EXTENSION_get_object(const X509_EXTENSION *ex) {
270 if (ex == NULL) {
271 return NULL;
272 }
273 return ex->object;
274 }
275
X509_EXTENSION_get_data(const X509_EXTENSION * ex)276 ASN1_OCTET_STRING *X509_EXTENSION_get_data(const X509_EXTENSION *ex) {
277 if (ex == NULL) {
278 return NULL;
279 }
280 return ex->value;
281 }
282
X509_EXTENSION_get_critical(const X509_EXTENSION * ex)283 int X509_EXTENSION_get_critical(const X509_EXTENSION *ex) {
284 if (ex == NULL) {
285 return 0;
286 }
287 if (ex->critical > 0) {
288 return 1;
289 }
290 return 0;
291 }
292