You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

336 lines
9.8 KiB

  1. /* v3_lib.c */
  2. /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  3. * project 1999.
  4. */
  5. /* ====================================================================
  6. * Copyright (c) 1999 The OpenSSL Project. All rights reserved.
  7. *
  8. * Redistribution and use in source and binary forms, with or without
  9. * modification, are permitted provided that the following conditions
  10. * are met:
  11. *
  12. * 1. Redistributions of source code must retain the above copyright
  13. * notice, this list of conditions and the following disclaimer.
  14. *
  15. * 2. Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in
  17. * the documentation and/or other materials provided with the
  18. * distribution.
  19. *
  20. * 3. All advertising materials mentioning features or use of this
  21. * software must display the following acknowledgment:
  22. * "This product includes software developed by the OpenSSL Project
  23. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  24. *
  25. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  26. * endorse or promote products derived from this software without
  27. * prior written permission. For written permission, please contact
  28. * licensing@OpenSSL.org.
  29. *
  30. * 5. Products derived from this software may not be called "OpenSSL"
  31. * nor may "OpenSSL" appear in their names without prior written
  32. * permission of the OpenSSL Project.
  33. *
  34. * 6. Redistributions of any form whatsoever must retain the following
  35. * acknowledgment:
  36. * "This product includes software developed by the OpenSSL Project
  37. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  38. *
  39. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  40. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  41. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  42. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  43. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  44. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  45. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  46. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  47. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  48. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  49. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  50. * OF THE POSSIBILITY OF SUCH DAMAGE.
  51. * ====================================================================
  52. *
  53. * This product includes cryptographic software written by Eric Young
  54. * (eay@cryptsoft.com). This product includes software written by Tim
  55. * Hudson (tjh@cryptsoft.com).
  56. *
  57. */
  58. /* X509 v3 extension utilities */
  59. #include <stdio.h>
  60. #include <openssl/conf.h>
  61. #include <openssl/err.h>
  62. #include <openssl/mem.h>
  63. #include <openssl/obj.h>
  64. #include <openssl/x509v3.h>
  65. #include "ext_dat.h"
  66. static STACK_OF(X509V3_EXT_METHOD) *ext_list = NULL;
  67. static void ext_list_free(X509V3_EXT_METHOD *ext);
  68. static int ext_stack_cmp(const X509V3_EXT_METHOD **a, const X509V3_EXT_METHOD **b)
  69. {
  70. return ((*a)->ext_nid - (*b)->ext_nid);
  71. }
  72. int X509V3_EXT_add(X509V3_EXT_METHOD *ext)
  73. {
  74. if(!ext_list && !(ext_list = sk_X509V3_EXT_METHOD_new(ext_stack_cmp))) {
  75. OPENSSL_PUT_ERROR(X509V3, X509V3_EXT_add, ERR_R_MALLOC_FAILURE);
  76. ext_list_free(ext);
  77. return 0;
  78. }
  79. if(!sk_X509V3_EXT_METHOD_push(ext_list, ext)) {
  80. OPENSSL_PUT_ERROR(X509V3, X509V3_EXT_add, ERR_R_MALLOC_FAILURE);
  81. ext_list_free(ext);
  82. return 0;
  83. }
  84. return 1;
  85. }
  86. static int ext_cmp(const void *void_a,
  87. const void *void_b)
  88. {
  89. const X509V3_EXT_METHOD **a = (const X509V3_EXT_METHOD**) void_a;
  90. const X509V3_EXT_METHOD **b = (const X509V3_EXT_METHOD**) void_b;
  91. return ext_stack_cmp(a, b);
  92. }
  93. const X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid)
  94. {
  95. X509V3_EXT_METHOD tmp;
  96. const X509V3_EXT_METHOD *t = &tmp, * const *ret;
  97. size_t idx;
  98. if(nid < 0) return NULL;
  99. tmp.ext_nid = nid;
  100. ret = bsearch(&t, standard_exts, STANDARD_EXTENSION_COUNT, sizeof(X509V3_EXT_METHOD*), ext_cmp);
  101. if(ret) return *ret;
  102. if(!ext_list) return NULL;
  103. if (!sk_X509V3_EXT_METHOD_find(ext_list, &idx, &tmp))
  104. return NULL;
  105. return sk_X509V3_EXT_METHOD_value(ext_list, idx);
  106. }
  107. const X509V3_EXT_METHOD *X509V3_EXT_get(X509_EXTENSION *ext)
  108. {
  109. int nid;
  110. if((nid = OBJ_obj2nid(ext->object)) == NID_undef) return NULL;
  111. return X509V3_EXT_get_nid(nid);
  112. }
  113. int X509V3_EXT_free(int nid, void *ext_data)
  114. {
  115. const X509V3_EXT_METHOD *ext_method = X509V3_EXT_get_nid(nid);
  116. if (ext_method == NULL)
  117. {
  118. OPENSSL_PUT_ERROR(X509V3, X509V3_EXT_free, X509V3_R_CANNOT_FIND_FREE_FUNCTION);
  119. return 0;
  120. }
  121. if (ext_method->it != NULL)
  122. ASN1_item_free(ext_data, ASN1_ITEM_ptr(ext_method->it));
  123. else if (ext_method->ext_free != NULL)
  124. ext_method->ext_free(ext_data);
  125. else
  126. {
  127. OPENSSL_PUT_ERROR(X509V3, X509V3_EXT_free, X509V3_R_CANNOT_FIND_FREE_FUNCTION);
  128. return 0;
  129. }
  130. return 1;
  131. }
  132. int X509V3_EXT_add_list(X509V3_EXT_METHOD *extlist)
  133. {
  134. for(;extlist->ext_nid!=-1;extlist++)
  135. if(!X509V3_EXT_add(extlist)) return 0;
  136. return 1;
  137. }
  138. int X509V3_EXT_add_alias(int nid_to, int nid_from)
  139. {
  140. const X509V3_EXT_METHOD *ext;
  141. X509V3_EXT_METHOD *tmpext;
  142. if(!(ext = X509V3_EXT_get_nid(nid_from))) {
  143. OPENSSL_PUT_ERROR(X509V3, X509V3_EXT_add_alias, X509V3_R_EXTENSION_NOT_FOUND);
  144. return 0;
  145. }
  146. if(!(tmpext = (X509V3_EXT_METHOD *)OPENSSL_malloc(sizeof(X509V3_EXT_METHOD)))) {
  147. OPENSSL_PUT_ERROR(X509V3, X509V3_EXT_add_alias, ERR_R_MALLOC_FAILURE);
  148. return 0;
  149. }
  150. *tmpext = *ext;
  151. tmpext->ext_nid = nid_to;
  152. tmpext->ext_flags |= X509V3_EXT_DYNAMIC;
  153. return X509V3_EXT_add(tmpext);
  154. }
  155. void X509V3_EXT_cleanup(void)
  156. {
  157. sk_X509V3_EXT_METHOD_pop_free(ext_list, ext_list_free);
  158. ext_list = NULL;
  159. }
  160. static void ext_list_free(X509V3_EXT_METHOD *ext)
  161. {
  162. if(ext->ext_flags & X509V3_EXT_DYNAMIC) OPENSSL_free(ext);
  163. }
  164. /* Legacy function: we don't need to add standard extensions
  165. * any more because they are now kept in ext_dat.h.
  166. */
  167. int X509V3_add_standard_extensions(void)
  168. {
  169. return 1;
  170. }
  171. /* Return an extension internal structure */
  172. void *X509V3_EXT_d2i(X509_EXTENSION *ext)
  173. {
  174. const X509V3_EXT_METHOD *method;
  175. const unsigned char *p;
  176. if(!(method = X509V3_EXT_get(ext))) return NULL;
  177. p = ext->value->data;
  178. if(method->it) return ASN1_item_d2i(NULL, &p, ext->value->length, ASN1_ITEM_ptr(method->it));
  179. return method->d2i(NULL, &p, ext->value->length);
  180. }
  181. /* Get critical flag and decoded version of extension from a NID.
  182. * The "idx" variable returns the last found extension and can
  183. * be used to retrieve multiple extensions of the same NID.
  184. * However multiple extensions with the same NID is usually
  185. * due to a badly encoded certificate so if idx is NULL we
  186. * choke if multiple extensions exist.
  187. * The "crit" variable is set to the critical value.
  188. * The return value is the decoded extension or NULL on
  189. * error. The actual error can have several different causes,
  190. * the value of *crit reflects the cause:
  191. * >= 0, extension found but not decoded (reflects critical value).
  192. * -1 extension not found.
  193. * -2 extension occurs more than once.
  194. */
  195. void *X509V3_get_d2i(STACK_OF(X509_EXTENSION) *x, int nid, int *crit, int *idx)
  196. {
  197. int lastpos;
  198. size_t i;
  199. X509_EXTENSION *ex, *found_ex = NULL;
  200. if(!x) {
  201. if(idx) *idx = -1;
  202. if(crit) *crit = -1;
  203. return NULL;
  204. }
  205. if(idx) lastpos = *idx + 1;
  206. else lastpos = 0;
  207. if(lastpos < 0) lastpos = 0;
  208. for(i = lastpos; i < sk_X509_EXTENSION_num(x); i++)
  209. {
  210. ex = sk_X509_EXTENSION_value(x, i);
  211. if(OBJ_obj2nid(ex->object) == nid) {
  212. if(idx) {
  213. *idx = i;
  214. found_ex = ex;
  215. break;
  216. } else if(found_ex) {
  217. /* Found more than one */
  218. if(crit) *crit = -2;
  219. return NULL;
  220. }
  221. found_ex = ex;
  222. }
  223. }
  224. if(found_ex) {
  225. /* Found it */
  226. if(crit) *crit = X509_EXTENSION_get_critical(found_ex);
  227. return X509V3_EXT_d2i(found_ex);
  228. }
  229. /* Extension not found */
  230. if(idx) *idx = -1;
  231. if(crit) *crit = -1;
  232. return NULL;
  233. }
  234. /* This function is a general extension append, replace and delete utility.
  235. * The precise operation is governed by the 'flags' value. The 'crit' and
  236. * 'value' arguments (if relevant) are the extensions internal structure.
  237. */
  238. int X509V3_add1_i2d(STACK_OF(X509_EXTENSION) **x, int nid, void *value,
  239. int crit, unsigned long flags)
  240. {
  241. int extidx = -1;
  242. int errcode;
  243. X509_EXTENSION *ext, *extmp;
  244. unsigned long ext_op = flags & X509V3_ADD_OP_MASK;
  245. /* If appending we don't care if it exists, otherwise
  246. * look for existing extension.
  247. */
  248. if(ext_op != X509V3_ADD_APPEND)
  249. extidx = X509v3_get_ext_by_NID(*x, nid, -1);
  250. /* See if extension exists */
  251. if(extidx >= 0) {
  252. /* If keep existing, nothing to do */
  253. if(ext_op == X509V3_ADD_KEEP_EXISTING)
  254. return 1;
  255. /* If default then its an error */
  256. if(ext_op == X509V3_ADD_DEFAULT) {
  257. errcode = X509V3_R_EXTENSION_EXISTS;
  258. goto err;
  259. }
  260. /* If delete, just delete it */
  261. if(ext_op == X509V3_ADD_DELETE) {
  262. if(!sk_X509_EXTENSION_delete(*x, extidx)) return -1;
  263. return 1;
  264. }
  265. } else {
  266. /* If replace existing or delete, error since
  267. * extension must exist
  268. */
  269. if((ext_op == X509V3_ADD_REPLACE_EXISTING) ||
  270. (ext_op == X509V3_ADD_DELETE)) {
  271. errcode = X509V3_R_EXTENSION_NOT_FOUND;
  272. goto err;
  273. }
  274. }
  275. /* If we get this far then we have to create an extension:
  276. * could have some flags for alternative encoding schemes...
  277. */
  278. ext = X509V3_EXT_i2d(nid, crit, value);
  279. if(!ext) {
  280. OPENSSL_PUT_ERROR(X509V3, X509V3_add1_i2d, X509V3_R_ERROR_CREATING_EXTENSION);
  281. return 0;
  282. }
  283. /* If extension exists replace it.. */
  284. if(extidx >= 0) {
  285. extmp = sk_X509_EXTENSION_value(*x, extidx);
  286. X509_EXTENSION_free(extmp);
  287. if(!sk_X509_EXTENSION_set(*x, extidx, ext)) return -1;
  288. return 1;
  289. }
  290. if(!*x && !(*x = sk_X509_EXTENSION_new_null())) return -1;
  291. if(!sk_X509_EXTENSION_push(*x, ext)) return -1;
  292. return 1;
  293. err:
  294. if(!(flags & X509V3_ADD_SILENT))
  295. OPENSSL_PUT_ERROR(X509V3, X509V3_add1_i2d, errcode);
  296. return 0;
  297. }