OSSL_DECODER_from_bio.pod 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. =pod
  2. =head1 NAME
  3. OSSL_DECODER_from_bio,
  4. OSSL_DECODER_from_fp,
  5. OSSL_DECODER_CTX_set_input_type,
  6. OSSL_DECODER_CTX_add_decoder,
  7. OSSL_DECODER_CTX_add_extra,
  8. OSSL_DECODER_CTX_num_decoders,
  9. OSSL_DECODER_INSTANCE,
  10. OSSL_DECODER_CONSTRUCT,
  11. OSSL_DECODER_CLEANUP,
  12. OSSL_DECODER_CTX_set_construct,
  13. OSSL_DECODER_CTX_set_construct_data,
  14. OSSL_DECODER_CTX_set_cleanup,
  15. OSSL_DECODER_CTX_get_construct,
  16. OSSL_DECODER_CTX_get_construct_data,
  17. OSSL_DECODER_CTX_get_cleanup,
  18. OSSL_DECODER_export,
  19. OSSL_DECODER_INSTANCE_decoder,
  20. OSSL_DECODER_INSTANCE_decoder_ctx
  21. - Routines to perform a decoding
  22. =head1 SYNOPSIS
  23. #include <openssl/decoder.h>
  24. int OSSL_DECODER_from_bio(OSSL_DECODER_CTX *ctx, BIO *in);
  25. int OSSL_DECODER_from_fp(OSSL_DECODER_CTX *ctx, FILE *fp);
  26. int OSSL_DECODER_CTX_set_input_type(OSSL_DECODER_CTX *ctx,
  27. const char *input_type);
  28. int OSSL_DECODER_CTX_add_decoder(OSSL_DECODER_CTX *ctx, OSSL_DECODER *decoder);
  29. int OSSL_DECODER_CTX_add_extra(OSSL_DECODER_CTX *ctx);
  30. int OSSL_DECODER_CTX_num_decoders(OSSL_DECODER_CTX *ctx);
  31. typedef struct ossl_decoder_instance_st OSSL_DECODER_INSTANCE;
  32. OSSL_DECODER *
  33. OSSL_DECODER_INSTANCE_decoder(OSSL_DECODER_INSTANCE *decoder_inst);
  34. void *OSSL_DECODER_INSTANCE_decoder_ctx(OSSL_DECODER_INSTANCE *decoder_inst);
  35. typedef int (OSSL_DECODER_CONSTRUCT)(OSSL_DECODER_INSTANCE *decoder_inst,
  36. const OSSL_PARAM *params,
  37. void *construct_data);
  38. typedef void (OSSL_DECODER_CLEANUP)(void *construct_data);
  39. int OSSL_DECODER_CTX_set_construct(OSSL_DECODER_CTX *ctx,
  40. OSSL_DECODER_CONSTRUCT *construct);
  41. int OSSL_DECODER_CTX_set_construct_data(OSSL_DECODER_CTX *ctx,
  42. void *construct_data);
  43. int OSSL_DECODER_CTX_set_cleanup(OSSL_DECODER_CTX *ctx,
  44. OSSL_DECODER_CLEANUP *cleanup);
  45. OSSL_DECODER_CONSTRUCT *OSSL_DECODER_CTX_get_construct(OSSL_DECODER_CTX *ctx);
  46. void *OSSL_DECODER_CTX_get_construct_data(OSSL_DECODER_CTX *ctx);
  47. OSSL_DECODER_CLEANUP *OSSL_DECODER_CTX_get_cleanup(OSSL_DECODER_CTX *ctx);
  48. int OSSL_DECODER_export(OSSL_DECODER_INSTANCE *decoder_inst,
  49. void *reference, size_t reference_sz,
  50. OSSL_CALLBACK *export_cb, void *export_cbarg);
  51. Feature availability macros:
  52. =over 4
  53. =item OSSL_DECODER_from_fp() is only available when B<OPENSSL_NO_STDIO>
  54. is undefined.
  55. =back
  56. =head1 DESCRIPTION
  57. The B<OSSL_DECODER_CTX> holds data about multiple decoders, as
  58. needed to figure out what the input data is and to attempt to unpack it into
  59. one of several possible related results. This also includes chaining
  60. decoders, so the output from one can become the input for another.
  61. This allows having generic format decoders such as PEM to DER, as well
  62. as more specialized decoders like DER to RSA.
  63. The chains may be limited by specifying an input type, which is considered a
  64. starting point.
  65. This is both considered by OSSL_DECODER_CTX_add_extra(), which will
  66. stop adding on more decoder implementations when it has already added
  67. those that take the specified input type, and OSSL_DECODER_from_bio(),
  68. which will only start the decoding process with the decoder
  69. implementations that take that input type. For example, if the input type
  70. is set to C<DER>, a PEM to DER decoder will be ignored.
  71. The input type can also be NULL, which means that the caller doesn't know
  72. what type of input they have. In this case, OSSL_DECODER_from_bio()
  73. will simply try with one decoder implementation after the other, and
  74. thereby discover what kind of input the caller gave it.
  75. For every decoding done, even an intermediary one, a constructor
  76. provided by the caller is called to attempt to construct an appropriate type
  77. / structure that the caller knows how to handle from the current
  78. decoding result.
  79. The constructor is set with OSSL_DECODER_CTX_set_construct().
  80. B<OSSL_DECODER_INSTANCE> is an opaque structure that contains
  81. data about the decoder that was just used, and that may be
  82. useful for the constructor. There are some functions to extract data
  83. from this type, described further down.
  84. =head2 Functions
  85. OSSL_DECODER_from_bio() runs the decoding process for the
  86. context I<ctx>, with the input coming from the B<BIO> I<in>. Should
  87. it make a difference, it's recommended to have the BIO set in binary
  88. mode rather than text mode.
  89. OSSL_DECODER_from_fp() does the same thing as OSSL_DECODER_from_bio(),
  90. except that the input is coming from the B<FILE> I<fp>.
  91. OSSL_DECODER_CTX_add_decoder() populates the B<OSSL_DECODER_CTX>
  92. I<ctx> with a decoder, to be used to attempt to decode some
  93. encoded input.
  94. OSSL_DECODER_CTX_add_extra() finds decoders that generate
  95. input for already added decoders, and adds them as well. This is
  96. used to build decoder chains.
  97. OSSL_DECODER_CTX_set_input_type() sets the starting input type. This
  98. limits the decoder chains to be considered, as explained in the general
  99. description above.
  100. OSSL_DECODER_CTX_num_decoders() gets the number of
  101. decoders currently added to the context I<ctx>.
  102. OSSL_DECODER_CTX_set_construct() sets the constructor I<construct>.
  103. OSSL_DECODER_CTX_set_construct_data() sets the constructor data that is
  104. passed to the constructor every time it's called.
  105. OSSL_DECODER_CTX_set_cleanup() sets the constructor data I<cleanup>
  106. function. This is called by L<OSSL_DECODER_CTX_free(3)>.
  107. OSSL_DECODER_CTX_get_construct(),
  108. OSSL_DECODER_CTX_get_construct_data() and
  109. OSSL_DECODER_CTX_get_cleanup()
  110. return the values that have been set by
  111. OSSL_DECODER_CTX_set_construct(),
  112. OSSL_DECODER_CTX_set_construct_data() and
  113. OSSL_DECODER_CTX_set_cleanup() respectively.
  114. OSSL_DECODER_export() is a fallback function for constructors that
  115. cannot use the data they get directly for diverse reasons. It takes the same
  116. decode instance I<decoder_inst> that the constructor got and an object
  117. I<reference>, unpacks the object which it refers to, and exports it by creating
  118. an L<OSSL_PARAM(3)> array that it then passes to I<export_cb>, along with
  119. I<export_arg>.
  120. OSSL_DECODER_INSTANCE_decoder() can be used to get the
  121. decoder method from a decoder instance I<decoder_inst>.
  122. OSSL_DECODER_INSTANCE_decoder-ctx() can be used to get the
  123. decoder method's provider context from a decoder instance
  124. I<decoder_inst>.
  125. =head2 Constructor
  126. A B<OSSL_DECODER_CONSTRUCT> gets the following arguments:
  127. =over 4
  128. =item I<decoder_inst>
  129. The B<OSSL_DECODER_INSTANCE> for the decoder from which
  130. the constructor gets its data.
  131. =item I<params>
  132. The data produced by the decoder, further described below.
  133. =item I<construct_data>
  134. The pointer that was set with OSSL_DECODE_CTX_set_construct_data().
  135. =back
  136. The constructor is expected to return 1 when the data it receives can
  137. be constructed, otherwise 0.
  138. The globally known parameters that the constructor can get in I<params>
  139. are:
  140. =over 4
  141. =item "data-type" (B<OSSL_DECODER_PARAM_DATA_TYPE>) <UTF8 string>
  142. This is a detected content type that some decoders may provide.
  143. For example, PEM input sometimes has a type specified in its header,
  144. and some decoders may add that information as this parameter.
  145. This is an optional parameter, but may be useful for extra checks in
  146. the constructor.
  147. =item "data" (B<OSSL_DECODER_PARAM_DATA>) <octet string>
  148. The decoded data itself, as an octet string. This is produced by
  149. decoders when it's possible to pass an object in this form. Most
  150. often, this is simply meant to be passed to the next decoder in a
  151. chain, but could be considered final data as well, at the discretion
  152. of the constructor.
  153. =item "reference" (B<OSSL_DECODER_PARAM_DATA>) <octet string>
  154. The decoded data itself, as a reference to an object. The
  155. reference itself is an octet string, and can be passed to other
  156. operations and functions within the same provider as the one that
  157. provides I<decoder>.
  158. =back
  159. At least one of "data" or "reference" must be present, and it's
  160. possible that both can be. A constructor should choose to use the
  161. "reference" parameter if possible, otherwise it should use the "data"
  162. parameter.
  163. If it's not possible to use the "reference" parameter, but that's
  164. still what a constructor wants to do, it is possible to use
  165. OSSL_DECODER_export() as a fallback.
  166. =head1 RETURN VALUES
  167. OSSL_DECODER_from_bio() and OSSL_DECODER_from_fp() return 1 on
  168. success, or 0 on failure.
  169. OSSL_DECODER_CTX_add_decoder(),
  170. OSSL_DECODER_CTX_add_extra(),
  171. OSSL_DECODER_CTX_set_construct(),
  172. OSSL_DECODER_CTX_set_construct_data() and
  173. OSSL_DECODER_CTX_set_cleanup() return 1 on success, or 0 on
  174. failure.
  175. OSSL_DECODER_CTX_get_construct(),
  176. OSSL_DECODER_CTX_get_construct_data() and
  177. OSSL_DECODER_CTX_get_cleanup() return the current pointers to the
  178. cosntructor, the constructor data and the cleanup functions, respectively.
  179. OSSL_DECODER_CTX_num_decoders() returns the current
  180. number of decoders. It returns 0 if I<ctx> is NULL.
  181. OSSL_DECODER_export() returns 1 on success, or 0 on failure.
  182. OSSL_DECODER_INSTANCE_decoder() returns an
  183. B<OSSL_DECODER> pointer on success, or NULL on failure.
  184. OSSL_DECODER_INSTANCE_decoder_ctx() returns a provider
  185. context pointer on success, or NULL on failure.>
  186. =begin comment TODO(3.0) Add examples!
  187. =head1 EXAMPLES
  188. Text, because pod2xxx doesn't like empty sections
  189. =end comment
  190. =head1 SEE ALSO
  191. L<provider(7)>, L<OSSL_DECODER_CTX(3)>
  192. =head1 HISTORY
  193. The functions described here were added in OpenSSL 3.0.
  194. =head1 COPYRIGHT
  195. Copyright 2020 The OpenSSL Project Authors. All Rights Reserved.
  196. Licensed under the Apache License 2.0 (the "License"). You may not use
  197. this file except in compliance with the License. You can obtain a copy
  198. in the file LICENSE in the source distribution or at
  199. L<https://www.openssl.org/source/license.html>.
  200. =cut