grpc 1.37.1 → 1.39.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grpc might be problematic. Click here for more details.

Files changed (636) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +96 -59
  3. data/include/grpc/event_engine/README.md +38 -0
  4. data/include/grpc/event_engine/endpoint_config.h +48 -0
  5. data/include/grpc/event_engine/event_engine.h +334 -0
  6. data/include/grpc/event_engine/port.h +41 -0
  7. data/include/grpc/event_engine/slice_allocator.h +91 -0
  8. data/include/grpc/grpc.h +11 -4
  9. data/include/grpc/grpc_security.h +32 -0
  10. data/include/grpc/grpc_security_constants.h +15 -0
  11. data/include/grpc/impl/codegen/grpc_types.h +28 -13
  12. data/include/grpc/impl/codegen/port_platform.h +22 -0
  13. data/include/grpc/module.modulemap +14 -14
  14. data/src/core/ext/filters/client_channel/backup_poller.cc +3 -3
  15. data/src/core/ext/filters/client_channel/channel_connectivity.cc +177 -202
  16. data/src/core/ext/filters/client_channel/client_channel.cc +630 -3103
  17. data/src/core/ext/filters/client_channel/client_channel.h +489 -55
  18. data/src/core/ext/filters/client_channel/client_channel_channelz.h +1 -1
  19. data/src/core/ext/filters/client_channel/client_channel_plugin.cc +4 -1
  20. data/src/core/ext/filters/client_channel/config_selector.h +1 -1
  21. data/src/core/ext/filters/client_channel/connector.h +1 -1
  22. data/src/core/ext/filters/client_channel/dynamic_filters.cc +9 -10
  23. data/src/core/ext/filters/client_channel/dynamic_filters.h +3 -3
  24. data/src/core/ext/filters/client_channel/health/health_check_client.cc +28 -27
  25. data/src/core/ext/filters/client_channel/health/health_check_client.h +30 -29
  26. data/src/core/ext/filters/client_channel/http_connect_handshaker.cc +24 -21
  27. data/src/core/ext/filters/client_channel/http_proxy.cc +16 -1
  28. data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +6 -6
  29. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +46 -43
  30. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_channel_secure.cc +1 -1
  31. data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +2 -1
  32. data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +5 -5
  33. data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +14 -12
  34. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +755 -0
  35. data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +10 -0
  36. data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +4 -4
  37. data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +1 -1
  38. data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +15 -15
  39. data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +46 -54
  40. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +23 -23
  41. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +31 -46
  42. data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +146 -155
  43. data/src/core/ext/filters/client_channel/lb_policy.cc +1 -1
  44. data/src/core/ext/filters/client_channel/lb_policy.h +4 -4
  45. data/src/core/ext/filters/client_channel/lb_policy_factory.h +1 -1
  46. data/src/core/ext/filters/client_channel/lb_policy_registry.cc +4 -4
  47. data/src/core/ext/filters/client_channel/lb_policy_registry.h +1 -1
  48. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +24 -18
  49. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +1 -1
  50. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_event_engine.cc +31 -0
  51. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_libuv.cc +3 -3
  52. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +2 -2
  53. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +14 -14
  54. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +33 -24
  55. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +1 -1
  56. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_event_engine.cc +28 -0
  57. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_libuv.cc +1 -1
  58. data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +1 -1
  59. data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +18 -12
  60. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +20 -28
  61. data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +7 -5
  62. data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +20 -13
  63. data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +1 -1
  64. data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +60 -32
  65. data/src/core/ext/filters/client_channel/resolver.h +2 -2
  66. data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +32 -239
  67. data/src/core/ext/filters/client_channel/resolver_result_parsing.h +20 -49
  68. data/src/core/ext/filters/client_channel/retry_filter.cc +2449 -0
  69. data/src/core/ext/filters/client_channel/retry_filter.h +30 -0
  70. data/src/core/ext/filters/client_channel/retry_service_config.cc +306 -0
  71. data/src/core/ext/filters/client_channel/retry_service_config.h +96 -0
  72. data/src/core/ext/filters/client_channel/server_address.cc +1 -1
  73. data/src/core/ext/filters/client_channel/service_config.cc +15 -14
  74. data/src/core/ext/filters/client_channel/service_config.h +7 -6
  75. data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +5 -4
  76. data/src/core/ext/filters/client_channel/service_config_parser.cc +6 -6
  77. data/src/core/ext/filters/client_channel/service_config_parser.h +7 -4
  78. data/src/core/ext/filters/client_channel/subchannel.cc +17 -16
  79. data/src/core/ext/filters/client_channel/subchannel.h +7 -6
  80. data/src/core/ext/filters/client_idle/client_idle_filter.cc +17 -16
  81. data/src/core/ext/filters/deadline/deadline_filter.cc +10 -10
  82. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +25 -18
  83. data/src/core/ext/filters/fault_injection/service_config_parser.cc +5 -5
  84. data/src/core/ext/filters/fault_injection/service_config_parser.h +1 -1
  85. data/src/core/ext/filters/http/client/http_client_filter.cc +28 -21
  86. data/src/core/ext/filters/http/client_authority_filter.cc +3 -3
  87. data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +23 -22
  88. data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +21 -21
  89. data/src/core/ext/filters/http/server/http_server_filter.cc +27 -23
  90. data/src/core/ext/filters/max_age/max_age_filter.cc +12 -10
  91. data/src/core/ext/filters/message_size/message_size_filter.cc +14 -11
  92. data/src/core/ext/filters/message_size/message_size_filter.h +1 -1
  93. data/src/core/ext/filters/workarounds/workaround_cronet_compression_filter.cc +4 -3
  94. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +7 -7
  95. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +7 -7
  96. data/src/core/ext/transport/chttp2/client/insecure/channel_create.cc +2 -2
  97. data/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.cc +3 -2
  98. data/src/core/ext/transport/chttp2/client/secure/secure_channel_create.cc +3 -3
  99. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +44 -45
  100. data/src/core/ext/transport/chttp2/server/chttp2_server.h +2 -2
  101. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2.cc +3 -4
  102. data/src/core/ext/transport/chttp2/server/insecure/server_chttp2_posix.cc +5 -4
  103. data/src/core/ext/transport/chttp2/server/secure/server_secure_chttp2.cc +3 -4
  104. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +139 -120
  105. data/src/core/ext/transport/chttp2/transport/context_list.cc +4 -5
  106. data/src/core/ext/transport/chttp2/transport/context_list.h +4 -4
  107. data/src/core/ext/transport/chttp2/transport/flow_control.cc +3 -3
  108. data/src/core/ext/transport/chttp2/transport/flow_control.h +8 -8
  109. data/src/core/ext/transport/chttp2/transport/frame_data.cc +8 -8
  110. data/src/core/ext/transport/chttp2/transport/frame_data.h +10 -10
  111. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +7 -8
  112. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +6 -6
  113. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +7 -8
  114. data/src/core/ext/transport/chttp2/transport/frame_ping.h +7 -6
  115. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +7 -7
  116. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -6
  117. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +6 -5
  118. data/src/core/ext/transport/chttp2/transport/frame_settings.h +6 -6
  119. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +4 -6
  120. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -6
  121. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +237 -208
  122. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +10 -10
  123. data/src/core/ext/transport/chttp2/transport/hpack_table.cc +4 -3
  124. data/src/core/ext/transport/chttp2/transport/hpack_table.h +4 -4
  125. data/src/core/ext/transport/chttp2/transport/incoming_metadata.cc +2 -2
  126. data/src/core/ext/transport/chttp2/transport/incoming_metadata.h +2 -2
  127. data/src/core/ext/transport/chttp2/transport/internal.h +32 -27
  128. data/src/core/ext/transport/chttp2/transport/parsing.cc +65 -58
  129. data/src/core/ext/transport/chttp2/transport/writing.cc +7 -3
  130. data/src/core/ext/transport/inproc/inproc_transport.cc +72 -60
  131. data/src/core/ext/xds/certificate_provider_factory.h +1 -1
  132. data/src/core/ext/xds/certificate_provider_store.h +3 -3
  133. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +3 -3
  134. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +2 -2
  135. data/src/core/ext/xds/xds_api.cc +348 -199
  136. data/src/core/ext/xds/xds_api.h +21 -12
  137. data/src/core/ext/xds/xds_bootstrap.cc +97 -159
  138. data/src/core/ext/xds/xds_bootstrap.h +19 -24
  139. data/src/core/ext/xds/xds_certificate_provider.cc +4 -4
  140. data/src/core/ext/xds/xds_certificate_provider.h +4 -4
  141. data/src/core/ext/xds/xds_channel_args.h +5 -2
  142. data/src/core/ext/xds/xds_client.cc +310 -178
  143. data/src/core/ext/xds/xds_client.h +41 -27
  144. data/src/core/ext/xds/xds_client_stats.h +3 -2
  145. data/src/core/ext/xds/xds_server_config_fetcher.cc +34 -20
  146. data/src/core/lib/{iomgr → address_utils}/parse_address.cc +17 -17
  147. data/src/core/lib/{iomgr → address_utils}/parse_address.h +7 -7
  148. data/src/core/lib/{iomgr → address_utils}/sockaddr_utils.cc +16 -20
  149. data/src/core/lib/{iomgr → address_utils}/sockaddr_utils.h +16 -11
  150. data/src/core/lib/channel/channel_stack.cc +10 -9
  151. data/src/core/lib/channel/channel_stack.h +10 -9
  152. data/src/core/lib/channel/channel_stack_builder.cc +2 -2
  153. data/src/core/lib/channel/channel_stack_builder.h +1 -1
  154. data/src/core/lib/channel/channelz.cc +21 -13
  155. data/src/core/lib/channel/channelz.h +3 -0
  156. data/src/core/lib/channel/connected_channel.cc +4 -4
  157. data/src/core/lib/channel/handshaker.cc +7 -6
  158. data/src/core/lib/channel/handshaker.h +5 -5
  159. data/src/core/lib/event_engine/endpoint_config.cc +46 -0
  160. data/src/core/lib/event_engine/endpoint_config_internal.h +42 -0
  161. data/src/core/lib/event_engine/event_engine.cc +50 -0
  162. data/src/core/lib/event_engine/slice_allocator.cc +89 -0
  163. data/src/core/lib/event_engine/sockaddr.cc +40 -0
  164. data/src/core/lib/event_engine/sockaddr.h +44 -0
  165. data/src/core/lib/gpr/wrap_memcpy.cc +2 -1
  166. data/src/core/lib/gprpp/ref_counted.h +28 -14
  167. data/src/core/lib/gprpp/status_helper.cc +407 -0
  168. data/src/core/lib/gprpp/status_helper.h +183 -0
  169. data/src/core/lib/http/httpcli.cc +11 -11
  170. data/src/core/lib/http/httpcli_security_connector.cc +11 -7
  171. data/src/core/lib/http/parser.cc +16 -16
  172. data/src/core/lib/http/parser.h +4 -4
  173. data/src/core/lib/iomgr/buffer_list.cc +7 -9
  174. data/src/core/lib/iomgr/buffer_list.h +4 -5
  175. data/src/core/lib/iomgr/call_combiner.cc +15 -12
  176. data/src/core/lib/iomgr/call_combiner.h +12 -14
  177. data/src/core/lib/iomgr/cfstream_handle.cc +3 -3
  178. data/src/core/lib/iomgr/cfstream_handle.h +1 -1
  179. data/src/core/lib/iomgr/closure.h +7 -6
  180. data/src/core/lib/iomgr/combiner.cc +14 -12
  181. data/src/core/lib/iomgr/combiner.h +2 -2
  182. data/src/core/lib/iomgr/endpoint.cc +1 -1
  183. data/src/core/lib/iomgr/endpoint.h +2 -2
  184. data/src/core/lib/iomgr/endpoint_cfstream.cc +11 -13
  185. data/src/core/lib/iomgr/endpoint_pair_event_engine.cc +33 -0
  186. data/src/core/lib/iomgr/endpoint_pair_windows.cc +1 -1
  187. data/src/core/lib/iomgr/error.cc +168 -61
  188. data/src/core/lib/iomgr/error.h +217 -106
  189. data/src/core/lib/iomgr/error_cfstream.cc +3 -2
  190. data/src/core/lib/iomgr/error_cfstream.h +2 -2
  191. data/src/core/lib/iomgr/error_internal.h +5 -1
  192. data/src/core/lib/iomgr/ev_apple.cc +5 -5
  193. data/src/core/lib/iomgr/ev_epoll1_linux.cc +19 -19
  194. data/src/core/lib/iomgr/ev_epollex_linux.cc +48 -45
  195. data/src/core/lib/iomgr/ev_poll_posix.cc +26 -23
  196. data/src/core/lib/iomgr/ev_posix.cc +9 -8
  197. data/src/core/lib/iomgr/ev_posix.h +9 -9
  198. data/src/core/lib/iomgr/event_engine/closure.cc +54 -0
  199. data/src/core/lib/iomgr/event_engine/closure.h +33 -0
  200. data/src/core/lib/iomgr/event_engine/endpoint.cc +194 -0
  201. data/src/core/lib/iomgr/event_engine/endpoint.h +53 -0
  202. data/src/core/lib/iomgr/event_engine/iomgr.cc +105 -0
  203. data/src/core/lib/iomgr/event_engine/iomgr.h +24 -0
  204. data/src/core/lib/iomgr/event_engine/pollset.cc +87 -0
  205. data/src/core/lib/iomgr/event_engine/pollset.h +25 -0
  206. data/src/core/lib/iomgr/event_engine/promise.h +51 -0
  207. data/src/core/lib/iomgr/event_engine/resolved_address_internal.cc +41 -0
  208. data/src/core/lib/iomgr/event_engine/resolved_address_internal.h +35 -0
  209. data/src/core/lib/iomgr/event_engine/resolver.cc +110 -0
  210. data/src/core/lib/iomgr/event_engine/tcp.cc +243 -0
  211. data/src/core/lib/iomgr/event_engine/timer.cc +57 -0
  212. data/src/core/lib/iomgr/exec_ctx.cc +12 -4
  213. data/src/core/lib/iomgr/exec_ctx.h +4 -5
  214. data/src/core/lib/iomgr/executor/threadpool.cc +2 -3
  215. data/src/core/lib/iomgr/executor/threadpool.h +2 -2
  216. data/src/core/lib/iomgr/executor.cc +8 -8
  217. data/src/core/lib/iomgr/executor.h +2 -2
  218. data/src/core/lib/iomgr/iomgr.cc +2 -2
  219. data/src/core/lib/iomgr/iomgr.h +1 -1
  220. data/src/core/lib/iomgr/iomgr_custom.cc +1 -1
  221. data/src/core/lib/iomgr/iomgr_internal.cc +2 -2
  222. data/src/core/lib/iomgr/iomgr_internal.h +3 -3
  223. data/src/core/lib/iomgr/iomgr_posix.cc +3 -1
  224. data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +42 -12
  225. data/src/core/lib/iomgr/iomgr_windows.cc +1 -1
  226. data/src/core/lib/iomgr/load_file.cc +4 -4
  227. data/src/core/lib/iomgr/load_file.h +2 -2
  228. data/src/core/lib/iomgr/lockfree_event.cc +5 -5
  229. data/src/core/lib/iomgr/lockfree_event.h +1 -1
  230. data/src/core/lib/iomgr/pollset.cc +5 -5
  231. data/src/core/lib/iomgr/pollset.h +9 -9
  232. data/src/core/lib/iomgr/pollset_custom.cc +7 -7
  233. data/src/core/lib/iomgr/pollset_custom.h +3 -1
  234. data/src/core/lib/iomgr/pollset_uv.cc +3 -1
  235. data/src/core/lib/iomgr/pollset_uv.h +5 -1
  236. data/src/core/lib/iomgr/pollset_windows.cc +5 -5
  237. data/src/core/lib/iomgr/port.h +7 -5
  238. data/src/core/lib/iomgr/python_util.h +1 -1
  239. data/src/core/lib/iomgr/resolve_address.cc +8 -4
  240. data/src/core/lib/iomgr/resolve_address.h +12 -6
  241. data/src/core/lib/iomgr/resolve_address_custom.cc +10 -9
  242. data/src/core/lib/iomgr/resolve_address_custom.h +3 -3
  243. data/src/core/lib/iomgr/resolve_address_posix.cc +3 -3
  244. data/src/core/lib/iomgr/resolve_address_windows.cc +4 -4
  245. data/src/core/lib/iomgr/resource_quota.cc +11 -10
  246. data/src/core/lib/iomgr/sockaddr.h +1 -0
  247. data/src/core/lib/iomgr/socket_mutator.cc +15 -2
  248. data/src/core/lib/iomgr/socket_mutator.h +26 -2
  249. data/src/core/lib/iomgr/socket_utils_common_posix.cc +24 -22
  250. data/src/core/lib/iomgr/socket_utils_posix.h +20 -20
  251. data/src/core/lib/iomgr/tcp_client_cfstream.cc +4 -4
  252. data/src/core/lib/iomgr/tcp_client_custom.cc +5 -6
  253. data/src/core/lib/iomgr/tcp_client_posix.cc +22 -19
  254. data/src/core/lib/iomgr/tcp_client_posix.h +3 -4
  255. data/src/core/lib/iomgr/tcp_client_windows.cc +5 -5
  256. data/src/core/lib/iomgr/tcp_custom.cc +14 -16
  257. data/src/core/lib/iomgr/tcp_custom.h +13 -12
  258. data/src/core/lib/iomgr/tcp_posix.cc +78 -73
  259. data/src/core/lib/iomgr/tcp_posix.h +8 -0
  260. data/src/core/lib/iomgr/tcp_server.cc +6 -6
  261. data/src/core/lib/iomgr/tcp_server.h +12 -11
  262. data/src/core/lib/iomgr/tcp_server_custom.cc +26 -25
  263. data/src/core/lib/iomgr/tcp_server_posix.cc +28 -21
  264. data/src/core/lib/iomgr/tcp_server_utils_posix.h +13 -12
  265. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +21 -18
  266. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +9 -9
  267. data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc +4 -4
  268. data/src/core/lib/iomgr/tcp_server_windows.cc +26 -25
  269. data/src/core/lib/iomgr/tcp_uv.cc +25 -23
  270. data/src/core/lib/iomgr/tcp_windows.cc +13 -13
  271. data/src/core/lib/iomgr/tcp_windows.h +2 -2
  272. data/src/core/lib/iomgr/timer.h +6 -1
  273. data/src/core/lib/iomgr/timer_custom.cc +2 -1
  274. data/src/core/lib/iomgr/timer_custom.h +1 -1
  275. data/src/core/lib/iomgr/timer_generic.cc +6 -6
  276. data/src/core/lib/iomgr/udp_server.cc +21 -20
  277. data/src/core/lib/iomgr/unix_sockets_posix.cc +3 -3
  278. data/src/core/lib/iomgr/unix_sockets_posix.h +2 -2
  279. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +10 -7
  280. data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +3 -3
  281. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +4 -4
  282. data/src/core/lib/iomgr/wakeup_fd_posix.cc +3 -3
  283. data/src/core/lib/iomgr/wakeup_fd_posix.h +8 -6
  284. data/src/core/lib/iomgr/work_serializer.h +17 -1
  285. data/src/core/lib/json/json.h +1 -1
  286. data/src/core/lib/json/json_reader.cc +4 -4
  287. data/src/core/lib/matchers/matchers.cc +39 -39
  288. data/src/core/lib/matchers/matchers.h +28 -28
  289. data/src/core/lib/security/authorization/authorization_engine.h +44 -0
  290. data/src/core/lib/security/authorization/authorization_policy_provider.h +32 -0
  291. data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +46 -0
  292. data/src/core/lib/security/authorization/evaluate_args.cc +209 -0
  293. data/src/core/lib/security/authorization/evaluate_args.h +91 -0
  294. data/src/core/lib/security/credentials/composite/composite_credentials.cc +4 -4
  295. data/src/core/lib/security/credentials/composite/composite_credentials.h +2 -2
  296. data/src/core/lib/security/credentials/credentials.h +2 -2
  297. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +17 -13
  298. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +13 -11
  299. data/src/core/lib/security/credentials/external/aws_request_signer.cc +2 -1
  300. data/src/core/lib/security/credentials/external/aws_request_signer.h +1 -1
  301. data/src/core/lib/security/credentials/external/external_account_credentials.cc +15 -12
  302. data/src/core/lib/security/credentials/external/external_account_credentials.h +9 -8
  303. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +5 -4
  304. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +4 -3
  305. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +8 -8
  306. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +9 -7
  307. data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -2
  308. data/src/core/lib/security/credentials/fake/fake_credentials.h +2 -2
  309. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +12 -10
  310. data/src/core/lib/security/credentials/iam/iam_credentials.cc +2 -2
  311. data/src/core/lib/security/credentials/iam/iam_credentials.h +2 -2
  312. data/src/core/lib/security/credentials/jwt/json_token.cc +2 -2
  313. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +3 -3
  314. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +2 -2
  315. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +7 -5
  316. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +21 -19
  317. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +5 -5
  318. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +5 -5
  319. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +2 -2
  320. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +8 -7
  321. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +9 -9
  322. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +19 -13
  323. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +4 -0
  324. data/src/core/lib/security/credentials/tls/tls_utils.cc +32 -0
  325. data/src/core/lib/security/credentials/tls/tls_utils.h +13 -0
  326. data/src/core/lib/security/credentials/xds/xds_credentials.cc +3 -3
  327. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +13 -3
  328. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +13 -3
  329. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +2 -2
  330. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +12 -2
  331. data/src/core/lib/security/security_connector/load_system_roots_linux.cc +1 -1
  332. data/src/core/lib/security/security_connector/local/local_security_connector.cc +22 -9
  333. data/src/core/lib/security/security_connector/security_connector.h +9 -4
  334. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +16 -6
  335. data/src/core/lib/security/security_connector/ssl_utils.cc +27 -4
  336. data/src/core/lib/security/security_connector/ssl_utils.h +4 -4
  337. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +56 -60
  338. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +66 -48
  339. data/src/core/lib/security/transport/client_auth_filter.cc +18 -10
  340. data/src/core/lib/security/transport/secure_endpoint.cc +4 -4
  341. data/src/core/lib/security/transport/security_handshaker.cc +33 -32
  342. data/src/core/lib/security/transport/server_auth_filter.cc +19 -13
  343. data/src/core/lib/security/transport/tsi_error.cc +2 -1
  344. data/src/core/lib/security/transport/tsi_error.h +2 -1
  345. data/src/core/lib/security/util/json_util.cc +2 -2
  346. data/src/core/lib/security/util/json_util.h +1 -1
  347. data/src/core/lib/surface/call.cc +67 -46
  348. data/src/core/lib/surface/call.h +13 -2
  349. data/src/core/lib/surface/channel.cc +6 -6
  350. data/src/core/lib/surface/channel.h +3 -2
  351. data/src/core/lib/surface/channel_ping.cc +1 -1
  352. data/src/core/lib/surface/completion_queue.cc +68 -69
  353. data/src/core/lib/surface/completion_queue.h +3 -2
  354. data/src/core/lib/surface/completion_queue_factory.cc +1 -2
  355. data/src/core/lib/surface/init.cc +1 -3
  356. data/src/core/lib/surface/init.h +10 -1
  357. data/src/core/lib/surface/lame_client.cc +11 -11
  358. data/src/core/lib/surface/lame_client.h +1 -1
  359. data/src/core/lib/surface/server.cc +28 -22
  360. data/src/core/lib/surface/server.h +16 -15
  361. data/src/core/lib/surface/validate_metadata.cc +7 -7
  362. data/src/core/lib/surface/validate_metadata.h +3 -2
  363. data/src/core/lib/surface/version.cc +4 -2
  364. data/src/core/lib/transport/byte_stream.cc +5 -5
  365. data/src/core/lib/transport/byte_stream.h +8 -8
  366. data/src/core/lib/transport/connectivity_state.cc +1 -1
  367. data/src/core/lib/transport/error_utils.cc +21 -10
  368. data/src/core/lib/transport/error_utils.h +11 -5
  369. data/src/core/lib/transport/metadata_batch.cc +37 -37
  370. data/src/core/lib/transport/metadata_batch.h +19 -18
  371. data/src/core/lib/transport/transport.cc +4 -3
  372. data/src/core/lib/transport/transport.h +6 -4
  373. data/src/core/lib/transport/transport_op_string.cc +6 -6
  374. data/src/core/plugin_registry/grpc_plugin_registry.cc +4 -0
  375. data/src/core/tsi/alts/crypt/gsec.h +6 -0
  376. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +5 -4
  377. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +7 -6
  378. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +2 -1
  379. data/src/core/tsi/ssl_transport_security.cc +32 -14
  380. data/src/core/tsi/ssl_transport_security.h +3 -4
  381. data/src/ruby/bin/math_services_pb.rb +1 -1
  382. data/src/ruby/ext/grpc/extconf.rb +2 -0
  383. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +6 -0
  384. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +11 -2
  385. data/src/ruby/lib/grpc/version.rb +1 -1
  386. data/src/ruby/pb/grpc/health/v1/health_services_pb.rb +1 -1
  387. data/src/ruby/pb/src/proto/grpc/testing/test_services_pb.rb +6 -6
  388. data/third_party/abseil-cpp/absl/algorithm/container.h +3 -3
  389. data/third_party/abseil-cpp/absl/base/attributes.h +24 -4
  390. data/third_party/abseil-cpp/absl/base/call_once.h +2 -9
  391. data/third_party/abseil-cpp/absl/base/config.h +37 -9
  392. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +24 -10
  393. data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +4 -1
  394. data/third_party/abseil-cpp/absl/base/internal/endian.h +61 -0
  395. data/third_party/abseil-cpp/absl/base/internal/low_level_scheduling.h +2 -3
  396. data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +34 -32
  397. data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +16 -6
  398. data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +11 -2
  399. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +14 -5
  400. data/third_party/abseil-cpp/absl/base/internal/spinlock_akaros.inc +2 -2
  401. data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +3 -3
  402. data/third_party/abseil-cpp/absl/base/internal/spinlock_posix.inc +2 -2
  403. data/third_party/abseil-cpp/absl/base/internal/spinlock_wait.h +11 -11
  404. data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +5 -5
  405. data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +1 -1
  406. data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +5 -2
  407. data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +43 -42
  408. data/third_party/abseil-cpp/absl/base/internal/throw_delegate.cc +111 -7
  409. data/third_party/abseil-cpp/absl/base/internal/unaligned_access.h +0 -76
  410. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +1 -3
  411. data/third_party/abseil-cpp/absl/base/log_severity.h +4 -4
  412. data/third_party/abseil-cpp/absl/base/macros.h +11 -0
  413. data/third_party/abseil-cpp/absl/base/optimization.h +10 -7
  414. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  415. data/third_party/abseil-cpp/absl/base/port.h +0 -1
  416. data/third_party/abseil-cpp/absl/base/thread_annotations.h +1 -1
  417. data/third_party/abseil-cpp/absl/container/fixed_array.h +2 -2
  418. data/third_party/abseil-cpp/absl/container/inlined_vector.h +5 -3
  419. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +1 -1
  420. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +5 -1
  421. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +2 -1
  422. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler_force_weak_definition.cc +2 -1
  423. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +141 -66
  424. data/third_party/abseil-cpp/absl/container/internal/layout.h +4 -4
  425. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +14 -1
  426. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +136 -136
  427. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +16 -12
  428. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +5 -2
  429. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +3 -12
  430. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +6 -1
  431. data/third_party/abseil-cpp/absl/debugging/internal/symbolize.h +3 -5
  432. data/third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc +2 -2
  433. data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +2 -2
  434. data/third_party/abseil-cpp/absl/hash/internal/city.cc +15 -12
  435. data/third_party/abseil-cpp/absl/hash/internal/city.h +1 -19
  436. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +25 -10
  437. data/third_party/abseil-cpp/absl/hash/internal/hash.h +86 -37
  438. data/third_party/abseil-cpp/absl/hash/internal/wyhash.cc +111 -0
  439. data/third_party/abseil-cpp/absl/hash/internal/wyhash.h +48 -0
  440. data/third_party/abseil-cpp/absl/meta/type_traits.h +16 -2
  441. data/third_party/abseil-cpp/absl/numeric/bits.h +177 -0
  442. data/third_party/abseil-cpp/absl/numeric/int128.cc +3 -3
  443. data/third_party/abseil-cpp/absl/numeric/internal/bits.h +358 -0
  444. data/third_party/abseil-cpp/absl/numeric/internal/representation.h +55 -0
  445. data/third_party/abseil-cpp/absl/status/internal/status_internal.h +18 -0
  446. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +4 -7
  447. data/third_party/abseil-cpp/absl/status/status.cc +29 -22
  448. data/third_party/abseil-cpp/absl/status/status.h +81 -20
  449. data/third_party/abseil-cpp/absl/status/statusor.h +3 -3
  450. data/third_party/abseil-cpp/absl/strings/charconv.cc +5 -5
  451. data/third_party/abseil-cpp/absl/strings/cord.cc +326 -371
  452. data/third_party/abseil-cpp/absl/strings/cord.h +182 -64
  453. data/third_party/abseil-cpp/absl/strings/escaping.cc +4 -4
  454. data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +6 -6
  455. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +83 -0
  456. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +387 -17
  457. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +146 -0
  458. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +897 -0
  459. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.h +589 -0
  460. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring_reader.h +114 -0
  461. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +14 -0
  462. data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +14 -0
  463. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +15 -1
  464. data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +19 -4
  465. data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +14 -0
  466. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +36 -18
  467. data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.h +14 -0
  468. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +14 -0
  469. data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +14 -0
  470. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +15 -40
  471. data/third_party/abseil-cpp/absl/strings/internal/string_constant.h +64 -0
  472. data/third_party/abseil-cpp/absl/strings/match.cc +6 -3
  473. data/third_party/abseil-cpp/absl/strings/match.h +16 -6
  474. data/third_party/abseil-cpp/absl/strings/numbers.cc +132 -4
  475. data/third_party/abseil-cpp/absl/strings/numbers.h +10 -10
  476. data/third_party/abseil-cpp/absl/strings/str_join.h +1 -1
  477. data/third_party/abseil-cpp/absl/strings/str_split.h +38 -4
  478. data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +154 -0
  479. data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +2 -1
  480. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +2 -2
  481. data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +4 -4
  482. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +1 -65
  483. data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +2 -6
  484. data/third_party/abseil-cpp/absl/synchronization/mutex.cc +71 -59
  485. data/third_party/abseil-cpp/absl/synchronization/mutex.h +79 -62
  486. data/third_party/abseil-cpp/absl/time/clock.cc +146 -130
  487. data/third_party/abseil-cpp/absl/time/clock.h +2 -2
  488. data/third_party/abseil-cpp/absl/time/duration.cc +3 -2
  489. data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +7 -11
  490. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +7 -1
  491. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +4 -4
  492. data/third_party/abseil-cpp/absl/time/time.cc +4 -3
  493. data/third_party/abseil-cpp/absl/time/time.h +26 -24
  494. data/third_party/abseil-cpp/absl/types/internal/variant.h +1 -1
  495. data/third_party/abseil-cpp/absl/types/variant.h +9 -4
  496. data/third_party/boringssl-with-bazel/err_data.c +483 -461
  497. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_bool.c +1 -1
  498. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_object.c +9 -7
  499. data/third_party/boringssl-with-bazel/src/crypto/asn1/a_type.c +18 -8
  500. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_lib.c +1 -2
  501. data/third_party/boringssl-with-bazel/src/crypto/asn1/asn1_locl.h +5 -0
  502. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_enc.c +1 -1
  503. data/third_party/boringssl-with-bazel/src/crypto/asn1/tasn_fre.c +1 -1
  504. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/cipher_extra.c +4 -0
  505. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_tls.c +1 -88
  506. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +14 -3
  507. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +119 -273
  508. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +1 -1
  509. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +1 -1
  510. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +87 -80
  511. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +9 -0
  512. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +1 -0
  513. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +1 -1
  514. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +0 -4
  515. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/cipher.c +11 -3
  516. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +25 -2
  517. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digest.c +7 -0
  518. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/digests.c +10 -2
  519. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/md32_common.h +87 -160
  520. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec.c +4 -0
  521. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +0 -1
  522. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/internal.h +0 -4
  523. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +104 -93
  524. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +39 -0
  525. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/md4.c +52 -65
  526. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/md5.c +52 -66
  527. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cbc.c +33 -22
  528. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/cfb.c +9 -8
  529. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ctr.c +9 -8
  530. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/gcm.c +17 -13
  531. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/internal.h +1 -22
  532. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/ofb.c +2 -1
  533. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -4
  534. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +0 -13
  535. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +26 -7
  536. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +26 -24
  537. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +10 -7
  538. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +79 -0
  539. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +14 -9
  540. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +61 -75
  541. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +80 -103
  542. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +40 -49
  543. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +367 -315
  544. data/third_party/boringssl-with-bazel/src/crypto/internal.h +65 -0
  545. data/third_party/boringssl-with-bazel/src/crypto/mem.c +14 -0
  546. data/third_party/boringssl-with-bazel/src/crypto/obj/obj.c +3 -3
  547. data/third_party/boringssl-with-bazel/src/crypto/pkcs7/pkcs7_x509.c +5 -3
  548. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/pkcs8_x509.c +95 -48
  549. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +2 -2
  550. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +1 -1
  551. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/rsa_asn1.c +1 -2
  552. data/third_party/boringssl-with-bazel/src/crypto/thread_pthread.c +0 -28
  553. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +120 -11
  554. data/third_party/boringssl-with-bazel/src/crypto/x509/t_req.c +2 -0
  555. data/third_party/boringssl-with-bazel/src/crypto/x509/t_x509a.c +3 -0
  556. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_att.c +19 -25
  557. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_cmp.c +3 -2
  558. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_req.c +42 -89
  559. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_set.c +9 -16
  560. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +2 -0
  561. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +14 -15
  562. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +53 -73
  563. data/third_party/boringssl-with-bazel/src/crypto/x509/x509cset.c +31 -0
  564. data/third_party/boringssl-with-bazel/src/crypto/x509/x509rset.c +3 -0
  565. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +21 -17
  566. data/third_party/boringssl-with-bazel/src/crypto/x509/x_all.c +3 -0
  567. data/third_party/boringssl-with-bazel/src/crypto/x509/x_attrib.c +7 -25
  568. data/third_party/boringssl-with-bazel/src/crypto/x509/x_crl.c +5 -0
  569. data/third_party/boringssl-with-bazel/src/crypto/x509/x_pubkey.c +25 -22
  570. data/third_party/boringssl-with-bazel/src/crypto/x509/x_req.c +5 -8
  571. data/third_party/boringssl-with-bazel/src/crypto/x509/x_sig.c +5 -0
  572. data/third_party/boringssl-with-bazel/src/crypto/x509/x_val.c +2 -0
  573. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509a.c +3 -0
  574. data/third_party/boringssl-with-bazel/src/crypto/x509v3/internal.h +7 -0
  575. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_cpols.c +2 -4
  576. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_purp.c +1 -1
  577. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_skey.c +1 -0
  578. data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_utl.c +5 -8
  579. data/third_party/boringssl-with-bazel/src/include/openssl/aead.h +1 -4
  580. data/third_party/boringssl-with-bazel/src/include/openssl/arm_arch.h +66 -1
  581. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +120 -41
  582. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +47 -7
  583. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +1 -0
  584. data/third_party/boringssl-with-bazel/src/include/openssl/chacha.h +1 -1
  585. data/third_party/boringssl-with-bazel/src/include/openssl/cipher.h +0 -8
  586. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +24 -4
  587. data/third_party/boringssl-with-bazel/src/include/openssl/digest.h +6 -2
  588. data/third_party/boringssl-with-bazel/src/include/openssl/ec.h +5 -2
  589. data/third_party/boringssl-with-bazel/src/include/openssl/ecdsa.h +33 -0
  590. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +3 -2
  591. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +20 -49
  592. data/third_party/boringssl-with-bazel/src/{crypto/x509/x509_r2x.c → include/openssl/evp_errors.h} +41 -58
  593. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +325 -0
  594. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +24 -5
  595. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs7.h +25 -7
  596. data/third_party/boringssl-with-bazel/src/include/openssl/pkcs8.h +9 -1
  597. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +2 -2
  598. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +99 -63
  599. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +283 -85
  600. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +13 -19
  601. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +445 -152
  602. data/third_party/boringssl-with-bazel/src/include/openssl/x509_vfy.h +451 -435
  603. data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +2 -1
  604. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +7 -2
  605. data/third_party/boringssl-with-bazel/src/ssl/d1_srtp.cc +1 -1
  606. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +1133 -0
  607. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +298 -22
  608. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +66 -30
  609. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +189 -86
  610. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +154 -24
  611. data/third_party/boringssl-with-bazel/src/ssl/internal.h +414 -135
  612. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +9 -3
  613. data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +2 -2
  614. data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +14 -19
  615. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +4 -6
  616. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +23 -26
  617. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +51 -60
  618. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +2 -0
  619. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +8 -31
  620. data/third_party/boringssl-with-bazel/src/ssl/ssl_stat.cc +3 -0
  621. data/third_party/boringssl-with-bazel/src/ssl/ssl_transcript.cc +4 -3
  622. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +7 -3
  623. data/third_party/boringssl-with-bazel/src/ssl/t1_lib.cc +664 -702
  624. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +65 -7
  625. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +98 -39
  626. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +141 -94
  627. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +213 -118
  628. data/third_party/boringssl-with-bazel/src/ssl/tls_method.cc +4 -2
  629. metadata +94 -46
  630. data/src/core/lib/iomgr/poller/eventmanager_libuv.cc +0 -88
  631. data/src/core/lib/iomgr/poller/eventmanager_libuv.h +0 -88
  632. data/third_party/abseil-cpp/absl/base/internal/bits.h +0 -219
  633. data/third_party/abseil-cpp/absl/synchronization/internal/mutex_nonprod.inc +0 -249
  634. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/is_fips.c +0 -29
  635. data/third_party/boringssl-with-bazel/src/crypto/hpke/internal.h +0 -246
  636. data/third_party/boringssl-with-bazel/src/crypto/x509/vpm_int.h +0 -71
@@ -171,7 +171,6 @@ extern "C" {
171
171
  #define TLS1_AD_USER_CANCELLED 90
172
172
  #define TLS1_AD_NO_RENEGOTIATION 100
173
173
  #define TLS1_AD_MISSING_EXTENSION 109
174
- // codes 110-114 are from RFC3546
175
174
  #define TLS1_AD_UNSUPPORTED_EXTENSION 110
176
175
  #define TLS1_AD_CERTIFICATE_UNOBTAINABLE 111
177
176
  #define TLS1_AD_UNRECOGNIZED_NAME 112
@@ -180,6 +179,7 @@ extern "C" {
180
179
  #define TLS1_AD_UNKNOWN_PSK_IDENTITY 115
181
180
  #define TLS1_AD_CERTIFICATE_REQUIRED 116
182
181
  #define TLS1_AD_NO_APPLICATION_PROTOCOL 120
182
+ #define TLS1_AD_ECH_REQUIRED 121 // draft-ietf-tls-esni-10
183
183
 
184
184
  // ExtensionType values from RFC6066
185
185
  #define TLSEXT_TYPE_server_name 0
@@ -203,28 +203,21 @@ extern "C" {
203
203
  // ExtensionType value from RFC7627
204
204
  #define TLSEXT_TYPE_extended_master_secret 23
205
205
 
206
- // ExtensionType value from draft-ietf-tokbind-negotiation-10
207
- #define TLSEXT_TYPE_token_binding 24
208
-
209
206
  // ExtensionType value from draft-ietf-quic-tls. Drafts 00 through 32 use
210
207
  // 0xffa5 which is part of the Private Use section of the registry, and it
211
208
  // collides with TLS-LTS and, based on scans, something else too (though this
212
209
  // hasn't been a problem in practice since it's QUIC-only). Drafts 33 onward
213
210
  // use the value 57 which was officially registered with IANA.
214
211
  #define TLSEXT_TYPE_quic_transport_parameters_legacy 0xffa5
215
- #define TLSEXT_TYPE_quic_transport_parameters_standard 57
216
-
217
- // TLSEXT_TYPE_quic_transport_parameters is an alias for
218
- // |TLSEXT_TYPE_quic_transport_parameters_legacy|. It will switch to
219
- // |TLSEXT_TYPE_quic_transport_parameters_standard| at a later date.
220
- //
221
- // Callers using |SSL_set_quic_use_legacy_codepoint| should use
222
- // |TLSEXT_TYPE_quic_transport_parameters_legacy| or
223
- // |TLSEXT_TYPE_quic_transport_parameters_standard| rather than this constant.
224
- // When the default code point is switched to the standard one, this value will
225
- // be updated and we will transition callers back to the unsuffixed constant.
226
- #define TLSEXT_TYPE_quic_transport_parameters \
227
- TLSEXT_TYPE_quic_transport_parameters_legacy
212
+
213
+ // ExtensionType value from RFC9000
214
+ #define TLSEXT_TYPE_quic_transport_parameters 57
215
+
216
+ // TLSEXT_TYPE_quic_transport_parameters_standard is an alias for
217
+ // |TLSEXT_TYPE_quic_transport_parameters|. Use
218
+ // |TLSEXT_TYPE_quic_transport_parameters| instead.
219
+ #define TLSEXT_TYPE_quic_transport_parameters_standard \
220
+ TLSEXT_TYPE_quic_transport_parameters
228
221
 
229
222
  // ExtensionType value from RFC8879
230
223
  #define TLSEXT_TYPE_cert_compression 27
@@ -253,10 +246,11 @@ extern "C" {
253
246
  // extension number.
254
247
  #define TLSEXT_TYPE_application_settings 17513
255
248
 
256
- // ExtensionType values from draft-ietf-tls-esni-09. This is not an IANA defined
249
+ // ExtensionType values from draft-ietf-tls-esni-10. This is not an IANA defined
257
250
  // extension number.
258
- #define TLSEXT_TYPE_encrypted_client_hello 0xfe09
251
+ #define TLSEXT_TYPE_encrypted_client_hello 0xfe0a
259
252
  #define TLSEXT_TYPE_ech_is_inner 0xda09
253
+ #define TLSEXT_TYPE_ech_outer_extensions 0xfd00
260
254
 
261
255
  // ExtensionType value from RFC6962
262
256
  #define TLSEXT_TYPE_certificate_timestamp 18
@@ -115,22 +115,6 @@ DECLARE_ASN1_SET_OF(X509_ALGOR)
115
115
 
116
116
  typedef STACK_OF(X509_ALGOR) X509_ALGORS;
117
117
 
118
- struct X509_val_st {
119
- ASN1_TIME *notBefore;
120
- ASN1_TIME *notAfter;
121
- } /* X509_VAL */;
122
-
123
- struct X509_pubkey_st {
124
- X509_ALGOR *algor;
125
- ASN1_BIT_STRING *public_key;
126
- EVP_PKEY *pkey;
127
- };
128
-
129
- struct X509_sig_st {
130
- X509_ALGOR *algor;
131
- ASN1_OCTET_STRING *digest;
132
- } /* X509_SIG */;
133
-
134
118
  struct X509_name_entry_st {
135
119
  ASN1_OBJECT *object;
136
120
  ASN1_STRING *value;
@@ -164,37 +148,9 @@ typedef STACK_OF(X509_EXTENSION) X509_EXTENSIONS;
164
148
  DEFINE_STACK_OF(X509_EXTENSION)
165
149
  DECLARE_ASN1_SET_OF(X509_EXTENSION)
166
150
 
167
- // a sequence of these are used
168
- struct x509_attributes_st {
169
- ASN1_OBJECT *object;
170
- int single; // 0 for a set, 1 for a single item (which is wrong)
171
- union {
172
- char *ptr;
173
- /* 0 */ STACK_OF(ASN1_TYPE) *set;
174
- /* 1 */ ASN1_TYPE *single;
175
- } value;
176
- } /* X509_ATTRIBUTE */;
177
-
178
151
  DEFINE_STACK_OF(X509_ATTRIBUTE)
179
152
  DECLARE_ASN1_SET_OF(X509_ATTRIBUTE)
180
153
 
181
-
182
- struct X509_req_info_st {
183
- ASN1_ENCODING enc;
184
- ASN1_INTEGER *version;
185
- X509_NAME *subject;
186
- X509_PUBKEY *pubkey;
187
- // d=2 hl=2 l= 0 cons: cont: 00
188
- STACK_OF(X509_ATTRIBUTE) *attributes; // [ 0 ]
189
- } /* X509_REQ_INFO */;
190
-
191
- struct X509_req_st {
192
- X509_REQ_INFO *req_info;
193
- X509_ALGOR *sig_alg;
194
- ASN1_BIT_STRING *signature;
195
- CRYPTO_refcount_t references;
196
- } /* X509_REQ */;
197
-
198
154
  struct x509_cinf_st {
199
155
  ASN1_INTEGER *version; // [ 0 ] default of v1
200
156
  ASN1_INTEGER *serialNumber;
@@ -214,14 +170,6 @@ struct x509_cinf_st {
214
170
  // stores and databases. When used this is tagged onto
215
171
  // the end of the certificate itself
216
172
 
217
- struct x509_cert_aux_st {
218
- STACK_OF(ASN1_OBJECT) *trust; // trusted uses
219
- STACK_OF(ASN1_OBJECT) *reject; // rejected uses
220
- ASN1_UTF8STRING *alias; // "friendly name"
221
- ASN1_OCTET_STRING *keyid; // key id of private key
222
- STACK_OF(X509_ALGOR) *other; // other unspecified info
223
- } /* X509_CERT_AUX */;
224
-
225
173
  DECLARE_STACK_OF(DIST_POINT)
226
174
  DECLARE_STACK_OF(GENERAL_NAME)
227
175
 
@@ -475,16 +423,33 @@ extern "C" {
475
423
  // it is safe to call mutating functions is a little tricky due to various
476
424
  // internal caches.
477
425
 
478
- // X509_get_version returns the numerical value of |x509|'s version. That is,
479
- // it returns zero for X.509v1, one for X.509v2, and two for X.509v3. Unknown
480
- // versions are rejected by the parser, but a manually-created |X509| object may
481
- // encode invalid versions. In that case, the function will return the invalid
482
- // version, or -1 on overflow.
426
+ // X509_VERSION_* are X.509 version numbers. Note the numerical values of all
427
+ // defined X.509 versions are one less than the named version.
428
+ #define X509_VERSION_1 0
429
+ #define X509_VERSION_2 1
430
+ #define X509_VERSION_3 2
431
+
432
+ // X509_get_version returns the numerical value of |x509|'s version. Callers may
433
+ // compare the result to the |X509_VERSION_*| constants. Unknown versions are
434
+ // rejected by the parser, but a manually-created |X509| object may encode
435
+ // invalid versions. In that case, the function will return the invalid version,
436
+ // or -1 on overflow.
483
437
  OPENSSL_EXPORT long X509_get_version(const X509 *x509);
484
438
 
439
+ // X509_set_version sets |x509|'s version to |version|, which should be one of
440
+ // the |X509V_VERSION_*| constants. It returns one on success and zero on error.
441
+ //
442
+ // If unsure, use |X509_VERSION_3|.
443
+ OPENSSL_EXPORT int X509_set_version(X509 *x509, long version);
444
+
485
445
  // X509_get0_serialNumber returns |x509|'s serial number.
486
446
  OPENSSL_EXPORT const ASN1_INTEGER *X509_get0_serialNumber(const X509 *x509);
487
447
 
448
+ // X509_set_serialNumber sets |x509|'s serial number to |serial|. It returns one
449
+ // on success and zero on error.
450
+ OPENSSL_EXPORT int X509_set_serialNumber(X509 *x509,
451
+ const ASN1_INTEGER *serial);
452
+
488
453
  // X509_get0_notBefore returns |x509|'s notBefore time.
489
454
  OPENSSL_EXPORT const ASN1_TIME *X509_get0_notBefore(const X509 *x509);
490
455
 
@@ -523,20 +488,16 @@ OPENSSL_EXPORT int X509_set_notBefore(X509 *x509, const ASN1_TIME *tm);
523
488
  // instead.
524
489
  OPENSSL_EXPORT int X509_set_notAfter(X509 *x509, const ASN1_TIME *tm);
525
490
 
526
- // X509_get0_uids sets |*out_issuer_uid| and |*out_subject_uid| to non-owning
527
- // pointers to the issuerUID and subjectUID fields, respectively, of |x509|.
528
- // Either output pointer may be NULL to skip the field.
491
+ // X509_get0_uids sets |*out_issuer_uid| to a non-owning pointer to the
492
+ // issuerUID field of |x509|, or NULL if |x509| has no issuerUID. It similarly
493
+ // outputs |x509|'s subjectUID field to |*out_subject_uid|.
494
+ //
495
+ // Callers may pass NULL to either |out_issuer_uid| or |out_subject_uid| to
496
+ // ignore the corresponding field.
529
497
  OPENSSL_EXPORT void X509_get0_uids(const X509 *x509,
530
498
  const ASN1_BIT_STRING **out_issuer_uid,
531
499
  const ASN1_BIT_STRING **out_subject_uid);
532
500
 
533
- // X509_get_cert_info returns |x509|'s TBSCertificate structure. Note this
534
- // function is not const-correct for legacy reasons.
535
- //
536
- // This function is deprecated and may be removed in the future. It is not
537
- // present in OpenSSL and constrains some improvements to the library.
538
- OPENSSL_EXPORT X509_CINF *X509_get_cert_info(const X509 *x509);
539
-
540
501
  // X509_extract_key is a legacy alias to |X509_get_pubkey|. Use
541
502
  // |X509_get_pubkey| instead.
542
503
  #define X509_extract_key(x) X509_get_pubkey(x)
@@ -550,9 +511,15 @@ OPENSSL_EXPORT X509_CINF *X509_get_cert_info(const X509 *x509);
550
511
  // |EXFLAG_INVALID| bit.
551
512
  OPENSSL_EXPORT long X509_get_pathlen(X509 *x509);
552
513
 
553
- // X509_REQ_get_version returns the numerical value of |req|'s version. That is,
554
- // it returns zero for a v1 request. If |req| is invalid, it may return another
555
- // value, or -1 on overflow.
514
+ // X509_REQ_VERSION_1 is the version constant for |X509_REQ| objects. Note no
515
+ // other versions are defined.
516
+ #define X509_REQ_VERSION_1 0
517
+
518
+ // X509_REQ_get_version returns the numerical value of |req|'s version. This
519
+ // will be |X509_REQ_VERSION_1| for valid certificate requests. If |req| is
520
+ // invalid, it may return another value, or -1 on overflow.
521
+ //
522
+ // TODO(davidben): Enforce the version number in the parser.
556
523
  OPENSSL_EXPORT long X509_REQ_get_version(const X509_REQ *req);
557
524
 
558
525
  // X509_REQ_get_subject_name returns |req|'s subject name. Note this function is
@@ -565,9 +532,14 @@ OPENSSL_EXPORT X509_NAME *X509_REQ_get_subject_name(const X509_REQ *req);
565
532
  // X509_name_cmp is a legacy alias for |X509_NAME_cmp|.
566
533
  #define X509_name_cmp(a, b) X509_NAME_cmp((a), (b))
567
534
 
568
- // X509_REQ_get_version returns the numerical value of |crl|'s version. That is,
569
- // it returns zero for a v1 CRL and one for a v2 CRL. If |crl| is invalid, it
570
- // may return another value, or -1 on overflow.
535
+ #define X509_CRL_VERSION_1 0
536
+ #define X509_CRL_VERSION_2 1
537
+
538
+ // X509_CRL_get_version returns the numerical value of |crl|'s version. Callers
539
+ // may compare the result to |X509_CRL_VERSION_*| constants. If |crl| is
540
+ // invalid, it may return another value, or -1 on overflow.
541
+ //
542
+ // TODO(davidben): Enforce the version number in the parser.
571
543
  OPENSSL_EXPORT long X509_CRL_get_version(const X509_CRL *crl);
572
544
 
573
545
  // X509_CRL_get0_lastUpdate returns |crl|'s lastUpdate time.
@@ -602,33 +574,19 @@ OPENSSL_EXPORT ASN1_TIME *X509_CRL_get_nextUpdate(X509_CRL *crl);
602
574
  // const-correct for legacy reasons.
603
575
  OPENSSL_EXPORT X509_NAME *X509_CRL_get_issuer(const X509_CRL *crl);
604
576
 
605
- // X509_CRL_get_REVOKED returns the list of revoked certificates in |crl|.
577
+ // X509_CRL_get_REVOKED returns the list of revoked certificates in |crl|, or
578
+ // NULL if |crl| omits it.
606
579
  //
607
580
  // TOOD(davidben): This function was originally a macro, without clear const
608
581
  // semantics. It should take a const input and give const output, but the latter
609
582
  // would break existing callers. For now, we match upstream.
610
583
  OPENSSL_EXPORT STACK_OF(X509_REVOKED) *X509_CRL_get_REVOKED(X509_CRL *crl);
611
584
 
612
- // X509_CRL_get0_extensions returns |crl|'s extension list.
585
+ // X509_CRL_get0_extensions returns |crl|'s extension list, or NULL if |crl|
586
+ // omits it.
613
587
  OPENSSL_EXPORT const STACK_OF(X509_EXTENSION) *X509_CRL_get0_extensions(
614
588
  const X509_CRL *crl);
615
589
 
616
- // X509_CINF_set_modified marks |cinf| as modified so that changes will be
617
- // reflected in serializing the structure.
618
- //
619
- // This function is deprecated and may be removed in the future. It is not
620
- // present in OpenSSL and constrains some improvements to the library.
621
- OPENSSL_EXPORT void X509_CINF_set_modified(X509_CINF *cinf);
622
-
623
- // X509_CINF_get_signature returns the signature algorithm in |cinf|. Note this
624
- // isn't the signature itself, but the extra copy of the signature algorithm
625
- // in the TBSCertificate.
626
- //
627
- // This function is deprecated and may be removed in the future. It is not
628
- // present in OpenSSL and constrains some improvements to the library. Use
629
- // |X509_get0_tbs_sigalg| instead.
630
- OPENSSL_EXPORT const X509_ALGOR *X509_CINF_get_signature(const X509_CINF *cinf);
631
-
632
590
  // X509_SIG_get0 sets |*out_alg| and |*out_digest| to non-owning pointers to
633
591
  // |sig|'s algorithm and digest fields, respectively. Either |out_alg| and
634
592
  // |out_digest| may be NULL to skip those fields.
@@ -892,12 +850,54 @@ OPENSSL_EXPORT X509_CRL *X509_CRL_dup(X509_CRL *crl);
892
850
  OPENSSL_EXPORT X509_REVOKED *X509_REVOKED_dup(X509_REVOKED *rev);
893
851
  OPENSSL_EXPORT X509_REQ *X509_REQ_dup(X509_REQ *req);
894
852
  OPENSSL_EXPORT X509_ALGOR *X509_ALGOR_dup(X509_ALGOR *xn);
895
- OPENSSL_EXPORT int X509_ALGOR_set0(X509_ALGOR *alg, const ASN1_OBJECT *aobj,
896
- int ptype, void *pval);
897
- OPENSSL_EXPORT void X509_ALGOR_get0(const ASN1_OBJECT **paobj, int *pptype,
898
- const void **ppval,
899
- const X509_ALGOR *algor);
853
+
854
+ // X509_ALGOR_set0 sets |alg| to an AlgorithmIdentifier with algorithm |obj| and
855
+ // parameter determined by |param_type| and |param_value|. It returns one on
856
+ // success and zero on error. This function takes ownership of |obj| and
857
+ // |param_value| on success.
858
+ //
859
+ // If |param_type| is |V_ASN1_UNDEF|, the parameter is omitted. If |param_type|
860
+ // is zero, the parameter is left unchanged. Otherwise, |param_type| and
861
+ // |param_value| are interpreted as in |ASN1_TYPE_set|.
862
+ //
863
+ // Note omitting the parameter (|V_ASN1_UNDEF|) and encoding an explicit NULL
864
+ // value (|V_ASN1_NULL|) are different. Some algorithms require one and some the
865
+ // other. Consult the relevant specification before calling this function. The
866
+ // correct parameter for an RSASSA-PKCS1-v1_5 signature is |V_ASN1_NULL|. The
867
+ // correct one for an ECDSA or Ed25519 signature is |V_ASN1_UNDEF|.
868
+ OPENSSL_EXPORT int X509_ALGOR_set0(X509_ALGOR *alg, ASN1_OBJECT *obj,
869
+ int param_type, void *param_value);
870
+
871
+ // X509_ALGOR_get0 sets |*out_obj| to the |alg|'s algorithm. If |alg|'s
872
+ // parameter is omitted, it sets |*out_param_type| and |*out_param_value| to
873
+ // |V_ASN1_UNDEF| and NULL. Otherwise, it sets |*out_param_type| and
874
+ // |*out_param_value| to the parameter, using the same representation as
875
+ // |ASN1_TYPE_set0|. See |ASN1_TYPE_set0| and |ASN1_TYPE| for details.
876
+ //
877
+ // Callers that require the parameter in serialized form should, after checking
878
+ // for |V_ASN1_UNDEF|, use |ASN1_TYPE_set1| and |d2i_ASN1_TYPE|, rather than
879
+ // inspecting |*out_param_value|.
880
+ //
881
+ // Each of |out_obj|, |out_param_type|, and |out_param_value| may be NULL to
882
+ // ignore the output. If |out_param_type| is NULL, |out_param_value| is ignored.
883
+ //
884
+ // WARNING: If |*out_param_type| is set to |V_ASN1_UNDEF|, OpenSSL and older
885
+ // revisions of BoringSSL leave |*out_param_value| unset rather than setting it
886
+ // to NULL. Callers that support both OpenSSL and BoringSSL should not assume
887
+ // |*out_param_value| is uniformly initialized.
888
+ OPENSSL_EXPORT void X509_ALGOR_get0(const ASN1_OBJECT **out_obj,
889
+ int *out_param_type,
890
+ const void **out_param_value,
891
+ const X509_ALGOR *alg);
892
+
893
+ // X509_ALGOR_set_md sets |alg| to the hash function |md|. Note this
894
+ // AlgorithmIdentifier represents the hash function itself, not a signature
895
+ // algorithm that uses |md|.
900
896
  OPENSSL_EXPORT void X509_ALGOR_set_md(X509_ALGOR *alg, const EVP_MD *md);
897
+
898
+ // X509_ALGOR_cmp returns zero if |a| and |b| are equal, and some non-zero value
899
+ // otherwise. Note this function can only be used for equality checks, not an
900
+ // ordering.
901
901
  OPENSSL_EXPORT int X509_ALGOR_cmp(const X509_ALGOR *a, const X509_ALGOR *b);
902
902
 
903
903
  OPENSSL_EXPORT X509_NAME *X509_NAME_dup(X509_NAME *xn);
@@ -923,7 +923,6 @@ OPENSSL_EXPORT const char *X509_get_default_private_dir(void);
923
923
 
924
924
  OPENSSL_EXPORT X509_REQ *X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey,
925
925
  const EVP_MD *md);
926
- OPENSSL_EXPORT X509 *X509_REQ_to_X509(X509_REQ *r, int days, EVP_PKEY *pkey);
927
926
 
928
927
  DECLARE_ASN1_ENCODE_FUNCTIONS(X509_ALGORS, X509_ALGORS, X509_ALGORS)
929
928
  DECLARE_ASN1_FUNCTIONS(X509_VAL)
@@ -934,11 +933,15 @@ OPENSSL_EXPORT int X509_PUBKEY_set(X509_PUBKEY **x, EVP_PKEY *pkey);
934
933
  OPENSSL_EXPORT EVP_PKEY *X509_PUBKEY_get(X509_PUBKEY *key);
935
934
 
936
935
  DECLARE_ASN1_FUNCTIONS(X509_SIG)
937
- DECLARE_ASN1_FUNCTIONS(X509_REQ_INFO)
938
936
  DECLARE_ASN1_FUNCTIONS(X509_REQ)
939
937
 
940
938
  DECLARE_ASN1_FUNCTIONS(X509_ATTRIBUTE)
941
- OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int atrtype,
939
+
940
+ // X509_ATTRIBUTE_create returns a newly-allocated |X509_ATTRIBUTE|, or NULL on
941
+ // error. The attribute has type |nid| and contains a single value determined by
942
+ // |attrtype| and |value|, which are interpreted as in |ASN1_TYPE_set|. Note
943
+ // this function takes ownership of |value|.
944
+ OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create(int nid, int attrtype,
942
945
  void *value);
943
946
 
944
947
  DECLARE_ASN1_FUNCTIONS(X509_EXTENSION)
@@ -955,8 +958,8 @@ DECLARE_ASN1_FUNCTIONS(X509_CINF)
955
958
  DECLARE_ASN1_FUNCTIONS(X509)
956
959
  DECLARE_ASN1_FUNCTIONS(X509_CERT_AUX)
957
960
 
958
- // X509_up_ref adds one to the reference count of |x| and returns one.
959
- OPENSSL_EXPORT int X509_up_ref(X509 *x);
961
+ // X509_up_ref adds one to the reference count of |x509| and returns one.
962
+ OPENSSL_EXPORT int X509_up_ref(X509 *x509);
960
963
 
961
964
  OPENSSL_EXPORT int X509_get_ex_new_index(long argl, void *argp,
962
965
  CRYPTO_EX_unused *unused,
@@ -1014,9 +1017,22 @@ OPENSSL_EXPORT int X509_set1_signature_algo(X509 *x509, const X509_ALGOR *algo);
1014
1017
  OPENSSL_EXPORT int X509_set1_signature_value(X509 *x509, const uint8_t *sig,
1015
1018
  size_t sig_len);
1016
1019
 
1017
- OPENSSL_EXPORT void X509_get0_signature(const ASN1_BIT_STRING **psig,
1018
- const X509_ALGOR **palg, const X509 *x);
1019
- OPENSSL_EXPORT int X509_get_signature_nid(const X509 *x);
1020
+ // X509_get0_signature sets |*out_sig| and |*out_alg| to the signature and
1021
+ // signature algorithm of |x509|, respectively. Either output pointer may be
1022
+ // NULL to ignore the value.
1023
+ //
1024
+ // This function outputs the outer signature algorithm. For the one in the
1025
+ // TBSCertificate, see |X509_get0_tbs_sigalg|. Certificates with mismatched
1026
+ // signature algorithms will successfully parse, but they will be rejected when
1027
+ // verifying.
1028
+ OPENSSL_EXPORT void X509_get0_signature(const ASN1_BIT_STRING **out_sig,
1029
+ const X509_ALGOR **out_alg,
1030
+ const X509 *x509);
1031
+
1032
+ // X509_get_signature_nid returns the NID corresponding to |x509|'s signature
1033
+ // algorithm, or |NID_undef| if the signature algorithm does not correspond to
1034
+ // a known NID.
1035
+ OPENSSL_EXPORT int X509_get_signature_nid(const X509 *x509);
1020
1036
 
1021
1037
  OPENSSL_EXPORT int X509_alias_set1(X509 *x, const unsigned char *name, int len);
1022
1038
  OPENSSL_EXPORT int X509_keyid_set1(X509 *x, const unsigned char *id, int len);
@@ -1071,66 +1087,220 @@ OPENSSL_EXPORT int ASN1_item_sign_ctx(const ASN1_ITEM *it, X509_ALGOR *algor1,
1071
1087
  ASN1_BIT_STRING *signature, void *asn,
1072
1088
  EVP_MD_CTX *ctx);
1073
1089
 
1074
- OPENSSL_EXPORT int X509_set_version(X509 *x, long version);
1075
- OPENSSL_EXPORT int X509_set_serialNumber(X509 *x, ASN1_INTEGER *serial);
1076
- OPENSSL_EXPORT ASN1_INTEGER *X509_get_serialNumber(X509 *x);
1077
- OPENSSL_EXPORT int X509_set_issuer_name(X509 *x, X509_NAME *name);
1078
- OPENSSL_EXPORT X509_NAME *X509_get_issuer_name(const X509 *a);
1079
- OPENSSL_EXPORT int X509_set_subject_name(X509 *x, X509_NAME *name);
1080
- OPENSSL_EXPORT X509_NAME *X509_get_subject_name(const X509 *a);
1081
- OPENSSL_EXPORT int X509_set_pubkey(X509 *x, EVP_PKEY *pkey);
1082
- OPENSSL_EXPORT EVP_PKEY *X509_get_pubkey(X509 *x);
1083
- OPENSSL_EXPORT ASN1_BIT_STRING *X509_get0_pubkey_bitstr(const X509 *x);
1090
+ // X509_get_serialNumber returns a mutable pointer to |x509|'s serial number.
1091
+ // Prefer |X509_get0_serialNumber|.
1092
+ OPENSSL_EXPORT ASN1_INTEGER *X509_get_serialNumber(X509 *x509);
1093
+
1094
+ // X509_set_issuer_name sets |x509|'s issuer to a copy of |name|. It returns one
1095
+ // on success and zero on error.
1096
+ OPENSSL_EXPORT int X509_set_issuer_name(X509 *x509, X509_NAME *name);
1097
+
1098
+ // X509_get_issuer_name returns |x509|'s issuer.
1099
+ OPENSSL_EXPORT X509_NAME *X509_get_issuer_name(const X509 *x509);
1100
+
1101
+ // X509_set_subject_name sets |x509|'s subject to a copy of |name|. It returns
1102
+ // one on success and zero on error.
1103
+ OPENSSL_EXPORT int X509_set_subject_name(X509 *x509, X509_NAME *name);
1104
+
1105
+ // X509_get_issuer_name returns |x509|'s subject.
1106
+ OPENSSL_EXPORT X509_NAME *X509_get_subject_name(const X509 *x509);
1107
+
1108
+ // X509_set_pubkey sets |x509|'s public key to |pkey|. It returns one on success
1109
+ // and zero on error. This function does not take ownership of |pkey| and
1110
+ // internally copies and updates reference counts as needed.
1111
+ OPENSSL_EXPORT int X509_set_pubkey(X509 *x509, EVP_PKEY *pkey);
1112
+
1113
+ // X509_get_pubkey returns |x509|'s public key as an |EVP_PKEY|, or NULL if the
1114
+ // public key was unsupported or could not be decoded. This function returns a
1115
+ // reference to the |EVP_PKEY|. The caller must release the result with
1116
+ // |EVP_PKEY_free| when done.
1117
+ OPENSSL_EXPORT EVP_PKEY *X509_get_pubkey(X509 *x509);
1118
+
1119
+ // X509_get0_pubkey_bitstr returns the BIT STRING portion of |x509|'s public
1120
+ // key. Note this does not contain the AlgorithmIdentifier portion.
1121
+ //
1122
+ // WARNING: This function returns a non-const pointer for OpenSSL compatibility,
1123
+ // but the caller must not modify the resulting object. Doing so will break
1124
+ // internal invariants in |x509|.
1125
+ OPENSSL_EXPORT ASN1_BIT_STRING *X509_get0_pubkey_bitstr(const X509 *x509);
1126
+
1127
+ // X509_get0_extensions returns |x509|'s extension list, or NULL if |x509| omits
1128
+ // it.
1084
1129
  OPENSSL_EXPORT const STACK_OF(X509_EXTENSION) *X509_get0_extensions(
1085
- const X509 *x);
1086
- OPENSSL_EXPORT const X509_ALGOR *X509_get0_tbs_sigalg(const X509 *x);
1130
+ const X509 *x509);
1087
1131
 
1088
- OPENSSL_EXPORT int X509_REQ_set_version(X509_REQ *x, long version);
1132
+ // X509_get0_tbs_sigalg returns the signature algorithm in |x509|'s
1133
+ // TBSCertificate. For the outer signature algorithm, see |X509_get0_signature|.
1134
+ //
1135
+ // Certificates with mismatched signature algorithms will successfully parse,
1136
+ // but they will be rejected when verifying.
1137
+ OPENSSL_EXPORT const X509_ALGOR *X509_get0_tbs_sigalg(const X509 *x509);
1138
+
1139
+ // X509_REQ_set_version sets |req|'s version to |version|, which should be
1140
+ // |X509_REQ_VERSION_1|. It returns one on success and zero on error.
1141
+ //
1142
+ // Note no versions other than |X509_REQ_VERSION_1| are defined for CSRs.
1143
+ OPENSSL_EXPORT int X509_REQ_set_version(X509_REQ *req, long version);
1144
+
1145
+ // X509_REQ_set_subject_name sets |req|'s subject to a copy of |name|. It
1146
+ // returns one on success and zero on error.
1089
1147
  OPENSSL_EXPORT int X509_REQ_set_subject_name(X509_REQ *req, X509_NAME *name);
1148
+
1149
+ // X509_REQ_get0_signature sets |*out_sig| and |*out_alg| to the signature and
1150
+ // signature algorithm of |req|, respectively. Either output pointer may be NULL
1151
+ // to ignore the value.
1090
1152
  OPENSSL_EXPORT void X509_REQ_get0_signature(const X509_REQ *req,
1091
- const ASN1_BIT_STRING **psig,
1092
- const X509_ALGOR **palg);
1153
+ const ASN1_BIT_STRING **out_sig,
1154
+ const X509_ALGOR **out_alg);
1155
+
1156
+ // X509_REQ_get_signature_nid returns the NID corresponding to |req|'s signature
1157
+ // algorithm, or |NID_undef| if the signature algorithm does not correspond to
1158
+ // a known NID.
1093
1159
  OPENSSL_EXPORT int X509_REQ_get_signature_nid(const X509_REQ *req);
1094
- OPENSSL_EXPORT int i2d_re_X509_REQ_tbs(X509_REQ *req, unsigned char **pp);
1095
- OPENSSL_EXPORT int X509_REQ_set_pubkey(X509_REQ *x, EVP_PKEY *pkey);
1160
+
1161
+ // i2d_re_X509_REQ_tbs serializes the CertificationRequestInfo (see RFC2986)
1162
+ // portion of |req|. If |outp| is NULL, nothing is written. Otherwise, if
1163
+ // |*outp| is not NULL, the result is written to |*outp|, which must have enough
1164
+ // space available, and |*outp| is advanced just past the output. If |outp| is
1165
+ // non-NULL and |*outp| is NULL, it sets |*outp| to a newly-allocated buffer
1166
+ // containing the result. The caller is responsible for releasing the buffer
1167
+ // with |OPENSSL_free|. In all cases, this function returns the number of bytes
1168
+ // in the result, whether written or not, or a negative value on error.
1169
+ //
1170
+ // This function re-encodes the CertificationRequestInfo and may not reflect
1171
+ // |req|'s original encoding. It may be used to manually generate a signature
1172
+ // for a new certificate request.
1173
+ OPENSSL_EXPORT int i2d_re_X509_REQ_tbs(X509_REQ *req, uint8_t **outp);
1174
+
1175
+ // X509_REQ_set_pubkey sets |req|'s public key to |pkey|. It returns one on
1176
+ // success and zero on error. This function does not take ownership of |pkey|
1177
+ // and internally copies and updates reference counts as needed.
1178
+ OPENSSL_EXPORT int X509_REQ_set_pubkey(X509_REQ *req, EVP_PKEY *pkey);
1179
+
1180
+ // X509_REQ_get_pubkey returns |req|'s public key as an |EVP_PKEY|, or NULL if
1181
+ // the public key was unsupported or could not be decoded. This function returns
1182
+ // a reference to the |EVP_PKEY|. The caller must release the result with
1183
+ // |EVP_PKEY_free| when done.
1096
1184
  OPENSSL_EXPORT EVP_PKEY *X509_REQ_get_pubkey(X509_REQ *req);
1185
+
1186
+ // X509_REQ_extension_nid returns one if |nid| is a supported CSR attribute type
1187
+ // for carrying extensions and zero otherwise. The supported types are
1188
+ // |NID_ext_req| (pkcs-9-at-extensionRequest from RFC2985) and |NID_ms_ext_req|
1189
+ // (a Microsoft szOID_CERT_EXTENSIONS variant).
1097
1190
  OPENSSL_EXPORT int X509_REQ_extension_nid(int nid);
1098
- OPENSSL_EXPORT const int *X509_REQ_get_extension_nids(void);
1099
- OPENSSL_EXPORT void X509_REQ_set_extension_nids(const int *nids);
1191
+
1192
+ // X509_REQ_get_extensions decodes the list of requested extensions in |req| and
1193
+ // returns a newly-allocated |STACK_OF(X509_EXTENSION)| containing the result.
1194
+ // It returns NULL on error, or if |req| did not request extensions.
1195
+ //
1196
+ // This function supports both pkcs-9-at-extensionRequest from RFC2985 and the
1197
+ // Microsoft szOID_CERT_EXTENSIONS variant.
1100
1198
  OPENSSL_EXPORT STACK_OF(X509_EXTENSION) *X509_REQ_get_extensions(X509_REQ *req);
1101
- OPENSSL_EXPORT int X509_REQ_add_extensions_nid(X509_REQ *req,
1102
- STACK_OF(X509_EXTENSION) *exts,
1103
- int nid);
1104
- OPENSSL_EXPORT int X509_REQ_add_extensions(X509_REQ *req,
1105
- STACK_OF(X509_EXTENSION) *exts);
1199
+
1200
+ // X509_REQ_add_extensions_nid adds an attribute to |req| of type |nid|, to
1201
+ // request the certificate extensions in |exts|. It returns one on success and
1202
+ // zero on error. |nid| should be |NID_ext_req| or |NID_ms_ext_req|.
1203
+ OPENSSL_EXPORT int X509_REQ_add_extensions_nid(
1204
+ X509_REQ *req, const STACK_OF(X509_EXTENSION) *exts, int nid);
1205
+
1206
+ // X509_REQ_add_extensions behaves like |X509_REQ_add_extensions_nid|, using the
1207
+ // standard |NID_ext_req| for the attribute type.
1208
+ OPENSSL_EXPORT int X509_REQ_add_extensions(
1209
+ X509_REQ *req, const STACK_OF(X509_EXTENSION) *exts);
1210
+
1211
+ // X509_REQ_get_attr_count returns the number of attributes in |req|.
1106
1212
  OPENSSL_EXPORT int X509_REQ_get_attr_count(const X509_REQ *req);
1213
+
1214
+ // X509_REQ_get_attr_by_NID returns the index of the attribute in |req| of type
1215
+ // |nid|, or a negative number if not found. If found, callers can use
1216
+ // |X509_REQ_get_attr| to look up the attribute by index.
1217
+ //
1218
+ // If |lastpos| is non-negative, it begins searching at |lastpos| + 1. Callers
1219
+ // can thus loop over all matching attributes by first passing -1 and then
1220
+ // passing the previously-returned value until no match is returned.
1107
1221
  OPENSSL_EXPORT int X509_REQ_get_attr_by_NID(const X509_REQ *req, int nid,
1108
1222
  int lastpos);
1223
+
1224
+ // X509_REQ_get_attr_by_OBJ behaves like |X509_REQ_get_attr_by_NID| but looks
1225
+ // for attributes of type |obj|.
1109
1226
  OPENSSL_EXPORT int X509_REQ_get_attr_by_OBJ(const X509_REQ *req,
1110
- ASN1_OBJECT *obj, int lastpos);
1227
+ const ASN1_OBJECT *obj,
1228
+ int lastpos);
1229
+
1230
+ // X509_REQ_get_attr returns the attribute at index |loc| in |req|, or NULL if
1231
+ // out of bounds.
1111
1232
  OPENSSL_EXPORT X509_ATTRIBUTE *X509_REQ_get_attr(const X509_REQ *req, int loc);
1233
+
1234
+ // X509_REQ_delete_attr removes the attribute at index |loc| in |req|. It
1235
+ // returns the removed attribute to the caller, or NULL if |loc| was out of
1236
+ // bounds. If non-NULL, the caller must release the result with
1237
+ // |X509_ATTRIBUTE_free| when done. It is also safe, but not necessary, to call
1238
+ // |X509_ATTRIBUTE_free| if the result is NULL.
1112
1239
  OPENSSL_EXPORT X509_ATTRIBUTE *X509_REQ_delete_attr(X509_REQ *req, int loc);
1240
+
1241
+ // X509_REQ_add1_attr appends a copy of |attr| to |req|'s list of attributes. It
1242
+ // returns one on success and zero on error.
1243
+ //
1244
+ // TODO(https://crbug.com/boringssl/407): |attr| should be const.
1113
1245
  OPENSSL_EXPORT int X509_REQ_add1_attr(X509_REQ *req, X509_ATTRIBUTE *attr);
1246
+
1247
+ // X509_REQ_add1_attr_by_OBJ appends a new attribute to |req| with type |obj|.
1248
+ // It returns one on success and zero on error. The value is determined by
1249
+ // |X509_ATTRIBUTE_set1_data|.
1250
+ //
1251
+ // WARNING: The interpretation of |attrtype|, |data|, and |len| is complex and
1252
+ // error-prone. See |X509_ATTRIBUTE_set1_data| for details.
1114
1253
  OPENSSL_EXPORT int X509_REQ_add1_attr_by_OBJ(X509_REQ *req,
1115
- const ASN1_OBJECT *obj, int type,
1116
- const unsigned char *bytes,
1254
+ const ASN1_OBJECT *obj,
1255
+ int attrtype,
1256
+ const unsigned char *data,
1117
1257
  int len);
1118
- OPENSSL_EXPORT int X509_REQ_add1_attr_by_NID(X509_REQ *req, int nid, int type,
1119
- const unsigned char *bytes,
1258
+
1259
+ // X509_REQ_add1_attr_by_NID behaves like |X509_REQ_add1_attr_by_OBJ| except the
1260
+ // attribute type is determined by |nid|.
1261
+ OPENSSL_EXPORT int X509_REQ_add1_attr_by_NID(X509_REQ *req, int nid,
1262
+ int attrtype,
1263
+ const unsigned char *data,
1120
1264
  int len);
1265
+
1266
+ // X509_REQ_add1_attr_by_txt behaves like |X509_REQ_add1_attr_by_OBJ| except the
1267
+ // attribute type is determined by calling |OBJ_txt2obj| with |attrname|.
1121
1268
  OPENSSL_EXPORT int X509_REQ_add1_attr_by_txt(X509_REQ *req,
1122
- const char *attrname, int type,
1123
- const unsigned char *bytes,
1269
+ const char *attrname, int attrtype,
1270
+ const unsigned char *data,
1124
1271
  int len);
1125
1272
 
1126
- OPENSSL_EXPORT int X509_CRL_set_version(X509_CRL *x, long version);
1127
- OPENSSL_EXPORT int X509_CRL_set_issuer_name(X509_CRL *x, X509_NAME *name);
1273
+ // X509_CRL_set_version sets |crl|'s version to |version|, which should be one
1274
+ // of the |X509_CRL_VERSION_*| constants. It returns one on success and zero on
1275
+ // error.
1276
+ //
1277
+ // If unsure, use |X509_CRL_VERSION_2|. Note that, unlike certificates, CRL
1278
+ // versions are only defined up to v2. Callers should not use |X509_VERSION_3|.
1279
+ OPENSSL_EXPORT int X509_CRL_set_version(X509_CRL *crl, long version);
1280
+
1281
+ // X509_CRL_set_issuer_name sets |crl|'s issuer to a copy of |name|. It returns
1282
+ // one on success and zero on error.
1283
+ OPENSSL_EXPORT int X509_CRL_set_issuer_name(X509_CRL *crl, X509_NAME *name);
1284
+
1128
1285
  OPENSSL_EXPORT int X509_CRL_sort(X509_CRL *crl);
1286
+
1287
+ // X509_CRL_up_ref adds one to the reference count of |crl| and returns one.
1129
1288
  OPENSSL_EXPORT int X509_CRL_up_ref(X509_CRL *crl);
1130
1289
 
1290
+ // X509_CRL_get0_signature sets |*out_sig| and |*out_alg| to the signature and
1291
+ // signature algorithm of |crl|, respectively. Either output pointer may be NULL
1292
+ // to ignore the value.
1293
+ //
1294
+ // This function outputs the outer signature algorithm, not the one in the
1295
+ // TBSCertList. CRLs with mismatched signature algorithms will successfully
1296
+ // parse, but they will be rejected when verifying.
1131
1297
  OPENSSL_EXPORT void X509_CRL_get0_signature(const X509_CRL *crl,
1132
- const ASN1_BIT_STRING **psig,
1133
- const X509_ALGOR **palg);
1298
+ const ASN1_BIT_STRING **out_sig,
1299
+ const X509_ALGOR **out_alg);
1300
+
1301
+ // X509_CRL_get_signature_nid returns the NID corresponding to |crl|'s signature
1302
+ // algorithm, or |NID_undef| if the signature algorithm does not correspond to
1303
+ // a known NID.
1134
1304
  OPENSSL_EXPORT int X509_CRL_get_signature_nid(const X509_CRL *crl);
1135
1305
 
1136
1306
  // i2d_re_X509_CRL_tbs serializes the TBSCertList portion of |crl|. If |outp| is
@@ -1162,6 +1332,25 @@ OPENSSL_EXPORT int i2d_re_X509_CRL_tbs(X509_CRL *crl, unsigned char **outp);
1162
1332
  // instead.
1163
1333
  OPENSSL_EXPORT int i2d_X509_CRL_tbs(X509_CRL *crl, unsigned char **outp);
1164
1334
 
1335
+ // X509_CRL_set1_signature_algo sets |crl|'s signature algorithm to |algo| and
1336
+ // returns one on success or zero on error. It updates both the signature field
1337
+ // of the TBSCertList structure, and the signatureAlgorithm field of the CRL.
1338
+ OPENSSL_EXPORT int X509_CRL_set1_signature_algo(X509_CRL *crl,
1339
+ const X509_ALGOR *algo);
1340
+
1341
+ // X509_CRL_set1_signature_value sets |crl|'s signature to a copy of the
1342
+ // |sig_len| bytes pointed by |sig|. It returns one on success and zero on
1343
+ // error.
1344
+ //
1345
+ // Due to a specification error, X.509 CRLs store signatures in ASN.1 BIT
1346
+ // STRINGs, but signature algorithms return byte strings rather than bit
1347
+ // strings. This function creates a BIT STRING containing a whole number of
1348
+ // bytes, with the bit order matching the DER encoding. This matches the
1349
+ // encoding used by all X.509 signature algorithms.
1350
+ OPENSSL_EXPORT int X509_CRL_set1_signature_value(X509_CRL *crl,
1351
+ const uint8_t *sig,
1352
+ size_t sig_len);
1353
+
1165
1354
  // X509_REVOKED_get0_serialNumber returns the serial number of the certificate
1166
1355
  // revoked by |revoked|.
1167
1356
  OPENSSL_EXPORT const ASN1_INTEGER *X509_REVOKED_get0_serialNumber(
@@ -1182,7 +1371,8 @@ OPENSSL_EXPORT const ASN1_TIME *X509_REVOKED_get0_revocationDate(
1182
1371
  OPENSSL_EXPORT int X509_REVOKED_set_revocationDate(X509_REVOKED *revoked,
1183
1372
  const ASN1_TIME *tm);
1184
1373
 
1185
- // X509_REVOKED_get0_extensions returns |r|'s extensions.
1374
+ // X509_REVOKED_get0_extensions returns |r|'s extensions list, or NULL if |r|
1375
+ // omits it.
1186
1376
  OPENSSL_EXPORT const STACK_OF(X509_EXTENSION) *X509_REVOKED_get0_extensions(
1187
1377
  const X509_REVOKED *r);
1188
1378
 
@@ -1198,6 +1388,11 @@ OPENSSL_EXPORT int X509_chain_check_suiteb(int *perror_depth, X509 *x,
1198
1388
  unsigned long flags);
1199
1389
  OPENSSL_EXPORT int X509_CRL_check_suiteb(X509_CRL *crl, EVP_PKEY *pk,
1200
1390
  unsigned long flags);
1391
+
1392
+ // X509_chain_up_ref returns a newly-allocated |STACK_OF(X509)| containing a
1393
+ // shallow copy of |chain|, or NULL on error. That is, the return value has the
1394
+ // same contents as |chain|, and each |X509|'s reference count is incremented by
1395
+ // one.
1201
1396
  OPENSSL_EXPORT STACK_OF(X509) *X509_chain_up_ref(STACK_OF(X509) *chain);
1202
1397
 
1203
1398
  OPENSSL_EXPORT int X509_issuer_and_serial_cmp(const X509 *a, const X509 *b);
@@ -1431,22 +1626,96 @@ OPENSSL_EXPORT STACK_OF(X509_ATTRIBUTE) *X509at_add1_attr_by_txt(
1431
1626
  OPENSSL_EXPORT void *X509at_get0_data_by_OBJ(STACK_OF(X509_ATTRIBUTE) *x,
1432
1627
  ASN1_OBJECT *obj, int lastpos,
1433
1628
  int type);
1629
+
1630
+ // X509_ATTRIBUTE_create_by_NID returns a newly-allocated |X509_ATTRIBUTE| of
1631
+ // type |nid|, or NULL on error. The value is determined as in
1632
+ // |X509_ATTRIBUTE_set1_data|.
1633
+ //
1634
+ // If |attr| is non-NULL, the resulting |X509_ATTRIBUTE| is also written to
1635
+ // |*attr|. If |*attr| was non-NULL when the function was called, |*attr| is
1636
+ // reused instead of creating a new object.
1637
+ //
1638
+ // WARNING: The interpretation of |attrtype|, |data|, and |len| is complex and
1639
+ // error-prone. See |X509_ATTRIBUTE_set1_data| for details.
1640
+ //
1641
+ // WARNING: The object reuse form is deprecated and may be removed in the
1642
+ // future. It also currently incorrectly appends to the reused object's value
1643
+ // set rather than overwriting it.
1434
1644
  OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_NID(
1435
- X509_ATTRIBUTE **attr, int nid, int atrtype, const void *data, int len);
1645
+ X509_ATTRIBUTE **attr, int nid, int attrtype, const void *data, int len);
1646
+
1647
+ // X509_ATTRIBUTE_create_by_OBJ behaves like |X509_ATTRIBUTE_create_by_NID|
1648
+ // except the attribute's type is determined by |obj|.
1436
1649
  OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_OBJ(
1437
- X509_ATTRIBUTE **attr, const ASN1_OBJECT *obj, int atrtype,
1650
+ X509_ATTRIBUTE **attr, const ASN1_OBJECT *obj, int attrtype,
1438
1651
  const void *data, int len);
1652
+
1653
+ // X509_ATTRIBUTE_create_by_txt behaves like |X509_ATTRIBUTE_create_by_NID|
1654
+ // except the attribute's type is determined by calling |OBJ_txt2obj| with
1655
+ // |attrname|.
1439
1656
  OPENSSL_EXPORT X509_ATTRIBUTE *X509_ATTRIBUTE_create_by_txt(
1440
- X509_ATTRIBUTE **attr, const char *atrname, int type,
1657
+ X509_ATTRIBUTE **attr, const char *attrname, int type,
1441
1658
  const unsigned char *bytes, int len);
1659
+
1660
+ // X509_ATTRIBUTE_set1_object sets |attr|'s type to |obj|. It returns one on
1661
+ // success and zero on error.
1442
1662
  OPENSSL_EXPORT int X509_ATTRIBUTE_set1_object(X509_ATTRIBUTE *attr,
1443
1663
  const ASN1_OBJECT *obj);
1664
+
1665
+ // X509_ATTRIBUTE_set1_data appends a value to |attr|'s value set and returns
1666
+ // one on success or zero on error. The value is determined as follows:
1667
+ //
1668
+ // If |attrtype| is a |MBSTRING_*| constant, the value is an ASN.1 string. The
1669
+ // string is determined by decoding |len| bytes from |data| in the encoding
1670
+ // specified by |attrtype|, and then re-encoding it in a form appropriate for
1671
+ // |attr|'s type. If |len| is -1, |strlen(data)| is used instead. See
1672
+ // |ASN1_STRING_set_by_NID| for details.
1673
+ //
1674
+ // TODO(davidben): Document |ASN1_STRING_set_by_NID| so the reference is useful.
1675
+ //
1676
+ // Otherwise, if |len| is not -1, the value is an ASN.1 string. |attrtype| is an
1677
+ // |ASN1_STRING| type value and the |len| bytes from |data| are copied as the
1678
+ // type-specific representation of |ASN1_STRING|. See |ASN1_STRING| for details.
1679
+ //
1680
+ // WARNING: If this form is used to construct a negative INTEGER or ENUMERATED,
1681
+ // |attrtype| includes the |V_ASN1_NEG| flag for |ASN1_STRING|, but the function
1682
+ // forgets to clear the flag for |ASN1_TYPE|. This matches OpenSSL but is
1683
+ // probably a bug. For now, do not use this form with negative values.
1684
+ //
1685
+ // Otherwise, if |len| is -1, the value is constructed by passing |attrtype| and
1686
+ // |data| to |ASN1_TYPE_set1|. That is, |attrtype| is an |ASN1_TYPE| type value,
1687
+ // and |data| is cast to the corresponding pointer type.
1688
+ //
1689
+ // WARNING: Despite the name, this function appends to |attr|'s value set,
1690
+ // rather than overwriting it. To overwrite the value set, create a new
1691
+ // |X509_ATTRIBUTE| with |X509_ATTRIBUTE_new|.
1692
+ //
1693
+ // WARNING: If using the |MBSTRING_*| form, pass a length rather than relying on
1694
+ // |strlen|. In particular, |strlen| will not behave correctly if the input is
1695
+ // |MBSTRING_BMP| or |MBSTRING_UNIV|.
1696
+ //
1697
+ // WARNING: This function currently misinterprets |V_ASN1_OTHER| as an
1698
+ // |MBSTRING_*| constant. This matches OpenSSL but means it is impossible to
1699
+ // construct a value with a non-universal tag.
1444
1700
  OPENSSL_EXPORT int X509_ATTRIBUTE_set1_data(X509_ATTRIBUTE *attr, int attrtype,
1445
1701
  const void *data, int len);
1702
+
1703
+ // X509_ATTRIBUTE_get0_data returns the |idx|th value of |attr| in a
1704
+ // type-specific representation to |attrtype|, or NULL if out of bounds or the
1705
+ // type does not match. |attrtype| is one of the type values in |ASN1_TYPE|. On
1706
+ // match, the return value uses the same representation as |ASN1_TYPE_set0|. See
1707
+ // |ASN1_TYPE| for details.
1446
1708
  OPENSSL_EXPORT void *X509_ATTRIBUTE_get0_data(X509_ATTRIBUTE *attr, int idx,
1447
- int atrtype, void *data);
1448
- OPENSSL_EXPORT int X509_ATTRIBUTE_count(X509_ATTRIBUTE *attr);
1709
+ int attrtype, void *unused);
1710
+
1711
+ // X509_ATTRIBUTE_count returns the number of values in |attr|.
1712
+ OPENSSL_EXPORT int X509_ATTRIBUTE_count(const X509_ATTRIBUTE *attr);
1713
+
1714
+ // X509_ATTRIBUTE_get0_object returns the type of |attr|.
1449
1715
  OPENSSL_EXPORT ASN1_OBJECT *X509_ATTRIBUTE_get0_object(X509_ATTRIBUTE *attr);
1716
+
1717
+ // X509_ATTRIBUTE_get0_type returns the |idx|th value in |attr|, or NULL if out
1718
+ // of bounds. Note this function returns one of |attr|'s values, not the type.
1450
1719
  OPENSSL_EXPORT ASN1_TYPE *X509_ATTRIBUTE_get0_type(X509_ATTRIBUTE *attr,
1451
1720
  int idx);
1452
1721
 
@@ -1472,13 +1741,36 @@ OPENSSL_EXPORT int PKCS8_pkey_get0(ASN1_OBJECT **ppkalg,
1472
1741
  const unsigned char **pk, int *ppklen,
1473
1742
  X509_ALGOR **pa, PKCS8_PRIV_KEY_INFO *p8);
1474
1743
 
1475
- OPENSSL_EXPORT int X509_PUBKEY_set0_param(X509_PUBKEY *pub,
1476
- const ASN1_OBJECT *aobj, int ptype,
1477
- void *pval, unsigned char *penc,
1478
- int penclen);
1479
- OPENSSL_EXPORT int X509_PUBKEY_get0_param(ASN1_OBJECT **ppkalg,
1480
- const unsigned char **pk, int *ppklen,
1481
- X509_ALGOR **pa, X509_PUBKEY *pub);
1744
+ // X509_PUBKEY_set0_param sets |pub| to a key with AlgorithmIdentifier
1745
+ // determined by |obj|, |param_type|, and |param_value|, and an encoded
1746
+ // public key of |key|. On success, it takes ownership of all its parameters and
1747
+ // returns one. Otherwise, it returns zero. |key| must have been allocated by
1748
+ // |OPENSSL_malloc|.
1749
+ //
1750
+ // |obj|, |param_type|, and |param_value| are interpreted as in
1751
+ // |X509_ALGOR_set0|. See |X509_ALGOR_set0| for details.
1752
+ OPENSSL_EXPORT int X509_PUBKEY_set0_param(X509_PUBKEY *pub, ASN1_OBJECT *obj,
1753
+ int param_type, void *param_value,
1754
+ uint8_t *key, int key_len);
1755
+
1756
+ // X509_PUBKEY_get0_param outputs fields of |pub| and returns one. If |out_obj|
1757
+ // is not NULL, it sets |*out_obj| to AlgorithmIdentifier's OID. If |out_key|
1758
+ // is not NULL, it sets |*out_key| and |*out_key_len| to the encoded public key.
1759
+ // If |out_alg| is not NULL, it sets |*out_alg| to the AlgorithmIdentifier.
1760
+ //
1761
+ // Note: X.509 SubjectPublicKeyInfo structures store the encoded public key as a
1762
+ // BIT STRING. |*out_key| and |*out_key_len| will silently pad the key with zero
1763
+ // bits if |pub| did not contain a whole number of bytes. Use
1764
+ // |X509_PUBKEY_get0_public_key| to preserve this information.
1765
+ OPENSSL_EXPORT int X509_PUBKEY_get0_param(ASN1_OBJECT **out_obj,
1766
+ const uint8_t **out_key,
1767
+ int *out_key_len,
1768
+ X509_ALGOR **out_alg,
1769
+ X509_PUBKEY *pub);
1770
+
1771
+ // X509_PUBKEY_get0_public_key returns |pub|'s encoded public key.
1772
+ OPENSSL_EXPORT const ASN1_BIT_STRING *X509_PUBKEY_get0_public_key(
1773
+ const X509_PUBKEY *pub);
1482
1774
 
1483
1775
  OPENSSL_EXPORT int X509_check_trust(X509 *x, int id, int flags);
1484
1776
  OPENSSL_EXPORT int X509_TRUST_get_count(void);
@@ -1518,6 +1810,7 @@ BORINGSSL_MAKE_DELETER(RSA_PSS_PARAMS, RSA_PSS_PARAMS_free)
1518
1810
  BORINGSSL_MAKE_DELETER(X509, X509_free)
1519
1811
  BORINGSSL_MAKE_UP_REF(X509, X509_up_ref)
1520
1812
  BORINGSSL_MAKE_DELETER(X509_ALGOR, X509_ALGOR_free)
1813
+ BORINGSSL_MAKE_DELETER(X509_ATTRIBUTE, X509_ATTRIBUTE_free)
1521
1814
  BORINGSSL_MAKE_DELETER(X509_CRL, X509_CRL_free)
1522
1815
  BORINGSSL_MAKE_UP_REF(X509_CRL, X509_CRL_up_ref)
1523
1816
  BORINGSSL_MAKE_DELETER(X509_CRL_METHOD, X509_CRL_METHOD_free)