x_name.c
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:9k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /* crypto/asn1/x_name.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. #include <stdio.h>
  59. #include "cryptlib.h"
  60. #include <openssl/asn1t.h>
  61. #include <openssl/x509.h>
  62. static int x509_name_ex_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it,
  63. int tag, int aclass, char opt, ASN1_TLC *ctx);
  64. static int x509_name_ex_i2d(ASN1_VALUE **val, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass);
  65. static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it);
  66. static void x509_name_ex_free(ASN1_VALUE **val, const ASN1_ITEM *it);
  67. static int x509_name_encode(X509_NAME *a);
  68. ASN1_SEQUENCE(X509_NAME_ENTRY) = {
  69. ASN1_SIMPLE(X509_NAME_ENTRY, object, ASN1_OBJECT),
  70. ASN1_SIMPLE(X509_NAME_ENTRY, value, ASN1_PRINTABLE)
  71. } ASN1_SEQUENCE_END(X509_NAME_ENTRY)
  72. IMPLEMENT_ASN1_FUNCTIONS(X509_NAME_ENTRY)
  73. IMPLEMENT_ASN1_DUP_FUNCTION(X509_NAME_ENTRY)
  74. /* For the "Name" type we need a SEQUENCE OF { SET OF X509_NAME_ENTRY }
  75.  * so declare two template wrappers for this
  76.  */
  77. ASN1_ITEM_TEMPLATE(X509_NAME_ENTRIES) =
  78. ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SET_OF, 0, RDNS, X509_NAME_ENTRY)
  79. ASN1_ITEM_TEMPLATE_END(X509_NAME_ENTRIES)
  80. ASN1_ITEM_TEMPLATE(X509_NAME_INTERNAL) =
  81. ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, Name, X509_NAME_ENTRIES)
  82. ASN1_ITEM_TEMPLATE_END(X509_NAME_INTERNAL)
  83. /* Normally that's where it would end: we'd have two nested STACK structures
  84.  * representing the ASN1. Unfortunately X509_NAME uses a completely different
  85.  * form and caches encodings so we have to process the internal form and convert
  86.  * to the external form.
  87.  */
  88. const ASN1_EXTERN_FUNCS x509_name_ff = {
  89. NULL,
  90. x509_name_ex_new,
  91. x509_name_ex_free,
  92. 0, /* Default clear behaviour is OK */
  93. x509_name_ex_d2i,
  94. x509_name_ex_i2d
  95. };
  96. IMPLEMENT_EXTERN_ASN1(X509_NAME, V_ASN1_SEQUENCE, x509_name_ff) 
  97. IMPLEMENT_ASN1_FUNCTIONS(X509_NAME)
  98. IMPLEMENT_ASN1_DUP_FUNCTION(X509_NAME)
  99. static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it)
  100. {
  101. X509_NAME *ret = NULL;
  102. ret = OPENSSL_malloc(sizeof(X509_NAME));
  103. if(!ret) goto memerr;
  104. if ((ret->entries=sk_X509_NAME_ENTRY_new_null()) == NULL)
  105. goto memerr;
  106. if((ret->bytes = BUF_MEM_new()) == NULL) goto memerr;
  107. ret->modified=1;
  108. *val = (ASN1_VALUE *)ret;
  109. return 1;
  110.  memerr:
  111. ASN1err(ASN1_F_X509_NAME_EX_NEW, ERR_R_MALLOC_FAILURE);
  112. if (ret)
  113. {
  114. if (ret->entries)
  115. sk_X509_NAME_ENTRY_free(ret->entries);
  116. OPENSSL_free(ret);
  117. }
  118. return 0;
  119. }
  120. static void x509_name_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
  121. {
  122. X509_NAME *a;
  123. if(!pval || !*pval)
  124.     return;
  125. a = (X509_NAME *)*pval;
  126. BUF_MEM_free(a->bytes);
  127. sk_X509_NAME_ENTRY_pop_free(a->entries,X509_NAME_ENTRY_free);
  128. OPENSSL_free(a);
  129. *pval = NULL;
  130. }
  131. /* Used with sk_pop_free() to free up the internal representation.
  132.  * NB: we only free the STACK and not its contents because it is
  133.  * already present in the X509_NAME structure.
  134.  */
  135. static void sk_internal_free(void *a)
  136. {
  137. sk_free(a);
  138. }
  139. static int x509_name_ex_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it,
  140. int tag, int aclass, char opt, ASN1_TLC *ctx)
  141. {
  142. const unsigned char *p = *in, *q;
  143. STACK *intname = NULL, **intname_pp = &intname;
  144. int i, j, ret;
  145. X509_NAME *nm = NULL, **nm_pp = &nm;
  146. STACK_OF(X509_NAME_ENTRY) *entries;
  147. X509_NAME_ENTRY *entry;
  148. q = p;
  149. /* Get internal representation of Name */
  150. ret = ASN1_item_ex_d2i((ASN1_VALUE **)intname_pp,
  151.        &p, len, ASN1_ITEM_rptr(X509_NAME_INTERNAL),
  152.        tag, aclass, opt, ctx);
  153. if(ret <= 0) return ret;
  154. if(*val) x509_name_ex_free(val, NULL);
  155. if(!x509_name_ex_new((ASN1_VALUE **)nm_pp, NULL)) goto err;
  156. /* We've decoded it: now cache encoding */
  157. if(!BUF_MEM_grow(nm->bytes, p - q)) goto err;
  158. memcpy(nm->bytes->data, q, p - q);
  159. /* Convert internal representation to X509_NAME structure */
  160. for(i = 0; i < sk_num(intname); i++) {
  161. entries = (STACK_OF(X509_NAME_ENTRY) *)sk_value(intname, i);
  162. for(j = 0; j < sk_X509_NAME_ENTRY_num(entries); j++) {
  163. entry = sk_X509_NAME_ENTRY_value(entries, j);
  164. entry->set = i;
  165. if(!sk_X509_NAME_ENTRY_push(nm->entries, entry))
  166. goto err;
  167. }
  168. sk_X509_NAME_ENTRY_free(entries);
  169. }
  170. sk_free(intname);
  171. nm->modified = 0;
  172. *val = (ASN1_VALUE *)nm;
  173. *in = p;
  174. return ret;
  175. err:
  176. ASN1err(ASN1_F_X509_NAME_EX_D2I, ERR_R_NESTED_ASN1_ERROR);
  177. return 0;
  178. }
  179. static int x509_name_ex_i2d(ASN1_VALUE **val, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass)
  180. {
  181. int ret;
  182. X509_NAME *a = (X509_NAME *)*val;
  183. if(a->modified) {
  184. ret = x509_name_encode((X509_NAME *)a);
  185. if(ret < 0) return ret;
  186. }
  187. ret = a->bytes->length;
  188. if(out != NULL) {
  189. memcpy(*out,a->bytes->data,ret);
  190. *out+=ret;
  191. }
  192. return ret;
  193. }
  194. static int x509_name_encode(X509_NAME *a)
  195. {
  196. STACK *intname = NULL, **intname_pp = &intname;
  197. int len;
  198. unsigned char *p;
  199. STACK_OF(X509_NAME_ENTRY) *entries = NULL;
  200. X509_NAME_ENTRY *entry;
  201. int i, set = -1;
  202. intname = sk_new_null();
  203. if(!intname) goto memerr;
  204. for(i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) {
  205. entry = sk_X509_NAME_ENTRY_value(a->entries, i);
  206. if(entry->set != set) {
  207. entries = sk_X509_NAME_ENTRY_new_null();
  208. if(!entries) goto memerr;
  209. if(!sk_push(intname, (char *)entries)) goto memerr;
  210. set = entry->set;
  211. }
  212. if(!sk_X509_NAME_ENTRY_push(entries, entry)) goto memerr;
  213. }
  214. len = ASN1_item_ex_i2d((ASN1_VALUE **)intname_pp, NULL,
  215.        ASN1_ITEM_rptr(X509_NAME_INTERNAL), -1, -1);
  216. if (!BUF_MEM_grow(a->bytes,len)) goto memerr;
  217. p=(unsigned char *)a->bytes->data;
  218. ASN1_item_ex_i2d((ASN1_VALUE **)intname_pp,
  219.  &p, ASN1_ITEM_rptr(X509_NAME_INTERNAL), -1, -1);
  220. sk_pop_free(intname, sk_internal_free);
  221. a->modified = 0;
  222. return len;
  223. memerr:
  224. sk_pop_free(intname, sk_internal_free);
  225. ASN1err(ASN1_F_X509_NAME_ENCODE, ERR_R_MALLOC_FAILURE);
  226. return -1;
  227. }
  228. int X509_NAME_set(X509_NAME **xn, X509_NAME *name)
  229. {
  230. X509_NAME *in;
  231. if (!xn || !name) return(0);
  232. if (*xn != name)
  233. {
  234. in=X509_NAME_dup(name);
  235. if (in != NULL)
  236. {
  237. X509_NAME_free(*xn);
  238. *xn=in;
  239. }
  240. }
  241. return(*xn != NULL);
  242. }
  243. IMPLEMENT_STACK_OF(X509_NAME_ENTRY)
  244. IMPLEMENT_ASN1_SET_OF(X509_NAME_ENTRY)