/src/openssl/crypto/x509/x_name.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 1995-2026 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the Apache License 2.0 (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 "crypto/ctype.h" |
12 | | #include "internal/cryptlib.h" |
13 | | #include <openssl/asn1t.h> |
14 | | #include <openssl/x509.h> |
15 | | #include "crypto/x509.h" |
16 | | #include "crypto/asn1.h" |
17 | | #include "x509_local.h" |
18 | | |
19 | | /* |
20 | | * Maximum length of X509_NAME: much larger than anything we should |
21 | | * ever see in practice. |
22 | | */ |
23 | | |
24 | 0 | #define X509_NAME_MAX (1024 * 1024) |
25 | | |
26 | | static int x509_name_ex_d2i(ASN1_VALUE **val, |
27 | | const unsigned char **in, long len, |
28 | | const ASN1_ITEM *it, |
29 | | int tag, int aclass, char opt, ASN1_TLC *ctx); |
30 | | |
31 | | static int x509_name_ex_i2d(const ASN1_VALUE **val, unsigned char **out, |
32 | | const ASN1_ITEM *it, int tag, int aclass); |
33 | | static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it); |
34 | | static void x509_name_ex_free(ASN1_VALUE **val, const ASN1_ITEM *it); |
35 | | |
36 | | static int x509_name_encode(X509_NAME *a); |
37 | | static int x509_name_canon(X509_NAME *a); |
38 | | static int asn1_string_canon(ASN1_STRING *out, const ASN1_STRING *in); |
39 | | static int i2d_name_canon(const STACK_OF(STACK_OF_X509_NAME_ENTRY) *intname, |
40 | | unsigned char **in); |
41 | | |
42 | | static int x509_name_ex_print(BIO *out, const ASN1_VALUE **pval, |
43 | | int indent, |
44 | | const char *fname, const ASN1_PCTX *pctx); |
45 | | |
46 | | ASN1_SEQUENCE(X509_NAME_ENTRY) = { |
47 | | ASN1_SIMPLE(X509_NAME_ENTRY, object, ASN1_OBJECT), |
48 | | ASN1_SIMPLE(X509_NAME_ENTRY, value, ASN1_PRINTABLE) |
49 | 0 | } ASN1_SEQUENCE_END(X509_NAME_ENTRY) |
50 | 0 |
|
51 | 0 | IMPLEMENT_ASN1_FUNCTIONS(X509_NAME_ENTRY) |
52 | 0 | IMPLEMENT_ASN1_DUP_FUNCTION(X509_NAME_ENTRY) |
53 | 0 |
|
54 | 0 | /* |
55 | 0 | * For the "Name" type we need a SEQUENCE OF { SET OF X509_NAME_ENTRY } so |
56 | 0 | * declare two template wrappers for this |
57 | 0 | */ |
58 | 0 |
|
59 | 0 | ASN1_ITEM_TEMPLATE(X509_NAME_ENTRIES) = ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SET_OF, 0, RDNS, X509_NAME_ENTRY) |
60 | 0 | static_ASN1_ITEM_TEMPLATE_END(X509_NAME_ENTRIES) |
61 | | |
62 | | ASN1_ITEM_TEMPLATE(X509_NAME_INTERNAL) |
63 | | = ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, Name, X509_NAME_ENTRIES) |
64 | 0 | static_ASN1_ITEM_TEMPLATE_END(X509_NAME_INTERNAL) |
65 | | |
66 | | /* |
67 | | * Normally that's where it would end: we'd have two nested STACK structures |
68 | | * representing the ASN1. Unfortunately X509_NAME uses a completely different |
69 | | * form and caches encodings so we have to process the internal form and |
70 | | * convert to the external form. |
71 | | */ |
72 | | |
73 | | static const ASN1_EXTERN_FUNCS x509_name_ff |
74 | | = { |
75 | | NULL, |
76 | | x509_name_ex_new, |
77 | | x509_name_ex_free, |
78 | | 0, /* Default clear behaviour is OK */ |
79 | | x509_name_ex_d2i, |
80 | | x509_name_ex_i2d, |
81 | | x509_name_ex_print |
82 | | }; |
83 | | |
84 | 0 | IMPLEMENT_EXTERN_ASN1(X509_NAME, V_ASN1_SEQUENCE, x509_name_ff) |
85 | | |
86 | | IMPLEMENT_ASN1_FUNCTIONS(X509_NAME) |
87 | | |
88 | | IMPLEMENT_ASN1_DUP_FUNCTION(X509_NAME) |
89 | | |
90 | | static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it) |
91 | 0 | { |
92 | 0 | X509_NAME *ret = OPENSSL_zalloc(sizeof(*ret)); |
93 | |
|
94 | 0 | if (ret == NULL) |
95 | 0 | return 0; |
96 | 0 | if ((ret->entries = sk_X509_NAME_ENTRY_new_null()) == NULL) { |
97 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_CRYPTO_LIB); |
98 | 0 | goto err; |
99 | 0 | } |
100 | 0 | if ((ret->bytes = BUF_MEM_new()) == NULL) { |
101 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_BUF_LIB); |
102 | 0 | goto err; |
103 | 0 | } |
104 | 0 | ret->modified = 1; |
105 | 0 | *val = (ASN1_VALUE *)ret; |
106 | 0 | return 1; |
107 | | |
108 | 0 | err: |
109 | 0 | if (ret) { |
110 | 0 | sk_X509_NAME_ENTRY_free(ret->entries); |
111 | 0 | OPENSSL_free(ret); |
112 | 0 | } |
113 | 0 | return 0; |
114 | 0 | } |
115 | | |
116 | | static void x509_name_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) |
117 | 0 | { |
118 | 0 | X509_NAME *a; |
119 | |
|
120 | 0 | if (pval == NULL || *pval == NULL) |
121 | 0 | return; |
122 | 0 | a = (X509_NAME *)*pval; |
123 | |
|
124 | 0 | BUF_MEM_free(a->bytes); |
125 | 0 | sk_X509_NAME_ENTRY_pop_free(a->entries, X509_NAME_ENTRY_free); |
126 | 0 | OPENSSL_free(a->canon_enc); |
127 | 0 | OPENSSL_free(a); |
128 | 0 | *pval = NULL; |
129 | 0 | } |
130 | | |
131 | | static void local_sk_X509_NAME_ENTRY_free(STACK_OF(X509_NAME_ENTRY) *ne) |
132 | 0 | { |
133 | 0 | sk_X509_NAME_ENTRY_free(ne); |
134 | 0 | } |
135 | | |
136 | | static void local_sk_X509_NAME_ENTRY_pop_free(STACK_OF(X509_NAME_ENTRY) *ne) |
137 | 0 | { |
138 | 0 | sk_X509_NAME_ENTRY_pop_free(ne, X509_NAME_ENTRY_free); |
139 | 0 | } |
140 | | |
141 | | static int x509_name_ex_d2i(ASN1_VALUE **val, |
142 | | const unsigned char **in, long len, |
143 | | const ASN1_ITEM *it, int tag, int aclass, |
144 | | char opt, ASN1_TLC *ctx) |
145 | 0 | { |
146 | 0 | const unsigned char *p = *in, *q; |
147 | 0 | union { |
148 | 0 | STACK_OF(STACK_OF_X509_NAME_ENTRY) *s; |
149 | 0 | ASN1_VALUE *a; |
150 | 0 | } intname = { |
151 | 0 | NULL |
152 | 0 | }; |
153 | 0 | union { |
154 | 0 | X509_NAME *x; |
155 | 0 | ASN1_VALUE *a; |
156 | 0 | } nm = { |
157 | 0 | NULL |
158 | 0 | }; |
159 | 0 | int i, j, ret; |
160 | 0 | STACK_OF(X509_NAME_ENTRY) *entries; |
161 | 0 | X509_NAME_ENTRY *entry; |
162 | |
|
163 | 0 | if (len > X509_NAME_MAX) |
164 | 0 | len = X509_NAME_MAX; |
165 | 0 | q = p; |
166 | | |
167 | | /* Get internal representation of Name */ |
168 | 0 | ret = ASN1_item_ex_d2i(&intname.a, |
169 | 0 | &p, len, ASN1_ITEM_rptr(X509_NAME_INTERNAL), |
170 | 0 | tag, aclass, opt, ctx); |
171 | |
|
172 | 0 | if (ret <= 0) |
173 | 0 | return ret; |
174 | | |
175 | 0 | if (*val) |
176 | 0 | x509_name_ex_free(val, NULL); |
177 | 0 | if (!x509_name_ex_new(&nm.a, NULL)) |
178 | 0 | goto err; |
179 | | /* We've decoded it: now cache encoding */ |
180 | 0 | if (!BUF_MEM_grow(nm.x->bytes, p - q)) |
181 | 0 | goto err; |
182 | 0 | memcpy(nm.x->bytes->data, q, p - q); |
183 | | |
184 | | /* Convert internal representation to X509_NAME structure */ |
185 | 0 | for (i = 0; i < sk_STACK_OF_X509_NAME_ENTRY_num(intname.s); i++) { |
186 | 0 | entries = sk_STACK_OF_X509_NAME_ENTRY_value(intname.s, i); |
187 | 0 | for (j = 0; j < sk_X509_NAME_ENTRY_num(entries); j++) { |
188 | 0 | entry = sk_X509_NAME_ENTRY_value(entries, j); |
189 | 0 | entry->set = i; |
190 | 0 | if (!sk_X509_NAME_ENTRY_push(nm.x->entries, entry)) |
191 | 0 | goto err; |
192 | 0 | (void)sk_X509_NAME_ENTRY_set(entries, j, NULL); |
193 | 0 | } |
194 | 0 | } |
195 | 0 | ret = x509_name_canon(nm.x); |
196 | 0 | if (!ret) |
197 | 0 | goto err; |
198 | 0 | sk_STACK_OF_X509_NAME_ENTRY_pop_free(intname.s, |
199 | 0 | local_sk_X509_NAME_ENTRY_free); |
200 | 0 | nm.x->modified = 0; |
201 | 0 | *val = nm.a; |
202 | 0 | *in = p; |
203 | 0 | return ret; |
204 | | |
205 | 0 | err: |
206 | 0 | if (nm.x != NULL) |
207 | 0 | X509_NAME_free(nm.x); |
208 | 0 | sk_STACK_OF_X509_NAME_ENTRY_pop_free(intname.s, |
209 | 0 | local_sk_X509_NAME_ENTRY_pop_free); |
210 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_NESTED_ASN1_ERROR); |
211 | 0 | return 0; |
212 | 0 | } |
213 | | |
214 | | static int x509_name_ex_i2d(const ASN1_VALUE **val, unsigned char **out, |
215 | | const ASN1_ITEM *it, int tag, int aclass) |
216 | 0 | { |
217 | 0 | int ret; |
218 | 0 | X509_NAME *a = (X509_NAME *)*val; |
219 | |
|
220 | 0 | if (a->modified) { |
221 | 0 | ret = x509_name_encode(a); |
222 | 0 | if (ret < 0) |
223 | 0 | return ret; |
224 | 0 | ret = x509_name_canon(a); |
225 | 0 | if (!ret) |
226 | 0 | return -1; |
227 | 0 | a->modified = 0; |
228 | 0 | } |
229 | 0 | ret = (int)a->bytes->length; |
230 | 0 | if (out != NULL) { |
231 | 0 | memcpy(*out, a->bytes->data, ret); |
232 | 0 | *out += ret; |
233 | 0 | } |
234 | 0 | return ret; |
235 | 0 | } |
236 | | |
237 | | static int x509_name_encode(X509_NAME *a) |
238 | 0 | { |
239 | 0 | union { |
240 | 0 | STACK_OF(STACK_OF_X509_NAME_ENTRY) *s; |
241 | 0 | const ASN1_VALUE *a; |
242 | 0 | } intname = { |
243 | 0 | NULL |
244 | 0 | }; |
245 | 0 | int len, outlen; |
246 | 0 | unsigned char *p, *start; |
247 | 0 | STACK_OF(X509_NAME_ENTRY) *entries = NULL; |
248 | 0 | X509_NAME_ENTRY *entry; |
249 | 0 | int i, set = -1; |
250 | |
|
251 | 0 | intname.s = sk_STACK_OF_X509_NAME_ENTRY_new_null(); |
252 | 0 | if (!intname.s) |
253 | 0 | goto cerr; |
254 | 0 | for (i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) { |
255 | 0 | entry = sk_X509_NAME_ENTRY_value(a->entries, i); |
256 | 0 | if (entry->set != set) { |
257 | 0 | entries = sk_X509_NAME_ENTRY_new_null(); |
258 | 0 | if (!entries) |
259 | 0 | goto cerr; |
260 | 0 | if (!sk_STACK_OF_X509_NAME_ENTRY_push(intname.s, entries)) { |
261 | 0 | sk_X509_NAME_ENTRY_free(entries); |
262 | 0 | goto cerr; |
263 | 0 | } |
264 | 0 | set = entry->set; |
265 | 0 | } |
266 | 0 | if (!sk_X509_NAME_ENTRY_push(entries, entry)) |
267 | 0 | goto cerr; |
268 | 0 | } |
269 | 0 | len = ASN1_item_ex_i2d(&intname.a, NULL, |
270 | 0 | ASN1_ITEM_rptr(X509_NAME_INTERNAL), -1, -1); |
271 | 0 | if (len < 0) |
272 | 0 | goto err; |
273 | 0 | if (!BUF_MEM_grow(a->bytes, len)) { |
274 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_BUF_LIB); |
275 | 0 | goto err; |
276 | 0 | } |
277 | 0 | p = (unsigned char *)a->bytes->data; |
278 | 0 | start = p; |
279 | 0 | outlen = ASN1_item_ex_i2d(&intname.a, |
280 | 0 | &p, ASN1_ITEM_rptr(X509_NAME_INTERNAL), -1, -1); |
281 | 0 | if (outlen != len || p != start + len) |
282 | 0 | goto err; |
283 | 0 | sk_STACK_OF_X509_NAME_ENTRY_pop_free(intname.s, |
284 | 0 | local_sk_X509_NAME_ENTRY_free); |
285 | 0 | return len; |
286 | 0 | cerr: |
287 | 0 | ERR_raise(ERR_LIB_ASN1, ERR_R_CRYPTO_LIB); |
288 | 0 | err: |
289 | 0 | sk_STACK_OF_X509_NAME_ENTRY_pop_free(intname.s, |
290 | 0 | local_sk_X509_NAME_ENTRY_free); |
291 | 0 | return -1; |
292 | 0 | } |
293 | | |
294 | | static int x509_name_ex_print(BIO *out, const ASN1_VALUE **pval, |
295 | | int indent, |
296 | | const char *fname, const ASN1_PCTX *pctx) |
297 | 0 | { |
298 | 0 | if (X509_NAME_print_ex(out, (const X509_NAME *)*pval, |
299 | 0 | indent, pctx->nm_flags) |
300 | 0 | <= 0) |
301 | 0 | return 0; |
302 | 0 | return 2; |
303 | 0 | } |
304 | | |
305 | | /* |
306 | | * This function generates the canonical encoding of the Name structure. In |
307 | | * it all strings are converted to UTF8, leading, trailing and multiple |
308 | | * spaces collapsed, converted to lower case and the leading SEQUENCE header |
309 | | * removed. In future we could also normalize the UTF8 too. By doing this |
310 | | * comparison of Name structures can be rapidly performed by just using |
311 | | * memcmp() of the canonical encoding. By omitting the leading SEQUENCE name |
312 | | * constraints of type dirName can also be checked with a simple memcmp(). |
313 | | * NOTE: For empty X509_NAME (NULL-DN), canon_enclen == 0 && canon_enc == NULL |
314 | | */ |
315 | | |
316 | | static int x509_name_canon(X509_NAME *a) |
317 | 0 | { |
318 | 0 | unsigned char *buf = NULL, *p; |
319 | 0 | STACK_OF(STACK_OF_X509_NAME_ENTRY) *intname; |
320 | 0 | STACK_OF(X509_NAME_ENTRY) *entries = NULL; |
321 | 0 | X509_NAME_ENTRY *entry, *tmpentry = NULL; |
322 | 0 | int i, set = -1, ret = 0, len, outlen; |
323 | |
|
324 | 0 | OPENSSL_free(a->canon_enc); |
325 | 0 | a->canon_enc = NULL; |
326 | 0 | a->canon_enclen = 0; |
327 | | /* Special case: empty X509_NAME => null encoding */ |
328 | 0 | if (sk_X509_NAME_ENTRY_num(a->entries) == 0) { |
329 | 0 | a->canon_enclen = 0; |
330 | 0 | return 1; |
331 | 0 | } |
332 | 0 | intname = sk_STACK_OF_X509_NAME_ENTRY_new_null(); |
333 | 0 | if (intname == NULL) { |
334 | 0 | ERR_raise(ERR_LIB_X509, ERR_R_CRYPTO_LIB); |
335 | 0 | goto err; |
336 | 0 | } |
337 | 0 | for (i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) { |
338 | 0 | entry = sk_X509_NAME_ENTRY_value(a->entries, i); |
339 | 0 | if (entry->set != set) { |
340 | 0 | entries = sk_X509_NAME_ENTRY_new_null(); |
341 | 0 | if (entries == NULL) |
342 | 0 | goto err; |
343 | 0 | if (!sk_STACK_OF_X509_NAME_ENTRY_push(intname, entries)) { |
344 | 0 | sk_X509_NAME_ENTRY_free(entries); |
345 | 0 | ERR_raise(ERR_LIB_X509, ERR_R_CRYPTO_LIB); |
346 | 0 | goto err; |
347 | 0 | } |
348 | 0 | set = entry->set; |
349 | 0 | } |
350 | 0 | tmpentry = X509_NAME_ENTRY_new(); |
351 | 0 | if (tmpentry == NULL) { |
352 | 0 | ERR_raise(ERR_LIB_X509, ERR_R_ASN1_LIB); |
353 | 0 | goto err; |
354 | 0 | } |
355 | 0 | tmpentry->object = OBJ_dup(entry->object); |
356 | 0 | if (tmpentry->object == NULL) { |
357 | 0 | ERR_raise(ERR_LIB_X509, ERR_R_OBJ_LIB); |
358 | 0 | goto err; |
359 | 0 | } |
360 | 0 | if (!asn1_string_canon(tmpentry->value, entry->value)) |
361 | 0 | goto err; |
362 | 0 | if (!sk_X509_NAME_ENTRY_push(entries, tmpentry)) { |
363 | 0 | ERR_raise(ERR_LIB_X509, ERR_R_CRYPTO_LIB); |
364 | 0 | goto err; |
365 | 0 | } |
366 | 0 | tmpentry = NULL; |
367 | 0 | } |
368 | | |
369 | | /* Finally generate encoding */ |
370 | 0 | len = i2d_name_canon(intname, NULL); |
371 | 0 | if (len < 0) |
372 | 0 | goto err; |
373 | | |
374 | 0 | buf = OPENSSL_malloc(len); |
375 | 0 | if (buf == NULL) |
376 | 0 | goto err; |
377 | 0 | p = buf; |
378 | |
|
379 | 0 | outlen = i2d_name_canon(intname, &p); |
380 | 0 | if (outlen != len || p != buf + len) |
381 | 0 | goto err; |
382 | | |
383 | 0 | a->canon_enc = buf; |
384 | 0 | a->canon_enclen = len; |
385 | 0 | buf = NULL; |
386 | 0 | ret = 1; |
387 | |
|
388 | 0 | err: |
389 | 0 | OPENSSL_free(buf); |
390 | 0 | X509_NAME_ENTRY_free(tmpentry); |
391 | 0 | sk_STACK_OF_X509_NAME_ENTRY_pop_free(intname, |
392 | 0 | local_sk_X509_NAME_ENTRY_pop_free); |
393 | 0 | return ret; |
394 | 0 | } |
395 | | |
396 | | /* Bitmap of all the types of string that will be canonicalized. */ |
397 | | |
398 | | #define ASN1_MASK_CANON \ |
399 | 0 | (B_ASN1_UTF8STRING | B_ASN1_BMPSTRING | B_ASN1_UNIVERSALSTRING \ |
400 | 0 | | B_ASN1_PRINTABLESTRING | B_ASN1_T61STRING | B_ASN1_IA5STRING \ |
401 | 0 | | B_ASN1_VISIBLESTRING) |
402 | | |
403 | | static int asn1_string_canon(ASN1_STRING *out, const ASN1_STRING *in) |
404 | 0 | { |
405 | 0 | unsigned char *to, *from; |
406 | 0 | int len, i; |
407 | | |
408 | | /* If type not in bitmask just copy string across */ |
409 | 0 | if (!(ASN1_tag2bit(in->type) & ASN1_MASK_CANON)) { |
410 | 0 | if (!ASN1_STRING_copy(out, in)) |
411 | 0 | return 0; |
412 | 0 | return 1; |
413 | 0 | } |
414 | | |
415 | 0 | out->type = V_ASN1_UTF8STRING; |
416 | 0 | out->length = ASN1_STRING_to_UTF8(&out->data, in); |
417 | 0 | if (out->length < 0) |
418 | 0 | return 0; |
419 | 0 | if (out->length == 0) |
420 | 0 | return 1; |
421 | | |
422 | 0 | to = out->data; |
423 | 0 | from = to; |
424 | |
|
425 | 0 | len = out->length; |
426 | | |
427 | | /* |
428 | | * Convert string in place to canonical form. Ultimately we may need to |
429 | | * handle a wider range of characters but for now ignore anything with |
430 | | * MSB set and rely on the ossl_isspace() to fail on bad characters without |
431 | | * needing isascii or range checks as well. |
432 | | */ |
433 | | |
434 | | /* Ignore leading spaces */ |
435 | 0 | while (len > 0 && ossl_isspace(*from)) { |
436 | 0 | from++; |
437 | 0 | len--; |
438 | 0 | } |
439 | |
|
440 | 0 | to = from + len; |
441 | | |
442 | | /* Ignore trailing spaces */ |
443 | 0 | while (len > 0 && ossl_isspace(to[-1])) { |
444 | 0 | to--; |
445 | 0 | len--; |
446 | 0 | } |
447 | |
|
448 | 0 | to = out->data; |
449 | |
|
450 | 0 | i = 0; |
451 | 0 | while (i < len) { |
452 | | /* If not ASCII set just copy across */ |
453 | 0 | if (!ossl_isascii(*from)) { |
454 | 0 | *to++ = *from++; |
455 | 0 | i++; |
456 | 0 | } |
457 | | /* Collapse multiple spaces */ |
458 | 0 | else if (ossl_isspace(*from)) { |
459 | | /* Copy one space across */ |
460 | 0 | *to++ = ' '; |
461 | | /* |
462 | | * Ignore subsequent spaces. Note: don't need to check len here |
463 | | * because we know the last character is a non-space so we can't |
464 | | * overflow. |
465 | | */ |
466 | 0 | do { |
467 | 0 | from++; |
468 | 0 | i++; |
469 | 0 | } while (ossl_isspace(*from)); |
470 | 0 | } else { |
471 | 0 | *to++ = ossl_tolower(*from); |
472 | 0 | from++; |
473 | 0 | i++; |
474 | 0 | } |
475 | 0 | } |
476 | |
|
477 | 0 | out->length = (int)(to - out->data); |
478 | |
|
479 | 0 | return 1; |
480 | 0 | } |
481 | | |
482 | | static int i2d_name_canon(const STACK_OF(STACK_OF_X509_NAME_ENTRY) *_intname, |
483 | | unsigned char **in) |
484 | 0 | { |
485 | 0 | int i, len, ltmp; |
486 | 0 | const ASN1_VALUE *v; |
487 | 0 | STACK_OF(ASN1_VALUE) *intname = (STACK_OF(ASN1_VALUE) *)_intname; |
488 | |
|
489 | 0 | len = 0; |
490 | 0 | for (i = 0; i < sk_ASN1_VALUE_num(intname); i++) { |
491 | 0 | v = sk_ASN1_VALUE_value(intname, i); |
492 | 0 | ltmp = ASN1_item_ex_i2d(&v, in, |
493 | 0 | ASN1_ITEM_rptr(X509_NAME_ENTRIES), -1, -1); |
494 | 0 | if (ltmp < 0 || len > INT_MAX - ltmp) |
495 | 0 | return -1; |
496 | 0 | len += ltmp; |
497 | 0 | } |
498 | 0 | return len; |
499 | 0 | } |
500 | | |
501 | | int X509_NAME_set(X509_NAME **xn, const X509_NAME *name) |
502 | 0 | { |
503 | 0 | X509_NAME *name_copy; |
504 | |
|
505 | 0 | if (*xn == name) |
506 | 0 | return *xn != NULL; |
507 | 0 | if ((name_copy = X509_NAME_dup(name)) == NULL) |
508 | 0 | return 0; |
509 | 0 | X509_NAME_free(*xn); |
510 | 0 | *xn = name_copy; |
511 | 0 | return 1; |
512 | 0 | } |
513 | | |
514 | | int X509_NAME_print(BIO *bp, const X509_NAME *name, int obase) |
515 | 0 | { |
516 | 0 | char *s, *c, *b; |
517 | 0 | int i; |
518 | |
|
519 | 0 | b = X509_NAME_oneline(name, NULL, 0); |
520 | 0 | if (b == NULL) |
521 | 0 | return 0; |
522 | 0 | if (*b == '\0') { |
523 | 0 | OPENSSL_free(b); |
524 | 0 | return 1; |
525 | 0 | } |
526 | 0 | s = b + 1; /* skip the first slash */ |
527 | |
|
528 | 0 | c = s; |
529 | 0 | for (;;) { |
530 | 0 | if (((*s == '/') && (ossl_isupper(s[1]) && ((s[2] == '=') || (ossl_isupper(s[2]) && (s[3] == '='))))) || (*s == '\0')) { |
531 | 0 | i = (int)(s - c); |
532 | 0 | if (BIO_write(bp, c, i) != i) |
533 | 0 | goto err; |
534 | 0 | c = s + 1; /* skip following slash */ |
535 | 0 | if (*s != '\0') { |
536 | 0 | if (BIO_write(bp, ", ", 2) != 2) |
537 | 0 | goto err; |
538 | 0 | } |
539 | 0 | } |
540 | 0 | if (*s == '\0') |
541 | 0 | break; |
542 | 0 | s++; |
543 | 0 | } |
544 | | |
545 | 0 | OPENSSL_free(b); |
546 | 0 | return 1; |
547 | 0 | err: |
548 | 0 | ERR_raise(ERR_LIB_X509, ERR_R_BUF_LIB); |
549 | 0 | OPENSSL_free(b); |
550 | 0 | return 0; |
551 | 0 | } |
552 | | |
553 | | int X509_NAME_get0_der(const X509_NAME *nm, const unsigned char **pder, |
554 | | size_t *pderlen) |
555 | 0 | { |
556 | | /* Make sure encoding is valid */ |
557 | 0 | if (i2d_X509_NAME(nm, NULL) <= 0) |
558 | 0 | return 0; |
559 | 0 | if (pder != NULL) |
560 | 0 | *pder = (unsigned char *)nm->bytes->data; |
561 | 0 | if (pderlen != NULL) |
562 | 0 | *pderlen = nm->bytes->length; |
563 | 0 | return 1; |
564 | 0 | } |