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

其他游戏

开发平台:

Visual C++

  1. /* crypto/x509/x509_att.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 <openssl/stack.h>
  60. #include "cryptlib.h"
  61. #include <openssl/asn1.h>
  62. #include <openssl/objects.h>
  63. #include <openssl/evp.h>
  64. #include <openssl/x509.h>
  65. #include <openssl/x509v3.h>
  66. int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x)
  67. {
  68. if (!x) return 0;
  69. return(sk_X509_ATTRIBUTE_num(x));
  70. }
  71. int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x, int nid,
  72.   int lastpos)
  73. {
  74. ASN1_OBJECT *obj;
  75. obj=OBJ_nid2obj(nid);
  76. if (obj == NULL) return(-2);
  77. return(X509at_get_attr_by_OBJ(x,obj,lastpos));
  78. }
  79. int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *sk, ASN1_OBJECT *obj,
  80.   int lastpos)
  81. {
  82. int n;
  83. X509_ATTRIBUTE *ex;
  84. if (sk == NULL) return(-1);
  85. lastpos++;
  86. if (lastpos < 0)
  87. lastpos=0;
  88. n=sk_X509_ATTRIBUTE_num(sk);
  89. for ( ; lastpos < n; lastpos++)
  90. {
  91. ex=sk_X509_ATTRIBUTE_value(sk,lastpos);
  92. if (OBJ_cmp(ex->object,obj) == 0)
  93. return(lastpos);
  94. }
  95. return(-1);
  96. }
  97. X509_ATTRIBUTE *X509at_get_attr(const STACK_OF(X509_ATTRIBUTE) *x, int loc)
  98. {
  99. if (x == NULL || sk_X509_ATTRIBUTE_num(x) <= loc || loc < 0)
  100. return NULL;
  101. else
  102. return sk_X509_ATTRIBUTE_value(x,loc);
  103. }
  104. X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) *x, int loc)
  105. {
  106. X509_ATTRIBUTE *ret;
  107. if (x == NULL || sk_X509_ATTRIBUTE_num(x) <= loc || loc < 0)
  108. return(NULL);
  109. ret=sk_X509_ATTRIBUTE_delete(x,loc);
  110. return(ret);
  111. }
  112. STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr(STACK_OF(X509_ATTRIBUTE) **x,
  113.  X509_ATTRIBUTE *attr)
  114. {
  115. X509_ATTRIBUTE *new_attr=NULL;
  116. STACK_OF(X509_ATTRIBUTE) *sk=NULL;
  117. if (x == NULL)
  118. {
  119. X509err(X509_F_X509AT_ADD1_ATTR, ERR_R_PASSED_NULL_PARAMETER);
  120. goto err2;
  121. if (*x == NULL)
  122. {
  123. if ((sk=sk_X509_ATTRIBUTE_new_null()) == NULL)
  124. goto err;
  125. }
  126. else
  127. sk= *x;
  128. if ((new_attr=X509_ATTRIBUTE_dup(attr)) == NULL)
  129. goto err2;
  130. if (!sk_X509_ATTRIBUTE_push(sk,new_attr))
  131. goto err;
  132. if (*x == NULL)
  133. *x=sk;
  134. return(sk);
  135. err:
  136. X509err(X509_F_X509AT_ADD1_ATTR,ERR_R_MALLOC_FAILURE);
  137. err2:
  138. if (new_attr != NULL) X509_ATTRIBUTE_free(new_attr);
  139. if (sk != NULL) sk_X509_ATTRIBUTE_free(sk);
  140. return(NULL);
  141. }
  142. STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_OBJ(STACK_OF(X509_ATTRIBUTE) **x,
  143. const ASN1_OBJECT *obj, int type,
  144. const unsigned char *bytes, int len)
  145. {
  146. X509_ATTRIBUTE *attr;
  147. STACK_OF(X509_ATTRIBUTE) *ret;
  148. attr = X509_ATTRIBUTE_create_by_OBJ(NULL, obj, type, bytes, len);
  149. if(!attr) return 0;
  150. ret = X509at_add1_attr(x, attr);
  151. X509_ATTRIBUTE_free(attr);
  152. return ret;
  153. }
  154. STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_NID(STACK_OF(X509_ATTRIBUTE) **x,
  155. int nid, int type,
  156. const unsigned char *bytes, int len)
  157. {
  158. X509_ATTRIBUTE *attr;
  159. STACK_OF(X509_ATTRIBUTE) *ret;
  160. attr = X509_ATTRIBUTE_create_by_NID(NULL, nid, type, bytes, len);
  161. if(!attr) return 0;
  162. ret = X509at_add1_attr(x, attr);
  163. X509_ATTRIBUTE_free(attr);
  164. return ret;
  165. }
  166. STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(STACK_OF(X509_ATTRIBUTE) **x,
  167. const char *attrname, int type,
  168. const unsigned char *bytes, int len)
  169. {
  170. X509_ATTRIBUTE *attr;
  171. STACK_OF(X509_ATTRIBUTE) *ret;
  172. attr = X509_ATTRIBUTE_create_by_txt(NULL, attrname, type, bytes, len);
  173. if(!attr) return 0;
  174. ret = X509at_add1_attr(x, attr);
  175. X509_ATTRIBUTE_free(attr);
  176. return ret;
  177. }
  178. X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(X509_ATTRIBUTE **attr, int nid,
  179.      int atrtype, const void *data, int len)
  180. {
  181. ASN1_OBJECT *obj;
  182. X509_ATTRIBUTE *ret;
  183. obj=OBJ_nid2obj(nid);
  184. if (obj == NULL)
  185. {
  186. X509err(X509_F_X509_ATTRIBUTE_CREATE_BY_NID,X509_R_UNKNOWN_NID);
  187. return(NULL);
  188. }
  189. ret=X509_ATTRIBUTE_create_by_OBJ(attr,obj,atrtype,data,len);
  190. if (ret == NULL) ASN1_OBJECT_free(obj);
  191. return(ret);
  192. }
  193. X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(X509_ATTRIBUTE **attr,
  194.      const ASN1_OBJECT *obj, int atrtype, const void *data, int len)
  195. {
  196. X509_ATTRIBUTE *ret;
  197. if ((attr == NULL) || (*attr == NULL))
  198. {
  199. if ((ret=X509_ATTRIBUTE_new()) == NULL)
  200. {
  201. X509err(X509_F_X509_ATTRIBUTE_CREATE_BY_OBJ,ERR_R_MALLOC_FAILURE);
  202. return(NULL);
  203. }
  204. }
  205. else
  206. ret= *attr;
  207. if (!X509_ATTRIBUTE_set1_object(ret,obj))
  208. goto err;
  209. if (!X509_ATTRIBUTE_set1_data(ret,atrtype,data,len))
  210. goto err;
  211. if ((attr != NULL) && (*attr == NULL)) *attr=ret;
  212. return(ret);
  213. err:
  214. if ((attr == NULL) || (ret != *attr))
  215. X509_ATTRIBUTE_free(ret);
  216. return(NULL);
  217. }
  218. X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(X509_ATTRIBUTE **attr,
  219. const char *atrname, int type, const unsigned char *bytes, int len)
  220. {
  221. ASN1_OBJECT *obj;
  222. X509_ATTRIBUTE *nattr;
  223. obj=OBJ_txt2obj(atrname, 0);
  224. if (obj == NULL)
  225. {
  226. X509err(X509_F_X509_ATTRIBUTE_CREATE_BY_TXT,
  227. X509_R_INVALID_FIELD_NAME);
  228. ERR_add_error_data(2, "name=", atrname);
  229. return(NULL);
  230. }
  231. nattr = X509_ATTRIBUTE_create_by_OBJ(attr,obj,type,bytes,len);
  232. ASN1_OBJECT_free(obj);
  233. return nattr;
  234. }
  235. int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr, const ASN1_OBJECT *obj)
  236. {
  237. if ((attr == NULL) || (obj == NULL))
  238. return(0);
  239. ASN1_OBJECT_free(attr->object);
  240. attr->object=OBJ_dup(obj);
  241. return(1);
  242. }
  243. int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype, const void *data, int len)
  244. {
  245. ASN1_TYPE *ttmp;
  246. ASN1_STRING *stmp;
  247. int atype;
  248. if (!attr) return 0;
  249. if(attrtype & MBSTRING_FLAG) {
  250. stmp = ASN1_STRING_set_by_NID(NULL, data, len, attrtype,
  251. OBJ_obj2nid(attr->object));
  252. if(!stmp) {
  253. X509err(X509_F_X509_ATTRIBUTE_SET1_DATA, ERR_R_ASN1_LIB);
  254. return 0;
  255. }
  256. atype = stmp->type;
  257. } else {
  258. if(!(stmp = ASN1_STRING_type_new(attrtype))) goto err;
  259. if(!ASN1_STRING_set(stmp, data, len)) goto err;
  260. atype = attrtype;
  261. }
  262. if(!(attr->value.set = sk_ASN1_TYPE_new_null())) goto err;
  263. if(!(ttmp = ASN1_TYPE_new())) goto err;
  264. if(!sk_ASN1_TYPE_push(attr->value.set, ttmp)) goto err;
  265. attr->single = 0;
  266. ASN1_TYPE_set(ttmp, atype, stmp);
  267. return 1;
  268. err:
  269. X509err(X509_F_X509_ATTRIBUTE_SET1_DATA, ERR_R_MALLOC_FAILURE);
  270. return 0;
  271. }
  272. int X509_ATTRIBUTE_count(X509_ATTRIBUTE *attr)
  273. {
  274. if(!attr->single) return sk_ASN1_TYPE_num(attr->value.set);
  275. if(attr->value.single) return 1;
  276. return 0;
  277. }
  278. ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr)
  279. {
  280. if (attr == NULL) return(NULL);
  281. return(attr->object);
  282. }
  283. void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx,
  284. int atrtype, void *data)
  285. {
  286. ASN1_TYPE *ttmp;
  287. ttmp = X509_ATTRIBUTE_get0_type(attr, idx);
  288. if(!ttmp) return NULL;
  289. if(atrtype != ASN1_TYPE_get(ttmp)){
  290. X509err(X509_F_X509_ATTRIBUTE_GET0_DATA, X509_R_WRONG_TYPE);
  291. return NULL;
  292. }
  293. return ttmp->value.ptr;
  294. }
  295. ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr, int idx)
  296. {
  297. if (attr == NULL) return(NULL);
  298. if(idx >= X509_ATTRIBUTE_count(attr)) return NULL;
  299. if(!attr->single) return sk_ASN1_TYPE_value(attr->value.set, idx);
  300. else return attr->value.single;
  301. }