Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

354 řádky
10 KiB

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