OSSL_PARAM.pod 11 KB

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