deprecation.pod 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. =pod
  2. =head1 NAME
  3. OPENSSL_NO_DEPRECATED_3_0, OSSL_DEPRECATEDIN_3_0,
  4. OPENSSL_NO_DEPRECATED_1_1_1, OSSL_DEPRECATEDIN_1_1_1,
  5. OPENSSL_NO_DEPRECATED_1_1_0, OSSL_DEPRECATEDIN_1_1_0,
  6. OPENSSL_NO_DEPRECATED_1_0_2, OSSL_DEPRECATEDIN_1_0_2,
  7. OPENSSL_NO_DEPRECATED_1_0_1, OSSL_DEPRECATEDIN_1_0_1,
  8. OPENSSL_NO_DEPRECATED_1_0_0, OSSL_DEPRECATEDIN_1_0_0,
  9. OPENSSL_NO_DEPRECATED_0_9_8, OSSL_DEPRECATEDIN_0_9_8,
  10. deprecation - How to do deprecation
  11. =head1 DESCRIPTION
  12. Deprecation of a symbol is adding an attribute to the declaration of that
  13. symbol (function, type, variable, but we currently only do that for
  14. functions in our public header files, F<< <openssl/*.h> >>).
  15. Removal of a symbol is not the same thing as deprecation, as it actually
  16. explicitly removes the symbol from public view.
  17. OpenSSL configuration supports deprecation as well as simulating removal of
  18. symbols from public view (with the configuration option C<no-deprecated>, or
  19. if the user chooses to do so, with L<OPENSSL_NO_DEPRECATED(7)>), and also
  20. supports doing this in terms of a specified OpenSSL version (with the
  21. configuration option C<--api>, or if the user chooses to do so, with
  22. L<OPENSSL_API_COMPAT(7)>).
  23. Deprecation is done using attribute macros named
  24. B<OSSL_DEPRECATEDIN_I<version>>, used with any declaration it applies to.
  25. Simulating removal is done with C<#ifndef> preprocessor guards using macros
  26. named B<OPENSSL_NO_DEPRECATED_I<version>>.
  27. B<OSSL_DEPRECATEDIN_I<version>> and B<OPENSSL_NO_DEPRECATED_I<version>> are
  28. defined in F<< <openssl/macros.h> >>.
  29. In those macro names, B<I<version>> corresponds to the OpenSSL release since
  30. which the deprecation applies, with underscores instead of periods. Because
  31. of the change in version scheme with OpenSSL 3.0, the B<I<version>> for
  32. versions before that are three numbers (such as C<1_1_0>), while they are
  33. two numbers (such as C<3_0>) from 3.0 and on.
  34. The implementation of a deprecated symbol is kept for one of two reasons:
  35. =over 4
  36. =item Planned to be removed
  37. The symbol and its implementation are planned to be removed some time in the
  38. future, but needs to remain available until that time.
  39. Such an implementation needs to be guarded appropriately, as shown in
  40. L</Implementations to be removed> below.
  41. =item Planned to remain internally
  42. The symbol is planned to be removed from public view, but will otherwise
  43. remain for internal purposes. In this case, the implementation doesn't need
  44. to change or be guarded.
  45. However, it's necessary to ensure that the declaration remains available for
  46. the translation unit where the symbol is used or implemented, even when the
  47. symbol is publicly unavailable through simulated removal. That's done by
  48. including an internal header file very early in the affected translation
  49. units. See L</Implementations to remain internally> below.
  50. In the future, when the deprecated declaration is to actually be removed
  51. from public view, it should be moved to an internal header file, with the
  52. deprecation attribute removed, and the translation units that implement or
  53. use that symbol should adjust their header inclusions accordingly.
  54. =back
  55. =head1 EXAMPLES
  56. =head2 Header files
  57. In public header files (F<< <openssl/*.h> >>), this is what a deprecation is
  58. expected to look like, including the preprocessor wrapping for simulated
  59. removal:
  60. # ifndef OPENSSL_NO_DEPRECATED_3_0
  61. /* ... */
  62. OSSL_DEPRECATEDIN_3_0 RSA *RSA_new_method(ENGINE *engine);
  63. /* ... */
  64. # endif
  65. =head2 Implementations to be removed
  66. For a deprecated function that we plan to remove in the future, for example
  67. RSA_new_method(), the following should be found very early (before including
  68. any OpenSSL header file) in the translation unit that implements it and in
  69. any translation unit that uses it:
  70. /*
  71. * Suppress deprecation warnings for RSA low level implementations that are
  72. * kept until removal.
  73. */
  74. #define OPENSSL_SUPPRESS_DEPRECATED
  75. The RSA_new_method() implementation itself must be guarded the same way as
  76. its declaration in the public header file is:
  77. #ifndef OPENSSL_NO_DEPRECATED_3_0
  78. RSA *RSA_new_method(ENGINE *engine)
  79. {
  80. /* ... */
  81. }
  82. #endif
  83. =head2 Implementations to remain internally
  84. For a deprecated function that we plan to keep internally, for example
  85. RSA_size(), the following should be found very early (before including any
  86. other OpenSSL header file) in the translation unit that implements it and in
  87. any translation unit that uses it:
  88. /*
  89. * RSA low level APIs are deprecated for public use, but are kept for
  90. * internal use.
  91. */
  92. #include "internal/deprecated.h"
  93. =head1 SEE ALSO
  94. L<openssl_user_macros(7)>
  95. =head1 COPYRIGHT
  96. Copyright 2020-2021 The OpenSSL Project Authors. All Rights Reserved.
  97. Licensed under the Apache License 2.0 (the "License"). You may not use
  98. this file except in compliance with the License. You can obtain a copy
  99. in the file LICENSE in the source distribution or at
  100. L<https://www.openssl.org/source/license.html>.
  101. =cut