tasn_fre.c 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. /* tasn_fre.c */
  2. /*
  3. * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
  4. * 2000.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 2000 The OpenSSL Project. All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in
  18. * the documentation and/or other materials provided with the
  19. * distribution.
  20. *
  21. * 3. All advertising materials mentioning features or use of this
  22. * software must display the following acknowledgment:
  23. * "This product includes software developed by the OpenSSL Project
  24. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  25. *
  26. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  27. * endorse or promote products derived from this software without
  28. * prior written permission. For written permission, please contact
  29. * licensing@OpenSSL.org.
  30. *
  31. * 5. Products derived from this software may not be called "OpenSSL"
  32. * nor may "OpenSSL" appear in their names without prior written
  33. * permission of the OpenSSL Project.
  34. *
  35. * 6. Redistributions of any form whatsoever must retain the following
  36. * acknowledgment:
  37. * "This product includes software developed by the OpenSSL Project
  38. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  39. *
  40. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  41. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  42. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  43. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  44. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  45. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  46. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  47. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  48. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  49. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  50. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  51. * OF THE POSSIBILITY OF SUCH DAMAGE.
  52. * ====================================================================
  53. *
  54. * This product includes cryptographic software written by Eric Young
  55. * (eay@cryptsoft.com). This product includes software written by Tim
  56. * Hudson (tjh@cryptsoft.com).
  57. *
  58. */
  59. #include <stddef.h>
  60. #include <openssl/asn1.h>
  61. #include <openssl/asn1t.h>
  62. #include <openssl/objects.h>
  63. static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it,
  64. int combine);
  65. /* Free up an ASN1 structure */
  66. void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it)
  67. {
  68. asn1_item_combine_free(&val, it, 0);
  69. }
  70. void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
  71. {
  72. asn1_item_combine_free(pval, it, 0);
  73. }
  74. static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it,
  75. int combine)
  76. {
  77. const ASN1_TEMPLATE *tt = NULL, *seqtt;
  78. const ASN1_EXTERN_FUNCS *ef;
  79. const ASN1_COMPAT_FUNCS *cf;
  80. const ASN1_AUX *aux = it->funcs;
  81. ASN1_aux_cb *asn1_cb;
  82. int i;
  83. if (!pval)
  84. return;
  85. if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
  86. return;
  87. if (aux && aux->asn1_cb)
  88. asn1_cb = aux->asn1_cb;
  89. else
  90. asn1_cb = 0;
  91. switch (it->itype) {
  92. case ASN1_ITYPE_PRIMITIVE:
  93. if (it->templates)
  94. ASN1_template_free(pval, it->templates);
  95. else
  96. ASN1_primitive_free(pval, it);
  97. break;
  98. case ASN1_ITYPE_MSTRING:
  99. ASN1_primitive_free(pval, it);
  100. break;
  101. case ASN1_ITYPE_CHOICE:
  102. if (asn1_cb) {
  103. i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL);
  104. if (i == 2)
  105. return;
  106. }
  107. i = asn1_get_choice_selector(pval, it);
  108. if ((i >= 0) && (i < it->tcount)) {
  109. ASN1_VALUE **pchval;
  110. tt = it->templates + i;
  111. pchval = asn1_get_field_ptr(pval, tt);
  112. ASN1_template_free(pchval, tt);
  113. }
  114. if (asn1_cb)
  115. asn1_cb(ASN1_OP_FREE_POST, pval, it, NULL);
  116. if (!combine) {
  117. OPENSSL_free(*pval);
  118. *pval = NULL;
  119. }
  120. break;
  121. case ASN1_ITYPE_COMPAT:
  122. cf = it->funcs;
  123. if (cf && cf->asn1_free)
  124. cf->asn1_free(*pval);
  125. break;
  126. case ASN1_ITYPE_EXTERN:
  127. ef = it->funcs;
  128. if (ef && ef->asn1_ex_free)
  129. ef->asn1_ex_free(pval, it);
  130. break;
  131. case ASN1_ITYPE_NDEF_SEQUENCE:
  132. case ASN1_ITYPE_SEQUENCE:
  133. if (asn1_do_lock(pval, -1, it) > 0)
  134. return;
  135. if (asn1_cb) {
  136. i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL);
  137. if (i == 2)
  138. return;
  139. }
  140. asn1_enc_free(pval, it);
  141. /*
  142. * If we free up as normal we will invalidate any ANY DEFINED BY
  143. * field and we wont be able to determine the type of the field it
  144. * defines. So free up in reverse order.
  145. */
  146. tt = it->templates + it->tcount - 1;
  147. for (i = 0; i < it->tcount; tt--, i++) {
  148. ASN1_VALUE **pseqval;
  149. seqtt = asn1_do_adb(pval, tt, 0);
  150. if (!seqtt)
  151. continue;
  152. pseqval = asn1_get_field_ptr(pval, seqtt);
  153. ASN1_template_free(pseqval, seqtt);
  154. }
  155. if (asn1_cb)
  156. asn1_cb(ASN1_OP_FREE_POST, pval, it, NULL);
  157. if (!combine) {
  158. OPENSSL_free(*pval);
  159. *pval = NULL;
  160. }
  161. break;
  162. }
  163. }
  164. void ASN1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
  165. {
  166. int i;
  167. if (tt->flags & ASN1_TFLG_SK_MASK) {
  168. STACK_OF(ASN1_VALUE) *sk = (STACK_OF(ASN1_VALUE) *)*pval;
  169. for (i = 0; i < sk_ASN1_VALUE_num(sk); i++) {
  170. ASN1_VALUE *vtmp;
  171. vtmp = sk_ASN1_VALUE_value(sk, i);
  172. asn1_item_combine_free(&vtmp, ASN1_ITEM_ptr(tt->item), 0);
  173. }
  174. sk_ASN1_VALUE_free(sk);
  175. *pval = NULL;
  176. } else
  177. asn1_item_combine_free(pval, ASN1_ITEM_ptr(tt->item),
  178. tt->flags & ASN1_TFLG_COMBINE);
  179. }
  180. void ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
  181. {
  182. int utype;
  183. if (it) {
  184. const ASN1_PRIMITIVE_FUNCS *pf;
  185. pf = it->funcs;
  186. if (pf && pf->prim_free) {
  187. pf->prim_free(pval, it);
  188. return;
  189. }
  190. }
  191. /* Special case: if 'it' is NULL free contents of ASN1_TYPE */
  192. if (!it) {
  193. ASN1_TYPE *typ = (ASN1_TYPE *)*pval;
  194. utype = typ->type;
  195. pval = &typ->value.asn1_value;
  196. if (!*pval)
  197. return;
  198. } else if (it->itype == ASN1_ITYPE_MSTRING) {
  199. utype = -1;
  200. if (!*pval)
  201. return;
  202. } else {
  203. utype = it->utype;
  204. if ((utype != V_ASN1_BOOLEAN) && !*pval)
  205. return;
  206. }
  207. switch (utype) {
  208. case V_ASN1_OBJECT:
  209. ASN1_OBJECT_free((ASN1_OBJECT *)*pval);
  210. break;
  211. case V_ASN1_BOOLEAN:
  212. if (it)
  213. *(ASN1_BOOLEAN *)pval = it->size;
  214. else
  215. *(ASN1_BOOLEAN *)pval = -1;
  216. return;
  217. case V_ASN1_NULL:
  218. break;
  219. case V_ASN1_ANY:
  220. ASN1_primitive_free(pval, NULL);
  221. OPENSSL_free(*pval);
  222. break;
  223. default:
  224. ASN1_STRING_free((ASN1_STRING *)*pval);
  225. *pval = NULL;
  226. break;
  227. }
  228. *pval = NULL;
  229. }