| 
									
										
										
										
											2016-05-18 02:24:46 +08:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2022-03-15 21:57:22 +08:00
										 |  |  |  * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved. | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2016-05-18 02:24:46 +08:00
										 |  |  |  * Licensed under the OpenSSL license (the "License").  You may not use | 
					
						
							|  |  |  |  * this file except in compliance with the License.  You can obtain a copy | 
					
						
							|  |  |  |  * in the file LICENSE in the source distribution or at | 
					
						
							|  |  |  |  * https://www.openssl.org/source/license.html
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							| 
									
										
										
										
											2019-09-28 05:57:58 +08:00
										 |  |  | #include "crypto/ctype.h"
 | 
					
						
							| 
									
										
										
										
											2005-11-20 21:07:47 +08:00
										 |  |  | #include <limits.h>
 | 
					
						
							| 
									
										
										
										
											2015-05-14 22:56:48 +08:00
										 |  |  | #include "internal/cryptlib.h"
 | 
					
						
							| 
									
										
										
										
											1999-04-24 06:13:45 +08:00
										 |  |  | #include <openssl/lhash.h>
 | 
					
						
							|  |  |  | #include <openssl/asn1.h>
 | 
					
						
							| 
									
										
										
										
											2019-09-28 05:57:58 +08:00
										 |  |  | #include "crypto/objects.h"
 | 
					
						
							| 
									
										
										
										
											2008-03-17 05:05:46 +08:00
										 |  |  | #include <openssl/bn.h>
 | 
					
						
							| 
									
										
										
										
											2019-09-28 05:57:58 +08:00
										 |  |  | #include "crypto/asn1.h"
 | 
					
						
							| 
									
										
										
										
											2019-09-28 05:58:06 +08:00
										 |  |  | #include "obj_local.h"
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* obj_dat.h is generated from objects.h by obj_dat.pl */ | 
					
						
							| 
									
										
										
										
											2015-01-27 23:06:22 +08:00
										 |  |  | #include "obj_dat.h"
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-22 23:43:01 +08:00
										 |  |  | DECLARE_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, sn); | 
					
						
							|  |  |  | DECLARE_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, ln); | 
					
						
							|  |  |  | DECLARE_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, obj); | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | #define ADDED_DATA      0
 | 
					
						
							|  |  |  | #define ADDED_SNAME     1
 | 
					
						
							|  |  |  | #define ADDED_LNAME     2
 | 
					
						
							|  |  |  | #define ADDED_NID       3
 | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-11 22:11:13 +08:00
										 |  |  | struct added_obj_st { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     int type; | 
					
						
							|  |  |  |     ASN1_OBJECT *obj; | 
					
						
							| 
									
										
										
										
											2016-01-11 22:11:13 +08:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | static int new_nid = NUM_NID; | 
					
						
							|  |  |  | static LHASH_OF(ADDED_OBJ) *added = NULL; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | static int sn_cmp(const ASN1_OBJECT *const *a, const unsigned int *b) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |     return strcmp((*a)->sn, nid_objs[*b].sn); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-22 23:43:01 +08:00
										 |  |  | IMPLEMENT_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, sn); | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | static int ln_cmp(const ASN1_OBJECT *const *a, const unsigned int *b) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |     return strcmp((*a)->ln, nid_objs[*b].ln); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-22 23:43:01 +08:00
										 |  |  | IMPLEMENT_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, ln); | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-26 19:24:29 +08:00
										 |  |  | static unsigned long added_obj_hash(const ADDED_OBJ *ca) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     const ASN1_OBJECT *a; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     unsigned long ret = 0; | 
					
						
							|  |  |  |     unsigned char *p; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     a = ca->obj; | 
					
						
							|  |  |  |     switch (ca->type) { | 
					
						
							|  |  |  |     case ADDED_DATA: | 
					
						
							|  |  |  |         ret = a->length << 20L; | 
					
						
							|  |  |  |         p = (unsigned char *)a->data; | 
					
						
							|  |  |  |         for (i = 0; i < a->length; i++) | 
					
						
							|  |  |  |             ret ^= p[i] << ((i * 3) % 24); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case ADDED_SNAME: | 
					
						
							| 
									
										
										
										
											2016-05-20 22:46:29 +08:00
										 |  |  |         ret = OPENSSL_LH_strhash(a->sn); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case ADDED_LNAME: | 
					
						
							| 
									
										
										
										
											2016-05-20 22:46:29 +08:00
										 |  |  |         ret = OPENSSL_LH_strhash(a->ln); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case ADDED_NID: | 
					
						
							|  |  |  |         ret = a->nid; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         /* abort(); */ | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     ret &= 0x3fffffffL; | 
					
						
							|  |  |  |     ret |= ((unsigned long)ca->type) << 30L; | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |     return ret; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-26 19:24:29 +08:00
										 |  |  | static int added_obj_cmp(const ADDED_OBJ *ca, const ADDED_OBJ *cb) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     ASN1_OBJECT *a, *b; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     i = ca->type - cb->type; | 
					
						
							|  |  |  |     if (i) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return i; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     a = ca->obj; | 
					
						
							|  |  |  |     b = cb->obj; | 
					
						
							|  |  |  |     switch (ca->type) { | 
					
						
							|  |  |  |     case ADDED_DATA: | 
					
						
							|  |  |  |         i = (a->length - b->length); | 
					
						
							|  |  |  |         if (i) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return i; | 
					
						
							|  |  |  |         return memcmp(a->data, b->data, (size_t)a->length); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     case ADDED_SNAME: | 
					
						
							|  |  |  |         if (a->sn == NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return -1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         else if (b->sn == NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return strcmp(a->sn, b->sn); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     case ADDED_LNAME: | 
					
						
							|  |  |  |         if (a->ln == NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return -1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         else if (b->ln == NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return 1; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return strcmp(a->ln, b->ln); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     case ADDED_NID: | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return a->nid - b->nid; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     default: | 
					
						
							|  |  |  |         /* abort(); */ | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | static int init_added(void) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (added != NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return 1; | 
					
						
							| 
									
										
										
										
											2015-12-24 23:51:23 +08:00
										 |  |  |     added = lh_ADDED_OBJ_new(added_obj_hash, added_obj_cmp); | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |     return added != NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-26 19:24:29 +08:00
										 |  |  | static void cleanup1_doall(ADDED_OBJ *a) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     a->obj->nid = 0; | 
					
						
							|  |  |  |     a->obj->flags |= ASN1_OBJECT_FLAG_DYNAMIC | | 
					
						
							|  |  |  |         ASN1_OBJECT_FLAG_DYNAMIC_STRINGS | ASN1_OBJECT_FLAG_DYNAMIC_DATA; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-26 19:24:29 +08:00
										 |  |  | static void cleanup2_doall(ADDED_OBJ *a) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     a->obj->nid++; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-26 19:24:29 +08:00
										 |  |  | static void cleanup3_doall(ADDED_OBJ *a) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (--a->obj->nid == 0) | 
					
						
							|  |  |  |         ASN1_OBJECT_free(a->obj); | 
					
						
							|  |  |  |     OPENSSL_free(a); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-12 19:20:16 +08:00
										 |  |  | void obj_cleanup_int(void) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     if (added == NULL) | 
					
						
							|  |  |  |         return; | 
					
						
							| 
									
										
										
										
											2016-01-11 22:11:13 +08:00
										 |  |  |     lh_ADDED_OBJ_set_down_load(added, 0); | 
					
						
							| 
									
										
										
										
											2015-12-25 00:07:21 +08:00
										 |  |  |     lh_ADDED_OBJ_doall(added, cleanup1_doall); /* zero counters */ | 
					
						
							|  |  |  |     lh_ADDED_OBJ_doall(added, cleanup2_doall); /* set counters */ | 
					
						
							|  |  |  |     lh_ADDED_OBJ_doall(added, cleanup3_doall); /* free objects */ | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     lh_ADDED_OBJ_free(added); | 
					
						
							|  |  |  |     added = NULL; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int OBJ_new_nid(int num) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     i = new_nid; | 
					
						
							|  |  |  |     new_nid += num; | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |     return i; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-14 01:15:03 +08:00
										 |  |  | int OBJ_add_object(const ASN1_OBJECT *obj) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     ASN1_OBJECT *o; | 
					
						
							|  |  |  |     ADDED_OBJ *ao[4] = { NULL, NULL, NULL, NULL }, *aop; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (added == NULL) | 
					
						
							|  |  |  |         if (!init_added()) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if ((o = OBJ_dup(obj)) == NULL) | 
					
						
							|  |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2015-05-13 06:44:45 +08:00
										 |  |  |     if ((ao[ADDED_NID] = OPENSSL_malloc(sizeof(*ao[0]))) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err2; | 
					
						
							|  |  |  |     if ((o->length != 0) && (obj->data != NULL)) | 
					
						
							| 
									
										
										
										
											2015-05-13 06:44:45 +08:00
										 |  |  |         if ((ao[ADDED_DATA] = OPENSSL_malloc(sizeof(*ao[0]))) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             goto err2; | 
					
						
							|  |  |  |     if (o->sn != NULL) | 
					
						
							| 
									
										
										
										
											2015-05-13 06:44:45 +08:00
										 |  |  |         if ((ao[ADDED_SNAME] = OPENSSL_malloc(sizeof(*ao[0]))) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             goto err2; | 
					
						
							|  |  |  |     if (o->ln != NULL) | 
					
						
							| 
									
										
										
										
											2015-05-13 06:44:45 +08:00
										 |  |  |         if ((ao[ADDED_LNAME] = OPENSSL_malloc(sizeof(*ao[0]))) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             goto err2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (i = ADDED_DATA; i <= ADDED_NID; i++) { | 
					
						
							|  |  |  |         if (ao[i] != NULL) { | 
					
						
							|  |  |  |             ao[i]->type = i; | 
					
						
							|  |  |  |             ao[i]->obj = o; | 
					
						
							|  |  |  |             aop = lh_ADDED_OBJ_insert(added, ao[i]); | 
					
						
							| 
									
										
										
										
											2016-06-20 01:39:01 +08:00
										 |  |  |             /* memory leak, but should not normally matter */ | 
					
						
							| 
									
										
										
										
											2015-05-01 22:02:07 +08:00
										 |  |  |             OPENSSL_free(aop); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     o->flags &= | 
					
						
							|  |  |  |         ~(ASN1_OBJECT_FLAG_DYNAMIC | ASN1_OBJECT_FLAG_DYNAMIC_STRINGS | | 
					
						
							|  |  |  |           ASN1_OBJECT_FLAG_DYNAMIC_DATA); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |     return o->nid; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |  err2: | 
					
						
							|  |  |  |     OBJerr(OBJ_F_OBJ_ADD_OBJECT, ERR_R_MALLOC_FAILURE); | 
					
						
							|  |  |  |  err: | 
					
						
							|  |  |  |     for (i = ADDED_DATA; i <= ADDED_NID; i++) | 
					
						
							| 
									
										
										
										
											2015-05-01 22:02:07 +08:00
										 |  |  |         OPENSSL_free(ao[i]); | 
					
						
							| 
									
										
										
										
											2018-03-12 23:24:29 +08:00
										 |  |  |     ASN1_OBJECT_free(o); | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |     return NID_undef; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | ASN1_OBJECT *OBJ_nid2obj(int n) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     ADDED_OBJ ad, *adp; | 
					
						
							|  |  |  |     ASN1_OBJECT ob; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((n >= 0) && (n < NUM_NID)) { | 
					
						
							|  |  |  |         if ((n != NID_undef) && (nid_objs[n].nid == NID_undef)) { | 
					
						
							|  |  |  |             OBJerr(OBJ_F_OBJ_NID2OBJ, OBJ_R_UNKNOWN_NID); | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return (ASN1_OBJECT *)&(nid_objs[n]); | 
					
						
							| 
									
										
										
										
											2022-03-04 01:27:23 +08:00
										 |  |  |     } else if (added == NULL) { | 
					
						
							|  |  |  |         OBJerr(OBJ_F_OBJ_NID2OBJ, OBJ_R_UNKNOWN_NID); | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2022-03-04 01:27:23 +08:00
										 |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         ad.type = ADDED_NID; | 
					
						
							|  |  |  |         ad.obj = &ob; | 
					
						
							|  |  |  |         ob.nid = n; | 
					
						
							|  |  |  |         adp = lh_ADDED_OBJ_retrieve(added, &ad); | 
					
						
							|  |  |  |         if (adp != NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return adp->obj; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         else { | 
					
						
							|  |  |  |             OBJerr(OBJ_F_OBJ_NID2OBJ, OBJ_R_UNKNOWN_NID); | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | const char *OBJ_nid2sn(int n) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     ADDED_OBJ ad, *adp; | 
					
						
							|  |  |  |     ASN1_OBJECT ob; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((n >= 0) && (n < NUM_NID)) { | 
					
						
							|  |  |  |         if ((n != NID_undef) && (nid_objs[n].nid == NID_undef)) { | 
					
						
							|  |  |  |             OBJerr(OBJ_F_OBJ_NID2SN, OBJ_R_UNKNOWN_NID); | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return nid_objs[n].sn; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } else if (added == NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     else { | 
					
						
							|  |  |  |         ad.type = ADDED_NID; | 
					
						
							|  |  |  |         ad.obj = &ob; | 
					
						
							|  |  |  |         ob.nid = n; | 
					
						
							|  |  |  |         adp = lh_ADDED_OBJ_retrieve(added, &ad); | 
					
						
							|  |  |  |         if (adp != NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return adp->obj->sn; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         else { | 
					
						
							|  |  |  |             OBJerr(OBJ_F_OBJ_NID2SN, OBJ_R_UNKNOWN_NID); | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | const char *OBJ_nid2ln(int n) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     ADDED_OBJ ad, *adp; | 
					
						
							|  |  |  |     ASN1_OBJECT ob; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((n >= 0) && (n < NUM_NID)) { | 
					
						
							|  |  |  |         if ((n != NID_undef) && (nid_objs[n].nid == NID_undef)) { | 
					
						
							|  |  |  |             OBJerr(OBJ_F_OBJ_NID2LN, OBJ_R_UNKNOWN_NID); | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return nid_objs[n].ln; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } else if (added == NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     else { | 
					
						
							|  |  |  |         ad.type = ADDED_NID; | 
					
						
							|  |  |  |         ad.obj = &ob; | 
					
						
							|  |  |  |         ob.nid = n; | 
					
						
							|  |  |  |         adp = lh_ADDED_OBJ_retrieve(added, &ad); | 
					
						
							|  |  |  |         if (adp != NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return adp->obj->ln; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         else { | 
					
						
							|  |  |  |             OBJerr(OBJ_F_OBJ_NID2LN, OBJ_R_UNKNOWN_NID); | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int obj_cmp(const ASN1_OBJECT *const *ap, const unsigned int *bp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int j; | 
					
						
							|  |  |  |     const ASN1_OBJECT *a = *ap; | 
					
						
							|  |  |  |     const ASN1_OBJECT *b = &nid_objs[*bp]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     j = (a->length - b->length); | 
					
						
							|  |  |  |     if (j) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return j; | 
					
						
							| 
									
										
										
										
											2015-05-11 18:33:37 +08:00
										 |  |  |     if (a->length == 0) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |     return memcmp(a->data, b->data, a->length); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-22 23:43:01 +08:00
										 |  |  | IMPLEMENT_OBJ_BSEARCH_CMP_FN(const ASN1_OBJECT *, unsigned int, obj); | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-14 01:15:03 +08:00
										 |  |  | int OBJ_obj2nid(const ASN1_OBJECT *a) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     const unsigned int *op; | 
					
						
							|  |  |  |     ADDED_OBJ ad, *adp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (a == NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return NID_undef; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (a->nid != 0) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return a->nid; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-08 20:23:00 +08:00
										 |  |  |     if (a->length == 0) | 
					
						
							|  |  |  |         return NID_undef; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (added != NULL) { | 
					
						
							|  |  |  |         ad.type = ADDED_DATA; | 
					
						
							|  |  |  |         ad.obj = (ASN1_OBJECT *)a; /* XXX: ugly but harmless */ | 
					
						
							|  |  |  |         adp = lh_ADDED_OBJ_retrieve(added, &ad); | 
					
						
							|  |  |  |         if (adp != NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return adp->obj->nid; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     op = OBJ_bsearch_obj(&a, obj_objs, NUM_OBJ); | 
					
						
							|  |  |  |     if (op == NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return NID_undef; | 
					
						
							|  |  |  |     return nid_objs[*op].nid; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Convert an object name into an ASN1_OBJECT if "noname" is not set then | 
					
						
							|  |  |  |  * search for short and long names first. This will convert the "dotted" form | 
					
						
							|  |  |  |  * into an object: unlike OBJ_txt2nid it can be used with any objects, not | 
					
						
							|  |  |  |  * just registered ones. | 
					
						
							| 
									
										
										
										
											1999-01-13 02:40:33 +08:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | ASN1_OBJECT *OBJ_txt2obj(const char *s, int no_name) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     int nid = NID_undef; | 
					
						
							| 
									
										
										
										
											2018-04-27 00:06:17 +08:00
										 |  |  |     ASN1_OBJECT *op; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     unsigned char *buf; | 
					
						
							|  |  |  |     unsigned char *p; | 
					
						
							|  |  |  |     const unsigned char *cp; | 
					
						
							|  |  |  |     int i, j; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!no_name) { | 
					
						
							|  |  |  |         if (((nid = OBJ_sn2nid(s)) != NID_undef) || | 
					
						
							|  |  |  |             ((nid = OBJ_ln2nid(s)) != NID_undef)) | 
					
						
							|  |  |  |             return OBJ_nid2obj(nid); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Work out size of content octets */ | 
					
						
							|  |  |  |     i = a2d_ASN1_OBJECT(NULL, 0, s, -1); | 
					
						
							|  |  |  |     if (i <= 0) { | 
					
						
							|  |  |  |         /* Don't clear the error */ | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * ERR_clear_error(); | 
					
						
							|  |  |  |          */ | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* Work out total size */ | 
					
						
							|  |  |  |     j = ASN1_object_size(0, i, V_ASN1_OBJECT); | 
					
						
							| 
									
										
										
										
											2016-08-23 06:41:15 +08:00
										 |  |  |     if (j < 0) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-27 00:06:17 +08:00
										 |  |  |     if ((buf = OPENSSL_malloc(j)) == NULL) { | 
					
						
							|  |  |  |         OBJerr(OBJ_F_OBJ_TXT2OBJ, ERR_R_MALLOC_FAILURE); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2018-04-27 00:06:17 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     p = buf; | 
					
						
							|  |  |  |     /* Write out tag+length */ | 
					
						
							|  |  |  |     ASN1_put_object(&p, 0, i, V_ASN1_OBJECT, V_ASN1_UNIVERSAL); | 
					
						
							|  |  |  |     /* Write out contents */ | 
					
						
							|  |  |  |     a2d_ASN1_OBJECT(p, i, s, -1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     cp = buf; | 
					
						
							|  |  |  |     op = d2i_ASN1_OBJECT(NULL, &cp, j); | 
					
						
							|  |  |  |     OPENSSL_free(buf); | 
					
						
							|  |  |  |     return op; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-12 11:58:08 +08:00
										 |  |  | int OBJ_obj2txt(char *buf, int buf_len, const ASN1_OBJECT *a, int no_name) | 
					
						
							| 
									
										
										
										
											1999-07-28 06:22:58 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     int i, n = 0, len, nid, first, use_bn; | 
					
						
							|  |  |  |     BIGNUM *bl; | 
					
						
							|  |  |  |     unsigned long l; | 
					
						
							|  |  |  |     const unsigned char *p; | 
					
						
							|  |  |  |     char tbuf[DECIMAL_SIZE(i) + DECIMAL_SIZE(l) + 2]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Ensure that, at every state, |buf| is NUL-terminated. */ | 
					
						
							|  |  |  |     if (buf && buf_len > 0) | 
					
						
							|  |  |  |         buf[0] = '\0'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if ((a == NULL) || (a->data == NULL)) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if (!no_name && (nid = OBJ_obj2nid(a)) != NID_undef) { | 
					
						
							|  |  |  |         const char *s; | 
					
						
							|  |  |  |         s = OBJ_nid2ln(nid); | 
					
						
							|  |  |  |         if (s == NULL) | 
					
						
							|  |  |  |             s = OBJ_nid2sn(nid); | 
					
						
							|  |  |  |         if (s) { | 
					
						
							|  |  |  |             if (buf) | 
					
						
							| 
									
										
										
											
												Rename some BUF_xxx to OPENSSL_xxx
Rename BUF_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
to OPENSSL_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
Add #define's for the old names.
Add CRYPTO_{memdup,strndup}, called by OPENSSL_{memdup,strndup} macros.
Reviewed-by: Tim Hudson <tjh@openssl.org>
											
										 
											2015-12-17 05:12:24 +08:00
										 |  |  |                 OPENSSL_strlcpy(buf, s, buf_len); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             n = strlen(s); | 
					
						
							|  |  |  |             return n; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     len = a->length; | 
					
						
							|  |  |  |     p = a->data; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     first = 1; | 
					
						
							|  |  |  |     bl = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-12 16:00:13 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * RFC 2578 (STD 58) says this about OBJECT IDENTIFIERs: | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * > 3.5. OBJECT IDENTIFIER values | 
					
						
							|  |  |  |      * > | 
					
						
							|  |  |  |      * > An OBJECT IDENTIFIER value is an ordered list of non-negative | 
					
						
							|  |  |  |      * > numbers. For the SMIv2, each number in the list is referred to as a | 
					
						
							|  |  |  |      * > sub-identifier, there are at most 128 sub-identifiers in a value, | 
					
						
							|  |  |  |      * > and each sub-identifier has a maximum value of 2^32-1 (4294967295 | 
					
						
							|  |  |  |      * > decimal). | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * So a legitimate OID according to this RFC is at most (32 * 128 / 7), | 
					
						
							|  |  |  |      * i.e. 586 bytes long. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Ref: https://datatracker.ietf.org/doc/html/rfc2578#section-3.5
 | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (len > 586) | 
					
						
							|  |  |  |         goto err; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     while (len > 0) { | 
					
						
							|  |  |  |         l = 0; | 
					
						
							|  |  |  |         use_bn = 0; | 
					
						
							|  |  |  |         for (;;) { | 
					
						
							|  |  |  |             unsigned char c = *p++; | 
					
						
							|  |  |  |             len--; | 
					
						
							|  |  |  |             if ((len == 0) && (c & 0x80)) | 
					
						
							|  |  |  |                 goto err; | 
					
						
							|  |  |  |             if (use_bn) { | 
					
						
							|  |  |  |                 if (!BN_add_word(bl, c & 0x7f)) | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |             } else | 
					
						
							|  |  |  |                 l |= c & 0x7f; | 
					
						
							|  |  |  |             if (!(c & 0x80)) | 
					
						
							|  |  |  |                 break; | 
					
						
							|  |  |  |             if (!use_bn && (l > (ULONG_MAX >> 7L))) { | 
					
						
							| 
									
										
										
										
											2015-05-07 01:43:59 +08:00
										 |  |  |                 if (bl == NULL && (bl = BN_new()) == NULL) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                     goto err; | 
					
						
							|  |  |  |                 if (!BN_set_word(bl, l)) | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |                 use_bn = 1; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (use_bn) { | 
					
						
							|  |  |  |                 if (!BN_lshift(bl, bl, 7)) | 
					
						
							|  |  |  |                     goto err; | 
					
						
							|  |  |  |             } else | 
					
						
							|  |  |  |                 l <<= 7L; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (first) { | 
					
						
							|  |  |  |             first = 0; | 
					
						
							|  |  |  |             if (l >= 80) { | 
					
						
							|  |  |  |                 i = 2; | 
					
						
							|  |  |  |                 if (use_bn) { | 
					
						
							|  |  |  |                     if (!BN_sub_word(bl, 80)) | 
					
						
							|  |  |  |                         goto err; | 
					
						
							|  |  |  |                 } else | 
					
						
							|  |  |  |                     l -= 80; | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 i = (int)(l / 40); | 
					
						
							|  |  |  |                 l -= (long)(i * 40); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             if (buf && (buf_len > 1)) { | 
					
						
							|  |  |  |                 *buf++ = i + '0'; | 
					
						
							|  |  |  |                 *buf = '\0'; | 
					
						
							|  |  |  |                 buf_len--; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             n++; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (use_bn) { | 
					
						
							|  |  |  |             char *bndec; | 
					
						
							|  |  |  |             bndec = BN_bn2dec(bl); | 
					
						
							|  |  |  |             if (!bndec) | 
					
						
							|  |  |  |                 goto err; | 
					
						
							|  |  |  |             i = strlen(bndec); | 
					
						
							|  |  |  |             if (buf) { | 
					
						
							|  |  |  |                 if (buf_len > 1) { | 
					
						
							|  |  |  |                     *buf++ = '.'; | 
					
						
							|  |  |  |                     *buf = '\0'; | 
					
						
							|  |  |  |                     buf_len--; | 
					
						
							|  |  |  |                 } | 
					
						
							| 
									
										
										
											
												Rename some BUF_xxx to OPENSSL_xxx
Rename BUF_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
to OPENSSL_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
Add #define's for the old names.
Add CRYPTO_{memdup,strndup}, called by OPENSSL_{memdup,strndup} macros.
Reviewed-by: Tim Hudson <tjh@openssl.org>
											
										 
											2015-12-17 05:12:24 +08:00
										 |  |  |                 OPENSSL_strlcpy(buf, bndec, buf_len); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 if (i > buf_len) { | 
					
						
							|  |  |  |                     buf += buf_len; | 
					
						
							|  |  |  |                     buf_len = 0; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     buf += i; | 
					
						
							|  |  |  |                     buf_len -= i; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             n++; | 
					
						
							|  |  |  |             n += i; | 
					
						
							|  |  |  |             OPENSSL_free(bndec); | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             BIO_snprintf(tbuf, sizeof(tbuf), ".%lu", l); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             i = strlen(tbuf); | 
					
						
							|  |  |  |             if (buf && (buf_len > 0)) { | 
					
						
							| 
									
										
										
											
												Rename some BUF_xxx to OPENSSL_xxx
Rename BUF_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
to OPENSSL_{strdup,strlcat,strlcpy,memdup,strndup,strnlen}
Add #define's for the old names.
Add CRYPTO_{memdup,strndup}, called by OPENSSL_{memdup,strndup} macros.
Reviewed-by: Tim Hudson <tjh@openssl.org>
											
										 
											2015-12-17 05:12:24 +08:00
										 |  |  |                 OPENSSL_strlcpy(buf, tbuf, buf_len); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 if (i > buf_len) { | 
					
						
							|  |  |  |                     buf += buf_len; | 
					
						
							|  |  |  |                     buf_len = 0; | 
					
						
							|  |  |  |                 } else { | 
					
						
							|  |  |  |                     buf += i; | 
					
						
							|  |  |  |                     buf_len -= i; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             n += i; | 
					
						
							|  |  |  |             l = 0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-01 09:37:06 +08:00
										 |  |  |     BN_free(bl); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return n; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  err: | 
					
						
							| 
									
										
										
										
											2015-05-01 09:37:06 +08:00
										 |  |  |     BN_free(bl); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     return -1; | 
					
						
							| 
									
										
										
										
											1999-07-28 06:22:58 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-14 01:15:03 +08:00
										 |  |  | int OBJ_txt2nid(const char *s) | 
					
						
							| 
									
										
										
										
											1999-01-13 02:40:33 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     ASN1_OBJECT *obj; | 
					
						
							|  |  |  |     int nid; | 
					
						
							|  |  |  |     obj = OBJ_txt2obj(s, 0); | 
					
						
							|  |  |  |     nid = OBJ_obj2nid(obj); | 
					
						
							|  |  |  |     ASN1_OBJECT_free(obj); | 
					
						
							|  |  |  |     return nid; | 
					
						
							| 
									
										
										
										
											1999-01-13 02:40:33 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int OBJ_ln2nid(const char *s) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     ASN1_OBJECT o; | 
					
						
							|  |  |  |     const ASN1_OBJECT *oo = &o; | 
					
						
							|  |  |  |     ADDED_OBJ ad, *adp; | 
					
						
							|  |  |  |     const unsigned int *op; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     o.ln = s; | 
					
						
							|  |  |  |     if (added != NULL) { | 
					
						
							|  |  |  |         ad.type = ADDED_LNAME; | 
					
						
							|  |  |  |         ad.obj = &o; | 
					
						
							|  |  |  |         adp = lh_ADDED_OBJ_retrieve(added, &ad); | 
					
						
							|  |  |  |         if (adp != NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return adp->obj->nid; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     op = OBJ_bsearch_ln(&oo, ln_objs, NUM_LN); | 
					
						
							|  |  |  |     if (op == NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return NID_undef; | 
					
						
							|  |  |  |     return nid_objs[*op].nid; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int OBJ_sn2nid(const char *s) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							|  |  |  |     ASN1_OBJECT o; | 
					
						
							|  |  |  |     const ASN1_OBJECT *oo = &o; | 
					
						
							|  |  |  |     ADDED_OBJ ad, *adp; | 
					
						
							|  |  |  |     const unsigned int *op; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     o.sn = s; | 
					
						
							|  |  |  |     if (added != NULL) { | 
					
						
							|  |  |  |         ad.type = ADDED_SNAME; | 
					
						
							|  |  |  |         ad.obj = &o; | 
					
						
							|  |  |  |         adp = lh_ADDED_OBJ_retrieve(added, &ad); | 
					
						
							|  |  |  |         if (adp != NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return adp->obj->nid; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     op = OBJ_bsearch_sn(&oo, sn_objs, NUM_SN); | 
					
						
							|  |  |  |     if (op == NULL) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return NID_undef; | 
					
						
							|  |  |  |     return nid_objs[*op].nid; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-12 22:32:47 +08:00
										 |  |  | const void *OBJ_bsearch_(const void *key, const void *base, int num, int size, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                          int (*cmp) (const void *, const void *)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return OBJ_bsearch_ex_(key, base, num, size, cmp, 0); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2003-04-30 04:25:21 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-10-14 16:10:52 +08:00
										 |  |  | const void *OBJ_bsearch_ex_(const void *key, const void *base_, int num, | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                             int size, | 
					
						
							|  |  |  |                             int (*cmp) (const void *, const void *), | 
					
						
							|  |  |  |                             int flags) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     const char *base = base_; | 
					
						
							|  |  |  |     int l, h, i = 0, c = 0; | 
					
						
							|  |  |  |     const char *p = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (num == 0) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |         return NULL; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     l = 0; | 
					
						
							|  |  |  |     h = num; | 
					
						
							|  |  |  |     while (l < h) { | 
					
						
							|  |  |  |         i = (l + h) / 2; | 
					
						
							|  |  |  |         p = &(base[i * size]); | 
					
						
							|  |  |  |         c = (*cmp) (key, p); | 
					
						
							|  |  |  |         if (c < 0) | 
					
						
							|  |  |  |             h = i; | 
					
						
							|  |  |  |         else if (c > 0) | 
					
						
							|  |  |  |             l = i + 1; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1999-06-05 05:35:58 +08:00
										 |  |  | #ifdef CHARSET_EBCDIC
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     /*
 | 
					
						
							|  |  |  |      * THIS IS A KLUDGE - Because the *_obj is sorted in ASCII order, and I | 
					
						
							|  |  |  |      * don't have perl (yet), we revert to a *LINEAR* search when the object | 
					
						
							|  |  |  |      * wasn't found in the binary search. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if (c != 0) { | 
					
						
							|  |  |  |         for (i = 0; i < num; ++i) { | 
					
						
							|  |  |  |             p = &(base[i * size]); | 
					
						
							|  |  |  |             c = (*cmp) (key, p); | 
					
						
							|  |  |  |             if (c == 0 || (c < 0 && (flags & OBJ_BSEARCH_VALUE_ON_NOMATCH))) | 
					
						
							|  |  |  |                 return p; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1999-06-05 05:35:58 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     if (c != 0 && !(flags & OBJ_BSEARCH_VALUE_ON_NOMATCH)) | 
					
						
							|  |  |  |         p = NULL; | 
					
						
							|  |  |  |     else if (c == 0 && (flags & OBJ_BSEARCH_FIRST_VALUE_ON_MATCH)) { | 
					
						
							|  |  |  |         while (i > 0 && (*cmp) (key, &(base[(i - 1) * size])) == 0) | 
					
						
							|  |  |  |             i--; | 
					
						
							|  |  |  |         p = &(base[i * size]); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |     return p; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:52:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-08 23:25:38 +08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Parse a BIO sink to create some extra oid's objects. | 
					
						
							|  |  |  |  * Line format:<OID:isdigit or '.']><isspace><SN><isspace><LN> | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											1999-04-20 05:31:43 +08:00
										 |  |  | int OBJ_create_objects(BIO *in) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2015-01-24 00:58:26 +08:00
										 |  |  |     char buf[512]; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     int i, num = 0; | 
					
						
							|  |  |  |     char *o, *s, *l = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (;;) { | 
					
						
							|  |  |  |         s = o = NULL; | 
					
						
							|  |  |  |         i = BIO_gets(in, buf, 512); | 
					
						
							|  |  |  |         if (i <= 0) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return num; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         buf[i - 1] = '\0'; | 
					
						
							| 
									
										
										
										
											2017-08-21 05:19:17 +08:00
										 |  |  |         if (!ossl_isalnum(buf[0])) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return num; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         o = s = buf; | 
					
						
							| 
									
										
										
										
											2017-08-21 05:19:17 +08:00
										 |  |  |         while (ossl_isdigit(*s) || *s == '.') | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             s++; | 
					
						
							|  |  |  |         if (*s != '\0') { | 
					
						
							|  |  |  |             *(s++) = '\0'; | 
					
						
							| 
									
										
										
										
											2017-08-21 05:19:17 +08:00
										 |  |  |             while (ossl_isspace(*s)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 s++; | 
					
						
							| 
									
										
										
										
											2017-12-08 23:25:38 +08:00
										 |  |  |             if (*s == '\0') { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 s = NULL; | 
					
						
							| 
									
										
										
										
											2017-12-08 23:25:38 +08:00
										 |  |  |             } else { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                 l = s; | 
					
						
							| 
									
										
										
										
											2017-08-21 05:19:17 +08:00
										 |  |  |                 while (*l != '\0' && !ossl_isspace(*l)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                     l++; | 
					
						
							|  |  |  |                 if (*l != '\0') { | 
					
						
							|  |  |  |                     *(l++) = '\0'; | 
					
						
							| 
									
										
										
										
											2017-08-21 05:19:17 +08:00
										 |  |  |                     while (ossl_isspace(*l)) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                         l++; | 
					
						
							| 
									
										
										
										
											2017-12-08 23:25:38 +08:00
										 |  |  |                     if (*l == '\0') { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                         l = NULL; | 
					
						
							| 
									
										
										
										
											2017-12-08 23:25:38 +08:00
										 |  |  |                     } | 
					
						
							|  |  |  |                 } else { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |                     l = NULL; | 
					
						
							| 
									
										
										
										
											2017-12-08 23:25:38 +08:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2017-12-08 23:25:38 +08:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |             s = NULL; | 
					
						
							| 
									
										
										
										
											2017-12-08 23:25:38 +08:00
										 |  |  |         } | 
					
						
							|  |  |  |         if (*o == '\0') | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return num; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         if (!OBJ_create(o, s, l)) | 
					
						
							| 
									
										
										
										
											2017-07-06 12:56:20 +08:00
										 |  |  |             return num; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         num++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											1998-12-21 18:56:39 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-14 01:15:03 +08:00
										 |  |  | int OBJ_create(const char *oid, const char *sn, const char *ln) | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2016-05-18 21:32:16 +08:00
										 |  |  |     ASN1_OBJECT *tmpoid = NULL; | 
					
						
							| 
									
										
										
										
											2016-05-19 00:20:07 +08:00
										 |  |  |     int ok = 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-05-18 21:32:16 +08:00
										 |  |  |     /* Check to see if short or long name already present */ | 
					
						
							| 
									
										
										
										
											2017-06-22 22:25:26 +08:00
										 |  |  |     if ((sn != NULL && OBJ_sn2nid(sn) != NID_undef) | 
					
						
							|  |  |  |             || (ln != NULL && OBJ_ln2nid(ln) != NID_undef)) { | 
					
						
							| 
									
										
										
										
											2016-05-18 21:32:16 +08:00
										 |  |  |         OBJerr(OBJ_F_OBJ_CREATE, OBJ_R_OID_EXISTS); | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-05-18 21:32:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* Convert numerical OID string to an ASN1_OBJECT structure */ | 
					
						
							|  |  |  |     tmpoid = OBJ_txt2obj(oid, 1); | 
					
						
							| 
									
										
										
										
											2017-04-10 20:15:09 +08:00
										 |  |  |     if (tmpoid == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							| 
									
										
										
										
											2016-05-18 21:32:16 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     /* If NID is not NID_undef then object already exists */ | 
					
						
							|  |  |  |     if (OBJ_obj2nid(tmpoid) != NID_undef) { | 
					
						
							|  |  |  |         OBJerr(OBJ_F_OBJ_CREATE, OBJ_R_OID_EXISTS); | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |         goto err; | 
					
						
							| 
									
										
										
										
											2016-05-18 21:32:16 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tmpoid->nid = OBJ_new_nid(1); | 
					
						
							|  |  |  |     tmpoid->sn = (char *)sn; | 
					
						
							|  |  |  |     tmpoid->ln = (char *)ln; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ok = OBJ_add_object(tmpoid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     tmpoid->sn = NULL; | 
					
						
							|  |  |  |     tmpoid->ln = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  |  err: | 
					
						
							| 
									
										
										
										
											2016-05-18 21:32:16 +08:00
										 |  |  |     ASN1_OBJECT_free(tmpoid); | 
					
						
							|  |  |  |     return ok; | 
					
						
							| 
									
										
										
										
											2015-01-22 11:40:55 +08:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-03-16 00:26:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | size_t OBJ_length(const ASN1_OBJECT *obj) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (obj == NULL) | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     return obj->length; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const unsigned char *OBJ_get0_data(const ASN1_OBJECT *obj) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (obj == NULL) | 
					
						
							|  |  |  |         return NULL; | 
					
						
							|  |  |  |     return obj->data; | 
					
						
							|  |  |  | } |