bio_ndef.c 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. /*
  2. * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  3. * project.
  4. */
  5. /* ====================================================================
  6. * Copyright (c) 2008 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. */
  54. #include <openssl/asn1.h>
  55. #include <openssl/asn1t.h>
  56. #include <openssl/bio.h>
  57. #include <openssl/err.h>
  58. #include <stdio.h>
  59. /* Experimental NDEF ASN1 BIO support routines */
  60. /*
  61. * The usage is quite simple, initialize an ASN1 structure, get a BIO from it
  62. * then any data written through the BIO will end up translated to
  63. * approptiate format on the fly. The data is streamed out and does *not*
  64. * need to be all held in memory at once. When the BIO is flushed the output
  65. * is finalized and any signatures etc written out. The BIO is a 'proper'
  66. * BIO and can handle non blocking I/O correctly. The usage is simple. The
  67. * implementation is *not*...
  68. */
  69. /* BIO support data stored in the ASN1 BIO ex_arg */
  70. typedef struct ndef_aux_st {
  71. /* ASN1 structure this BIO refers to */
  72. ASN1_VALUE *val;
  73. const ASN1_ITEM *it;
  74. /* Top of the BIO chain */
  75. BIO *ndef_bio;
  76. /* Output BIO */
  77. BIO *out;
  78. /* Boundary where content is inserted */
  79. unsigned char **boundary;
  80. /* DER buffer start */
  81. unsigned char *derbuf;
  82. } NDEF_SUPPORT;
  83. static int ndef_prefix(BIO *b, unsigned char **pbuf, int *plen, void *parg);
  84. static int ndef_prefix_free(BIO *b, unsigned char **pbuf, int *plen,
  85. void *parg);
  86. static int ndef_suffix(BIO *b, unsigned char **pbuf, int *plen, void *parg);
  87. static int ndef_suffix_free(BIO *b, unsigned char **pbuf, int *plen,
  88. void *parg);
  89. BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it)
  90. {
  91. NDEF_SUPPORT *ndef_aux = NULL;
  92. BIO *asn_bio = NULL;
  93. const ASN1_AUX *aux = it->funcs;
  94. ASN1_STREAM_ARG sarg;
  95. if (!aux || !aux->asn1_cb) {
  96. ASN1err(ASN1_F_BIO_NEW_NDEF, ASN1_R_STREAMING_NOT_SUPPORTED);
  97. return NULL;
  98. }
  99. ndef_aux = OPENSSL_malloc(sizeof(*ndef_aux));
  100. asn_bio = BIO_new(BIO_f_asn1());
  101. /* ASN1 bio needs to be next to output BIO */
  102. out = BIO_push(asn_bio, out);
  103. if (ndef_aux == NULL || asn_bio == NULL || !out)
  104. goto err;
  105. BIO_asn1_set_prefix(asn_bio, ndef_prefix, ndef_prefix_free);
  106. BIO_asn1_set_suffix(asn_bio, ndef_suffix, ndef_suffix_free);
  107. /*
  108. * Now let callback prepend any digest, cipher etc BIOs ASN1 structure
  109. * needs.
  110. */
  111. sarg.out = out;
  112. sarg.ndef_bio = NULL;
  113. sarg.boundary = NULL;
  114. if (aux->asn1_cb(ASN1_OP_STREAM_PRE, &val, it, &sarg) <= 0)
  115. goto err;
  116. ndef_aux->val = val;
  117. ndef_aux->it = it;
  118. ndef_aux->ndef_bio = sarg.ndef_bio;
  119. ndef_aux->boundary = sarg.boundary;
  120. ndef_aux->out = out;
  121. BIO_ctrl(asn_bio, BIO_C_SET_EX_ARG, 0, ndef_aux);
  122. return sarg.ndef_bio;
  123. err:
  124. BIO_free(asn_bio);
  125. OPENSSL_free(ndef_aux);
  126. return NULL;
  127. }
  128. static int ndef_prefix(BIO *b, unsigned char **pbuf, int *plen, void *parg)
  129. {
  130. NDEF_SUPPORT *ndef_aux;
  131. unsigned char *p;
  132. int derlen;
  133. if (!parg)
  134. return 0;
  135. ndef_aux = *(NDEF_SUPPORT **)parg;
  136. derlen = ASN1_item_ndef_i2d(ndef_aux->val, NULL, ndef_aux->it);
  137. p = OPENSSL_malloc(derlen);
  138. if (p == NULL)
  139. return 0;
  140. ndef_aux->derbuf = p;
  141. *pbuf = p;
  142. derlen = ASN1_item_ndef_i2d(ndef_aux->val, &p, ndef_aux->it);
  143. if (!*ndef_aux->boundary)
  144. return 0;
  145. *plen = *ndef_aux->boundary - *pbuf;
  146. return 1;
  147. }
  148. static int ndef_prefix_free(BIO *b, unsigned char **pbuf, int *plen,
  149. void *parg)
  150. {
  151. NDEF_SUPPORT *ndef_aux;
  152. if (!parg)
  153. return 0;
  154. ndef_aux = *(NDEF_SUPPORT **)parg;
  155. OPENSSL_free(ndef_aux->derbuf);
  156. ndef_aux->derbuf = NULL;
  157. *pbuf = NULL;
  158. *plen = 0;
  159. return 1;
  160. }
  161. static int ndef_suffix_free(BIO *b, unsigned char **pbuf, int *plen,
  162. void *parg)
  163. {
  164. NDEF_SUPPORT **pndef_aux = (NDEF_SUPPORT **)parg;
  165. if (!ndef_prefix_free(b, pbuf, plen, parg))
  166. return 0;
  167. OPENSSL_free(*pndef_aux);
  168. *pndef_aux = NULL;
  169. return 1;
  170. }
  171. static int ndef_suffix(BIO *b, unsigned char **pbuf, int *plen, void *parg)
  172. {
  173. NDEF_SUPPORT *ndef_aux;
  174. unsigned char *p;
  175. int derlen;
  176. const ASN1_AUX *aux;
  177. ASN1_STREAM_ARG sarg;
  178. if (!parg)
  179. return 0;
  180. ndef_aux = *(NDEF_SUPPORT **)parg;
  181. aux = ndef_aux->it->funcs;
  182. /* Finalize structures */
  183. sarg.ndef_bio = ndef_aux->ndef_bio;
  184. sarg.out = ndef_aux->out;
  185. sarg.boundary = ndef_aux->boundary;
  186. if (aux->asn1_cb(ASN1_OP_STREAM_POST,
  187. &ndef_aux->val, ndef_aux->it, &sarg) <= 0)
  188. return 0;
  189. derlen = ASN1_item_ndef_i2d(ndef_aux->val, NULL, ndef_aux->it);
  190. p = OPENSSL_malloc(derlen);
  191. if (p == NULL)
  192. return 0;
  193. ndef_aux->derbuf = p;
  194. *pbuf = p;
  195. derlen = ASN1_item_ndef_i2d(ndef_aux->val, &p, ndef_aux->it);
  196. if (!*ndef_aux->boundary)
  197. return 0;
  198. *pbuf = *ndef_aux->boundary;
  199. *plen = derlen - (*ndef_aux->boundary - ndef_aux->derbuf);
  200. return 1;
  201. }