Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

279 righe
8.4 KiB

  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)
  66. return (0);
  67. return (sk_X509_EXTENSION_num(x));
  68. }
  69. int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x, int nid,
  70. int lastpos)
  71. {
  72. const ASN1_OBJECT *obj;
  73. obj = OBJ_nid2obj(nid);
  74. if (obj == NULL)
  75. return (-2);
  76. return (X509v3_get_ext_by_OBJ(x, obj, lastpos));
  77. }
  78. int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *sk,
  79. const ASN1_OBJECT *obj, int lastpos)
  80. {
  81. int n;
  82. X509_EXTENSION *ex;
  83. if (sk == NULL)
  84. return (-1);
  85. lastpos++;
  86. if (lastpos < 0)
  87. lastpos = 0;
  88. n = sk_X509_EXTENSION_num(sk);
  89. for (; lastpos < n; lastpos++) {
  90. ex = sk_X509_EXTENSION_value(sk, lastpos);
  91. if (OBJ_cmp(ex->object, obj) == 0)
  92. return (lastpos);
  93. }
  94. return (-1);
  95. }
  96. int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *sk, int crit,
  97. int lastpos)
  98. {
  99. int n;
  100. X509_EXTENSION *ex;
  101. if (sk == NULL)
  102. return (-1);
  103. lastpos++;
  104. if (lastpos < 0)
  105. lastpos = 0;
  106. n = sk_X509_EXTENSION_num(sk);
  107. for (; lastpos < n; lastpos++) {
  108. ex = sk_X509_EXTENSION_value(sk, lastpos);
  109. if (((ex->critical > 0) && crit) || ((ex->critical <= 0) && !crit))
  110. return (lastpos);
  111. }
  112. return (-1);
  113. }
  114. X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x, int loc)
  115. {
  116. if (x == NULL || loc < 0 || sk_X509_EXTENSION_num(x) <= (size_t)loc)
  117. return NULL;
  118. else
  119. return sk_X509_EXTENSION_value(x, loc);
  120. }
  121. X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x, int loc)
  122. {
  123. X509_EXTENSION *ret;
  124. if (x == NULL || loc < 0 || sk_X509_EXTENSION_num(x) <= (size_t)loc)
  125. return (NULL);
  126. ret = sk_X509_EXTENSION_delete(x, loc);
  127. return (ret);
  128. }
  129. STACK_OF(X509_EXTENSION) *X509v3_add_ext(STACK_OF(X509_EXTENSION) **x,
  130. X509_EXTENSION *ex, int loc)
  131. {
  132. X509_EXTENSION *new_ex = NULL;
  133. int n;
  134. STACK_OF(X509_EXTENSION) *sk = NULL;
  135. if (x == NULL) {
  136. OPENSSL_PUT_ERROR(X509, ERR_R_PASSED_NULL_PARAMETER);
  137. goto err2;
  138. }
  139. if (*x == NULL) {
  140. if ((sk = sk_X509_EXTENSION_new_null()) == NULL)
  141. goto err;
  142. } else
  143. sk = *x;
  144. n = sk_X509_EXTENSION_num(sk);
  145. if (loc > n)
  146. loc = n;
  147. else if (loc < 0)
  148. 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, ERR_R_MALLOC_FAILURE);
  158. err2:
  159. if (new_ex != NULL)
  160. X509_EXTENSION_free(new_ex);
  161. if (sk != NULL)
  162. sk_X509_EXTENSION_free(sk);
  163. return (NULL);
  164. }
  165. X509_EXTENSION *X509_EXTENSION_create_by_NID(X509_EXTENSION **ex, int nid,
  166. int crit,
  167. ASN1_OCTET_STRING *data)
  168. {
  169. const ASN1_OBJECT *obj;
  170. X509_EXTENSION *ret;
  171. obj = OBJ_nid2obj(nid);
  172. if (obj == NULL) {
  173. OPENSSL_PUT_ERROR(X509, X509_R_UNKNOWN_NID);
  174. return (NULL);
  175. }
  176. ret = X509_EXTENSION_create_by_OBJ(ex, obj, crit, data);
  177. return (ret);
  178. }
  179. X509_EXTENSION *X509_EXTENSION_create_by_OBJ(X509_EXTENSION **ex,
  180. const ASN1_OBJECT *obj, int crit,
  181. ASN1_OCTET_STRING *data)
  182. {
  183. X509_EXTENSION *ret;
  184. if ((ex == NULL) || (*ex == NULL)) {
  185. if ((ret = X509_EXTENSION_new()) == NULL) {
  186. OPENSSL_PUT_ERROR(X509, ERR_R_MALLOC_FAILURE);
  187. return (NULL);
  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))
  198. *ex = ret;
  199. return (ret);
  200. err:
  201. if ((ex == NULL) || (ret != *ex))
  202. X509_EXTENSION_free(ret);
  203. return (NULL);
  204. }
  205. int X509_EXTENSION_set_object(X509_EXTENSION *ex, const ASN1_OBJECT *obj)
  206. {
  207. if ((ex == NULL) || (obj == NULL))
  208. return (0);
  209. ASN1_OBJECT_free(ex->object);
  210. ex->object = OBJ_dup(obj);
  211. return ex->object != NULL;
  212. }
  213. int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit)
  214. {
  215. if (ex == NULL)
  216. return (0);
  217. ex->critical = (crit) ? 0xFF : -1;
  218. return (1);
  219. }
  220. int X509_EXTENSION_set_data(X509_EXTENSION *ex, ASN1_OCTET_STRING *data)
  221. {
  222. int i;
  223. if (ex == NULL)
  224. return (0);
  225. i = M_ASN1_OCTET_STRING_set(ex->value, data->data, data->length);
  226. if (!i)
  227. return (0);
  228. return (1);
  229. }
  230. ASN1_OBJECT *X509_EXTENSION_get_object(X509_EXTENSION *ex)
  231. {
  232. if (ex == NULL)
  233. return (NULL);
  234. return (ex->object);
  235. }
  236. ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ex)
  237. {
  238. if (ex == NULL)
  239. return (NULL);
  240. return (ex->value);
  241. }
  242. int X509_EXTENSION_get_critical(X509_EXTENSION *ex)
  243. {
  244. if (ex == NULL)
  245. return (0);
  246. if (ex->critical > 0)
  247. return 1;
  248. return 0;
  249. }