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