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