obj_dat.c revision 284295
1/* crypto/objects/obj_dat.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 <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>
67
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
77static unsigned char lvalues[1];
78static ASN1_OBJECT nid_objs[1];
79static ASN1_OBJECT *sn_objs[1];
80static ASN1_OBJECT *ln_objs[1];
81static ASN1_OBJECT *obj_objs[1];
82#endif
83
84static int sn_cmp(const void *a, const void *b);
85static int ln_cmp(const void *a, const void *b);
86static int obj_cmp(const void *a, const void *b);
87#define ADDED_DATA	0
88#define ADDED_SNAME	1
89#define ADDED_LNAME	2
90#define ADDED_NID	3
91
92typedef struct added_obj_st
93	{
94	int type;
95	ASN1_OBJECT *obj;
96	} ADDED_OBJ;
97
98static int new_nid=NUM_NID;
99static LHASH *added=NULL;
100
101static int sn_cmp(const void *a, const void *b)
102	{
103	const ASN1_OBJECT * const *ap = a, * const *bp = b;
104	return(strcmp((*ap)->sn,(*bp)->sn));
105	}
106
107static int ln_cmp(const void *a, const void *b)
108	{
109	const ASN1_OBJECT * const *ap = a, * const *bp = b;
110	return(strcmp((*ap)->ln,(*bp)->ln));
111	}
112
113/* static unsigned long add_hash(ADDED_OBJ *ca) */
114static unsigned long add_hash(const void *ca_void)
115	{
116	const ASN1_OBJECT *a;
117	int i;
118	unsigned long ret=0;
119	unsigned char *p;
120	const ADDED_OBJ *ca = (const ADDED_OBJ *)ca_void;
121
122	a=ca->obj;
123	switch (ca->type)
124		{
125	case ADDED_DATA:
126		ret=a->length<<20L;
127		p=(unsigned char *)a->data;
128		for (i=0; i<a->length; i++)
129			ret^=p[i]<<((i*3)%24);
130		break;
131	case ADDED_SNAME:
132		ret=lh_strhash(a->sn);
133		break;
134	case ADDED_LNAME:
135		ret=lh_strhash(a->ln);
136		break;
137	case ADDED_NID:
138		ret=a->nid;
139		break;
140	default:
141		/* abort(); */
142		return 0;
143		}
144	ret&=0x3fffffffL;
145	ret|=ca->type<<30L;
146	return(ret);
147	}
148
149/* static int add_cmp(ADDED_OBJ *ca, ADDED_OBJ *cb) */
150static int add_cmp(const void *ca_void, const void *cb_void)
151	{
152	ASN1_OBJECT *a,*b;
153	int i;
154	const ADDED_OBJ *ca = (const ADDED_OBJ *)ca_void;
155	const ADDED_OBJ *cb = (const ADDED_OBJ *)cb_void;
156
157	i=ca->type-cb->type;
158	if (i) return(i);
159	a=ca->obj;
160	b=cb->obj;
161	switch (ca->type)
162		{
163	case ADDED_DATA:
164		i=(a->length - b->length);
165		if (i) return(i);
166		return(memcmp(a->data,b->data,(size_t)a->length));
167	case ADDED_SNAME:
168		if (a->sn == NULL) return(-1);
169		else if (b->sn == NULL) return(1);
170		else return(strcmp(a->sn,b->sn));
171	case ADDED_LNAME:
172		if (a->ln == NULL) return(-1);
173		else if (b->ln == NULL) return(1);
174		else return(strcmp(a->ln,b->ln));
175	case ADDED_NID:
176		return(a->nid-b->nid);
177	default:
178		/* abort(); */
179		return 0;
180		}
181	}
182
183static int init_added(void)
184	{
185	if (added != NULL) return(1);
186	added=lh_new(add_hash,add_cmp);
187	return(added != NULL);
188	}
189
190static void cleanup1(ADDED_OBJ *a)
191	{
192	a->obj->nid=0;
193	a->obj->flags|=ASN1_OBJECT_FLAG_DYNAMIC|
194	                ASN1_OBJECT_FLAG_DYNAMIC_STRINGS|
195			ASN1_OBJECT_FLAG_DYNAMIC_DATA;
196	}
197
198static void cleanup2(ADDED_OBJ *a)
199	{ a->obj->nid++; }
200
201static void cleanup3(ADDED_OBJ *a)
202	{
203	if (--a->obj->nid == 0)
204		ASN1_OBJECT_free(a->obj);
205	OPENSSL_free(a);
206	}
207
208static IMPLEMENT_LHASH_DOALL_FN(cleanup1, ADDED_OBJ *)
209static IMPLEMENT_LHASH_DOALL_FN(cleanup2, ADDED_OBJ *)
210static IMPLEMENT_LHASH_DOALL_FN(cleanup3, ADDED_OBJ *)
211
212void OBJ_cleanup(void)
213	{
214	if (added == NULL) return;
215	added->down_load=0;
216	lh_doall(added,LHASH_DOALL_FN(cleanup1)); /* zero counters */
217	lh_doall(added,LHASH_DOALL_FN(cleanup2)); /* set counters */
218	lh_doall(added,LHASH_DOALL_FN(cleanup3)); /* free objects */
219	lh_free(added);
220	added=NULL;
221	}
222
223int OBJ_new_nid(int num)
224	{
225	int i;
226
227	i=new_nid;
228	new_nid+=num;
229	return(i);
230	}
231
232int OBJ_add_object(const ASN1_OBJECT *obj)
233	{
234	ASN1_OBJECT *o;
235	ADDED_OBJ *ao[4]={NULL,NULL,NULL,NULL},*aop;
236	int i;
237
238	if (added == NULL)
239		if (!init_added()) return(0);
240	if ((o=OBJ_dup(obj)) == NULL) goto err;
241	if (!(ao[ADDED_NID]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
242	if ((o->length != 0) && (obj->data != NULL))
243		if (!(ao[ADDED_DATA]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
244	if (o->sn != NULL)
245		if (!(ao[ADDED_SNAME]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
246	if (o->ln != NULL)
247		if (!(ao[ADDED_LNAME]=(ADDED_OBJ *)OPENSSL_malloc(sizeof(ADDED_OBJ)))) goto err2;
248
249	for (i=ADDED_DATA; i<=ADDED_NID; i++)
250		{
251		if (ao[i] != NULL)
252			{
253			ao[i]->type=i;
254			ao[i]->obj=o;
255			aop=(ADDED_OBJ *)lh_insert(added,ao[i]);
256			/* memory leak, buit should not normally matter */
257			if (aop != NULL)
258				OPENSSL_free(aop);
259			}
260		}
261	o->flags&= ~(ASN1_OBJECT_FLAG_DYNAMIC|ASN1_OBJECT_FLAG_DYNAMIC_STRINGS|
262			ASN1_OBJECT_FLAG_DYNAMIC_DATA);
263
264	return(o->nid);
265err2:
266	OBJerr(OBJ_F_OBJ_ADD_OBJECT,ERR_R_MALLOC_FAILURE);
267err:
268	for (i=ADDED_DATA; i<=ADDED_NID; i++)
269		if (ao[i] != NULL) OPENSSL_free(ao[i]);
270	if (o != NULL) OPENSSL_free(o);
271	return(NID_undef);
272	}
273
274ASN1_OBJECT *OBJ_nid2obj(int n)
275	{
276	ADDED_OBJ ad,*adp;
277	ASN1_OBJECT ob;
278
279	if ((n >= 0) && (n < NUM_NID))
280		{
281		if ((n != NID_undef) && (nid_objs[n].nid == NID_undef))
282			{
283			OBJerr(OBJ_F_OBJ_NID2OBJ,OBJ_R_UNKNOWN_NID);
284			return(NULL);
285			}
286		return((ASN1_OBJECT *)&(nid_objs[n]));
287		}
288	else if (added == NULL)
289		return(NULL);
290	else
291		{
292		ad.type=ADDED_NID;
293		ad.obj= &ob;
294		ob.nid=n;
295		adp=(ADDED_OBJ *)lh_retrieve(added,&ad);
296		if (adp != NULL)
297			return(adp->obj);
298		else
299			{
300			OBJerr(OBJ_F_OBJ_NID2OBJ,OBJ_R_UNKNOWN_NID);
301			return(NULL);
302			}
303		}
304	}
305
306const char *OBJ_nid2sn(int n)
307	{
308	ADDED_OBJ ad,*adp;
309	ASN1_OBJECT ob;
310
311	if ((n >= 0) && (n < NUM_NID))
312		{
313		if ((n != NID_undef) && (nid_objs[n].nid == NID_undef))
314			{
315			OBJerr(OBJ_F_OBJ_NID2SN,OBJ_R_UNKNOWN_NID);
316			return(NULL);
317			}
318		return(nid_objs[n].sn);
319		}
320	else if (added == NULL)
321		return(NULL);
322	else
323		{
324		ad.type=ADDED_NID;
325		ad.obj= &ob;
326		ob.nid=n;
327		adp=(ADDED_OBJ *)lh_retrieve(added,&ad);
328		if (adp != NULL)
329			return(adp->obj->sn);
330		else
331			{
332			OBJerr(OBJ_F_OBJ_NID2SN,OBJ_R_UNKNOWN_NID);
333			return(NULL);
334			}
335		}
336	}
337
338const char *OBJ_nid2ln(int n)
339	{
340	ADDED_OBJ ad,*adp;
341	ASN1_OBJECT ob;
342
343	if ((n >= 0) && (n < NUM_NID))
344		{
345		if ((n != NID_undef) && (nid_objs[n].nid == NID_undef))
346			{
347			OBJerr(OBJ_F_OBJ_NID2LN,OBJ_R_UNKNOWN_NID);
348			return(NULL);
349			}
350		return(nid_objs[n].ln);
351		}
352	else if (added == NULL)
353		return(NULL);
354	else
355		{
356		ad.type=ADDED_NID;
357		ad.obj= &ob;
358		ob.nid=n;
359		adp=(ADDED_OBJ *)lh_retrieve(added,&ad);
360		if (adp != NULL)
361			return(adp->obj->ln);
362		else
363			{
364			OBJerr(OBJ_F_OBJ_NID2LN,OBJ_R_UNKNOWN_NID);
365			return(NULL);
366			}
367		}
368	}
369
370int OBJ_obj2nid(const ASN1_OBJECT *a)
371	{
372	ASN1_OBJECT **op;
373	ADDED_OBJ ad,*adp;
374
375	if (a == NULL)
376		return(NID_undef);
377	if (a->nid != 0)
378		return(a->nid);
379
380	if (a->length == 0)
381	    return NID_undef;
382
383	if (added != NULL)
384		{
385		ad.type=ADDED_DATA;
386		ad.obj=(ASN1_OBJECT *)a; /* XXX: ugly but harmless */
387		adp=(ADDED_OBJ *)lh_retrieve(added,&ad);
388		if (adp != NULL) return (adp->obj->nid);
389		}
390	op=(ASN1_OBJECT **)OBJ_bsearch((const char *)&a,(const char *)obj_objs,
391		NUM_OBJ, sizeof(ASN1_OBJECT *),obj_cmp);
392	if (op == NULL)
393		return(NID_undef);
394	return((*op)->nid);
395	}
396
397/* Convert an object name into an ASN1_OBJECT
398 * if "noname" is not set then search for short and long names first.
399 * This will convert the "dotted" form into an object: unlike OBJ_txt2nid
400 * it can be used with any objects, not just registered ones.
401 */
402
403ASN1_OBJECT *OBJ_txt2obj(const char *s, int no_name)
404	{
405	int nid = NID_undef;
406	ASN1_OBJECT *op=NULL;
407	unsigned char *buf;
408	unsigned char *p;
409	const unsigned char *cp;
410	int i, j;
411
412	if(!no_name) {
413		if( ((nid = OBJ_sn2nid(s)) != NID_undef) ||
414			((nid = OBJ_ln2nid(s)) != NID_undef) )
415					return OBJ_nid2obj(nid);
416	}
417
418	/* Work out size of content octets */
419	i=a2d_ASN1_OBJECT(NULL,0,s,-1);
420	if (i <= 0) {
421		/* Don't clear the error */
422		/*ERR_clear_error();*/
423		return NULL;
424	}
425	/* Work out total size */
426	j = ASN1_object_size(0,i,V_ASN1_OBJECT);
427
428	if((buf=(unsigned char *)OPENSSL_malloc(j)) == NULL) return NULL;
429
430	p = buf;
431	/* Write out tag+length */
432	ASN1_put_object(&p,0,i,V_ASN1_OBJECT,V_ASN1_UNIVERSAL);
433	/* Write out contents */
434	a2d_ASN1_OBJECT(p,i,s,-1);
435
436	cp=buf;
437	op=d2i_ASN1_OBJECT(NULL,&cp,j);
438	OPENSSL_free(buf);
439	return op;
440	}
441
442int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name)
443{
444	int i,n=0,len,nid, first, use_bn;
445	BIGNUM *bl;
446	unsigned long l;
447	unsigned char *p;
448	char tbuf[DECIMAL_SIZE(i)+DECIMAL_SIZE(l)+2];
449
450	/* Ensure that, at every state, |buf| is NUL-terminated. */
451	if (buf && buf_len > 0)
452		buf[0] = '\0';
453
454	if ((a == NULL) || (a->data == NULL))
455		return(0);
456
457	if (!no_name && (nid=OBJ_obj2nid(a)) != NID_undef)
458		{
459		const char *s;
460		s=OBJ_nid2ln(nid);
461		if (s == NULL)
462			s=OBJ_nid2sn(nid);
463		if (s)
464			{
465			if (buf)
466				BUF_strlcpy(buf,s,buf_len);
467			n=strlen(s);
468			return n;
469			}
470		}
471
472
473	len=a->length;
474	p=a->data;
475
476	first = 1;
477	bl = NULL;
478
479	while (len > 0)
480		{
481		l=0;
482		use_bn = 0;
483		for (;;)
484			{
485			unsigned char c = *p++;
486			len--;
487			if ((len == 0) && (c & 0x80))
488				goto err;
489			if (use_bn)
490				{
491				if (!BN_add_word(bl, c & 0x7f))
492					goto err;
493				}
494			else
495				l |= c  & 0x7f;
496			if (!(c & 0x80))
497				break;
498			if (!use_bn && (l > (ULONG_MAX >> 7L)))
499				{
500				if (!bl && !(bl = BN_new()))
501					goto err;
502				if (!BN_set_word(bl, l))
503					goto err;
504				use_bn = 1;
505				}
506			if (use_bn)
507				{
508				if (!BN_lshift(bl, bl, 7))
509					goto err;
510				}
511			else
512				l<<=7L;
513			}
514
515		if (first)
516			{
517			first = 0;
518			if (l >= 80)
519				{
520				i = 2;
521				if (use_bn)
522					{
523					if (!BN_sub_word(bl, 80))
524						goto err;
525					}
526				else
527					l -= 80;
528				}
529			else
530				{
531				i=(int)(l/40);
532				l-=(long)(i*40);
533				}
534			if (buf && (buf_len > 1))
535				{
536				*buf++ = i + '0';
537				*buf = '\0';
538				buf_len--;
539				}
540			n++;
541			}
542
543		if (use_bn)
544			{
545			char *bndec;
546			bndec = BN_bn2dec(bl);
547			if (!bndec)
548				goto err;
549			i = strlen(bndec);
550			if (buf)
551				{
552				if (buf_len > 1)
553					{
554					*buf++ = '.';
555					*buf = '\0';
556					buf_len--;
557					}
558				BUF_strlcpy(buf,bndec,buf_len);
559				if (i > buf_len)
560					{
561					buf += buf_len;
562					buf_len = 0;
563					}
564				else
565					{
566					buf+=i;
567					buf_len-=i;
568					}
569				}
570			n++;
571			n += i;
572			OPENSSL_free(bndec);
573			}
574		else
575			{
576			BIO_snprintf(tbuf,sizeof tbuf,".%lu",l);
577			i=strlen(tbuf);
578			if (buf && (buf_len > 0))
579				{
580				BUF_strlcpy(buf,tbuf,buf_len);
581				if (i > buf_len)
582					{
583					buf += buf_len;
584					buf_len = 0;
585					}
586				else
587					{
588					buf+=i;
589					buf_len-=i;
590					}
591				}
592			n+=i;
593			l=0;
594			}
595		}
596
597	if (bl)
598		BN_free(bl);
599	return n;
600
601	err:
602	if (bl)
603		BN_free(bl);
604	return -1;
605}
606
607int OBJ_txt2nid(const char *s)
608{
609	ASN1_OBJECT *obj;
610	int nid;
611	obj = OBJ_txt2obj(s, 0);
612	nid = OBJ_obj2nid(obj);
613	ASN1_OBJECT_free(obj);
614	return nid;
615}
616
617int OBJ_ln2nid(const char *s)
618	{
619	ASN1_OBJECT o,*oo= &o,**op;
620	ADDED_OBJ ad,*adp;
621
622	o.ln=s;
623	if (added != NULL)
624		{
625		ad.type=ADDED_LNAME;
626		ad.obj= &o;
627		adp=(ADDED_OBJ *)lh_retrieve(added,&ad);
628		if (adp != NULL) return (adp->obj->nid);
629		}
630	op=(ASN1_OBJECT **)OBJ_bsearch((char *)&oo,(char *)ln_objs, NUM_LN,
631		sizeof(ASN1_OBJECT *),ln_cmp);
632	if (op == NULL) return(NID_undef);
633	return((*op)->nid);
634	}
635
636int OBJ_sn2nid(const char *s)
637	{
638	ASN1_OBJECT o,*oo= &o,**op;
639	ADDED_OBJ ad,*adp;
640
641	o.sn=s;
642	if (added != NULL)
643		{
644		ad.type=ADDED_SNAME;
645		ad.obj= &o;
646		adp=(ADDED_OBJ *)lh_retrieve(added,&ad);
647		if (adp != NULL) return (adp->obj->nid);
648		}
649	op=(ASN1_OBJECT **)OBJ_bsearch((char *)&oo,(char *)sn_objs,NUM_SN,
650		sizeof(ASN1_OBJECT *),sn_cmp);
651	if (op == NULL) return(NID_undef);
652	return((*op)->nid);
653	}
654
655static int obj_cmp(const void *ap, const void *bp)
656	{
657	int j;
658	const ASN1_OBJECT *a= *(ASN1_OBJECT * const *)ap;
659	const ASN1_OBJECT *b= *(ASN1_OBJECT * const *)bp;
660
661	j=(a->length - b->length);
662        if (j) return(j);
663	return(memcmp(a->data,b->data,a->length));
664        }
665
666const char *OBJ_bsearch(const char *key, const char *base, int num, int size,
667	int (*cmp)(const void *, const void *))
668	{
669	return OBJ_bsearch_ex(key, base, num, size, cmp, 0);
670	}
671
672const char *OBJ_bsearch_ex(const char *key, const char *base, int num,
673	int size, int (*cmp)(const void *, const void *), int flags)
674	{
675	int l,h,i=0,c=0;
676	const char *p = NULL;
677
678	if (num == 0) return(NULL);
679	l=0;
680	h=num;
681	while (l < h)
682		{
683		i=(l+h)/2;
684		p= &(base[i*size]);
685		c=(*cmp)(key,p);
686		if (c < 0)
687			h=i;
688		else if (c > 0)
689			l=i+1;
690		else
691			break;
692		}
693#ifdef CHARSET_EBCDIC
694/* THIS IS A KLUDGE - Because the *_obj is sorted in ASCII order, and
695 * I don't have perl (yet), we revert to a *LINEAR* search
696 * when the object wasn't found in the binary search.
697 */
698	if (c != 0)
699		{
700		for (i=0; i<num; ++i)
701			{
702			p= &(base[i*size]);
703			c = (*cmp)(key,p);
704			if (c == 0 || (c < 0 && (flags & OBJ_BSEARCH_VALUE_ON_NOMATCH)))
705				return p;
706			}
707		}
708#endif
709	if (c != 0 && !(flags & OBJ_BSEARCH_VALUE_ON_NOMATCH))
710		p = NULL;
711	else if (c == 0 && (flags & OBJ_BSEARCH_FIRST_VALUE_ON_MATCH))
712		{
713		while(i > 0 && (*cmp)(key,&(base[(i-1)*size])) == 0)
714			i--;
715		p = &(base[i*size]);
716		}
717	return(p);
718	}
719
720int OBJ_create_objects(BIO *in)
721	{
722	MS_STATIC char buf[512];
723	int i,num=0;
724	char *o,*s,*l=NULL;
725
726	for (;;)
727		{
728		s=o=NULL;
729		i=BIO_gets(in,buf,512);
730		if (i <= 0) return(num);
731		buf[i-1]='\0';
732		if (!isalnum((unsigned char)buf[0])) return(num);
733		o=s=buf;
734		while (isdigit((unsigned char)*s) || (*s == '.'))
735			s++;
736		if (*s != '\0')
737			{
738			*(s++)='\0';
739			while (isspace((unsigned char)*s))
740				s++;
741			if (*s == '\0')
742				s=NULL;
743			else
744				{
745				l=s;
746				while ((*l != '\0') && !isspace((unsigned char)*l))
747					l++;
748				if (*l != '\0')
749					{
750					*(l++)='\0';
751					while (isspace((unsigned char)*l))
752						l++;
753					if (*l == '\0') l=NULL;
754					}
755				else
756					l=NULL;
757				}
758			}
759		else
760			s=NULL;
761		if ((o == NULL) || (*o == '\0')) return(num);
762		if (!OBJ_create(o,s,l)) return(num);
763		num++;
764		}
765	/* return(num); */
766	}
767
768int OBJ_create(const char *oid, const char *sn, const char *ln)
769	{
770	int ok=0;
771	ASN1_OBJECT *op=NULL;
772	unsigned char *buf;
773	int i;
774
775	i=a2d_ASN1_OBJECT(NULL,0,oid,-1);
776	if (i <= 0) return(0);
777
778	if ((buf=(unsigned char *)OPENSSL_malloc(i)) == NULL)
779		{
780		OBJerr(OBJ_F_OBJ_CREATE,ERR_R_MALLOC_FAILURE);
781		return(0);
782		}
783	i=a2d_ASN1_OBJECT(buf,i,oid,-1);
784	if (i == 0)
785		goto err;
786	op=(ASN1_OBJECT *)ASN1_OBJECT_create(OBJ_new_nid(1),buf,i,sn,ln);
787	if (op == NULL)
788		goto err;
789	ok=OBJ_add_object(op);
790err:
791	ASN1_OBJECT_free(op);
792	OPENSSL_free(buf);
793	return(ok);
794	}
795