OSSL_PARAM.pod 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. =pod
  2. =head1 NAME
  3. OSSL_PARAM - a structure to pass or request object parameters
  4. =head1 SYNOPSIS
  5. #include <openssl/core.h>
  6. typedef struct ossl_param_st OSSL_PARAM;
  7. struct ossl_param_st {
  8. const char *key; /* the name of the parameter */
  9. unsigned char data_type; /* declare what kind of content is in data */
  10. void *data; /* value being passed in or out */
  11. size_t data_size; /* data size */
  12. size_t return_size; /* returned size */
  13. };
  14. =head1 DESCRIPTION
  15. B<OSSL_PARAM> is a type that allows passing arbitrary data for some
  16. object between two parties that have no or very little shared
  17. knowledge about their respective internal structures for that object.
  18. A typical usage example could be an application that wants to set some
  19. parameters for an object, or wants to find out some parameters of an
  20. object.
  21. Arrays of this type can be used for the following purposes:
  22. =over 4
  23. =item * Setting parameters for some object
  24. The caller sets up the B<OSSL_PARAM> array and calls some function
  25. (the I<setter>) that has intimate knowledge about the object that can
  26. take the data from the B<OSSL_PARAM> array and assign them in a
  27. suitable form for the internal structure of the object.
  28. =item * Request parameters of some object
  29. The caller (the I<requestor>) sets up the B<OSSL_PARAM> array and
  30. calls some function (the I<responder>) that has intimate knowledge
  31. about the object, which can take the internal data of the object and
  32. copy (possibly convert) that to the memory prepared by the
  33. I<requestor> and pointed at with the B<OSSL_PARAM> I<data>.
  34. =item * Request parameter descriptors
  35. The caller gets an array of constant B<OSSL_PARAM>, which describe
  36. available parameters and some of their properties; name, data type and
  37. expected data size.
  38. For a detailed description of each field for this use, see the field
  39. descriptions below.
  40. The caller may then use the information from this descriptor array to
  41. build up its own B<OSSL_PARAM> array to pass down to a I<setter> or
  42. I<responder>.
  43. =back
  44. Normally, the order of the an B<OSSL_PARAM> array is not relevant.
  45. However, if the I<responder> can handle multiple elements with the
  46. same key, those elements must be handled in the order they are in.
  47. =head2 B<OSSL_PARAM> fields
  48. =over 4
  49. =item I<key>
  50. The identity of the parameter in the form of a string.
  51. =item I<data_type>
  52. The I<data_type> is a value that describes the type and organization of
  53. the data.
  54. See L</Supported types> below for a description of the types.
  55. =item I<data>
  56. =item I<data_size>
  57. I<data> is a pointer to the memory where the parameter data is (when
  58. setting parameters) or shall (when requesting parameters) be stored,
  59. and I<data_size> is its size in bytes.
  60. The organization of the data depends on the parameter type and flag.
  61. When I<requesting parameters>, it's acceptable for I<data> to be NULL.
  62. This can be used by the I<requestor> to figure out dynamically exactly
  63. how much buffer space is needed to store the parameter data.
  64. In this case, I<data_size> is ignored.
  65. When the B<OSSL_PARAM> is used as a parameter descriptor, I<data>
  66. should be ignored.
  67. If I<data_size> is zero, it means that an arbitrary data size is
  68. accepted, otherwise it specifies the maximum size allowed.
  69. =item I<return_size>
  70. When an array of B<OSSL_PARAM> is used to request data, the
  71. I<responder> must set this field to indicate size of the parameter
  72. data, including padding as the case may be.
  73. In case the I<data_size> is an unsuitable size for the data, the
  74. I<responder> must still set this field to indicate the minimum data
  75. size required.
  76. (further notes on this in L</NOTES> below).
  77. When the B<OSSL_PARAM> is used as a parameter descriptor,
  78. I<return_size> should be ignored.
  79. =back
  80. B<NOTE:>
  81. The key names and associated types are defined by the entity that
  82. offers these parameters, i.e. names for parameters provided by the
  83. OpenSSL libraries are defined by the libraries, and names for
  84. parameters provided by providers are defined by those providers,
  85. except for the pointer form of strings (see data type descriptions
  86. below).
  87. Entities that want to set or request parameters need to know what
  88. those keys are and of what type, any functionality between those two
  89. entities should remain oblivious and just pass the B<OSSL_PARAM> array
  90. along.
  91. =head2 Supported types
  92. The I<data_type> field can be one of the following types:
  93. =over 4
  94. =item B<OSSL_PARAM_INTEGER>
  95. =item B<OSSL_PARAM_UNSIGNED_INTEGER>
  96. The parameter data is an integer (signed or unsigned) of arbitrary
  97. length, organized in native form, i.e. most significant byte first on
  98. Big-Endian systems, and least significant byte first on Little-Endian
  99. systems.
  100. =item B<OSSL_PARAM_REAL>
  101. The parameter data is a floating point value in native form.
  102. =item B<OSSL_PARAM_UTF8_STRING>
  103. The parameter data is a printable string.
  104. =item B<OSSL_PARAM_OCTET_STRING>
  105. The parameter data is an arbitrary string of bytes.
  106. =item B<OSSL_PARAM_UTF8_PTR>
  107. The parameter data is a pointer to a printable string.
  108. The difference between this and B<OSSL_PARAM_UTF8_STRING> is that I<data>
  109. doesn't point directly at the data, but to a pointer that points to the data.
  110. If there is any uncertainty about which to use, B<OSSL_PARAM_UTF8_STRING> is
  111. almost certainly the correct choice.
  112. This is used to indicate that constant data is or will be passed,
  113. and there is therefore no need to copy the data that is passed, just
  114. the pointer to it.
  115. I<data_size> must be set to the size of the data, not the size of the
  116. pointer to the data.
  117. If this is used in a parameter request,
  118. I<data_size> is not relevant. However, the I<responder> will set
  119. I<return_size> to the size of the data.
  120. Note that the use of this type is B<fragile> and can only be safely
  121. used for data that remains constant and in a constant location for a
  122. long enough duration (such as the life-time of the entity that
  123. offers these parameters).
  124. =item B<OSSL_PARAM_OCTET_PTR>
  125. The parameter data is a pointer to an arbitrary string of bytes.
  126. The difference between this and B<OSSL_PARAM_OCTET_STRING> is that
  127. I<data> doesn't point directly at the data, but to a pointer that
  128. points to the data.
  129. If there is any uncertainty about which to use, B<OSSL_PARAM_OCTET_STRING> is
  130. almost certainly the correct choice.
  131. This is used to indicate that constant data is or will be passed, and
  132. there is therefore no need to copy the data that is passed, just the
  133. pointer to it.
  134. I<data_size> must be set to the size of the data, not the size of the
  135. pointer to the data.
  136. If this is used in a parameter request,
  137. I<data_size> is not relevant. However, the I<responder> will set
  138. I<return_size> to the size of the data.
  139. Note that the use of this type is B<fragile> and can only be safely
  140. used for data that remains constant and in a constant location for a
  141. long enough duration (such as the life-time of the entity that
  142. offers these parameters).
  143. =back
  144. =head1 NOTES
  145. Both when setting and requesting parameters, the functions that are
  146. called will have to decide what is and what is not an error.
  147. The recommended behaviour is:
  148. =over 4
  149. =item *
  150. Keys that a I<setter> or I<responder> doesn't recognise should simply
  151. be ignored.
  152. That in itself isn't an error.
  153. =item *
  154. If the keys that a called I<setter> recognises form a consistent
  155. enough set of data, that call should succeed.
  156. =item *
  157. Apart from the I<return_size>, a I<responder> must never change the fields
  158. of an B<OSSL_PARAM>.
  159. To return a value, it should change the contents of the memory that
  160. I<data> points at.
  161. =item *
  162. If the data type for a key that it's associated with is incorrect,
  163. the called function may return an error.
  164. The called function may also try to convert the data to a suitable
  165. form (for example, it's plausible to pass a large number as an octet
  166. string, so even though a given key is defined as an
  167. B<OSSL_PARAM_UNSIGNED_INTEGER>, is plausible to pass the value as an
  168. B<OSSL_PARAM_OCTET_STRING>), but this is in no way mandatory.
  169. =item *
  170. If a I<responder> finds that some data sizes are too small for the
  171. requested data, it must set I<return_size> for each such
  172. B<OSSL_PARAM> item to the minimum required size, and eventually return
  173. an error.
  174. =item *
  175. For the integer type parameters (B<OSSL_PARAM_UNSIGNED_INTEGER> and
  176. B<OSSL_PARAM_INTEGER>), a I<responder> may choose to return an error
  177. if the I<data_size> isn't a suitable size (even if I<data_size> is
  178. bigger than needed). If the I<responder> finds the size suitable, it
  179. must fill all I<data_size> bytes and ensure correct padding for the
  180. native endianness, and set I<return_size> to the same value as
  181. I<data_size>.
  182. =back
  183. =begin comment RETURN VALUES doesn't make sense for a manual that only
  184. describes a type, but document checkers still want that section, and
  185. to have more than just the section title.
  186. =head1 RETURN VALUES
  187. txt
  188. =end comment
  189. =head1 EXAMPLES
  190. A couple of examples to just show how B<OSSL_PARAM> arrays could be
  191. set up.
  192. =head3 Example 1
  193. This example is for setting parameters on some object:
  194. #include <openssl/core.h>
  195. const char *foo = "some string";
  196. size_t foo_l = strlen(foo) + 1;
  197. const char bar[] = "some other string";
  198. OSSL_PARAM set[] = {
  199. { "foo", OSSL_PARAM_UTF8_STRING_PTR, &foo, foo_l, 0 },
  200. { "bar", OSSL_PARAM_UTF8_STRING, &bar, sizeof(bar), 0 },
  201. { NULL, 0, NULL, 0, NULL }
  202. };
  203. =head3 Example 2
  204. This example is for requesting parameters on some object:
  205. const char *foo = NULL;
  206. size_t foo_l;
  207. char bar[1024];
  208. size_t bar_l;
  209. OSSL_PARAM request[] = {
  210. { "foo", OSSL_PARAM_UTF8_STRING_PTR, &foo, 0 /*irrelevant*/, 0 },
  211. { "bar", OSSL_PARAM_UTF8_STRING, &bar, sizeof(bar), 0 },
  212. { NULL, 0, NULL, 0, NULL }
  213. };
  214. A I<responder> that receives this array (as I<params> in this example)
  215. could fill in the parameters like this:
  216. /* OSSL_PARAM *params */
  217. int i;
  218. for (i = 0; params[i].key != NULL; i++) {
  219. if (strcmp(params[i].key, "foo") == 0) {
  220. *(char **)params[i].data = "foo value";
  221. params[i].return_size = 10; /* size of "foo value" */
  222. } else if (strcmp(params[i].key, "bar") == 0) {
  223. memcpy(params[i].data, "bar value", 10);
  224. params[i].return_size = 10; /* size of "bar value" */
  225. }
  226. /* Ignore stuff we don't know */
  227. }
  228. =head1 SEE ALSO
  229. L<openssl-core.h(7)>, L<OSSL_PARAM_get_int(3)>
  230. =head1 HISTORY
  231. B<OSSL_PARAM> was added in OpenSSL 3.0.
  232. =head1 COPYRIGHT
  233. Copyright 2019-2020 The OpenSSL Project Authors. All Rights Reserved.
  234. Licensed under the Apache License 2.0 (the "License"). You may not use
  235. this file except in compliance with the License. You can obtain a copy
  236. in the file LICENSE in the source distribution or at
  237. L<https://www.openssl.org/source/license.html>.
  238. =cut