tasn_fre.c 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. /* tasn_fre.c */
  2. /* Written by Dr Stephen N Henson (steve@openssl.org) 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 ((i >= 0) && (i < it->tcount))
  108. {
  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. {
  118. OPENSSL_free(*pval);
  119. *pval = NULL;
  120. }
  121. break;
  122. case ASN1_ITYPE_COMPAT:
  123. cf = it->funcs;
  124. if (cf && cf->asn1_free)
  125. cf->asn1_free(*pval);
  126. break;
  127. case ASN1_ITYPE_EXTERN:
  128. ef = it->funcs;
  129. if (ef && ef->asn1_ex_free)
  130. ef->asn1_ex_free(pval, it);
  131. break;
  132. case ASN1_ITYPE_NDEF_SEQUENCE:
  133. case ASN1_ITYPE_SEQUENCE:
  134. if (asn1_do_lock(pval, -1, it) > 0)
  135. return;
  136. if (asn1_cb)
  137. {
  138. i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL);
  139. if (i == 2)
  140. return;
  141. }
  142. asn1_enc_free(pval, it);
  143. /* If we free up as normal we will invalidate any
  144. * ANY DEFINED BY field and we wont be able to
  145. * determine the type of the field it defines. So
  146. * free up in reverse order.
  147. */
  148. tt = it->templates + it->tcount - 1;
  149. for (i = 0; i < it->tcount; tt--, i++)
  150. {
  151. ASN1_VALUE **pseqval;
  152. seqtt = asn1_do_adb(pval, tt, 0);
  153. if (!seqtt)
  154. continue;
  155. pseqval = asn1_get_field_ptr(pval, seqtt);
  156. ASN1_template_free(pseqval, seqtt);
  157. }
  158. if (asn1_cb)
  159. asn1_cb(ASN1_OP_FREE_POST, pval, it, NULL);
  160. if (!combine)
  161. {
  162. OPENSSL_free(*pval);
  163. *pval = NULL;
  164. }
  165. break;
  166. }
  167. }
  168. void ASN1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
  169. {
  170. int i;
  171. if (tt->flags & ASN1_TFLG_SK_MASK)
  172. {
  173. STACK_OF(ASN1_VALUE) *sk = (STACK_OF(ASN1_VALUE) *)*pval;
  174. for (i = 0; i < sk_ASN1_VALUE_num(sk); i++)
  175. {
  176. ASN1_VALUE *vtmp;
  177. vtmp = sk_ASN1_VALUE_value(sk, i);
  178. asn1_item_combine_free(&vtmp, ASN1_ITEM_ptr(tt->item),
  179. 0);
  180. }
  181. sk_ASN1_VALUE_free(sk);
  182. *pval = NULL;
  183. }
  184. else
  185. asn1_item_combine_free(pval, ASN1_ITEM_ptr(tt->item),
  186. tt->flags & ASN1_TFLG_COMBINE);
  187. }
  188. void ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
  189. {
  190. int utype;
  191. if (it)
  192. {
  193. const ASN1_PRIMITIVE_FUNCS *pf;
  194. pf = it->funcs;
  195. if (pf && pf->prim_free)
  196. {
  197. pf->prim_free(pval, it);
  198. return;
  199. }
  200. }
  201. /* Special case: if 'it' is NULL free contents of ASN1_TYPE */
  202. if (!it)
  203. {
  204. ASN1_TYPE *typ = (ASN1_TYPE *)*pval;
  205. utype = typ->type;
  206. pval = &typ->value.asn1_value;
  207. if (!*pval)
  208. return;
  209. }
  210. else if (it->itype == ASN1_ITYPE_MSTRING)
  211. {
  212. utype = -1;
  213. if (!*pval)
  214. return;
  215. }
  216. else
  217. {
  218. utype = it->utype;
  219. if ((utype != V_ASN1_BOOLEAN) && !*pval)
  220. return;
  221. }
  222. switch(utype)
  223. {
  224. case V_ASN1_OBJECT:
  225. ASN1_OBJECT_free((ASN1_OBJECT *)*pval);
  226. break;
  227. case V_ASN1_BOOLEAN:
  228. if (it)
  229. *(ASN1_BOOLEAN *)pval = it->size;
  230. else
  231. *(ASN1_BOOLEAN *)pval = -1;
  232. return;
  233. case V_ASN1_NULL:
  234. break;
  235. case V_ASN1_ANY:
  236. ASN1_primitive_free(pval, NULL);
  237. OPENSSL_free(*pval);
  238. break;
  239. default:
  240. ASN1_STRING_free((ASN1_STRING *)*pval);
  241. *pval = NULL;
  242. break;
  243. }
  244. *pval = NULL;
  245. }