Update contrib.
1 /* crypto/objects/obj_dat.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
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.
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).
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.
23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions
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)"
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
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.]
59 © Portions copyright (c) 2006 Nokia Corporation. All rights reserved.
68 #include <openssl/lhash.h>
69 #include <openssl/asn1.h>
70 #include <openssl/objects.h>
71 #include <openssl/bn.h>
72 #if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
73 #include "libcrypto_wsd_macros.h"
74 #include "libcrypto_wsd.h"
78 /* obj_dat.h is generated from objects.h by obj_dat.pl */
79 #ifndef OPENSSL_NO_OBJECT
82 /* You will have to load all the objects needed manually in the application */
88 static unsigned char lvalues[1];
89 static ASN1_OBJECT nid_objs[1];
90 static ASN1_OBJECT *sn_objs[1];
91 static ASN1_OBJECT *ln_objs[1];
92 static ASN1_OBJECT *obj_objs[1];
94 static const unsigned char lvalues[1];
95 static const ASN1_OBJECT nid_objs[1];
96 static const ASN1_OBJECT *sn_objs[1];
97 static const ASN1_OBJECT *ln_objs[1];
98 static const ASN1_OBJECT *obj_objs[1];
102 static int sn_cmp(const void *a, const void *b);
103 static int ln_cmp(const void *a, const void *b);
104 static int obj_cmp(const void *a, const void *b);
106 #define ADDED_SNAME 1
107 #define ADDED_LNAME 2
110 typedef struct added_obj_st
117 static int new_nid=NUM_NID;
118 static LHASH *added=NULL;
120 GET_STATIC_VAR_FROM_TLS(new_nid,obj_dat,int)
121 #define new_nid (*GET_WSD_VAR_NAME(new_nid,obj_dat, s)())
122 GET_STATIC_VAR_FROM_TLS(added,obj_dat,LHASH *)
123 #define added (*GET_WSD_VAR_NAME(added,obj_dat, s)())
126 static int sn_cmp(const void *a, const void *b)
128 const ASN1_OBJECT * const *ap = a, * const *bp = b;
129 return(strcmp((*ap)->sn,(*bp)->sn));
132 static int ln_cmp(const void *a, const void *b)
134 const ASN1_OBJECT * const *ap = a, * const *bp = b;
135 return(strcmp((*ap)->ln,(*bp)->ln));
138 /* static unsigned long add_hash(ADDED_OBJ *ca) */
139 static unsigned long add_hash(const void *ca_void)
141 const ASN1_OBJECT *a;
145 const ADDED_OBJ *ca = (const ADDED_OBJ *)ca_void;
152 p=(unsigned char *)a->data;
153 for (i=0; i<a->length; i++)
154 ret^=p[i]<<((i*3)%24);
157 ret=lh_strhash(a->sn);
160 ret=lh_strhash(a->ln);
174 /* static int add_cmp(ADDED_OBJ *ca, ADDED_OBJ *cb) */
175 static int add_cmp(const void *ca_void, const void *cb_void)
179 const ADDED_OBJ *ca = (const ADDED_OBJ *)ca_void;
180 const ADDED_OBJ *cb = (const ADDED_OBJ *)cb_void;
189 i=(a->length - b->length);
191 return(memcmp(a->data,b->data,(size_t)a->length));
193 if (a->sn == NULL) return(-1);
194 else if (b->sn == NULL) return(1);
195 else return(strcmp(a->sn,b->sn));
197 if (a->ln == NULL) return(-1);
198 else if (b->ln == NULL) return(1);
199 else return(strcmp(a->ln,b->ln));
201 return(a->nid-b->nid);
208 static int init_added(void)
210 if (added != NULL) return(1);
211 added=lh_new(add_hash,add_cmp);
212 return(added != NULL);
215 static void cleanup1(ADDED_OBJ *a)
218 a->obj->flags|=ASN1_OBJECT_FLAG_DYNAMIC|
219 ASN1_OBJECT_FLAG_DYNAMIC_STRINGS|
220 ASN1_OBJECT_FLAG_DYNAMIC_DATA;
223 static void cleanup2(ADDED_OBJ *a)
226 static void cleanup3(ADDED_OBJ *a)
228 if (--a->obj->nid == 0)
229 ASN1_OBJECT_free(a->obj);
233 static IMPLEMENT_LHASH_DOALL_FN(cleanup1, ADDED_OBJ *)
234 static IMPLEMENT_LHASH_DOALL_FN(cleanup2, ADDED_OBJ *)
235 static IMPLEMENT_LHASH_DOALL_FN(cleanup3, ADDED_OBJ *)
237 EXPORT_C void OBJ_cleanup(void)
239 if (added == NULL) return;
241 lh_doall(added,LHASH_DOALL_FN(cleanup1)); /* zero counters */
242 lh_doall(added,LHASH_DOALL_FN(cleanup2)); /* set counters */
243 lh_doall(added,LHASH_DOALL_FN(cleanup3)); /* free objects */
248 EXPORT_C int OBJ_new_nid(int num)
257 EXPORT_C int OBJ_add_object(const ASN1_OBJECT *obj)
260 ADDED_OBJ *ao[4]={NULL,NULL,NULL,NULL},*aop;
264 if (!init_added()) return(0);
265 if ((o=OBJ_dup(obj)) == NULL) goto err;
266 if (!(ao[ADDED_NID]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
267 if ((o->length != 0) && (obj->data != NULL))
268 if (!(ao[ADDED_DATA]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
270 if (!(ao[ADDED_SNAME]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
272 if (!(ao[ADDED_LNAME]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
274 for (i=ADDED_DATA; i<=ADDED_NID; i++)
280 aop=(ADDED_OBJ *)lh_insert(added,ao[i]);
281 /* memory leak, buit should not normally matter */
286 o->flags&= ~(ASN1_OBJECT_FLAG_DYNAMIC|ASN1_OBJECT_FLAG_DYNAMIC_STRINGS|
287 ASN1_OBJECT_FLAG_DYNAMIC_DATA);
291 OBJerr(OBJ_F_OBJ_ADD_OBJECT,ERR_R_MALLOC_FAILURE);
293 for (i=ADDED_DATA; i<=ADDED_NID; i++)
294 if (ao[i] != NULL) OPENSSL_free(ao[i]);
295 if (o != NULL) OPENSSL_free(o);
299 EXPORT_C ASN1_OBJECT *OBJ_nid2obj(int n)
304 if ((n >= 0) && (n < NUM_NID))
306 if ((n != NID_undef) && (nid_objs[n].nid == NID_undef))
308 OBJerr(OBJ_F_OBJ_NID2OBJ,OBJ_R_UNKNOWN_NID);
311 return((ASN1_OBJECT *)&(nid_objs[n]));
313 else if (added == NULL)
320 adp=(ADDED_OBJ *)lh_retrieve(added,&ad);
325 OBJerr(OBJ_F_OBJ_NID2OBJ,OBJ_R_UNKNOWN_NID);
331 EXPORT_C const char *OBJ_nid2sn(int n)
336 if ((n >= 0) && (n < NUM_NID))
338 if ((n != NID_undef) && (nid_objs[n].nid == NID_undef))
340 OBJerr(OBJ_F_OBJ_NID2SN,OBJ_R_UNKNOWN_NID);
343 return(nid_objs[n].sn);
345 else if (added == NULL)
352 adp=(ADDED_OBJ *)lh_retrieve(added,&ad);
354 return(adp->obj->sn);
357 OBJerr(OBJ_F_OBJ_NID2SN,OBJ_R_UNKNOWN_NID);
363 EXPORT_C const char *OBJ_nid2ln(int n)
368 if ((n >= 0) && (n < NUM_NID))
370 if ((n != NID_undef) && (nid_objs[n].nid == NID_undef))
372 OBJerr(OBJ_F_OBJ_NID2LN,OBJ_R_UNKNOWN_NID);
375 return(nid_objs[n].ln);
377 else if (added == NULL)
384 adp=(ADDED_OBJ *)lh_retrieve(added,&ad);
386 return(adp->obj->ln);
389 OBJerr(OBJ_F_OBJ_NID2LN,OBJ_R_UNKNOWN_NID);
395 EXPORT_C int OBJ_obj2nid(const ASN1_OBJECT *a)
408 ad.obj=(ASN1_OBJECT *)a; /* XXX: ugly but harmless */
409 adp=(ADDED_OBJ *)lh_retrieve(added,&ad);
410 if (adp != NULL) return (adp->obj->nid);
412 op=(ASN1_OBJECT **)OBJ_bsearch((const char *)&a,(const char *)obj_objs,
413 NUM_OBJ, sizeof(ASN1_OBJECT *),obj_cmp);
419 /* Convert an object name into an ASN1_OBJECT
420 * if "noname" is not set then search for short and long names first.
421 * This will convert the "dotted" form into an object: unlike OBJ_txt2nid
422 * it can be used with any objects, not just registered ones.
425 EXPORT_C ASN1_OBJECT *OBJ_txt2obj(const char *s, int no_name)
428 ASN1_OBJECT *op=NULL;
431 const unsigned char *cp;
435 if( ((nid = OBJ_sn2nid(s)) != NID_undef) ||
436 ((nid = OBJ_ln2nid(s)) != NID_undef) )
437 return OBJ_nid2obj(nid);
440 /* Work out size of content octets */
441 i=a2d_ASN1_OBJECT(NULL,0,s,-1);
443 /* Don't clear the error */
444 /*ERR_clear_error();*/
447 /* Work out total size */
448 j = ASN1_object_size(0,i,V_ASN1_OBJECT);
450 if((buf=(unsigned char *)OPENSSL_malloc(j)) == NULL) return NULL;
453 /* Write out tag+length */
454 ASN1_put_object(&p,0,i,V_ASN1_OBJECT,V_ASN1_UNIVERSAL);
455 /* Write out contents */
456 a2d_ASN1_OBJECT(p,i,s,-1);
459 op=d2i_ASN1_OBJECT(NULL,&cp,j);
464 EXPORT_C int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name)
466 int i,n=0,len,nid, first, use_bn;
470 char tbuf[DECIMAL_SIZE(i)+DECIMAL_SIZE(l)+2];
472 if ((a == NULL) || (a->data == NULL)) {
478 if (!no_name && (nid=OBJ_obj2nid(a)) != NID_undef)
485 BUF_strlcpy(buf,s,buf_len);
503 unsigned char c = *p++;
505 if ((len == 0) && (c & 0x80))
509 if (!BN_add_word(bl, c & 0x7f))
516 if (!use_bn && (l > (ULONG_MAX >> 7L)))
518 if (!bl && !(bl = BN_new()))
520 if (!BN_set_word(bl, l))
526 if (!BN_lshift(bl, bl, 7))
541 if (!BN_sub_word(bl, 80))
552 if (buf && (buf_len > 0))
563 bndec = BN_bn2dec(bl);
574 BUF_strlcpy(buf,bndec,buf_len);
592 BIO_snprintf(tbuf,sizeof tbuf,".%lu",l);
594 if (buf && (buf_len > 0))
596 BUF_strlcpy(buf,tbuf,buf_len);
623 EXPORT_C int OBJ_txt2nid(const char *s)
627 obj = OBJ_txt2obj(s, 0);
628 nid = OBJ_obj2nid(obj);
629 ASN1_OBJECT_free(obj);
633 EXPORT_C int OBJ_ln2nid(const char *s)
635 ASN1_OBJECT o,*oo= &o,**op;
643 adp=(ADDED_OBJ *)lh_retrieve(added,&ad);
644 if (adp != NULL) return (adp->obj->nid);
646 op=(ASN1_OBJECT **)OBJ_bsearch((char *)&oo,(char *)ln_objs, NUM_LN,
647 sizeof(ASN1_OBJECT *),ln_cmp);
648 if (op == NULL) return(NID_undef);
652 EXPORT_C int OBJ_sn2nid(const char *s)
654 ASN1_OBJECT o,*oo= &o,**op;
662 adp=(ADDED_OBJ *)lh_retrieve(added,&ad);
663 if (adp != NULL) return (adp->obj->nid);
665 op=(ASN1_OBJECT **)OBJ_bsearch((char *)&oo,(char *)sn_objs,NUM_SN,
666 sizeof(ASN1_OBJECT *),sn_cmp);
667 if (op == NULL) return(NID_undef);
671 static int obj_cmp(const void *ap, const void *bp)
674 const ASN1_OBJECT *a= *(ASN1_OBJECT * const *)ap;
675 const ASN1_OBJECT *b= *(ASN1_OBJECT * const *)bp;
677 j=(a->length - b->length);
679 return(memcmp(a->data,b->data,a->length));
682 EXPORT_C const char *OBJ_bsearch(const char *key, const char *base, int num, int size,
683 int (*cmp)(const void *, const void *))
685 return OBJ_bsearch_ex(key, base, num, size, cmp, 0);
688 EXPORT_C const char *OBJ_bsearch_ex(const char *key, const char *base, int num,
689 int size, int (*cmp)(const void *, const void *), int flags)
692 const char *p = NULL;
694 if (num == 0) return(NULL);
709 #ifdef CHARSET_EBCDIC
710 /* THIS IS A KLUDGE - Because the *_obj is sorted in ASCII order, and
711 * I don't have perl (yet), we revert to a *LINEAR* search
712 * when the object wasn't found in the binary search.
716 for (i=0; i<num; ++i)
720 if (c == 0 || (c < 0 && (flags & OBJ_BSEARCH_VALUE_ON_NOMATCH)))
725 if (c != 0 && !(flags & OBJ_BSEARCH_VALUE_ON_NOMATCH))
727 else if (c == 0 && (flags & OBJ_BSEARCH_FIRST_VALUE_ON_MATCH))
729 while(i > 0 && (*cmp)(key,&(base[(i-1)*size])) == 0)
736 EXPORT_C int OBJ_create_objects(BIO *in)
738 MS_STATIC char buf[512];
745 i=BIO_gets(in,buf,512);
746 if (i <= 0) return(num);
748 if (!isalnum((unsigned char)buf[0])) return(num);
750 while (isdigit((unsigned char)*s) || (*s == '.'))
755 while (isspace((unsigned char)*s))
762 while ((*l != '\0') && !isspace((unsigned char)*l))
767 while (isspace((unsigned char)*l))
769 if (*l == '\0') l=NULL;
777 if ((o == NULL) || (*o == '\0')) return(num);
778 if (!OBJ_create(o,s,l)) return(num);
784 EXPORT_C int OBJ_create(const char *oid, const char *sn, const char *ln)
787 ASN1_OBJECT *op=NULL;
791 i=a2d_ASN1_OBJECT(NULL,0,oid,-1);
792 if (i <= 0) return(0);
794 if ((buf=(unsigned char *)OPENSSL_malloc(i)) == NULL)
796 OBJerr(OBJ_F_OBJ_CREATE,ERR_R_MALLOC_FAILURE);
799 i=a2d_ASN1_OBJECT(buf,i,oid,-1);
802 op=(ASN1_OBJECT *)ASN1_OBJECT_create(OBJ_new_nid(1),buf,i,sn,ln);
805 ok=OBJ_add_object(op);
807 ASN1_OBJECT_free(op);