openssl update to 1.0.1i
[tomato/tomato-dir865l.git] / release / src / router / openssl / crypto / objects / obj_dat.c
blob0b2f44241b54165675f3da399d9f544e3762fcf7
1 /* crypto/objects/obj_dat.c */
2 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
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).
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
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)"
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.
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 #include <stdio.h>
60 #include <ctype.h>
61 #include <limits.h>
62 #include "cryptlib.h"
63 #include <openssl/lhash.h>
64 #include <openssl/asn1.h>
65 #include <openssl/objects.h>
66 #include <openssl/bn.h>
68 /* obj_dat.h is generated from objects.h by obj_dat.pl */
69 #ifndef OPENSSL_NO_OBJECT
70 #include "obj_dat.h"
71 #else
72 /* You will have to load all the objects needed manually in the application */
73 #define NUM_NID 0
74 #define NUM_SN 0
75 #define NUM_LN 0
76 #define NUM_OBJ 0
77 static const unsigned char lvalues[1];
78 static const ASN1_OBJECT nid_objs[1];
79 static const unsigned int sn_objs[1];
80 static const unsigned int ln_objs[1];
81 static const unsigned int obj_objs[1];
82 #endif
84 DECLARE_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, sn);
85 DECLARE_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, ln);
86 DECLARE_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, obj);
88 #define ADDED_DATA 0
89 #define ADDED_SNAME 1
90 #define ADDED_LNAME 2
91 #define ADDED_NID 3
93 typedef struct added_obj_st
95 int type;
96 ASN1_OBJECT *obj;
97 } ADDED_OBJ;
98 DECLARE_LHASH_OF(ADDED_OBJ);
100 static int new_nid=NUM_NID;
101 static LHASH_OF(ADDED_OBJ) *added=NULL;
103 static int sn_cmp(const ASN1_OBJECT * const *a, const unsigned int *b)
104 { return(strcmp((*a)->sn,nid_objs[*b].sn)); }
106 IMPLEMENT_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, sn);
108 static int ln_cmp(const ASN1_OBJECT * const *a, const unsigned int *b)
109 { return(strcmp((*a)->ln,nid_objs[*b].ln)); }
111 IMPLEMENT_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, ln);
113 static unsigned long added_obj_hash(const ADDED_OBJ *ca)
115 const ASN1_OBJECT *a;
116 int i;
117 unsigned long ret=0;
118 unsigned char *p;
120 a=ca->obj;
121 switch (ca->type)
123 case ADDED_DATA:
124 ret=a->length<<20L;
125 p=(unsigned char *)a->data;
126 for (i=0; i<a->length; i++)
127 ret^=p[i]<<((i*3)%24);
128 break;
129 case ADDED_SNAME:
130 ret=lh_strhash(a->sn);
131 break;
132 case ADDED_LNAME:
133 ret=lh_strhash(a->ln);
134 break;
135 case ADDED_NID:
136 ret=a->nid;
137 break;
138 default:
139 /* abort(); */
140 return 0;
142 ret&=0x3fffffffL;
143 ret|=ca->type<<30L;
144 return(ret);
146 static IMPLEMENT_LHASH_HASH_FN(added_obj, ADDED_OBJ)
148 static int added_obj_cmp(const ADDED_OBJ *ca, const ADDED_OBJ *cb)
150 ASN1_OBJECT *a,*b;
151 int i;
153 i=ca->type-cb->type;
154 if (i) return(i);
155 a=ca->obj;
156 b=cb->obj;
157 switch (ca->type)
159 case ADDED_DATA:
160 i=(a->length - b->length);
161 if (i) return(i);
162 return(memcmp(a->data,b->data,(size_t)a->length));
163 case ADDED_SNAME:
164 if (a->sn == NULL) return(-1);
165 else if (b->sn == NULL) return(1);
166 else return(strcmp(a->sn,b->sn));
167 case ADDED_LNAME:
168 if (a->ln == NULL) return(-1);
169 else if (b->ln == NULL) return(1);
170 else return(strcmp(a->ln,b->ln));
171 case ADDED_NID:
172 return(a->nid-b->nid);
173 default:
174 /* abort(); */
175 return 0;
178 static IMPLEMENT_LHASH_COMP_FN(added_obj, ADDED_OBJ)
180 static int init_added(void)
182 if (added != NULL) return(1);
183 added=lh_ADDED_OBJ_new();
184 return(added != NULL);
187 static void cleanup1_doall(ADDED_OBJ *a)
189 a->obj->nid=0;
190 a->obj->flags|=ASN1_OBJECT_FLAG_DYNAMIC|
191 ASN1_OBJECT_FLAG_DYNAMIC_STRINGS|
192 ASN1_OBJECT_FLAG_DYNAMIC_DATA;
195 static void cleanup2_doall(ADDED_OBJ *a)
196 { a->obj->nid++; }
198 static void cleanup3_doall(ADDED_OBJ *a)
200 if (--a->obj->nid == 0)
201 ASN1_OBJECT_free(a->obj);
202 OPENSSL_free(a);
205 static IMPLEMENT_LHASH_DOALL_FN(cleanup1, ADDED_OBJ)
206 static IMPLEMENT_LHASH_DOALL_FN(cleanup2, ADDED_OBJ)
207 static IMPLEMENT_LHASH_DOALL_FN(cleanup3, ADDED_OBJ)
209 /* The purpose of obj_cleanup_defer is to avoid EVP_cleanup() attempting
210 * to use freed up OIDs. If neccessary the actual freeing up of OIDs is
211 * delayed.
214 int obj_cleanup_defer = 0;
216 void check_defer(int nid)
218 if (!obj_cleanup_defer && nid >= NUM_NID)
219 obj_cleanup_defer = 1;
222 void OBJ_cleanup(void)
224 if (obj_cleanup_defer)
226 obj_cleanup_defer = 2;
227 return ;
229 if (added == NULL) return;
230 lh_ADDED_OBJ_down_load(added) = 0;
231 lh_ADDED_OBJ_doall(added,LHASH_DOALL_FN(cleanup1)); /* zero counters */
232 lh_ADDED_OBJ_doall(added,LHASH_DOALL_FN(cleanup2)); /* set counters */
233 lh_ADDED_OBJ_doall(added,LHASH_DOALL_FN(cleanup3)); /* free objects */
234 lh_ADDED_OBJ_free(added);
235 added=NULL;
238 int OBJ_new_nid(int num)
240 int i;
242 i=new_nid;
243 new_nid+=num;
244 return(i);
247 int OBJ_add_object(const ASN1_OBJECT *obj)
249 ASN1_OBJECT *o;
250 ADDED_OBJ *ao[4]={NULL,NULL,NULL,NULL},*aop;
251 int i;
253 if (added == NULL)
254 if (!init_added()) return(0);
255 if ((o=OBJ_dup(obj)) == NULL) goto err;
256 if (!(ao[ADDED_NID]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
257 if ((o->length != 0) && (obj->data != NULL))
258 if (!(ao[ADDED_DATA]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
259 if (o->sn != NULL)
260 if (!(ao[ADDED_SNAME]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
261 if (o->ln != NULL)
262 if (!(ao[ADDED_LNAME]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
264 for (i=ADDED_DATA; i<=ADDED_NID; i++)
266 if (ao[i] != NULL)
268 ao[i]->type=i;
269 ao[i]->obj=o;
270 aop=lh_ADDED_OBJ_insert(added,ao[i]);
271 /* memory leak, buit should not normally matter */
272 if (aop != NULL)
273 OPENSSL_free(aop);
276 o->flags&= ~(ASN1_OBJECT_FLAG_DYNAMIC|ASN1_OBJECT_FLAG_DYNAMIC_STRINGS|
277 ASN1_OBJECT_FLAG_DYNAMIC_DATA);
279 return(o->nid);
280 err2:
281 OBJerr(OBJ_F_OBJ_ADD_OBJECT,ERR_R_MALLOC_FAILURE);
282 err:
283 for (i=ADDED_DATA; i<=ADDED_NID; i++)
284 if (ao[i] != NULL) OPENSSL_free(ao[i]);
285 if (o != NULL) OPENSSL_free(o);
286 return(NID_undef);
289 ASN1_OBJECT *OBJ_nid2obj(int n)
291 ADDED_OBJ ad,*adp;
292 ASN1_OBJECT ob;
294 if ((n >= 0) && (n < NUM_NID))
296 if ((n != NID_undef) && (nid_objs[n].nid == NID_undef))
298 OBJerr(OBJ_F_OBJ_NID2OBJ,OBJ_R_UNKNOWN_NID);
299 return(NULL);
301 return((ASN1_OBJECT *)&(nid_objs[n]));
303 else if (added == NULL)
304 return(NULL);
305 else
307 ad.type=ADDED_NID;
308 ad.obj= &ob;
309 ob.nid=n;
310 adp=lh_ADDED_OBJ_retrieve(added,&ad);
311 if (adp != NULL)
312 return(adp->obj);
313 else
315 OBJerr(OBJ_F_OBJ_NID2OBJ,OBJ_R_UNKNOWN_NID);
316 return(NULL);
321 const char *OBJ_nid2sn(int n)
323 ADDED_OBJ ad,*adp;
324 ASN1_OBJECT ob;
326 if ((n >= 0) && (n < NUM_NID))
328 if ((n != NID_undef) && (nid_objs[n].nid == NID_undef))
330 OBJerr(OBJ_F_OBJ_NID2SN,OBJ_R_UNKNOWN_NID);
331 return(NULL);
333 return(nid_objs[n].sn);
335 else if (added == NULL)
336 return(NULL);
337 else
339 ad.type=ADDED_NID;
340 ad.obj= &ob;
341 ob.nid=n;
342 adp=lh_ADDED_OBJ_retrieve(added,&ad);
343 if (adp != NULL)
344 return(adp->obj->sn);
345 else
347 OBJerr(OBJ_F_OBJ_NID2SN,OBJ_R_UNKNOWN_NID);
348 return(NULL);
353 const char *OBJ_nid2ln(int n)
355 ADDED_OBJ ad,*adp;
356 ASN1_OBJECT ob;
358 if ((n >= 0) && (n < NUM_NID))
360 if ((n != NID_undef) && (nid_objs[n].nid == NID_undef))
362 OBJerr(OBJ_F_OBJ_NID2LN,OBJ_R_UNKNOWN_NID);
363 return(NULL);
365 return(nid_objs[n].ln);
367 else if (added == NULL)
368 return(NULL);
369 else
371 ad.type=ADDED_NID;
372 ad.obj= &ob;
373 ob.nid=n;
374 adp=lh_ADDED_OBJ_retrieve(added,&ad);
375 if (adp != NULL)
376 return(adp->obj->ln);
377 else
379 OBJerr(OBJ_F_OBJ_NID2LN,OBJ_R_UNKNOWN_NID);
380 return(NULL);
385 static int obj_cmp(const ASN1_OBJECT * const *ap, const unsigned int *bp)
387 int j;
388 const ASN1_OBJECT *a= *ap;
389 const ASN1_OBJECT *b= &nid_objs[*bp];
391 j=(a->length - b->length);
392 if (j) return(j);
393 return(memcmp(a->data,b->data,a->length));
396 IMPLEMENT_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, obj);
398 int OBJ_obj2nid(const ASN1_OBJECT *a)
400 const unsigned int *op;
401 ADDED_OBJ ad,*adp;
403 if (a == NULL)
404 return(NID_undef);
405 if (a->nid != 0)
406 return(a->nid);
408 if (added != NULL)
410 ad.type=ADDED_DATA;
411 ad.obj=(ASN1_OBJECT *)a; /* XXX: ugly but harmless */
412 adp=lh_ADDED_OBJ_retrieve(added,&ad);
413 if (adp != NULL) return (adp->obj->nid);
415 op=OBJ_bsearch_obj(&a, obj_objs, NUM_OBJ);
416 if (op == NULL)
417 return(NID_undef);
418 return(nid_objs[*op].nid);
421 /* Convert an object name into an ASN1_OBJECT
422 * if "noname" is not set then search for short and long names first.
423 * This will convert the "dotted" form into an object: unlike OBJ_txt2nid
424 * it can be used with any objects, not just registered ones.
427 ASN1_OBJECT *OBJ_txt2obj(const char *s, int no_name)
429 int nid = NID_undef;
430 ASN1_OBJECT *op=NULL;
431 unsigned char *buf;
432 unsigned char *p;
433 const unsigned char *cp;
434 int i, j;
436 if(!no_name) {
437 if( ((nid = OBJ_sn2nid(s)) != NID_undef) ||
438 ((nid = OBJ_ln2nid(s)) != NID_undef) )
439 return OBJ_nid2obj(nid);
442 /* Work out size of content octets */
443 i=a2d_ASN1_OBJECT(NULL,0,s,-1);
444 if (i <= 0) {
445 /* Don't clear the error */
446 /*ERR_clear_error();*/
447 return NULL;
449 /* Work out total size */
450 j = ASN1_object_size(0,i,V_ASN1_OBJECT);
452 if((buf=(unsigned char *)OPENSSL_malloc(j)) == NULL) return NULL;
454 p = buf;
455 /* Write out tag+length */
456 ASN1_put_object(&p,0,i,V_ASN1_OBJECT,V_ASN1_UNIVERSAL);
457 /* Write out contents */
458 a2d_ASN1_OBJECT(p,i,s,-1);
460 cp=buf;
461 op=d2i_ASN1_OBJECT(NULL,&cp,j);
462 OPENSSL_free(buf);
463 return op;
466 int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name)
468 int i,n=0,len,nid, first, use_bn;
469 BIGNUM *bl;
470 unsigned long l;
471 const unsigned char *p;
472 char tbuf[DECIMAL_SIZE(i)+DECIMAL_SIZE(l)+2];
474 /* Ensure that, at every state, |buf| is NUL-terminated. */
475 if (buf && buf_len > 0)
476 buf[0] = '\0';
478 if ((a == NULL) || (a->data == NULL))
479 return(0);
481 if (!no_name && (nid=OBJ_obj2nid(a)) != NID_undef)
483 const char *s;
484 s=OBJ_nid2ln(nid);
485 if (s == NULL)
486 s=OBJ_nid2sn(nid);
487 if (s)
489 if (buf)
490 BUF_strlcpy(buf,s,buf_len);
491 n=strlen(s);
492 return n;
497 len=a->length;
498 p=a->data;
500 first = 1;
501 bl = NULL;
503 while (len > 0)
505 l=0;
506 use_bn = 0;
507 for (;;)
509 unsigned char c = *p++;
510 len--;
511 if ((len == 0) && (c & 0x80))
512 goto err;
513 if (use_bn)
515 if (!BN_add_word(bl, c & 0x7f))
516 goto err;
518 else
519 l |= c & 0x7f;
520 if (!(c & 0x80))
521 break;
522 if (!use_bn && (l > (ULONG_MAX >> 7L)))
524 if (!bl && !(bl = BN_new()))
525 goto err;
526 if (!BN_set_word(bl, l))
527 goto err;
528 use_bn = 1;
530 if (use_bn)
532 if (!BN_lshift(bl, bl, 7))
533 goto err;
535 else
536 l<<=7L;
539 if (first)
541 first = 0;
542 if (l >= 80)
544 i = 2;
545 if (use_bn)
547 if (!BN_sub_word(bl, 80))
548 goto err;
550 else
551 l -= 80;
553 else
555 i=(int)(l/40);
556 l-=(long)(i*40);
558 if (buf && (buf_len > 1))
560 *buf++ = i + '0';
561 *buf = '\0';
562 buf_len--;
564 n++;
567 if (use_bn)
569 char *bndec;
570 bndec = BN_bn2dec(bl);
571 if (!bndec)
572 goto err;
573 i = strlen(bndec);
574 if (buf)
576 if (buf_len > 1)
578 *buf++ = '.';
579 *buf = '\0';
580 buf_len--;
582 BUF_strlcpy(buf,bndec,buf_len);
583 if (i > buf_len)
585 buf += buf_len;
586 buf_len = 0;
588 else
590 buf+=i;
591 buf_len-=i;
594 n++;
595 n += i;
596 OPENSSL_free(bndec);
598 else
600 BIO_snprintf(tbuf,sizeof tbuf,".%lu",l);
601 i=strlen(tbuf);
602 if (buf && (buf_len > 0))
604 BUF_strlcpy(buf,tbuf,buf_len);
605 if (i > buf_len)
607 buf += buf_len;
608 buf_len = 0;
610 else
612 buf+=i;
613 buf_len-=i;
616 n+=i;
617 l=0;
621 if (bl)
622 BN_free(bl);
623 return n;
625 err:
626 if (bl)
627 BN_free(bl);
628 return -1;
631 int OBJ_txt2nid(const char *s)
633 ASN1_OBJECT *obj;
634 int nid;
635 obj = OBJ_txt2obj(s, 0);
636 nid = OBJ_obj2nid(obj);
637 ASN1_OBJECT_free(obj);
638 return nid;
641 int OBJ_ln2nid(const char *s)
643 ASN1_OBJECT o;
644 const ASN1_OBJECT *oo= &o;
645 ADDED_OBJ ad,*adp;
646 const unsigned int *op;
648 o.ln=s;
649 if (added != NULL)
651 ad.type=ADDED_LNAME;
652 ad.obj= &o;
653 adp=lh_ADDED_OBJ_retrieve(added,&ad);
654 if (adp != NULL) return (adp->obj->nid);
656 op=OBJ_bsearch_ln(&oo, ln_objs, NUM_LN);
657 if (op == NULL) return(NID_undef);
658 return(nid_objs[*op].nid);
661 int OBJ_sn2nid(const char *s)
663 ASN1_OBJECT o;
664 const ASN1_OBJECT *oo= &o;
665 ADDED_OBJ ad,*adp;
666 const unsigned int *op;
668 o.sn=s;
669 if (added != NULL)
671 ad.type=ADDED_SNAME;
672 ad.obj= &o;
673 adp=lh_ADDED_OBJ_retrieve(added,&ad);
674 if (adp != NULL) return (adp->obj->nid);
676 op=OBJ_bsearch_sn(&oo, sn_objs, NUM_SN);
677 if (op == NULL) return(NID_undef);
678 return(nid_objs[*op].nid);
681 const void *OBJ_bsearch_(const void *key, const void *base, int num, int size,
682 int (*cmp)(const void *, const void *))
684 return OBJ_bsearch_ex_(key, base, num, size, cmp, 0);
687 const void *OBJ_bsearch_ex_(const void *key, const void *base_, int num,
688 int size,
689 int (*cmp)(const void *, const void *),
690 int flags)
692 const char *base=base_;
693 int l,h,i=0,c=0;
694 const char *p = NULL;
696 if (num == 0) return(NULL);
697 l=0;
698 h=num;
699 while (l < h)
701 i=(l+h)/2;
702 p= &(base[i*size]);
703 c=(*cmp)(key,p);
704 if (c < 0)
705 h=i;
706 else if (c > 0)
707 l=i+1;
708 else
709 break;
711 #ifdef CHARSET_EBCDIC
712 /* THIS IS A KLUDGE - Because the *_obj is sorted in ASCII order, and
713 * I don't have perl (yet), we revert to a *LINEAR* search
714 * when the object wasn't found in the binary search.
716 if (c != 0)
718 for (i=0; i<num; ++i)
720 p= &(base[i*size]);
721 c = (*cmp)(key,p);
722 if (c == 0 || (c < 0 && (flags & OBJ_BSEARCH_VALUE_ON_NOMATCH)))
723 return p;
726 #endif
727 if (c != 0 && !(flags & OBJ_BSEARCH_VALUE_ON_NOMATCH))
728 p = NULL;
729 else if (c == 0 && (flags & OBJ_BSEARCH_FIRST_VALUE_ON_MATCH))
731 while(i > 0 && (*cmp)(key,&(base[(i-1)*size])) == 0)
732 i--;
733 p = &(base[i*size]);
735 return(p);
738 int OBJ_create_objects(BIO *in)
740 MS_STATIC char buf[512];
741 int i,num=0;
742 char *o,*s,*l=NULL;
744 for (;;)
746 s=o=NULL;
747 i=BIO_gets(in,buf,512);
748 if (i <= 0) return(num);
749 buf[i-1]='\0';
750 if (!isalnum((unsigned char)buf[0])) return(num);
751 o=s=buf;
752 while (isdigit((unsigned char)*s) || (*s == '.'))
753 s++;
754 if (*s != '\0')
756 *(s++)='\0';
757 while (isspace((unsigned char)*s))
758 s++;
759 if (*s == '\0')
760 s=NULL;
761 else
763 l=s;
764 while ((*l != '\0') && !isspace((unsigned char)*l))
765 l++;
766 if (*l != '\0')
768 *(l++)='\0';
769 while (isspace((unsigned char)*l))
770 l++;
771 if (*l == '\0') l=NULL;
773 else
774 l=NULL;
777 else
778 s=NULL;
779 if ((o == NULL) || (*o == '\0')) return(num);
780 if (!OBJ_create(o,s,l)) return(num);
781 num++;
783 /* return(num); */
786 int OBJ_create(const char *oid, const char *sn, const char *ln)
788 int ok=0;
789 ASN1_OBJECT *op=NULL;
790 unsigned char *buf;
791 int i;
793 i=a2d_ASN1_OBJECT(NULL,0,oid,-1);
794 if (i <= 0) return(0);
796 if ((buf=(unsigned char *)OPENSSL_malloc(i)) == NULL)
798 OBJerr(OBJ_F_OBJ_CREATE,ERR_R_MALLOC_FAILURE);
799 return(0);
801 i=a2d_ASN1_OBJECT(buf,i,oid,-1);
802 if (i == 0)
803 goto err;
804 op=(ASN1_OBJECT *)ASN1_OBJECT_create(OBJ_new_nid(1),buf,i,sn,ln);
805 if (op == NULL)
806 goto err;
807 ok=OBJ_add_object(op);
808 err:
809 ASN1_OBJECT_free(op);
810 OPENSSL_free(buf);
811 return(ok);