tasn_fre.c 6.8 KB

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