tasn_utl.c 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. /* tasn_utl.c */
  2. /*
  3. * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
  4. * 2000.
  5. */
  6. /* ====================================================================
  7. * Copyright (c) 2000-2004 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 <string.h>
  61. #include <openssl/asn1.h>
  62. #include <openssl/asn1t.h>
  63. #include <openssl/objects.h>
  64. #include <openssl/err.h>
  65. /* Utility functions for manipulating fields and offsets */
  66. /* Add 'offset' to 'addr' */
  67. #define offset2ptr(addr, offset) (void *)(((char *) addr) + offset)
  68. /*
  69. * Given an ASN1_ITEM CHOICE type return the selector value
  70. */
  71. int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it)
  72. {
  73. int *sel = offset2ptr(*pval, it->utype);
  74. return *sel;
  75. }
  76. /*
  77. * Given an ASN1_ITEM CHOICE type set the selector value, return old value.
  78. */
  79. int asn1_set_choice_selector(ASN1_VALUE **pval, int value,
  80. const ASN1_ITEM *it)
  81. {
  82. int *sel, ret;
  83. sel = offset2ptr(*pval, it->utype);
  84. ret = *sel;
  85. *sel = value;
  86. return ret;
  87. }
  88. /*
  89. * Do reference counting. The value 'op' decides what to do. if it is +1
  90. * then the count is incremented. If op is 0 count is set to 1. If op is -1
  91. * count is decremented and the return value is the current refrence count or
  92. * 0 if no reference count exists.
  93. */
  94. int asn1_do_lock(ASN1_VALUE **pval, int op, const ASN1_ITEM *it)
  95. {
  96. const ASN1_AUX *aux;
  97. int *lck, ret;
  98. if ((it->itype != ASN1_ITYPE_SEQUENCE)
  99. && (it->itype != ASN1_ITYPE_NDEF_SEQUENCE))
  100. return 0;
  101. aux = it->funcs;
  102. if (!aux || !(aux->flags & ASN1_AFLG_REFCOUNT))
  103. return 0;
  104. lck = offset2ptr(*pval, aux->ref_offset);
  105. if (op == 0) {
  106. *lck = 1;
  107. return 1;
  108. }
  109. ret = CRYPTO_add(lck, op, aux->ref_lock);
  110. #ifdef REF_PRINT
  111. fprintf(stderr, "%s: Reference Count: %d\n", it->sname, *lck);
  112. #endif
  113. #ifdef REF_CHECK
  114. if (ret < 0)
  115. fprintf(stderr, "%s, bad reference count\n", it->sname);
  116. #endif
  117. return ret;
  118. }
  119. static ASN1_ENCODING *asn1_get_enc_ptr(ASN1_VALUE **pval, const ASN1_ITEM *it)
  120. {
  121. const ASN1_AUX *aux;
  122. if (!pval || !*pval)
  123. return NULL;
  124. aux = it->funcs;
  125. if (!aux || !(aux->flags & ASN1_AFLG_ENCODING))
  126. return NULL;
  127. return offset2ptr(*pval, aux->enc_offset);
  128. }
  129. void asn1_enc_init(ASN1_VALUE **pval, const ASN1_ITEM *it)
  130. {
  131. ASN1_ENCODING *enc;
  132. enc = asn1_get_enc_ptr(pval, it);
  133. if (enc) {
  134. enc->enc = NULL;
  135. enc->len = 0;
  136. enc->modified = 1;
  137. }
  138. }
  139. void asn1_enc_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
  140. {
  141. ASN1_ENCODING *enc;
  142. enc = asn1_get_enc_ptr(pval, it);
  143. if (enc) {
  144. if (enc->enc)
  145. OPENSSL_free(enc->enc);
  146. enc->enc = NULL;
  147. enc->len = 0;
  148. enc->modified = 1;
  149. }
  150. }
  151. int asn1_enc_save(ASN1_VALUE **pval, const unsigned char *in, int inlen,
  152. const ASN1_ITEM *it)
  153. {
  154. ASN1_ENCODING *enc;
  155. enc = asn1_get_enc_ptr(pval, it);
  156. if (!enc)
  157. return 1;
  158. if (enc->enc)
  159. OPENSSL_free(enc->enc);
  160. enc->enc = OPENSSL_malloc(inlen);
  161. if (!enc->enc)
  162. return 0;
  163. memcpy(enc->enc, in, inlen);
  164. enc->len = inlen;
  165. enc->modified = 0;
  166. return 1;
  167. }
  168. int asn1_enc_restore(int *len, unsigned char **out, ASN1_VALUE **pval,
  169. const ASN1_ITEM *it)
  170. {
  171. ASN1_ENCODING *enc;
  172. enc = asn1_get_enc_ptr(pval, it);
  173. if (!enc || enc->modified)
  174. return 0;
  175. if (out) {
  176. memcpy(*out, enc->enc, enc->len);
  177. *out += enc->len;
  178. }
  179. if (len)
  180. *len = enc->len;
  181. return 1;
  182. }
  183. /* Given an ASN1_TEMPLATE get a pointer to a field */
  184. ASN1_VALUE **asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
  185. {
  186. ASN1_VALUE **pvaltmp;
  187. if (tt->flags & ASN1_TFLG_COMBINE)
  188. return pval;
  189. pvaltmp = offset2ptr(*pval, tt->offset);
  190. /*
  191. * NOTE for BOOLEAN types the field is just a plain int so we can't
  192. * return int **, so settle for (int *).
  193. */
  194. return pvaltmp;
  195. }
  196. /*
  197. * Handle ANY DEFINED BY template, find the selector, look up the relevant
  198. * ASN1_TEMPLATE in the table and return it.
  199. */
  200. const ASN1_TEMPLATE *asn1_do_adb(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt,
  201. int nullerr)
  202. {
  203. const ASN1_ADB *adb;
  204. const ASN1_ADB_TABLE *atbl;
  205. long selector;
  206. ASN1_VALUE **sfld;
  207. int i;
  208. if (!(tt->flags & ASN1_TFLG_ADB_MASK))
  209. return tt;
  210. /* Else ANY DEFINED BY ... get the table */
  211. adb = ASN1_ADB_ptr(tt->item);
  212. /* Get the selector field */
  213. sfld = offset2ptr(*pval, adb->offset);
  214. /* Check if NULL */
  215. if (*sfld == NULL) {
  216. if (!adb->null_tt)
  217. goto err;
  218. return adb->null_tt;
  219. }
  220. /*
  221. * Convert type to a long: NB: don't check for NID_undef here because it
  222. * might be a legitimate value in the table
  223. */
  224. if (tt->flags & ASN1_TFLG_ADB_OID)
  225. selector = OBJ_obj2nid((ASN1_OBJECT *)*sfld);
  226. else
  227. selector = ASN1_INTEGER_get((ASN1_INTEGER *)*sfld);
  228. /*
  229. * Try to find matching entry in table Maybe should check application
  230. * types first to allow application override? Might also be useful to
  231. * have a flag which indicates table is sorted and we can do a binary
  232. * search. For now stick to a linear search.
  233. */
  234. for (atbl = adb->tbl, i = 0; i < adb->tblcount; i++, atbl++)
  235. if (atbl->value == selector)
  236. return &atbl->tt;
  237. /* FIXME: need to search application table too */
  238. /* No match, return default type */
  239. if (!adb->default_tt)
  240. goto err;
  241. return adb->default_tt;
  242. err:
  243. /* FIXME: should log the value or OID of unsupported type */
  244. if (nullerr)
  245. ASN1err(ASN1_F_ASN1_DO_ADB, ASN1_R_UNSUPPORTED_ANY_DEFINED_BY_TYPE);
  246. return NULL;
  247. }