Identify and move common internal libcrypto header files
[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 "internal/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 = OPENSSL_malloc(sizeof(*ret));
137
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     OPENSSL_free(a->canon_enc);
170     OPENSSL_free(a);
171     *pval = NULL;
172 }
173
174 static int x509_name_ex_d2i(ASN1_VALUE **val,
175                             const unsigned char **in, long len,
176                             const ASN1_ITEM *it, int tag, int aclass,
177                             char opt, ASN1_TLC *ctx)
178 {
179     const unsigned char *p = *in, *q;
180     union {
181         STACK_OF(STACK_OF_X509_NAME_ENTRY) *s;
182         ASN1_VALUE *a;
183     } intname = {
184         NULL
185     };
186     union {
187         X509_NAME *x;
188         ASN1_VALUE *a;
189     } nm = {
190         NULL
191     };
192     int i, j, ret;
193     STACK_OF(X509_NAME_ENTRY) *entries;
194     X509_NAME_ENTRY *entry;
195     q = p;
196
197     /* Get internal representation of Name */
198     ret = ASN1_item_ex_d2i(&intname.a,
199                            &p, len, ASN1_ITEM_rptr(X509_NAME_INTERNAL),
200                            tag, aclass, opt, ctx);
201
202     if (ret <= 0)
203         return ret;
204
205     if (*val)
206         x509_name_ex_free(val, NULL);
207     if (!x509_name_ex_new(&nm.a, NULL))
208         goto err;
209     /* We've decoded it: now cache encoding */
210     if (!BUF_MEM_grow(nm.x->bytes, p - q))
211         goto err;
212     memcpy(nm.x->bytes->data, q, p - q);
213
214     /* Convert internal representation to X509_NAME structure */
215     for (i = 0; i < sk_STACK_OF_X509_NAME_ENTRY_num(intname.s); i++) {
216         entries = sk_STACK_OF_X509_NAME_ENTRY_value(intname.s, i);
217         for (j = 0; j < sk_X509_NAME_ENTRY_num(entries); j++) {
218             entry = sk_X509_NAME_ENTRY_value(entries, j);
219             entry->set = i;
220             if (!sk_X509_NAME_ENTRY_push(nm.x->entries, entry))
221                 goto err;
222         }
223         sk_X509_NAME_ENTRY_free(entries);
224     }
225     sk_STACK_OF_X509_NAME_ENTRY_free(intname.s);
226     ret = x509_name_canon(nm.x);
227     if (!ret)
228         goto err;
229     nm.x->modified = 0;
230     *val = nm.a;
231     *in = p;
232     return ret;
233  err:
234     X509_NAME_free(nm.x);
235     ASN1err(ASN1_F_X509_NAME_EX_D2I, ERR_R_NESTED_ASN1_ERROR);
236     return 0;
237 }
238
239 static int x509_name_ex_i2d(ASN1_VALUE **val, unsigned char **out,
240                             const ASN1_ITEM *it, int tag, int aclass)
241 {
242     int ret;
243     X509_NAME *a = (X509_NAME *)*val;
244     if (a->modified) {
245         ret = x509_name_encode(a);
246         if (ret < 0)
247             return ret;
248         ret = x509_name_canon(a);
249         if (ret < 0)
250             return ret;
251     }
252     ret = a->bytes->length;
253     if (out != NULL) {
254         memcpy(*out, a->bytes->data, ret);
255         *out += ret;
256     }
257     return ret;
258 }
259
260 static void local_sk_X509_NAME_ENTRY_free(STACK_OF(X509_NAME_ENTRY) *ne)
261 {
262     sk_X509_NAME_ENTRY_free(ne);
263 }
264
265 static void local_sk_X509_NAME_ENTRY_pop_free(STACK_OF(X509_NAME_ENTRY) *ne)
266 {
267     sk_X509_NAME_ENTRY_pop_free(ne, X509_NAME_ENTRY_free);
268 }
269
270 static int x509_name_encode(X509_NAME *a)
271 {
272     union {
273         STACK_OF(STACK_OF_X509_NAME_ENTRY) *s;
274         ASN1_VALUE *a;
275     } intname = {
276         NULL
277     };
278     int len;
279     unsigned char *p;
280     STACK_OF(X509_NAME_ENTRY) *entries = NULL;
281     X509_NAME_ENTRY *entry;
282     int i, set = -1;
283     intname.s = sk_STACK_OF_X509_NAME_ENTRY_new_null();
284     if (!intname.s)
285         goto memerr;
286     for (i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) {
287         entry = sk_X509_NAME_ENTRY_value(a->entries, i);
288         if (entry->set != set) {
289             entries = sk_X509_NAME_ENTRY_new_null();
290             if (!entries)
291                 goto memerr;
292             if (!sk_STACK_OF_X509_NAME_ENTRY_push(intname.s, entries))
293                 goto memerr;
294             set = entry->set;
295         }
296         if (!sk_X509_NAME_ENTRY_push(entries, entry))
297             goto memerr;
298     }
299     len = ASN1_item_ex_i2d(&intname.a, NULL,
300                            ASN1_ITEM_rptr(X509_NAME_INTERNAL), -1, -1);
301     if (!BUF_MEM_grow(a->bytes, len))
302         goto memerr;
303     p = (unsigned char *)a->bytes->data;
304     ASN1_item_ex_i2d(&intname.a,
305                      &p, ASN1_ITEM_rptr(X509_NAME_INTERNAL), -1, -1);
306     sk_STACK_OF_X509_NAME_ENTRY_pop_free(intname.s,
307                                          local_sk_X509_NAME_ENTRY_free);
308     a->modified = 0;
309     return len;
310  memerr:
311     sk_STACK_OF_X509_NAME_ENTRY_pop_free(intname.s,
312                                          local_sk_X509_NAME_ENTRY_free);
313     ASN1err(ASN1_F_X509_NAME_ENCODE, ERR_R_MALLOC_FAILURE);
314     return -1;
315 }
316
317 static int x509_name_ex_print(BIO *out, ASN1_VALUE **pval,
318                               int indent,
319                               const char *fname, const ASN1_PCTX *pctx)
320 {
321     if (X509_NAME_print_ex(out, (X509_NAME *)*pval,
322                            indent, pctx->nm_flags) <= 0)
323         return 0;
324     return 2;
325 }
326
327 /*
328  * This function generates the canonical encoding of the Name structure. In
329  * it all strings are converted to UTF8, leading, trailing and multiple
330  * spaces collapsed, converted to lower case and the leading SEQUENCE header
331  * removed. In future we could also normalize the UTF8 too. By doing this
332  * comparison of Name structures can be rapidly perfomed by just using
333  * memcmp() of the canonical encoding. By omitting the leading SEQUENCE name
334  * constraints of type dirName can also be checked with a simple memcmp().
335  */
336
337 static int x509_name_canon(X509_NAME *a)
338 {
339     unsigned char *p;
340     STACK_OF(STACK_OF_X509_NAME_ENTRY) *intname = NULL;
341     STACK_OF(X509_NAME_ENTRY) *entries = NULL;
342     X509_NAME_ENTRY *entry, *tmpentry = NULL;
343     int i, set = -1, ret = 0;
344
345     OPENSSL_free(a->canon_enc);
346     a->canon_enc = NULL;
347     /* Special case: empty X509_NAME => null encoding */
348     if (sk_X509_NAME_ENTRY_num(a->entries) == 0) {
349         a->canon_enclen = 0;
350         return 1;
351     }
352     intname = sk_STACK_OF_X509_NAME_ENTRY_new_null();
353     if (!intname)
354         goto err;
355     for (i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) {
356         entry = sk_X509_NAME_ENTRY_value(a->entries, i);
357         if (entry->set != set) {
358             entries = sk_X509_NAME_ENTRY_new_null();
359             if (!entries)
360                 goto err;
361             if (!sk_STACK_OF_X509_NAME_ENTRY_push(intname, entries))
362                 goto err;
363             set = entry->set;
364         }
365         tmpentry = X509_NAME_ENTRY_new();
366         if (!tmpentry)
367             goto err;
368         tmpentry->object = OBJ_dup(entry->object);
369         if (!asn1_string_canon(tmpentry->value, entry->value))
370             goto err;
371         if (!sk_X509_NAME_ENTRY_push(entries, tmpentry))
372             goto err;
373         tmpentry = NULL;
374     }
375
376     /* Finally generate encoding */
377
378     a->canon_enclen = i2d_name_canon(intname, NULL);
379
380     p = OPENSSL_malloc(a->canon_enclen);
381
382     if (!p)
383         goto err;
384
385     a->canon_enc = p;
386
387     i2d_name_canon(intname, &p);
388
389     ret = 1;
390
391  err:
392
393     X509_NAME_ENTRY_free(tmpentry);
394     sk_STACK_OF_X509_NAME_ENTRY_pop_free(intname,
395                                          local_sk_X509_NAME_ENTRY_pop_free);
396     return ret;
397 }
398
399 /* Bitmap of all the types of string that will be canonicalized. */
400
401 #define ASN1_MASK_CANON \
402         (B_ASN1_UTF8STRING | B_ASN1_BMPSTRING | B_ASN1_UNIVERSALSTRING \
403         | B_ASN1_PRINTABLESTRING | B_ASN1_T61STRING | B_ASN1_IA5STRING \
404         | B_ASN1_VISIBLESTRING)
405
406 static int asn1_string_canon(ASN1_STRING *out, ASN1_STRING *in)
407 {
408     unsigned char *to, *from;
409     int len, i;
410
411     /* If type not in bitmask just copy string across */
412     if (!(ASN1_tag2bit(in->type) & ASN1_MASK_CANON)) {
413         if (!ASN1_STRING_copy(out, in))
414             return 0;
415         return 1;
416     }
417
418     out->type = V_ASN1_UTF8STRING;
419     out->length = ASN1_STRING_to_UTF8(&out->data, in);
420     if (out->length == -1)
421         return 0;
422
423     to = out->data;
424     from = to;
425
426     len = out->length;
427
428     /*
429      * Convert string in place to canonical form. Ultimately we may need to
430      * handle a wider range of characters but for now ignore anything with
431      * MSB set and rely on the isspace() and tolower() functions.
432      */
433
434     /* Ignore leading spaces */
435     while ((len > 0) && !(*from & 0x80) && isspace(*from)) {
436         from++;
437         len--;
438     }
439
440     to = from + len - 1;
441
442     /* Ignore trailing spaces */
443     while ((len > 0) && !(*to & 0x80) && isspace(*to)) {
444         to--;
445         len--;
446     }
447
448     to = out->data;
449
450     i = 0;
451     while (i < len) {
452         /* If MSB set just copy across */
453         if (*from & 0x80) {
454             *to++ = *from++;
455             i++;
456         }
457         /* Collapse multiple spaces */
458         else if (isspace(*from)) {
459             /* Copy one space across */
460             *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             do {
467                 from++;
468                 i++;
469             }
470             while (!(*from & 0x80) && isspace(*from));
471         } else {
472             *to++ = tolower(*from);
473             from++;
474             i++;
475         }
476     }
477
478     out->length = to - out->data;
479
480     return 1;
481
482 }
483
484 static int i2d_name_canon(STACK_OF(STACK_OF_X509_NAME_ENTRY) * _intname,
485                           unsigned char **in)
486 {
487     int i, len, ltmp;
488     ASN1_VALUE *v;
489     STACK_OF(ASN1_VALUE) *intname = (STACK_OF(ASN1_VALUE) *)_intname;
490
491     len = 0;
492     for (i = 0; i < sk_ASN1_VALUE_num(intname); i++) {
493         v = sk_ASN1_VALUE_value(intname, i);
494         ltmp = ASN1_item_ex_i2d(&v, in,
495                                 ASN1_ITEM_rptr(X509_NAME_ENTRIES), -1, -1);
496         if (ltmp < 0)
497             return ltmp;
498         len += ltmp;
499     }
500     return len;
501 }
502
503 int X509_NAME_set(X509_NAME **xn, X509_NAME *name)
504 {
505     X509_NAME *in;
506
507     if (!xn || !name)
508         return (0);
509
510     if (*xn != name) {
511         in = X509_NAME_dup(name);
512         if (in != NULL) {
513             X509_NAME_free(*xn);
514             *xn = in;
515         }
516     }
517     return (*xn != NULL);
518 }