Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

x509_v3.c 7.6 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  2. * All rights reserved.
  3. *
  4. * This package is an SSL implementation written
  5. * by Eric Young (eay@cryptsoft.com).
  6. * The implementation was written so as to conform with Netscapes SSL.
  7. *
  8. * This library is free for commercial and non-commercial use as long as
  9. * the following conditions are aheared to. The following conditions
  10. * apply to all code found in this distribution, be it the RC4, RSA,
  11. * lhash, DES, etc., code; not just the SSL code. The SSL documentation
  12. * included with this distribution is covered by the same copyright terms
  13. * except that the holder is Tim Hudson (tjh@cryptsoft.com).
  14. *
  15. * Copyright remains Eric Young's, and as such any Copyright notices in
  16. * the code are not to be removed.
  17. * If this package is used in a product, Eric Young should be given attribution
  18. * as the author of the parts of the library used.
  19. * This can be in the form of a textual message at program startup or
  20. * in documentation (online or textual) provided with the package.
  21. *
  22. * Redistribution and use in source and binary forms, with or without
  23. * modification, are permitted provided that the following conditions
  24. * are met:
  25. * 1. Redistributions of source code must retain the copyright
  26. * notice, this list of conditions and the following disclaimer.
  27. * 2. Redistributions in binary form must reproduce the above copyright
  28. * notice, this list of conditions and the following disclaimer in the
  29. * documentation and/or other materials provided with the distribution.
  30. * 3. All advertising materials mentioning features or use of this software
  31. * must display the following acknowledgement:
  32. * "This product includes cryptographic software written by
  33. * Eric Young (eay@cryptsoft.com)"
  34. * The word 'cryptographic' can be left out if the rouines from the library
  35. * being used are not cryptographic related :-).
  36. * 4. If you include any Windows specific code (or a derivative thereof) from
  37. * the apps directory (application code) you must include an acknowledgement:
  38. * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
  41. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  43. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  44. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  45. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  46. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  48. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  49. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  50. * SUCH DAMAGE.
  51. *
  52. * The licence and distribution terms for any publically available version or
  53. * derivative of this code cannot be changed. i.e. this code cannot simply be
  54. * copied and put under another distribution licence
  55. * [including the GNU Public Licence.] */
  56. #include <openssl/asn1.h>
  57. #include <openssl/err.h>
  58. #include <openssl/evp.h>
  59. #include <openssl/obj.h>
  60. #include <openssl/stack.h>
  61. #include <openssl/x509.h>
  62. #include <openssl/x509v3.h>
  63. int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x)
  64. {
  65. if (x == NULL) return(0);
  66. return(sk_X509_EXTENSION_num(x));
  67. }
  68. int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x, int nid,
  69. int lastpos)
  70. {
  71. const ASN1_OBJECT *obj;
  72. obj=OBJ_nid2obj(nid);
  73. if (obj == NULL) return(-2);
  74. return(X509v3_get_ext_by_OBJ(x,obj,lastpos));
  75. }
  76. int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *sk, const ASN1_OBJECT *obj,
  77. int lastpos)
  78. {
  79. int n;
  80. X509_EXTENSION *ex;
  81. if (sk == NULL) return(-1);
  82. lastpos++;
  83. if (lastpos < 0)
  84. lastpos=0;
  85. n=sk_X509_EXTENSION_num(sk);
  86. for ( ; lastpos < n; lastpos++)
  87. {
  88. ex=sk_X509_EXTENSION_value(sk,lastpos);
  89. if (OBJ_cmp(ex->object,obj) == 0)
  90. return(lastpos);
  91. }
  92. return(-1);
  93. }
  94. int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *sk, int crit,
  95. int lastpos)
  96. {
  97. int n;
  98. X509_EXTENSION *ex;
  99. if (sk == NULL) return(-1);
  100. lastpos++;
  101. if (lastpos < 0)
  102. lastpos=0;
  103. n=sk_X509_EXTENSION_num(sk);
  104. for ( ; lastpos < n; lastpos++)
  105. {
  106. ex=sk_X509_EXTENSION_value(sk,lastpos);
  107. if ( ((ex->critical > 0) && crit) ||
  108. ((ex->critical <= 0) && !crit))
  109. return(lastpos);
  110. }
  111. return(-1);
  112. }
  113. X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc)
  114. {
  115. if (x == NULL || loc < 0 || sk_X509_EXTENSION_num(x) <= (size_t) loc)
  116. return NULL;
  117. else
  118. return sk_X509_EXTENSION_value(x,loc);
  119. }
  120. X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc)
  121. {
  122. X509_EXTENSION *ret;
  123. if (x == NULL || loc < 0 || sk_X509_EXTENSION_num(x) <= (size_t) loc)
  124. return(NULL);
  125. ret=sk_X509_EXTENSION_delete(x,loc);
  126. return(ret);
  127. }
  128. STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x,
  129. X509_EXTENSION *ex, int loc)
  130. {
  131. X509_EXTENSION *new_ex=NULL;
  132. int n;
  133. STACK_OF(X509_EXTENSION) *sk=NULL;
  134. if (x == NULL)
  135. {
  136. OPENSSL_PUT_ERROR(X509, X509v3_add_ext, ERR_R_PASSED_NULL_PARAMETER);
  137. goto err2;
  138. }
  139. if (*x == NULL)
  140. {
  141. if ((sk=sk_X509_EXTENSION_new_null()) == NULL)
  142. goto err;
  143. }
  144. else
  145. sk= *x;
  146. n=sk_X509_EXTENSION_num(sk);
  147. if (loc > n) loc=n;
  148. else if (loc < 0) loc=n;
  149. if ((new_ex=X509_EXTENSION_dup(ex)) == NULL)
  150. goto err2;
  151. if (!sk_X509_EXTENSION_insert(sk,new_ex,loc))
  152. goto err;
  153. if (*x == NULL)
  154. *x=sk;
  155. return(sk);
  156. err:
  157. OPENSSL_PUT_ERROR(X509, X509v3_add_ext, ERR_R_MALLOC_FAILURE);
  158. err2:
  159. if (new_ex != NULL) X509_EXTENSION_free(new_ex);
  160. if (sk != NULL) sk_X509_EXTENSION_free(sk);
  161. return(NULL);
  162. }
  163. X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, int nid,
  164. int crit, ASN1_OCTET_STRING *data)
  165. {
  166. const ASN1_OBJECT *obj;
  167. X509_EXTENSION *ret;
  168. obj=OBJ_nid2obj(nid);
  169. if (obj == NULL)
  170. {
  171. OPENSSL_PUT_ERROR(X509, X509_EXTENSION_create_by_NID, X509_R_UNKNOWN_NID);
  172. return(NULL);
  173. }
  174. ret=X509_EXTENSION_create_by_OBJ(ex,obj,crit,data);
  175. return(ret);
  176. }
  177. X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex,
  178. const ASN1_OBJECT *obj, int crit, ASN1_OCTET_STRING *data)
  179. {
  180. X509_EXTENSION *ret;
  181. if ((ex == NULL) || (*ex == NULL))
  182. {
  183. if ((ret=X509_EXTENSION_new()) == NULL)
  184. {
  185. OPENSSL_PUT_ERROR(X509, X509_EXTENSION_create_by_OBJ, ERR_R_MALLOC_FAILURE);
  186. return(NULL);
  187. }
  188. }
  189. else
  190. ret= *ex;
  191. if (!X509_EXTENSION_set_object(ret,obj))
  192. goto err;
  193. if (!X509_EXTENSION_set_critical(ret,crit))
  194. goto err;
  195. if (!X509_EXTENSION_set_data(ret,data))
  196. goto err;
  197. if ((ex != NULL) && (*ex == NULL)) *ex=ret;
  198. return(ret);
  199. err:
  200. if ((ex == NULL) || (ret != *ex))
  201. X509_EXTENSION_free(ret);
  202. return(NULL);
  203. }
  204. int X509_EXTENSION_set_object(X509_EXTENSION *ex, const ASN1_OBJECT *obj)
  205. {
  206. if ((ex == NULL) || (obj == NULL))
  207. return(0);
  208. ASN1_OBJECT_free(ex->object);
  209. ex->object=OBJ_dup(obj);
  210. return(1);
  211. }
  212. int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit)
  213. {
  214. if (ex == NULL) return(0);
  215. ex->critical=(crit)?0xFF:-1;
  216. return(1);
  217. }
  218. int X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data)
  219. {
  220. int i;
  221. if (ex == NULL) return(0);
  222. i=M_ASN1_OCTET_STRING_set(ex->value,data->data,data->length);
  223. if (!i) return(0);
  224. return(1);
  225. }
  226. ASN1_OBJECT *X509_EXTENSION_get_object(X509_EXTENSION *ex)
  227. {
  228. if (ex == NULL) return(NULL);
  229. return(ex->object);
  230. }
  231. ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ex)
  232. {
  233. if (ex == NULL) return(NULL);
  234. return(ex->value);
  235. }
  236. int X509_EXTENSION_get_critical(X509_EXTENSION *ex)
  237. {
  238. if (ex == NULL) return(0);
  239. if(ex->critical > 0) return 1;
  240. return 0;
  241. }