]> git.ipfire.org Git - thirdparty/openssl.git/blob - crypto/x509/x_name.c
cdc4c973b3ce964277c49b18eb2b3f275732555e
[thirdparty/openssl.git] / crypto / x509 / x_name.c
1 /* crypto/asn1/x_name.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *
9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 *
16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package.
22 *
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
25 * are met:
26 * 1. Redistributions of source code must retain the copyright
27 * notice, this list of conditions and the following disclaimer.
28 * 2. Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in the
30 * documentation and/or other materials provided with the distribution.
31 * 3. All advertising materials mentioning features or use of this software
32 * must display the following acknowledgement:
33 * "This product includes cryptographic software written by
34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 *
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
52 *
53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence
56 * [including the GNU Public Licence.]
57 */
58
59 #include <stdio.h>
60 #include <ctype.h>
61 #include "cryptlib.h"
62 #include <openssl/asn1t.h>
63 #include <openssl/x509.h>
64 #include "internal/x509_int.h"
65 #include "internal/asn1_int.h"
66
67 typedef STACK_OF(X509_NAME_ENTRY) STACK_OF_X509_NAME_ENTRY;
68 DECLARE_STACK_OF(STACK_OF_X509_NAME_ENTRY)
69
70 static int x509_name_ex_d2i(ASN1_VALUE **val,
71 const unsigned char **in, long len,
72 const ASN1_ITEM *it,
73 int tag, int aclass, char opt, ASN1_TLC *ctx);
74
75 static int x509_name_ex_i2d(ASN1_VALUE **val, unsigned char **out,
76 const ASN1_ITEM *it, int tag, int aclass);
77 static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it);
78 static void x509_name_ex_free(ASN1_VALUE **val, const ASN1_ITEM *it);
79
80 static int x509_name_encode(X509_NAME *a);
81 static int x509_name_canon(X509_NAME *a);
82 static int asn1_string_canon(ASN1_STRING *out, ASN1_STRING *in);
83 static int i2d_name_canon(STACK_OF(STACK_OF_X509_NAME_ENTRY) * intname,
84 unsigned char **in);
85
86 static int x509_name_ex_print(BIO *out, ASN1_VALUE **pval,
87 int indent,
88 const char *fname, const ASN1_PCTX *pctx);
89
90 ASN1_SEQUENCE(X509_NAME_ENTRY) = {
91 ASN1_SIMPLE(X509_NAME_ENTRY, object, ASN1_OBJECT),
92 ASN1_SIMPLE(X509_NAME_ENTRY, value, ASN1_PRINTABLE)
93 } ASN1_SEQUENCE_END(X509_NAME_ENTRY)
94
95 IMPLEMENT_ASN1_FUNCTIONS(X509_NAME_ENTRY)
96 IMPLEMENT_ASN1_DUP_FUNCTION(X509_NAME_ENTRY)
97
98 /*
99 * For the "Name" type we need a SEQUENCE OF { SET OF X509_NAME_ENTRY } so
100 * declare two template wrappers for this
101 */
102
103 ASN1_ITEM_TEMPLATE(X509_NAME_ENTRIES) =
104 ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SET_OF, 0, RDNS, X509_NAME_ENTRY)
105 ASN1_ITEM_TEMPLATE_END(X509_NAME_ENTRIES)
106
107 ASN1_ITEM_TEMPLATE(X509_NAME_INTERNAL) =
108 ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, Name, X509_NAME_ENTRIES)
109 ASN1_ITEM_TEMPLATE_END(X509_NAME_INTERNAL)
110
111 /*
112 * Normally that's where it would end: we'd have two nested STACK structures
113 * representing the ASN1. Unfortunately X509_NAME uses a completely different
114 * form and caches encodings so we have to process the internal form and
115 * convert to the external form.
116 */
117
118 const ASN1_EXTERN_FUNCS x509_name_ff = {
119 NULL,
120 x509_name_ex_new,
121 x509_name_ex_free,
122 0, /* Default clear behaviour is OK */
123 x509_name_ex_d2i,
124 x509_name_ex_i2d,
125 x509_name_ex_print
126 };
127
128 IMPLEMENT_EXTERN_ASN1(X509_NAME, V_ASN1_SEQUENCE, x509_name_ff)
129
130 IMPLEMENT_ASN1_FUNCTIONS(X509_NAME)
131
132 IMPLEMENT_ASN1_DUP_FUNCTION(X509_NAME)
133
134 static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it)
135 {
136 X509_NAME *ret = NULL;
137 ret = OPENSSL_malloc(sizeof(X509_NAME));
138 if (!ret)
139 goto memerr;
140 if ((ret->entries = sk_X509_NAME_ENTRY_new_null()) == NULL)
141 goto memerr;
142 if ((ret->bytes = BUF_MEM_new()) == NULL)
143 goto memerr;
144 ret->canon_enc = NULL;
145 ret->canon_enclen = 0;
146 ret->modified = 1;
147 *val = (ASN1_VALUE *)ret;
148 return 1;
149
150 memerr:
151 ASN1err(ASN1_F_X509_NAME_EX_NEW, ERR_R_MALLOC_FAILURE);
152 if (ret) {
153 sk_X509_NAME_ENTRY_free(ret->entries);
154 OPENSSL_free(ret);
155 }
156 return 0;
157 }
158
159 static void x509_name_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
160 {
161 X509_NAME *a;
162
163 if (!pval || !*pval)
164 return;
165 a = (X509_NAME *)*pval;
166
167 BUF_MEM_free(a->bytes);
168 sk_X509_NAME_ENTRY_pop_free(a->entries, X509_NAME_ENTRY_free);
169 if (a->canon_enc)
170 OPENSSL_free(a->canon_enc);
171 OPENSSL_free(a);
172 *pval = NULL;
173 }
174
175 static int x509_name_ex_d2i(ASN1_VALUE **val,
176 const unsigned char **in, long len,
177 const ASN1_ITEM *it, int tag, int aclass,
178 char opt, ASN1_TLC *ctx)
179 {
180 const unsigned char *p = *in, *q;
181 union {
182 STACK_OF(STACK_OF_X509_NAME_ENTRY) *s;
183 ASN1_VALUE *a;
184 } intname = {
185 NULL
186 };
187 union {
188 X509_NAME *x;
189 ASN1_VALUE *a;
190 } nm = {
191 NULL
192 };
193 int i, j, ret;
194 STACK_OF(X509_NAME_ENTRY) *entries;
195 X509_NAME_ENTRY *entry;
196 q = p;
197
198 /* Get internal representation of Name */
199 ret = ASN1_item_ex_d2i(&intname.a,
200 &p, len, ASN1_ITEM_rptr(X509_NAME_INTERNAL),
201 tag, aclass, opt, ctx);
202
203 if (ret <= 0)
204 return ret;
205
206 if (*val)
207 x509_name_ex_free(val, NULL);
208 if (!x509_name_ex_new(&nm.a, NULL))
209 goto err;
210 /* We've decoded it: now cache encoding */
211 if (!BUF_MEM_grow(nm.x->bytes, p - q))
212 goto err;
213 memcpy(nm.x->bytes->data, q, p - q);
214
215 /* Convert internal representation to X509_NAME structure */
216 for (i = 0; i < sk_STACK_OF_X509_NAME_ENTRY_num(intname.s); i++) {
217 entries = sk_STACK_OF_X509_NAME_ENTRY_value(intname.s, i);
218 for (j = 0; j < sk_X509_NAME_ENTRY_num(entries); j++) {
219 entry = sk_X509_NAME_ENTRY_value(entries, j);
220 entry->set = i;
221 if (!sk_X509_NAME_ENTRY_push(nm.x->entries, entry))
222 goto err;
223 }
224 sk_X509_NAME_ENTRY_free(entries);
225 }
226 sk_STACK_OF_X509_NAME_ENTRY_free(intname.s);
227 ret = x509_name_canon(nm.x);
228 if (!ret)
229 goto err;
230 nm.x->modified = 0;
231 *val = nm.a;
232 *in = p;
233 return ret;
234 err:
235 X509_NAME_free(nm.x);
236 ASN1err(ASN1_F_X509_NAME_EX_D2I, ERR_R_NESTED_ASN1_ERROR);
237 return 0;
238 }
239
240 static int x509_name_ex_i2d(ASN1_VALUE **val, unsigned char **out,
241 const ASN1_ITEM *it, int tag, int aclass)
242 {
243 int ret;
244 X509_NAME *a = (X509_NAME *)*val;
245 if (a->modified) {
246 ret = x509_name_encode(a);
247 if (ret < 0)
248 return ret;
249 ret = x509_name_canon(a);
250 if (ret < 0)
251 return ret;
252 }
253 ret = a->bytes->length;
254 if (out != NULL) {
255 memcpy(*out, a->bytes->data, ret);
256 *out += ret;
257 }
258 return ret;
259 }
260
261 static void local_sk_X509_NAME_ENTRY_free(STACK_OF(X509_NAME_ENTRY) *ne)
262 {
263 sk_X509_NAME_ENTRY_free(ne);
264 }
265
266 static void local_sk_X509_NAME_ENTRY_pop_free(STACK_OF(X509_NAME_ENTRY) *ne)
267 {
268 sk_X509_NAME_ENTRY_pop_free(ne, X509_NAME_ENTRY_free);
269 }
270
271 static int x509_name_encode(X509_NAME *a)
272 {
273 union {
274 STACK_OF(STACK_OF_X509_NAME_ENTRY) *s;
275 ASN1_VALUE *a;
276 } intname = {
277 NULL
278 };
279 int len;
280 unsigned char *p;
281 STACK_OF(X509_NAME_ENTRY) *entries = NULL;
282 X509_NAME_ENTRY *entry;
283 int i, set = -1;
284 intname.s = sk_STACK_OF_X509_NAME_ENTRY_new_null();
285 if (!intname.s)
286 goto memerr;
287 for (i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) {
288 entry = sk_X509_NAME_ENTRY_value(a->entries, i);
289 if (entry->set != set) {
290 entries = sk_X509_NAME_ENTRY_new_null();
291 if (!entries)
292 goto memerr;
293 if (!sk_STACK_OF_X509_NAME_ENTRY_push(intname.s, entries))
294 goto memerr;
295 set = entry->set;
296 }
297 if (!sk_X509_NAME_ENTRY_push(entries, entry))
298 goto memerr;
299 }
300 len = ASN1_item_ex_i2d(&intname.a, NULL,
301 ASN1_ITEM_rptr(X509_NAME_INTERNAL), -1, -1);
302 if (!BUF_MEM_grow(a->bytes, len))
303 goto memerr;
304 p = (unsigned char *)a->bytes->data;
305 ASN1_item_ex_i2d(&intname.a,
306 &p, ASN1_ITEM_rptr(X509_NAME_INTERNAL), -1, -1);
307 sk_STACK_OF_X509_NAME_ENTRY_pop_free(intname.s,
308 local_sk_X509_NAME_ENTRY_free);
309 a->modified = 0;
310 return len;
311 memerr:
312 sk_STACK_OF_X509_NAME_ENTRY_pop_free(intname.s,
313 local_sk_X509_NAME_ENTRY_free);
314 ASN1err(ASN1_F_X509_NAME_ENCODE, ERR_R_MALLOC_FAILURE);
315 return -1;
316 }
317
318 static int x509_name_ex_print(BIO *out, ASN1_VALUE **pval,
319 int indent,
320 const char *fname, const ASN1_PCTX *pctx)
321 {
322 if (X509_NAME_print_ex(out, (X509_NAME *)*pval,
323 indent, pctx->nm_flags) <= 0)
324 return 0;
325 return 2;
326 }
327
328 /*
329 * This function generates the canonical encoding of the Name structure. In
330 * it all strings are converted to UTF8, leading, trailing and multiple
331 * spaces collapsed, converted to lower case and the leading SEQUENCE header
332 * removed. In future we could also normalize the UTF8 too. By doing this
333 * comparison of Name structures can be rapidly perfomed by just using
334 * memcmp() of the canonical encoding. By omitting the leading SEQUENCE name
335 * constraints of type dirName can also be checked with a simple memcmp().
336 */
337
338 static int x509_name_canon(X509_NAME *a)
339 {
340 unsigned char *p;
341 STACK_OF(STACK_OF_X509_NAME_ENTRY) *intname = NULL;
342 STACK_OF(X509_NAME_ENTRY) *entries = NULL;
343 X509_NAME_ENTRY *entry, *tmpentry = NULL;
344 int i, set = -1, ret = 0;
345
346 if (a->canon_enc) {
347 OPENSSL_free(a->canon_enc);
348 a->canon_enc = NULL;
349 }
350 /* Special case: empty X509_NAME => null encoding */
351 if (sk_X509_NAME_ENTRY_num(a->entries) == 0) {
352 a->canon_enclen = 0;
353 return 1;
354 }
355 intname = sk_STACK_OF_X509_NAME_ENTRY_new_null();
356 if (!intname)
357 goto err;
358 for (i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) {
359 entry = sk_X509_NAME_ENTRY_value(a->entries, i);
360 if (entry->set != set) {
361 entries = sk_X509_NAME_ENTRY_new_null();
362 if (!entries)
363 goto err;
364 if (!sk_STACK_OF_X509_NAME_ENTRY_push(intname, entries))
365 goto err;
366 set = entry->set;
367 }
368 tmpentry = X509_NAME_ENTRY_new();
369 if (!tmpentry)
370 goto err;
371 tmpentry->object = OBJ_dup(entry->object);
372 if (!asn1_string_canon(tmpentry->value, entry->value))
373 goto err;
374 if (!sk_X509_NAME_ENTRY_push(entries, tmpentry))
375 goto err;
376 tmpentry = NULL;
377 }
378
379 /* Finally generate encoding */
380
381 a->canon_enclen = i2d_name_canon(intname, NULL);
382
383 p = OPENSSL_malloc(a->canon_enclen);
384
385 if (!p)
386 goto err;
387
388 a->canon_enc = p;
389
390 i2d_name_canon(intname, &p);
391
392 ret = 1;
393
394 err:
395
396 X509_NAME_ENTRY_free(tmpentry);
397 sk_STACK_OF_X509_NAME_ENTRY_pop_free(intname,
398 local_sk_X509_NAME_ENTRY_pop_free);
399 return ret;
400 }
401
402 /* Bitmap of all the types of string that will be canonicalized. */
403
404 #define ASN1_MASK_CANON \
405 (B_ASN1_UTF8STRING | B_ASN1_BMPSTRING | B_ASN1_UNIVERSALSTRING \
406 | B_ASN1_PRINTABLESTRING | B_ASN1_T61STRING | B_ASN1_IA5STRING \
407 | B_ASN1_VISIBLESTRING)
408
409 static int asn1_string_canon(ASN1_STRING *out, ASN1_STRING *in)
410 {
411 unsigned char *to, *from;
412 int len, i;
413
414 /* If type not in bitmask just copy string across */
415 if (!(ASN1_tag2bit(in->type) & ASN1_MASK_CANON)) {
416 if (!ASN1_STRING_copy(out, in))
417 return 0;
418 return 1;
419 }
420
421 out->type = V_ASN1_UTF8STRING;
422 out->length = ASN1_STRING_to_UTF8(&out->data, in);
423 if (out->length == -1)
424 return 0;
425
426 to = out->data;
427 from = to;
428
429 len = out->length;
430
431 /*
432 * Convert string in place to canonical form. Ultimately we may need to
433 * handle a wider range of characters but for now ignore anything with
434 * MSB set and rely on the isspace() and tolower() functions.
435 */
436
437 /* Ignore leading spaces */
438 while ((len > 0) && !(*from & 0x80) && isspace(*from)) {
439 from++;
440 len--;
441 }
442
443 to = from + len - 1;
444
445 /* Ignore trailing spaces */
446 while ((len > 0) && !(*to & 0x80) && isspace(*to)) {
447 to--;
448 len--;
449 }
450
451 to = out->data;
452
453 i = 0;
454 while (i < len) {
455 /* If MSB set just copy across */
456 if (*from & 0x80) {
457 *to++ = *from++;
458 i++;
459 }
460 /* Collapse multiple spaces */
461 else if (isspace(*from)) {
462 /* Copy one space across */
463 *to++ = ' ';
464 /*
465 * Ignore subsequent spaces. Note: don't need to check len here
466 * because we know the last character is a non-space so we can't
467 * overflow.
468 */
469 do {
470 from++;
471 i++;
472 }
473 while (!(*from & 0x80) && isspace(*from));
474 } else {
475 *to++ = tolower(*from);
476 from++;
477 i++;
478 }
479 }
480
481 out->length = to - out->data;
482
483 return 1;
484
485 }
486
487 static int i2d_name_canon(STACK_OF(STACK_OF_X509_NAME_ENTRY) * _intname,
488 unsigned char **in)
489 {
490 int i, len, ltmp;
491 ASN1_VALUE *v;
492 STACK_OF(ASN1_VALUE) *intname = (STACK_OF(ASN1_VALUE) *)_intname;
493
494 len = 0;
495 for (i = 0; i < sk_ASN1_VALUE_num(intname); i++) {
496 v = sk_ASN1_VALUE_value(intname, i);
497 ltmp = ASN1_item_ex_i2d(&v, in,
498 ASN1_ITEM_rptr(X509_NAME_ENTRIES), -1, -1);
499 if (ltmp < 0)
500 return ltmp;
501 len += ltmp;
502 }
503 return len;
504 }
505
506 int X509_NAME_set(X509_NAME **xn, X509_NAME *name)
507 {
508 X509_NAME *in;
509
510 if (!xn || !name)
511 return (0);
512
513 if (*xn != name) {
514 in = X509_NAME_dup(name);
515 if (in != NULL) {
516 X509_NAME_free(*xn);
517 *xn = in;
518 }
519 }
520 return (*xn != NULL);
521 }