tasn_fre.c 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. /*
  2. * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
  3. * 2000.
  4. */
  5. /* ====================================================================
  6. * Copyright (c) 2000 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. #include <stddef.h>
  59. #include <openssl/asn1.h>
  60. #include <openssl/asn1t.h>
  61. #include <openssl/objects.h>
  62. #include "asn1_locl.h"
  63. static void asn1_item_embed_free(ASN1_VALUE **pval, const ASN1_ITEM *it,
  64. int embed);
  65. /* Free up an ASN1 structure */
  66. void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it)
  67. {
  68. asn1_item_embed_free(&val, it, 0);
  69. }
  70. void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
  71. {
  72. asn1_item_embed_free(pval, it, 0);
  73. }
  74. static void asn1_item_embed_free(ASN1_VALUE **pval, const ASN1_ITEM *it,
  75. int embed)
  76. {
  77. const ASN1_TEMPLATE *tt = NULL, *seqtt;
  78. const ASN1_EXTERN_FUNCS *ef;
  79. const ASN1_AUX *aux = it->funcs;
  80. ASN1_aux_cb *asn1_cb;
  81. int i;
  82. if (!pval)
  83. return;
  84. if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
  85. return;
  86. if (aux && aux->asn1_cb)
  87. asn1_cb = aux->asn1_cb;
  88. else
  89. asn1_cb = 0;
  90. switch (it->itype) {
  91. case ASN1_ITYPE_PRIMITIVE:
  92. if (it->templates)
  93. asn1_template_free(pval, it->templates);
  94. else
  95. asn1_primitive_free(pval, it);
  96. break;
  97. case ASN1_ITYPE_MSTRING:
  98. asn1_primitive_free(pval, it);
  99. break;
  100. case ASN1_ITYPE_CHOICE:
  101. if (asn1_cb) {
  102. i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL);
  103. if (i == 2)
  104. return;
  105. }
  106. i = asn1_get_choice_selector(pval, it);
  107. if ((i >= 0) && (i < it->tcount)) {
  108. ASN1_VALUE **pchval;
  109. tt = it->templates + i;
  110. pchval = asn1_get_field_ptr(pval, tt);
  111. asn1_template_free(pchval, tt);
  112. }
  113. if (asn1_cb)
  114. asn1_cb(ASN1_OP_FREE_POST, pval, it, NULL);
  115. if (embed == 0) {
  116. OPENSSL_free(*pval);
  117. *pval = NULL;
  118. }
  119. break;
  120. case ASN1_ITYPE_EXTERN:
  121. ef = it->funcs;
  122. if (ef && ef->asn1_ex_free)
  123. ef->asn1_ex_free(pval, it);
  124. break;
  125. case ASN1_ITYPE_NDEF_SEQUENCE:
  126. case ASN1_ITYPE_SEQUENCE:
  127. if (asn1_do_lock(pval, -1, it) > 0)
  128. return;
  129. if (asn1_cb) {
  130. i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL);
  131. if (i == 2)
  132. return;
  133. }
  134. asn1_enc_free(pval, it);
  135. /*
  136. * If we free up as normal we will invalidate any ANY DEFINED BY
  137. * field and we wont be able to determine the type of the field it
  138. * defines. So free up in reverse order.
  139. */
  140. tt = it->templates + it->tcount - 1;
  141. for (i = 0; i < it->tcount; tt--, i++) {
  142. ASN1_VALUE **pseqval;
  143. seqtt = asn1_do_adb(pval, tt, 0);
  144. if (!seqtt)
  145. continue;
  146. pseqval = asn1_get_field_ptr(pval, seqtt);
  147. asn1_template_free(pseqval, seqtt);
  148. }
  149. if (asn1_cb)
  150. asn1_cb(ASN1_OP_FREE_POST, pval, it, NULL);
  151. if (embed == 0) {
  152. OPENSSL_free(*pval);
  153. *pval = NULL;
  154. }
  155. break;
  156. }
  157. }
  158. void asn1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
  159. {
  160. int embed = tt->flags & ASN1_TFLG_EMBED;
  161. ASN1_VALUE *tval;
  162. if (embed) {
  163. tval = (ASN1_VALUE *)pval;
  164. pval = &tval;
  165. }
  166. if (tt->flags & ASN1_TFLG_SK_MASK) {
  167. STACK_OF(ASN1_VALUE) *sk = (STACK_OF(ASN1_VALUE) *)*pval;
  168. int i;
  169. for (i = 0; i < sk_ASN1_VALUE_num(sk); i++) {
  170. ASN1_VALUE *vtmp = sk_ASN1_VALUE_value(sk, i);
  171. asn1_item_embed_free(&vtmp, ASN1_ITEM_ptr(tt->item), embed);
  172. }
  173. sk_ASN1_VALUE_free(sk);
  174. *pval = NULL;
  175. } else {
  176. asn1_item_embed_free(pval, ASN1_ITEM_ptr(tt->item), embed);
  177. }
  178. }
  179. void asn1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
  180. {
  181. int utype;
  182. /* Special case: if 'it' is a primitive with a free_func, use that. */
  183. if (it) {
  184. const ASN1_PRIMITIVE_FUNCS *pf = it->funcs;
  185. if (pf && pf->prim_free) {
  186. pf->prim_free(pval, it);
  187. return;
  188. }
  189. }
  190. /* Special case: if 'it' is NULL, free contents of ASN1_TYPE */
  191. if (!it) {
  192. ASN1_TYPE *typ = (ASN1_TYPE *)*pval;
  193. utype = typ->type;
  194. pval = &typ->value.asn1_value;
  195. if (!*pval)
  196. return;
  197. } else if (it->itype == ASN1_ITYPE_MSTRING) {
  198. utype = -1;
  199. if (!*pval)
  200. return;
  201. } else {
  202. utype = it->utype;
  203. if ((utype != V_ASN1_BOOLEAN) && !*pval)
  204. return;
  205. }
  206. switch (utype) {
  207. case V_ASN1_OBJECT:
  208. ASN1_OBJECT_free((ASN1_OBJECT *)*pval);
  209. break;
  210. case V_ASN1_BOOLEAN:
  211. if (it)
  212. *(ASN1_BOOLEAN *)pval = it->size;
  213. else
  214. *(ASN1_BOOLEAN *)pval = -1;
  215. return;
  216. case V_ASN1_NULL:
  217. break;
  218. case V_ASN1_ANY:
  219. asn1_primitive_free(pval, NULL);
  220. OPENSSL_free(*pval);
  221. break;
  222. default:
  223. ASN1_STRING_free((ASN1_STRING *)*pval);
  224. break;
  225. }
  226. *pval = NULL;
  227. }