grpc 1.53.0 → 1.59.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2080) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +729 -374
  3. data/include/grpc/event_engine/event_engine.h +55 -53
  4. data/include/grpc/event_engine/memory_allocator.h +2 -2
  5. data/include/grpc/grpc_audit_logging.h +96 -0
  6. data/include/grpc/grpc_security.h +23 -0
  7. data/include/grpc/impl/channel_arg_names.h +375 -0
  8. data/include/grpc/impl/grpc_types.h +1 -339
  9. data/include/grpc/module.modulemap +3 -0
  10. data/include/grpc/support/json.h +218 -0
  11. data/include/grpc/support/port_platform.h +107 -28
  12. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +18 -2
  13. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +24 -10
  14. data/src/core/ext/filters/client_channel/backend_metric.cc +10 -1
  15. data/src/core/ext/filters/client_channel/backup_poller.cc +2 -11
  16. data/src/core/ext/filters/client_channel/backup_poller.h +0 -3
  17. data/src/core/ext/filters/client_channel/channel_connectivity.cc +4 -4
  18. data/src/core/ext/filters/client_channel/client_channel.cc +1366 -947
  19. data/src/core/ext/filters/client_channel/client_channel.h +180 -168
  20. data/src/core/ext/filters/client_channel/client_channel_channelz.cc +20 -19
  21. data/src/core/ext/filters/client_channel/client_channel_internal.h +77 -0
  22. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +15 -1
  23. data/src/core/ext/filters/client_channel/client_channel_service_config.cc +2 -2
  24. data/src/core/ext/filters/client_channel/config_selector.h +13 -39
  25. data/src/core/ext/filters/client_channel/dynamic_filters.h +5 -3
  26. data/src/core/ext/filters/client_channel/{http_proxy.cc → http_proxy_mapper.cc} +42 -4
  27. data/src/core/ext/filters/client_channel/{http_proxy.h → http_proxy_mapper.h} +3 -3
  28. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +27 -53
  29. data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +23 -9
  30. data/src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h +9 -1
  31. data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +25 -35
  32. data/src/core/ext/filters/client_channel/lb_policy/endpoint_list.cc +188 -0
  33. data/src/core/ext/filters/client_channel/lb_policy/endpoint_list.h +214 -0
  34. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +120 -160
  35. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +2 -1
  36. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +5 -4
  37. data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +4 -2
  38. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.cc +515 -0
  39. data/src/core/ext/filters/client_channel/lb_policy/health_check_client.h +52 -0
  40. data/src/core/ext/filters/client_channel/lb_policy/health_check_client_internal.h +204 -0
  41. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +6 -9
  42. data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric_internal.h +2 -0
  43. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +93 -106
  44. data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +2 -2
  45. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +532 -191
  46. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.h +36 -0
  47. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +16 -45
  48. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +464 -498
  49. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +18 -1
  50. data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +75 -145
  51. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +430 -40
  52. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +26 -23
  53. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/static_stride_scheduler.cc +76 -6
  54. data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +951 -110
  55. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +30 -57
  56. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +73 -126
  57. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +8 -0
  58. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +43 -87
  59. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +25 -74
  60. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +117 -173
  61. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +83 -70
  62. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc +28 -96
  63. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +47 -157
  64. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.h +30 -0
  65. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +102 -11
  66. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +107 -177
  67. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +58 -44
  68. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +4 -1
  69. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_plugin.cc +66 -0
  70. data/src/core/ext/filters/client_channel/resolver/dns/{dns_resolver_selection.h → dns_resolver_plugin.h} +10 -12
  71. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +586 -0
  72. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/event_engine_client_channel_resolver.h +35 -0
  73. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/service_config_helper.cc +97 -0
  74. data/src/core/ext/filters/client_channel/resolver/dns/event_engine/service_config_helper.h +32 -0
  75. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +20 -37
  76. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.h +24 -0
  77. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +24 -6
  78. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +36 -2
  79. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +61 -207
  80. data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +11 -6
  81. data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +2 -2
  82. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +25 -13
  83. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +470 -313
  84. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +32 -1
  85. data/src/core/ext/filters/client_channel/retry_filter.cc +40 -2538
  86. data/src/core/ext/filters/client_channel/retry_filter.h +92 -1
  87. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.cc +2052 -0
  88. data/src/core/ext/filters/client_channel/retry_filter_legacy_call_data.h +442 -0
  89. data/src/core/ext/filters/client_channel/retry_service_config.cc +10 -9
  90. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +40 -90
  91. data/src/core/ext/filters/client_channel/subchannel.cc +52 -203
  92. data/src/core/ext/filters/client_channel/subchannel.h +23 -48
  93. data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +3 -0
  94. data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +26 -27
  95. data/src/core/ext/filters/client_channel/subchannel_stream_client.h +8 -5
  96. data/src/core/ext/filters/deadline/deadline_filter.cc +1 -1
  97. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +1 -1
  98. data/src/core/ext/filters/http/client/http_client_filter.cc +4 -3
  99. data/src/core/ext/filters/http/client_authority_filter.cc +1 -1
  100. data/src/core/ext/filters/http/http_filters_plugin.cc +1 -12
  101. data/src/core/ext/filters/http/message_compress/compression_filter.cc +31 -14
  102. data/src/core/ext/filters/http/server/http_server_filter.cc +22 -18
  103. data/src/core/ext/filters/message_size/message_size_filter.cc +142 -224
  104. data/src/core/ext/filters/message_size/message_size_filter.h +48 -3
  105. data/src/core/ext/filters/rbac/rbac_filter.cc +40 -111
  106. data/src/core/ext/filters/rbac/rbac_filter.h +12 -30
  107. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +162 -72
  108. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +6 -8
  109. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +165 -88
  110. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +16 -7
  111. data/src/core/ext/gcp/metadata_query.cc +137 -0
  112. data/src/core/ext/gcp/metadata_query.h +87 -0
  113. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +1 -0
  114. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +84 -70
  115. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +12 -8
  116. data/src/core/ext/transport/chttp2/transport/bin_encoder.h +5 -1
  117. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +1118 -882
  118. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +21 -0
  119. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +70 -0
  120. data/src/core/ext/transport/chttp2/transport/decode_huff.cc +6569 -174
  121. data/src/core/ext/transport/chttp2/transport/decode_huff.h +2278 -441
  122. data/src/core/ext/transport/chttp2/transport/flow_control.cc +79 -119
  123. data/src/core/ext/transport/chttp2/transport/flow_control.h +29 -5
  124. data/src/core/ext/transport/chttp2/transport/frame_data.h +1 -1
  125. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -1
  126. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +24 -25
  127. data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -4
  128. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +10 -1
  129. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +1 -1
  130. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +5 -2
  131. data/src/core/ext/transport/chttp2/transport/frame_settings.h +1 -1
  132. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +1 -1
  133. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +119 -223
  134. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +296 -113
  135. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +2 -0
  136. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +2 -0
  137. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +176 -0
  138. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +326 -0
  139. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +774 -488
  140. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +166 -14
  141. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +59 -42
  142. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +26 -4
  143. data/src/core/ext/transport/chttp2/transport/internal.h +211 -151
  144. data/src/core/ext/transport/chttp2/transport/{frame.h → legacy_frame.h} +3 -3
  145. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +44 -0
  146. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +67 -0
  147. data/src/core/ext/transport/chttp2/transport/parsing.cc +152 -33
  148. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +90 -0
  149. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +59 -0
  150. data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +108 -0
  151. data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +115 -0
  152. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +120 -0
  153. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +88 -0
  154. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +1 -1
  155. data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +60 -0
  156. data/src/core/ext/transport/chttp2/transport/write_size_policy.h +66 -0
  157. data/src/core/ext/transport/chttp2/transport/writing.cc +222 -142
  158. data/src/core/ext/transport/inproc/inproc_transport.cc +30 -14
  159. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +85 -52
  160. data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +407 -182
  161. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +119 -60
  162. data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +474 -225
  163. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +88 -55
  164. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +408 -189
  165. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.c +355 -210
  166. data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.h +1564 -729
  167. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +28 -17
  168. data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +140 -51
  169. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +32 -21
  170. data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +153 -63
  171. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +25 -14
  172. data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +71 -39
  173. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +18 -11
  174. data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +41 -27
  175. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.c +18 -11
  176. data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +41 -27
  177. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.c +107 -62
  178. data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +559 -245
  179. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +19 -12
  180. data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +38 -31
  181. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.c +20 -19
  182. data/src/core/ext/upb-generated/envoy/annotations/deprecation.upb.h +75 -30
  183. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +21 -16
  184. data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +38 -31
  185. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +253 -147
  186. data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +869 -405
  187. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +415 -262
  188. data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +1842 -888
  189. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +72 -41
  190. data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +279 -149
  191. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +529 -334
  192. data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +2009 -1131
  193. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +19 -12
  194. data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +38 -31
  195. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +87 -52
  196. data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +340 -233
  197. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +262 -165
  198. data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +881 -477
  199. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +137 -80
  200. data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +520 -275
  201. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +20 -13
  202. data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +43 -37
  203. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +378 -221
  204. data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +1160 -611
  205. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +155 -92
  206. data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +620 -293
  207. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +16 -11
  208. data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +30 -27
  209. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +19 -12
  210. data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +38 -31
  211. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +28 -17
  212. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +140 -51
  213. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +277 -167
  214. data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +811 -441
  215. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +230 -137
  216. data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +1157 -501
  217. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +20 -13
  218. data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +53 -38
  219. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +367 -209
  220. data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +1118 -636
  221. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +42 -11
  222. data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +168 -19
  223. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +32 -19
  224. data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +110 -56
  225. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +36 -21
  226. data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +141 -65
  227. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +29 -18
  228. data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +136 -66
  229. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +20 -13
  230. data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +44 -38
  231. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +76 -43
  232. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +258 -128
  233. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +143 -88
  234. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +431 -242
  235. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +113 -62
  236. data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +552 -228
  237. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +16 -11
  238. data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +28 -27
  239. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +185 -109
  240. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +949 -422
  241. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +170 -95
  242. data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +857 -375
  243. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +47 -25
  244. data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +164 -101
  245. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +37 -18
  246. data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +66 -56
  247. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +27 -15
  248. data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +85 -46
  249. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +129 -74
  250. data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +481 -249
  251. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +161 -84
  252. data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +673 -241
  253. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +254 -129
  254. data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +989 -398
  255. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +78 -49
  256. data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +609 -202
  257. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +1281 -774
  258. data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +5422 -2509
  259. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +47 -28
  260. data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +157 -85
  261. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +226 -141
  262. data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +731 -400
  263. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +18 -11
  264. data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +41 -27
  265. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +19 -12
  266. data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +38 -31
  267. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +30 -19
  268. data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +62 -49
  269. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +25 -14
  270. data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +103 -44
  271. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +44 -25
  272. data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +252 -101
  273. data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.c +19 -13
  274. data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.h +38 -31
  275. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +16 -11
  276. data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +28 -27
  277. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +40 -23
  278. data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +101 -71
  279. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +5 -4
  280. data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +14 -17
  281. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +41 -24
  282. data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +103 -76
  283. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +28 -17
  284. data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +88 -51
  285. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.c +556 -0
  286. data/src/core/ext/upb-generated/envoy/data/accesslog/v3/accesslog.upb.h +2702 -0
  287. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +14 -9
  288. data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +66 -24
  289. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +58 -37
  290. data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +143 -109
  291. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +91 -43
  292. data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +379 -168
  293. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +42 -25
  294. data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +107 -81
  295. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +66 -22
  296. data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +348 -83
  297. data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.c +30 -19
  298. data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +65 -51
  299. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +502 -296
  300. data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +2259 -1055
  301. data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.c +16 -11
  302. data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +28 -27
  303. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.c +33 -19
  304. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +118 -68
  305. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.c +70 -45
  306. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +186 -139
  307. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.c +45 -0
  308. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +85 -0
  309. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.c +32 -19
  310. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +125 -68
  311. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.c +16 -11
  312. data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +28 -27
  313. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.c +5 -4
  314. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +8 -11
  315. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +182 -96
  316. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +900 -361
  317. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +54 -33
  318. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +143 -102
  319. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +186 -111
  320. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +809 -420
  321. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +30 -19
  322. data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +101 -53
  323. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +8 -7
  324. data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +11 -15
  325. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +298 -177
  326. data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +1277 -523
  327. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +40 -23
  328. data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +181 -76
  329. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +128 -83
  330. data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +503 -239
  331. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +20 -13
  332. data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +48 -35
  333. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +37 -26
  334. data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +117 -69
  335. data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.c +19 -12
  336. data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.h +40 -31
  337. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +58 -26
  338. data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +123 -52
  339. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +35 -20
  340. data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +126 -64
  341. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +20 -13
  342. data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +84 -41
  343. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +19 -12
  344. data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +43 -33
  345. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +16 -11
  346. data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +30 -27
  347. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +44 -27
  348. data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +94 -71
  349. data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.c +11 -10
  350. data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.h +17 -22
  351. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +38 -23
  352. data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +154 -76
  353. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +29 -18
  354. data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +106 -56
  355. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +44 -29
  356. data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +132 -92
  357. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +63 -42
  358. data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +192 -121
  359. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +78 -45
  360. data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +201 -132
  361. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +32 -21
  362. data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +66 -53
  363. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.c +5 -4
  364. data/src/core/ext/upb-generated/envoy/type/v3/http.upb.h +5 -8
  365. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +14 -9
  366. data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +21 -19
  367. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.c +26 -15
  368. data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +47 -34
  369. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +41 -22
  370. data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +83 -53
  371. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.c +33 -20
  372. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.h +84 -57
  373. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.c +5 -4
  374. data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h +5 -8
  375. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +18 -11
  376. data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +41 -27
  377. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.c +21 -14
  378. data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +54 -42
  379. data/src/core/ext/upb-generated/google/api/annotations.upb.c +12 -11
  380. data/src/core/ext/upb-generated/google/api/annotations.upb.h +22 -20
  381. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +253 -154
  382. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +927 -451
  383. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +297 -180
  384. data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +939 -484
  385. data/src/core/ext/upb-generated/google/api/http.upb.c +66 -35
  386. data/src/core/ext/upb-generated/google/api/http.upb.h +277 -121
  387. data/src/core/ext/upb-generated/google/api/httpbody.upb.c +20 -13
  388. data/src/core/ext/upb-generated/google/api/httpbody.upb.h +88 -38
  389. data/src/core/ext/upb-generated/google/protobuf/any.upb.c +17 -10
  390. data/src/core/ext/upb-generated/google/protobuf/any.upb.h +31 -23
  391. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +1168 -419
  392. data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +4431 -1412
  393. data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +17 -10
  394. data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +31 -23
  395. data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +8 -7
  396. data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +11 -15
  397. data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +60 -39
  398. data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +200 -103
  399. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +17 -10
  400. data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +31 -23
  401. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +88 -51
  402. data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +149 -107
  403. data/src/core/ext/upb-generated/google/rpc/status.upb.c +20 -13
  404. data/src/core/ext/upb-generated/google/rpc/status.upb.h +88 -38
  405. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +57 -34
  406. data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +147 -93
  407. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.c +41 -24
  408. data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +110 -60
  409. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +248 -145
  410. data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +912 -416
  411. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +32 -19
  412. data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +68 -51
  413. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +23 -14
  414. data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +37 -30
  415. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +142 -81
  416. data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +397 -217
  417. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +49 -26
  418. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +146 -62
  419. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +171 -102
  420. data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +848 -299
  421. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +66 -49
  422. data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +148 -105
  423. data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +24 -17
  424. data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +48 -35
  425. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.c +10 -9
  426. data/src/core/ext/upb-generated/udpa/annotations/sensitive.upb.h +23 -14
  427. data/src/core/ext/upb-generated/udpa/annotations/status.upb.c +24 -17
  428. data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +48 -35
  429. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +21 -16
  430. data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +38 -31
  431. data/src/core/ext/upb-generated/validate/validate.upb.c +843 -455
  432. data/src/core/ext/upb-generated/validate/validate.upb.h +4340 -1909
  433. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +66 -49
  434. data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +148 -105
  435. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +24 -17
  436. data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +48 -35
  437. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.c +10 -9
  438. data/src/core/ext/upb-generated/xds/annotations/v3/sensitive.upb.h +23 -14
  439. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +63 -44
  440. data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +130 -92
  441. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +21 -16
  442. data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +38 -31
  443. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +14 -9
  444. data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +21 -19
  445. data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.c +19 -12
  446. data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.h +38 -31
  447. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +35 -22
  448. data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +88 -63
  449. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +24 -17
  450. data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +44 -29
  451. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +19 -12
  452. data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +38 -31
  453. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +21 -14
  454. data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +55 -43
  455. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +42 -25
  456. data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +162 -80
  457. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +25 -14
  458. data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +58 -39
  459. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +84 -31
  460. data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +211 -59
  461. data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.c +19 -12
  462. data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.h +82 -35
  463. data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.c +16 -11
  464. data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.h +28 -27
  465. data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.c +30 -19
  466. data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.h +143 -55
  467. data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.c +8 -7
  468. data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.h +11 -15
  469. data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.c +32 -21
  470. data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.h +154 -64
  471. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +160 -101
  472. data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +494 -294
  473. data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.c +83 -52
  474. data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.h +423 -165
  475. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +22 -15
  476. data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +45 -37
  477. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +38 -23
  478. data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +154 -76
  479. data/src/core/ext/upb-generated/xds/type/v3/cel.upb.c +35 -22
  480. data/src/core/ext/upb-generated/xds/type/v3/cel.upb.h +84 -66
  481. data/src/core/ext/upb-generated/xds/type/v3/range.upb.c +41 -22
  482. data/src/core/ext/upb-generated/xds/type/v3/range.upb.h +83 -53
  483. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +19 -12
  484. data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +38 -31
  485. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.c +1 -1
  486. data/src/core/ext/upbdefs-generated/envoy/admin/v3/certs.upbdefs.h +6 -5
  487. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.c +1 -1
  488. data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.h +6 -5
  489. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +1 -1
  490. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +6 -5
  491. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.c +1 -1
  492. data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.h +6 -5
  493. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.c +1 -1
  494. data/src/core/ext/upbdefs-generated/envoy/admin/v3/init_dump.upbdefs.h +6 -5
  495. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +1 -1
  496. data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.h +6 -5
  497. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.c +1 -1
  498. data/src/core/ext/upbdefs-generated/envoy/admin/v3/memory.upbdefs.h +6 -5
  499. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.c +1 -1
  500. data/src/core/ext/upbdefs-generated/envoy/admin/v3/metrics.upbdefs.h +6 -5
  501. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.c +1 -1
  502. data/src/core/ext/upbdefs-generated/envoy/admin/v3/mutex_stats.upbdefs.h +6 -5
  503. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.c +1 -1
  504. data/src/core/ext/upbdefs-generated/envoy/admin/v3/server_info.upbdefs.h +6 -5
  505. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.c +1 -1
  506. data/src/core/ext/upbdefs-generated/envoy/admin/v3/tap.upbdefs.h +6 -5
  507. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.c +1 -1
  508. data/src/core/ext/upbdefs-generated/envoy/annotations/deprecation.upbdefs.h +6 -5
  509. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.c +1 -1
  510. data/src/core/ext/upbdefs-generated/envoy/annotations/resource.upbdefs.h +6 -5
  511. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +89 -77
  512. data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.h +11 -5
  513. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +251 -248
  514. data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +6 -5
  515. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +1 -1
  516. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +6 -5
  517. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +1 -1
  518. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +6 -5
  519. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.c +1 -1
  520. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/filter.upbdefs.h +6 -5
  521. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.c +1 -1
  522. data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/outlier_detection.upbdefs.h +6 -5
  523. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.c +1 -1
  524. data/src/core/ext/upbdefs-generated/envoy/config/common/matcher/v3/matcher.upbdefs.h +6 -5
  525. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +1 -1
  526. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +6 -5
  527. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.c +1 -1
  528. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/backoff.upbdefs.h +6 -5
  529. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +1 -1
  530. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.h +6 -5
  531. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.c +1 -1
  532. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/config_source.upbdefs.h +6 -5
  533. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.c +1 -1
  534. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/event_service_config.upbdefs.h +6 -5
  535. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.c +1 -1
  536. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/extension.upbdefs.h +6 -5
  537. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.c +1 -1
  538. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_method_list.upbdefs.h +6 -5
  539. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.c +163 -161
  540. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/grpc_service.upbdefs.h +6 -5
  541. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +130 -119
  542. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.h +6 -5
  543. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.c +1 -1
  544. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/http_uri.upbdefs.h +6 -5
  545. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +143 -134
  546. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.h +6 -5
  547. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.c +32 -16
  548. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/proxy_protocol.upbdefs.h +11 -5
  549. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.c +1 -1
  550. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/resolver.upbdefs.h +6 -5
  551. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +1 -1
  552. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +6 -5
  553. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +1 -1
  554. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.h +6 -5
  555. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.c +1 -1
  556. data/src/core/ext/upbdefs-generated/envoy/config/core/v3/udp_socket_config.upbdefs.h +6 -5
  557. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.c +1 -1
  558. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint.upbdefs.h +6 -5
  559. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +1 -1
  560. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +6 -5
  561. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.c +1 -1
  562. data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/load_report.upbdefs.h +6 -5
  563. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.c +1 -1
  564. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/api_listener.upbdefs.h +6 -5
  565. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +13 -10
  566. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +21 -5
  567. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.c +1 -1
  568. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener_components.upbdefs.h +6 -5
  569. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +55 -46
  570. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.h +6 -5
  571. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +1 -1
  572. data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.h +6 -5
  573. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.c +20 -13
  574. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/metrics_service.upbdefs.h +6 -5
  575. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.c +1 -1
  576. data/src/core/ext/upbdefs-generated/envoy/config/metrics/v3/stats.upbdefs.h +6 -5
  577. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.c +39 -31
  578. data/src/core/ext/upbdefs-generated/envoy/config/overload/v3/overload.upbdefs.h +11 -5
  579. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +142 -120
  580. data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +16 -5
  581. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +1 -1
  582. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +6 -5
  583. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +101 -98
  584. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +6 -5
  585. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.c +1 -1
  586. data/src/core/ext/upbdefs-generated/envoy/config/route/v3/scoped_route.upbdefs.h +6 -5
  587. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +1 -1
  588. data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +6 -5
  589. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.c +1 -1
  590. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.h +6 -5
  591. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.c +1 -1
  592. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/dynamic_ot.upbdefs.h +6 -5
  593. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.c +1 -1
  594. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/http_tracer.upbdefs.h +6 -5
  595. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.c +1 -1
  596. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/lightstep.upbdefs.h +6 -5
  597. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.c +1 -1
  598. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opencensus.upbdefs.h +6 -5
  599. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.c +16 -19
  600. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.h +6 -5
  601. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.c +1 -1
  602. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/service.upbdefs.h +6 -5
  603. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.c +1 -1
  604. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/skywalking.upbdefs.h +6 -5
  605. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +1 -1
  606. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.h +6 -5
  607. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.c +1 -1
  608. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/xray.upbdefs.h +6 -5
  609. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.c +1 -1
  610. data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.h +6 -5
  611. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.c +402 -0
  612. data/src/core/ext/upbdefs-generated/envoy/data/accesslog/v3/accesslog.upbdefs.h +111 -0
  613. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +1 -1
  614. data/src/core/ext/upbdefs-generated/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +6 -5
  615. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +1 -1
  616. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +6 -5
  617. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +81 -75
  618. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +6 -5
  619. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +1 -1
  620. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +6 -5
  621. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +64 -48
  622. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.h +11 -5
  623. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +1 -1
  624. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +6 -5
  625. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +315 -282
  626. data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +11 -5
  627. data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +1 -1
  628. data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +6 -5
  629. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +1 -1
  630. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +6 -5
  631. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +138 -136
  632. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +6 -5
  633. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +1 -1
  634. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +6 -5
  635. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +118 -118
  636. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +6 -5
  637. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +1 -1
  638. data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +6 -5
  639. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.c +6 -6
  640. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/ads.upbdefs.h +6 -5
  641. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +1 -1
  642. data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +6 -5
  643. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.c +6 -6
  644. data/src/core/ext/upbdefs-generated/envoy/service/load_stats/v3/lrs.upbdefs.h +6 -5
  645. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +12 -13
  646. data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.h +6 -5
  647. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.c +1 -1
  648. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/cookie.upbdefs.h +6 -5
  649. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.c +1 -1
  650. data/src/core/ext/upbdefs-generated/envoy/type/http/v3/path_transformation.upbdefs.h +6 -5
  651. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.c +1 -1
  652. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.h +6 -5
  653. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.c +13 -10
  654. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/http_inputs.upbdefs.h +11 -5
  655. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.c +1 -1
  656. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/metadata.upbdefs.h +6 -5
  657. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.c +1 -1
  658. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/node.upbdefs.h +6 -5
  659. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.c +1 -1
  660. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/number.upbdefs.h +6 -5
  661. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.c +1 -1
  662. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/path.upbdefs.h +6 -5
  663. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +30 -30
  664. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.h +6 -5
  665. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.c +1 -1
  666. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.h +6 -5
  667. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.c +1 -1
  668. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/string.upbdefs.h +6 -5
  669. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.c +1 -1
  670. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/struct.upbdefs.h +6 -5
  671. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.c +1 -1
  672. data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/value.upbdefs.h +6 -5
  673. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.c +1 -1
  674. data/src/core/ext/upbdefs-generated/envoy/type/metadata/v3/metadata.upbdefs.h +6 -5
  675. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.c +1 -1
  676. data/src/core/ext/upbdefs-generated/envoy/type/tracing/v3/custom_tag.upbdefs.h +6 -5
  677. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.c +1 -1
  678. data/src/core/ext/upbdefs-generated/envoy/type/v3/hash_policy.upbdefs.h +6 -5
  679. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.c +1 -1
  680. data/src/core/ext/upbdefs-generated/envoy/type/v3/http.upbdefs.h +6 -5
  681. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.c +1 -1
  682. data/src/core/ext/upbdefs-generated/envoy/type/v3/http_status.upbdefs.h +6 -5
  683. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.c +1 -1
  684. data/src/core/ext/upbdefs-generated/envoy/type/v3/percent.upbdefs.h +6 -5
  685. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.c +1 -1
  686. data/src/core/ext/upbdefs-generated/envoy/type/v3/range.upbdefs.h +6 -5
  687. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.c +1 -1
  688. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.h +6 -5
  689. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.c +1 -1
  690. data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.h +6 -5
  691. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.c +1 -1
  692. data/src/core/ext/upbdefs-generated/envoy/type/v3/semantic_version.upbdefs.h +6 -5
  693. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.c +1 -1
  694. data/src/core/ext/upbdefs-generated/envoy/type/v3/token_bucket.upbdefs.h +6 -5
  695. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.c +1 -1
  696. data/src/core/ext/upbdefs-generated/google/api/annotations.upbdefs.h +6 -5
  697. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.c +1 -1
  698. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/checked.upbdefs.h +6 -5
  699. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.c +1 -1
  700. data/src/core/ext/upbdefs-generated/google/api/expr/v1alpha1/syntax.upbdefs.h +6 -5
  701. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.c +1 -1
  702. data/src/core/ext/upbdefs-generated/google/api/http.upbdefs.h +6 -5
  703. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.c +1 -1
  704. data/src/core/ext/upbdefs-generated/google/api/httpbody.upbdefs.h +6 -5
  705. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.c +1 -1
  706. data/src/core/ext/upbdefs-generated/google/protobuf/any.upbdefs.h +6 -5
  707. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +406 -273
  708. data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.h +21 -5
  709. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.c +1 -1
  710. data/src/core/ext/upbdefs-generated/google/protobuf/duration.upbdefs.h +6 -5
  711. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.c +1 -1
  712. data/src/core/ext/upbdefs-generated/google/protobuf/empty.upbdefs.h +6 -5
  713. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.c +1 -1
  714. data/src/core/ext/upbdefs-generated/google/protobuf/struct.upbdefs.h +6 -5
  715. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.c +1 -1
  716. data/src/core/ext/upbdefs-generated/google/protobuf/timestamp.upbdefs.h +6 -5
  717. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.c +1 -1
  718. data/src/core/ext/upbdefs-generated/google/protobuf/wrappers.upbdefs.h +6 -5
  719. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.c +1 -1
  720. data/src/core/ext/upbdefs-generated/google/rpc/status.upbdefs.h +6 -5
  721. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.c +1 -1
  722. data/src/core/ext/upbdefs-generated/opencensus/proto/trace/v1/trace_config.upbdefs.h +6 -5
  723. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +1 -1
  724. data/src/core/ext/upbdefs-generated/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +6 -5
  725. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.c +1 -1
  726. data/src/core/ext/upbdefs-generated/udpa/annotations/migrate.upbdefs.h +6 -5
  727. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.c +1 -1
  728. data/src/core/ext/upbdefs-generated/udpa/annotations/security.upbdefs.h +6 -5
  729. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.c +1 -1
  730. data/src/core/ext/upbdefs-generated/udpa/annotations/sensitive.upbdefs.h +6 -5
  731. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.c +1 -1
  732. data/src/core/ext/upbdefs-generated/udpa/annotations/status.upbdefs.h +6 -5
  733. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.c +1 -1
  734. data/src/core/ext/upbdefs-generated/udpa/annotations/versioning.upbdefs.h +6 -5
  735. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.c +1 -1
  736. data/src/core/ext/upbdefs-generated/validate/validate.upbdefs.h +6 -5
  737. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.c +1 -1
  738. data/src/core/ext/upbdefs-generated/xds/annotations/v3/migrate.upbdefs.h +6 -5
  739. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.c +1 -1
  740. data/src/core/ext/upbdefs-generated/xds/annotations/v3/security.upbdefs.h +6 -5
  741. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.c +1 -1
  742. data/src/core/ext/upbdefs-generated/xds/annotations/v3/sensitive.upbdefs.h +6 -5
  743. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.c +1 -1
  744. data/src/core/ext/upbdefs-generated/xds/annotations/v3/status.upbdefs.h +6 -5
  745. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.c +1 -1
  746. data/src/core/ext/upbdefs-generated/xds/annotations/v3/versioning.upbdefs.h +6 -5
  747. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.c +1 -1
  748. data/src/core/ext/upbdefs-generated/xds/core/v3/authority.upbdefs.h +6 -5
  749. data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.c +1 -1
  750. data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.h +6 -5
  751. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.c +1 -1
  752. data/src/core/ext/upbdefs-generated/xds/core/v3/collection_entry.upbdefs.h +6 -5
  753. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.c +1 -1
  754. data/src/core/ext/upbdefs-generated/xds/core/v3/context_params.upbdefs.h +6 -5
  755. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.c +1 -1
  756. data/src/core/ext/upbdefs-generated/xds/core/v3/extension.upbdefs.h +6 -5
  757. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.c +1 -1
  758. data/src/core/ext/upbdefs-generated/xds/core/v3/resource.upbdefs.h +6 -5
  759. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.c +1 -1
  760. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_locator.upbdefs.h +6 -5
  761. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.c +1 -1
  762. data/src/core/ext/upbdefs-generated/xds/core/v3/resource_name.upbdefs.h +6 -5
  763. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.c +1 -1
  764. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.h +6 -5
  765. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.c +1 -1
  766. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.h +6 -5
  767. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.c +1 -1
  768. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.h +6 -5
  769. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.c +1 -1
  770. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.h +6 -5
  771. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.c +1 -1
  772. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.h +6 -5
  773. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.c +1 -1
  774. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.h +6 -5
  775. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.c +1 -1
  776. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/regex.upbdefs.h +6 -5
  777. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.c +1 -1
  778. data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/string.upbdefs.h +6 -5
  779. data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.c +1 -1
  780. data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.h +6 -5
  781. data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.c +1 -1
  782. data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.h +6 -5
  783. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +1 -1
  784. data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.h +6 -5
  785. data/src/core/ext/xds/certificate_provider_store.cc +8 -13
  786. data/src/core/ext/xds/certificate_provider_store.h +1 -1
  787. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +30 -42
  788. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +14 -9
  789. data/src/core/ext/xds/upb_utils.h +1 -1
  790. data/src/core/ext/xds/xds_api.cc +41 -18
  791. data/src/core/ext/xds/xds_api.h +5 -4
  792. data/src/core/ext/xds/xds_audit_logger_registry.cc +122 -0
  793. data/src/core/ext/xds/xds_audit_logger_registry.h +68 -0
  794. data/src/core/ext/xds/xds_bootstrap.cc +3 -3
  795. data/src/core/ext/xds/xds_bootstrap_grpc.cc +65 -50
  796. data/src/core/ext/xds/xds_bootstrap_grpc.h +10 -13
  797. data/src/core/ext/xds/xds_channel_stack_modifier.cc +1 -2
  798. data/src/core/ext/xds/xds_client.cc +35 -16
  799. data/src/core/ext/xds/xds_client.h +3 -3
  800. data/src/core/ext/xds/xds_client_grpc.cc +12 -6
  801. data/src/core/ext/xds/xds_client_grpc.h +16 -2
  802. data/src/core/ext/xds/xds_client_stats.cc +29 -15
  803. data/src/core/ext/xds/xds_client_stats.h +34 -20
  804. data/src/core/ext/xds/xds_cluster.cc +100 -109
  805. data/src/core/ext/xds/xds_cluster.h +1 -6
  806. data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +15 -11
  807. data/src/core/ext/xds/xds_cluster_specifier_plugin.h +2 -2
  808. data/src/core/ext/xds/xds_common_types.cc +8 -5
  809. data/src/core/ext/xds/xds_endpoint.cc +26 -30
  810. data/src/core/ext/xds/xds_endpoint.h +10 -3
  811. data/src/core/ext/xds/xds_health_status.cc +0 -17
  812. data/src/core/ext/xds/xds_health_status.h +5 -25
  813. data/src/core/ext/xds/xds_http_fault_filter.cc +16 -14
  814. data/src/core/ext/xds/xds_http_fault_filter.h +1 -1
  815. data/src/core/ext/xds/xds_http_filters.cc +1 -4
  816. data/src/core/ext/xds/xds_http_filters.h +3 -2
  817. data/src/core/ext/xds/xds_http_rbac_filter.cc +153 -73
  818. data/src/core/ext/xds/xds_http_rbac_filter.h +1 -1
  819. data/src/core/ext/xds/xds_http_stateful_session_filter.cc +16 -16
  820. data/src/core/ext/xds/xds_http_stateful_session_filter.h +1 -1
  821. data/src/core/ext/xds/xds_lb_policy_registry.cc +72 -35
  822. data/src/core/ext/xds/xds_listener.cc +25 -18
  823. data/src/core/ext/xds/xds_listener.h +14 -4
  824. data/src/core/ext/xds/xds_resource_type.h +3 -9
  825. data/src/core/ext/xds/xds_resource_type_impl.h +9 -11
  826. data/src/core/ext/xds/xds_route_config.cc +62 -19
  827. data/src/core/ext/xds/xds_route_config.h +2 -2
  828. data/src/core/ext/xds/xds_server_config_fetcher.cc +53 -28
  829. data/src/core/ext/xds/xds_transport_grpc.cc +14 -3
  830. data/src/core/lib/address_utils/parse_address.cc +63 -1
  831. data/src/core/lib/address_utils/parse_address.h +8 -0
  832. data/src/core/lib/address_utils/sockaddr_utils.cc +46 -1
  833. data/src/core/lib/address_utils/sockaddr_utils.h +2 -2
  834. data/src/core/lib/avl/avl.h +15 -173
  835. data/src/core/lib/backoff/random_early_detection.cc +33 -0
  836. data/src/core/lib/backoff/random_early_detection.h +62 -0
  837. data/src/core/lib/channel/call_finalization.h +1 -1
  838. data/src/core/lib/channel/call_tracer.cc +346 -0
  839. data/src/core/lib/channel/call_tracer.h +140 -39
  840. data/src/core/lib/channel/channel_args.cc +120 -46
  841. data/src/core/lib/channel/channel_args.h +52 -4
  842. data/src/core/lib/channel/channel_trace.cc +16 -12
  843. data/src/core/lib/channel/channelz.cc +163 -135
  844. data/src/core/lib/channel/channelz.h +42 -35
  845. data/src/core/lib/channel/channelz_registry.cc +24 -20
  846. data/src/core/lib/channel/channelz_registry.h +4 -2
  847. data/src/core/lib/channel/connected_channel.cc +545 -1044
  848. data/src/core/lib/channel/context.h +8 -1
  849. data/src/core/lib/channel/promise_based_filter.cc +113 -51
  850. data/src/core/lib/channel/promise_based_filter.h +32 -14
  851. data/src/core/lib/channel/server_call_tracer_filter.cc +110 -0
  852. data/src/core/lib/compression/compression_internal.cc +8 -7
  853. data/src/core/lib/config/config_vars.cc +153 -0
  854. data/src/core/lib/config/config_vars.h +127 -0
  855. data/src/core/lib/config/config_vars_non_generated.cc +51 -0
  856. data/src/core/lib/config/core_configuration.cc +2 -1
  857. data/src/core/lib/config/core_configuration.h +5 -4
  858. data/src/core/lib/config/load_config.cc +79 -0
  859. data/src/core/lib/config/load_config.h +55 -0
  860. data/src/core/lib/debug/event_log.h +1 -1
  861. data/src/core/lib/debug/stats_data.cc +202 -35
  862. data/src/core/lib/debug/stats_data.h +103 -1
  863. data/src/core/lib/debug/trace.cc +35 -61
  864. data/src/core/lib/debug/trace.h +14 -9
  865. data/src/core/lib/event_engine/ares_resolver.cc +721 -0
  866. data/src/core/lib/event_engine/ares_resolver.h +150 -0
  867. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +221 -0
  868. data/src/core/lib/event_engine/cf_engine/cf_engine.h +89 -0
  869. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +357 -0
  870. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +149 -0
  871. data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +82 -0
  872. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +241 -0
  873. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +120 -0
  874. data/src/core/lib/event_engine/default_event_engine.cc +13 -1
  875. data/src/core/lib/event_engine/default_event_engine_factory.cc +14 -2
  876. data/src/core/lib/event_engine/event_engine.cc +25 -2
  877. data/src/core/lib/event_engine/forkable.cc +62 -43
  878. data/src/core/lib/event_engine/forkable.h +15 -0
  879. data/src/core/lib/event_engine/grpc_polled_fd.h +73 -0
  880. data/src/core/lib/event_engine/handle_containers.h +5 -24
  881. data/src/core/lib/event_engine/memory_allocator_factory.h +47 -0
  882. data/src/core/lib/event_engine/nameser.h +102 -0
  883. data/src/core/lib/event_engine/poller.h +2 -2
  884. data/src/core/lib/event_engine/posix.h +4 -0
  885. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +5 -7
  886. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +29 -13
  887. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +10 -1
  888. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +3 -9
  889. data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +197 -0
  890. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +7 -18
  891. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +76 -29
  892. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +20 -9
  893. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +96 -52
  894. data/src/core/lib/event_engine/posix_engine/posix_engine.h +22 -14
  895. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +75 -33
  896. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +12 -8
  897. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +4 -2
  898. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +76 -21
  899. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +9 -3
  900. data/src/core/lib/event_engine/posix_engine/timer.h +10 -37
  901. data/src/core/lib/event_engine/posix_engine/timer_manager.h +1 -1
  902. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +2 -0
  903. data/src/core/lib/event_engine/resolved_address.cc +2 -1
  904. data/src/core/lib/event_engine/shim.cc +9 -1
  905. data/src/core/lib/event_engine/tcp_socket_utils.cc +67 -7
  906. data/src/core/lib/event_engine/tcp_socket_utils.h +3 -0
  907. data/src/core/lib/event_engine/thread_pool/thread_count.cc +58 -0
  908. data/src/core/lib/event_engine/thread_pool/thread_count.h +176 -0
  909. data/src/core/lib/event_engine/thread_pool/thread_pool.h +50 -0
  910. data/src/core/lib/event_engine/{executor/executor.h → thread_pool/thread_pool_factory.cc} +12 -15
  911. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +523 -0
  912. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +223 -0
  913. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +157 -0
  914. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +104 -0
  915. data/src/core/lib/event_engine/trace.cc +1 -0
  916. data/src/core/lib/event_engine/trace.h +6 -0
  917. data/src/core/lib/event_engine/windows/iocp.cc +4 -3
  918. data/src/core/lib/event_engine/windows/iocp.h +3 -3
  919. data/src/core/lib/event_engine/windows/win_socket.cc +6 -7
  920. data/src/core/lib/event_engine/windows/win_socket.h +4 -4
  921. data/src/core/lib/event_engine/windows/windows_endpoint.cc +153 -105
  922. data/src/core/lib/event_engine/windows/windows_endpoint.h +30 -10
  923. data/src/core/lib/event_engine/windows/windows_engine.cc +57 -33
  924. data/src/core/lib/event_engine/windows/windows_engine.h +16 -19
  925. data/src/core/lib/event_engine/windows/windows_listener.cc +370 -0
  926. data/src/core/lib/event_engine/windows/windows_listener.h +156 -0
  927. data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +63 -0
  928. data/src/core/lib/event_engine/work_queue/basic_work_queue.h +71 -0
  929. data/src/core/lib/event_engine/work_queue/work_queue.h +62 -0
  930. data/src/core/lib/experiments/config.cc +122 -38
  931. data/src/core/lib/experiments/config.h +33 -5
  932. data/src/core/lib/experiments/experiments.cc +680 -21
  933. data/src/core/lib/experiments/experiments.h +348 -25
  934. data/src/core/lib/gpr/log.cc +15 -28
  935. data/src/core/lib/gpr/log_internal.h +55 -0
  936. data/src/core/lib/gpr/{time_posix.cc → posix/time.cc} +5 -0
  937. data/src/core/lib/gprpp/crash.cc +10 -0
  938. data/src/core/lib/gprpp/crash.h +3 -0
  939. data/src/core/lib/gprpp/dual_ref_counted.h +9 -9
  940. data/src/core/lib/gprpp/fork.cc +16 -23
  941. data/src/core/lib/gprpp/fork.h +7 -6
  942. data/src/core/lib/gprpp/if_list.h +4530 -0
  943. data/src/core/lib/gprpp/manual_constructor.h +1 -2
  944. data/src/core/lib/gprpp/no_destruct.h +1 -1
  945. data/src/core/lib/gprpp/orphanable.h +7 -6
  946. data/src/core/lib/gprpp/per_cpu.cc +35 -0
  947. data/src/core/lib/gprpp/per_cpu.h +64 -6
  948. data/src/core/lib/gprpp/{thd_posix.cc → posix/thd.cc} +49 -37
  949. data/src/core/lib/gprpp/ref_counted.h +42 -41
  950. data/src/core/lib/gprpp/ref_counted_ptr.h +63 -0
  951. data/src/core/lib/gprpp/ref_counted_string.cc +44 -0
  952. data/src/core/lib/gprpp/ref_counted_string.h +146 -0
  953. data/src/core/lib/gprpp/sorted_pack.h +3 -12
  954. data/src/core/lib/gprpp/status_helper.cc +2 -2
  955. data/src/core/lib/gprpp/status_helper.h +16 -15
  956. data/src/core/lib/gprpp/thd.h +16 -0
  957. data/src/core/lib/gprpp/time.cc +2 -0
  958. data/src/core/lib/gprpp/time.h +16 -4
  959. data/src/core/lib/gprpp/{global_config_custom.h → type_list.h} +17 -14
  960. data/src/core/lib/gprpp/validation_errors.cc +8 -3
  961. data/src/core/lib/gprpp/validation_errors.h +16 -9
  962. data/src/core/lib/gprpp/{thd_windows.cc → windows/thd.cc} +2 -2
  963. data/src/core/lib/gprpp/work_serializer.cc +320 -12
  964. data/src/core/lib/gprpp/work_serializer.h +30 -9
  965. data/src/core/lib/http/httpcli.h +6 -9
  966. data/src/core/lib/http/httpcli_security_connector.cc +1 -0
  967. data/src/core/lib/iomgr/buffer_list.cc +2 -0
  968. data/src/core/lib/iomgr/buffer_list.h +0 -1
  969. data/src/core/lib/iomgr/call_combiner.h +2 -2
  970. data/src/core/lib/iomgr/cfstream_handle.cc +1 -1
  971. data/src/core/lib/iomgr/combiner.cc +57 -15
  972. data/src/core/lib/iomgr/combiner.h +8 -3
  973. data/src/core/lib/iomgr/endpoint_cfstream.cc +14 -10
  974. data/src/core/lib/iomgr/endpoint_pair.h +2 -2
  975. data/src/core/lib/iomgr/endpoint_pair_posix.cc +2 -2
  976. data/src/core/lib/iomgr/endpoint_pair_windows.cc +1 -1
  977. data/src/core/lib/iomgr/error.cc +32 -2
  978. data/src/core/lib/iomgr/error.h +9 -10
  979. data/src/core/lib/iomgr/ev_apple.cc +12 -12
  980. data/src/core/lib/iomgr/ev_epoll1_linux.cc +15 -10
  981. data/src/core/lib/iomgr/ev_poll_posix.cc +6 -5
  982. data/src/core/lib/iomgr/ev_posix.cc +13 -53
  983. data/src/core/lib/iomgr/ev_posix.h +0 -3
  984. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +125 -101
  985. data/src/core/lib/iomgr/exec_ctx.cc +12 -0
  986. data/src/core/lib/iomgr/exec_ctx.h +66 -19
  987. data/src/core/lib/iomgr/iocp_windows.cc +24 -3
  988. data/src/core/lib/iomgr/iocp_windows.h +11 -0
  989. data/src/core/lib/iomgr/iomgr.cc +4 -8
  990. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +1 -1
  991. data/src/core/lib/iomgr/iomgr_windows.cc +8 -2
  992. data/src/core/lib/iomgr/polling_entity.cc +10 -0
  993. data/src/core/lib/iomgr/polling_entity.h +2 -0
  994. data/src/core/lib/iomgr/pollset.h +4 -5
  995. data/src/core/lib/iomgr/pollset_set_windows.cc +9 -9
  996. data/src/core/lib/iomgr/pollset_windows.cc +1 -1
  997. data/src/core/lib/iomgr/port.h +24 -0
  998. data/src/core/lib/iomgr/resolve_address.cc +13 -1
  999. data/src/core/lib/iomgr/resolve_address.h +17 -3
  1000. data/src/core/lib/iomgr/sockaddr_posix.h +7 -0
  1001. data/src/core/lib/iomgr/socket_utils_common_posix.cc +49 -5
  1002. data/src/core/lib/iomgr/socket_utils_posix.cc +5 -0
  1003. data/src/core/lib/iomgr/socket_utils_posix.h +9 -0
  1004. data/src/core/lib/iomgr/socket_windows.cc +61 -7
  1005. data/src/core/lib/iomgr/socket_windows.h +9 -2
  1006. data/src/core/lib/iomgr/tcp_client_cfstream.cc +14 -3
  1007. data/src/core/lib/iomgr/tcp_client_posix.cc +8 -1
  1008. data/src/core/lib/iomgr/tcp_client_windows.cc +2 -2
  1009. data/src/core/lib/iomgr/tcp_posix.cc +41 -22
  1010. data/src/core/lib/iomgr/tcp_server_posix.cc +186 -133
  1011. data/src/core/lib/iomgr/tcp_server_utils_posix.h +13 -1
  1012. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +26 -2
  1013. data/src/core/lib/iomgr/tcp_server_windows.cc +176 -9
  1014. data/src/core/lib/iomgr/tcp_windows.cc +13 -11
  1015. data/src/core/lib/iomgr/timer_generic.cc +17 -16
  1016. data/src/core/lib/iomgr/vsock.cc +59 -0
  1017. data/src/core/lib/iomgr/vsock.h +38 -0
  1018. data/src/core/lib/iomgr/wakeup_fd_posix.h +3 -6
  1019. data/src/core/lib/json/json.h +2 -218
  1020. data/src/core/lib/json/json_object_loader.cc +24 -25
  1021. data/src/core/lib/json/json_object_loader.h +30 -18
  1022. data/src/core/lib/json/json_reader.cc +69 -42
  1023. data/src/core/{ext/filters/client_channel/lb_call_state_internal.h → lib/json/json_reader.h} +7 -12
  1024. data/src/core/lib/json/json_util.cc +10 -15
  1025. data/src/core/lib/json/json_util.h +5 -4
  1026. data/src/core/lib/json/json_writer.cc +24 -25
  1027. data/src/core/lib/{security/security_connector/ssl_utils_config.h → json/json_writer.h} +14 -10
  1028. data/src/core/lib/load_balancing/delegating_helper.h +115 -0
  1029. data/src/core/lib/load_balancing/lb_policy.cc +9 -13
  1030. data/src/core/lib/load_balancing/lb_policy.h +47 -11
  1031. data/src/core/lib/load_balancing/lb_policy_registry.cc +9 -8
  1032. data/src/core/lib/load_balancing/subchannel_interface.h +6 -0
  1033. data/src/core/lib/matchers/matchers.cc +3 -4
  1034. data/src/core/lib/matchers/matchers.h +2 -1
  1035. data/src/core/lib/promise/activity.cc +27 -6
  1036. data/src/core/lib/promise/activity.h +71 -24
  1037. data/src/core/lib/promise/arena_promise.h +5 -1
  1038. data/src/core/lib/promise/cancel_callback.h +77 -0
  1039. data/src/core/lib/promise/detail/basic_seq.h +1 -372
  1040. data/src/core/lib/promise/detail/promise_factory.h +5 -1
  1041. data/src/core/lib/promise/detail/seq_state.h +2494 -0
  1042. data/src/core/lib/promise/for_each.h +176 -0
  1043. data/src/core/lib/promise/if.h +9 -0
  1044. data/src/core/lib/promise/interceptor_list.h +23 -2
  1045. data/src/core/lib/promise/latch.h +90 -3
  1046. data/src/core/lib/promise/loop.h +19 -12
  1047. data/src/core/lib/promise/map.h +7 -0
  1048. data/src/core/lib/promise/party.cc +304 -0
  1049. data/src/core/lib/promise/party.h +508 -0
  1050. data/src/core/lib/promise/pipe.h +213 -59
  1051. data/src/core/lib/promise/poll.h +52 -6
  1052. data/src/core/lib/promise/prioritized_race.h +95 -0
  1053. data/src/core/lib/promise/promise.h +2 -2
  1054. data/src/core/lib/promise/seq.h +19 -2
  1055. data/src/core/lib/promise/sleep.cc +2 -1
  1056. data/src/core/lib/promise/sleep.h +5 -10
  1057. data/src/core/lib/promise/try_seq.h +34 -2
  1058. data/src/core/lib/resolver/resolver_factory.h +3 -2
  1059. data/src/core/lib/resolver/server_address.cc +9 -102
  1060. data/src/core/lib/resolver/server_address.h +11 -70
  1061. data/src/core/lib/resource_quota/api.cc +1 -0
  1062. data/src/core/lib/resource_quota/arena.cc +21 -3
  1063. data/src/core/lib/resource_quota/arena.h +158 -10
  1064. data/src/core/lib/resource_quota/memory_quota.cc +66 -11
  1065. data/src/core/lib/resource_quota/memory_quota.h +6 -4
  1066. data/src/core/lib/resource_quota/resource_quota.h +1 -0
  1067. data/src/core/lib/security/authorization/audit_logging.cc +98 -0
  1068. data/src/core/lib/security/authorization/audit_logging.h +73 -0
  1069. data/src/core/lib/security/authorization/authorization_policy_provider.h +1 -1
  1070. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +47 -2
  1071. data/src/core/lib/security/authorization/grpc_authorization_engine.h +18 -1
  1072. data/src/core/lib/security/authorization/rbac_policy.cc +36 -4
  1073. data/src/core/lib/security/authorization/rbac_policy.h +19 -2
  1074. data/src/core/lib/security/authorization/stdout_logger.cc +75 -0
  1075. data/src/core/lib/security/authorization/stdout_logger.h +61 -0
  1076. data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +8 -4
  1077. data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +8 -18
  1078. data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +14 -8
  1079. data/src/core/lib/security/credentials/channel_creds_registry.h +51 -27
  1080. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +169 -9
  1081. data/src/core/lib/security/credentials/composite/composite_credentials.cc +1 -1
  1082. data/src/core/lib/security/credentials/composite/composite_credentials.h +3 -1
  1083. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +66 -84
  1084. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +1 -0
  1085. data/src/core/lib/security/credentials/external/aws_request_signer.cc +8 -0
  1086. data/src/core/lib/security/credentials/external/external_account_credentials.cc +104 -65
  1087. data/src/core/lib/security/credentials/external/external_account_credentials.h +6 -0
  1088. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +23 -21
  1089. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +29 -27
  1090. data/src/core/lib/security/credentials/fake/fake_credentials.cc +30 -38
  1091. data/src/core/lib/security/credentials/fake/fake_credentials.h +28 -0
  1092. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +6 -61
  1093. data/src/core/lib/security/credentials/jwt/json_token.cc +36 -16
  1094. data/src/core/lib/security/credentials/jwt/json_token.h +4 -0
  1095. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +10 -5
  1096. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +82 -38
  1097. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +28 -21
  1098. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +1 -1
  1099. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +116 -9
  1100. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +14 -0
  1101. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +86 -0
  1102. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +11 -53
  1103. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +2 -0
  1104. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +2 -0
  1105. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +8 -0
  1106. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +5 -1
  1107. data/src/core/lib/security/credentials/tls/tls_credentials.cc +2 -1
  1108. data/src/core/lib/security/credentials/tls/tls_credentials.h +3 -1
  1109. data/src/core/lib/security/credentials/xds/xds_credentials.cc +1 -0
  1110. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +2 -5
  1111. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +1 -0
  1112. data/src/core/lib/security/security_connector/load_system_roots_supported.cc +5 -9
  1113. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +7 -57
  1114. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +1 -1
  1115. data/src/core/lib/security/security_connector/ssl_utils.cc +14 -26
  1116. data/src/core/lib/security/security_connector/ssl_utils.h +1 -1
  1117. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +15 -15
  1118. data/src/core/lib/security/transport/client_auth_filter.cc +8 -5
  1119. data/src/core/lib/security/transport/secure_endpoint.cc +4 -2
  1120. data/src/core/lib/security/transport/security_handshaker.cc +1 -0
  1121. data/src/core/lib/security/transport/server_auth_filter.cc +21 -1
  1122. data/src/core/lib/security/util/json_util.cc +6 -5
  1123. data/src/core/lib/service_config/service_config_call_data.h +54 -20
  1124. data/src/core/lib/service_config/service_config_impl.cc +13 -6
  1125. data/src/core/lib/slice/slice.cc +1 -1
  1126. data/src/core/lib/slice/slice.h +24 -0
  1127. data/src/core/lib/slice/slice_buffer.cc +15 -0
  1128. data/src/core/lib/slice/slice_buffer.h +16 -4
  1129. data/src/core/lib/slice/slice_refcount.h +1 -1
  1130. data/src/core/lib/surface/builtins.cc +2 -0
  1131. data/src/core/lib/surface/call.cc +1108 -1062
  1132. data/src/core/lib/surface/call.h +15 -5
  1133. data/src/core/lib/surface/channel.cc +8 -4
  1134. data/src/core/lib/surface/channel_init.h +3 -2
  1135. data/src/core/lib/surface/completion_queue.cc +18 -3
  1136. data/src/core/lib/surface/init.cc +1 -0
  1137. data/src/core/lib/surface/lame_client.cc +1 -0
  1138. data/src/core/lib/surface/server.cc +151 -80
  1139. data/src/core/lib/surface/server.h +19 -21
  1140. data/src/core/lib/surface/validate_metadata.cc +57 -41
  1141. data/src/core/lib/surface/validate_metadata.h +19 -0
  1142. data/src/core/lib/surface/version.cc +2 -2
  1143. data/src/core/lib/transport/batch_builder.cc +180 -0
  1144. data/src/core/lib/transport/batch_builder.h +480 -0
  1145. data/src/core/lib/transport/bdp_estimator.cc +7 -7
  1146. data/src/core/lib/transport/bdp_estimator.h +10 -6
  1147. data/src/core/lib/transport/custom_metadata.h +30 -0
  1148. data/src/core/lib/transport/metadata_batch.cc +22 -13
  1149. data/src/core/lib/transport/metadata_batch.h +239 -79
  1150. data/src/core/lib/transport/metadata_compression_traits.h +67 -0
  1151. data/src/core/lib/transport/parsed_metadata.h +50 -28
  1152. data/src/core/lib/transport/simple_slice_based_metadata.h +54 -0
  1153. data/src/core/lib/transport/timeout_encoding.cc +6 -1
  1154. data/src/core/lib/transport/transport.cc +30 -2
  1155. data/src/core/lib/transport/transport.h +100 -25
  1156. data/src/core/lib/transport/transport_impl.h +7 -0
  1157. data/src/core/lib/transport/transport_op_string.cc +52 -42
  1158. data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -8
  1159. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +2 -0
  1160. data/src/core/tsi/alts/crypt/aes_gcm.cc +27 -2
  1161. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +1 -0
  1162. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +21 -4
  1163. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +5 -0
  1164. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +1 -1
  1165. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +4 -6
  1166. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +1 -2
  1167. data/src/core/tsi/ssl_transport_security.cc +55 -11
  1168. data/src/core/tsi/ssl_transport_security.h +17 -1
  1169. data/src/ruby/bin/math_pb.rb +24 -18
  1170. data/src/ruby/ext/grpc/extconf.rb +27 -27
  1171. data/src/ruby/ext/grpc/rb_call.c +62 -39
  1172. data/src/ruby/ext/grpc/rb_call_credentials.c +0 -1
  1173. data/src/ruby/ext/grpc/rb_channel.c +109 -84
  1174. data/src/ruby/ext/grpc/rb_channel.h +1 -0
  1175. data/src/ruby/ext/grpc/rb_channel_args.c +18 -2
  1176. data/src/ruby/ext/grpc/rb_channel_args.h +4 -0
  1177. data/src/ruby/ext/grpc/rb_channel_credentials.c +0 -1
  1178. data/src/ruby/ext/grpc/rb_compression_options.c +0 -1
  1179. data/src/ruby/ext/grpc/rb_event_thread.c +22 -6
  1180. data/src/ruby/ext/grpc/rb_event_thread.h +1 -0
  1181. data/src/ruby/ext/grpc/rb_grpc.c +192 -30
  1182. data/src/ruby/ext/grpc/rb_grpc.h +8 -2
  1183. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +2 -0
  1184. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +3 -0
  1185. data/src/ruby/ext/grpc/rb_server.c +62 -45
  1186. data/src/ruby/ext/grpc/rb_server_credentials.c +0 -1
  1187. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +0 -1
  1188. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +0 -1
  1189. data/src/ruby/lib/grpc/generic/active_call.rb +9 -14
  1190. data/src/ruby/lib/grpc/generic/bidi_call.rb +2 -0
  1191. data/src/ruby/lib/grpc/version.rb +1 -1
  1192. data/src/ruby/pb/grpc/health/v1/health_pb.rb +24 -13
  1193. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +24 -3
  1194. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +28 -111
  1195. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +25 -2
  1196. data/src/ruby/pb/test/client.rb +16 -0
  1197. data/src/ruby/spec/generic/rpc_server_spec.rb +3 -3
  1198. data/third_party/abseil-cpp/absl/algorithm/container.h +3 -2
  1199. data/third_party/abseil-cpp/absl/base/attributes.h +58 -5
  1200. data/third_party/abseil-cpp/absl/base/call_once.h +1 -1
  1201. data/third_party/abseil-cpp/absl/base/casts.h +8 -8
  1202. data/third_party/abseil-cpp/absl/base/config.h +88 -105
  1203. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +26 -1
  1204. data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +2 -2
  1205. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +50 -39
  1206. data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +2 -1
  1207. data/third_party/abseil-cpp/absl/base/internal/prefetch.h +17 -18
  1208. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +32 -3
  1209. data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +24 -4
  1210. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +31 -73
  1211. data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +9 -8
  1212. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +11 -11
  1213. data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +23 -32
  1214. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +2 -3
  1215. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  1216. data/third_party/abseil-cpp/absl/base/policy_checks.h +3 -3
  1217. data/third_party/abseil-cpp/absl/base/prefetch.h +198 -0
  1218. data/third_party/abseil-cpp/absl/container/fixed_array.h +54 -29
  1219. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +5 -1
  1220. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +6 -2
  1221. data/third_party/abseil-cpp/absl/container/inlined_vector.h +167 -79
  1222. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +1 -1
  1223. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +3 -21
  1224. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +1 -1
  1225. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +46 -0
  1226. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +2 -0
  1227. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +85 -26
  1228. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +35 -18
  1229. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +70 -29
  1230. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +437 -236
  1231. data/third_party/abseil-cpp/absl/crc/crc32c.h +8 -1
  1232. data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +14 -8
  1233. data/third_party/abseil-cpp/absl/crc/internal/crc.cc +4 -35
  1234. data/third_party/abseil-cpp/absl/crc/internal/crc.h +2 -10
  1235. data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +1 -1
  1236. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +1 -1
  1237. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +4 -4
  1238. data/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +8 -10
  1239. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_64.cc +17 -19
  1240. data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +8 -8
  1241. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +2 -1
  1242. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +59 -23
  1243. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +1 -1
  1244. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +1 -1
  1245. data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +1 -1
  1246. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +43 -19
  1247. data/third_party/abseil-cpp/absl/debugging/symbolize_emscripten.inc +3 -0
  1248. data/third_party/abseil-cpp/absl/flags/commandlineflag.cc +34 -0
  1249. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +200 -0
  1250. data/third_party/abseil-cpp/absl/flags/config.h +68 -0
  1251. data/third_party/abseil-cpp/absl/flags/declare.h +73 -0
  1252. data/third_party/abseil-cpp/absl/flags/flag.cc +38 -0
  1253. data/third_party/abseil-cpp/absl/flags/flag.h +310 -0
  1254. data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.cc +26 -0
  1255. data/third_party/abseil-cpp/absl/flags/internal/commandlineflag.h +68 -0
  1256. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +615 -0
  1257. data/third_party/abseil-cpp/absl/flags/internal/flag.h +801 -0
  1258. data/third_party/abseil-cpp/absl/flags/internal/flag_msvc.inc +116 -0
  1259. data/third_party/abseil-cpp/absl/flags/internal/path_util.h +62 -0
  1260. data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.cc +65 -0
  1261. data/third_party/abseil-cpp/absl/flags/internal/private_handle_accessor.h +61 -0
  1262. data/third_party/abseil-cpp/absl/flags/internal/program_name.cc +60 -0
  1263. data/third_party/abseil-cpp/absl/flags/internal/program_name.h +50 -0
  1264. data/third_party/abseil-cpp/absl/flags/internal/registry.h +97 -0
  1265. data/third_party/abseil-cpp/absl/flags/internal/sequence_lock.h +187 -0
  1266. data/third_party/abseil-cpp/absl/flags/marshalling.cc +282 -0
  1267. data/third_party/abseil-cpp/absl/flags/marshalling.h +361 -0
  1268. data/third_party/abseil-cpp/absl/flags/reflection.cc +354 -0
  1269. data/third_party/abseil-cpp/absl/flags/reflection.h +90 -0
  1270. data/third_party/abseil-cpp/absl/flags/usage_config.cc +165 -0
  1271. data/third_party/abseil-cpp/absl/flags/usage_config.h +135 -0
  1272. data/third_party/abseil-cpp/absl/functional/any_invocable.h +9 -1
  1273. data/third_party/abseil-cpp/absl/functional/bind_front.h +1 -1
  1274. data/third_party/abseil-cpp/absl/functional/function_ref.h +3 -3
  1275. data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +37 -24
  1276. data/third_party/abseil-cpp/absl/functional/internal/function_ref.h +19 -9
  1277. data/third_party/abseil-cpp/absl/hash/hash.h +7 -4
  1278. data/third_party/abseil-cpp/absl/hash/internal/hash.h +38 -15
  1279. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +6 -0
  1280. data/third_party/abseil-cpp/absl/meta/type_traits.h +48 -373
  1281. data/third_party/abseil-cpp/absl/numeric/bits.h +4 -4
  1282. data/third_party/abseil-cpp/absl/numeric/int128.cc +20 -8
  1283. data/third_party/abseil-cpp/absl/numeric/int128.h +36 -39
  1284. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +0 -3
  1285. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +47 -30
  1286. data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +185 -0
  1287. data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +4 -3
  1288. data/third_party/abseil-cpp/absl/random/internal/generate_real.h +1 -1
  1289. data/third_party/abseil-cpp/absl/random/internal/platform.h +1 -1
  1290. data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +4 -0
  1291. data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +1 -1
  1292. data/third_party/abseil-cpp/absl/random/internal/randen_hwaes.cc +1 -1
  1293. data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +1 -1
  1294. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +4 -0
  1295. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +12 -24
  1296. data/third_party/abseil-cpp/absl/status/status.cc +11 -7
  1297. data/third_party/abseil-cpp/absl/status/status.h +11 -2
  1298. data/third_party/abseil-cpp/absl/status/statusor.h +22 -8
  1299. data/third_party/abseil-cpp/absl/strings/ascii.cc +54 -6
  1300. data/third_party/abseil-cpp/absl/strings/charconv.cc +21 -4
  1301. data/third_party/abseil-cpp/absl/strings/charconv.h +2 -2
  1302. data/third_party/abseil-cpp/absl/strings/cord.cc +1 -2
  1303. data/third_party/abseil-cpp/absl/strings/cord.h +32 -5
  1304. data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +23 -1
  1305. data/third_party/abseil-cpp/absl/strings/cord_analysis.h +18 -0
  1306. data/third_party/abseil-cpp/absl/strings/cord_buffer.h +2 -5
  1307. data/third_party/abseil-cpp/absl/strings/escaping.cc +10 -32
  1308. data/third_party/abseil-cpp/absl/strings/escaping.h +1 -1
  1309. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +2 -4
  1310. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +3 -3
  1311. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +0 -1
  1312. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +27 -21
  1313. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +13 -4
  1314. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +8 -0
  1315. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +5 -3
  1316. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.h +4 -7
  1317. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +8 -0
  1318. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +2 -2
  1319. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +46 -20
  1320. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +1 -34
  1321. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +2 -1
  1322. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +23 -0
  1323. data/third_party/abseil-cpp/absl/strings/internal/escaping.h +1 -0
  1324. data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +2 -77
  1325. data/third_party/abseil-cpp/absl/strings/internal/memutil.h +4 -112
  1326. data/third_party/abseil-cpp/absl/strings/internal/stl_type_traits.h +1 -1
  1327. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +10 -31
  1328. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +8 -8
  1329. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +5 -20
  1330. data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +1 -0
  1331. data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +1 -1
  1332. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +9 -9
  1333. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +56 -6
  1334. data/third_party/abseil-cpp/absl/strings/match.cc +87 -0
  1335. data/third_party/abseil-cpp/absl/strings/match.h +19 -0
  1336. data/third_party/abseil-cpp/absl/strings/numbers.cc +154 -122
  1337. data/third_party/abseil-cpp/absl/strings/numbers.h +1 -6
  1338. data/third_party/abseil-cpp/absl/strings/str_cat.cc +7 -50
  1339. data/third_party/abseil-cpp/absl/strings/str_cat.h +83 -15
  1340. data/third_party/abseil-cpp/absl/strings/str_format.h +6 -3
  1341. data/third_party/abseil-cpp/absl/strings/str_split.cc +9 -6
  1342. data/third_party/abseil-cpp/absl/strings/string_view.cc +26 -4
  1343. data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +5 -0
  1344. data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +63 -43
  1345. data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.cc +111 -0
  1346. data/third_party/abseil-cpp/absl/synchronization/internal/futex_waiter.h +63 -0
  1347. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -7
  1348. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.cc +225 -0
  1349. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +122 -114
  1350. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +12 -8
  1351. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +10 -1
  1352. data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.cc +167 -0
  1353. data/third_party/abseil-cpp/absl/synchronization/internal/pthread_waiter.h +60 -0
  1354. data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.cc +122 -0
  1355. data/third_party/abseil-cpp/absl/synchronization/internal/sem_waiter.h +65 -0
  1356. data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.cc +91 -0
  1357. data/third_party/abseil-cpp/absl/synchronization/internal/stdcpp_waiter.h +56 -0
  1358. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +19 -113
  1359. data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.cc +42 -0
  1360. data/third_party/abseil-cpp/absl/synchronization/internal/waiter_base.h +90 -0
  1361. data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.cc +151 -0
  1362. data/third_party/abseil-cpp/absl/synchronization/internal/win32_waiter.h +70 -0
  1363. data/third_party/abseil-cpp/absl/synchronization/mutex.cc +407 -411
  1364. data/third_party/abseil-cpp/absl/synchronization/mutex.h +152 -118
  1365. data/third_party/abseil-cpp/absl/time/clock.cc +6 -7
  1366. data/third_party/abseil-cpp/absl/time/duration.cc +24 -26
  1367. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/time_zone.h +1 -0
  1368. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_fixed.cc +1 -1
  1369. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +3 -3
  1370. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.cc +8 -6
  1371. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_if.h +6 -3
  1372. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.cc +4 -2
  1373. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_impl.h +4 -0
  1374. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +322 -295
  1375. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.h +8 -17
  1376. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +51 -33
  1377. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.h +7 -2
  1378. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +128 -2
  1379. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_posix.h +1 -1
  1380. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +5 -1
  1381. data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +34 -34
  1382. data/third_party/abseil-cpp/absl/time/time.cc +9 -2
  1383. data/third_party/abseil-cpp/absl/time/time.h +115 -15
  1384. data/third_party/abseil-cpp/absl/types/internal/optional.h +0 -52
  1385. data/third_party/abseil-cpp/absl/types/internal/span.h +2 -2
  1386. data/third_party/abseil-cpp/absl/types/internal/variant.h +2 -2
  1387. data/third_party/abseil-cpp/absl/types/optional.h +15 -13
  1388. data/third_party/abseil-cpp/absl/types/span.h +1 -2
  1389. data/third_party/boringssl-with-bazel/err_data.c +731 -714
  1390. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bitstr.c +177 -177
  1391. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +28 -55
  1392. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_d2i_fp.c +21 -23
  1393. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_dup.c +20 -23
  1394. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_gentm.c +70 -185
  1395. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_i2d_fp.c +18 -21
  1396. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_int.c +356 -311
  1397. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_mbstr.c +177 -196
  1398. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +146 -210
  1399. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_octet.c +6 -9
  1400. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strex.c +346 -526
  1401. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_strnid.c +111 -132
  1402. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_time.c +158 -111
  1403. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +93 -60
  1404. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utctm.c +101 -182
  1405. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +242 -305
  1406. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_par.c +41 -18
  1407. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn_pack.c +30 -33
  1408. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_int.c +36 -33
  1409. data/third_party/boringssl-with-bazel/src/crypto/asn1/f_string.c +29 -26
  1410. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +135 -90
  1411. data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +230 -0
  1412. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_dec.c +797 -793
  1413. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +529 -526
  1414. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +114 -135
  1415. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_new.c +201 -207
  1416. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_typ.c +21 -26
  1417. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_utl.c +55 -68
  1418. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +2 -4
  1419. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +20 -14
  1420. data/third_party/boringssl-with-bazel/src/crypto/bio/bio_mem.c +42 -57
  1421. data/third_party/boringssl-with-bazel/src/crypto/bio/connect.c +22 -16
  1422. data/third_party/boringssl-with-bazel/src/crypto/{asn1/a_print.c → bio/errno.c} +29 -20
  1423. data/third_party/boringssl-with-bazel/src/crypto/bio/fd.c +18 -58
  1424. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +39 -31
  1425. data/third_party/boringssl-with-bazel/src/crypto/bio/internal.h +16 -6
  1426. data/third_party/boringssl-with-bazel/src/crypto/bio/pair.c +5 -5
  1427. data/third_party/boringssl-with-bazel/src/crypto/bio/printf.c +0 -13
  1428. data/third_party/boringssl-with-bazel/src/crypto/bio/socket.c +7 -10
  1429. data/third_party/boringssl-with-bazel/src/crypto/bio/socket_helper.c +13 -2
  1430. data/third_party/boringssl-with-bazel/src/crypto/blake2/blake2.c +40 -27
  1431. data/third_party/boringssl-with-bazel/src/crypto/bn_extra/convert.c +10 -23
  1432. data/third_party/boringssl-with-bazel/src/crypto/buf/buf.c +2 -6
  1433. data/third_party/boringssl-with-bazel/src/crypto/bytestring/asn1_compat.c +2 -1
  1434. data/third_party/boringssl-with-bazel/src/crypto/bytestring/ber.c +29 -28
  1435. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbb.c +161 -201
  1436. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +255 -40
  1437. data/third_party/boringssl-with-bazel/src/crypto/bytestring/internal.h +2 -2
  1438. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +19 -3
  1439. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +8 -1
  1440. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/derive_key.c +4 -4
  1441. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesctrhmac.c +9 -8
  1442. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_aesgcmsiv.c +37 -75
  1443. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +8 -10
  1444. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/cipher → cipher_extra}/e_des.c +100 -78
  1445. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +1 -0
  1446. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +1 -0
  1447. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +2 -0
  1448. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +34 -37
  1449. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +22 -11
  1450. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +189 -13
  1451. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +37 -202
  1452. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +3 -8
  1453. data/third_party/boringssl-with-bazel/src/crypto/conf/internal.h +20 -0
  1454. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_apple.c +75 -0
  1455. data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-fuchsia.c → cpu_aarch64_fuchsia.c} +8 -8
  1456. data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-linux.c → cpu_aarch64_linux.c} +6 -6
  1457. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_openbsd.c +61 -0
  1458. data/third_party/boringssl-with-bazel/src/crypto/cpu_aarch64_sysreg.c +93 -0
  1459. data/third_party/boringssl-with-bazel/src/crypto/{cpu-aarch64-win.c → cpu_aarch64_win.c} +4 -4
  1460. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_freebsd.c +54 -0
  1461. data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm-linux.c → cpu_arm_linux.c} +11 -92
  1462. data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm-linux.h → cpu_arm_linux.h} +0 -38
  1463. data/third_party/boringssl-with-bazel/src/crypto/{cpu-intel.c → cpu_intel.c} +1 -2
  1464. data/third_party/boringssl-with-bazel/src/crypto/crypto.c +25 -20
  1465. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +71 -77
  1466. data/third_party/boringssl-with-bazel/src/crypto/{cpu-ppc64le.c → curve25519/curve25519_64_adx.c} +3 -23
  1467. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519_tables.h +2834 -7442
  1468. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +26 -8
  1469. data/third_party/boringssl-with-bazel/src/crypto/curve25519/spake25519.c +17 -32
  1470. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/des → des}/des.c +232 -232
  1471. data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/des → des}/internal.h +1 -1
  1472. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/dh_asn1.c +5 -0
  1473. data/third_party/boringssl-with-bazel/src/crypto/dh_extra/params.c +237 -29
  1474. data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +0 -3
  1475. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +43 -16
  1476. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +37 -7
  1477. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +23 -3
  1478. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_asn1.c +118 -105
  1479. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/ec_derive.c +4 -3
  1480. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/hash_to_curve.c +234 -111
  1481. data/third_party/boringssl-with-bazel/src/crypto/ec_extra/internal.h +29 -7
  1482. data/third_party/boringssl-with-bazel/src/crypto/ecdh_extra/ecdh_extra.c +1 -1
  1483. data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +2 -4
  1484. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +106 -81
  1485. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +80 -23
  1486. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +3 -3
  1487. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_ctx.c +25 -23
  1488. data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +43 -9
  1489. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +75 -44
  1490. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +21 -29
  1491. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +99 -52
  1492. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +7 -8
  1493. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519_asn1.c +26 -23
  1494. data/third_party/boringssl-with-bazel/src/crypto/evp/p_hkdf.c +233 -0
  1495. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa.c +6 -6
  1496. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +42 -25
  1497. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +4 -5
  1498. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519_asn1.c +35 -47
  1499. data/third_party/boringssl-with-bazel/src/crypto/evp/pbkdf.c +3 -3
  1500. data/third_party/boringssl-with-bazel/src/crypto/evp/print.c +138 -246
  1501. data/third_party/boringssl-with-bazel/src/crypto/evp/scrypt.c +2 -4
  1502. data/third_party/boringssl-with-bazel/src/crypto/evp/sign.c +15 -10
  1503. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +47 -71
  1504. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +0 -2
  1505. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes_nohw.c +13 -14
  1506. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +3 -13
  1507. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/key_wrap.c +13 -7
  1508. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/mode_wrappers.c +9 -7
  1509. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +37 -28
  1510. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bn.c +16 -26
  1511. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +88 -60
  1512. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/cmp.c +4 -3
  1513. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/ctx.c +0 -2
  1514. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +13 -6
  1515. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +1 -1
  1516. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +99 -113
  1517. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd.c +5 -7
  1518. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +5 -3
  1519. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/generic.c +112 -168
  1520. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +98 -37
  1521. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery.c +28 -24
  1522. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +55 -20
  1523. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +4 -5
  1524. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +13 -0
  1525. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +13 -5
  1526. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.c +25 -114
  1527. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/rsaz_exp.h +19 -15
  1528. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/shift.c +15 -16
  1529. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +22 -21
  1530. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/aead.c +3 -0
  1531. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +79 -19
  1532. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +102 -99
  1533. data/third_party/boringssl-with-bazel/src/crypto/{cipher_extra → fipsmodule/cipher}/e_aesccm.c +52 -46
  1534. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +39 -0
  1535. data/third_party/boringssl-with-bazel/src/crypto/{cmac → fipsmodule/cmac}/cmac.c +55 -11
  1536. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/delocate.h +5 -6
  1537. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/check.c +39 -11
  1538. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/dh.c +62 -25
  1539. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/internal.h +65 -0
  1540. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +5 -3
  1541. data/third_party/boringssl-with-bazel/src/crypto/{evp → fipsmodule/digestsign}/digestsign.c +51 -15
  1542. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/builtin_curves.h +277 -0
  1543. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +226 -450
  1544. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +95 -21
  1545. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_montgomery.c +36 -69
  1546. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/felem.c +17 -13
  1547. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +139 -155
  1548. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/oct.c +71 -40
  1549. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p224-64.c +60 -78
  1550. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64-table.h → p256-nistz-table.h} +1 -1
  1551. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64.c → p256-nistz.c} +87 -83
  1552. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256-x86_64.h → p256-nistz.h} +5 -13
  1553. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256.c +71 -62
  1554. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256_table.h +1 -1
  1555. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +24 -30
  1556. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple.c +21 -42
  1557. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/simple_mul.c +33 -34
  1558. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/wnaf.c +16 -17
  1559. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/ecdh.c +9 -1
  1560. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +53 -19
  1561. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +6 -0
  1562. data/third_party/boringssl-with-bazel/src/crypto/{hkdf → fipsmodule/hkdf}/hkdf.c +2 -2
  1563. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/hmac.c +52 -24
  1564. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +9 -23
  1565. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +1 -4
  1566. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +3 -8
  1567. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +170 -160
  1568. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm_nohw.c +12 -14
  1569. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +69 -61
  1570. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +2 -12
  1571. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/polyval.c +27 -28
  1572. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/ctrdrbg.c +31 -13
  1573. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +56 -34
  1574. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +3 -2
  1575. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/getrandom_fillin.h +2 -2
  1576. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +30 -45
  1577. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +111 -78
  1578. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +12 -85
  1579. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/blinding.c +0 -1
  1580. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/internal.h +98 -16
  1581. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +42 -314
  1582. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +244 -139
  1583. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +175 -255
  1584. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +41 -0
  1585. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +617 -427
  1586. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +89 -0
  1587. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +331 -0
  1588. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +3 -12
  1589. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +2 -0
  1590. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +12 -8
  1591. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +14 -12
  1592. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/internal.h +8 -0
  1593. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +52 -6
  1594. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +199 -18
  1595. data/third_party/boringssl-with-bazel/src/crypto/hrss/hrss.c +65 -29
  1596. data/third_party/boringssl-with-bazel/src/crypto/internal.h +568 -84
  1597. data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +91 -0
  1598. data/third_party/boringssl-with-bazel/src/crypto/kyber/keccak.c +204 -0
  1599. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +834 -0
  1600. data/third_party/boringssl-with-bazel/src/crypto/lhash/internal.h +13 -1
  1601. data/third_party/boringssl-with-bazel/src/crypto/mem.c +219 -13
  1602. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +43 -52
  1603. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +9 -4
  1604. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_all.c +81 -90
  1605. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_info.c +150 -245
  1606. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +633 -613
  1607. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_oth.c +17 -17
  1608. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +142 -149
  1609. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +99 -131
  1610. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_x509.c +0 -1
  1611. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_xaux.c +0 -1
  1612. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +0 -1
  1613. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +3 -3
  1614. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/p5_pbev2.c +3 -3
  1615. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8.c +7 -10
  1616. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +44 -71
  1617. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305.c +31 -38
  1618. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_arm.c +2 -1
  1619. data/third_party/boringssl-with-bazel/src/crypto/poly1305/poly1305_vec.c +18 -31
  1620. data/third_party/boringssl-with-bazel/src/crypto/pool/internal.h +2 -0
  1621. data/third_party/boringssl-with-bazel/src/crypto/pool/pool.c +8 -1
  1622. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +7 -6
  1623. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/forkunsafe.c +6 -12
  1624. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +52 -0
  1625. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/{fuchsia.c → ios.c} +8 -8
  1626. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +129 -5
  1627. data/third_party/boringssl-with-bazel/src/crypto/{cpu-arm.c → rand_extra/trusty.c} +16 -16
  1628. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +41 -19
  1629. data/third_party/boringssl-with-bazel/src/crypto/{refcount_c11.c → refcount.c} +11 -19
  1630. data/third_party/boringssl-with-bazel/src/crypto/{asn1/a_enum.c → rsa_extra/internal.h} +14 -132
  1631. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_crypt.c +568 -0
  1632. data/third_party/boringssl-with-bazel/src/crypto/siphash/siphash.c +8 -11
  1633. data/third_party/boringssl-with-bazel/src/crypto/stack/stack.c +176 -62
  1634. data/third_party/boringssl-with-bazel/src/crypto/thread_none.c +0 -8
  1635. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +12 -44
  1636. data/third_party/boringssl-with-bazel/src/crypto/thread_win.c +11 -35
  1637. data/third_party/boringssl-with-bazel/src/crypto/trust_token/internal.h +128 -34
  1638. data/third_party/boringssl-with-bazel/src/crypto/trust_token/pmbtoken.c +428 -147
  1639. data/third_party/boringssl-with-bazel/src/crypto/trust_token/trust_token.c +116 -284
  1640. data/third_party/boringssl-with-bazel/src/crypto/trust_token/voprf.c +686 -161
  1641. data/third_party/boringssl-with-bazel/src/crypto/x509/a_digest.c +22 -24
  1642. data/third_party/boringssl-with-bazel/src/crypto/x509/a_sign.c +63 -55
  1643. data/third_party/boringssl-with-bazel/src/crypto/x509/a_verify.c +32 -34
  1644. data/third_party/boringssl-with-bazel/src/crypto/x509/algorithm.c +32 -16
  1645. data/third_party/boringssl-with-bazel/src/crypto/x509/asn1_gen.c +465 -704
  1646. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +278 -335
  1647. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +182 -180
  1648. data/third_party/boringssl-with-bazel/src/crypto/x509/i2d_pr.c +11 -15
  1649. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +69 -51
  1650. data/third_party/boringssl-with-bazel/src/crypto/x509/name_print.c +132 -151
  1651. data/third_party/boringssl-with-bazel/src/crypto/x509/policy.c +790 -0
  1652. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +95 -102
  1653. data/third_party/boringssl-with-bazel/src/crypto/x509/t_crl.c +72 -57
  1654. data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +12 -10
  1655. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509.c +220 -254
  1656. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +52 -47
  1657. data/third_party/boringssl-with-bazel/src/crypto/x509/x509.c +3 -4
  1658. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +136 -270
  1659. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +161 -327
  1660. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_d2.c +38 -36
  1661. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_def.c +14 -31
  1662. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_ext.c +55 -85
  1663. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +526 -616
  1664. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_obj.c +129 -122
  1665. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +164 -181
  1666. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +132 -132
  1667. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +186 -203
  1668. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_txt.c +64 -79
  1669. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_v3.c +171 -160
  1670. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +1863 -2050
  1671. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +380 -480
  1672. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +156 -163
  1673. data/third_party/boringssl-with-bazel/src/crypto/x509/x509name.c +262 -265
  1674. data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +40 -15
  1675. data/third_party/boringssl-with-bazel/src/crypto/x509/x509spki.c +59 -63
  1676. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +63 -67
  1677. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +114 -144
  1678. data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +25 -26
  1679. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +330 -417
  1680. data/third_party/boringssl-with-bazel/src/crypto/x509/x_exten.c +8 -7
  1681. data/third_party/boringssl-with-bazel/src/crypto/x509/x_info.c +30 -28
  1682. data/third_party/boringssl-with-bazel/src/crypto/x509/x_name.c +354 -370
  1683. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pkey.c +37 -32
  1684. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +121 -124
  1685. data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +36 -26
  1686. data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +3 -4
  1687. data/third_party/boringssl-with-bazel/src/crypto/x509/x_spki.c +10 -13
  1688. data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +3 -4
  1689. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +419 -261
  1690. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +113 -105
  1691. data/third_party/boringssl-with-bazel/src/crypto/x509v3/ext_dat.h +11 -15
  1692. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +79 -171
  1693. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akey.c +126 -131
  1694. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_akeya.c +3 -4
  1695. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_alt.c +464 -469
  1696. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bcons.c +56 -54
  1697. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_bitst.c +46 -49
  1698. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_conf.c +294 -344
  1699. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +342 -365
  1700. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_crld.c +429 -393
  1701. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_enum.c +29 -24
  1702. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_extku.c +65 -59
  1703. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +125 -121
  1704. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ia5.c +43 -42
  1705. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_info.c +120 -125
  1706. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_int.c +50 -20
  1707. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_lib.c +227 -265
  1708. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ncons.c +386 -389
  1709. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_ocsp.c +45 -32
  1710. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcons.c +57 -54
  1711. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pmaps.c +63 -67
  1712. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_prn.c +130 -135
  1713. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +650 -691
  1714. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +90 -75
  1715. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +1063 -1145
  1716. data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +13 -11
  1717. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +25 -160
  1718. data/third_party/boringssl-with-bazel/src/include/openssl/asm_base.h +207 -0
  1719. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +222 -191
  1720. data/third_party/boringssl-with-bazel/src/include/openssl/asn1t.h +26 -78
  1721. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +54 -124
  1722. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +40 -15
  1723. data/third_party/boringssl-with-bazel/src/include/openssl/blake2.h +1 -4
  1724. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +49 -19
  1725. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +99 -29
  1726. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +6 -0
  1727. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +49 -60
  1728. data/third_party/boringssl-with-bazel/src/include/openssl/conf.h +7 -16
  1729. data/third_party/boringssl-with-bazel/src/include/openssl/cpu.h +16 -200
  1730. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +34 -0
  1731. data/third_party/boringssl-with-bazel/src/include/openssl/ctrdrbg.h +82 -0
  1732. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +36 -31
  1733. data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +7 -0
  1734. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +4 -21
  1735. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +67 -7
  1736. data/third_party/boringssl-with-bazel/src/include/openssl/ec_key.h +56 -14
  1737. data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +1 -0
  1738. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +33 -5
  1739. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +36 -40
  1740. data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +1 -1
  1741. data/third_party/boringssl-with-bazel/src/include/openssl/hmac.h +7 -0
  1742. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +75 -18
  1743. data/third_party/boringssl-with-bazel/src/include/openssl/kdf.h +91 -0
  1744. data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +128 -0
  1745. data/third_party/boringssl-with-bazel/src/include/openssl/mem.h +74 -8
  1746. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +7 -3
  1747. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +8 -1
  1748. data/third_party/boringssl-with-bazel/src/include/openssl/opensslconf.h +1 -0
  1749. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +11 -18
  1750. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +8 -0
  1751. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +15 -5
  1752. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +97 -65
  1753. data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +96 -0
  1754. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +40 -41
  1755. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +400 -157
  1756. data/third_party/boringssl-with-bazel/src/include/openssl/ssl3.h +1 -6
  1757. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +349 -232
  1758. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +201 -0
  1759. data/third_party/boringssl-with-bazel/src/include/openssl/thread.h +1 -26
  1760. data/third_party/boringssl-with-bazel/src/include/openssl/time.h +41 -0
  1761. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +22 -7
  1762. data/third_party/boringssl-with-bazel/src/include/openssl/trust_token.h +57 -23
  1763. data/third_party/boringssl-with-bazel/src/include/openssl/type_check.h +0 -11
  1764. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2071 -1407
  1765. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +244 -214
  1766. data/third_party/boringssl-with-bazel/src/ssl/bio_ssl.cc +2 -2
  1767. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +6 -13
  1768. data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +17 -18
  1769. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +4 -5
  1770. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +25 -33
  1771. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +45 -26
  1772. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +72 -99
  1773. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +218 -74
  1774. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +5 -5
  1775. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +53 -34
  1776. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +77 -45
  1777. data/third_party/boringssl-with-bazel/src/ssl/internal.h +204 -132
  1778. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +47 -12
  1779. data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +2 -2
  1780. data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +91 -75
  1781. data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +8 -10
  1782. data/third_party/boringssl-with-bazel/src/ssl/ssl_asn1.cc +47 -69
  1783. data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +1 -0
  1784. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +5 -9
  1785. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +239 -242
  1786. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +78 -101
  1787. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +126 -155
  1788. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +358 -48
  1789. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +167 -64
  1790. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +41 -32
  1791. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +27 -19
  1792. data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +22 -6
  1793. data/third_party/boringssl-with-bazel/src/ssl/t1_enc.cc +15 -13
  1794. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +7 -44
  1795. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +6 -4
  1796. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +7 -23
  1797. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +25 -34
  1798. data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +2 -2
  1799. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +16 -98
  1800. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_32.h +1241 -657
  1801. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64.h +751 -398
  1802. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_adx.h +691 -0
  1803. data/third_party/boringssl-with-bazel/src/third_party/fiat/curve25519_64_msvc.h +1281 -0
  1804. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_32.h +3551 -1938
  1805. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64.h +1272 -487
  1806. data/third_party/boringssl-with-bazel/src/third_party/fiat/p256_64_msvc.h +2002 -0
  1807. data/third_party/cares/cares/include/ares.h +23 -1
  1808. data/third_party/cares/cares/{src/lib → include}/ares_nameser.h +9 -7
  1809. data/third_party/cares/cares/include/ares_rules.h +2 -2
  1810. data/third_party/cares/cares/include/ares_version.h +3 -3
  1811. data/third_party/cares/cares/src/lib/ares__addrinfo2hostent.c +266 -0
  1812. data/third_party/cares/cares/src/lib/ares__addrinfo_localhost.c +240 -0
  1813. data/third_party/cares/cares/src/lib/ares__parse_into_addrinfo.c +49 -80
  1814. data/third_party/cares/cares/src/lib/ares__readaddrinfo.c +37 -43
  1815. data/third_party/cares/cares/src/lib/ares__sortaddrinfo.c +12 -4
  1816. data/third_party/cares/cares/src/lib/ares_data.c +16 -0
  1817. data/third_party/cares/cares/src/lib/ares_data.h +7 -0
  1818. data/third_party/cares/cares/src/lib/ares_destroy.c +8 -0
  1819. data/third_party/cares/cares/src/lib/ares_expand_name.c +17 -6
  1820. data/third_party/cares/cares/src/lib/ares_freeaddrinfo.c +1 -0
  1821. data/third_party/cares/cares/src/lib/ares_getaddrinfo.c +156 -78
  1822. data/third_party/cares/cares/src/lib/ares_gethostbyname.c +130 -326
  1823. data/third_party/cares/cares/src/lib/ares_init.c +97 -485
  1824. data/third_party/cares/cares/src/lib/ares_library_init.c +2 -89
  1825. data/third_party/cares/cares/src/lib/ares_parse_a_reply.c +23 -142
  1826. data/third_party/cares/cares/src/lib/ares_parse_aaaa_reply.c +22 -142
  1827. data/third_party/cares/cares/src/lib/ares_parse_uri_reply.c +184 -0
  1828. data/third_party/cares/cares/src/lib/ares_private.h +30 -16
  1829. data/third_party/cares/cares/src/lib/ares_process.c +55 -16
  1830. data/third_party/cares/cares/src/lib/ares_query.c +1 -35
  1831. data/third_party/cares/cares/src/lib/ares_rand.c +279 -0
  1832. data/third_party/cares/cares/src/lib/ares_send.c +5 -7
  1833. data/third_party/cares/cares/src/lib/ares_strdup.c +12 -19
  1834. data/third_party/cares/cares/src/lib/ares_strsplit.c +44 -128
  1835. data/third_party/cares/cares/src/lib/ares_strsplit.h +9 -10
  1836. data/third_party/cares/cares/src/lib/inet_net_pton.c +78 -116
  1837. data/third_party/cares/cares/src/tools/ares_getopt.h +53 -0
  1838. data/third_party/upb/upb/{table_internal.h → alloc.h} +6 -6
  1839. data/third_party/upb/upb/arena.h +4 -193
  1840. data/third_party/upb/upb/array.h +4 -51
  1841. data/third_party/upb/upb/base/descriptor_constants.h +104 -0
  1842. data/third_party/upb/upb/base/log2.h +57 -0
  1843. data/third_party/upb/upb/{status.c → base/status.c} +2 -7
  1844. data/third_party/upb/upb/base/status.h +66 -0
  1845. data/third_party/upb/upb/base/string_view.h +75 -0
  1846. data/third_party/upb/upb/{array.c → collections/array.c} +73 -36
  1847. data/third_party/upb/upb/collections/array.h +91 -0
  1848. data/third_party/upb/upb/collections/array_internal.h +135 -0
  1849. data/third_party/upb/upb/{map.c → collections/map.c} +60 -26
  1850. data/third_party/upb/upb/collections/map.h +140 -0
  1851. data/third_party/upb/upb/collections/map_gencode_util.h +78 -0
  1852. data/third_party/upb/upb/collections/map_internal.h +170 -0
  1853. data/third_party/upb/upb/collections/map_sorter.c +166 -0
  1854. data/third_party/upb/upb/collections/map_sorter_internal.h +109 -0
  1855. data/third_party/upb/upb/{message_value.h → collections/message_value.h} +19 -13
  1856. data/third_party/upb/upb/decode.h +3 -62
  1857. data/third_party/upb/upb/def.h +4 -384
  1858. data/third_party/upb/upb/def.hpp +3 -411
  1859. data/third_party/upb/upb/encode.h +3 -48
  1860. data/third_party/upb/upb/extension_registry.h +3 -52
  1861. data/third_party/upb/upb/generated_code_support.h +54 -0
  1862. data/third_party/upb/upb/{table.c → hash/common.c} +55 -108
  1863. data/third_party/upb/upb/hash/common.h +200 -0
  1864. data/third_party/upb/upb/hash/int_table.h +102 -0
  1865. data/third_party/upb/upb/hash/str_table.h +162 -0
  1866. data/third_party/upb/upb/{json_decode.c → json/decode.c} +63 -98
  1867. data/third_party/upb/upb/{json_decode.h → json/decode.h} +8 -3
  1868. data/third_party/upb/upb/{json_encode.c → json/encode.c} +69 -45
  1869. data/third_party/upb/upb/{json_encode.h → json/encode.h} +8 -3
  1870. data/third_party/upb/upb/lex/atoi.c +68 -0
  1871. data/third_party/upb/upb/lex/atoi.h +53 -0
  1872. data/third_party/upb/upb/{upb.c → lex/round_trip.c} +2 -11
  1873. data/third_party/upb/upb/{internal/upb.h → lex/round_trip.h} +17 -30
  1874. data/third_party/upb/upb/lex/strtod.c +97 -0
  1875. data/third_party/upb/upb/lex/strtod.h +46 -0
  1876. data/third_party/upb/upb/lex/unicode.c +57 -0
  1877. data/third_party/upb/upb/lex/unicode.h +77 -0
  1878. data/third_party/upb/upb/map.h +4 -85
  1879. data/third_party/upb/upb/mem/alloc.c +47 -0
  1880. data/third_party/upb/upb/mem/alloc.h +98 -0
  1881. data/third_party/upb/upb/mem/arena.c +367 -0
  1882. data/third_party/upb/upb/mem/arena.h +160 -0
  1883. data/third_party/upb/upb/mem/arena_internal.h +114 -0
  1884. data/third_party/upb/upb/message/accessors.c +92 -0
  1885. data/third_party/upb/upb/message/accessors.h +400 -0
  1886. data/third_party/upb/upb/message/accessors_internal.h +391 -0
  1887. data/third_party/upb/upb/message/extension_internal.h +83 -0
  1888. data/third_party/upb/upb/message/internal/map_entry.h +64 -0
  1889. data/third_party/upb/upb/message/internal.h +131 -0
  1890. data/third_party/upb/upb/message/message.c +174 -0
  1891. data/third_party/upb/upb/message/message.h +69 -0
  1892. data/third_party/upb/upb/message/tagged_ptr.h +89 -0
  1893. data/third_party/upb/upb/mini_descriptor/build_enum.c +150 -0
  1894. data/third_party/upb/upb/mini_descriptor/build_enum.h +63 -0
  1895. data/third_party/upb/upb/mini_descriptor/decode.c +875 -0
  1896. data/third_party/upb/upb/mini_descriptor/decode.h +140 -0
  1897. data/third_party/upb/upb/mini_descriptor/internal/base92.c +46 -0
  1898. data/third_party/upb/upb/mini_descriptor/internal/base92.h +81 -0
  1899. data/third_party/upb/upb/mini_descriptor/internal/decoder.h +73 -0
  1900. data/third_party/upb/upb/mini_descriptor/internal/encode.c +326 -0
  1901. data/third_party/upb/upb/mini_descriptor/internal/encode.h +110 -0
  1902. data/third_party/upb/upb/{mini_table.hpp → mini_descriptor/internal/encode.hpp} +32 -8
  1903. data/third_party/upb/upb/mini_descriptor/internal/modifiers.h +50 -0
  1904. data/third_party/upb/upb/mini_descriptor/internal/wire_constants.h +91 -0
  1905. data/third_party/upb/upb/mini_descriptor/link.c +142 -0
  1906. data/third_party/upb/upb/mini_descriptor/link.h +104 -0
  1907. data/third_party/upb/upb/mini_table/enum.h +50 -0
  1908. data/third_party/upb/upb/mini_table/extension.h +40 -0
  1909. data/third_party/upb/upb/{extension_registry.c → mini_table/extension_registry.c} +27 -24
  1910. data/third_party/upb/upb/mini_table/extension_registry.h +105 -0
  1911. data/third_party/upb/upb/mini_table/field.h +118 -0
  1912. data/third_party/upb/upb/{collections.h → mini_table/file.h} +6 -7
  1913. data/third_party/upb/upb/mini_table/internal/enum.h +76 -0
  1914. data/third_party/upb/upb/mini_table/internal/extension.h +47 -0
  1915. data/third_party/upb/upb/mini_table/internal/field.h +136 -0
  1916. data/third_party/upb/upb/mini_table/internal/file.h +49 -0
  1917. data/third_party/upb/upb/mini_table/internal/message.c +39 -0
  1918. data/third_party/upb/upb/mini_table/internal/message.h +113 -0
  1919. data/third_party/upb/upb/mini_table/internal/sub.h +39 -0
  1920. data/third_party/upb/upb/mini_table/message.c +97 -0
  1921. data/third_party/upb/upb/mini_table/message.h +105 -0
  1922. data/third_party/upb/upb/mini_table/sub.h +35 -0
  1923. data/third_party/upb/upb/msg.h +3 -38
  1924. data/third_party/upb/upb/port/atomic.h +101 -0
  1925. data/third_party/upb/upb/{port_def.inc → port/def.inc} +94 -27
  1926. data/third_party/upb/upb/{port_undef.inc → port/undef.inc} +13 -3
  1927. data/third_party/upb/upb/{internal → port}/vsnprintf_compat.h +5 -7
  1928. data/third_party/upb/upb/reflection/common.h +67 -0
  1929. data/third_party/upb/upb/reflection/def.h +42 -0
  1930. data/third_party/upb/upb/reflection/def.hpp +622 -0
  1931. data/third_party/upb/upb/reflection/def_builder.c +357 -0
  1932. data/third_party/upb/upb/reflection/def_builder_internal.h +157 -0
  1933. data/third_party/upb/upb/reflection/def_pool.c +462 -0
  1934. data/third_party/upb/upb/reflection/def_pool.h +108 -0
  1935. data/third_party/upb/upb/reflection/def_pool_internal.h +77 -0
  1936. data/third_party/upb/upb/reflection/def_type.c +50 -0
  1937. data/third_party/upb/upb/reflection/def_type.h +81 -0
  1938. data/third_party/upb/upb/reflection/desc_state.c +53 -0
  1939. data/third_party/upb/upb/reflection/desc_state_internal.h +64 -0
  1940. data/third_party/upb/upb/reflection/enum_def.c +310 -0
  1941. data/third_party/upb/upb/reflection/enum_def.h +80 -0
  1942. data/third_party/upb/upb/reflection/enum_def_internal.h +56 -0
  1943. data/third_party/upb/upb/reflection/enum_reserved_range.c +84 -0
  1944. data/third_party/upb/upb/reflection/enum_reserved_range.h +51 -0
  1945. data/third_party/upb/upb/reflection/enum_reserved_range_internal.h +55 -0
  1946. data/third_party/upb/upb/reflection/enum_value_def.c +144 -0
  1947. data/third_party/upb/upb/reflection/enum_value_def.h +57 -0
  1948. data/third_party/upb/upb/reflection/enum_value_def_internal.h +57 -0
  1949. data/third_party/upb/upb/reflection/extension_range.c +93 -0
  1950. data/third_party/upb/upb/reflection/extension_range.h +55 -0
  1951. data/third_party/upb/upb/reflection/extension_range_internal.h +54 -0
  1952. data/third_party/upb/upb/reflection/field_def.c +931 -0
  1953. data/third_party/upb/upb/reflection/field_def.h +91 -0
  1954. data/third_party/upb/upb/reflection/field_def_internal.h +76 -0
  1955. data/third_party/upb/upb/reflection/file_def.c +370 -0
  1956. data/third_party/upb/upb/reflection/file_def.h +77 -0
  1957. data/third_party/upb/upb/reflection/file_def_internal.h +57 -0
  1958. data/third_party/upb/upb/reflection/message.c +233 -0
  1959. data/third_party/upb/upb/reflection/message.h +102 -0
  1960. data/third_party/upb/upb/reflection/message.hpp +37 -0
  1961. data/third_party/upb/upb/reflection/message_def.c +720 -0
  1962. data/third_party/upb/upb/reflection/message_def.h +174 -0
  1963. data/third_party/upb/upb/reflection/message_def_internal.h +63 -0
  1964. data/third_party/upb/upb/reflection/message_reserved_range.c +81 -0
  1965. data/third_party/upb/upb/reflection/message_reserved_range.h +51 -0
  1966. data/third_party/upb/upb/reflection/message_reserved_range_internal.h +55 -0
  1967. data/third_party/upb/upb/reflection/method_def.c +124 -0
  1968. data/third_party/upb/upb/reflection/method_def.h +59 -0
  1969. data/third_party/upb/upb/reflection/method_def_internal.h +53 -0
  1970. data/third_party/upb/upb/reflection/oneof_def.c +226 -0
  1971. data/third_party/upb/upb/reflection/oneof_def.h +66 -0
  1972. data/third_party/upb/upb/reflection/oneof_def_internal.h +57 -0
  1973. data/third_party/upb/upb/reflection/service_def.c +128 -0
  1974. data/third_party/upb/upb/reflection/service_def.h +60 -0
  1975. data/third_party/upb/upb/reflection/service_def_internal.h +53 -0
  1976. data/third_party/upb/upb/reflection.h +4 -78
  1977. data/third_party/upb/upb/reflection.hpp +3 -7
  1978. data/third_party/upb/upb/status.h +4 -34
  1979. data/third_party/upb/upb/string_view.h +36 -0
  1980. data/third_party/upb/upb/{text_encode.c → text/encode.c} +74 -70
  1981. data/third_party/upb/upb/text/encode.h +69 -0
  1982. data/third_party/upb/upb/text_encode.h +4 -32
  1983. data/third_party/upb/upb/upb.h +6 -151
  1984. data/third_party/upb/upb/upb.hpp +10 -18
  1985. data/third_party/upb/upb/wire/common.h +44 -0
  1986. data/third_party/upb/upb/wire/common_internal.h +50 -0
  1987. data/third_party/upb/upb/wire/decode.c +1382 -0
  1988. data/third_party/upb/upb/wire/decode.h +148 -0
  1989. data/third_party/upb/upb/{decode_fast.c → wire/decode_fast.c} +184 -225
  1990. data/third_party/upb/upb/{decode_fast.h → wire/decode_fast.h} +21 -7
  1991. data/third_party/upb/upb/{internal/decode.h → wire/decode_internal.h} +44 -92
  1992. data/third_party/upb/upb/{encode.c → wire/encode.c} +134 -105
  1993. data/third_party/upb/upb/wire/encode.h +92 -0
  1994. data/third_party/upb/upb/wire/eps_copy_input_stream.c +39 -0
  1995. data/third_party/upb/upb/wire/eps_copy_input_stream.h +425 -0
  1996. data/third_party/upb/upb/wire/reader.c +67 -0
  1997. data/third_party/upb/upb/wire/reader.h +227 -0
  1998. data/third_party/upb/upb/wire/swap_internal.h +63 -0
  1999. data/third_party/upb/upb/wire/types.h +41 -0
  2000. data/third_party/{upb/third_party/utf8_range → utf8_range}/range2-neon.c +1 -1
  2001. data/third_party/{upb/third_party/utf8_range → utf8_range}/utf8_range.h +12 -0
  2002. metadata +386 -152
  2003. data/src/core/ext/filters/client_channel/health/health_check_client.cc +0 -175
  2004. data/src/core/ext/filters/client_channel/health/health_check_client.h +0 -43
  2005. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.cc +0 -42
  2006. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.h +0 -64
  2007. data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.cc +0 -30
  2008. data/src/core/ext/transport/chttp2/transport/context_list.cc +0 -71
  2009. data/src/core/ext/transport/chttp2/transport/context_list.h +0 -54
  2010. data/src/core/ext/transport/chttp2/transport/stream_map.cc +0 -177
  2011. data/src/core/ext/transport/chttp2/transport/stream_map.h +0 -68
  2012. data/src/core/lib/event_engine/thread_pool.cc +0 -253
  2013. data/src/core/lib/event_engine/thread_pool.h +0 -141
  2014. data/src/core/lib/gprpp/global_config.h +0 -93
  2015. data/src/core/lib/gprpp/global_config_env.cc +0 -140
  2016. data/src/core/lib/gprpp/global_config_env.h +0 -133
  2017. data/src/core/lib/gprpp/global_config_generic.h +0 -40
  2018. data/src/core/lib/promise/detail/basic_join.h +0 -197
  2019. data/src/core/lib/promise/detail/switch.h +0 -1455
  2020. data/src/core/lib/promise/intra_activity_waiter.h +0 -55
  2021. data/src/core/lib/promise/try_join.h +0 -82
  2022. data/src/core/lib/security/security_connector/ssl_utils_config.cc +0 -32
  2023. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +0 -403
  2024. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_utf8.c +0 -236
  2025. data/third_party/boringssl-with-bazel/src/crypto/asn1/charmap.h +0 -15
  2026. data/third_party/boringssl-with-bazel/src/crypto/asn1/time_support.c +0 -206
  2027. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1-altivec.c +0 -361
  2028. data/third_party/boringssl-with-bazel/src/crypto/refcount_lock.c +0 -53
  2029. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_cache.c +0 -287
  2030. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_data.c +0 -132
  2031. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_lib.c +0 -155
  2032. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_map.c +0 -131
  2033. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_node.c +0 -189
  2034. data/third_party/boringssl-with-bazel/src/crypto/x509v3/pcy_tree.c +0 -843
  2035. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pci.c +0 -289
  2036. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_pcia.c +0 -57
  2037. data/third_party/cares/cares/src/lib/ares_library_init.h +0 -43
  2038. data/third_party/re2/util/benchmark.h +0 -156
  2039. data/third_party/re2/util/flags.h +0 -26
  2040. data/third_party/re2/util/malloc_counter.h +0 -19
  2041. data/third_party/re2/util/pcre.cc +0 -1025
  2042. data/third_party/re2/util/pcre.h +0 -681
  2043. data/third_party/re2/util/test.h +0 -50
  2044. data/third_party/upb/upb/arena.c +0 -277
  2045. data/third_party/upb/upb/decode.c +0 -1221
  2046. data/third_party/upb/upb/def.c +0 -3269
  2047. data/third_party/upb/upb/internal/table.h +0 -385
  2048. data/third_party/upb/upb/mini_table.c +0 -1147
  2049. data/third_party/upb/upb/mini_table.h +0 -189
  2050. data/third_party/upb/upb/msg.c +0 -368
  2051. data/third_party/upb/upb/msg_internal.h +0 -837
  2052. data/third_party/upb/upb/reflection.c +0 -323
  2053. data/third_party/zlib/gzclose.c +0 -25
  2054. data/third_party/zlib/gzlib.c +0 -639
  2055. data/third_party/zlib/gzread.c +0 -650
  2056. data/third_party/zlib/gzwrite.c +0 -677
  2057. /data/src/core/lib/gpr/{log_android.cc → android/log.cc} +0 -0
  2058. /data/src/core/lib/gpr/{cpu_iphone.cc → iphone/cpu.cc} +0 -0
  2059. /data/src/core/lib/gpr/{cpu_linux.cc → linux/cpu.cc} +0 -0
  2060. /data/src/core/lib/gpr/{log_linux.cc → linux/log.cc} +0 -0
  2061. /data/src/core/lib/gpr/{tmpfile_msys.cc → msys/tmpfile.cc} +0 -0
  2062. /data/src/core/lib/gpr/{cpu_posix.cc → posix/cpu.cc} +0 -0
  2063. /data/src/core/lib/gpr/{log_posix.cc → posix/log.cc} +0 -0
  2064. /data/src/core/lib/gpr/{string_posix.cc → posix/string.cc} +0 -0
  2065. /data/src/core/lib/gpr/{sync_posix.cc → posix/sync.cc} +0 -0
  2066. /data/src/core/lib/gpr/{tmpfile_posix.cc → posix/tmpfile.cc} +0 -0
  2067. /data/src/core/lib/gpr/{cpu_windows.cc → windows/cpu.cc} +0 -0
  2068. /data/src/core/lib/gpr/{log_windows.cc → windows/log.cc} +0 -0
  2069. /data/src/core/lib/gpr/{string_windows.cc → windows/string.cc} +0 -0
  2070. /data/src/core/lib/gpr/{string_util_windows.cc → windows/string_util.cc} +0 -0
  2071. /data/src/core/lib/gpr/{sync_windows.cc → windows/sync.cc} +0 -0
  2072. /data/src/core/lib/gpr/{time_windows.cc → windows/time.cc} +0 -0
  2073. /data/src/core/lib/gpr/{tmpfile_windows.cc → windows/tmpfile.cc} +0 -0
  2074. /data/src/core/lib/gprpp/{env_linux.cc → linux/env.cc} +0 -0
  2075. /data/src/core/lib/gprpp/{env_posix.cc → posix/env.cc} +0 -0
  2076. /data/src/core/lib/gprpp/{stat_posix.cc → posix/stat.cc} +0 -0
  2077. /data/src/core/lib/gprpp/{env_windows.cc → windows/env.cc} +0 -0
  2078. /data/src/core/lib/gprpp/{stat_windows.cc → windows/stat.cc} +0 -0
  2079. /data/third_party/{upb/third_party/utf8_range → utf8_range}/naive.c +0 -0
  2080. /data/third_party/{upb/third_party/utf8_range → utf8_range}/range2-sse.c +0 -0
@@ -60,8 +60,8 @@
60
60
  * SUN MICROSYSTEMS, INC., and contributed to the OpenSSL project.
61
61
  */
62
62
 
63
- #ifndef HEADER_X509_H
64
- #define HEADER_X509_H
63
+ #ifndef OPENSSL_HEADER_X509_H
64
+ #define OPENSSL_HEADER_X509_H
65
65
 
66
66
  #include <openssl/asn1.h>
67
67
  #include <openssl/base.h>
@@ -90,379 +90,434 @@ extern "C" {
90
90
  // Legacy X.509 library.
91
91
  //
92
92
  // This header is part of OpenSSL's X.509 implementation. It is retained for
93
- // compatibility but otherwise underdocumented and not actively maintained. In
94
- // the future, a replacement library will be available. Meanwhile, minimize
93
+ // compatibility but should not be used by new code. The functions are difficult
94
+ // to use correctly, and have buggy or non-standard behaviors. They are thus
95
+ // particularly prone to behavior changes and API removals, as BoringSSL
96
+ // iterates on these issues.
97
+ //
98
+ // In the future, a replacement library will be available. Meanwhile, minimize
95
99
  // dependencies on this header where possible.
100
+ //
101
+ // TODO(https://crbug.com/boringssl/426): Documentation for this library is
102
+ // still in progress. Some functions have not yet been documented, and some
103
+ // functions have not yet been grouped into sections.
96
104
 
97
105
 
98
- #define X509_FILETYPE_PEM 1
99
- #define X509_FILETYPE_ASN1 2
100
- #define X509_FILETYPE_DEFAULT 3
106
+ // Certificates.
107
+ //
108
+ // An |X509| object represents an X.509 certificate, defined in RFC 5280.
109
+ //
110
+ // Although an |X509| is a mutable object, mutating an |X509| can give incorrect
111
+ // results. Callers typically obtain |X509|s by parsing some input with
112
+ // |d2i_X509|, etc. Such objects carry information such as the serialized
113
+ // TBSCertificate and decoded extensions, which will become inconsistent when
114
+ // mutated.
115
+ //
116
+ // Instead, mutation functions should only be used when issuing new
117
+ // certificates, as described in a later section.
101
118
 
102
- #define X509v3_KU_DIGITAL_SIGNATURE 0x0080
103
- #define X509v3_KU_NON_REPUDIATION 0x0040
104
- #define X509v3_KU_KEY_ENCIPHERMENT 0x0020
105
- #define X509v3_KU_DATA_ENCIPHERMENT 0x0010
106
- #define X509v3_KU_KEY_AGREEMENT 0x0008
107
- #define X509v3_KU_KEY_CERT_SIGN 0x0004
108
- #define X509v3_KU_CRL_SIGN 0x0002
109
- #define X509v3_KU_ENCIPHER_ONLY 0x0001
110
- #define X509v3_KU_DECIPHER_ONLY 0x8000
111
- #define X509v3_KU_UNDEF 0xffff
119
+ DEFINE_STACK_OF(X509)
112
120
 
113
- struct X509_algor_st {
114
- ASN1_OBJECT *algorithm;
115
- ASN1_TYPE *parameter;
116
- } /* X509_ALGOR */;
121
+ // X509 is an |ASN1_ITEM| whose ASN.1 type is X.509 Certificate (RFC 5280) and C
122
+ // type is |X509*|.
123
+ DECLARE_ASN1_ITEM(X509)
117
124
 
118
- DECLARE_ASN1_FUNCTIONS(X509_ALGOR)
125
+ // X509_up_ref adds one to the reference count of |x509| and returns one.
126
+ OPENSSL_EXPORT int X509_up_ref(X509 *x509);
119
127
 
120
- DEFINE_STACK_OF(X509_ALGOR)
128
+ // X509_chain_up_ref returns a newly-allocated |STACK_OF(X509)| containing a
129
+ // shallow copy of |chain|, or NULL on error. That is, the return value has the
130
+ // same contents as |chain|, and each |X509|'s reference count is incremented by
131
+ // one.
132
+ OPENSSL_EXPORT STACK_OF(X509) *X509_chain_up_ref(STACK_OF(X509) *chain);
121
133
 
122
- typedef STACK_OF(X509_ALGOR) X509_ALGORS;
134
+ // X509_dup returns a newly-allocated copy of |x509|, or NULL on error. This
135
+ // function works by serializing the structure, so auxiliary properties (see
136
+ // |i2d_X509_AUX|) are not preserved. Additionally, if |x509| is incomplete,
137
+ // this function may fail.
138
+ //
139
+ // TODO(https://crbug.com/boringssl/407): This function should be const and
140
+ // thread-safe but is currently neither in some cases, notably if |crl| was
141
+ // mutated.
142
+ OPENSSL_EXPORT X509 *X509_dup(X509 *x509);
123
143
 
124
- DEFINE_STACK_OF(X509_NAME_ENTRY)
144
+ // X509_free decrements |x509|'s reference count and, if zero, releases memory
145
+ // associated with |x509|.
146
+ OPENSSL_EXPORT void X509_free(X509 *x509);
125
147
 
126
- DEFINE_STACK_OF(X509_NAME)
148
+ // d2i_X509 parses up to |len| bytes from |*inp| as a DER-encoded X.509
149
+ // Certificate (RFC 5280), as described in |d2i_SAMPLE|.
150
+ OPENSSL_EXPORT X509 *d2i_X509(X509 **out, const uint8_t **inp, long len);
127
151
 
128
- typedef STACK_OF(X509_EXTENSION) X509_EXTENSIONS;
152
+ // X509_parse_from_buffer parses an X.509 structure from |buf| and returns a
153
+ // fresh X509 or NULL on error. There must not be any trailing data in |buf|.
154
+ // The returned structure (if any) holds a reference to |buf| rather than
155
+ // copying parts of it as a normal |d2i_X509| call would do.
156
+ OPENSSL_EXPORT X509 *X509_parse_from_buffer(CRYPTO_BUFFER *buf);
129
157
 
130
- DEFINE_STACK_OF(X509_EXTENSION)
158
+ // i2d_X509 marshals |x509| as a DER-encoded X.509 Certificate (RFC 5280), as
159
+ // described in |i2d_SAMPLE|.
160
+ //
161
+ // TODO(https://crbug.com/boringssl/407): This function should be const and
162
+ // thread-safe but is currently neither in some cases, notably if |x509| was
163
+ // mutated.
164
+ OPENSSL_EXPORT int i2d_X509(X509 *x509, uint8_t **outp);
131
165
 
132
- DEFINE_STACK_OF(X509_ATTRIBUTE)
166
+ // X509_VERSION_* are X.509 version numbers. Note the numerical values of all
167
+ // defined X.509 versions are one less than the named version.
168
+ #define X509_VERSION_1 0
169
+ #define X509_VERSION_2 1
170
+ #define X509_VERSION_3 2
133
171
 
134
- // This stuff is certificate "auxiliary info"
135
- // it contains details which are useful in certificate
136
- // stores and databases. When used this is tagged onto
137
- // the end of the certificate itself
172
+ // X509_get_version returns the numerical value of |x509|'s version, which will
173
+ // be one of the |X509_VERSION_*| constants.
174
+ OPENSSL_EXPORT long X509_get_version(const X509 *x509);
138
175
 
139
- DECLARE_STACK_OF(DIST_POINT)
140
- DECLARE_STACK_OF(GENERAL_NAME)
176
+ // X509_get0_serialNumber returns |x509|'s serial number.
177
+ OPENSSL_EXPORT const ASN1_INTEGER *X509_get0_serialNumber(const X509 *x509);
141
178
 
142
- DEFINE_STACK_OF(X509)
179
+ // X509_get0_notBefore returns |x509|'s notBefore time.
180
+ OPENSSL_EXPORT const ASN1_TIME *X509_get0_notBefore(const X509 *x509);
143
181
 
144
- // This is used for a table of trust checking functions
182
+ // X509_get0_notAfter returns |x509|'s notAfter time.
183
+ OPENSSL_EXPORT const ASN1_TIME *X509_get0_notAfter(const X509 *x509);
145
184
 
146
- struct x509_trust_st {
147
- int trust;
148
- int flags;
149
- int (*check_trust)(struct x509_trust_st *, X509 *, int);
150
- char *name;
151
- int arg1;
152
- void *arg2;
153
- } /* X509_TRUST */;
185
+ // X509_get_issuer_name returns |x509|'s issuer.
186
+ OPENSSL_EXPORT X509_NAME *X509_get_issuer_name(const X509 *x509);
154
187
 
155
- DEFINE_STACK_OF(X509_TRUST)
188
+ // X509_get_subject_name returns |x509|'s subject.
189
+ OPENSSL_EXPORT X509_NAME *X509_get_subject_name(const X509 *x509);
156
190
 
157
- // standard trust ids
191
+ // X509_get_X509_PUBKEY returns the public key of |x509|. Note this function is
192
+ // not const-correct for legacy reasons. Callers should not modify the returned
193
+ // object.
194
+ OPENSSL_EXPORT X509_PUBKEY *X509_get_X509_PUBKEY(const X509 *x509);
158
195
 
159
- #define X509_TRUST_DEFAULT (-1) // Only valid in purpose settings
196
+ // X509_get_pubkey returns |x509|'s public key as an |EVP_PKEY|, or NULL if the
197
+ // public key was unsupported or could not be decoded. This function returns a
198
+ // reference to the |EVP_PKEY|. The caller must release the result with
199
+ // |EVP_PKEY_free| when done.
200
+ OPENSSL_EXPORT EVP_PKEY *X509_get_pubkey(X509 *x509);
160
201
 
161
- #define X509_TRUST_COMPAT 1
162
- #define X509_TRUST_SSL_CLIENT 2
163
- #define X509_TRUST_SSL_SERVER 3
164
- #define X509_TRUST_EMAIL 4
165
- #define X509_TRUST_OBJECT_SIGN 5
166
- #define X509_TRUST_OCSP_SIGN 6
167
- #define X509_TRUST_OCSP_REQUEST 7
168
- #define X509_TRUST_TSA 8
202
+ // X509_get0_pubkey_bitstr returns the BIT STRING portion of |x509|'s public
203
+ // key. Note this does not contain the AlgorithmIdentifier portion.
204
+ //
205
+ // WARNING: This function returns a non-const pointer for OpenSSL compatibility,
206
+ // but the caller must not modify the resulting object. Doing so will break
207
+ // internal invariants in |x509|.
208
+ OPENSSL_EXPORT ASN1_BIT_STRING *X509_get0_pubkey_bitstr(const X509 *x509);
169
209
 
170
- // Keep these up to date!
171
- #define X509_TRUST_MIN 1
172
- #define X509_TRUST_MAX 8
210
+ // X509_get0_uids sets |*out_issuer_uid| to a non-owning pointer to the
211
+ // issuerUID field of |x509|, or NULL if |x509| has no issuerUID. It similarly
212
+ // outputs |x509|'s subjectUID field to |*out_subject_uid|.
213
+ //
214
+ // Callers may pass NULL to either |out_issuer_uid| or |out_subject_uid| to
215
+ // ignore the corresponding field.
216
+ OPENSSL_EXPORT void X509_get0_uids(const X509 *x509,
217
+ const ASN1_BIT_STRING **out_issuer_uid,
218
+ const ASN1_BIT_STRING **out_subject_uid);
173
219
 
220
+ // X509_get0_extensions returns |x509|'s extension list, or NULL if |x509| omits
221
+ // it.
222
+ OPENSSL_EXPORT const STACK_OF(X509_EXTENSION) *X509_get0_extensions(
223
+ const X509 *x509);
174
224
 
175
- // trust_flags values
176
- #define X509_TRUST_DYNAMIC 1
177
- #define X509_TRUST_DYNAMIC_NAME 2
225
+ // X509_get_ext_count returns the number of extensions in |x|.
226
+ OPENSSL_EXPORT int X509_get_ext_count(const X509 *x);
178
227
 
179
- // check_trust return codes
228
+ // X509_get_ext_by_NID behaves like |X509v3_get_ext_by_NID| but searches for
229
+ // extensions in |x|.
230
+ OPENSSL_EXPORT int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos);
180
231
 
181
- #define X509_TRUST_TRUSTED 1
182
- #define X509_TRUST_REJECTED 2
183
- #define X509_TRUST_UNTRUSTED 3
232
+ // X509_get_ext_by_OBJ behaves like |X509v3_get_ext_by_OBJ| but searches for
233
+ // extensions in |x|.
234
+ OPENSSL_EXPORT int X509_get_ext_by_OBJ(const X509 *x, const ASN1_OBJECT *obj,
235
+ int lastpos);
184
236
 
185
- // Flags for X509_print_ex()
237
+ // X509_get_ext_by_critical behaves like |X509v3_get_ext_by_critical| but
238
+ // searches for extensions in |x|.
239
+ OPENSSL_EXPORT int X509_get_ext_by_critical(const X509 *x, int crit,
240
+ int lastpos);
186
241
 
187
- #define X509_FLAG_COMPAT 0
188
- #define X509_FLAG_NO_HEADER 1L
189
- #define X509_FLAG_NO_VERSION (1L << 1)
190
- #define X509_FLAG_NO_SERIAL (1L << 2)
191
- #define X509_FLAG_NO_SIGNAME (1L << 3)
192
- #define X509_FLAG_NO_ISSUER (1L << 4)
193
- #define X509_FLAG_NO_VALIDITY (1L << 5)
194
- #define X509_FLAG_NO_SUBJECT (1L << 6)
195
- #define X509_FLAG_NO_PUBKEY (1L << 7)
196
- #define X509_FLAG_NO_EXTENSIONS (1L << 8)
197
- #define X509_FLAG_NO_SIGDUMP (1L << 9)
198
- #define X509_FLAG_NO_AUX (1L << 10)
199
- #define X509_FLAG_NO_ATTRIBUTES (1L << 11)
200
- #define X509_FLAG_NO_IDS (1L << 12)
242
+ // X509_get_ext returns the extension in |x| at index |loc|, or NULL if |loc| is
243
+ // out of bounds. This function returns a non-const pointer for OpenSSL
244
+ // compatibility, but callers should not mutate the result.
245
+ OPENSSL_EXPORT X509_EXTENSION *X509_get_ext(const X509 *x, int loc);
201
246
 
202
- // Flags specific to X509_NAME_print_ex()
247
+ // X509_get0_tbs_sigalg returns the signature algorithm in |x509|'s
248
+ // TBSCertificate. For the outer signature algorithm, see |X509_get0_signature|.
249
+ //
250
+ // Certificates with mismatched signature algorithms will successfully parse,
251
+ // but they will be rejected when verifying.
252
+ OPENSSL_EXPORT const X509_ALGOR *X509_get0_tbs_sigalg(const X509 *x509);
203
253
 
204
- // The field separator information
254
+ // X509_get0_signature sets |*out_sig| and |*out_alg| to the signature and
255
+ // signature algorithm of |x509|, respectively. Either output pointer may be
256
+ // NULL to ignore the value.
257
+ //
258
+ // This function outputs the outer signature algorithm. For the one in the
259
+ // TBSCertificate, see |X509_get0_tbs_sigalg|. Certificates with mismatched
260
+ // signature algorithms will successfully parse, but they will be rejected when
261
+ // verifying.
262
+ OPENSSL_EXPORT void X509_get0_signature(const ASN1_BIT_STRING **out_sig,
263
+ const X509_ALGOR **out_alg,
264
+ const X509 *x509);
205
265
 
206
- #define XN_FLAG_SEP_MASK (0xf << 16)
266
+ // X509_get_signature_nid returns the NID corresponding to |x509|'s signature
267
+ // algorithm, or |NID_undef| if the signature algorithm does not correspond to
268
+ // a known NID.
269
+ OPENSSL_EXPORT int X509_get_signature_nid(const X509 *x509);
207
270
 
208
- #define XN_FLAG_COMPAT 0 // Traditional SSLeay: use old X509_NAME_print
209
- #define XN_FLAG_SEP_COMMA_PLUS (1 << 16) // RFC 2253 ,+
210
- #define XN_FLAG_SEP_CPLUS_SPC (2 << 16) // ,+ spaced: more readable
211
- #define XN_FLAG_SEP_SPLUS_SPC (3 << 16) // ;+ spaced
212
- #define XN_FLAG_SEP_MULTILINE (4 << 16) // One line per field
271
+ // i2d_X509_tbs serializes the TBSCertificate portion of |x509|, as described in
272
+ // |i2d_SAMPLE|.
273
+ //
274
+ // This function preserves the original encoding of the TBSCertificate and may
275
+ // not reflect modifications made to |x509|. It may be used to manually verify
276
+ // the signature of an existing certificate. To generate certificates, use
277
+ // |i2d_re_X509_tbs| instead.
278
+ OPENSSL_EXPORT int i2d_X509_tbs(X509 *x509, unsigned char **outp);
213
279
 
214
- #define XN_FLAG_DN_REV (1 << 20) // Reverse DN order
280
+ // X509_verify checks that |x509| has a valid signature by |pkey|. It returns
281
+ // one if the signature is valid and zero otherwise. Note this function only
282
+ // checks the signature itself and does not perform a full certificate
283
+ // validation.
284
+ OPENSSL_EXPORT int X509_verify(X509 *x509, EVP_PKEY *pkey);
215
285
 
216
- // How the field name is shown
217
286
 
218
- #define XN_FLAG_FN_MASK (0x3 << 21)
287
+ // Issuing certificates.
288
+ //
289
+ // An |X509| object may also represent an incomplete certificate. Callers may
290
+ // construct empty |X509| objects, fill in fields individually, and finally sign
291
+ // the result. The following functions may be used for this purpose.
219
292
 
220
- #define XN_FLAG_FN_SN 0 // Object short name
221
- #define XN_FLAG_FN_LN (1 << 21) // Object long name
222
- #define XN_FLAG_FN_OID (2 << 21) // Always use OIDs
223
- #define XN_FLAG_FN_NONE (3 << 21) // No field names
293
+ // X509_new returns a newly-allocated, empty |X509| object, or NULL on error.
294
+ // This produces an incomplete certificate which may be filled in to issue a new
295
+ // certificate.
296
+ OPENSSL_EXPORT X509 *X509_new(void);
224
297
 
225
- #define XN_FLAG_SPC_EQ (1 << 23) // Put spaces round '='
298
+ // X509_set_version sets |x509|'s version to |version|, which should be one of
299
+ // the |X509V_VERSION_*| constants. It returns one on success and zero on error.
300
+ //
301
+ // If unsure, use |X509_VERSION_3|.
302
+ OPENSSL_EXPORT int X509_set_version(X509 *x509, long version);
226
303
 
227
- // This determines if we dump fields we don't recognise:
228
- // RFC 2253 requires this.
304
+ // X509_set_serialNumber sets |x509|'s serial number to |serial|. It returns one
305
+ // on success and zero on error.
306
+ OPENSSL_EXPORT int X509_set_serialNumber(X509 *x509,
307
+ const ASN1_INTEGER *serial);
229
308
 
230
- #define XN_FLAG_DUMP_UNKNOWN_FIELDS (1 << 24)
309
+ // X509_set1_notBefore sets |x509|'s notBefore time to |tm|. It returns one on
310
+ // success and zero on error.
311
+ OPENSSL_EXPORT int X509_set1_notBefore(X509 *x509, const ASN1_TIME *tm);
231
312
 
232
- #define XN_FLAG_FN_ALIGN (1 << 25) // Align field names to 20 characters
313
+ // X509_set1_notAfter sets |x509|'s notAfter time to |tm|. it returns one on
314
+ // success and zero on error.
315
+ OPENSSL_EXPORT int X509_set1_notAfter(X509 *x509, const ASN1_TIME *tm);
233
316
 
234
- // Complete set of RFC 2253 flags
317
+ // X509_getm_notBefore returns a mutable pointer to |x509|'s notBefore time.
318
+ OPENSSL_EXPORT ASN1_TIME *X509_getm_notBefore(X509 *x509);
235
319
 
236
- #define XN_FLAG_RFC2253 \
237
- (ASN1_STRFLGS_RFC2253 | XN_FLAG_SEP_COMMA_PLUS | XN_FLAG_DN_REV | \
238
- XN_FLAG_FN_SN | XN_FLAG_DUMP_UNKNOWN_FIELDS)
320
+ // X509_getm_notAfter returns a mutable pointer to |x509|'s notAfter time.
321
+ OPENSSL_EXPORT ASN1_TIME *X509_getm_notAfter(X509 *x);
239
322
 
240
- // readable oneline form
323
+ // X509_set_issuer_name sets |x509|'s issuer to a copy of |name|. It returns one
324
+ // on success and zero on error.
325
+ OPENSSL_EXPORT int X509_set_issuer_name(X509 *x509, X509_NAME *name);
241
326
 
242
- #define XN_FLAG_ONELINE \
243
- (ASN1_STRFLGS_RFC2253 | ASN1_STRFLGS_ESC_QUOTE | XN_FLAG_SEP_CPLUS_SPC | \
244
- XN_FLAG_SPC_EQ | XN_FLAG_FN_SN)
327
+ // X509_set_subject_name sets |x509|'s subject to a copy of |name|. It returns
328
+ // one on success and zero on error.
329
+ OPENSSL_EXPORT int X509_set_subject_name(X509 *x509, X509_NAME *name);
245
330
 
246
- // readable multiline form
331
+ // X509_set_pubkey sets |x509|'s public key to |pkey|. It returns one on success
332
+ // and zero on error. This function does not take ownership of |pkey| and
333
+ // internally copies and updates reference counts as needed.
334
+ OPENSSL_EXPORT int X509_set_pubkey(X509 *x509, EVP_PKEY *pkey);
247
335
 
248
- #define XN_FLAG_MULTILINE \
249
- (ASN1_STRFLGS_ESC_CTRL | ASN1_STRFLGS_ESC_MSB | XN_FLAG_SEP_MULTILINE | \
250
- XN_FLAG_SPC_EQ | XN_FLAG_FN_LN | XN_FLAG_FN_ALIGN)
336
+ // X509_delete_ext removes the extension in |x| at index |loc| and returns the
337
+ // removed extension, or NULL if |loc| was out of bounds. If non-NULL, the
338
+ // caller must release the result with |X509_EXTENSION_free|.
339
+ OPENSSL_EXPORT X509_EXTENSION *X509_delete_ext(X509 *x, int loc);
251
340
 
252
- struct x509_revoked_st {
253
- ASN1_INTEGER *serialNumber;
254
- ASN1_TIME *revocationDate;
255
- STACK_OF(X509_EXTENSION) /* optional */ *extensions;
256
- // Set up if indirect CRL
257
- STACK_OF(GENERAL_NAME) *issuer;
258
- // Revocation reason
259
- int reason;
260
- int sequence; // load sequence
261
- };
341
+ // X509_add_ext adds a copy of |ex| to |x|. It returns one on success and zero
342
+ // on failure. The caller retains ownership of |ex| and can release it
343
+ // independently of |x|.
344
+ //
345
+ // The new extension is inserted at index |loc|, shifting extensions to the
346
+ // right. If |loc| is -1 or out of bounds, the new extension is appended to the
347
+ // list.
348
+ OPENSSL_EXPORT int X509_add_ext(X509 *x, const X509_EXTENSION *ex, int loc);
262
349
 
263
- DEFINE_STACK_OF(X509_REVOKED)
350
+ // X509_sign signs |x509| with |pkey| and replaces the signature algorithm and
351
+ // signature fields. It returns the length of the signature on success and zero
352
+ // on error. This function uses digest algorithm |md|, or |pkey|'s default if
353
+ // NULL. Other signing parameters use |pkey|'s defaults. To customize them, use
354
+ // |X509_sign_ctx|.
355
+ OPENSSL_EXPORT int X509_sign(X509 *x509, EVP_PKEY *pkey, const EVP_MD *md);
264
356
 
265
- DECLARE_STACK_OF(GENERAL_NAMES)
357
+ // X509_sign_ctx signs |x509| with |ctx| and replaces the signature algorithm
358
+ // and signature fields. It returns the length of the signature on success and
359
+ // zero on error. The signature algorithm and parameters come from |ctx|, which
360
+ // must have been initialized with |EVP_DigestSignInit|. The caller should
361
+ // configure the corresponding |EVP_PKEY_CTX| before calling this function.
362
+ OPENSSL_EXPORT int X509_sign_ctx(X509 *x509, EVP_MD_CTX *ctx);
266
363
 
267
- DEFINE_STACK_OF(X509_CRL)
364
+ // i2d_re_X509_tbs serializes the TBSCertificate portion of |x509|, as described
365
+ // in |i2d_SAMPLE|.
366
+ //
367
+ // This function re-encodes the TBSCertificate and may not reflect |x509|'s
368
+ // original encoding. It may be used to manually generate a signature for a new
369
+ // certificate. To verify certificates, use |i2d_X509_tbs| instead.
370
+ OPENSSL_EXPORT int i2d_re_X509_tbs(X509 *x509, unsigned char **outp);
268
371
 
269
- struct private_key_st {
270
- int version;
271
- // The PKCS#8 data types
272
- X509_ALGOR *enc_algor;
273
- ASN1_OCTET_STRING *enc_pkey; // encrypted pub key
274
-
275
- // When decrypted, the following will not be NULL
276
- EVP_PKEY *dec_pkey;
277
-
278
- // used to encrypt and decrypt
279
- int key_length;
280
- char *key_data;
281
- int key_free; // true if we should auto free key_data
282
-
283
- // expanded version of 'enc_algor'
284
- EVP_CIPHER_INFO cipher;
285
- } /* X509_PKEY */;
286
-
287
- struct X509_info_st {
288
- X509 *x509;
289
- X509_CRL *crl;
290
- X509_PKEY *x_pkey;
291
-
292
- EVP_CIPHER_INFO enc_cipher;
293
- int enc_len;
294
- char *enc_data;
295
-
296
- } /* X509_INFO */;
297
-
298
- DEFINE_STACK_OF(X509_INFO)
299
-
300
- // The next 2 structures and their 8 routines were sent to me by
301
- // Pat Richard <patr@x509.com> and are used to manipulate
302
- // Netscapes spki structures - useful if you are writing a CA web page
303
- struct Netscape_spkac_st {
304
- X509_PUBKEY *pubkey;
305
- ASN1_IA5STRING *challenge; // challenge sent in atlas >= PR2
306
- } /* NETSCAPE_SPKAC */;
307
-
308
- struct Netscape_spki_st {
309
- NETSCAPE_SPKAC *spkac; // signed public key and challenge
310
- X509_ALGOR *sig_algor;
311
- ASN1_BIT_STRING *signature;
312
- } /* NETSCAPE_SPKI */;
313
-
314
- // TODO(davidben): Document remaining functions, reorganize them, and define
315
- // supported patterns for using |X509| objects in general. In particular, when
316
- // it is safe to call mutating functions is a little tricky due to various
317
- // internal caches.
318
-
319
- // X509_VERSION_* are X.509 version numbers. Note the numerical values of all
320
- // defined X.509 versions are one less than the named version.
321
- #define X509_VERSION_1 0
322
- #define X509_VERSION_2 1
323
- #define X509_VERSION_3 2
324
-
325
- // X509_get_version returns the numerical value of |x509|'s version. Callers may
326
- // compare the result to the |X509_VERSION_*| constants. Unknown versions are
327
- // rejected by the parser, but a manually-created |X509| object may encode
328
- // invalid versions. In that case, the function will return the invalid version,
329
- // or -1 on overflow.
330
- OPENSSL_EXPORT long X509_get_version(const X509 *x509);
372
+ // X509_set1_signature_algo sets |x509|'s signature algorithm to |algo| and
373
+ // returns one on success or zero on error. It updates both the signature field
374
+ // of the TBSCertificate structure, and the signatureAlgorithm field of the
375
+ // Certificate.
376
+ OPENSSL_EXPORT int X509_set1_signature_algo(X509 *x509, const X509_ALGOR *algo);
331
377
 
332
- // X509_set_version sets |x509|'s version to |version|, which should be one of
333
- // the |X509V_VERSION_*| constants. It returns one on success and zero on error.
378
+ // X509_set1_signature_value sets |x509|'s signature to a copy of the |sig_len|
379
+ // bytes pointed by |sig|. It returns one on success and zero on error.
334
380
  //
335
- // If unsure, use |X509_VERSION_3|.
336
- OPENSSL_EXPORT int X509_set_version(X509 *x509, long version);
337
-
338
- // X509_get0_serialNumber returns |x509|'s serial number.
339
- OPENSSL_EXPORT const ASN1_INTEGER *X509_get0_serialNumber(const X509 *x509);
340
-
341
- // X509_set_serialNumber sets |x509|'s serial number to |serial|. It returns one
342
- // on success and zero on error.
343
- OPENSSL_EXPORT int X509_set_serialNumber(X509 *x509,
344
- const ASN1_INTEGER *serial);
345
-
346
- // X509_get0_notBefore returns |x509|'s notBefore time.
347
- OPENSSL_EXPORT const ASN1_TIME *X509_get0_notBefore(const X509 *x509);
348
-
349
- // X509_get0_notAfter returns |x509|'s notAfter time.
350
- OPENSSL_EXPORT const ASN1_TIME *X509_get0_notAfter(const X509 *x509);
351
-
352
- // X509_set1_notBefore sets |x509|'s notBefore time to |tm|. It returns one on
353
- // success and zero on error.
354
- OPENSSL_EXPORT int X509_set1_notBefore(X509 *x509, const ASN1_TIME *tm);
355
-
356
- // X509_set1_notAfter sets |x509|'s notAfter time to |tm|. it returns one on
357
- // success and zero on error.
358
- OPENSSL_EXPORT int X509_set1_notAfter(X509 *x509, const ASN1_TIME *tm);
359
-
360
- // X509_getm_notBefore returns a mutable pointer to |x509|'s notBefore time.
361
- OPENSSL_EXPORT ASN1_TIME *X509_getm_notBefore(X509 *x509);
362
-
363
- // X509_getm_notAfter returns a mutable pointer to |x509|'s notAfter time.
364
- OPENSSL_EXPORT ASN1_TIME *X509_getm_notAfter(X509 *x);
381
+ // Due to a specification error, X.509 certificates store signatures in ASN.1
382
+ // BIT STRINGs, but signature algorithms return byte strings rather than bit
383
+ // strings. This function creates a BIT STRING containing a whole number of
384
+ // bytes, with the bit order matching the DER encoding. This matches the
385
+ // encoding used by all X.509 signature algorithms.
386
+ OPENSSL_EXPORT int X509_set1_signature_value(X509 *x509, const uint8_t *sig,
387
+ size_t sig_len);
365
388
 
366
- // X509_get_notBefore returns |x509|'s notBefore time. Note this function is not
367
- // const-correct for legacy reasons. Use |X509_get0_notBefore| or
368
- // |X509_getm_notBefore| instead.
369
- OPENSSL_EXPORT ASN1_TIME *X509_get_notBefore(const X509 *x509);
370
389
 
371
- // X509_get_notAfter returns |x509|'s notAfter time. Note this function is not
372
- // const-correct for legacy reasons. Use |X509_get0_notAfter| or
373
- // |X509_getm_notAfter| instead.
374
- OPENSSL_EXPORT ASN1_TIME *X509_get_notAfter(const X509 *x509);
390
+ // Auxiliary certificate properties.
391
+ //
392
+ // |X509| objects optionally maintain auxiliary properties. These are not part
393
+ // of the certificates themselves, and thus are not covered by signatures or
394
+ // preserved by the standard serialization. They are used as inputs or outputs
395
+ // to other functions in this library.
396
+
397
+ // i2d_X509_AUX marshals |x509| as a DER-encoded X.509 Certificate (RFC 5280),
398
+ // followed optionally by a separate, OpenSSL-specific structure with auxiliary
399
+ // properties. It behaves as described in |i2d_SAMPLE|.
400
+ //
401
+ // Unlike similarly-named functions, this function does not output a single
402
+ // ASN.1 element. Directly embedding the output in a larger ASN.1 structure will
403
+ // not behave correctly.
404
+ OPENSSL_EXPORT int i2d_X509_AUX(X509 *x509, unsigned char **outp);
405
+
406
+ // d2i_X509_AUX parses up to |length| bytes from |*inp| as a DER-encoded X.509
407
+ // Certificate (RFC 5280), followed optionally by a separate, OpenSSL-specific
408
+ // structure with auxiliary properties. It behaves as described in |d2i_SAMPLE|.
409
+ //
410
+ // Some auxiliary properties affect trust decisions, so this function should not
411
+ // be used with untrusted input.
412
+ //
413
+ // Unlike similarly-named functions, this function does not parse a single
414
+ // ASN.1 element. Trying to parse data directly embedded in a larger ASN.1
415
+ // structure will not behave correctly.
416
+ OPENSSL_EXPORT X509 *d2i_X509_AUX(X509 **x509, const unsigned char **inp,
417
+ long length);
375
418
 
376
- // X509_set_notBefore calls |X509_set1_notBefore|. Use |X509_set1_notBefore|
377
- // instead.
378
- OPENSSL_EXPORT int X509_set_notBefore(X509 *x509, const ASN1_TIME *tm);
419
+ // X509_alias_set1 sets |x509|'s alias to |len| bytes from |name|. If |name| is
420
+ // NULL, the alias is cleared instead. Aliases are not part of the certificate
421
+ // itself and will not be serialized by |i2d_X509|.
422
+ OPENSSL_EXPORT int X509_alias_set1(X509 *x509, const unsigned char *name,
423
+ ossl_ssize_t len);
424
+
425
+ // X509_keyid_set1 sets |x509|'s key ID to |len| bytes from |id|. If |id| is
426
+ // NULL, the key ID is cleared instead. Key IDs are not part of the certificate
427
+ // itself and will not be serialized by |i2d_X509|.
428
+ OPENSSL_EXPORT int X509_keyid_set1(X509 *x509, const unsigned char *id,
429
+ ossl_ssize_t len);
430
+
431
+ // X509_alias_get0 looks up |x509|'s alias. If found, it sets |*out_len| to the
432
+ // alias's length and returns a pointer to a buffer containing the contents. If
433
+ // not found, it outputs the empty string by returning NULL and setting
434
+ // |*out_len| to zero.
435
+ //
436
+ // If |x509| was parsed from a PKCS#12 structure (see
437
+ // |PKCS12_get_key_and_certs|), the alias will reflect the friendlyName
438
+ // attribute (RFC 2985).
439
+ //
440
+ // WARNING: In OpenSSL, this function did not set |*out_len| when the alias was
441
+ // missing. Callers that target both OpenSSL and BoringSSL should set the value
442
+ // to zero before calling this function.
443
+ OPENSSL_EXPORT unsigned char *X509_alias_get0(X509 *x509, int *out_len);
444
+
445
+ // X509_keyid_get0 looks up |x509|'s key ID. If found, it sets |*out_len| to the
446
+ // key ID's length and returns a pointer to a buffer containing the contents. If
447
+ // not found, it outputs the empty string by returning NULL and setting
448
+ // |*out_len| to zero.
449
+ //
450
+ // WARNING: In OpenSSL, this function did not set |*out_len| when the alias was
451
+ // missing. Callers that target both OpenSSL and BoringSSL should set the value
452
+ // to zero before calling this function.
453
+ OPENSSL_EXPORT unsigned char *X509_keyid_get0(X509 *x509, int *out_len);
379
454
 
380
- // X509_set_notAfter calls |X509_set1_notAfter|. Use |X509_set1_notAfter|
381
- // instead.
382
- OPENSSL_EXPORT int X509_set_notAfter(X509 *x509, const ASN1_TIME *tm);
383
455
 
384
- // X509_get0_uids sets |*out_issuer_uid| to a non-owning pointer to the
385
- // issuerUID field of |x509|, or NULL if |x509| has no issuerUID. It similarly
386
- // outputs |x509|'s subjectUID field to |*out_subject_uid|.
456
+ // Certificate revocation lists.
387
457
  //
388
- // Callers may pass NULL to either |out_issuer_uid| or |out_subject_uid| to
389
- // ignore the corresponding field.
390
- OPENSSL_EXPORT void X509_get0_uids(const X509 *x509,
391
- const ASN1_BIT_STRING **out_issuer_uid,
392
- const ASN1_BIT_STRING **out_subject_uid);
458
+ // An |X509_CRL| object represents an X.509 certificate revocation list (CRL),
459
+ // defined in RFC 5280. A CRL is a signed list of certificates which are no
460
+ // longer considered valid.
461
+ //
462
+ // Although an |X509_CRL| is a mutable object, mutating an |X509_CRL| can give
463
+ // incorrect results. Callers typically obtain |X509_CRL|s by parsing some input
464
+ // with |d2i_X509_CRL|, etc. Such objects carry information such as the
465
+ // serialized TBSCertList and decoded extensions, which will become inconsistent
466
+ // when mutated.
467
+ //
468
+ // Instead, mutation functions should only be used when issuing new CRLs, as
469
+ // described in a later section.
393
470
 
394
- // X509_extract_key is a legacy alias to |X509_get_pubkey|. Use
395
- // |X509_get_pubkey| instead.
396
- #define X509_extract_key(x) X509_get_pubkey(x)
471
+ DEFINE_STACK_OF(X509_CRL)
397
472
 
398
- // X509_get_pathlen returns path length constraint from the basic constraints
399
- // extension in |x509|. (See RFC 5280, section 4.2.1.9.) It returns -1 if the
400
- // constraint is not present, or if some extension in |x509| was invalid.
401
- //
402
- // Note that decoding an |X509| object will not check for invalid extensions. To
403
- // detect the error case, call |X509_get_extensions_flags| and check the
404
- // |EXFLAG_INVALID| bit.
405
- OPENSSL_EXPORT long X509_get_pathlen(X509 *x509);
473
+ // X509_CRL is an |ASN1_ITEM| whose ASN.1 type is X.509 CertificateList (RFC
474
+ // 5280) and C type is |X509_CRL*|.
475
+ DECLARE_ASN1_ITEM(X509_CRL)
406
476
 
407
- // X509_REQ_VERSION_1 is the version constant for |X509_REQ| objects. Note no
408
- // other versions are defined.
409
- #define X509_REQ_VERSION_1 0
477
+ // X509_CRL_up_ref adds one to the reference count of |crl| and returns one.
478
+ OPENSSL_EXPORT int X509_CRL_up_ref(X509_CRL *crl);
410
479
 
411
- // X509_REQ_get_version returns the numerical value of |req|'s version. This
412
- // will be |X509_REQ_VERSION_1| for valid certificate requests. If |req| is
413
- // invalid, it may return another value, or -1 on overflow.
480
+ // X509_CRL_dup returns a newly-allocated copy of |crl|, or NULL on error. This
481
+ // function works by serializing the structure, so if |crl| is incomplete, it
482
+ // may fail.
414
483
  //
415
- // TODO(davidben): Enforce the version number in the parser.
416
- OPENSSL_EXPORT long X509_REQ_get_version(const X509_REQ *req);
484
+ // TODO(https://crbug.com/boringssl/407): This function should be const and
485
+ // thread-safe but is currently neither in some cases, notably if |crl| was
486
+ // mutated.
487
+ OPENSSL_EXPORT X509_CRL *X509_CRL_dup(X509_CRL *crl);
417
488
 
418
- // X509_REQ_get_subject_name returns |req|'s subject name. Note this function is
419
- // not const-correct for legacy reasons.
420
- OPENSSL_EXPORT X509_NAME *X509_REQ_get_subject_name(const X509_REQ *req);
489
+ // X509_CRL_free decrements |crl|'s reference count and, if zero, releases
490
+ // memory associated with |crl|.
491
+ OPENSSL_EXPORT void X509_CRL_free(X509_CRL *crl);
421
492
 
422
- // X509_REQ_extract_key is a legacy alias for |X509_REQ_get_pubkey|.
423
- #define X509_REQ_extract_key(a) X509_REQ_get_pubkey(a)
493
+ // d2i_X509_CRL parses up to |len| bytes from |*inp| as a DER-encoded X.509
494
+ // CertificateList (RFC 5280), as described in |d2i_SAMPLE|.
495
+ OPENSSL_EXPORT X509_CRL *d2i_X509_CRL(X509_CRL **out, const uint8_t **inp,
496
+ long len);
424
497
 
425
- // X509_name_cmp is a legacy alias for |X509_NAME_cmp|.
426
- #define X509_name_cmp(a, b) X509_NAME_cmp((a), (b))
498
+ // i2d_X509_CRL marshals |crl| as a X.509 CertificateList (RFC 5280), as
499
+ // described in |i2d_SAMPLE|.
500
+ //
501
+ // TODO(https://crbug.com/boringssl/407): This function should be const and
502
+ // thread-safe but is currently neither in some cases, notably if |crl| was
503
+ // mutated.
504
+ OPENSSL_EXPORT int i2d_X509_CRL(X509_CRL *crl, uint8_t **outp);
427
505
 
428
506
  #define X509_CRL_VERSION_1 0
429
507
  #define X509_CRL_VERSION_2 1
430
508
 
431
- // X509_CRL_get_version returns the numerical value of |crl|'s version. Callers
432
- // may compare the result to |X509_CRL_VERSION_*| constants. If |crl| is
433
- // invalid, it may return another value, or -1 on overflow.
434
- //
435
- // TODO(davidben): Enforce the version number in the parser.
509
+ // X509_CRL_get_version returns the numerical value of |crl|'s version, which
510
+ // will be one of the |X509_CRL_VERSION_*| constants.
436
511
  OPENSSL_EXPORT long X509_CRL_get_version(const X509_CRL *crl);
437
512
 
438
- // X509_CRL_get0_lastUpdate returns |crl|'s lastUpdate time.
513
+ // X509_CRL_get0_lastUpdate returns |crl|'s thisUpdate time. The OpenSSL API
514
+ // refers to this field as lastUpdate.
439
515
  OPENSSL_EXPORT const ASN1_TIME *X509_CRL_get0_lastUpdate(const X509_CRL *crl);
440
516
 
441
517
  // X509_CRL_get0_nextUpdate returns |crl|'s nextUpdate time, or NULL if |crl|
442
518
  // has none.
443
519
  OPENSSL_EXPORT const ASN1_TIME *X509_CRL_get0_nextUpdate(const X509_CRL *crl);
444
520
 
445
- // X509_CRL_set1_lastUpdate sets |crl|'s lastUpdate time to |tm|. It returns one
446
- // on success and zero on error.
447
- OPENSSL_EXPORT int X509_CRL_set1_lastUpdate(X509_CRL *crl, const ASN1_TIME *tm);
448
-
449
- // X509_CRL_set1_nextUpdate sets |crl|'s nextUpdate time to |tm|. It returns one
450
- // on success and zero on error.
451
- OPENSSL_EXPORT int X509_CRL_set1_nextUpdate(X509_CRL *crl, const ASN1_TIME *tm);
452
-
453
- // The following symbols are deprecated aliases to |X509_CRL_set1_*|.
454
- #define X509_CRL_set_lastUpdate X509_CRL_set1_lastUpdate
455
- #define X509_CRL_set_nextUpdate X509_CRL_set1_nextUpdate
456
-
457
- // X509_CRL_get_lastUpdate returns a mutable pointer to |crl|'s lastUpdate time.
458
- // Use |X509_CRL_get0_lastUpdate| or |X509_CRL_set1_lastUpdate| instead.
459
- OPENSSL_EXPORT ASN1_TIME *X509_CRL_get_lastUpdate(X509_CRL *crl);
460
-
461
- // X509_CRL_get_nextUpdate returns a mutable pointer to |crl|'s nextUpdate time,
462
- // or NULL if |crl| has none. Use |X509_CRL_get0_nextUpdate| or
463
- // |X509_CRL_set1_nextUpdate| instead.
464
- OPENSSL_EXPORT ASN1_TIME *X509_CRL_get_nextUpdate(X509_CRL *crl);
465
-
466
521
  // X509_CRL_get_issuer returns |crl|'s issuer name. Note this function is not
467
522
  // const-correct for legacy reasons.
468
523
  OPENSSL_EXPORT X509_NAME *X509_CRL_get_issuer(const X509_CRL *crl);
@@ -480,146 +535,1330 @@ OPENSSL_EXPORT STACK_OF(X509_REVOKED) *X509_CRL_get_REVOKED(X509_CRL *crl);
480
535
  OPENSSL_EXPORT const STACK_OF(X509_EXTENSION) *X509_CRL_get0_extensions(
481
536
  const X509_CRL *crl);
482
537
 
483
- // X509_SIG_get0 sets |*out_alg| and |*out_digest| to non-owning pointers to
484
- // |sig|'s algorithm and digest fields, respectively. Either |out_alg| and
485
- // |out_digest| may be NULL to skip those fields.
486
- OPENSSL_EXPORT void X509_SIG_get0(const X509_SIG *sig,
487
- const X509_ALGOR **out_alg,
488
- const ASN1_OCTET_STRING **out_digest);
538
+ // X509_CRL_get_ext_count returns the number of extensions in |x|.
539
+ OPENSSL_EXPORT int X509_CRL_get_ext_count(const X509_CRL *x);
489
540
 
490
- // X509_SIG_getm behaves like |X509_SIG_get0| but returns mutable pointers.
491
- OPENSSL_EXPORT void X509_SIG_getm(X509_SIG *sig, X509_ALGOR **out_alg,
492
- ASN1_OCTET_STRING **out_digest);
541
+ // X509_CRL_get_ext_by_NID behaves like |X509v3_get_ext_by_NID| but searches for
542
+ // extensions in |x|.
543
+ OPENSSL_EXPORT int X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid,
544
+ int lastpos);
493
545
 
494
- OPENSSL_EXPORT void X509_CRL_set_default_method(const X509_CRL_METHOD *meth);
495
- OPENSSL_EXPORT X509_CRL_METHOD *X509_CRL_METHOD_new(
496
- int (*crl_init)(X509_CRL *crl), int (*crl_free)(X509_CRL *crl),
497
- int (*crl_lookup)(X509_CRL *crl, X509_REVOKED **ret, ASN1_INTEGER *ser,
498
- X509_NAME *issuer),
499
- int (*crl_verify)(X509_CRL *crl, EVP_PKEY *pk));
500
- OPENSSL_EXPORT void X509_CRL_METHOD_free(X509_CRL_METHOD *m);
546
+ // X509_CRL_get_ext_by_OBJ behaves like |X509v3_get_ext_by_OBJ| but searches for
547
+ // extensions in |x|.
548
+ OPENSSL_EXPORT int X509_CRL_get_ext_by_OBJ(const X509_CRL *x,
549
+ const ASN1_OBJECT *obj, int lastpos);
501
550
 
502
- OPENSSL_EXPORT void X509_CRL_set_meth_data(X509_CRL *crl, void *dat);
503
- OPENSSL_EXPORT void *X509_CRL_get_meth_data(X509_CRL *crl);
551
+ // X509_CRL_get_ext_by_critical behaves like |X509v3_get_ext_by_critical| but
552
+ // searches for extensions in |x|.
553
+ OPENSSL_EXPORT int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit,
554
+ int lastpos);
504
555
 
505
- // X509_get_X509_PUBKEY returns the public key of |x509|. Note this function is
506
- // not const-correct for legacy reasons. Callers should not modify the returned
507
- // object.
508
- OPENSSL_EXPORT X509_PUBKEY *X509_get_X509_PUBKEY(const X509 *x509);
556
+ // X509_CRL_get_ext returns the extension in |x| at index |loc|, or NULL if
557
+ // |loc| is out of bounds. This function returns a non-const pointer for OpenSSL
558
+ // compatibility, but callers should not mutate the result.
559
+ OPENSSL_EXPORT X509_EXTENSION *X509_CRL_get_ext(const X509_CRL *x, int loc);
509
560
 
510
- // X509_verify_cert_error_string returns |err| as a human-readable string, where
511
- // |err| should be one of the |X509_V_*| values. If |err| is unknown, it returns
512
- // a default description.
513
- OPENSSL_EXPORT const char *X509_verify_cert_error_string(long err);
561
+ // X509_CRL_get0_signature sets |*out_sig| and |*out_alg| to the signature and
562
+ // signature algorithm of |crl|, respectively. Either output pointer may be NULL
563
+ // to ignore the value.
564
+ //
565
+ // This function outputs the outer signature algorithm, not the one in the
566
+ // TBSCertList. CRLs with mismatched signature algorithms will successfully
567
+ // parse, but they will be rejected when verifying.
568
+ OPENSSL_EXPORT void X509_CRL_get0_signature(const X509_CRL *crl,
569
+ const ASN1_BIT_STRING **out_sig,
570
+ const X509_ALGOR **out_alg);
514
571
 
515
- // X509_verify checks that |x509| has a valid signature by |pkey|. It returns
516
- // one if the signature is valid and zero otherwise. Note this function only
517
- // checks the signature itself and does not perform a full certificate
518
- // validation.
519
- OPENSSL_EXPORT int X509_verify(X509 *x509, EVP_PKEY *pkey);
572
+ // X509_CRL_get_signature_nid returns the NID corresponding to |crl|'s signature
573
+ // algorithm, or |NID_undef| if the signature algorithm does not correspond to
574
+ // a known NID.
575
+ OPENSSL_EXPORT int X509_CRL_get_signature_nid(const X509_CRL *crl);
520
576
 
521
- // X509_REQ_verify checks that |req| has a valid signature by |pkey|. It returns
522
- // one if the signature is valid and zero otherwise.
523
- OPENSSL_EXPORT int X509_REQ_verify(X509_REQ *req, EVP_PKEY *pkey);
577
+ // i2d_X509_CRL_tbs serializes the TBSCertList portion of |crl|, as described in
578
+ // |i2d_SAMPLE|.
579
+ //
580
+ // This function preserves the original encoding of the TBSCertList and may not
581
+ // reflect modifications made to |crl|. It may be used to manually verify the
582
+ // signature of an existing CRL. To generate CRLs, use |i2d_re_X509_CRL_tbs|
583
+ // instead.
584
+ OPENSSL_EXPORT int i2d_X509_CRL_tbs(X509_CRL *crl, unsigned char **outp);
524
585
 
525
586
  // X509_CRL_verify checks that |crl| has a valid signature by |pkey|. It returns
526
587
  // one if the signature is valid and zero otherwise.
527
588
  OPENSSL_EXPORT int X509_CRL_verify(X509_CRL *crl, EVP_PKEY *pkey);
528
589
 
529
- // NETSCAPE_SPKI_verify checks that |spki| has a valid signature by |pkey|. It
530
- // returns one if the signature is valid and zero otherwise.
531
- OPENSSL_EXPORT int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *spki, EVP_PKEY *pkey);
532
-
533
- // NETSCAPE_SPKI_b64_decode decodes |len| bytes from |str| as a base64-encoded
534
- // Netscape signed public key and challenge (SPKAC) structure. It returns a
535
- // newly-allocated |NETSCAPE_SPKI| structure with the result, or NULL on error.
536
- // If |len| is 0 or negative, the length is calculated with |strlen| and |str|
537
- // must be a NUL-terminated C string.
538
- OPENSSL_EXPORT NETSCAPE_SPKI *NETSCAPE_SPKI_b64_decode(const char *str,
539
- int len);
540
590
 
541
- // NETSCAPE_SPKI_b64_encode encodes |spki| as a base64-encoded Netscape signed
542
- // public key and challenge (SPKAC) structure. It returns a newly-allocated
543
- // NUL-terminated C string with the result, or NULL on error. The caller must
544
- // release the memory with |OPENSSL_free| when done.
545
- OPENSSL_EXPORT char *NETSCAPE_SPKI_b64_encode(NETSCAPE_SPKI *spki);
591
+ // Issuing certificate revocation lists.
592
+ //
593
+ // An |X509_CRL| object may also represent an incomplete CRL. Callers may
594
+ // construct empty |X509_CRL| objects, fill in fields individually, and finally
595
+ // sign the result. The following functions may be used for this purpose.
546
596
 
547
- // NETSCAPE_SPKI_get_pubkey decodes and returns the public key in |spki| as an
548
- // |EVP_PKEY|, or NULL on error. The caller takes ownership of the resulting
549
- // pointer and must call |EVP_PKEY_free| when done.
550
- OPENSSL_EXPORT EVP_PKEY *NETSCAPE_SPKI_get_pubkey(NETSCAPE_SPKI *spki);
597
+ // X509_CRL_new returns a newly-allocated, empty |X509_CRL| object, or NULL on
598
+ // error. This object may be filled in and then signed to construct a CRL.
599
+ OPENSSL_EXPORT X509_CRL *X509_CRL_new(void);
551
600
 
552
- // NETSCAPE_SPKI_set_pubkey sets |spki|'s public key to |pkey|. It returns one
553
- // on success or zero on error. This function does not take ownership of |pkey|,
554
- // so the caller may continue to manage its lifetime independently of |spki|.
555
- OPENSSL_EXPORT int NETSCAPE_SPKI_set_pubkey(NETSCAPE_SPKI *spki,
556
- EVP_PKEY *pkey);
601
+ // X509_CRL_set_version sets |crl|'s version to |version|, which should be one
602
+ // of the |X509_CRL_VERSION_*| constants. It returns one on success and zero on
603
+ // error.
604
+ //
605
+ // If unsure, use |X509_CRL_VERSION_2|. Note that, unlike certificates, CRL
606
+ // versions are only defined up to v2. Callers should not use |X509_VERSION_3|.
607
+ OPENSSL_EXPORT int X509_CRL_set_version(X509_CRL *crl, long version);
557
608
 
558
- // X509_signature_dump writes a human-readable representation of |sig| to |bio|,
559
- // indented with |indent| spaces. It returns one on success and zero on error.
560
- OPENSSL_EXPORT int X509_signature_dump(BIO *bio, const ASN1_STRING *sig,
561
- int indent);
609
+ // X509_CRL_set_issuer_name sets |crl|'s issuer to a copy of |name|. It returns
610
+ // one on success and zero on error.
611
+ OPENSSL_EXPORT int X509_CRL_set_issuer_name(X509_CRL *crl, X509_NAME *name);
612
+
613
+ // X509_CRL_set1_lastUpdate sets |crl|'s thisUpdate time to |tm|. It returns one
614
+ // on success and zero on error. The OpenSSL API refers to this field as
615
+ // lastUpdate.
616
+ OPENSSL_EXPORT int X509_CRL_set1_lastUpdate(X509_CRL *crl, const ASN1_TIME *tm);
617
+
618
+ // X509_CRL_set1_nextUpdate sets |crl|'s nextUpdate time to |tm|. It returns one
619
+ // on success and zero on error.
620
+ OPENSSL_EXPORT int X509_CRL_set1_nextUpdate(X509_CRL *crl, const ASN1_TIME *tm);
621
+
622
+ // X509_CRL_delete_ext removes the extension in |x| at index |loc| and returns
623
+ // the removed extension, or NULL if |loc| was out of bounds. If non-NULL, the
624
+ // caller must release the result with |X509_EXTENSION_free|.
625
+ OPENSSL_EXPORT X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc);
626
+
627
+ // X509_CRL_add_ext adds a copy of |ex| to |x|. It returns one on success and
628
+ // zero on failure. The caller retains ownership of |ex| and can release it
629
+ // independently of |x|.
630
+ //
631
+ // The new extension is inserted at index |loc|, shifting extensions to the
632
+ // right. If |loc| is -1 or out of bounds, the new extension is appended to the
633
+ // list.
634
+ OPENSSL_EXPORT int X509_CRL_add_ext(X509_CRL *x, const X509_EXTENSION *ex,
635
+ int loc);
636
+
637
+ // X509_CRL_sign signs |crl| with |pkey| and replaces the signature algorithm
638
+ // and signature fields. It returns the length of the signature on success and
639
+ // zero on error. This function uses digest algorithm |md|, or |pkey|'s default
640
+ // if NULL. Other signing parameters use |pkey|'s defaults. To customize them,
641
+ // use |X509_CRL_sign_ctx|.
642
+ OPENSSL_EXPORT int X509_CRL_sign(X509_CRL *crl, EVP_PKEY *pkey,
643
+ const EVP_MD *md);
644
+
645
+ // X509_CRL_sign_ctx signs |crl| with |ctx| and replaces the signature algorithm
646
+ // and signature fields. It returns the length of the signature on success and
647
+ // zero on error. The signature algorithm and parameters come from |ctx|, which
648
+ // must have been initialized with |EVP_DigestSignInit|. The caller should
649
+ // configure the corresponding |EVP_PKEY_CTX| before calling this function.
650
+ OPENSSL_EXPORT int X509_CRL_sign_ctx(X509_CRL *crl, EVP_MD_CTX *ctx);
651
+
652
+ // i2d_re_X509_CRL_tbs serializes the TBSCertList portion of |crl|, as described
653
+ // in |i2d_SAMPLE|.
654
+ //
655
+ // This function re-encodes the TBSCertList and may not reflect |crl|'s original
656
+ // encoding. It may be used to manually generate a signature for a new CRL. To
657
+ // verify CRLs, use |i2d_X509_CRL_tbs| instead.
658
+ OPENSSL_EXPORT int i2d_re_X509_CRL_tbs(X509_CRL *crl, unsigned char **outp);
659
+
660
+ // X509_CRL_set1_signature_algo sets |crl|'s signature algorithm to |algo| and
661
+ // returns one on success or zero on error. It updates both the signature field
662
+ // of the TBSCertList structure, and the signatureAlgorithm field of the CRL.
663
+ OPENSSL_EXPORT int X509_CRL_set1_signature_algo(X509_CRL *crl,
664
+ const X509_ALGOR *algo);
665
+
666
+ // X509_CRL_set1_signature_value sets |crl|'s signature to a copy of the
667
+ // |sig_len| bytes pointed by |sig|. It returns one on success and zero on
668
+ // error.
669
+ //
670
+ // Due to a specification error, X.509 CRLs store signatures in ASN.1 BIT
671
+ // STRINGs, but signature algorithms return byte strings rather than bit
672
+ // strings. This function creates a BIT STRING containing a whole number of
673
+ // bytes, with the bit order matching the DER encoding. This matches the
674
+ // encoding used by all X.509 signature algorithms.
675
+ OPENSSL_EXPORT int X509_CRL_set1_signature_value(X509_CRL *crl,
676
+ const uint8_t *sig,
677
+ size_t sig_len);
678
+
679
+
680
+ // Certificate requests.
681
+ //
682
+ // An |X509_REQ| represents a PKCS #10 certificate request (RFC 2986). These are
683
+ // also referred to as certificate signing requests or CSRs. CSRs are a common
684
+ // format used to request a certificate from a CA.
685
+ //
686
+ // Although an |X509_REQ| is a mutable object, mutating an |X509_REQ| can give
687
+ // incorrect results. Callers typically obtain |X509_REQ|s by parsing some input
688
+ // with |d2i_X509_REQ|, etc. Such objects carry information such as the
689
+ // serialized CertificationRequestInfo, which will become inconsistent when
690
+ // mutated.
691
+ //
692
+ // Instead, mutation functions should only be used when issuing new CRLs, as
693
+ // described in a later section.
694
+
695
+ // X509_REQ is an |ASN1_ITEM| whose ASN.1 type is CertificateRequest (RFC 2986)
696
+ // and C type is |X509_REQ*|.
697
+ DECLARE_ASN1_ITEM(X509_REQ)
698
+
699
+ // X509_REQ_dup returns a newly-allocated copy of |req|, or NULL on error. This
700
+ // function works by serializing the structure, so if |req| is incomplete, it
701
+ // may fail.
702
+ //
703
+ // TODO(https://crbug.com/boringssl/407): This function should be const and
704
+ // thread-safe but is currently neither in some cases, notably if |req| was
705
+ // mutated.
706
+ OPENSSL_EXPORT X509_REQ *X509_REQ_dup(X509_REQ *req);
707
+
708
+ // X509_REQ_free releases memory associated with |req|.
709
+ OPENSSL_EXPORT void X509_REQ_free(X509_REQ *req);
710
+
711
+ // d2i_X509_REQ parses up to |len| bytes from |*inp| as a DER-encoded
712
+ // CertificateRequest (RFC 2986), as described in |d2i_SAMPLE|.
713
+ OPENSSL_EXPORT X509_REQ *d2i_X509_REQ(X509_REQ **out, const uint8_t **inp,
714
+ long len);
715
+
716
+ // i2d_X509_REQ marshals |req| as a CertificateRequest (RFC 2986), as described
717
+ // in |i2d_SAMPLE|.
718
+ //
719
+ // TODO(https://crbug.com/boringssl/407): This function should be const and
720
+ // thread-safe but is currently neither in some cases, notably if |req| was
721
+ // mutated.
722
+ OPENSSL_EXPORT int i2d_X509_REQ(X509_REQ *req, uint8_t **outp);
723
+
724
+ // X509_REQ_VERSION_1 is the version constant for |X509_REQ| objects. No other
725
+ // versions are defined.
726
+ #define X509_REQ_VERSION_1 0
727
+
728
+ // X509_REQ_get_version returns the numerical value of |req|'s version. This
729
+ // will always be |X509_REQ_VERSION_1| for valid CSRs. For compatibility,
730
+ // |d2i_X509_REQ| also accepts some invalid version numbers, in which case this
731
+ // function may return other values.
732
+ OPENSSL_EXPORT long X509_REQ_get_version(const X509_REQ *req);
733
+
734
+ // X509_REQ_get_subject_name returns |req|'s subject name. Note this function is
735
+ // not const-correct for legacy reasons.
736
+ OPENSSL_EXPORT X509_NAME *X509_REQ_get_subject_name(const X509_REQ *req);
737
+
738
+ // X509_REQ_get_pubkey returns |req|'s public key as an |EVP_PKEY|, or NULL if
739
+ // the public key was unsupported or could not be decoded. This function returns
740
+ // a reference to the |EVP_PKEY|. The caller must release the result with
741
+ // |EVP_PKEY_free| when done.
742
+ OPENSSL_EXPORT EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req);
743
+
744
+ // X509_REQ_get_attr_count returns the number of attributes in |req|.
745
+ OPENSSL_EXPORT int X509_REQ_get_attr_count(const X509_REQ *req);
746
+
747
+ // X509_REQ_get_attr returns the attribute at index |loc| in |req|, or NULL if
748
+ // out of bounds.
749
+ OPENSSL_EXPORT X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc);
750
+
751
+ // X509_REQ_get_attr_by_NID returns the index of the attribute in |req| of type
752
+ // |nid|, or a negative number if not found. If found, callers can use
753
+ // |X509_REQ_get_attr| to look up the attribute by index.
754
+ //
755
+ // If |lastpos| is non-negative, it begins searching at |lastpos| + 1. Callers
756
+ // can thus loop over all matching attributes by first passing -1 and then
757
+ // passing the previously-returned value until no match is returned.
758
+ OPENSSL_EXPORT int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid,
759
+ int lastpos);
760
+
761
+ // X509_REQ_get_attr_by_OBJ behaves like |X509_REQ_get_attr_by_NID| but looks
762
+ // for attributes of type |obj|.
763
+ OPENSSL_EXPORT int X509_REQ_get_attr_by_OBJ(const X509_REQ *req,
764
+ const ASN1_OBJECT *obj,
765
+ int lastpos);
766
+
767
+ // X509_REQ_extension_nid returns one if |nid| is a supported CSR attribute type
768
+ // for carrying extensions and zero otherwise. The supported types are
769
+ // |NID_ext_req| (pkcs-9-at-extensionRequest from RFC 2985) and |NID_ms_ext_req|
770
+ // (a Microsoft szOID_CERT_EXTENSIONS variant).
771
+ OPENSSL_EXPORT int X509_REQ_extension_nid(int nid);
772
+
773
+ // X509_REQ_get_extensions decodes the list of requested extensions in |req| and
774
+ // returns a newly-allocated |STACK_OF(X509_EXTENSION)| containing the result.
775
+ // It returns NULL on error, or if |req| did not request extensions.
776
+ //
777
+ // CSRs do not store extensions directly. Instead there are attribute types
778
+ // which are defined to hold extensions. See |X509_REQ_extension_nid|. This
779
+ // function supports both pkcs-9-at-extensionRequest from RFC 2985 and the
780
+ // Microsoft szOID_CERT_EXTENSIONS variant. If both are present,
781
+ // pkcs-9-at-extensionRequest is preferred.
782
+ OPENSSL_EXPORT STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req);
783
+
784
+ // X509_REQ_get0_signature sets |*out_sig| and |*out_alg| to the signature and
785
+ // signature algorithm of |req|, respectively. Either output pointer may be NULL
786
+ // to ignore the value.
787
+ OPENSSL_EXPORT void X509_REQ_get0_signature(const X509_REQ *req,
788
+ const ASN1_BIT_STRING **out_sig,
789
+ const X509_ALGOR **out_alg);
790
+
791
+ // X509_REQ_get_signature_nid returns the NID corresponding to |req|'s signature
792
+ // algorithm, or |NID_undef| if the signature algorithm does not correspond to
793
+ // a known NID.
794
+ OPENSSL_EXPORT int X509_REQ_get_signature_nid(const X509_REQ *req);
795
+
796
+ // X509_REQ_verify checks that |req| has a valid signature by |pkey|. It returns
797
+ // one if the signature is valid and zero otherwise.
798
+ OPENSSL_EXPORT int X509_REQ_verify(X509_REQ *req, EVP_PKEY *pkey);
799
+
800
+
801
+ // Issuing certificate requests.
802
+ //
803
+ // An |X509_REQ| object may also represent an incomplete CSR. Callers may
804
+ // construct empty |X509_REQ| objects, fill in fields individually, and finally
805
+ // sign the result. The following functions may be used for this purpose.
806
+
807
+ // X509_REQ_new returns a newly-allocated, empty |X509_REQ| object, or NULL on
808
+ // error. This object may be filled in and then signed to construct a CSR.
809
+ OPENSSL_EXPORT X509_REQ *X509_REQ_new(void);
810
+
811
+ // X509_REQ_set_version sets |req|'s version to |version|, which should be
812
+ // |X509_REQ_VERSION_1|. It returns one on success and zero on error.
813
+ //
814
+ // The only defined CSR version is |X509_REQ_VERSION_1|, so there is no need to
815
+ // call this function.
816
+ OPENSSL_EXPORT int X509_REQ_set_version(X509_REQ *req, long version);
817
+
818
+ // X509_REQ_set_subject_name sets |req|'s subject to a copy of |name|. It
819
+ // returns one on success and zero on error.
820
+ OPENSSL_EXPORT int X509_REQ_set_subject_name(X509_REQ *req, X509_NAME *name);
821
+
822
+ // X509_REQ_set_pubkey sets |req|'s public key to |pkey|. It returns one on
823
+ // success and zero on error. This function does not take ownership of |pkey|
824
+ // and internally copies and updates reference counts as needed.
825
+ OPENSSL_EXPORT int X509_REQ_set_pubkey(X509_REQ *req, EVP_PKEY *pkey);
826
+
827
+ // X509_REQ_delete_attr removes the attribute at index |loc| in |req|. It
828
+ // returns the removed attribute to the caller, or NULL if |loc| was out of
829
+ // bounds. If non-NULL, the caller must release the result with
830
+ // |X509_ATTRIBUTE_free| when done. It is also safe, but not necessary, to call
831
+ // |X509_ATTRIBUTE_free| if the result is NULL.
832
+ OPENSSL_EXPORT X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc);
833
+
834
+ // X509_REQ_add1_attr appends a copy of |attr| to |req|'s list of attributes. It
835
+ // returns one on success and zero on error.
836
+ OPENSSL_EXPORT int X509_REQ_add1_attr(X509_REQ *req,
837
+ const X509_ATTRIBUTE *attr);
838
+
839
+ // X509_REQ_add1_attr_by_OBJ appends a new attribute to |req| with type |obj|.
840
+ // It returns one on success and zero on error. The value is determined by
841
+ // |X509_ATTRIBUTE_set1_data|.
842
+ //
843
+ // WARNING: The interpretation of |attrtype|, |data|, and |len| is complex and
844
+ // error-prone. See |X509_ATTRIBUTE_set1_data| for details.
845
+ OPENSSL_EXPORT int X509_REQ_add1_attr_by_OBJ(X509_REQ *req,
846
+ const ASN1_OBJECT *obj,
847
+ int attrtype,
848
+ const unsigned char *data,
849
+ int len);
850
+
851
+ // X509_REQ_add1_attr_by_NID behaves like |X509_REQ_add1_attr_by_OBJ| except the
852
+ // attribute type is determined by |nid|.
853
+ OPENSSL_EXPORT int X509_REQ_add1_attr_by_NID(X509_REQ *req, int nid,
854
+ int attrtype,
855
+ const unsigned char *data,
856
+ int len);
857
+
858
+ // X509_REQ_add1_attr_by_txt behaves like |X509_REQ_add1_attr_by_OBJ| except the
859
+ // attribute type is determined by calling |OBJ_txt2obj| with |attrname|.
860
+ OPENSSL_EXPORT int X509_REQ_add1_attr_by_txt(X509_REQ *req,
861
+ const char *attrname, int attrtype,
862
+ const unsigned char *data,
863
+ int len);
864
+
865
+ // X509_REQ_add_extensions_nid adds an attribute to |req| of type |nid|, to
866
+ // request the certificate extensions in |exts|. It returns one on success and
867
+ // zero on error. |nid| should be |NID_ext_req| or |NID_ms_ext_req|.
868
+ OPENSSL_EXPORT int X509_REQ_add_extensions_nid(
869
+ X509_REQ *req, const STACK_OF(X509_EXTENSION) *exts, int nid);
870
+
871
+ // X509_REQ_add_extensions behaves like |X509_REQ_add_extensions_nid|, using the
872
+ // standard |NID_ext_req| for the attribute type.
873
+ OPENSSL_EXPORT int X509_REQ_add_extensions(
874
+ X509_REQ *req, const STACK_OF(X509_EXTENSION) *exts);
875
+
876
+ // X509_REQ_sign signs |req| with |pkey| and replaces the signature algorithm
877
+ // and signature fields. It returns the length of the signature on success and
878
+ // zero on error. This function uses digest algorithm |md|, or |pkey|'s default
879
+ // if NULL. Other signing parameters use |pkey|'s defaults. To customize them,
880
+ // use |X509_REQ_sign_ctx|.
881
+ OPENSSL_EXPORT int X509_REQ_sign(X509_REQ *req, EVP_PKEY *pkey,
882
+ const EVP_MD *md);
883
+
884
+ // X509_REQ_sign_ctx signs |req| with |ctx| and replaces the signature algorithm
885
+ // and signature fields. It returns the length of the signature on success and
886
+ // zero on error. The signature algorithm and parameters come from |ctx|, which
887
+ // must have been initialized with |EVP_DigestSignInit|. The caller should
888
+ // configure the corresponding |EVP_PKEY_CTX| before calling this function.
889
+ OPENSSL_EXPORT int X509_REQ_sign_ctx(X509_REQ *req, EVP_MD_CTX *ctx);
890
+
891
+ // i2d_re_X509_REQ_tbs serializes the CertificationRequestInfo (see RFC 2986)
892
+ // portion of |req|, as described in |i2d_SAMPLE|.
893
+ //
894
+ // This function re-encodes the CertificationRequestInfo and may not reflect
895
+ // |req|'s original encoding. It may be used to manually generate a signature
896
+ // for a new certificate request.
897
+ OPENSSL_EXPORT int i2d_re_X509_REQ_tbs(X509_REQ *req, uint8_t **outp);
898
+
899
+ // X509_REQ_set1_signature_algo sets |req|'s signature algorithm to |algo| and
900
+ // returns one on success or zero on error.
901
+ OPENSSL_EXPORT int X509_REQ_set1_signature_algo(X509_REQ *req,
902
+ const X509_ALGOR *algo);
903
+
904
+ // X509_REQ_set1_signature_value sets |req|'s signature to a copy of the
905
+ // |sig_len| bytes pointed by |sig|. It returns one on success and zero on
906
+ // error.
907
+ //
908
+ // Due to a specification error, PKCS#10 certificate requests store signatures
909
+ // in ASN.1 BIT STRINGs, but signature algorithms return byte strings rather
910
+ // than bit strings. This function creates a BIT STRING containing a whole
911
+ // number of bytes, with the bit order matching the DER encoding. This matches
912
+ // the encoding used by all X.509 signature algorithms.
913
+ OPENSSL_EXPORT int X509_REQ_set1_signature_value(X509_REQ *req,
914
+ const uint8_t *sig,
915
+ size_t sig_len);
916
+
917
+
918
+ // Names.
919
+ //
920
+ // An |X509_NAME| represents an X.509 Name structure (RFC 5280). X.509 names are
921
+ // a complex, hierarchical structure over a collection of attributes. Each name
922
+ // is sequence of relative distinguished names (RDNs), decreasing in
923
+ // specificity. For example, the first RDN may specify the country, while the
924
+ // next RDN may specify a locality. Each RDN is, itself, a set of attributes.
925
+ // Having more than one attribute in an RDN is uncommon, but possible. Within an
926
+ // RDN, attributes have the same level in specificity. Attribute types are
927
+ // OBJECT IDENTIFIERs. This determines the ASN.1 type of the value, which is
928
+ // commonly a string but may be other types.
929
+ //
930
+ // The |X509_NAME| representation flattens this two-level structure into a
931
+ // single list of attributes. Each attribute is stored in an |X509_NAME_ENTRY|,
932
+ // with also maintains the index of the RDN it is part of, accessible via
933
+ // |X509_NAME_ENTRY_set|. This can be used to recover the two-level structure.
934
+ //
935
+ // X.509 names are largely vestigial. Historically, DNS names were parsed out of
936
+ // the subject's common name attribute, but this is deprecated and has since
937
+ // moved to the subject alternative name extension. In modern usage, X.509 names
938
+ // are primarily opaque identifiers to link a certificate with its issuer.
939
+
940
+ DEFINE_STACK_OF(X509_NAME_ENTRY)
941
+ DEFINE_STACK_OF(X509_NAME)
942
+
943
+ // X509_NAME is an |ASN1_ITEM| whose ASN.1 type is X.509 Name (RFC 5280) and C
944
+ // type is |X509_NAME*|.
945
+ DECLARE_ASN1_ITEM(X509_NAME)
946
+
947
+ // X509_NAME_new returns a new, empty |X509_NAME_new|, or NULL on
948
+ // error.
949
+ OPENSSL_EXPORT X509_NAME *X509_NAME_new(void);
950
+
951
+ // X509_NAME_free releases memory associated with |name|.
952
+ OPENSSL_EXPORT void X509_NAME_free(X509_NAME *name);
953
+
954
+ // d2i_X509_NAME parses up to |len| bytes from |*inp| as a DER-encoded X.509
955
+ // Name (RFC 5280), as described in |d2i_SAMPLE|.
956
+ OPENSSL_EXPORT X509_NAME *d2i_X509_NAME(X509_NAME **out, const uint8_t **inp,
957
+ long len);
958
+
959
+ // i2d_X509_NAME marshals |in| as a DER-encoded X.509 Name (RFC 5280), as
960
+ // described in |i2d_SAMPLE|.
961
+ //
962
+ // TODO(https://crbug.com/boringssl/407): This function should be const and
963
+ // thread-safe but is currently neither in some cases, notably if |in| was
964
+ // mutated.
965
+ OPENSSL_EXPORT int i2d_X509_NAME(X509_NAME *in, uint8_t **outp);
966
+
967
+ // X509_NAME_dup returns a newly-allocated copy of |name|, or NULL on error.
968
+ //
969
+ // TODO(https://crbug.com/boringssl/407): This function should be const and
970
+ // thread-safe but is currently neither in some cases, notably if |name| was
971
+ // mutated.
972
+ OPENSSL_EXPORT X509_NAME *X509_NAME_dup(X509_NAME *name);
973
+
974
+ // X509_NAME_get0_der sets |*out_der| and |*out_der_len|
975
+ //
976
+ // Avoid this function and prefer |i2d_X509_NAME|. It is one of the reasons
977
+ // these functions are not consistently thread-safe or const-correct. Depending
978
+ // on the resolution of https://crbug.com/boringssl/407, this function may be
979
+ // removed or cause poor performance.
980
+ OPENSSL_EXPORT int X509_NAME_get0_der(X509_NAME *name, const uint8_t **out_der,
981
+ size_t *out_der_len);
982
+
983
+ // X509_NAME_set makes a copy of |name|. On success, it frees |*xn|, sets |*xn|
984
+ // to the copy, and returns one. Otherwise, it returns zero.
985
+ //
986
+ // TODO(https://crbug.com/boringssl/407): This function should be const and
987
+ // thread-safe but is currently neither in some cases, notably if |name| was
988
+ // mutated.
989
+ OPENSSL_EXPORT int X509_NAME_set(X509_NAME **xn, X509_NAME *name);
990
+
991
+ // X509_NAME_entry_count returns the number of entries in |name|.
992
+ OPENSSL_EXPORT int X509_NAME_entry_count(const X509_NAME *name);
993
+
994
+ // X509_NAME_get_index_by_NID returns the zero-based index of the first
995
+ // attribute in |name| with type |nid|, or -1 if there is none. |nid| should be
996
+ // one of the |NID_*| constants. If |lastpos| is non-negative, it begins
997
+ // searching at |lastpos+1|. To search all attributes, pass in -1, not zero.
998
+ //
999
+ // Indices from this function refer to |X509_NAME|'s flattened representation.
1000
+ OPENSSL_EXPORT int X509_NAME_get_index_by_NID(const X509_NAME *name, int nid,
1001
+ int lastpos);
1002
+
1003
+ // X509_NAME_get_index_by_OBJ behaves like |X509_NAME_get_index_by_NID| but
1004
+ // looks for attributes with type |obj|.
1005
+ OPENSSL_EXPORT int X509_NAME_get_index_by_OBJ(const X509_NAME *name,
1006
+ const ASN1_OBJECT *obj,
1007
+ int lastpos);
1008
+
1009
+ // X509_NAME_get_entry returns the attribute in |name| at index |loc|, or NULL
1010
+ // if |loc| is out of range. |loc| is interpreted using |X509_NAME|'s flattened
1011
+ // representation. This function returns a non-const pointer for OpenSSL
1012
+ // compatibility, but callers should not mutate the result. Doing so will break
1013
+ // internal invariants in the library.
1014
+ OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_get_entry(const X509_NAME *name,
1015
+ int loc);
1016
+
1017
+ // X509_NAME_delete_entry removes and returns the attribute in |name| at index
1018
+ // |loc|, or NULL if |loc| is out of range. |loc| is interpreted using
1019
+ // |X509_NAME|'s flattened representation. If the attribute is found, the caller
1020
+ // is responsible for releasing the result with |X509_NAME_ENTRY_free|.
1021
+ //
1022
+ // This function will internally update RDN indices (see |X509_NAME_ENTRY_set|)
1023
+ // so they continue to be consecutive.
1024
+ OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name,
1025
+ int loc);
1026
+
1027
+ // X509_NAME_add_entry adds a copy of |entry| to |name| and returns one on
1028
+ // success or zero on error. If |loc| is -1, the entry is appended to |name|.
1029
+ // Otherwise, it is inserted at index |loc|. If |set| is -1, the entry is added
1030
+ // to the previous entry's RDN. If it is 0, the entry becomes a singleton RDN.
1031
+ // If 1, it is added to next entry's RDN.
1032
+ //
1033
+ // This function will internally update RDN indices (see |X509_NAME_ENTRY_set|)
1034
+ // so they continue to be consecutive.
1035
+ OPENSSL_EXPORT int X509_NAME_add_entry(X509_NAME *name,
1036
+ const X509_NAME_ENTRY *entry, int loc,
1037
+ int set);
1038
+
1039
+ // X509_NAME_add_entry_by_OBJ adds a new entry to |name| and returns one on
1040
+ // success or zero on error. The entry's attribute type is |obj|. The entry's
1041
+ // attribute value is determined by |type|, |bytes|, and |len|, as in
1042
+ // |X509_NAME_ENTRY_set_data|. The entry's position is determined by |loc| and
1043
+ // |set| as in |X509_NAME_add_entry|.
1044
+ OPENSSL_EXPORT int X509_NAME_add_entry_by_OBJ(X509_NAME *name,
1045
+ const ASN1_OBJECT *obj, int type,
1046
+ const uint8_t *bytes,
1047
+ ossl_ssize_t len, int loc,
1048
+ int set);
1049
+
1050
+ // X509_NAME_add_entry_by_NID behaves like |X509_NAME_add_entry_by_OBJ| but sets
1051
+ // the entry's attribute type to |nid|, which should be one of the |NID_*|
1052
+ // constants.
1053
+ OPENSSL_EXPORT int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid,
1054
+ int type, const uint8_t *bytes,
1055
+ ossl_ssize_t len, int loc,
1056
+ int set);
1057
+
1058
+ // X509_NAME_add_entry_by_txt behaves like |X509_NAME_add_entry_by_OBJ| but sets
1059
+ // the entry's attribute type to |field|, which is passed to |OBJ_txt2obj|.
1060
+ OPENSSL_EXPORT int X509_NAME_add_entry_by_txt(X509_NAME *name,
1061
+ const char *field, int type,
1062
+ const uint8_t *bytes,
1063
+ ossl_ssize_t len, int loc,
1064
+ int set);
1065
+
1066
+ // X509_NAME_ENTRY is an |ASN1_ITEM| whose ASN.1 type is AttributeTypeAndValue
1067
+ // (RFC 5280) and C type is |X509_NAME_ENTRY*|.
1068
+ DECLARE_ASN1_ITEM(X509_NAME_ENTRY)
1069
+
1070
+ // X509_NAME_ENTRY_new returns a new, empty |X509_NAME_ENTRY_new|, or NULL on
1071
+ // error.
1072
+ OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_new(void);
1073
+
1074
+ // X509_NAME_ENTRY_free releases memory associated with |entry|.
1075
+ OPENSSL_EXPORT void X509_NAME_ENTRY_free(X509_NAME_ENTRY *entry);
1076
+
1077
+ // d2i_X509_NAME_ENTRY parses up to |len| bytes from |*inp| as a DER-encoded
1078
+ // AttributeTypeAndValue (RFC 5280), as described in |d2i_SAMPLE|.
1079
+ OPENSSL_EXPORT X509_NAME_ENTRY *d2i_X509_NAME_ENTRY(X509_NAME_ENTRY **out,
1080
+ const uint8_t **inp,
1081
+ long len);
1082
+
1083
+ // i2d_X509_NAME_ENTRY marshals |in| as a DER-encoded AttributeTypeAndValue (RFC
1084
+ // 5280), as described in |i2d_SAMPLE|.
1085
+ OPENSSL_EXPORT int i2d_X509_NAME_ENTRY(const X509_NAME_ENTRY *in,
1086
+ uint8_t **outp);
1087
+
1088
+ // X509_NAME_ENTRY_dup returns a newly-allocated copy of |entry|, or NULL on
1089
+ // error.
1090
+ OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_dup(
1091
+ const X509_NAME_ENTRY *entry);
1092
+
1093
+ // X509_NAME_ENTRY_get_object returns |entry|'s attribute type. This function
1094
+ // returns a non-const pointer for OpenSSL compatibility, but callers should not
1095
+ // mutate the result. Doing so will break internal invariants in the library.
1096
+ OPENSSL_EXPORT ASN1_OBJECT *X509_NAME_ENTRY_get_object(
1097
+ const X509_NAME_ENTRY *entry);
1098
+
1099
+ // X509_NAME_ENTRY_set_object sets |entry|'s attribute type to |obj|. It returns
1100
+ // one on success and zero on error.
1101
+ OPENSSL_EXPORT int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *entry,
1102
+ const ASN1_OBJECT *obj);
1103
+
1104
+ // X509_NAME_ENTRY_get_data returns |entry|'s attribute value, represented as an
1105
+ // |ASN1_STRING|. This value may have any ASN.1 type, so callers must check the
1106
+ // type before interpreting the contents. This function returns a non-const
1107
+ // pointer for OpenSSL compatibility, but callers should not mutate the result.
1108
+ // Doing so will break internal invariants in the library.
1109
+ //
1110
+ // TODO(https://crbug.com/boringssl/412): Although the spec says any ASN.1 type
1111
+ // is allowed, we currently only allow an ad-hoc set of types. Additionally, it
1112
+ // is unclear if some types can even be represented by this function.
1113
+ OPENSSL_EXPORT ASN1_STRING *X509_NAME_ENTRY_get_data(
1114
+ const X509_NAME_ENTRY *entry);
1115
+
1116
+ // X509_NAME_ENTRY_set_data sets |entry|'s value to |len| bytes from |bytes|. It
1117
+ // returns one on success and zero on error. If |len| is -1, |bytes| must be a
1118
+ // NUL-terminated C string and the length is determined by |strlen|. |bytes| is
1119
+ // converted to an ASN.1 type as follows:
1120
+ //
1121
+ // If |type| is a |MBSTRING_*| constant, the value is an ASN.1 string. The
1122
+ // string is determined by decoding |bytes| in the encoding specified by |type|,
1123
+ // and then re-encoding it in a form appropriate for |entry|'s attribute type.
1124
+ // See |ASN1_STRING_set_by_NID| for details.
1125
+ //
1126
+ // Otherwise, the value is an |ASN1_STRING| with type |type| and value |bytes|.
1127
+ // See |ASN1_STRING| for how to format ASN.1 types as an |ASN1_STRING|. If
1128
+ // |type| is |V_ASN1_UNDEF| the previous |ASN1_STRING| type is reused.
1129
+ OPENSSL_EXPORT int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *entry, int type,
1130
+ const uint8_t *bytes,
1131
+ ossl_ssize_t len);
1132
+
1133
+ // X509_NAME_ENTRY_set returns the zero-based index of the RDN which contains
1134
+ // |entry|. Consecutive entries with the same index are part of the same RDN.
1135
+ OPENSSL_EXPORT int X509_NAME_ENTRY_set(const X509_NAME_ENTRY *entry);
1136
+
1137
+ // X509_NAME_ENTRY_create_by_OBJ creates a new |X509_NAME_ENTRY| with attribute
1138
+ // type |obj|. The attribute value is determined from |type|, |bytes|, and |len|
1139
+ // as in |X509_NAME_ENTRY_set_data|. It returns the |X509_NAME_ENTRY| on success
1140
+ // and NULL on error.
1141
+ //
1142
+ // If |out| is non-NULL and |*out| is NULL, it additionally sets |*out| to the
1143
+ // result on success. If both |out| and |*out| are non-NULL, it updates the
1144
+ // object at |*out| instead of allocating a new one.
1145
+ OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(
1146
+ X509_NAME_ENTRY **out, const ASN1_OBJECT *obj, int type,
1147
+ const uint8_t *bytes, ossl_ssize_t len);
1148
+
1149
+ // X509_NAME_ENTRY_create_by_NID behaves like |X509_NAME_ENTRY_create_by_OBJ|
1150
+ // except the attribute type is |nid|, which should be one of the |NID_*|
1151
+ // constants.
1152
+ OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(
1153
+ X509_NAME_ENTRY **out, int nid, int type, const uint8_t *bytes,
1154
+ ossl_ssize_t len);
1155
+
1156
+ // X509_NAME_ENTRY_create_by_txt behaves like |X509_NAME_ENTRY_create_by_OBJ|
1157
+ // except the attribute type is |field|, which is passed to |OBJ_txt2obj|.
1158
+ OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(
1159
+ X509_NAME_ENTRY **out, const char *field, int type, const uint8_t *bytes,
1160
+ ossl_ssize_t len);
1161
+
1162
+
1163
+ // Extensions.
1164
+ //
1165
+ // X.509 certificates and CRLs may contain a list of extensions (RFC 5280).
1166
+ // Extensions have a type, specified by an object identifier (|ASN1_OBJECT|) and
1167
+ // a byte string value, which should a DER-encoded structure whose type is
1168
+ // determined by the extension type. This library represents extensions with the
1169
+ // |X509_EXTENSION| type.
1170
+
1171
+ // X509_EXTENSION is an |ASN1_ITEM| whose ASN.1 type is X.509 Extension (RFC
1172
+ // 5280) and C type is |X509_EXTENSION*|.
1173
+ DECLARE_ASN1_ITEM(X509_EXTENSION)
1174
+
1175
+ // X509_EXTENSION_new returns a newly-allocated, empty |X509_EXTENSION| object
1176
+ // or NULL on error.
1177
+ OPENSSL_EXPORT X509_EXTENSION *X509_EXTENSION_new(void);
1178
+
1179
+ // X509_EXTENSION_free releases memory associated with |ex|.
1180
+ OPENSSL_EXPORT void X509_EXTENSION_free(X509_EXTENSION *ex);
1181
+
1182
+ // d2i_X509_EXTENSION parses up to |len| bytes from |*inp| as a DER-encoded
1183
+ // X.509 Extension (RFC 5280), as described in |d2i_SAMPLE|.
1184
+ OPENSSL_EXPORT X509_EXTENSION *d2i_X509_EXTENSION(X509_EXTENSION **out,
1185
+ const uint8_t **inp,
1186
+ long len);
1187
+
1188
+ // i2d_X509_EXTENSION marshals |ex| as a DER-encoded X.509 Extension (RFC
1189
+ // 5280), as described in |i2d_SAMPLE|.
1190
+ OPENSSL_EXPORT int i2d_X509_EXTENSION(const X509_EXTENSION *ex, uint8_t **outp);
1191
+
1192
+ // X509_EXTENSION_dup returns a newly-allocated copy of |ex|, or NULL on error.
1193
+ // This function works by serializing the structure, so if |ex| is incomplete,
1194
+ // it may fail.
1195
+ OPENSSL_EXPORT X509_EXTENSION *X509_EXTENSION_dup(const X509_EXTENSION *ex);
1196
+
1197
+ // X509_EXTENSION_create_by_NID creates a new |X509_EXTENSION| with type |nid|,
1198
+ // value |data|, and critical bit |crit|. It returns an |X509_EXTENSION| on
1199
+ // success, and NULL on error. |nid| should be a |NID_*| constant.
1200
+ //
1201
+ // If |ex| and |*ex| are both non-NULL, |*ex| is used to hold the result,
1202
+ // otherwise a new object is allocated. If |ex| is non-NULL and |*ex| is NULL,
1203
+ // the function sets |*ex| to point to the newly allocated result, in addition
1204
+ // to returning the result.
1205
+ OPENSSL_EXPORT X509_EXTENSION *X509_EXTENSION_create_by_NID(
1206
+ X509_EXTENSION **ex, int nid, int crit, const ASN1_OCTET_STRING *data);
1207
+
1208
+ // X509_EXTENSION_create_by_OBJ behaves like |X509_EXTENSION_create_by_NID|, but
1209
+ // the extension type is determined by an |ASN1_OBJECT|.
1210
+ OPENSSL_EXPORT X509_EXTENSION *X509_EXTENSION_create_by_OBJ(
1211
+ X509_EXTENSION **ex, const ASN1_OBJECT *obj, int crit,
1212
+ const ASN1_OCTET_STRING *data);
1213
+
1214
+ // X509_EXTENSION_get_object returns |ex|'s extension type. This function
1215
+ // returns a non-const pointer for OpenSSL compatibility, but callers should not
1216
+ // mutate the result.
1217
+ OPENSSL_EXPORT ASN1_OBJECT *X509_EXTENSION_get_object(const X509_EXTENSION *ex);
1218
+
1219
+ // X509_EXTENSION_get_data returns |ne|'s extension value. This function returns
1220
+ // a non-const pointer for OpenSSL compatibility, but callers should not mutate
1221
+ // the result.
1222
+ OPENSSL_EXPORT ASN1_OCTET_STRING *X509_EXTENSION_get_data(
1223
+ const X509_EXTENSION *ne);
1224
+
1225
+ // X509_EXTENSION_get_critical returns one if |ex| is critical and zero
1226
+ // otherwise.
1227
+ OPENSSL_EXPORT int X509_EXTENSION_get_critical(const X509_EXTENSION *ex);
1228
+
1229
+ // X509_EXTENSION_set_object sets |ex|'s extension type to |obj|. It returns one
1230
+ // on success and zero on error.
1231
+ OPENSSL_EXPORT int X509_EXTENSION_set_object(X509_EXTENSION *ex,
1232
+ const ASN1_OBJECT *obj);
1233
+
1234
+ // X509_EXTENSION_set_critical sets |ex| to critical if |crit| is non-zero and
1235
+ // to non-critical if |crit| is zero.
1236
+ OPENSSL_EXPORT int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit);
1237
+
1238
+ // X509_EXTENSION_set_data set's |ex|'s extension value to a copy of |data|. It
1239
+ // returns one on success and zero on error.
1240
+ OPENSSL_EXPORT int X509_EXTENSION_set_data(X509_EXTENSION *ex,
1241
+ const ASN1_OCTET_STRING *data);
1242
+
1243
+
1244
+ // Extension lists.
1245
+ //
1246
+ // The following functions manipulate lists of extensions. Most of them have
1247
+ // corresponding functions on the containing |X509|, |X509_CRL|, or
1248
+ // |X509_REVOKED|.
1249
+
1250
+ DEFINE_STACK_OF(X509_EXTENSION)
1251
+ typedef STACK_OF(X509_EXTENSION) X509_EXTENSIONS;
1252
+
1253
+ // X509_EXTENSIONS is an |ASN1_ITEM| whose ASN.1 type is SEQUENCE of Extension
1254
+ // (RFC 5280) and C type is |STACK_OF(X509_EXTENSION)*|.
1255
+ DECLARE_ASN1_ITEM(X509_EXTENSIONS)
1256
+
1257
+ // d2i_X509_EXTENSIONS parses up to |len| bytes from |*inp| as a DER-encoded
1258
+ // SEQUENCE OF Extension (RFC 5280), as described in |d2i_SAMPLE|.
1259
+ OPENSSL_EXPORT X509_EXTENSIONS *d2i_X509_EXTENSIONS(X509_EXTENSIONS **out,
1260
+ const uint8_t **inp,
1261
+ long len);
1262
+
1263
+ // i2d_X509_EXTENSIONS marshals |alg| as a DER-encoded SEQUENCE OF Extension
1264
+ // (RFC 5280), as described in |i2d_SAMPLE|.
1265
+ OPENSSL_EXPORT int i2d_X509_EXTENSIONS(const X509_EXTENSIONS *alg,
1266
+ uint8_t **outp);
1267
+
1268
+ // X509v3_get_ext_count returns the number of extensions in |x|.
1269
+ OPENSSL_EXPORT int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x);
1270
+
1271
+ // X509v3_get_ext_by_NID returns the index of the first extension in |x| with
1272
+ // type |nid|, or a negative number if not found. If found, callers can use
1273
+ // |X509v3_get_ext| to look up the extension by index.
1274
+ //
1275
+ // If |lastpos| is non-negative, it begins searching at |lastpos| + 1. Callers
1276
+ // can thus loop over all matching extensions by first passing -1 and then
1277
+ // passing the previously-returned value until no match is returned.
1278
+ OPENSSL_EXPORT int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x,
1279
+ int nid, int lastpos);
1280
+
1281
+ // X509v3_get_ext_by_OBJ behaves like |X509v3_get_ext_by_NID| but looks for
1282
+ // extensions matching |obj|.
1283
+ OPENSSL_EXPORT int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x,
1284
+ const ASN1_OBJECT *obj, int lastpos);
1285
+
1286
+ // X509v3_get_ext_by_critical returns the index of the first extension in |x|
1287
+ // whose critical bit matches |crit|, or a negative number if no such extension
1288
+ // was found.
1289
+ //
1290
+ // If |lastpos| is non-negative, it begins searching at |lastpos| + 1. Callers
1291
+ // can thus loop over all matching extensions by first passing -1 and then
1292
+ // passing the previously-returned value until no match is returned.
1293
+ OPENSSL_EXPORT int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x,
1294
+ int crit, int lastpos);
1295
+
1296
+ // X509v3_get_ext returns the extension in |x| at index |loc|, or NULL if |loc|
1297
+ // is out of bounds. This function returns a non-const pointer for OpenSSL
1298
+ // compatibility, but callers should not mutate the result.
1299
+ OPENSSL_EXPORT X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x,
1300
+ int loc);
1301
+
1302
+ // X509v3_delete_ext removes the extension in |x| at index |loc| and returns the
1303
+ // removed extension, or NULL if |loc| was out of bounds. If an extension was
1304
+ // returned, the caller must release it with |X509_EXTENSION_free|.
1305
+ OPENSSL_EXPORT X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x,
1306
+ int loc);
1307
+
1308
+ // X509v3_add_ext adds a copy of |ex| to the extension list in |*x|. If |*x| is
1309
+ // NULL, it allocates a new |STACK_OF(X509_EXTENSION)| to hold the copy and sets
1310
+ // |*x| to the new list. It returns |*x| on success and NULL on error. The
1311
+ // caller retains ownership of |ex| and can release it independently of |*x|.
1312
+ //
1313
+ // The new extension is inserted at index |loc|, shifting extensions to the
1314
+ // right. If |loc| is -1 or out of bounds, the new extension is appended to the
1315
+ // list.
1316
+ OPENSSL_EXPORT STACK_OF(X509_EXTENSION) *X509v3_add_ext(
1317
+ STACK_OF(X509_EXTENSION) **x, const X509_EXTENSION *ex, int loc);
1318
+
1319
+
1320
+ // Algorithm identifiers.
1321
+ //
1322
+ // An |X509_ALGOR| represents an AlgorithmIdentifier structure, used in X.509
1323
+ // to represent signature algorithms and public key algorithms.
1324
+
1325
+ DEFINE_STACK_OF(X509_ALGOR)
1326
+
1327
+ // X509_ALGOR is an |ASN1_ITEM| whose ASN.1 type is AlgorithmIdentifier and C
1328
+ // type is |X509_ALGOR*|.
1329
+ DECLARE_ASN1_ITEM(X509_ALGOR)
1330
+
1331
+ // X509_ALGOR_new returns a newly-allocated, empty |X509_ALGOR| object, or NULL
1332
+ // on error.
1333
+ OPENSSL_EXPORT X509_ALGOR *X509_ALGOR_new(void);
1334
+
1335
+ // X509_ALGOR_dup returns a newly-allocated copy of |alg|, or NULL on error.
1336
+ // This function works by serializing the structure, so if |alg| is incomplete,
1337
+ // it may fail.
1338
+ OPENSSL_EXPORT X509_ALGOR *X509_ALGOR_dup(const X509_ALGOR *alg);
1339
+
1340
+ // X509_ALGOR_free releases memory associated with |alg|.
1341
+ OPENSSL_EXPORT void X509_ALGOR_free(X509_ALGOR *alg);
1342
+
1343
+ // d2i_X509_ALGOR parses up to |len| bytes from |*inp| as a DER-encoded
1344
+ // AlgorithmIdentifier, as described in |d2i_SAMPLE|.
1345
+ OPENSSL_EXPORT X509_ALGOR *d2i_X509_ALGOR(X509_ALGOR **out, const uint8_t **inp,
1346
+ long len);
1347
+
1348
+ // i2d_X509_ALGOR marshals |alg| as a DER-encoded AlgorithmIdentifier, as
1349
+ // described in |i2d_SAMPLE|.
1350
+ OPENSSL_EXPORT int i2d_X509_ALGOR(const X509_ALGOR *alg, uint8_t **outp);
1351
+
1352
+ // X509_ALGOR_set0 sets |alg| to an AlgorithmIdentifier with algorithm |obj| and
1353
+ // parameter determined by |param_type| and |param_value|. It returns one on
1354
+ // success and zero on error. This function takes ownership of |obj| and
1355
+ // |param_value| on success.
1356
+ //
1357
+ // If |param_type| is |V_ASN1_UNDEF|, the parameter is omitted. If |param_type|
1358
+ // is zero, the parameter is left unchanged. Otherwise, |param_type| and
1359
+ // |param_value| are interpreted as in |ASN1_TYPE_set|.
1360
+ //
1361
+ // Note omitting the parameter (|V_ASN1_UNDEF|) and encoding an explicit NULL
1362
+ // value (|V_ASN1_NULL|) are different. Some algorithms require one and some the
1363
+ // other. Consult the relevant specification before calling this function. The
1364
+ // correct parameter for an RSASSA-PKCS1-v1_5 signature is |V_ASN1_NULL|. The
1365
+ // correct one for an ECDSA or Ed25519 signature is |V_ASN1_UNDEF|.
1366
+ OPENSSL_EXPORT int X509_ALGOR_set0(X509_ALGOR *alg, ASN1_OBJECT *obj,
1367
+ int param_type, void *param_value);
1368
+
1369
+ // X509_ALGOR_get0 sets |*out_obj| to the |alg|'s algorithm. If |alg|'s
1370
+ // parameter is omitted, it sets |*out_param_type| and |*out_param_value| to
1371
+ // |V_ASN1_UNDEF| and NULL. Otherwise, it sets |*out_param_type| and
1372
+ // |*out_param_value| to the parameter, using the same representation as
1373
+ // |ASN1_TYPE_set0|. See |ASN1_TYPE_set0| and |ASN1_TYPE| for details.
1374
+ //
1375
+ // Callers that require the parameter in serialized form should, after checking
1376
+ // for |V_ASN1_UNDEF|, use |ASN1_TYPE_set1| and |d2i_ASN1_TYPE|, rather than
1377
+ // inspecting |*out_param_value|.
1378
+ //
1379
+ // Each of |out_obj|, |out_param_type|, and |out_param_value| may be NULL to
1380
+ // ignore the output. If |out_param_type| is NULL, |out_param_value| is ignored.
1381
+ //
1382
+ // WARNING: If |*out_param_type| is set to |V_ASN1_UNDEF|, OpenSSL and older
1383
+ // revisions of BoringSSL leave |*out_param_value| unset rather than setting it
1384
+ // to NULL. Callers that support both OpenSSL and BoringSSL should not assume
1385
+ // |*out_param_value| is uniformly initialized.
1386
+ OPENSSL_EXPORT void X509_ALGOR_get0(const ASN1_OBJECT **out_obj,
1387
+ int *out_param_type,
1388
+ const void **out_param_value,
1389
+ const X509_ALGOR *alg);
1390
+
1391
+ // X509_ALGOR_set_md sets |alg| to the hash function |md|. Note this
1392
+ // AlgorithmIdentifier represents the hash function itself, not a signature
1393
+ // algorithm that uses |md|.
1394
+ OPENSSL_EXPORT void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md);
1395
+
1396
+ // X509_ALGOR_cmp returns zero if |a| and |b| are equal, and some non-zero value
1397
+ // otherwise. Note this function can only be used for equality checks, not an
1398
+ // ordering.
1399
+ OPENSSL_EXPORT int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b);
1400
+
1401
+
1402
+ // Attributes.
1403
+ //
1404
+ // Unlike certificates and CRLs, CSRs use a separate Attribute structure (RFC
1405
+ // 2985, RFC 2986) for extensibility. This is represented by the library as
1406
+ // |X509_ATTRIBUTE|.
1407
+
1408
+ DEFINE_STACK_OF(X509_ATTRIBUTE)
1409
+
1410
+ // X509_ATTRIBUTE is an |ASN1_ITEM| whose ASN.1 type is Attribute (RFC 2986) and
1411
+ // C type is |X509_ATTRIBUTE*|.
1412
+ DECLARE_ASN1_ITEM(X509_ATTRIBUTE)
1413
+
1414
+ // X509_ATTRIBUTE_new returns a newly-allocated, empty |X509_ATTRIBUTE| object,
1415
+ // or NULL on error. |X509_ATTRIBUTE_set1_*| may be used to finish initializing
1416
+ // it.
1417
+ OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_new(void);
1418
+
1419
+ // X509_ATTRIBUTE_dup returns a newly-allocated copy of |attr|, or NULL on
1420
+ // error. This function works by serializing the structure, so if |attr| is
1421
+ // incomplete, it may fail.
1422
+ OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_dup(const X509_ATTRIBUTE *attr);
1423
+
1424
+ // X509_ATTRIBUTE_free releases memory associated with |attr|.
1425
+ OPENSSL_EXPORT void X509_ATTRIBUTE_free(X509_ATTRIBUTE *attr);
1426
+
1427
+ // d2i_X509_ATTRIBUTE parses up to |len| bytes from |*inp| as a DER-encoded
1428
+ // Attribute (RFC 2986), as described in |d2i_SAMPLE|.
1429
+ OPENSSL_EXPORT X509_ATTRIBUTE *d2i_X509_ATTRIBUTE(X509_ATTRIBUTE **out,
1430
+ const uint8_t **inp,
1431
+ long len);
1432
+
1433
+ // i2d_X509_ATTRIBUTE marshals |alg| as a DER-encoded Attribute (RFC 2986), as
1434
+ // described in |i2d_SAMPLE|.
1435
+ OPENSSL_EXPORT int i2d_X509_ATTRIBUTE(const X509_ATTRIBUTE *alg,
1436
+ uint8_t **outp);
1437
+
1438
+ // X509_ATTRIBUTE_create returns a newly-allocated |X509_ATTRIBUTE|, or NULL on
1439
+ // error. The attribute has type |nid| and contains a single value determined by
1440
+ // |attrtype| and |value|, which are interpreted as in |ASN1_TYPE_set|. Note
1441
+ // this function takes ownership of |value|.
1442
+ OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int attrtype,
1443
+ void *value);
1444
+
1445
+ // X509_ATTRIBUTE_create_by_NID returns a newly-allocated |X509_ATTRIBUTE| of
1446
+ // type |nid|, or NULL on error. The value is determined as in
1447
+ // |X509_ATTRIBUTE_set1_data|.
1448
+ //
1449
+ // If |attr| is non-NULL, the resulting |X509_ATTRIBUTE| is also written to
1450
+ // |*attr|. If |*attr| was non-NULL when the function was called, |*attr| is
1451
+ // reused instead of creating a new object.
1452
+ //
1453
+ // WARNING: The interpretation of |attrtype|, |data|, and |len| is complex and
1454
+ // error-prone. See |X509_ATTRIBUTE_set1_data| for details.
1455
+ //
1456
+ // WARNING: The object reuse form is deprecated and may be removed in the
1457
+ // future. It also currently incorrectly appends to the reused object's value
1458
+ // set rather than overwriting it.
1459
+ OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(
1460
+ X509_ATTRIBUTE **attr, int nid, int attrtype, const void *data, int len);
1461
+
1462
+ // X509_ATTRIBUTE_create_by_OBJ behaves like |X509_ATTRIBUTE_create_by_NID|
1463
+ // except the attribute's type is determined by |obj|.
1464
+ OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(
1465
+ X509_ATTRIBUTE **attr, const ASN1_OBJECT *obj, int attrtype,
1466
+ const void *data, int len);
1467
+
1468
+ // X509_ATTRIBUTE_create_by_txt behaves like |X509_ATTRIBUTE_create_by_NID|
1469
+ // except the attribute's type is determined by calling |OBJ_txt2obj| with
1470
+ // |attrname|.
1471
+ OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(
1472
+ X509_ATTRIBUTE **attr, const char *attrname, int type,
1473
+ const unsigned char *bytes, int len);
1474
+
1475
+ // X509_ATTRIBUTE_set1_object sets |attr|'s type to |obj|. It returns one on
1476
+ // success and zero on error.
1477
+ OPENSSL_EXPORT int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr,
1478
+ const ASN1_OBJECT *obj);
1479
+
1480
+ // X509_ATTRIBUTE_set1_data appends a value to |attr|'s value set and returns
1481
+ // one on success or zero on error. The value is determined as follows:
1482
+ //
1483
+ // If |attrtype| is a |MBSTRING_*| constant, the value is an ASN.1 string. The
1484
+ // string is determined by decoding |len| bytes from |data| in the encoding
1485
+ // specified by |attrtype|, and then re-encoding it in a form appropriate for
1486
+ // |attr|'s type. If |len| is -1, |strlen(data)| is used instead. See
1487
+ // |ASN1_STRING_set_by_NID| for details.
1488
+ //
1489
+ // Otherwise, if |len| is not -1, the value is an ASN.1 string. |attrtype| is an
1490
+ // |ASN1_STRING| type value and the |len| bytes from |data| are copied as the
1491
+ // type-specific representation of |ASN1_STRING|. See |ASN1_STRING| for details.
1492
+ //
1493
+ // WARNING: If this form is used to construct a negative INTEGER or ENUMERATED,
1494
+ // |attrtype| includes the |V_ASN1_NEG| flag for |ASN1_STRING|, but the function
1495
+ // forgets to clear the flag for |ASN1_TYPE|. This matches OpenSSL but is
1496
+ // probably a bug. For now, do not use this form with negative values.
1497
+ //
1498
+ // Otherwise, if |len| is -1, the value is constructed by passing |attrtype| and
1499
+ // |data| to |ASN1_TYPE_set1|. That is, |attrtype| is an |ASN1_TYPE| type value,
1500
+ // and |data| is cast to the corresponding pointer type.
1501
+ //
1502
+ // WARNING: Despite the name, this function appends to |attr|'s value set,
1503
+ // rather than overwriting it. To overwrite the value set, create a new
1504
+ // |X509_ATTRIBUTE| with |X509_ATTRIBUTE_new|.
1505
+ //
1506
+ // WARNING: If using the |MBSTRING_*| form, pass a length rather than relying on
1507
+ // |strlen|. In particular, |strlen| will not behave correctly if the input is
1508
+ // |MBSTRING_BMP| or |MBSTRING_UNIV|.
1509
+ //
1510
+ // WARNING: This function currently misinterprets |V_ASN1_OTHER| as an
1511
+ // |MBSTRING_*| constant. This matches OpenSSL but means it is impossible to
1512
+ // construct a value with a non-universal tag.
1513
+ OPENSSL_EXPORT int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype,
1514
+ const void *data, int len);
562
1515
 
563
- // X509_signature_print writes a human-readable representation of |alg| and
564
- // |sig| to |bio|. It returns one on success and zero on error.
565
- OPENSSL_EXPORT int X509_signature_print(BIO *bio, const X509_ALGOR *alg,
566
- const ASN1_STRING *sig);
1516
+ // X509_ATTRIBUTE_get0_data returns the |idx|th value of |attr| in a
1517
+ // type-specific representation to |attrtype|, or NULL if out of bounds or the
1518
+ // type does not match. |attrtype| is one of the type values in |ASN1_TYPE|. On
1519
+ // match, the return value uses the same representation as |ASN1_TYPE_set0|. See
1520
+ // |ASN1_TYPE| for details.
1521
+ OPENSSL_EXPORT void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx,
1522
+ int attrtype, void *unused);
567
1523
 
568
- // X509_sign signs |x509| with |pkey| and replaces the signature algorithm and
569
- // signature fields. It returns one on success and zero on error. This function
570
- // uses digest algorithm |md|, or |pkey|'s default if NULL. Other signing
571
- // parameters use |pkey|'s defaults. To customize them, use |X509_sign_ctx|.
572
- OPENSSL_EXPORT int X509_sign(X509 *x509, EVP_PKEY *pkey, const EVP_MD *md);
1524
+ // X509_ATTRIBUTE_count returns the number of values in |attr|.
1525
+ OPENSSL_EXPORT int X509_ATTRIBUTE_count(const X509_ATTRIBUTE *attr);
573
1526
 
574
- // X509_sign_ctx signs |x509| with |ctx| and replaces the signature algorithm
575
- // and signature fields. It returns one on success and zero on error. The
576
- // signature algorithm and parameters come from |ctx|, which must have been
577
- // initialized with |EVP_DigestSignInit|. The caller should configure the
578
- // corresponding |EVP_PKEY_CTX| before calling this function.
579
- OPENSSL_EXPORT int X509_sign_ctx(X509 *x509, EVP_MD_CTX *ctx);
1527
+ // X509_ATTRIBUTE_get0_object returns the type of |attr|.
1528
+ OPENSSL_EXPORT ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr);
580
1529
 
581
- // X509_REQ_sign signs |req| with |pkey| and replaces the signature algorithm
582
- // and signature fields. It returns one on success and zero on error. This
583
- // function uses digest algorithm |md|, or |pkey|'s default if NULL. Other
584
- // signing parameters use |pkey|'s defaults. To customize them, use
585
- // |X509_REQ_sign_ctx|.
586
- OPENSSL_EXPORT int X509_REQ_sign(X509_REQ *req, EVP_PKEY *pkey,
587
- const EVP_MD *md);
1530
+ // X509_ATTRIBUTE_get0_type returns the |idx|th value in |attr|, or NULL if out
1531
+ // of bounds. Note this function returns one of |attr|'s values, not the type.
1532
+ OPENSSL_EXPORT ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr,
1533
+ int idx);
588
1534
 
589
- // X509_REQ_sign_ctx signs |req| with |ctx| and replaces the signature algorithm
590
- // and signature fields. It returns one on success and zero on error. The
591
- // signature algorithm and parameters come from |ctx|, which must have been
592
- // initialized with |EVP_DigestSignInit|. The caller should configure the
593
- // corresponding |EVP_PKEY_CTX| before calling this function.
594
- OPENSSL_EXPORT int X509_REQ_sign_ctx(X509_REQ *req, EVP_MD_CTX *ctx);
595
1535
 
596
- // X509_CRL_sign signs |crl| with |pkey| and replaces the signature algorithm
597
- // and signature fields. It returns one on success and zero on error. This
598
- // function uses digest algorithm |md|, or |pkey|'s default if NULL. Other
599
- // signing parameters use |pkey|'s defaults. To customize them, use
600
- // |X509_CRL_sign_ctx|.
601
- OPENSSL_EXPORT int X509_CRL_sign(X509_CRL *crl, EVP_PKEY *pkey,
602
- const EVP_MD *md);
1536
+ // SignedPublicKeyAndChallenge structures.
1537
+ //
1538
+ // The SignedPublicKeyAndChallenge (SPKAC) is a legacy structure to request
1539
+ // certificates, primarily in the legacy <keygen> HTML tag. An SPKAC structure
1540
+ // is represented by a |NETSCAPE_SPKI| structure.
1541
+ //
1542
+ // The structure is described in
1543
+ // https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen
603
1544
 
604
- // X509_CRL_sign_ctx signs |crl| with |ctx| and replaces the signature algorithm
605
- // and signature fields. It returns one on success and zero on error. The
606
- // signature algorithm and parameters come from |ctx|, which must have been
607
- // initialized with |EVP_DigestSignInit|. The caller should configure the
608
- // corresponding |EVP_PKEY_CTX| before calling this function.
609
- OPENSSL_EXPORT int X509_CRL_sign_ctx(X509_CRL *crl, EVP_MD_CTX *ctx);
1545
+ // A Netscape_spki_st, or |NETSCAPE_SPKI|, represents a
1546
+ // SignedPublicKeyAndChallenge structure. Although this structure contains a
1547
+ // |spkac| field of type |NETSCAPE_SPKAC|, these are misnamed. The SPKAC is the
1548
+ // entire structure, not the signed portion.
1549
+ struct Netscape_spki_st {
1550
+ NETSCAPE_SPKAC *spkac;
1551
+ X509_ALGOR *sig_algor;
1552
+ ASN1_BIT_STRING *signature;
1553
+ } /* NETSCAPE_SPKI */;
1554
+
1555
+ // NETSCAPE_SPKI is an |ASN1_ITEM| whose ASN.1 type is
1556
+ // SignedPublicKeyAndChallenge and C type is |NETSCAPE_SPKI*|.
1557
+ DECLARE_ASN1_ITEM(NETSCAPE_SPKI)
1558
+
1559
+ // NETSCAPE_SPKI_new returns a newly-allocated, empty |NETSCAPE_SPKI| object, or
1560
+ // NULL on error.
1561
+ OPENSSL_EXPORT NETSCAPE_SPKI *NETSCAPE_SPKI_new(void);
1562
+
1563
+ // NETSCAPE_SPKI_free releases memory associated with |spki|.
1564
+ OPENSSL_EXPORT void NETSCAPE_SPKI_free(NETSCAPE_SPKI *spki);
1565
+
1566
+ // d2i_NETSCAPE_SPKI parses up to |len| bytes from |*inp| as a DER-encoded
1567
+ // SignedPublicKeyAndChallenge structure, as described in |d2i_SAMPLE|.
1568
+ OPENSSL_EXPORT NETSCAPE_SPKI *d2i_NETSCAPE_SPKI(NETSCAPE_SPKI **out,
1569
+ const uint8_t **inp, long len);
1570
+
1571
+ // i2d_NETSCAPE_SPKI marshals |spki| as a DER-encoded
1572
+ // SignedPublicKeyAndChallenge structure, as described in |i2d_SAMPLE|.
1573
+ OPENSSL_EXPORT int i2d_NETSCAPE_SPKI(const NETSCAPE_SPKI *spki, uint8_t **outp);
1574
+
1575
+ // NETSCAPE_SPKI_verify checks that |spki| has a valid signature by |pkey|. It
1576
+ // returns one if the signature is valid and zero otherwise.
1577
+ OPENSSL_EXPORT int NETSCAPE_SPKI_verify(NETSCAPE_SPKI *spki, EVP_PKEY *pkey);
1578
+
1579
+ // NETSCAPE_SPKI_b64_decode decodes |len| bytes from |str| as a base64-encoded
1580
+ // SignedPublicKeyAndChallenge structure. It returns a newly-allocated
1581
+ // |NETSCAPE_SPKI| structure with the result, or NULL on error. If |len| is 0 or
1582
+ // negative, the length is calculated with |strlen| and |str| must be a
1583
+ // NUL-terminated C string.
1584
+ OPENSSL_EXPORT NETSCAPE_SPKI *NETSCAPE_SPKI_b64_decode(const char *str,
1585
+ ossl_ssize_t len);
1586
+
1587
+ // NETSCAPE_SPKI_b64_encode encodes |spki| as a base64-encoded
1588
+ // SignedPublicKeyAndChallenge structure. It returns a newly-allocated
1589
+ // NUL-terminated C string with the result, or NULL on error. The caller must
1590
+ // release the memory with |OPENSSL_free| when done.
1591
+ OPENSSL_EXPORT char *NETSCAPE_SPKI_b64_encode(NETSCAPE_SPKI *spki);
1592
+
1593
+ // NETSCAPE_SPKI_get_pubkey decodes and returns the public key in |spki| as an
1594
+ // |EVP_PKEY|, or NULL on error. The caller takes ownership of the resulting
1595
+ // pointer and must call |EVP_PKEY_free| when done.
1596
+ OPENSSL_EXPORT EVP_PKEY *NETSCAPE_SPKI_get_pubkey(NETSCAPE_SPKI *spki);
1597
+
1598
+ // NETSCAPE_SPKI_set_pubkey sets |spki|'s public key to |pkey|. It returns one
1599
+ // on success or zero on error. This function does not take ownership of |pkey|,
1600
+ // so the caller may continue to manage its lifetime independently of |spki|.
1601
+ OPENSSL_EXPORT int NETSCAPE_SPKI_set_pubkey(NETSCAPE_SPKI *spki,
1602
+ EVP_PKEY *pkey);
610
1603
 
611
1604
  // NETSCAPE_SPKI_sign signs |spki| with |pkey| and replaces the signature
612
- // algorithm and signature fields. It returns one on success and zero on error.
613
- // This function uses digest algorithm |md|, or |pkey|'s default if NULL. Other
614
- // signing parameters use |pkey|'s defaults.
1605
+ // algorithm and signature fields. It returns the length of the signature on
1606
+ // success and zero on error. This function uses digest algorithm |md|, or
1607
+ // |pkey|'s default if NULL. Other signing parameters use |pkey|'s defaults.
615
1608
  OPENSSL_EXPORT int NETSCAPE_SPKI_sign(NETSCAPE_SPKI *spki, EVP_PKEY *pkey,
616
1609
  const EVP_MD *md);
617
1610
 
618
- // X509_pubkey_digest hashes the DER encoding of |x509|'s subjectPublicKeyInfo
619
- // field with |md| and writes the result to |out|. |EVP_MD_CTX_size| bytes are
620
- // written, which is at most |EVP_MAX_MD_SIZE|. If |out_len| is not NULL,
621
- // |*out_len| is set to the number of bytes written. This function returns one
622
- // on success and zero on error.
1611
+ // A Netscape_spkac_st, or |NETSCAPE_SPKAC|, represents a PublicKeyAndChallenge
1612
+ // structure. This type is misnamed. The full SPKAC includes the signature,
1613
+ // which is represented with the |NETSCAPE_SPKI| type.
1614
+ struct Netscape_spkac_st {
1615
+ X509_PUBKEY *pubkey;
1616
+ ASN1_IA5STRING *challenge;
1617
+ } /* NETSCAPE_SPKAC */;
1618
+
1619
+ // NETSCAPE_SPKAC is an |ASN1_ITEM| whose ASN.1 type is PublicKeyAndChallenge
1620
+ // and C type is |NETSCAPE_SPKAC*|.
1621
+ DECLARE_ASN1_ITEM(NETSCAPE_SPKAC)
1622
+
1623
+ // NETSCAPE_SPKAC_new returns a newly-allocated, empty |NETSCAPE_SPKAC| object,
1624
+ // or NULL on error.
1625
+ OPENSSL_EXPORT NETSCAPE_SPKAC *NETSCAPE_SPKAC_new(void);
1626
+
1627
+ // NETSCAPE_SPKAC_free releases memory associated with |spkac|.
1628
+ OPENSSL_EXPORT void NETSCAPE_SPKAC_free(NETSCAPE_SPKAC *spkac);
1629
+
1630
+ // d2i_NETSCAPE_SPKAC parses up to |len| bytes from |*inp| as a DER-encoded
1631
+ // PublicKeyAndChallenge structure, as described in |d2i_SAMPLE|.
1632
+ OPENSSL_EXPORT NETSCAPE_SPKAC *d2i_NETSCAPE_SPKAC(NETSCAPE_SPKAC **out,
1633
+ const uint8_t **inp,
1634
+ long len);
1635
+
1636
+ // i2d_NETSCAPE_SPKAC marshals |spkac| as a DER-encoded PublicKeyAndChallenge
1637
+ // structure, as described in |i2d_SAMPLE|.
1638
+ OPENSSL_EXPORT int i2d_NETSCAPE_SPKAC(const NETSCAPE_SPKAC *spkac,
1639
+ uint8_t **outp);
1640
+
1641
+
1642
+ // Printing functions.
1643
+ //
1644
+ // The following functions output human-readable representations of
1645
+ // X.509-related structures. They should only be used for debugging or logging
1646
+ // and not parsed programmatically. In many cases, the outputs are ambiguous, so
1647
+ // attempting to parse them can lead to string injection vulnerabilities.
1648
+
1649
+ // The following flags control |X509_print_ex| and |X509_REQ_print_ex|.
1650
+
1651
+ // X509_FLAG_COMPAT disables all flags. It additionally causes names to be
1652
+ // printed with a 16-byte indent.
1653
+ #define X509_FLAG_COMPAT 0
1654
+
1655
+ // X509_FLAG_NO_HEADER skips a header identifying the type of object printed.
1656
+ #define X509_FLAG_NO_HEADER 1L
1657
+
1658
+ // X509_FLAG_NO_VERSION skips printing the X.509 version number.
1659
+ #define X509_FLAG_NO_VERSION (1L << 1)
1660
+
1661
+ // X509_FLAG_NO_SERIAL skips printing the serial number. It is ignored in
1662
+ // |X509_REQ_print_fp|.
1663
+ #define X509_FLAG_NO_SERIAL (1L << 2)
1664
+
1665
+ // X509_FLAG_NO_SIGNAME skips printing the signature algorithm in the
1666
+ // TBSCertificate. It is ignored in |X509_REQ_print_fp|.
1667
+ #define X509_FLAG_NO_SIGNAME (1L << 3)
1668
+
1669
+ // X509_FLAG_NO_ISSUER skips printing the issuer.
1670
+ #define X509_FLAG_NO_ISSUER (1L << 4)
1671
+
1672
+ // X509_FLAG_NO_VALIDITY skips printing the notBefore and notAfter times. It is
1673
+ // ignored in |X509_REQ_print_fp|.
1674
+ #define X509_FLAG_NO_VALIDITY (1L << 5)
1675
+
1676
+ // X509_FLAG_NO_SUBJECT skips printing the subject.
1677
+ #define X509_FLAG_NO_SUBJECT (1L << 6)
1678
+
1679
+ // X509_FLAG_NO_PUBKEY skips printing the public key.
1680
+ #define X509_FLAG_NO_PUBKEY (1L << 7)
1681
+
1682
+ // X509_FLAG_NO_EXTENSIONS skips printing the extension list. It is ignored in
1683
+ // |X509_REQ_print_fp|. CSRs instead have attributes, which is controlled by
1684
+ // |X509_FLAG_NO_ATTRIBUTES|.
1685
+ #define X509_FLAG_NO_EXTENSIONS (1L << 8)
1686
+
1687
+ // X509_FLAG_NO_SIGDUMP skips printing the signature and outer signature
1688
+ // algorithm.
1689
+ #define X509_FLAG_NO_SIGDUMP (1L << 9)
1690
+
1691
+ // X509_FLAG_NO_AUX skips printing auxiliary properties. (See |d2i_X509_AUX| and
1692
+ // related functions.)
1693
+ #define X509_FLAG_NO_AUX (1L << 10)
1694
+
1695
+ // X509_FLAG_NO_ATTRIBUTES skips printing CSR attributes. It does nothing for
1696
+ // certificates and CRLs.
1697
+ #define X509_FLAG_NO_ATTRIBUTES (1L << 11)
1698
+
1699
+ // X509_FLAG_NO_IDS skips printing the issuerUniqueID and subjectUniqueID in a
1700
+ // certificate. It is ignored in |X509_REQ_print_fp|.
1701
+ #define X509_FLAG_NO_IDS (1L << 12)
1702
+
1703
+ // X509_print_ex writes a human-readable representation of |x| to |bp|. It
1704
+ // returns one on success and zero on error. |nmflags| is the flags parameter
1705
+ // for |X509_NAME_print_ex| when printing the subject and issuer. |cflag| should
1706
+ // be some combination of the |X509_FLAG_*| constants.
1707
+ OPENSSL_EXPORT int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflag,
1708
+ unsigned long cflag);
1709
+
1710
+ // X509_print_ex_fp behaves like |X509_print_ex| but writes to |fp|.
1711
+ OPENSSL_EXPORT int X509_print_ex_fp(FILE *fp, X509 *x, unsigned long nmflag,
1712
+ unsigned long cflag);
1713
+
1714
+ // X509_print calls |X509_print_ex| with |XN_FLAG_COMPAT| and |X509_FLAG_COMPAT|
1715
+ // flags.
1716
+ OPENSSL_EXPORT int X509_print(BIO *bp, X509 *x);
1717
+
1718
+ // X509_print_fp behaves like |X509_print| but writes to |fp|.
1719
+ OPENSSL_EXPORT int X509_print_fp(FILE *fp, X509 *x);
1720
+
1721
+ // X509_CRL_print writes a human-readable representation of |x| to |bp|. It
1722
+ // returns one on success and zero on error.
1723
+ OPENSSL_EXPORT int X509_CRL_print(BIO *bp, X509_CRL *x);
1724
+
1725
+ // X509_CRL_print_fp behaves like |X509_CRL_print| but writes to |fp|.
1726
+ OPENSSL_EXPORT int X509_CRL_print_fp(FILE *fp, X509_CRL *x);
1727
+
1728
+ // X509_REQ_print_ex writes a human-readable representation of |x| to |bp|. It
1729
+ // returns one on success and zero on error. |nmflags| is the flags parameter
1730
+ // for |X509_NAME_print_ex|, when printing the subject. |cflag| should be some
1731
+ // combination of the |X509_FLAG_*| constants.
1732
+ OPENSSL_EXPORT int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflag,
1733
+ unsigned long cflag);
1734
+
1735
+ // X509_REQ_print calls |X509_REQ_print_ex| with |XN_FLAG_COMPAT| and
1736
+ // |X509_FLAG_COMPAT| flags.
1737
+ OPENSSL_EXPORT int X509_REQ_print(BIO *bp, X509_REQ *req);
1738
+
1739
+ // X509_REQ_print_fp behaves like |X509_REQ_print| but writes to |fp|.
1740
+ OPENSSL_EXPORT int X509_REQ_print_fp(FILE *fp, X509_REQ *req);
1741
+
1742
+ // The following flags are control |X509_NAME_print_ex|. They must not collide
1743
+ // with |ASN1_STRFLGS_*|.
1744
+ //
1745
+ // TODO(davidben): This is far, far too many options and most of them are
1746
+ // useless. Trim this down.
1747
+
1748
+ // XN_FLAG_COMPAT prints with |X509_NAME_print|'s format and return value
1749
+ // convention.
1750
+ #define XN_FLAG_COMPAT 0
1751
+
1752
+ // XN_FLAG_SEP_MASK determines the separators to use between attributes.
1753
+ #define XN_FLAG_SEP_MASK (0xf << 16)
1754
+
1755
+ // XN_FLAG_SEP_COMMA_PLUS separates RDNs with "," and attributes within an RDN
1756
+ // with "+", as in RFC 2253.
1757
+ #define XN_FLAG_SEP_COMMA_PLUS (1 << 16)
1758
+
1759
+ // XN_FLAG_SEP_CPLUS_SPC behaves like |XN_FLAG_SEP_COMMA_PLUS| but adds spaces
1760
+ // between the separators.
1761
+ #define XN_FLAG_SEP_CPLUS_SPC (2 << 16)
1762
+
1763
+ // XN_FLAG_SEP_SPLUS_SPC separates RDNs with "; " and attributes within an RDN
1764
+ // with " + ".
1765
+ #define XN_FLAG_SEP_SPLUS_SPC (3 << 16)
1766
+
1767
+ // XN_FLAG_SEP_MULTILINE prints each attribute on one line.
1768
+ #define XN_FLAG_SEP_MULTILINE (4 << 16)
1769
+
1770
+ // XN_FLAG_DN_REV prints RDNs in reverse, from least significant to most
1771
+ // significant, as RFC 2253.
1772
+ #define XN_FLAG_DN_REV (1 << 20)
1773
+
1774
+ // XN_FLAG_FN_MASK determines how attribute types are displayed.
1775
+ #define XN_FLAG_FN_MASK (0x3 << 21)
1776
+
1777
+ // XN_FLAG_FN_SN uses the attribute type's short name, when available.
1778
+ #define XN_FLAG_FN_SN 0
1779
+
1780
+ // XN_FLAG_SPC_EQ wraps the "=" operator with spaces when printing attributes.
1781
+ #define XN_FLAG_SPC_EQ (1 << 23)
1782
+
1783
+ // XN_FLAG_DUMP_UNKNOWN_FIELDS causes unknown attribute types to be printed in
1784
+ // hex, as in RFC 2253.
1785
+ #define XN_FLAG_DUMP_UNKNOWN_FIELDS (1 << 24)
1786
+
1787
+ // XN_FLAG_RFC2253 prints like RFC 2253.
1788
+ #define XN_FLAG_RFC2253 \
1789
+ (ASN1_STRFLGS_RFC2253 | XN_FLAG_SEP_COMMA_PLUS | XN_FLAG_DN_REV | \
1790
+ XN_FLAG_FN_SN | XN_FLAG_DUMP_UNKNOWN_FIELDS)
1791
+
1792
+ // XN_FLAG_ONELINE prints a one-line representation of the name.
1793
+ #define XN_FLAG_ONELINE \
1794
+ (ASN1_STRFLGS_RFC2253 | ASN1_STRFLGS_ESC_QUOTE | XN_FLAG_SEP_CPLUS_SPC | \
1795
+ XN_FLAG_SPC_EQ | XN_FLAG_FN_SN)
1796
+
1797
+ // X509_NAME_print_ex writes a human-readable representation of |nm| to |out|.
1798
+ // Each line of output is indented by |indent| spaces. It returns the number of
1799
+ // bytes written on success, and -1 on error. If |out| is NULL, it returns the
1800
+ // number of bytes it would have written but does not write anything. |flags|
1801
+ // should be some combination of |XN_FLAG_*| and |ASN1_STRFLGS_*| values and
1802
+ // determines the output. If unsure, use |XN_FLAG_RFC2253|.
1803
+ //
1804
+ // If |flags| is |XN_FLAG_COMPAT|, or zero, this function calls
1805
+ // |X509_NAME_print| instead. In that case, it returns one on success, rather
1806
+ // than the output length.
1807
+ OPENSSL_EXPORT int X509_NAME_print_ex(BIO *out, const X509_NAME *nm, int indent,
1808
+ unsigned long flags);
1809
+
1810
+ // X509_NAME_print prints a human-readable representation of |name| to |bp|. It
1811
+ // returns one on success and zero on error. |obase| is ignored.
1812
+ //
1813
+ // This function outputs a legacy format that does not correctly handle string
1814
+ // encodings and other cases. Prefer |X509_NAME_print_ex| if printing a name for
1815
+ // debugging purposes.
1816
+ OPENSSL_EXPORT int X509_NAME_print(BIO *bp, const X509_NAME *name, int obase);
1817
+
1818
+ // X509_NAME_oneline writes a human-readable representation to |name| to a
1819
+ // buffer as a NUL-terminated C string.
1820
+ //
1821
+ // If |buf| is NULL, returns a newly-allocated buffer containing the result on
1822
+ // success, or NULL on error. The buffer must be released with |OPENSSL_free|
1823
+ // when done.
1824
+ //
1825
+ // If |buf| is non-NULL, at most |size| bytes of output are written to |buf|
1826
+ // instead. |size| includes the trailing NUL. The function then returns |buf| on
1827
+ // success or NULL on error. If the output does not fit in |size| bytes, the
1828
+ // output is silently truncated at an attribute boundary.
1829
+ //
1830
+ // This function outputs a legacy format that does not correctly handle string
1831
+ // encodings and other cases. Prefer |X509_NAME_print_ex| if printing a name for
1832
+ // debugging purposes.
1833
+ OPENSSL_EXPORT char *X509_NAME_oneline(const X509_NAME *name, char *buf, int size);
1834
+
1835
+ // X509_NAME_print_ex_fp behaves like |X509_NAME_print_ex| but writes to |fp|.
1836
+ OPENSSL_EXPORT int X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm,
1837
+ int indent, unsigned long flags);
1838
+
1839
+ // X509_signature_dump writes a human-readable representation of |sig| to |bio|,
1840
+ // indented with |indent| spaces. It returns one on success and zero on error.
1841
+ OPENSSL_EXPORT int X509_signature_dump(BIO *bio, const ASN1_STRING *sig,
1842
+ int indent);
1843
+
1844
+ // X509_signature_print writes a human-readable representation of |alg| and
1845
+ // |sig| to |bio|. It returns one on success and zero on error.
1846
+ OPENSSL_EXPORT int X509_signature_print(BIO *bio, const X509_ALGOR *alg,
1847
+ const ASN1_STRING *sig);
1848
+
1849
+
1850
+ // Convenience functions.
1851
+
1852
+ // X509_pubkey_digest hashes the contents of the BIT STRING in |x509|'s
1853
+ // subjectPublicKeyInfo field with |md| and writes the result to |out|.
1854
+ // |EVP_MD_CTX_size| bytes are written, which is at most |EVP_MAX_MD_SIZE|. If
1855
+ // |out_len| is not NULL, |*out_len| is set to the number of bytes written. This
1856
+ // function returns one on success and zero on error.
1857
+ //
1858
+ // This hash omits the BIT STRING tag, length, and number of unused bits. It
1859
+ // also omits the AlgorithmIdentifier which describes the key type. It
1860
+ // corresponds to the OCSP KeyHash definition and is not suitable for other
1861
+ // purposes.
623
1862
  OPENSSL_EXPORT int X509_pubkey_digest(const X509 *x509, const EVP_MD *md,
624
1863
  uint8_t *out, unsigned *out_len);
625
1864
 
@@ -645,155 +1884,114 @@ OPENSSL_EXPORT int X509_CRL_digest(const X509_CRL *crl, const EVP_MD *md,
645
1884
  // of bytes written. This function returns one on success and zero on error.
646
1885
  // Note this digest covers the entire certificate request, not just the signed
647
1886
  // portion.
648
- OPENSSL_EXPORT int X509_REQ_digest(const X509_REQ *req, const EVP_MD *md,
649
- uint8_t *out, unsigned *out_len);
650
-
651
- // X509_NAME_digest hashes |name|'s DER encoding with |md| and writes the result
652
- // to |out|. |EVP_MD_CTX_size| bytes are written, which is at most
653
- // |EVP_MAX_MD_SIZE|. If |out_len| is not NULL, |*out_len| is set to the number
654
- // of bytes written. This function returns one on success and zero on error.
655
- OPENSSL_EXPORT int X509_NAME_digest(const X509_NAME *name, const EVP_MD *md,
656
- uint8_t *out, unsigned *out_len);
657
-
658
- // X509_parse_from_buffer parses an X.509 structure from |buf| and returns a
659
- // fresh X509 or NULL on error. There must not be any trailing data in |buf|.
660
- // The returned structure (if any) holds a reference to |buf| rather than
661
- // copying parts of it as a normal |d2i_X509| call would do.
662
- OPENSSL_EXPORT X509 *X509_parse_from_buffer(CRYPTO_BUFFER *buf);
663
-
664
- OPENSSL_EXPORT X509 *d2i_X509_fp(FILE *fp, X509 **x509);
665
- OPENSSL_EXPORT int i2d_X509_fp(FILE *fp, X509 *x509);
666
- OPENSSL_EXPORT X509_CRL *d2i_X509_CRL_fp(FILE *fp, X509_CRL **crl);
667
- OPENSSL_EXPORT int i2d_X509_CRL_fp(FILE *fp, X509_CRL *crl);
668
- OPENSSL_EXPORT X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
669
- OPENSSL_EXPORT int i2d_X509_REQ_fp(FILE *fp, X509_REQ *req);
670
- OPENSSL_EXPORT RSA *d2i_RSAPrivateKey_fp(FILE *fp, RSA **rsa);
671
- OPENSSL_EXPORT int i2d_RSAPrivateKey_fp(FILE *fp, RSA *rsa);
672
- OPENSSL_EXPORT RSA *d2i_RSAPublicKey_fp(FILE *fp, RSA **rsa);
673
- OPENSSL_EXPORT int i2d_RSAPublicKey_fp(FILE *fp, RSA *rsa);
674
- OPENSSL_EXPORT RSA *d2i_RSA_PUBKEY_fp(FILE *fp, RSA **rsa);
675
- OPENSSL_EXPORT int i2d_RSA_PUBKEY_fp(FILE *fp, RSA *rsa);
676
- #ifndef OPENSSL_NO_DSA
677
- OPENSSL_EXPORT DSA *d2i_DSA_PUBKEY_fp(FILE *fp, DSA **dsa);
678
- OPENSSL_EXPORT int i2d_DSA_PUBKEY_fp(FILE *fp, DSA *dsa);
679
- OPENSSL_EXPORT DSA *d2i_DSAPrivateKey_fp(FILE *fp, DSA **dsa);
680
- OPENSSL_EXPORT int i2d_DSAPrivateKey_fp(FILE *fp, DSA *dsa);
681
- #endif
682
- OPENSSL_EXPORT EC_KEY *d2i_EC_PUBKEY_fp(FILE *fp, EC_KEY **eckey);
683
- OPENSSL_EXPORT int i2d_EC_PUBKEY_fp(FILE *fp, EC_KEY *eckey);
684
- OPENSSL_EXPORT EC_KEY *d2i_ECPrivateKey_fp(FILE *fp, EC_KEY **eckey);
685
- OPENSSL_EXPORT int i2d_ECPrivateKey_fp(FILE *fp, EC_KEY *eckey);
686
- OPENSSL_EXPORT X509_SIG *d2i_PKCS8_fp(FILE *fp, X509_SIG **p8);
687
- OPENSSL_EXPORT int i2d_PKCS8_fp(FILE *fp, X509_SIG *p8);
688
- OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_fp(
689
- FILE *fp, PKCS8_PRIV_KEY_INFO **p8inf);
690
- OPENSSL_EXPORT int i2d_PKCS8_PRIV_KEY_INFO_fp(FILE *fp,
691
- PKCS8_PRIV_KEY_INFO *p8inf);
692
- OPENSSL_EXPORT int i2d_PKCS8PrivateKeyInfo_fp(FILE *fp, EVP_PKEY *key);
693
- OPENSSL_EXPORT int i2d_PrivateKey_fp(FILE *fp, EVP_PKEY *pkey);
694
- OPENSSL_EXPORT EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a);
695
- OPENSSL_EXPORT int i2d_PUBKEY_fp(FILE *fp, EVP_PKEY *pkey);
696
- OPENSSL_EXPORT EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a);
1887
+ OPENSSL_EXPORT int X509_REQ_digest(const X509_REQ *req, const EVP_MD *md,
1888
+ uint8_t *out, unsigned *out_len);
1889
+
1890
+ // X509_NAME_digest hashes |name|'s DER encoding with |md| and writes the result
1891
+ // to |out|. |EVP_MD_CTX_size| bytes are written, which is at most
1892
+ // |EVP_MAX_MD_SIZE|. If |out_len| is not NULL, |*out_len| is set to the number
1893
+ // of bytes written. This function returns one on success and zero on error.
1894
+ OPENSSL_EXPORT int X509_NAME_digest(const X509_NAME *name, const EVP_MD *md,
1895
+ uint8_t *out, unsigned *out_len);
697
1896
 
1897
+ // The following functions behave like the corresponding unsuffixed |d2i_*|
1898
+ // functions, but read the result from |bp| instead. Callers using these
1899
+ // functions with memory |BIO|s to parse structures already in memory should use
1900
+ // |d2i_*| instead.
698
1901
  OPENSSL_EXPORT X509 *d2i_X509_bio(BIO *bp, X509 **x509);
699
- OPENSSL_EXPORT int i2d_X509_bio(BIO *bp, X509 *x509);
700
1902
  OPENSSL_EXPORT X509_CRL *d2i_X509_CRL_bio(BIO *bp, X509_CRL **crl);
701
- OPENSSL_EXPORT int i2d_X509_CRL_bio(BIO *bp, X509_CRL *crl);
702
1903
  OPENSSL_EXPORT X509_REQ *d2i_X509_REQ_bio(BIO *bp, X509_REQ **req);
703
- OPENSSL_EXPORT int i2d_X509_REQ_bio(BIO *bp, X509_REQ *req);
704
1904
  OPENSSL_EXPORT RSA *d2i_RSAPrivateKey_bio(BIO *bp, RSA **rsa);
705
- OPENSSL_EXPORT int i2d_RSAPrivateKey_bio(BIO *bp, RSA *rsa);
706
1905
  OPENSSL_EXPORT RSA *d2i_RSAPublicKey_bio(BIO *bp, RSA **rsa);
707
- OPENSSL_EXPORT int i2d_RSAPublicKey_bio(BIO *bp, RSA *rsa);
708
1906
  OPENSSL_EXPORT RSA *d2i_RSA_PUBKEY_bio(BIO *bp, RSA **rsa);
709
- OPENSSL_EXPORT int i2d_RSA_PUBKEY_bio(BIO *bp, RSA *rsa);
710
- #ifndef OPENSSL_NO_DSA
711
1907
  OPENSSL_EXPORT DSA *d2i_DSA_PUBKEY_bio(BIO *bp, DSA **dsa);
712
- OPENSSL_EXPORT int i2d_DSA_PUBKEY_bio(BIO *bp, DSA *dsa);
713
1908
  OPENSSL_EXPORT DSA *d2i_DSAPrivateKey_bio(BIO *bp, DSA **dsa);
714
- OPENSSL_EXPORT int i2d_DSAPrivateKey_bio(BIO *bp, DSA *dsa);
715
- #endif
716
1909
  OPENSSL_EXPORT EC_KEY *d2i_EC_PUBKEY_bio(BIO *bp, EC_KEY **eckey);
717
- OPENSSL_EXPORT int i2d_EC_PUBKEY_bio(BIO *bp, EC_KEY *eckey);
718
1910
  OPENSSL_EXPORT EC_KEY *d2i_ECPrivateKey_bio(BIO *bp, EC_KEY **eckey);
719
- OPENSSL_EXPORT int i2d_ECPrivateKey_bio(BIO *bp, EC_KEY *eckey);
720
1911
  OPENSSL_EXPORT X509_SIG *d2i_PKCS8_bio(BIO *bp, X509_SIG **p8);
721
- OPENSSL_EXPORT int i2d_PKCS8_bio(BIO *bp, X509_SIG *p8);
722
1912
  OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_bio(
723
1913
  BIO *bp, PKCS8_PRIV_KEY_INFO **p8inf);
1914
+ OPENSSL_EXPORT EVP_PKEY *d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a);
1915
+ OPENSSL_EXPORT DH *d2i_DHparams_bio(BIO *bp, DH **dh);
1916
+
1917
+ // d2i_PrivateKey_bio behaves like |d2i_AutoPrivateKey|, but reads from |bp|
1918
+ // instead.
1919
+ OPENSSL_EXPORT EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a);
1920
+
1921
+ // The following functions behave like the corresponding unsuffixed |i2d_*|
1922
+ // functions, but write the result to |bp|. They return one on success and zero
1923
+ // on error. Callers using them with memory |BIO|s to encode structures to
1924
+ // memory should use |i2d_*| directly instead.
1925
+ OPENSSL_EXPORT int i2d_X509_bio(BIO *bp, X509 *x509);
1926
+ OPENSSL_EXPORT int i2d_X509_CRL_bio(BIO *bp, X509_CRL *crl);
1927
+ OPENSSL_EXPORT int i2d_X509_REQ_bio(BIO *bp, X509_REQ *req);
1928
+ OPENSSL_EXPORT int i2d_RSAPrivateKey_bio(BIO *bp, RSA *rsa);
1929
+ OPENSSL_EXPORT int i2d_RSAPublicKey_bio(BIO *bp, RSA *rsa);
1930
+ OPENSSL_EXPORT int i2d_RSA_PUBKEY_bio(BIO *bp, RSA *rsa);
1931
+ OPENSSL_EXPORT int i2d_DSA_PUBKEY_bio(BIO *bp, DSA *dsa);
1932
+ OPENSSL_EXPORT int i2d_DSAPrivateKey_bio(BIO *bp, DSA *dsa);
1933
+ OPENSSL_EXPORT int i2d_EC_PUBKEY_bio(BIO *bp, EC_KEY *eckey);
1934
+ OPENSSL_EXPORT int i2d_ECPrivateKey_bio(BIO *bp, EC_KEY *eckey);
1935
+ OPENSSL_EXPORT int i2d_PKCS8_bio(BIO *bp, X509_SIG *p8);
724
1936
  OPENSSL_EXPORT int i2d_PKCS8_PRIV_KEY_INFO_bio(BIO *bp,
725
1937
  PKCS8_PRIV_KEY_INFO *p8inf);
726
- OPENSSL_EXPORT int i2d_PKCS8PrivateKeyInfo_bio(BIO *bp, EVP_PKEY *key);
727
1938
  OPENSSL_EXPORT int i2d_PrivateKey_bio(BIO *bp, EVP_PKEY *pkey);
728
- OPENSSL_EXPORT EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a);
729
1939
  OPENSSL_EXPORT int i2d_PUBKEY_bio(BIO *bp, EVP_PKEY *pkey);
730
- OPENSSL_EXPORT EVP_PKEY *d2i_PUBKEY_bio(BIO *bp, EVP_PKEY **a);
731
- OPENSSL_EXPORT DH *d2i_DHparams_bio(BIO *bp, DH **dh);
732
1940
  OPENSSL_EXPORT int i2d_DHparams_bio(BIO *bp, const DH *dh);
733
1941
 
734
- OPENSSL_EXPORT X509 *X509_dup(X509 *x509);
735
- OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_dup(X509_ATTRIBUTE *xa);
736
- OPENSSL_EXPORT X509_EXTENSION *X509_EXTENSION_dup(X509_EXTENSION *ex);
737
- OPENSSL_EXPORT X509_CRL *X509_CRL_dup(X509_CRL *crl);
738
- OPENSSL_EXPORT X509_REVOKED *X509_REVOKED_dup(X509_REVOKED *rev);
739
- OPENSSL_EXPORT X509_REQ *X509_REQ_dup(X509_REQ *req);
740
- OPENSSL_EXPORT X509_ALGOR *X509_ALGOR_dup(X509_ALGOR *xn);
741
-
742
- // X509_ALGOR_set0 sets |alg| to an AlgorithmIdentifier with algorithm |obj| and
743
- // parameter determined by |param_type| and |param_value|. It returns one on
744
- // success and zero on error. This function takes ownership of |obj| and
745
- // |param_value| on success.
746
- //
747
- // If |param_type| is |V_ASN1_UNDEF|, the parameter is omitted. If |param_type|
748
- // is zero, the parameter is left unchanged. Otherwise, |param_type| and
749
- // |param_value| are interpreted as in |ASN1_TYPE_set|.
750
- //
751
- // Note omitting the parameter (|V_ASN1_UNDEF|) and encoding an explicit NULL
752
- // value (|V_ASN1_NULL|) are different. Some algorithms require one and some the
753
- // other. Consult the relevant specification before calling this function. The
754
- // correct parameter for an RSASSA-PKCS1-v1_5 signature is |V_ASN1_NULL|. The
755
- // correct one for an ECDSA or Ed25519 signature is |V_ASN1_UNDEF|.
756
- OPENSSL_EXPORT int X509_ALGOR_set0(X509_ALGOR *alg, ASN1_OBJECT *obj,
757
- int param_type, void *param_value);
758
-
759
- // X509_ALGOR_get0 sets |*out_obj| to the |alg|'s algorithm. If |alg|'s
760
- // parameter is omitted, it sets |*out_param_type| and |*out_param_value| to
761
- // |V_ASN1_UNDEF| and NULL. Otherwise, it sets |*out_param_type| and
762
- // |*out_param_value| to the parameter, using the same representation as
763
- // |ASN1_TYPE_set0|. See |ASN1_TYPE_set0| and |ASN1_TYPE| for details.
764
- //
765
- // Callers that require the parameter in serialized form should, after checking
766
- // for |V_ASN1_UNDEF|, use |ASN1_TYPE_set1| and |d2i_ASN1_TYPE|, rather than
767
- // inspecting |*out_param_value|.
768
- //
769
- // Each of |out_obj|, |out_param_type|, and |out_param_value| may be NULL to
770
- // ignore the output. If |out_param_type| is NULL, |out_param_value| is ignored.
771
- //
772
- // WARNING: If |*out_param_type| is set to |V_ASN1_UNDEF|, OpenSSL and older
773
- // revisions of BoringSSL leave |*out_param_value| unset rather than setting it
774
- // to NULL. Callers that support both OpenSSL and BoringSSL should not assume
775
- // |*out_param_value| is uniformly initialized.
776
- OPENSSL_EXPORT void X509_ALGOR_get0(const ASN1_OBJECT **out_obj,
777
- int *out_param_type,
778
- const void **out_param_value,
779
- const X509_ALGOR *alg);
1942
+ // i2d_PKCS8PrivateKeyInfo_bio encodes |key| as a PKCS#8 PrivateKeyInfo
1943
+ // structure (see |EVP_marshal_private_key|) and writes the result to |bp|. It
1944
+ // returns one on success and zero on error.
1945
+ OPENSSL_EXPORT int i2d_PKCS8PrivateKeyInfo_bio(BIO *bp, EVP_PKEY *key);
780
1946
 
781
- // X509_ALGOR_set_md sets |alg| to the hash function |md|. Note this
782
- // AlgorithmIdentifier represents the hash function itself, not a signature
783
- // algorithm that uses |md|.
784
- OPENSSL_EXPORT void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md);
1947
+ // The following functions behave like the corresponding |d2i_*_bio| functions,
1948
+ // but read from |fp| instead.
1949
+ OPENSSL_EXPORT X509 *d2i_X509_fp(FILE *fp, X509 **x509);
1950
+ OPENSSL_EXPORT X509_CRL *d2i_X509_CRL_fp(FILE *fp, X509_CRL **crl);
1951
+ OPENSSL_EXPORT X509_REQ *d2i_X509_REQ_fp(FILE *fp, X509_REQ **req);
1952
+ OPENSSL_EXPORT RSA *d2i_RSAPrivateKey_fp(FILE *fp, RSA **rsa);
1953
+ OPENSSL_EXPORT RSA *d2i_RSAPublicKey_fp(FILE *fp, RSA **rsa);
1954
+ OPENSSL_EXPORT RSA *d2i_RSA_PUBKEY_fp(FILE *fp, RSA **rsa);
1955
+ OPENSSL_EXPORT DSA *d2i_DSA_PUBKEY_fp(FILE *fp, DSA **dsa);
1956
+ OPENSSL_EXPORT DSA *d2i_DSAPrivateKey_fp(FILE *fp, DSA **dsa);
1957
+ OPENSSL_EXPORT EC_KEY *d2i_EC_PUBKEY_fp(FILE *fp, EC_KEY **eckey);
1958
+ OPENSSL_EXPORT EC_KEY *d2i_ECPrivateKey_fp(FILE *fp, EC_KEY **eckey);
1959
+ OPENSSL_EXPORT X509_SIG *d2i_PKCS8_fp(FILE *fp, X509_SIG **p8);
1960
+ OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *d2i_PKCS8_PRIV_KEY_INFO_fp(
1961
+ FILE *fp, PKCS8_PRIV_KEY_INFO **p8inf);
1962
+ OPENSSL_EXPORT EVP_PKEY *d2i_PrivateKey_fp(FILE *fp, EVP_PKEY **a);
1963
+ OPENSSL_EXPORT EVP_PKEY *d2i_PUBKEY_fp(FILE *fp, EVP_PKEY **a);
785
1964
 
786
- // X509_ALGOR_cmp returns zero if |a| and |b| are equal, and some non-zero value
787
- // otherwise. Note this function can only be used for equality checks, not an
788
- // ordering.
789
- OPENSSL_EXPORT int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b);
1965
+ // The following functions behave like the corresponding |i2d_*_bio| functions,
1966
+ // but write to |fp| instead.
1967
+ OPENSSL_EXPORT int i2d_X509_fp(FILE *fp, X509 *x509);
1968
+ OPENSSL_EXPORT int i2d_X509_CRL_fp(FILE *fp, X509_CRL *crl);
1969
+ OPENSSL_EXPORT int i2d_X509_REQ_fp(FILE *fp, X509_REQ *req);
1970
+ OPENSSL_EXPORT int i2d_RSAPrivateKey_fp(FILE *fp, RSA *rsa);
1971
+ OPENSSL_EXPORT int i2d_RSAPublicKey_fp(FILE *fp, RSA *rsa);
1972
+ OPENSSL_EXPORT int i2d_RSA_PUBKEY_fp(FILE *fp, RSA *rsa);
1973
+ OPENSSL_EXPORT int i2d_DSA_PUBKEY_fp(FILE *fp, DSA *dsa);
1974
+ OPENSSL_EXPORT int i2d_DSAPrivateKey_fp(FILE *fp, DSA *dsa);
1975
+ OPENSSL_EXPORT int i2d_EC_PUBKEY_fp(FILE *fp, EC_KEY *eckey);
1976
+ OPENSSL_EXPORT int i2d_ECPrivateKey_fp(FILE *fp, EC_KEY *eckey);
1977
+ OPENSSL_EXPORT int i2d_PKCS8_fp(FILE *fp, X509_SIG *p8);
1978
+ OPENSSL_EXPORT int i2d_PKCS8_PRIV_KEY_INFO_fp(FILE *fp,
1979
+ PKCS8_PRIV_KEY_INFO *p8inf);
1980
+ OPENSSL_EXPORT int i2d_PKCS8PrivateKeyInfo_fp(FILE *fp, EVP_PKEY *key);
1981
+ OPENSSL_EXPORT int i2d_PrivateKey_fp(FILE *fp, EVP_PKEY *pkey);
1982
+ OPENSSL_EXPORT int i2d_PUBKEY_fp(FILE *fp, EVP_PKEY *pkey);
790
1983
 
791
- OPENSSL_EXPORT X509_NAME *X509_NAME_dup(X509_NAME *xn);
792
- OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_dup(X509_NAME_ENTRY *ne);
793
- OPENSSL_EXPORT int X509_NAME_ENTRY_set(const X509_NAME_ENTRY *ne);
1984
+ // X509_find_by_issuer_and_serial returns the first |X509| in |sk| whose issuer
1985
+ // and serial are |name| and |serial|, respectively. If no match is found, it
1986
+ // returns NULL.
1987
+ OPENSSL_EXPORT X509 *X509_find_by_issuer_and_serial(const STACK_OF(X509) *sk,
1988
+ X509_NAME *name,
1989
+ const ASN1_INTEGER *serial);
794
1990
 
795
- OPENSSL_EXPORT int X509_NAME_get0_der(X509_NAME *nm, const unsigned char **pder,
796
- size_t *pderlen);
1991
+ // X509_find_by_subject returns the first |X509| in |sk| whose subject is
1992
+ // |name|. If no match is found, it returns NULL.
1993
+ OPENSSL_EXPORT X509 *X509_find_by_subject(const STACK_OF(X509) *sk,
1994
+ X509_NAME *name);
797
1995
 
798
1996
  // X509_cmp_time compares |s| against |*t|. On success, it returns a negative
799
1997
  // number if |s| <= |*t| and a positive number if |s| > |*t|. On error, it
@@ -801,7 +1999,15 @@ OPENSSL_EXPORT int X509_NAME_get0_der(X509_NAME *nm, const unsigned char **pder,
801
1999
  //
802
2000
  // WARNING: Unlike most comparison functions, this function returns zero on
803
2001
  // error, not equality.
804
- OPENSSL_EXPORT int X509_cmp_time(const ASN1_TIME *s, time_t *t);
2002
+ OPENSSL_EXPORT int X509_cmp_time(const ASN1_TIME *s, const time_t *t);
2003
+
2004
+ // X509_cmp_time_posix compares |s| against |t|. On success, it returns a
2005
+ // negative number if |s| <= |t| and a positive number if |s| > |t|. On error,
2006
+ // it returns zero.
2007
+ //
2008
+ // WARNING: Unlike most comparison functions, this function returns zero on
2009
+ // error, not equality.
2010
+ OPENSSL_EXPORT int X509_cmp_time_posix(const ASN1_TIME *s, int64_t t);
805
2011
 
806
2012
  // X509_cmp_current_time behaves like |X509_cmp_time| but compares |s| against
807
2013
  // the current time.
@@ -809,430 +2015,318 @@ OPENSSL_EXPORT int X509_cmp_current_time(const ASN1_TIME *s);
809
2015
 
810
2016
  // X509_time_adj calls |X509_time_adj_ex| with |offset_day| equal to zero.
811
2017
  OPENSSL_EXPORT ASN1_TIME *X509_time_adj(ASN1_TIME *s, long offset_sec,
812
- time_t *t);
2018
+ const time_t *t);
813
2019
 
814
2020
  // X509_time_adj_ex behaves like |ASN1_TIME_adj|, but adds an offset to |*t|. If
815
2021
  // |t| is NULL, it uses the current time instead of |*t|.
816
2022
  OPENSSL_EXPORT ASN1_TIME *X509_time_adj_ex(ASN1_TIME *s, int offset_day,
817
- long offset_sec, time_t *t);
2023
+ long offset_sec, const time_t *t);
818
2024
 
819
2025
  // X509_gmtime_adj behaves like |X509_time_adj_ex| but adds |offset_sec| to the
820
2026
  // current time.
821
2027
  OPENSSL_EXPORT ASN1_TIME *X509_gmtime_adj(ASN1_TIME *s, long offset_sec);
822
2028
 
823
- OPENSSL_EXPORT const char *X509_get_default_cert_area(void);
824
- OPENSSL_EXPORT const char *X509_get_default_cert_dir(void);
825
- OPENSSL_EXPORT const char *X509_get_default_cert_file(void);
826
- OPENSSL_EXPORT const char *X509_get_default_cert_dir_env(void);
827
- OPENSSL_EXPORT const char *X509_get_default_cert_file_env(void);
828
- OPENSSL_EXPORT const char *X509_get_default_private_dir(void);
829
-
830
- OPENSSL_EXPORT X509_REQ *X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey,
831
- const EVP_MD *md);
832
-
833
- DECLARE_ASN1_ENCODE_FUNCTIONS(X509_ALGORS, X509_ALGORS, X509_ALGORS)
834
2029
 
835
- DECLARE_ASN1_FUNCTIONS(X509_PUBKEY)
2030
+ // ex_data functions.
2031
+ //
2032
+ // See |ex_data.h| for details.
836
2033
 
837
- // X509_PUBKEY_set serializes |pkey| into a newly-allocated |X509_PUBKEY|
838
- // structure. On success, it frees |*x|, sets |*x| to the new object, and
839
- // returns one. Otherwise, it returns zero.
840
- OPENSSL_EXPORT int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);
2034
+ OPENSSL_EXPORT int X509_get_ex_new_index(long argl, void *argp,
2035
+ CRYPTO_EX_unused *unused,
2036
+ CRYPTO_EX_dup *dup_unused,
2037
+ CRYPTO_EX_free *free_func);
2038
+ OPENSSL_EXPORT int X509_set_ex_data(X509 *r, int idx, void *arg);
2039
+ OPENSSL_EXPORT void *X509_get_ex_data(X509 *r, int idx);
841
2040
 
842
- // X509_PUBKEY_get decodes the public key in |key| and returns an |EVP_PKEY| on
843
- // success, or NULL on error. The caller must release the result with
844
- // |EVP_PKEY_free| when done. The |EVP_PKEY| is cached in |key|, so callers must
845
- // not mutate the result.
846
- OPENSSL_EXPORT EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key);
2041
+ OPENSSL_EXPORT int X509_STORE_CTX_get_ex_new_index(long argl, void *argp,
2042
+ CRYPTO_EX_unused *unused,
2043
+ CRYPTO_EX_dup *dup_unused,
2044
+ CRYPTO_EX_free *free_func);
2045
+ OPENSSL_EXPORT int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx,
2046
+ void *data);
2047
+ OPENSSL_EXPORT void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx, int idx);
847
2048
 
848
- DECLARE_ASN1_FUNCTIONS(X509_SIG)
849
- DECLARE_ASN1_FUNCTIONS(X509_REQ)
850
2049
 
851
- DECLARE_ASN1_FUNCTIONS(X509_ATTRIBUTE)
2050
+ // Deprecated functions.
852
2051
 
853
- // X509_ATTRIBUTE_create returns a newly-allocated |X509_ATTRIBUTE|, or NULL on
854
- // error. The attribute has type |nid| and contains a single value determined by
855
- // |attrtype| and |value|, which are interpreted as in |ASN1_TYPE_set|. Note
856
- // this function takes ownership of |value|.
857
- OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int attrtype,
858
- void *value);
2052
+ // X509_get_notBefore returns |x509|'s notBefore time. Note this function is not
2053
+ // const-correct for legacy reasons. Use |X509_get0_notBefore| or
2054
+ // |X509_getm_notBefore| instead.
2055
+ OPENSSL_EXPORT ASN1_TIME *X509_get_notBefore(const X509 *x509);
859
2056
 
860
- DECLARE_ASN1_FUNCTIONS(X509_EXTENSION)
861
- DECLARE_ASN1_ENCODE_FUNCTIONS(X509_EXTENSIONS, X509_EXTENSIONS, X509_EXTENSIONS)
2057
+ // X509_get_notAfter returns |x509|'s notAfter time. Note this function is not
2058
+ // const-correct for legacy reasons. Use |X509_get0_notAfter| or
2059
+ // |X509_getm_notAfter| instead.
2060
+ OPENSSL_EXPORT ASN1_TIME *X509_get_notAfter(const X509 *x509);
862
2061
 
863
- DECLARE_ASN1_FUNCTIONS(X509_NAME_ENTRY)
2062
+ // X509_set_notBefore calls |X509_set1_notBefore|. Use |X509_set1_notBefore|
2063
+ // instead.
2064
+ OPENSSL_EXPORT int X509_set_notBefore(X509 *x509, const ASN1_TIME *tm);
864
2065
 
865
- DECLARE_ASN1_FUNCTIONS(X509_NAME)
2066
+ // X509_set_notAfter calls |X509_set1_notAfter|. Use |X509_set1_notAfter|
2067
+ // instead.
2068
+ OPENSSL_EXPORT int X509_set_notAfter(X509 *x509, const ASN1_TIME *tm);
866
2069
 
867
- // X509_NAME_set makes a copy of |name|. On success, it frees |*xn|, sets |*xn|
868
- // to the copy, and returns one. Otherwise, it returns zero.
869
- OPENSSL_EXPORT int X509_NAME_set(X509_NAME **xn, X509_NAME *name);
2070
+ // X509_CRL_get_lastUpdate returns a mutable pointer to |crl|'s thisUpdate time.
2071
+ // The OpenSSL API refers to this field as lastUpdate.
2072
+ //
2073
+ // Use |X509_CRL_get0_lastUpdate| or |X509_CRL_set1_lastUpdate| instead.
2074
+ OPENSSL_EXPORT ASN1_TIME *X509_CRL_get_lastUpdate(X509_CRL *crl);
870
2075
 
871
- DECLARE_ASN1_FUNCTIONS(X509)
872
- DECLARE_ASN1_FUNCTIONS(X509_CERT_AUX)
2076
+ // X509_CRL_get_nextUpdate returns a mutable pointer to |crl|'s nextUpdate time,
2077
+ // or NULL if |crl| has none. Use |X509_CRL_get0_nextUpdate| or
2078
+ // |X509_CRL_set1_nextUpdate| instead.
2079
+ OPENSSL_EXPORT ASN1_TIME *X509_CRL_get_nextUpdate(X509_CRL *crl);
873
2080
 
874
- // X509_up_ref adds one to the reference count of |x509| and returns one.
875
- OPENSSL_EXPORT int X509_up_ref(X509 *x509);
2081
+ // X509_extract_key is a legacy alias to |X509_get_pubkey|. Use
2082
+ // |X509_get_pubkey| instead.
2083
+ #define X509_extract_key(x) X509_get_pubkey(x)
876
2084
 
877
- OPENSSL_EXPORT int X509_get_ex_new_index(long argl, void *argp,
878
- CRYPTO_EX_unused *unused,
879
- CRYPTO_EX_dup *dup_unused,
880
- CRYPTO_EX_free *free_func);
881
- OPENSSL_EXPORT int X509_set_ex_data(X509 *r, int idx, void *arg);
882
- OPENSSL_EXPORT void *X509_get_ex_data(X509 *r, int idx);
883
- OPENSSL_EXPORT int i2d_X509_AUX(X509 *a, unsigned char **pp);
884
- OPENSSL_EXPORT X509 *d2i_X509_AUX(X509 **a, const unsigned char **pp,
885
- long length);
2085
+ // X509_REQ_extract_key is a legacy alias for |X509_REQ_get_pubkey|.
2086
+ #define X509_REQ_extract_key(a) X509_REQ_get_pubkey(a)
886
2087
 
887
- // i2d_re_X509_tbs serializes the TBSCertificate portion of |x509|, as described
888
- // in |i2d_SAMPLE|.
889
- //
890
- // This function re-encodes the TBSCertificate and may not reflect |x509|'s
891
- // original encoding. It may be used to manually generate a signature for a new
892
- // certificate. To verify certificates, use |i2d_X509_tbs| instead.
893
- OPENSSL_EXPORT int i2d_re_X509_tbs(X509 *x509, unsigned char **outp);
2088
+ // X509_name_cmp is a legacy alias for |X509_NAME_cmp|.
2089
+ #define X509_name_cmp(a, b) X509_NAME_cmp((a), (b))
894
2090
 
895
- // i2d_X509_tbs serializes the TBSCertificate portion of |x509|, as described in
896
- // |i2d_SAMPLE|.
897
- //
898
- // This function preserves the original encoding of the TBSCertificate and may
899
- // not reflect modifications made to |x509|. It may be used to manually verify
900
- // the signature of an existing certificate. To generate certificates, use
901
- // |i2d_re_X509_tbs| instead.
902
- OPENSSL_EXPORT int i2d_X509_tbs(X509 *x509, unsigned char **outp);
2091
+ // The following symbols are deprecated aliases to |X509_CRL_set1_*|.
2092
+ #define X509_CRL_set_lastUpdate X509_CRL_set1_lastUpdate
2093
+ #define X509_CRL_set_nextUpdate X509_CRL_set1_nextUpdate
903
2094
 
904
- // X509_set1_signature_algo sets |x509|'s signature algorithm to |algo| and
905
- // returns one on success or zero on error. It updates both the signature field
906
- // of the TBSCertificate structure, and the signatureAlgorithm field of the
907
- // Certificate.
908
- OPENSSL_EXPORT int X509_set1_signature_algo(X509 *x509, const X509_ALGOR *algo);
2095
+ // X509_get_serialNumber returns a mutable pointer to |x509|'s serial number.
2096
+ // Prefer |X509_get0_serialNumber|.
2097
+ OPENSSL_EXPORT ASN1_INTEGER *X509_get_serialNumber(X509 *x509);
909
2098
 
910
- // X509_set1_signature_value sets |x509|'s signature to a copy of the |sig_len|
911
- // bytes pointed by |sig|. It returns one on success and zero on error.
2099
+ // X509_NAME_get_text_by_OBJ finds the first attribute with type |obj| in
2100
+ // |name|. If found, it ignores the value's ASN.1 type, writes the raw
2101
+ // |ASN1_STRING| representation to |buf|, followed by a NUL byte, and
2102
+ // returns the number of bytes in output, excluding the NUL byte.
912
2103
  //
913
- // Due to a specification error, X.509 certificates store signatures in ASN.1
914
- // BIT STRINGs, but signature algorithms return byte strings rather than bit
915
- // strings. This function creates a BIT STRING containing a whole number of
916
- // bytes, with the bit order matching the DER encoding. This matches the
917
- // encoding used by all X.509 signature algorithms.
918
- OPENSSL_EXPORT int X509_set1_signature_value(X509 *x509, const uint8_t *sig,
919
- size_t sig_len);
920
-
921
- // X509_get0_signature sets |*out_sig| and |*out_alg| to the signature and
922
- // signature algorithm of |x509|, respectively. Either output pointer may be
923
- // NULL to ignore the value.
2104
+ // This function writes at most |len| bytes, including the NUL byte. If |len| is
2105
+ // not large enough, it silently truncates the output to fit. If |buf| is NULL,
2106
+ // it instead writes enough and returns the number of bytes in the output,
2107
+ // excluding the NUL byte.
924
2108
  //
925
- // This function outputs the outer signature algorithm. For the one in the
926
- // TBSCertificate, see |X509_get0_tbs_sigalg|. Certificates with mismatched
927
- // signature algorithms will successfully parse, but they will be rejected when
928
- // verifying.
929
- OPENSSL_EXPORT void X509_get0_signature(const ASN1_BIT_STRING **out_sig,
930
- const X509_ALGOR **out_alg,
931
- const X509 *x509);
2109
+ // WARNING: Do not use this function. It does not return enough information for
2110
+ // the caller to correctly interpret its output. The attribute value may be of
2111
+ // any type, including one of several ASN.1 string encodings, but this function
2112
+ // only outputs the raw |ASN1_STRING| representation. See
2113
+ // https://crbug.com/boringssl/436.
2114
+ OPENSSL_EXPORT int X509_NAME_get_text_by_OBJ(const X509_NAME *name,
2115
+ const ASN1_OBJECT *obj, char *buf,
2116
+ int len);
932
2117
 
933
- // X509_get_signature_nid returns the NID corresponding to |x509|'s signature
934
- // algorithm, or |NID_undef| if the signature algorithm does not correspond to
935
- // a known NID.
936
- OPENSSL_EXPORT int X509_get_signature_nid(const X509 *x509);
2118
+ // X509_NAME_get_text_by_NID behaves like |X509_NAME_get_text_by_OBJ| except it
2119
+ // finds an attribute of type |nid|, which should be one of the |NID_*|
2120
+ // constants.
2121
+ OPENSSL_EXPORT int X509_NAME_get_text_by_NID(const X509_NAME *name, int nid,
2122
+ char *buf, int len);
937
2123
 
938
- OPENSSL_EXPORT int X509_alias_set1(X509 *x, const unsigned char *name, int len);
939
- OPENSSL_EXPORT int X509_keyid_set1(X509 *x, const unsigned char *id, int len);
940
- OPENSSL_EXPORT unsigned char *X509_alias_get0(X509 *x, int *len);
941
- OPENSSL_EXPORT unsigned char *X509_keyid_get0(X509 *x, int *len);
942
- OPENSSL_EXPORT int (*X509_TRUST_set_default(int (*trust)(int, X509 *,
943
- int)))(int, X509 *,
944
- int);
945
- OPENSSL_EXPORT int X509_TRUST_set(int *t, int trust);
946
- OPENSSL_EXPORT int X509_add1_trust_object(X509 *x, ASN1_OBJECT *obj);
947
- OPENSSL_EXPORT int X509_add1_reject_object(X509 *x, ASN1_OBJECT *obj);
948
- OPENSSL_EXPORT void X509_trust_clear(X509 *x);
949
- OPENSSL_EXPORT void X509_reject_clear(X509 *x);
950
2124
 
951
- DECLARE_ASN1_FUNCTIONS(X509_REVOKED)
952
- DECLARE_ASN1_FUNCTIONS(X509_CRL)
2125
+ // Private structures.
953
2126
 
954
- OPENSSL_EXPORT int X509_CRL_add0_revoked(X509_CRL *crl, X509_REVOKED *rev);
955
- OPENSSL_EXPORT int X509_CRL_get0_by_serial(X509_CRL *crl, X509_REVOKED **ret,
956
- ASN1_INTEGER *serial);
957
- OPENSSL_EXPORT int X509_CRL_get0_by_cert(X509_CRL *crl, X509_REVOKED **ret,
958
- X509 *x);
2127
+ struct X509_algor_st {
2128
+ ASN1_OBJECT *algorithm;
2129
+ ASN1_TYPE *parameter;
2130
+ } /* X509_ALGOR */;
959
2131
 
960
- OPENSSL_EXPORT X509_PKEY *X509_PKEY_new(void);
961
- OPENSSL_EXPORT void X509_PKEY_free(X509_PKEY *a);
962
2132
 
963
- DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKI)
964
- DECLARE_ASN1_FUNCTIONS(NETSCAPE_SPKAC)
2133
+ // Functions below this point have not yet been organized into sections.
965
2134
 
966
- OPENSSL_EXPORT X509_INFO *X509_INFO_new(void);
967
- OPENSSL_EXPORT void X509_INFO_free(X509_INFO *a);
968
- OPENSSL_EXPORT char *X509_NAME_oneline(const X509_NAME *a, char *buf, int size);
2135
+ #define X509_FILETYPE_PEM 1
2136
+ #define X509_FILETYPE_ASN1 2
2137
+ #define X509_FILETYPE_DEFAULT 3
969
2138
 
970
- OPENSSL_EXPORT int ASN1_digest(i2d_of_void *i2d, const EVP_MD *type, char *data,
971
- unsigned char *md, unsigned int *len);
2139
+ #define X509v3_KU_DIGITAL_SIGNATURE 0x0080
2140
+ #define X509v3_KU_NON_REPUDIATION 0x0040
2141
+ #define X509v3_KU_KEY_ENCIPHERMENT 0x0020
2142
+ #define X509v3_KU_DATA_ENCIPHERMENT 0x0010
2143
+ #define X509v3_KU_KEY_AGREEMENT 0x0008
2144
+ #define X509v3_KU_KEY_CERT_SIGN 0x0004
2145
+ #define X509v3_KU_CRL_SIGN 0x0002
2146
+ #define X509v3_KU_ENCIPHER_ONLY 0x0001
2147
+ #define X509v3_KU_DECIPHER_ONLY 0x8000
2148
+ #define X509v3_KU_UNDEF 0xffff
972
2149
 
973
- OPENSSL_EXPORT int ASN1_item_digest(const ASN1_ITEM *it, const EVP_MD *type,
974
- void *data, unsigned char *md,
975
- unsigned int *len);
2150
+ // This stuff is certificate "auxiliary info"
2151
+ // it contains details which are useful in certificate
2152
+ // stores and databases. When used this is tagged onto
2153
+ // the end of the certificate itself
976
2154
 
977
- OPENSSL_EXPORT int ASN1_item_verify(const ASN1_ITEM *it,
978
- const X509_ALGOR *algor1,
979
- const ASN1_BIT_STRING *signature,
980
- void *data, EVP_PKEY *pkey);
2155
+ DECLARE_STACK_OF(DIST_POINT)
2156
+ DECLARE_STACK_OF(GENERAL_NAME)
981
2157
 
982
- OPENSSL_EXPORT int ASN1_item_sign(const ASN1_ITEM *it, X509_ALGOR *algor1,
983
- X509_ALGOR *algor2,
984
- ASN1_BIT_STRING *signature, void *data,
985
- EVP_PKEY *pkey, const EVP_MD *type);
986
- OPENSSL_EXPORT int ASN1_item_sign_ctx(const ASN1_ITEM *it, X509_ALGOR *algor1,
987
- X509_ALGOR *algor2,
988
- ASN1_BIT_STRING *signature, void *asn,
989
- EVP_MD_CTX *ctx);
2158
+ // This is used for a table of trust checking functions
990
2159
 
991
- // X509_get_serialNumber returns a mutable pointer to |x509|'s serial number.
992
- // Prefer |X509_get0_serialNumber|.
993
- OPENSSL_EXPORT ASN1_INTEGER *X509_get_serialNumber(X509 *x509);
2160
+ struct x509_trust_st {
2161
+ int trust;
2162
+ int flags;
2163
+ int (*check_trust)(struct x509_trust_st *, X509 *, int);
2164
+ char *name;
2165
+ int arg1;
2166
+ void *arg2;
2167
+ } /* X509_TRUST */;
994
2168
 
995
- // X509_set_issuer_name sets |x509|'s issuer to a copy of |name|. It returns one
996
- // on success and zero on error.
997
- OPENSSL_EXPORT int X509_set_issuer_name(X509 *x509, X509_NAME *name);
2169
+ DEFINE_STACK_OF(X509_TRUST)
998
2170
 
999
- // X509_get_issuer_name returns |x509|'s issuer.
1000
- OPENSSL_EXPORT X509_NAME *X509_get_issuer_name(const X509 *x509);
2171
+ // standard trust ids
1001
2172
 
1002
- // X509_set_subject_name sets |x509|'s subject to a copy of |name|. It returns
1003
- // one on success and zero on error.
1004
- OPENSSL_EXPORT int X509_set_subject_name(X509 *x509, X509_NAME *name);
2173
+ #define X509_TRUST_DEFAULT (-1) // Only valid in purpose settings
1005
2174
 
1006
- // X509_get_issuer_name returns |x509|'s subject.
1007
- OPENSSL_EXPORT X509_NAME *X509_get_subject_name(const X509 *x509);
2175
+ #define X509_TRUST_COMPAT 1
2176
+ #define X509_TRUST_SSL_CLIENT 2
2177
+ #define X509_TRUST_SSL_SERVER 3
2178
+ #define X509_TRUST_EMAIL 4
2179
+ #define X509_TRUST_OBJECT_SIGN 5
2180
+ #define X509_TRUST_OCSP_SIGN 6
2181
+ #define X509_TRUST_OCSP_REQUEST 7
2182
+ #define X509_TRUST_TSA 8
1008
2183
 
1009
- // X509_set_pubkey sets |x509|'s public key to |pkey|. It returns one on success
1010
- // and zero on error. This function does not take ownership of |pkey| and
1011
- // internally copies and updates reference counts as needed.
1012
- OPENSSL_EXPORT int X509_set_pubkey(X509 *x509, EVP_PKEY *pkey);
2184
+ // Keep these up to date!
2185
+ #define X509_TRUST_MIN 1
2186
+ #define X509_TRUST_MAX 8
1013
2187
 
1014
- // X509_get_pubkey returns |x509|'s public key as an |EVP_PKEY|, or NULL if the
1015
- // public key was unsupported or could not be decoded. This function returns a
1016
- // reference to the |EVP_PKEY|. The caller must release the result with
1017
- // |EVP_PKEY_free| when done.
1018
- OPENSSL_EXPORT EVP_PKEY *X509_get_pubkey(X509 *x509);
1019
2188
 
1020
- // X509_get0_pubkey_bitstr returns the BIT STRING portion of |x509|'s public
1021
- // key. Note this does not contain the AlgorithmIdentifier portion.
1022
- //
1023
- // WARNING: This function returns a non-const pointer for OpenSSL compatibility,
1024
- // but the caller must not modify the resulting object. Doing so will break
1025
- // internal invariants in |x509|.
1026
- OPENSSL_EXPORT ASN1_BIT_STRING *X509_get0_pubkey_bitstr(const X509 *x509);
2189
+ // trust_flags values
2190
+ #define X509_TRUST_DYNAMIC 1
2191
+ #define X509_TRUST_DYNAMIC_NAME 2
1027
2192
 
1028
- // X509_get0_extensions returns |x509|'s extension list, or NULL if |x509| omits
1029
- // it.
1030
- OPENSSL_EXPORT const STACK_OF(X509_EXTENSION) *X509_get0_extensions(
1031
- const X509 *x509);
2193
+ // check_trust return codes
1032
2194
 
1033
- // X509_get0_tbs_sigalg returns the signature algorithm in |x509|'s
1034
- // TBSCertificate. For the outer signature algorithm, see |X509_get0_signature|.
1035
- //
1036
- // Certificates with mismatched signature algorithms will successfully parse,
1037
- // but they will be rejected when verifying.
1038
- OPENSSL_EXPORT const X509_ALGOR *X509_get0_tbs_sigalg(const X509 *x509);
2195
+ #define X509_TRUST_TRUSTED 1
2196
+ #define X509_TRUST_REJECTED 2
2197
+ #define X509_TRUST_UNTRUSTED 3
1039
2198
 
1040
- // X509_REQ_set_version sets |req|'s version to |version|, which should be
1041
- // |X509_REQ_VERSION_1|. It returns one on success and zero on error.
1042
- //
1043
- // Note no versions other than |X509_REQ_VERSION_1| are defined for CSRs.
1044
- OPENSSL_EXPORT int X509_REQ_set_version(X509_REQ *req, long version);
2199
+ DEFINE_STACK_OF(X509_REVOKED)
1045
2200
 
1046
- // X509_REQ_set_subject_name sets |req|'s subject to a copy of |name|. It
1047
- // returns one on success and zero on error.
1048
- OPENSSL_EXPORT int X509_REQ_set_subject_name(X509_REQ *req, X509_NAME *name);
2201
+ DECLARE_STACK_OF(GENERAL_NAMES)
1049
2202
 
1050
- // X509_REQ_get0_signature sets |*out_sig| and |*out_alg| to the signature and
1051
- // signature algorithm of |req|, respectively. Either output pointer may be NULL
1052
- // to ignore the value.
1053
- OPENSSL_EXPORT void X509_REQ_get0_signature(const X509_REQ *req,
1054
- const ASN1_BIT_STRING **out_sig,
1055
- const X509_ALGOR **out_alg);
2203
+ struct private_key_st {
2204
+ int version;
2205
+ // The PKCS#8 data types
2206
+ X509_ALGOR *enc_algor;
2207
+ ASN1_OCTET_STRING *enc_pkey; // encrypted pub key
1056
2208
 
1057
- // X509_REQ_get_signature_nid returns the NID corresponding to |req|'s signature
1058
- // algorithm, or |NID_undef| if the signature algorithm does not correspond to
1059
- // a known NID.
1060
- OPENSSL_EXPORT int X509_REQ_get_signature_nid(const X509_REQ *req);
2209
+ // When decrypted, the following will not be NULL
2210
+ EVP_PKEY *dec_pkey;
1061
2211
 
1062
- // i2d_re_X509_REQ_tbs serializes the CertificationRequestInfo (see RFC 2986)
1063
- // portion of |req|, as described in |i2d_SAMPLE|.
1064
- //
1065
- // This function re-encodes the CertificationRequestInfo and may not reflect
1066
- // |req|'s original encoding. It may be used to manually generate a signature
1067
- // for a new certificate request.
1068
- OPENSSL_EXPORT int i2d_re_X509_REQ_tbs(X509_REQ *req, uint8_t **outp);
2212
+ // used to encrypt and decrypt
2213
+ int key_length;
2214
+ char *key_data;
2215
+ int key_free; // true if we should auto free key_data
1069
2216
 
1070
- // X509_REQ_set_pubkey sets |req|'s public key to |pkey|. It returns one on
1071
- // success and zero on error. This function does not take ownership of |pkey|
1072
- // and internally copies and updates reference counts as needed.
1073
- OPENSSL_EXPORT int X509_REQ_set_pubkey(X509_REQ *req, EVP_PKEY *pkey);
2217
+ // expanded version of 'enc_algor'
2218
+ EVP_CIPHER_INFO cipher;
2219
+ } /* X509_PKEY */;
1074
2220
 
1075
- // X509_REQ_get_pubkey returns |req|'s public key as an |EVP_PKEY|, or NULL if
1076
- // the public key was unsupported or could not be decoded. This function returns
1077
- // a reference to the |EVP_PKEY|. The caller must release the result with
1078
- // |EVP_PKEY_free| when done.
1079
- OPENSSL_EXPORT EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req);
2221
+ struct X509_info_st {
2222
+ X509 *x509;
2223
+ X509_CRL *crl;
2224
+ X509_PKEY *x_pkey;
1080
2225
 
1081
- // X509_REQ_extension_nid returns one if |nid| is a supported CSR attribute type
1082
- // for carrying extensions and zero otherwise. The supported types are
1083
- // |NID_ext_req| (pkcs-9-at-extensionRequest from RFC 2985) and |NID_ms_ext_req|
1084
- // (a Microsoft szOID_CERT_EXTENSIONS variant).
1085
- OPENSSL_EXPORT int X509_REQ_extension_nid(int nid);
2226
+ EVP_CIPHER_INFO enc_cipher;
2227
+ int enc_len;
2228
+ char *enc_data;
1086
2229
 
1087
- // X509_REQ_get_extensions decodes the list of requested extensions in |req| and
1088
- // returns a newly-allocated |STACK_OF(X509_EXTENSION)| containing the result.
1089
- // It returns NULL on error, or if |req| did not request extensions.
1090
- //
1091
- // This function supports both pkcs-9-at-extensionRequest from RFC 2985 and the
1092
- // Microsoft szOID_CERT_EXTENSIONS variant.
1093
- OPENSSL_EXPORT STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req);
2230
+ } /* X509_INFO */;
1094
2231
 
1095
- // X509_REQ_add_extensions_nid adds an attribute to |req| of type |nid|, to
1096
- // request the certificate extensions in |exts|. It returns one on success and
1097
- // zero on error. |nid| should be |NID_ext_req| or |NID_ms_ext_req|.
1098
- OPENSSL_EXPORT int X509_REQ_add_extensions_nid(
1099
- X509_REQ *req, const STACK_OF(X509_EXTENSION) *exts, int nid);
2232
+ DEFINE_STACK_OF(X509_INFO)
1100
2233
 
1101
- // X509_REQ_add_extensions behaves like |X509_REQ_add_extensions_nid|, using the
1102
- // standard |NID_ext_req| for the attribute type.
1103
- OPENSSL_EXPORT int X509_REQ_add_extensions(
1104
- X509_REQ *req, const STACK_OF(X509_EXTENSION) *exts);
2234
+ // X509_get_pathlen returns path length constraint from the basic constraints
2235
+ // extension in |x509|. (See RFC 5280, section 4.2.1.9.) It returns -1 if the
2236
+ // constraint is not present, or if some extension in |x509| was invalid.
2237
+ //
2238
+ // Note that decoding an |X509| object will not check for invalid extensions. To
2239
+ // detect the error case, call |X509_get_extensions_flags| and check the
2240
+ // |EXFLAG_INVALID| bit.
2241
+ OPENSSL_EXPORT long X509_get_pathlen(X509 *x509);
1105
2242
 
1106
- // X509_REQ_get_attr_count returns the number of attributes in |req|.
1107
- OPENSSL_EXPORT int X509_REQ_get_attr_count(const X509_REQ *req);
2243
+ // X509_SIG_get0 sets |*out_alg| and |*out_digest| to non-owning pointers to
2244
+ // |sig|'s algorithm and digest fields, respectively. Either |out_alg| and
2245
+ // |out_digest| may be NULL to skip those fields.
2246
+ OPENSSL_EXPORT void X509_SIG_get0(const X509_SIG *sig,
2247
+ const X509_ALGOR **out_alg,
2248
+ const ASN1_OCTET_STRING **out_digest);
1108
2249
 
1109
- // X509_REQ_get_attr_by_NID returns the index of the attribute in |req| of type
1110
- // |nid|, or a negative number if not found. If found, callers can use
1111
- // |X509_REQ_get_attr| to look up the attribute by index.
1112
- //
1113
- // If |lastpos| is non-negative, it begins searching at |lastpos| + 1. Callers
1114
- // can thus loop over all matching attributes by first passing -1 and then
1115
- // passing the previously-returned value until no match is returned.
1116
- OPENSSL_EXPORT int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid,
1117
- int lastpos);
2250
+ // X509_SIG_getm behaves like |X509_SIG_get0| but returns mutable pointers.
2251
+ OPENSSL_EXPORT void X509_SIG_getm(X509_SIG *sig, X509_ALGOR **out_alg,
2252
+ ASN1_OCTET_STRING **out_digest);
1118
2253
 
1119
- // X509_REQ_get_attr_by_OBJ behaves like |X509_REQ_get_attr_by_NID| but looks
1120
- // for attributes of type |obj|.
1121
- OPENSSL_EXPORT int X509_REQ_get_attr_by_OBJ(const X509_REQ *req,
1122
- const ASN1_OBJECT *obj,
1123
- int lastpos);
2254
+ // X509_verify_cert_error_string returns |err| as a human-readable string, where
2255
+ // |err| should be one of the |X509_V_*| values. If |err| is unknown, it returns
2256
+ // a default description.
2257
+ OPENSSL_EXPORT const char *X509_verify_cert_error_string(long err);
1124
2258
 
1125
- // X509_REQ_get_attr returns the attribute at index |loc| in |req|, or NULL if
1126
- // out of bounds.
1127
- OPENSSL_EXPORT X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc);
2259
+ // X509_REVOKED_dup returns a newly-allocated copy of |rev|, or NULL on error.
2260
+ // This function works by serializing the structure, so if |rev| is incomplete,
2261
+ // it may fail.
2262
+ OPENSSL_EXPORT X509_REVOKED *X509_REVOKED_dup(const X509_REVOKED *rev);
1128
2263
 
1129
- // X509_REQ_delete_attr removes the attribute at index |loc| in |req|. It
1130
- // returns the removed attribute to the caller, or NULL if |loc| was out of
1131
- // bounds. If non-NULL, the caller must release the result with
1132
- // |X509_ATTRIBUTE_free| when done. It is also safe, but not necessary, to call
1133
- // |X509_ATTRIBUTE_free| if the result is NULL.
1134
- OPENSSL_EXPORT X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc);
2264
+ OPENSSL_EXPORT const char *X509_get_default_cert_area(void);
2265
+ OPENSSL_EXPORT const char *X509_get_default_cert_dir(void);
2266
+ OPENSSL_EXPORT const char *X509_get_default_cert_file(void);
2267
+ OPENSSL_EXPORT const char *X509_get_default_cert_dir_env(void);
2268
+ OPENSSL_EXPORT const char *X509_get_default_cert_file_env(void);
2269
+ OPENSSL_EXPORT const char *X509_get_default_private_dir(void);
1135
2270
 
1136
- // X509_REQ_add1_attr appends a copy of |attr| to |req|'s list of attributes. It
1137
- // returns one on success and zero on error.
1138
- //
1139
- // TODO(https://crbug.com/boringssl/407): |attr| should be const.
1140
- OPENSSL_EXPORT int X509_REQ_add1_attr(X509_REQ *req, X509_ATTRIBUTE *attr);
2271
+ DECLARE_ASN1_FUNCTIONS_const(X509_PUBKEY)
1141
2272
 
1142
- // X509_REQ_add1_attr_by_OBJ appends a new attribute to |req| with type |obj|.
1143
- // It returns one on success and zero on error. The value is determined by
1144
- // |X509_ATTRIBUTE_set1_data|.
1145
- //
1146
- // WARNING: The interpretation of |attrtype|, |data|, and |len| is complex and
1147
- // error-prone. See |X509_ATTRIBUTE_set1_data| for details.
1148
- OPENSSL_EXPORT int X509_REQ_add1_attr_by_OBJ(X509_REQ *req,
1149
- const ASN1_OBJECT *obj,
1150
- int attrtype,
1151
- const unsigned char *data,
1152
- int len);
2273
+ // X509_PUBKEY_set serializes |pkey| into a newly-allocated |X509_PUBKEY|
2274
+ // structure. On success, it frees |*x|, sets |*x| to the new object, and
2275
+ // returns one. Otherwise, it returns zero.
2276
+ OPENSSL_EXPORT int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);
1153
2277
 
1154
- // X509_REQ_add1_attr_by_NID behaves like |X509_REQ_add1_attr_by_OBJ| except the
1155
- // attribute type is determined by |nid|.
1156
- OPENSSL_EXPORT int X509_REQ_add1_attr_by_NID(X509_REQ *req, int nid,
1157
- int attrtype,
1158
- const unsigned char *data,
1159
- int len);
2278
+ // X509_PUBKEY_get decodes the public key in |key| and returns an |EVP_PKEY| on
2279
+ // success, or NULL on error. The caller must release the result with
2280
+ // |EVP_PKEY_free| when done. The |EVP_PKEY| is cached in |key|, so callers must
2281
+ // not mutate the result.
2282
+ OPENSSL_EXPORT EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key);
1160
2283
 
1161
- // X509_REQ_add1_attr_by_txt behaves like |X509_REQ_add1_attr_by_OBJ| except the
1162
- // attribute type is determined by calling |OBJ_txt2obj| with |attrname|.
1163
- OPENSSL_EXPORT int X509_REQ_add1_attr_by_txt(X509_REQ *req,
1164
- const char *attrname, int attrtype,
1165
- const unsigned char *data,
1166
- int len);
2284
+ DECLARE_ASN1_FUNCTIONS_const(X509_SIG)
1167
2285
 
1168
- // X509_CRL_set_version sets |crl|'s version to |version|, which should be one
1169
- // of the |X509_CRL_VERSION_*| constants. It returns one on success and zero on
1170
- // error.
1171
- //
1172
- // If unsure, use |X509_CRL_VERSION_2|. Note that, unlike certificates, CRL
1173
- // versions are only defined up to v2. Callers should not use |X509_VERSION_3|.
1174
- OPENSSL_EXPORT int X509_CRL_set_version(X509_CRL *crl, long version);
2286
+ OPENSSL_EXPORT int X509_add1_trust_object(X509 *x, ASN1_OBJECT *obj);
2287
+ OPENSSL_EXPORT int X509_add1_reject_object(X509 *x, ASN1_OBJECT *obj);
2288
+ OPENSSL_EXPORT void X509_trust_clear(X509 *x);
2289
+ OPENSSL_EXPORT void X509_reject_clear(X509 *x);
1175
2290
 
1176
- // X509_CRL_set_issuer_name sets |crl|'s issuer to a copy of |name|. It returns
1177
- // one on success and zero on error.
1178
- OPENSSL_EXPORT int X509_CRL_set_issuer_name(X509_CRL *crl, X509_NAME *name);
1179
2291
 
1180
- OPENSSL_EXPORT int X509_CRL_sort(X509_CRL *crl);
2292
+ OPENSSL_EXPORT int X509_TRUST_set(int *t, int trust);
1181
2293
 
1182
- // X509_CRL_up_ref adds one to the reference count of |crl| and returns one.
1183
- OPENSSL_EXPORT int X509_CRL_up_ref(X509_CRL *crl);
2294
+ DECLARE_ASN1_FUNCTIONS_const(X509_REVOKED)
1184
2295
 
1185
- // X509_CRL_get0_signature sets |*out_sig| and |*out_alg| to the signature and
1186
- // signature algorithm of |crl|, respectively. Either output pointer may be NULL
1187
- // to ignore the value.
1188
- //
1189
- // This function outputs the outer signature algorithm, not the one in the
1190
- // TBSCertList. CRLs with mismatched signature algorithms will successfully
1191
- // parse, but they will be rejected when verifying.
1192
- OPENSSL_EXPORT void X509_CRL_get0_signature(const X509_CRL *crl,
1193
- const ASN1_BIT_STRING **out_sig,
1194
- const X509_ALGOR **out_alg);
2296
+ OPENSSL_EXPORT int X509_CRL_add0_revoked(X509_CRL *crl, X509_REVOKED *rev);
2297
+ OPENSSL_EXPORT int X509_CRL_get0_by_serial(X509_CRL *crl, X509_REVOKED **ret,
2298
+ ASN1_INTEGER *serial);
2299
+ OPENSSL_EXPORT int X509_CRL_get0_by_cert(X509_CRL *crl, X509_REVOKED **ret,
2300
+ X509 *x);
1195
2301
 
1196
- // X509_CRL_get_signature_nid returns the NID corresponding to |crl|'s signature
1197
- // algorithm, or |NID_undef| if the signature algorithm does not correspond to
1198
- // a known NID.
1199
- OPENSSL_EXPORT int X509_CRL_get_signature_nid(const X509_CRL *crl);
2302
+ OPENSSL_EXPORT X509_PKEY *X509_PKEY_new(void);
2303
+ OPENSSL_EXPORT void X509_PKEY_free(X509_PKEY *a);
1200
2304
 
1201
- // i2d_re_X509_CRL_tbs serializes the TBSCertList portion of |crl|, as described
1202
- // in |i2d_SAMPLE|.
1203
- //
1204
- // This function re-encodes the TBSCertList and may not reflect |crl|'s original
1205
- // encoding. It may be used to manually generate a signature for a new CRL. To
1206
- // verify CRLs, use |i2d_X509_CRL_tbs| instead.
1207
- OPENSSL_EXPORT int i2d_re_X509_CRL_tbs(X509_CRL *crl, unsigned char **outp);
2305
+ OPENSSL_EXPORT X509_INFO *X509_INFO_new(void);
2306
+ OPENSSL_EXPORT void X509_INFO_free(X509_INFO *a);
1208
2307
 
1209
- // i2d_X509_CRL_tbs serializes the TBSCertList portion of |crl|, as described in
1210
- // |i2d_SAMPLE|.
1211
- //
1212
- // This function preserves the original encoding of the TBSCertList and may not
1213
- // reflect modifications made to |crl|. It may be used to manually verify the
1214
- // signature of an existing CRL. To generate CRLs, use |i2d_re_X509_CRL_tbs|
1215
- // instead.
1216
- OPENSSL_EXPORT int i2d_X509_CRL_tbs(X509_CRL *crl, unsigned char **outp);
2308
+ OPENSSL_EXPORT int ASN1_digest(i2d_of_void *i2d, const EVP_MD *type, char *data,
2309
+ unsigned char *md, unsigned int *len);
1217
2310
 
1218
- // X509_CRL_set1_signature_algo sets |crl|'s signature algorithm to |algo| and
1219
- // returns one on success or zero on error. It updates both the signature field
1220
- // of the TBSCertList structure, and the signatureAlgorithm field of the CRL.
1221
- OPENSSL_EXPORT int X509_CRL_set1_signature_algo(X509_CRL *crl,
1222
- const X509_ALGOR *algo);
2311
+ OPENSSL_EXPORT int ASN1_item_digest(const ASN1_ITEM *it, const EVP_MD *type,
2312
+ void *data, unsigned char *md,
2313
+ unsigned int *len);
1223
2314
 
1224
- // X509_CRL_set1_signature_value sets |crl|'s signature to a copy of the
1225
- // |sig_len| bytes pointed by |sig|. It returns one on success and zero on
1226
- // error.
1227
- //
1228
- // Due to a specification error, X.509 CRLs store signatures in ASN.1 BIT
1229
- // STRINGs, but signature algorithms return byte strings rather than bit
1230
- // strings. This function creates a BIT STRING containing a whole number of
1231
- // bytes, with the bit order matching the DER encoding. This matches the
1232
- // encoding used by all X.509 signature algorithms.
1233
- OPENSSL_EXPORT int X509_CRL_set1_signature_value(X509_CRL *crl,
1234
- const uint8_t *sig,
1235
- size_t sig_len);
2315
+ OPENSSL_EXPORT int ASN1_item_verify(const ASN1_ITEM *it,
2316
+ const X509_ALGOR *algor1,
2317
+ const ASN1_BIT_STRING *signature,
2318
+ void *data, EVP_PKEY *pkey);
2319
+
2320
+ OPENSSL_EXPORT int ASN1_item_sign(const ASN1_ITEM *it, X509_ALGOR *algor1,
2321
+ X509_ALGOR *algor2,
2322
+ ASN1_BIT_STRING *signature, void *data,
2323
+ EVP_PKEY *pkey, const EVP_MD *type);
2324
+ OPENSSL_EXPORT int ASN1_item_sign_ctx(const ASN1_ITEM *it, X509_ALGOR *algor1,
2325
+ X509_ALGOR *algor2,
2326
+ ASN1_BIT_STRING *signature, void *asn,
2327
+ EVP_MD_CTX *ctx);
2328
+
2329
+ OPENSSL_EXPORT int X509_CRL_sort(X509_CRL *crl);
1236
2330
 
1237
2331
  // X509_REVOKED_get0_serialNumber returns the serial number of the certificate
1238
2332
  // revoked by |revoked|.
@@ -1252,206 +2346,37 @@ OPENSSL_EXPORT const ASN1_TIME *X509_REVOKED_get0_revocationDate(
1252
2346
  // X509_REVOKED_set_revocationDate sets |revoked|'s revocation time to |tm|. It
1253
2347
  // returns one on success or zero on error.
1254
2348
  OPENSSL_EXPORT int X509_REVOKED_set_revocationDate(X509_REVOKED *revoked,
1255
- const ASN1_TIME *tm);
1256
-
1257
- // X509_REVOKED_get0_extensions returns |r|'s extensions list, or NULL if |r|
1258
- // omits it.
1259
- OPENSSL_EXPORT const STACK_OF(X509_EXTENSION) *X509_REVOKED_get0_extensions(
1260
- const X509_REVOKED *r);
1261
-
1262
- OPENSSL_EXPORT X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer,
1263
- EVP_PKEY *skey, const EVP_MD *md,
1264
- unsigned int flags);
1265
-
1266
- OPENSSL_EXPORT int X509_REQ_check_private_key(X509_REQ *x509, EVP_PKEY *pkey);
1267
-
1268
- OPENSSL_EXPORT int X509_check_private_key(X509 *x509, const EVP_PKEY *pkey);
1269
- OPENSSL_EXPORT int X509_chain_check_suiteb(int *perror_depth, X509 *x,
1270
- STACK_OF(X509) *chain,
1271
- unsigned long flags);
1272
- OPENSSL_EXPORT int X509_CRL_check_suiteb(X509_CRL *crl, EVP_PKEY *pk,
1273
- unsigned long flags);
1274
-
1275
- // X509_chain_up_ref returns a newly-allocated |STACK_OF(X509)| containing a
1276
- // shallow copy of |chain|, or NULL on error. That is, the return value has the
1277
- // same contents as |chain|, and each |X509|'s reference count is incremented by
1278
- // one.
1279
- OPENSSL_EXPORT STACK_OF(X509) *X509_chain_up_ref(STACK_OF(X509) *chain);
1280
-
1281
- OPENSSL_EXPORT int X509_issuer_and_serial_cmp(const X509 *a, const X509 *b);
1282
-
1283
- OPENSSL_EXPORT int X509_issuer_name_cmp(const X509 *a, const X509 *b);
1284
- OPENSSL_EXPORT unsigned long X509_issuer_name_hash(X509 *a);
1285
-
1286
- OPENSSL_EXPORT int X509_subject_name_cmp(const X509 *a, const X509 *b);
1287
- OPENSSL_EXPORT unsigned long X509_subject_name_hash(X509 *x);
1288
-
1289
- OPENSSL_EXPORT unsigned long X509_issuer_name_hash_old(X509 *a);
1290
- OPENSSL_EXPORT unsigned long X509_subject_name_hash_old(X509 *x);
1291
-
1292
- OPENSSL_EXPORT int X509_cmp(const X509 *a, const X509 *b);
1293
- OPENSSL_EXPORT int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b);
1294
- OPENSSL_EXPORT unsigned long X509_NAME_hash(X509_NAME *x);
1295
- OPENSSL_EXPORT unsigned long X509_NAME_hash_old(X509_NAME *x);
1296
-
1297
- OPENSSL_EXPORT int X509_CRL_cmp(const X509_CRL *a, const X509_CRL *b);
1298
- OPENSSL_EXPORT int X509_CRL_match(const X509_CRL *a, const X509_CRL *b);
1299
- OPENSSL_EXPORT int X509_print_ex_fp(FILE *bp, X509 *x, unsigned long nmflag,
1300
- unsigned long cflag);
1301
- OPENSSL_EXPORT int X509_print_fp(FILE *bp, X509 *x);
1302
- OPENSSL_EXPORT int X509_CRL_print_fp(FILE *bp, X509_CRL *x);
1303
- OPENSSL_EXPORT int X509_REQ_print_fp(FILE *bp, X509_REQ *req);
1304
- OPENSSL_EXPORT int X509_NAME_print_ex_fp(FILE *fp, const X509_NAME *nm,
1305
- int indent, unsigned long flags);
1306
-
1307
- OPENSSL_EXPORT int X509_NAME_print(BIO *bp, const X509_NAME *name, int obase);
1308
- OPENSSL_EXPORT int X509_NAME_print_ex(BIO *out, const X509_NAME *nm, int indent,
1309
- unsigned long flags);
1310
- OPENSSL_EXPORT int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflag,
1311
- unsigned long cflag);
1312
- OPENSSL_EXPORT int X509_print(BIO *bp, X509 *x);
1313
- OPENSSL_EXPORT int X509_ocspid_print(BIO *bp, X509 *x);
1314
- OPENSSL_EXPORT int X509_CERT_AUX_print(BIO *bp, X509_CERT_AUX *x, int indent);
1315
- OPENSSL_EXPORT int X509_CRL_print(BIO *bp, X509_CRL *x);
1316
- OPENSSL_EXPORT int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflag,
1317
- unsigned long cflag);
1318
- OPENSSL_EXPORT int X509_REQ_print(BIO *bp, X509_REQ *req);
1319
-
1320
- OPENSSL_EXPORT int X509_NAME_entry_count(const X509_NAME *name);
1321
- OPENSSL_EXPORT int X509_NAME_get_text_by_NID(const X509_NAME *name, int nid,
1322
- char *buf, int len);
1323
- OPENSSL_EXPORT int X509_NAME_get_text_by_OBJ(const X509_NAME *name,
1324
- const ASN1_OBJECT *obj, char *buf,
1325
- int len);
1326
-
1327
- // NOTE: you should be passsing -1, not 0 as lastpos. The functions that use
1328
- // lastpos, search after that position on.
1329
- OPENSSL_EXPORT int X509_NAME_get_index_by_NID(const X509_NAME *name, int nid,
1330
- int lastpos);
1331
- OPENSSL_EXPORT int X509_NAME_get_index_by_OBJ(const X509_NAME *name,
1332
- const ASN1_OBJECT *obj,
1333
- int lastpos);
1334
- OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_get_entry(const X509_NAME *name,
1335
- int loc);
1336
- OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_delete_entry(X509_NAME *name,
1337
- int loc);
1338
- OPENSSL_EXPORT int X509_NAME_add_entry(X509_NAME *name, X509_NAME_ENTRY *ne,
1339
- int loc, int set);
1340
- OPENSSL_EXPORT int X509_NAME_add_entry_by_OBJ(X509_NAME *name, ASN1_OBJECT *obj,
1341
- int type,
1342
- const unsigned char *bytes,
1343
- int len, int loc, int set);
1344
- OPENSSL_EXPORT int X509_NAME_add_entry_by_NID(X509_NAME *name, int nid,
1345
- int type,
1346
- const unsigned char *bytes,
1347
- int len, int loc, int set);
1348
- OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_txt(
1349
- X509_NAME_ENTRY **ne, const char *field, int type,
1350
- const unsigned char *bytes, int len);
1351
- OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_NID(
1352
- X509_NAME_ENTRY **ne, int nid, int type, const unsigned char *bytes,
1353
- int len);
1354
- OPENSSL_EXPORT int X509_NAME_add_entry_by_txt(X509_NAME *name,
1355
- const char *field, int type,
1356
- const unsigned char *bytes,
1357
- int len, int loc, int set);
1358
- OPENSSL_EXPORT X509_NAME_ENTRY *X509_NAME_ENTRY_create_by_OBJ(
1359
- X509_NAME_ENTRY **ne, const ASN1_OBJECT *obj, int type,
1360
- const unsigned char *bytes, int len);
1361
- OPENSSL_EXPORT int X509_NAME_ENTRY_set_object(X509_NAME_ENTRY *ne,
1362
- const ASN1_OBJECT *obj);
1363
- OPENSSL_EXPORT int X509_NAME_ENTRY_set_data(X509_NAME_ENTRY *ne, int type,
1364
- const unsigned char *bytes,
1365
- int len);
1366
- OPENSSL_EXPORT ASN1_OBJECT *X509_NAME_ENTRY_get_object(
1367
- const X509_NAME_ENTRY *ne);
1368
- OPENSSL_EXPORT ASN1_STRING *X509_NAME_ENTRY_get_data(const X509_NAME_ENTRY *ne);
1369
-
1370
- // X509v3_get_ext_count returns the number of extensions in |x|.
1371
- OPENSSL_EXPORT int X509v3_get_ext_count(const STACK_OF(X509_EXTENSION) *x);
1372
-
1373
- // X509v3_get_ext_by_NID returns the index of the first extension in |x| with
1374
- // type |nid|, or a negative number if not found. If found, callers can use
1375
- // |X509v3_get_ext| to look up the extension by index.
1376
- //
1377
- // If |lastpos| is non-negative, it begins searching at |lastpos| + 1. Callers
1378
- // can thus loop over all matching extensions by first passing -1 and then
1379
- // passing the previously-returned value until no match is returned.
1380
- OPENSSL_EXPORT int X509v3_get_ext_by_NID(const STACK_OF(X509_EXTENSION) *x,
1381
- int nid, int lastpos);
1382
-
1383
- // X509v3_get_ext_by_OBJ behaves like |X509v3_get_ext_by_NID| but looks for
1384
- // extensions matching |obj|.
1385
- OPENSSL_EXPORT int X509v3_get_ext_by_OBJ(const STACK_OF(X509_EXTENSION) *x,
1386
- const ASN1_OBJECT *obj, int lastpos);
1387
-
1388
- // X509v3_get_ext_by_critical returns the index of the first extension in |x|
1389
- // whose critical bit matches |crit|, or a negative number if no such extension
1390
- // was found.
1391
- //
1392
- // If |lastpos| is non-negative, it begins searching at |lastpos| + 1. Callers
1393
- // can thus loop over all matching extensions by first passing -1 and then
1394
- // passing the previously-returned value until no match is returned.
1395
- OPENSSL_EXPORT int X509v3_get_ext_by_critical(const STACK_OF(X509_EXTENSION) *x,
1396
- int crit, int lastpos);
1397
-
1398
- // X509v3_get_ext returns the extension in |x| at index |loc|, or NULL if |loc|
1399
- // is out of bounds.
1400
- OPENSSL_EXPORT X509_EXTENSION *X509v3_get_ext(const STACK_OF(X509_EXTENSION) *x,
1401
- int loc);
1402
-
1403
- // X509v3_delete_ext removes the extension in |x| at index |loc| and returns the
1404
- // removed extension, or NULL if |loc| was out of bounds. If an extension was
1405
- // returned, the caller must release it with |X509_EXTENSION_free|.
1406
- OPENSSL_EXPORT X509_EXTENSION *X509v3_delete_ext(STACK_OF(X509_EXTENSION) *x,
1407
- int loc);
1408
-
1409
- // X509v3_add_ext adds a copy of |ex| to the extension list in |*x|. If |*x| is
1410
- // NULL, it allocates a new |STACK_OF(X509_EXTENSION)| to hold the copy and sets
1411
- // |*x| to the new list. It returns |*x| on success and NULL on error. The
1412
- // caller retains ownership of |ex| and can release it independently of |*x|.
1413
- //
1414
- // The new extension is inserted at index |loc|, shifting extensions to the
1415
- // right. If |loc| is -1 or out of bounds, the new extension is appended to the
1416
- // list.
1417
- OPENSSL_EXPORT STACK_OF(X509_EXTENSION) *X509v3_add_ext(
1418
- STACK_OF(X509_EXTENSION) **x, X509_EXTENSION *ex, int loc);
2349
+ const ASN1_TIME *tm);
1419
2350
 
1420
- // X509_get_ext_count returns the number of extensions in |x|.
1421
- OPENSSL_EXPORT int X509_get_ext_count(const X509 *x);
2351
+ // X509_REVOKED_get0_extensions returns |r|'s extensions list, or NULL if |r|
2352
+ // omits it.
2353
+ OPENSSL_EXPORT const STACK_OF(X509_EXTENSION) *X509_REVOKED_get0_extensions(
2354
+ const X509_REVOKED *r);
1422
2355
 
1423
- // X509_get_ext_by_NID behaves like |X509v3_get_ext_by_NID| but searches for
1424
- // extensions in |x|.
1425
- OPENSSL_EXPORT int X509_get_ext_by_NID(const X509 *x, int nid, int lastpos);
2356
+ OPENSSL_EXPORT X509_CRL *X509_CRL_diff(X509_CRL *base, X509_CRL *newer,
2357
+ EVP_PKEY *skey, const EVP_MD *md,
2358
+ unsigned int flags);
1426
2359
 
1427
- // X509_get_ext_by_OBJ behaves like |X509v3_get_ext_by_OBJ| but searches for
1428
- // extensions in |x|.
1429
- OPENSSL_EXPORT int X509_get_ext_by_OBJ(const X509 *x, const ASN1_OBJECT *obj,
1430
- int lastpos);
2360
+ OPENSSL_EXPORT int X509_REQ_check_private_key(X509_REQ *x509, EVP_PKEY *pkey);
1431
2361
 
1432
- // X509_get_ext_by_critical behaves like |X509v3_get_ext_by_critical| but
1433
- // searches for extensions in |x|.
1434
- OPENSSL_EXPORT int X509_get_ext_by_critical(const X509 *x, int crit,
1435
- int lastpos);
2362
+ OPENSSL_EXPORT int X509_check_private_key(X509 *x509, const EVP_PKEY *pkey);
1436
2363
 
1437
- // X509_get_ext returns the extension in |x| at index |loc|, or NULL if |loc| is
1438
- // out of bounds.
1439
- OPENSSL_EXPORT X509_EXTENSION *X509_get_ext(const X509 *x, int loc);
2364
+ OPENSSL_EXPORT int X509_issuer_name_cmp(const X509 *a, const X509 *b);
2365
+ OPENSSL_EXPORT unsigned long X509_issuer_name_hash(X509 *a);
1440
2366
 
1441
- // X509_delete_ext removes the extension in |x| at index |loc| and returns the
1442
- // removed extension, or NULL if |loc| was out of bounds. If non-NULL, the
1443
- // caller must release the result with |X509_EXTENSION_free|. It is also safe,
1444
- // but not necessary, to call |X509_EXTENSION_free| if the result is NULL.
1445
- OPENSSL_EXPORT X509_EXTENSION *X509_delete_ext(X509 *x, int loc);
2367
+ OPENSSL_EXPORT int X509_subject_name_cmp(const X509 *a, const X509 *b);
2368
+ OPENSSL_EXPORT unsigned long X509_subject_name_hash(X509 *x);
1446
2369
 
1447
- // X509_add_ext adds a copy of |ex| to |x|. It returns one on success and zero
1448
- // on failure. The caller retains ownership of |ex| and can release it
1449
- // independently of |x|.
1450
- //
1451
- // The new extension is inserted at index |loc|, shifting extensions to the
1452
- // right. If |loc| is -1 or out of bounds, the new extension is appended to the
1453
- // list.
1454
- OPENSSL_EXPORT int X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc);
2370
+ OPENSSL_EXPORT unsigned long X509_issuer_name_hash_old(X509 *a);
2371
+ OPENSSL_EXPORT unsigned long X509_subject_name_hash_old(X509 *x);
2372
+
2373
+ OPENSSL_EXPORT int X509_cmp(const X509 *a, const X509 *b);
2374
+ OPENSSL_EXPORT int X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b);
2375
+ OPENSSL_EXPORT unsigned long X509_NAME_hash(X509_NAME *x);
2376
+ OPENSSL_EXPORT unsigned long X509_NAME_hash_old(X509_NAME *x);
2377
+
2378
+ OPENSSL_EXPORT int X509_CRL_cmp(const X509_CRL *a, const X509_CRL *b);
2379
+ OPENSSL_EXPORT int X509_CRL_match(const X509_CRL *a, const X509_CRL *b);
1455
2380
 
1456
2381
  // X509_get_ext_d2i behaves like |X509V3_get_d2i| but looks for the extension in
1457
2382
  // |x509|'s extension list.
@@ -1470,43 +2395,6 @@ OPENSSL_EXPORT void *X509_get_ext_d2i(const X509 *x509, int nid,
1470
2395
  OPENSSL_EXPORT int X509_add1_ext_i2d(X509 *x, int nid, void *value, int crit,
1471
2396
  unsigned long flags);
1472
2397
 
1473
- // X509_CRL_get_ext_count returns the number of extensions in |x|.
1474
- OPENSSL_EXPORT int X509_CRL_get_ext_count(const X509_CRL *x);
1475
-
1476
- // X509_CRL_get_ext_by_NID behaves like |X509v3_get_ext_by_NID| but searches for
1477
- // extensions in |x|.
1478
- OPENSSL_EXPORT int X509_CRL_get_ext_by_NID(const X509_CRL *x, int nid,
1479
- int lastpos);
1480
-
1481
- // X509_CRL_get_ext_by_OBJ behaves like |X509v3_get_ext_by_OBJ| but searches for
1482
- // extensions in |x|.
1483
- OPENSSL_EXPORT int X509_CRL_get_ext_by_OBJ(const X509_CRL *x,
1484
- const ASN1_OBJECT *obj, int lastpos);
1485
-
1486
- // X509_CRL_get_ext_by_critical behaves like |X509v3_get_ext_by_critical| but
1487
- // searches for extensions in |x|.
1488
- OPENSSL_EXPORT int X509_CRL_get_ext_by_critical(const X509_CRL *x, int crit,
1489
- int lastpos);
1490
-
1491
- // X509_CRL_get_ext returns the extension in |x| at index |loc|, or NULL if
1492
- // |loc| is out of bounds.
1493
- OPENSSL_EXPORT X509_EXTENSION *X509_CRL_get_ext(const X509_CRL *x, int loc);
1494
-
1495
- // X509_CRL_delete_ext removes the extension in |x| at index |loc| and returns
1496
- // the removed extension, or NULL if |loc| was out of bounds. If non-NULL, the
1497
- // caller must release the result with |X509_EXTENSION_free|. It is also safe,
1498
- // but not necessary, to call |X509_EXTENSION_free| if the result is NULL.
1499
- OPENSSL_EXPORT X509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc);
1500
-
1501
- // X509_CRL_add_ext adds a copy of |ex| to |x|. It returns one on success and
1502
- // zero on failure. The caller retains ownership of |ex| and can release it
1503
- // independently of |x|.
1504
- //
1505
- // The new extension is inserted at index |loc|, shifting extensions to the
1506
- // right. If |loc| is -1 or out of bounds, the new extension is appended to the
1507
- // list.
1508
- OPENSSL_EXPORT int X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc);
1509
-
1510
2398
  // X509_CRL_get_ext_d2i behaves like |X509V3_get_d2i| but looks for the
1511
2399
  // extension in |crl|'s extension list.
1512
2400
  //
@@ -1544,15 +2432,14 @@ OPENSSL_EXPORT int X509_REVOKED_get_ext_by_critical(const X509_REVOKED *x,
1544
2432
  int crit, int lastpos);
1545
2433
 
1546
2434
  // X509_REVOKED_get_ext returns the extension in |x| at index |loc|, or NULL if
1547
- // |loc| is out of bounds.
2435
+ // |loc| is out of bounds. This function returns a non-const pointer for OpenSSL
2436
+ // compatibility, but callers should not mutate the result.
1548
2437
  OPENSSL_EXPORT X509_EXTENSION *X509_REVOKED_get_ext(const X509_REVOKED *x,
1549
2438
  int loc);
1550
2439
 
1551
2440
  // X509_REVOKED_delete_ext removes the extension in |x| at index |loc| and
1552
2441
  // returns the removed extension, or NULL if |loc| was out of bounds. If
1553
- // non-NULL, the caller must release the result with |X509_EXTENSION_free|. It
1554
- // is also safe, but not necessary, to call |X509_EXTENSION_free| if the result
1555
- // is NULL.
2442
+ // non-NULL, the caller must release the result with |X509_EXTENSION_free|.
1556
2443
  OPENSSL_EXPORT X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x,
1557
2444
  int loc);
1558
2445
 
@@ -1563,8 +2450,8 @@ OPENSSL_EXPORT X509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x,
1563
2450
  // The new extension is inserted at index |loc|, shifting extensions to the
1564
2451
  // right. If |loc| is -1 or out of bounds, the new extension is appended to the
1565
2452
  // list.
1566
- OPENSSL_EXPORT int X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex,
1567
- int loc);
2453
+ OPENSSL_EXPORT int X509_REVOKED_add_ext(X509_REVOKED *x,
2454
+ const X509_EXTENSION *ex, int loc);
1568
2455
 
1569
2456
  // X509_REVOKED_get_ext_d2i behaves like |X509V3_get_d2i| but looks for the
1570
2457
  // extension in |revoked|'s extension list.
@@ -1585,217 +2472,25 @@ OPENSSL_EXPORT int X509_REVOKED_add1_ext_i2d(X509_REVOKED *x, int nid,
1585
2472
  void *value, int crit,
1586
2473
  unsigned long flags);
1587
2474
 
1588
- // X509_EXTENSION_create_by_NID creates a new |X509_EXTENSION| with type |nid|,
1589
- // value |data|, and critical bit |crit|. It returns the newly-allocated
1590
- // |X509_EXTENSION| on success, and false on error. |nid| should be a |NID_*|
1591
- // constant.
1592
- //
1593
- // If |ex| and |*ex| are both non-NULL, it modifies and returns |*ex| instead of
1594
- // creating a new object. If |ex| is non-NULL, but |*ex| is NULL, it sets |*ex|
1595
- // to the new |X509_EXTENSION|, in addition to returning the result.
1596
- OPENSSL_EXPORT X509_EXTENSION *X509_EXTENSION_create_by_NID(
1597
- X509_EXTENSION **ex, int nid, int crit, const ASN1_OCTET_STRING *data);
1598
-
1599
- // X509_EXTENSION_create_by_OBJ behaves like |X509_EXTENSION_create_by_NID|, but
1600
- // the extension type is determined by an |ASN1_OBJECT|.
1601
- OPENSSL_EXPORT X509_EXTENSION *X509_EXTENSION_create_by_OBJ(
1602
- X509_EXTENSION **ex, const ASN1_OBJECT *obj, int crit,
1603
- const ASN1_OCTET_STRING *data);
1604
-
1605
- // X509_EXTENSION_set_object sets |ex|'s extension type to |obj|. It returns one
1606
- // on success and zero on error.
1607
- OPENSSL_EXPORT int X509_EXTENSION_set_object(X509_EXTENSION *ex,
1608
- const ASN1_OBJECT *obj);
1609
-
1610
- // X509_EXTENSION_set_critical sets |ex| to critical if |crit| is non-zero and
1611
- // to non-critical if |crit| is zero.
1612
- OPENSSL_EXPORT int X509_EXTENSION_set_critical(X509_EXTENSION *ex, int crit);
1613
-
1614
- // X509_EXTENSION_set_data set's |ex|'s extension value to a copy of |data|. It
1615
- // returns one on success and zero on error.
1616
- OPENSSL_EXPORT int X509_EXTENSION_set_data(X509_EXTENSION *ex,
1617
- const ASN1_OCTET_STRING *data);
1618
-
1619
- // X509_EXTENSION_get_object returns |ex|'s extension type.
1620
- OPENSSL_EXPORT ASN1_OBJECT *X509_EXTENSION_get_object(X509_EXTENSION *ex);
1621
-
1622
- // X509_EXTENSION_get_data returns |ne|'s extension value.
1623
- OPENSSL_EXPORT ASN1_OCTET_STRING *X509_EXTENSION_get_data(X509_EXTENSION *ne);
1624
-
1625
- // X509_EXTENSION_get_critical returns one if |ex| is critical and zero
1626
- // otherwise.
1627
- OPENSSL_EXPORT int X509_EXTENSION_get_critical(const X509_EXTENSION *ex);
1628
-
1629
- // X509at_get_attr_count returns the number of attributes in |x|.
1630
- OPENSSL_EXPORT int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x);
1631
-
1632
- // X509at_get_attr_by_NID returns the index of the attribute in |x| of type
1633
- // |nid|, or a negative number if not found. If found, callers can use
1634
- // |X509at_get_attr| to look up the attribute by index.
1635
- //
1636
- // If |lastpos| is non-negative, it begins searching at |lastpos| + 1. Callers
1637
- // can thus loop over all matching attributes by first passing -1 and then
1638
- // passing the previously-returned value until no match is returned.
1639
- OPENSSL_EXPORT int X509at_get_attr_by_NID(const STACK_OF(X509_ATTRIBUTE) *x,
1640
- int nid, int lastpos);
1641
-
1642
- // X509at_get_attr_by_OBJ behaves like |X509at_get_attr_by_NID| but looks for
1643
- // attributes of type |obj|.
1644
- OPENSSL_EXPORT int X509at_get_attr_by_OBJ(const STACK_OF(X509_ATTRIBUTE) *sk,
1645
- const ASN1_OBJECT *obj, int lastpos);
1646
-
1647
- // X509at_get_attr returns the attribute at index |loc| in |x|, or NULL if
1648
- // out of bounds.
1649
- OPENSSL_EXPORT X509_ATTRIBUTE *X509at_get_attr(
1650
- const STACK_OF(X509_ATTRIBUTE) *x, int loc);
1651
-
1652
- // X509at_delete_attr removes the attribute at index |loc| in |x|. It returns
1653
- // the removed attribute to the caller, or NULL if |loc| was out of bounds. If
1654
- // non-NULL, the caller must release the result with |X509_ATTRIBUTE_free| when
1655
- // done. It is also safe, but not necessary, to call |X509_ATTRIBUTE_free| if
1656
- // the result is NULL.
1657
- OPENSSL_EXPORT X509_ATTRIBUTE *X509at_delete_attr(STACK_OF(X509_ATTRIBUTE) *x,
1658
- int loc);
1659
-
1660
- // X509at_add1_attr appends a copy of |attr| to the attribute list in |*x|. If
1661
- // |*x| is NULL, it allocates a new |STACK_OF(X509_ATTRIBUTE)| to hold the copy
1662
- // and sets |*x| to the new list. It returns |*x| on success and NULL on error.
1663
- // The caller retains ownership of |attr| and can release it independently of
1664
- // |*x|.
1665
- OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr(
1666
- STACK_OF(X509_ATTRIBUTE) **x, X509_ATTRIBUTE *attr);
1667
-
1668
- // X509at_add1_attr_by_OBJ behaves like |X509at_add1_attr|, but adds an
1669
- // attribute created by |X509_ATTRIBUTE_create_by_OBJ|.
1670
- OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_OBJ(
1671
- STACK_OF(X509_ATTRIBUTE) **x, const ASN1_OBJECT *obj, int type,
1672
- const unsigned char *bytes, int len);
1673
-
1674
- // X509at_add1_attr_by_NID behaves like |X509at_add1_attr|, but adds an
1675
- // attribute created by |X509_ATTRIBUTE_create_by_NID|.
1676
- OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_NID(
1677
- STACK_OF(X509_ATTRIBUTE) **x, int nid, int type, const unsigned char *bytes,
1678
- int len);
1679
-
1680
- // X509at_add1_attr_by_txt behaves like |X509at_add1_attr|, but adds an
1681
- // attribute created by |X509_ATTRIBUTE_create_by_txt|.
1682
- OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(
1683
- STACK_OF(X509_ATTRIBUTE) **x, const char *attrname, int type,
1684
- const unsigned char *bytes, int len);
1685
-
1686
- // X509_ATTRIBUTE_create_by_NID returns a newly-allocated |X509_ATTRIBUTE| of
1687
- // type |nid|, or NULL on error. The value is determined as in
1688
- // |X509_ATTRIBUTE_set1_data|.
1689
- //
1690
- // If |attr| is non-NULL, the resulting |X509_ATTRIBUTE| is also written to
1691
- // |*attr|. If |*attr| was non-NULL when the function was called, |*attr| is
1692
- // reused instead of creating a new object.
1693
- //
1694
- // WARNING: The interpretation of |attrtype|, |data|, and |len| is complex and
1695
- // error-prone. See |X509_ATTRIBUTE_set1_data| for details.
1696
- //
1697
- // WARNING: The object reuse form is deprecated and may be removed in the
1698
- // future. It also currently incorrectly appends to the reused object's value
1699
- // set rather than overwriting it.
1700
- OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(
1701
- X509_ATTRIBUTE **attr, int nid, int attrtype, const void *data, int len);
1702
-
1703
- // X509_ATTRIBUTE_create_by_OBJ behaves like |X509_ATTRIBUTE_create_by_NID|
1704
- // except the attribute's type is determined by |obj|.
1705
- OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(
1706
- X509_ATTRIBUTE **attr, const ASN1_OBJECT *obj, int attrtype,
1707
- const void *data, int len);
1708
-
1709
- // X509_ATTRIBUTE_create_by_txt behaves like |X509_ATTRIBUTE_create_by_NID|
1710
- // except the attribute's type is determined by calling |OBJ_txt2obj| with
1711
- // |attrname|.
1712
- OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(
1713
- X509_ATTRIBUTE **attr, const char *attrname, int type,
1714
- const unsigned char *bytes, int len);
1715
-
1716
- // X509_ATTRIBUTE_set1_object sets |attr|'s type to |obj|. It returns one on
1717
- // success and zero on error.
1718
- OPENSSL_EXPORT int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr,
1719
- const ASN1_OBJECT *obj);
1720
-
1721
- // X509_ATTRIBUTE_set1_data appends a value to |attr|'s value set and returns
1722
- // one on success or zero on error. The value is determined as follows:
1723
- //
1724
- // If |attrtype| is a |MBSTRING_*| constant, the value is an ASN.1 string. The
1725
- // string is determined by decoding |len| bytes from |data| in the encoding
1726
- // specified by |attrtype|, and then re-encoding it in a form appropriate for
1727
- // |attr|'s type. If |len| is -1, |strlen(data)| is used instead. See
1728
- // |ASN1_STRING_set_by_NID| for details.
1729
- //
1730
- // TODO(davidben): Document |ASN1_STRING_set_by_NID| so the reference is useful.
1731
- //
1732
- // Otherwise, if |len| is not -1, the value is an ASN.1 string. |attrtype| is an
1733
- // |ASN1_STRING| type value and the |len| bytes from |data| are copied as the
1734
- // type-specific representation of |ASN1_STRING|. See |ASN1_STRING| for details.
1735
- //
1736
- // WARNING: If this form is used to construct a negative INTEGER or ENUMERATED,
1737
- // |attrtype| includes the |V_ASN1_NEG| flag for |ASN1_STRING|, but the function
1738
- // forgets to clear the flag for |ASN1_TYPE|. This matches OpenSSL but is
1739
- // probably a bug. For now, do not use this form with negative values.
1740
- //
1741
- // Otherwise, if |len| is -1, the value is constructed by passing |attrtype| and
1742
- // |data| to |ASN1_TYPE_set1|. That is, |attrtype| is an |ASN1_TYPE| type value,
1743
- // and |data| is cast to the corresponding pointer type.
1744
- //
1745
- // WARNING: Despite the name, this function appends to |attr|'s value set,
1746
- // rather than overwriting it. To overwrite the value set, create a new
1747
- // |X509_ATTRIBUTE| with |X509_ATTRIBUTE_new|.
1748
- //
1749
- // WARNING: If using the |MBSTRING_*| form, pass a length rather than relying on
1750
- // |strlen|. In particular, |strlen| will not behave correctly if the input is
1751
- // |MBSTRING_BMP| or |MBSTRING_UNIV|.
1752
- //
1753
- // WARNING: This function currently misinterprets |V_ASN1_OTHER| as an
1754
- // |MBSTRING_*| constant. This matches OpenSSL but means it is impossible to
1755
- // construct a value with a non-universal tag.
1756
- OPENSSL_EXPORT int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype,
1757
- const void *data, int len);
1758
-
1759
- // X509_ATTRIBUTE_get0_data returns the |idx|th value of |attr| in a
1760
- // type-specific representation to |attrtype|, or NULL if out of bounds or the
1761
- // type does not match. |attrtype| is one of the type values in |ASN1_TYPE|. On
1762
- // match, the return value uses the same representation as |ASN1_TYPE_set0|. See
1763
- // |ASN1_TYPE| for details.
1764
- OPENSSL_EXPORT void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx,
1765
- int attrtype, void *unused);
1766
-
1767
- // X509_ATTRIBUTE_count returns the number of values in |attr|.
1768
- OPENSSL_EXPORT int X509_ATTRIBUTE_count(const X509_ATTRIBUTE *attr);
1769
-
1770
- // X509_ATTRIBUTE_get0_object returns the type of |attr|.
1771
- OPENSSL_EXPORT ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr);
1772
-
1773
- // X509_ATTRIBUTE_get0_type returns the |idx|th value in |attr|, or NULL if out
1774
- // of bounds. Note this function returns one of |attr|'s values, not the type.
1775
- OPENSSL_EXPORT ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr,
1776
- int idx);
1777
-
1778
2475
  OPENSSL_EXPORT int X509_verify_cert(X509_STORE_CTX *ctx);
1779
2476
 
1780
- // lookup a cert from a X509 STACK
1781
- OPENSSL_EXPORT X509 *X509_find_by_issuer_and_serial(STACK_OF(X509) *sk,
1782
- X509_NAME *name,
1783
- ASN1_INTEGER *serial);
1784
- OPENSSL_EXPORT X509 *X509_find_by_subject(STACK_OF(X509) *sk, X509_NAME *name);
1785
-
1786
2477
  // PKCS#8 utilities
1787
2478
 
1788
- DECLARE_ASN1_FUNCTIONS(PKCS8_PRIV_KEY_INFO)
2479
+ DECLARE_ASN1_FUNCTIONS_const(PKCS8_PRIV_KEY_INFO)
1789
2480
 
1790
- OPENSSL_EXPORT EVP_PKEY *EVP_PKCS82PKEY(PKCS8_PRIV_KEY_INFO *p8);
1791
- OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(EVP_PKEY *pkey);
2481
+ // EVP_PKCS82PKEY returns |p8| as a newly-allocated |EVP_PKEY|, or NULL if the
2482
+ // key was unsupported or could not be decoded. If non-NULL, the caller must
2483
+ // release the result with |EVP_PKEY_free| when done.
2484
+ //
2485
+ // Use |EVP_parse_private_key| instead.
2486
+ OPENSSL_EXPORT EVP_PKEY *EVP_PKCS82PKEY(const PKCS8_PRIV_KEY_INFO *p8);
1792
2487
 
1793
- OPENSSL_EXPORT int PKCS8_pkey_set0(PKCS8_PRIV_KEY_INFO *priv, ASN1_OBJECT *aobj,
1794
- int version, int ptype, void *pval,
1795
- unsigned char *penc, int penclen);
1796
- OPENSSL_EXPORT int PKCS8_pkey_get0(ASN1_OBJECT **ppkalg,
1797
- const unsigned char **pk, int *ppklen,
1798
- X509_ALGOR **pa, PKCS8_PRIV_KEY_INFO *p8);
2488
+ // EVP_PKEY2PKCS8 encodes |pkey| as a PKCS#8 PrivateKeyInfo (RFC 5208),
2489
+ // represented as a newly-allocated |PKCS8_PRIV_KEY_INFO|, or NULL on error. The
2490
+ // caller must release the result with |PKCS8_PRIV_KEY_INFO_free| when done.
2491
+ //
2492
+ // Use |EVP_marshal_private_key| instead.
2493
+ OPENSSL_EXPORT PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(const EVP_PKEY *pkey);
1799
2494
 
1800
2495
  // X509_PUBKEY_set0_param sets |pub| to a key with AlgorithmIdentifier
1801
2496
  // determined by |obj|, |param_type|, and |param_value|, and an encoded
@@ -1834,7 +2529,7 @@ OPENSSL_EXPORT X509_TRUST *X509_TRUST_get0(int idx);
1834
2529
  OPENSSL_EXPORT int X509_TRUST_get_by_id(int id);
1835
2530
  OPENSSL_EXPORT int X509_TRUST_add(int id, int flags,
1836
2531
  int (*ck)(X509_TRUST *, X509 *, int),
1837
- char *name, int arg1, void *arg2);
2532
+ const char *name, int arg1, void *arg2);
1838
2533
  OPENSSL_EXPORT void X509_TRUST_cleanup(void);
1839
2534
  OPENSSL_EXPORT int X509_TRUST_get_flags(const X509_TRUST *xp);
1840
2535
  OPENSSL_EXPORT char *X509_TRUST_get0_name(const X509_TRUST *xp);
@@ -1852,7 +2547,7 @@ struct rsa_pss_params_st {
1852
2547
  X509_ALGOR *maskHash;
1853
2548
  } /* RSA_PSS_PARAMS */;
1854
2549
 
1855
- DECLARE_ASN1_FUNCTIONS(RSA_PSS_PARAMS)
2550
+ DECLARE_ASN1_FUNCTIONS_const(RSA_PSS_PARAMS)
1856
2551
 
1857
2552
  /*
1858
2553
  SSL_CTX -> X509_STORE
@@ -1977,14 +2672,6 @@ OPENSSL_EXPORT void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth);
1977
2672
  #define X509_V_ERR_UNSUPPORTED_NAME_SYNTAX 53
1978
2673
  #define X509_V_ERR_CRL_PATH_VALIDATION_ERROR 54
1979
2674
 
1980
- // Suite B mode algorithm violation
1981
- #define X509_V_ERR_SUITE_B_INVALID_VERSION 56
1982
- #define X509_V_ERR_SUITE_B_INVALID_ALGORITHM 57
1983
- #define X509_V_ERR_SUITE_B_INVALID_CURVE 58
1984
- #define X509_V_ERR_SUITE_B_INVALID_SIGNATURE_ALGORITHM 59
1985
- #define X509_V_ERR_SUITE_B_LOS_NOT_ALLOWED 60
1986
- #define X509_V_ERR_SUITE_B_CANNOT_SIGN_P_384_WITH_P_256 61
1987
-
1988
2675
  // Host, email and IP check errors
1989
2676
  #define X509_V_ERR_HOSTNAME_MISMATCH 62
1990
2677
  #define X509_V_ERR_EMAIL_MISMATCH 63
@@ -2011,9 +2698,9 @@ OPENSSL_EXPORT void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth);
2011
2698
  #define X509_V_FLAG_IGNORE_CRITICAL 0x10
2012
2699
  // Does nothing as its functionality has been enabled by default.
2013
2700
  #define X509_V_FLAG_X509_STRICT 0x00
2014
- // Enable proxy certificate validation
2701
+ // This flag does nothing as proxy certificate support has been removed.
2015
2702
  #define X509_V_FLAG_ALLOW_PROXY_CERTS 0x40
2016
- // Enable policy checking
2703
+ // Does nothing as its functionality has been enabled by default.
2017
2704
  #define X509_V_FLAG_POLICY_CHECK 0x80
2018
2705
  // Policy variable require-explicit-policy
2019
2706
  #define X509_V_FLAG_EXPLICIT_POLICY 0x100
@@ -2031,12 +2718,6 @@ OPENSSL_EXPORT void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth);
2031
2718
  #define X509_V_FLAG_CHECK_SS_SIGNATURE 0x4000
2032
2719
  // Use trusted store first
2033
2720
  #define X509_V_FLAG_TRUSTED_FIRST 0x8000
2034
- // Suite B 128 bit only mode: not normally used
2035
- #define X509_V_FLAG_SUITEB_128_LOS_ONLY 0x10000
2036
- // Suite B 192 bit only mode
2037
- #define X509_V_FLAG_SUITEB_192_LOS 0x20000
2038
- // Suite B 128 bit mode allowing 192 bit algorithms
2039
- #define X509_V_FLAG_SUITEB_128_LOS 0x30000
2040
2721
 
2041
2722
  // Allow partial chains if at least one certificate is in trusted store
2042
2723
  #define X509_V_FLAG_PARTIAL_CHAIN 0x80000
@@ -2046,17 +2727,16 @@ OPENSSL_EXPORT void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth);
2046
2727
  // will force the behaviour to match that of previous versions.
2047
2728
  #define X509_V_FLAG_NO_ALT_CHAINS 0x100000
2048
2729
 
2730
+ // X509_V_FLAG_NO_CHECK_TIME disables all time checks in certificate
2731
+ // verification.
2732
+ #define X509_V_FLAG_NO_CHECK_TIME 0x200000
2733
+
2049
2734
  #define X509_VP_FLAG_DEFAULT 0x1
2050
2735
  #define X509_VP_FLAG_OVERWRITE 0x2
2051
2736
  #define X509_VP_FLAG_RESET_FLAGS 0x4
2052
2737
  #define X509_VP_FLAG_LOCKED 0x8
2053
2738
  #define X509_VP_FLAG_ONCE 0x10
2054
2739
 
2055
- // Internal use: mask of policy related options
2056
- #define X509_V_FLAG_POLICY_MASK \
2057
- (X509_V_FLAG_POLICY_CHECK | X509_V_FLAG_EXPLICIT_POLICY | \
2058
- X509_V_FLAG_INHIBIT_ANY | X509_V_FLAG_INHIBIT_MAP)
2059
-
2060
2740
  OPENSSL_EXPORT int X509_OBJECT_idx_by_subject(STACK_OF(X509_OBJECT) *h,
2061
2741
  int type, X509_NAME *name);
2062
2742
  OPENSSL_EXPORT X509_OBJECT *X509_OBJECT_retrieve_by_subject(
@@ -2090,6 +2770,11 @@ OPENSSL_EXPORT void X509_STORE_set_verify(X509_STORE *ctx,
2090
2770
  OPENSSL_EXPORT void X509_STORE_CTX_set_verify(X509_STORE_CTX *ctx,
2091
2771
  X509_STORE_CTX_verify_fn verify);
2092
2772
  OPENSSL_EXPORT X509_STORE_CTX_verify_fn X509_STORE_get_verify(X509_STORE *ctx);
2773
+
2774
+ // X509_STORE_set_verify_cb acts like |X509_STORE_CTX_set_verify_cb| but sets
2775
+ // the verify callback for any |X509_STORE_CTX| created from this |X509_STORE|
2776
+ //
2777
+ // Do not use this funciton. see |X509_STORE_CTX_set_verify_cb|.
2093
2778
  OPENSSL_EXPORT void X509_STORE_set_verify_cb(
2094
2779
  X509_STORE *ctx, X509_STORE_CTX_verify_cb verify_cb);
2095
2780
  #define X509_STORE_set_verify_cb_func(ctx, func) \
@@ -2144,8 +2829,21 @@ OPENSSL_EXPORT void X509_STORE_CTX_zero(X509_STORE_CTX *ctx);
2144
2829
  OPENSSL_EXPORT void X509_STORE_CTX_free(X509_STORE_CTX *ctx);
2145
2830
  OPENSSL_EXPORT int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store,
2146
2831
  X509 *x509, STACK_OF(X509) *chain);
2832
+
2833
+ // X509_STORE_CTX_set0_trusted_stack configures |ctx| to trust the certificates
2834
+ // in |sk|. |sk| must remain valid for the duration of |ctx|.
2835
+ //
2836
+ // WARNING: This function differs from most |set0| functions in that it does not
2837
+ // take ownership of its input. The caller is required to ensure the lifetimes
2838
+ // are consistent.
2839
+ OPENSSL_EXPORT void X509_STORE_CTX_set0_trusted_stack(X509_STORE_CTX *ctx,
2840
+ STACK_OF(X509) *sk);
2841
+
2842
+ // X509_STORE_CTX_trusted_stack is a deprecated alias for
2843
+ // |X509_STORE_CTX_set0_trusted_stack|.
2147
2844
  OPENSSL_EXPORT void X509_STORE_CTX_trusted_stack(X509_STORE_CTX *ctx,
2148
2845
  STACK_OF(X509) *sk);
2846
+
2149
2847
  OPENSSL_EXPORT void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx);
2150
2848
 
2151
2849
  OPENSSL_EXPORT X509_STORE *X509_STORE_CTX_get0_store(X509_STORE_CTX *ctx);
@@ -2166,44 +2864,23 @@ OPENSSL_EXPORT int X509_STORE_get_by_subject(X509_STORE_CTX *vs, int type,
2166
2864
  OPENSSL_EXPORT int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc,
2167
2865
  long argl, char **ret);
2168
2866
 
2169
- #ifndef OPENSSL_NO_STDIO
2170
2867
  OPENSSL_EXPORT int X509_load_cert_file(X509_LOOKUP *ctx, const char *file,
2171
2868
  int type);
2172
2869
  OPENSSL_EXPORT int X509_load_crl_file(X509_LOOKUP *ctx, const char *file,
2173
2870
  int type);
2174
2871
  OPENSSL_EXPORT int X509_load_cert_crl_file(X509_LOOKUP *ctx, const char *file,
2175
2872
  int type);
2176
- #endif
2177
2873
 
2178
2874
  OPENSSL_EXPORT X509_LOOKUP *X509_LOOKUP_new(X509_LOOKUP_METHOD *method);
2179
2875
  OPENSSL_EXPORT void X509_LOOKUP_free(X509_LOOKUP *ctx);
2180
2876
  OPENSSL_EXPORT int X509_LOOKUP_init(X509_LOOKUP *ctx);
2181
2877
  OPENSSL_EXPORT int X509_LOOKUP_by_subject(X509_LOOKUP *ctx, int type,
2182
2878
  X509_NAME *name, X509_OBJECT *ret);
2183
- OPENSSL_EXPORT int X509_LOOKUP_by_issuer_serial(X509_LOOKUP *ctx, int type,
2184
- X509_NAME *name,
2185
- ASN1_INTEGER *serial,
2186
- X509_OBJECT *ret);
2187
- OPENSSL_EXPORT int X509_LOOKUP_by_fingerprint(X509_LOOKUP *ctx, int type,
2188
- unsigned char *bytes, int len,
2189
- X509_OBJECT *ret);
2190
- OPENSSL_EXPORT int X509_LOOKUP_by_alias(X509_LOOKUP *ctx, int type, char *str,
2191
- int len, X509_OBJECT *ret);
2192
2879
  OPENSSL_EXPORT int X509_LOOKUP_shutdown(X509_LOOKUP *ctx);
2193
2880
 
2194
- #ifndef OPENSSL_NO_STDIO
2195
2881
  OPENSSL_EXPORT int X509_STORE_load_locations(X509_STORE *ctx, const char *file,
2196
2882
  const char *dir);
2197
2883
  OPENSSL_EXPORT int X509_STORE_set_default_paths(X509_STORE *ctx);
2198
- #endif
2199
-
2200
- OPENSSL_EXPORT int X509_STORE_CTX_get_ex_new_index(long argl, void *argp,
2201
- CRYPTO_EX_unused *unused,
2202
- CRYPTO_EX_dup *dup_unused,
2203
- CRYPTO_EX_free *free_func);
2204
- OPENSSL_EXPORT int X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx, int idx,
2205
- void *data);
2206
- OPENSSL_EXPORT void *X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx, int idx);
2207
2884
  OPENSSL_EXPORT int X509_STORE_CTX_get_error(X509_STORE_CTX *ctx);
2208
2885
  OPENSSL_EXPORT void X509_STORE_CTX_set_error(X509_STORE_CTX *ctx, int s);
2209
2886
  OPENSSL_EXPORT int X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx);
@@ -2231,12 +2908,30 @@ OPENSSL_EXPORT void X509_STORE_CTX_set_flags(X509_STORE_CTX *ctx,
2231
2908
  unsigned long flags);
2232
2909
  OPENSSL_EXPORT void X509_STORE_CTX_set_time(X509_STORE_CTX *ctx,
2233
2910
  unsigned long flags, time_t t);
2911
+ OPENSSL_EXPORT void X509_STORE_CTX_set_time_posix(X509_STORE_CTX *ctx,
2912
+ unsigned long flags,
2913
+ int64_t t);
2914
+
2915
+ // X509_STORE_CTX_set_verify_cb configures a callback function for |ctx| that is
2916
+ // called multiple times during |X509_verify_cert|. The callback returns zero to
2917
+ // fail verification and non-zero to proceed. Typically, it will return |ok|,
2918
+ // which preserves the default behavior. Returning one when |ok| is zero will
2919
+ // proceed past some error. The callback may inspect |ctx| and the error queue
2920
+ // to attempt to determine the current stage of certificate verification, but
2921
+ // this is often unreliable.
2922
+ //
2923
+ // WARNING: Do not use this function. It is extremely fragile and unpredictable.
2924
+ // This callback exposes implementation details of certificate verification,
2925
+ // which change as the library evolves. Attempting to use it for security checks
2926
+ // can introduce vulnerabilities if making incorrect assumptions about when the
2927
+ // callback is called. Additionally, overriding |ok| may leave |ctx| in an
2928
+ // inconsistent state and break invariants.
2929
+ //
2930
+ // Instead, customize certificate verification by configuring options on the
2931
+ // |X509_STORE_CTX| before verification, or applying additional checks after
2932
+ // |X509_verify_cert| completes successfully.
2234
2933
  OPENSSL_EXPORT void X509_STORE_CTX_set_verify_cb(
2235
- X509_STORE_CTX *ctx, int (*verify_cb)(int, X509_STORE_CTX *));
2236
-
2237
- OPENSSL_EXPORT X509_POLICY_TREE *X509_STORE_CTX_get0_policy_tree(
2238
- X509_STORE_CTX *ctx);
2239
- OPENSSL_EXPORT int X509_STORE_CTX_get_explicit_policy(X509_STORE_CTX *ctx);
2934
+ X509_STORE_CTX *ctx, int (*verify_cb)(int ok, X509_STORE_CTX *ctx));
2240
2935
 
2241
2936
  OPENSSL_EXPORT X509_VERIFY_PARAM *X509_STORE_CTX_get0_param(
2242
2937
  X509_STORE_CTX *ctx);
@@ -2269,10 +2964,12 @@ OPENSSL_EXPORT void X509_VERIFY_PARAM_set_depth(X509_VERIFY_PARAM *param,
2269
2964
  int depth);
2270
2965
  OPENSSL_EXPORT void X509_VERIFY_PARAM_set_time(X509_VERIFY_PARAM *param,
2271
2966
  time_t t);
2967
+ OPENSSL_EXPORT void X509_VERIFY_PARAM_set_time_posix(X509_VERIFY_PARAM *param,
2968
+ int64_t t);
2272
2969
  OPENSSL_EXPORT int X509_VERIFY_PARAM_add0_policy(X509_VERIFY_PARAM *param,
2273
2970
  ASN1_OBJECT *policy);
2274
2971
  OPENSSL_EXPORT int X509_VERIFY_PARAM_set1_policies(
2275
- X509_VERIFY_PARAM *param, STACK_OF(ASN1_OBJECT) *policies);
2972
+ X509_VERIFY_PARAM *param, const STACK_OF(ASN1_OBJECT) *policies);
2276
2973
 
2277
2974
  OPENSSL_EXPORT int X509_VERIFY_PARAM_set1_host(X509_VERIFY_PARAM *param,
2278
2975
  const char *name,
@@ -2296,43 +2993,8 @@ OPENSSL_EXPORT int X509_VERIFY_PARAM_get_depth(const X509_VERIFY_PARAM *param);
2296
2993
  OPENSSL_EXPORT const char *X509_VERIFY_PARAM_get0_name(
2297
2994
  const X509_VERIFY_PARAM *param);
2298
2995
 
2299
- OPENSSL_EXPORT int X509_VERIFY_PARAM_add0_table(X509_VERIFY_PARAM *param);
2300
- OPENSSL_EXPORT int X509_VERIFY_PARAM_get_count(void);
2301
- OPENSSL_EXPORT const X509_VERIFY_PARAM *X509_VERIFY_PARAM_get0(int id);
2302
2996
  OPENSSL_EXPORT const X509_VERIFY_PARAM *X509_VERIFY_PARAM_lookup(
2303
2997
  const char *name);
2304
- OPENSSL_EXPORT void X509_VERIFY_PARAM_table_cleanup(void);
2305
-
2306
- OPENSSL_EXPORT int X509_policy_check(X509_POLICY_TREE **ptree,
2307
- int *pexplicit_policy,
2308
- STACK_OF(X509) *certs,
2309
- STACK_OF(ASN1_OBJECT) *policy_oids,
2310
- unsigned int flags);
2311
-
2312
- OPENSSL_EXPORT void X509_policy_tree_free(X509_POLICY_TREE *tree);
2313
-
2314
- OPENSSL_EXPORT int X509_policy_tree_level_count(const X509_POLICY_TREE *tree);
2315
- OPENSSL_EXPORT X509_POLICY_LEVEL *X509_policy_tree_get0_level(
2316
- const X509_POLICY_TREE *tree, int i);
2317
-
2318
- OPENSSL_EXPORT STACK_OF(X509_POLICY_NODE) *X509_policy_tree_get0_policies(
2319
- const X509_POLICY_TREE *tree);
2320
-
2321
- OPENSSL_EXPORT STACK_OF(X509_POLICY_NODE) *X509_policy_tree_get0_user_policies(
2322
- const X509_POLICY_TREE *tree);
2323
-
2324
- OPENSSL_EXPORT int X509_policy_level_node_count(X509_POLICY_LEVEL *level);
2325
-
2326
- OPENSSL_EXPORT X509_POLICY_NODE *X509_policy_level_get0_node(
2327
- X509_POLICY_LEVEL *level, int i);
2328
-
2329
- OPENSSL_EXPORT const ASN1_OBJECT *X509_policy_node_get0_policy(
2330
- const X509_POLICY_NODE *node);
2331
-
2332
- OPENSSL_EXPORT STACK_OF(POLICYQUALINFO) *X509_policy_node_get0_qualifiers(
2333
- const X509_POLICY_NODE *node);
2334
- OPENSSL_EXPORT const X509_POLICY_NODE *X509_policy_node_get0_parent(
2335
- const X509_POLICY_NODE *node);
2336
2998
 
2337
2999
 
2338
3000
  #if defined(__cplusplus)
@@ -2352,14 +3014,12 @@ BORINGSSL_MAKE_DELETER(X509_ALGOR, X509_ALGOR_free)
2352
3014
  BORINGSSL_MAKE_DELETER(X509_ATTRIBUTE, X509_ATTRIBUTE_free)
2353
3015
  BORINGSSL_MAKE_DELETER(X509_CRL, X509_CRL_free)
2354
3016
  BORINGSSL_MAKE_UP_REF(X509_CRL, X509_CRL_up_ref)
2355
- BORINGSSL_MAKE_DELETER(X509_CRL_METHOD, X509_CRL_METHOD_free)
2356
3017
  BORINGSSL_MAKE_DELETER(X509_EXTENSION, X509_EXTENSION_free)
2357
3018
  BORINGSSL_MAKE_DELETER(X509_INFO, X509_INFO_free)
2358
3019
  BORINGSSL_MAKE_DELETER(X509_LOOKUP, X509_LOOKUP_free)
2359
3020
  BORINGSSL_MAKE_DELETER(X509_NAME, X509_NAME_free)
2360
3021
  BORINGSSL_MAKE_DELETER(X509_NAME_ENTRY, X509_NAME_ENTRY_free)
2361
3022
  BORINGSSL_MAKE_DELETER(X509_PKEY, X509_PKEY_free)
2362
- BORINGSSL_MAKE_DELETER(X509_POLICY_TREE, X509_policy_tree_free)
2363
3023
  BORINGSSL_MAKE_DELETER(X509_PUBKEY, X509_PUBKEY_free)
2364
3024
  BORINGSSL_MAKE_DELETER(X509_REQ, X509_REQ_free)
2365
3025
  BORINGSSL_MAKE_DELETER(X509_REVOKED, X509_REVOKED_free)
@@ -2415,5 +3075,9 @@ BSSL_NAMESPACE_END
2415
3075
  #define X509_R_DELTA_CRL_WITHOUT_CRL_NUMBER 138
2416
3076
  #define X509_R_INVALID_FIELD_FOR_VERSION 139
2417
3077
  #define X509_R_INVALID_VERSION 140
3078
+ #define X509_R_NO_CERTIFICATE_FOUND 141
3079
+ #define X509_R_NO_CERTIFICATE_OR_CRL_FOUND 142
3080
+ #define X509_R_NO_CRL_FOUND 143
3081
+ #define X509_R_INVALID_POLICY_EXTENSION 144
2418
3082
 
2419
- #endif
3083
+ #endif // OPENSSL_HEADER_X509_H