grpc 1.62.0 → 1.68.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2809) hide show
  1. checksums.yaml +4 -4
  2. data/Makefile +549 -2065
  3. data/include/grpc/byte_buffer.h +1 -2
  4. data/include/grpc/census.h +1 -2
  5. data/include/grpc/compression.h +2 -4
  6. data/include/grpc/credentials.h +1221 -0
  7. data/include/grpc/event_engine/README.md +1 -1
  8. data/include/grpc/event_engine/event_engine.h +35 -12
  9. data/include/grpc/event_engine/extensible.h +3 -0
  10. data/include/grpc/event_engine/internal/memory_allocator_impl.h +2 -3
  11. data/include/grpc/event_engine/internal/slice_cast.h +1 -1
  12. data/include/grpc/event_engine/memory_allocator.h +2 -4
  13. data/include/grpc/event_engine/memory_request.h +18 -1
  14. data/include/grpc/event_engine/slice.h +2 -5
  15. data/include/grpc/event_engine/slice_buffer.h +5 -8
  16. data/include/grpc/grpc.h +9 -10
  17. data/include/grpc/grpc_audit_logging.h +1 -2
  18. data/include/grpc/grpc_crl_provider.h +4 -3
  19. data/include/grpc/grpc_cronet.h +1 -2
  20. data/include/grpc/grpc_posix.h +2 -4
  21. data/include/grpc/grpc_security.h +2 -1175
  22. data/include/grpc/impl/call.h +1 -2
  23. data/include/grpc/impl/channel_arg_names.h +12 -7
  24. data/include/grpc/impl/grpc_types.h +2 -4
  25. data/include/grpc/impl/slice_type.h +0 -1
  26. data/include/grpc/module.modulemap +3 -0
  27. data/include/grpc/passive_listener.h +62 -0
  28. data/include/grpc/slice.h +1 -2
  29. data/include/grpc/slice_buffer.h +1 -2
  30. data/include/grpc/support/alloc.h +0 -1
  31. data/include/grpc/support/json.h +0 -1
  32. data/include/grpc/support/log.h +36 -63
  33. data/include/grpc/support/metrics.h +66 -0
  34. data/include/grpc/support/port_platform.h +31 -1
  35. data/include/grpc/support/string_util.h +0 -1
  36. data/include/grpc/support/sync.h +0 -1
  37. data/include/grpc/support/sync_abseil.h +0 -1
  38. data/include/grpc/support/sync_custom.h +0 -1
  39. data/include/grpc/support/sync_generic.h +3 -6
  40. data/include/grpc/support/sync_posix.h +1 -3
  41. data/include/grpc/support/time.h +0 -1
  42. data/src/core/channelz/channel_trace.cc +180 -0
  43. data/src/core/channelz/channel_trace.h +138 -0
  44. data/src/core/channelz/channelz.cc +670 -0
  45. data/src/core/channelz/channelz.h +421 -0
  46. data/src/core/channelz/channelz_registry.cc +281 -0
  47. data/src/core/channelz/channelz_registry.h +101 -0
  48. data/src/core/client_channel/backup_poller.cc +24 -15
  49. data/src/core/client_channel/client_channel.cc +1426 -0
  50. data/src/core/client_channel/client_channel.h +245 -0
  51. data/src/core/client_channel/client_channel_factory.cc +2 -2
  52. data/src/core/client_channel/client_channel_factory.h +1 -2
  53. data/src/core/client_channel/client_channel_filter.cc +434 -941
  54. data/src/core/client_channel/client_channel_filter.h +30 -93
  55. data/src/core/client_channel/client_channel_internal.h +27 -12
  56. data/src/core/client_channel/client_channel_plugin.cc +2 -17
  57. data/src/core/client_channel/client_channel_service_config.cc +2 -3
  58. data/src/core/client_channel/client_channel_service_config.h +11 -12
  59. data/src/core/client_channel/config_selector.h +26 -26
  60. data/src/core/client_channel/connector.h +4 -4
  61. data/src/core/client_channel/direct_channel.cc +83 -0
  62. data/src/core/client_channel/direct_channel.h +101 -0
  63. data/src/core/client_channel/dynamic_filters.cc +19 -16
  64. data/src/core/client_channel/dynamic_filters.h +10 -11
  65. data/src/core/client_channel/global_subchannel_pool.cc +2 -2
  66. data/src/core/client_channel/global_subchannel_pool.h +2 -3
  67. data/src/core/client_channel/lb_metadata.cc +120 -0
  68. data/src/core/client_channel/lb_metadata.h +55 -0
  69. data/src/core/client_channel/load_balanced_call_destination.cc +273 -0
  70. data/src/core/client_channel/load_balanced_call_destination.h +48 -0
  71. data/src/core/client_channel/local_subchannel_pool.cc +6 -7
  72. data/src/core/client_channel/local_subchannel_pool.h +1 -1
  73. data/src/core/client_channel/retry_filter.cc +8 -17
  74. data/src/core/client_channel/retry_filter.h +10 -18
  75. data/src/core/client_channel/retry_filter_legacy_call_data.cc +212 -323
  76. data/src/core/client_channel/retry_filter_legacy_call_data.h +18 -23
  77. data/src/core/client_channel/retry_service_config.cc +9 -12
  78. data/src/core/client_channel/retry_service_config.h +8 -10
  79. data/src/core/client_channel/retry_throttle.cc +3 -4
  80. data/src/core/client_channel/retry_throttle.h +7 -9
  81. data/src/core/client_channel/subchannel.cc +294 -175
  82. data/src/core/client_channel/subchannel.h +53 -46
  83. data/src/core/client_channel/subchannel_interface_internal.h +1 -1
  84. data/src/core/client_channel/subchannel_pool_interface.cc +1 -5
  85. data/src/core/client_channel/subchannel_pool_interface.h +5 -8
  86. data/src/core/client_channel/subchannel_stream_client.cc +47 -65
  87. data/src/core/client_channel/subchannel_stream_client.h +12 -16
  88. data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +29 -79
  89. data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +5 -15
  90. data/src/core/ext/filters/backend_metrics/backend_metric_provider.h +7 -0
  91. data/src/core/ext/filters/census/grpc_context.cc +7 -10
  92. data/src/core/ext/filters/channel_idle/idle_filter_state.cc +1 -2
  93. data/src/core/ext/filters/channel_idle/idle_filter_state.h +0 -1
  94. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +46 -55
  95. data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +22 -19
  96. data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +24 -28
  97. data/src/core/ext/filters/fault_injection/fault_injection_filter.h +8 -7
  98. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +2 -3
  99. data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +6 -9
  100. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +205 -0
  101. data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +97 -0
  102. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +80 -0
  103. data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +86 -0
  104. data/src/core/ext/filters/http/client/http_client_filter.cc +19 -12
  105. data/src/core/ext/filters/http/client/http_client_filter.h +8 -6
  106. data/src/core/ext/filters/http/client_authority_filter.cc +12 -10
  107. data/src/core/ext/filters/http/client_authority_filter.h +8 -5
  108. data/src/core/ext/filters/http/http_filters_plugin.cc +15 -36
  109. data/src/core/ext/filters/http/message_compress/compression_filter.cc +65 -59
  110. data/src/core/ext/filters/http/message_compress/compression_filter.h +18 -13
  111. data/src/core/ext/filters/http/server/http_server_filter.cc +19 -16
  112. data/src/core/ext/filters/http/server/http_server_filter.h +8 -6
  113. data/src/core/ext/filters/message_size/message_size_filter.cc +50 -54
  114. data/src/core/ext/filters/message_size/message_size_filter.h +19 -15
  115. data/src/core/ext/filters/rbac/rbac_filter.cc +13 -18
  116. data/src/core/ext/filters/rbac/rbac_filter.h +8 -7
  117. data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +18 -12
  118. data/src/core/ext/filters/rbac/rbac_service_config_parser.h +2 -4
  119. data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +25 -27
  120. data/src/core/ext/filters/stateful_session/stateful_session_filter.h +8 -6
  121. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +2 -3
  122. data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +5 -7
  123. data/src/core/ext/transport/chttp2/alpn/alpn.cc +4 -5
  124. data/src/core/ext/transport/chttp2/alpn/alpn.h +0 -1
  125. data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +82 -117
  126. data/src/core/ext/transport/chttp2/client/chttp2_connector.h +5 -12
  127. data/src/core/ext/transport/chttp2/server/chttp2_server.cc +464 -315
  128. data/src/core/ext/transport/chttp2/server/chttp2_server.h +34 -1
  129. data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +24 -37
  130. data/src/core/ext/transport/chttp2/transport/bin_decoder.h +1 -3
  131. data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +7 -9
  132. data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -3
  133. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +53 -0
  134. data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +72 -0
  135. data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +617 -619
  136. data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +37 -20
  137. data/src/core/ext/transport/chttp2/transport/context_list_entry.h +14 -12
  138. data/src/core/ext/transport/chttp2/transport/decode_huff.cc +2 -2
  139. data/src/core/ext/transport/chttp2/transport/flow_control.cc +9 -14
  140. data/src/core/ext/transport/chttp2/transport/flow_control.h +4 -9
  141. data/src/core/ext/transport/chttp2/transport/frame.cc +5 -8
  142. data/src/core/ext/transport/chttp2/transport/frame.h +0 -1
  143. data/src/core/ext/transport/chttp2/transport/frame_data.cc +9 -15
  144. data/src/core/ext/transport/chttp2/transport/frame_data.h +3 -5
  145. data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +7 -10
  146. data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -3
  147. data/src/core/ext/transport/chttp2/transport/frame_ping.cc +16 -21
  148. data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -3
  149. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +19 -20
  150. data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -6
  151. data/src/core/ext/transport/chttp2/transport/frame_settings.cc +20 -21
  152. data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -4
  153. data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +13 -10
  154. data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -4
  155. data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +16 -17
  156. data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +15 -12
  157. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +10 -10
  158. data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +0 -1
  159. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +4 -5
  160. data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +5 -8
  161. data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +79 -122
  162. data/src/core/ext/transport/chttp2/transport/hpack_parser.h +5 -8
  163. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +45 -20
  164. data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +28 -9
  165. data/src/core/ext/transport/chttp2/transport/http2_settings.cc +3 -4
  166. data/src/core/ext/transport/chttp2/transport/http2_settings.h +1 -3
  167. data/src/core/ext/transport/chttp2/transport/huffsyms.cc +2 -2
  168. data/src/core/ext/transport/chttp2/transport/internal.h +48 -81
  169. data/src/core/ext/transport/chttp2/transport/parsing.cc +118 -131
  170. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +3 -4
  171. data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +1 -1
  172. data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +4 -7
  173. data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +2 -7
  174. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +33 -19
  175. data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +6 -7
  176. data/src/core/ext/transport/chttp2/transport/stream_lists.cc +19 -21
  177. data/src/core/ext/transport/chttp2/transport/stream_lists.h +65 -0
  178. data/src/core/ext/transport/chttp2/transport/varint.cc +2 -2
  179. data/src/core/ext/transport/chttp2/transport/varint.h +2 -3
  180. data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +4 -4
  181. data/src/core/ext/transport/chttp2/transport/write_size_policy.h +1 -2
  182. data/src/core/ext/transport/chttp2/transport/writing.cc +196 -155
  183. data/src/core/ext/transport/inproc/inproc_transport.cc +154 -70
  184. data/src/core/ext/transport/inproc/inproc_transport.h +2 -5
  185. data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +135 -136
  186. data/src/core/ext/transport/inproc/legacy_inproc_transport.h +1 -4
  187. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +275 -231
  188. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +69 -53
  189. data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +7 -1
  190. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +322 -266
  191. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +84 -74
  192. data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +6 -1
  193. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +274 -227
  194. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +70 -56
  195. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +7 -1
  196. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +1071 -883
  197. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +280 -228
  198. data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +21 -1
  199. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +84 -77
  200. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +21 -11
  201. data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +4 -1
  202. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +100 -85
  203. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +26 -16
  204. data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +4 -1
  205. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +51 -43
  206. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +20 -14
  207. data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +3 -1
  208. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +30 -25
  209. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +14 -8
  210. data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +3 -1
  211. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +30 -25
  212. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +14 -8
  213. data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +3 -1
  214. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +404 -318
  215. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +102 -90
  216. data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +4 -1
  217. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +27 -21
  218. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +13 -9
  219. data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +3 -1
  220. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +42 -33
  221. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +11 -5
  222. data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +2 -1
  223. data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +35 -21
  224. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +16 -9
  225. data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +3 -1
  226. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +575 -474
  227. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +183 -137
  228. data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +18 -1
  229. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +1498 -1109
  230. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +401 -313
  231. data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +26 -1
  232. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +191 -153
  233. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +47 -47
  234. data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +5 -1
  235. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +1624 -1138
  236. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +430 -375
  237. data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +28 -1
  238. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +38 -29
  239. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +15 -11
  240. data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +3 -1
  241. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +357 -189
  242. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +83 -72
  243. data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +3 -1
  244. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +657 -509
  245. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +200 -146
  246. data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +17 -1
  247. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +381 -310
  248. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +109 -89
  249. data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +10 -1
  250. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +31 -23
  251. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +13 -13
  252. data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +3 -1
  253. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +1470 -689
  254. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +434 -207
  255. data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +36 -1
  256. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +410 -344
  257. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +108 -86
  258. data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +9 -1
  259. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +23 -17
  260. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +12 -6
  261. data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +3 -1
  262. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +27 -21
  263. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +13 -9
  264. data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +3 -1
  265. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +84 -77
  266. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +21 -11
  267. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +4 -1
  268. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +678 -471
  269. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +204 -153
  270. data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +16 -1
  271. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +805 -631
  272. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +187 -145
  273. data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +11 -1
  274. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +53 -44
  275. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +15 -9
  276. data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +3 -1
  277. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +39 -31
  278. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +16 -10
  279. data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +3 -1
  280. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +869 -638
  281. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +255 -225
  282. data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +18 -1
  283. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +69 -62
  284. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +22 -14
  285. data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +4 -1
  286. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +74 -62
  287. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +23 -15
  288. data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +4 -1
  289. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +98 -84
  290. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +29 -19
  291. data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +4 -1
  292. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +115 -94
  293. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +34 -24
  294. data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +4 -1
  295. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +31 -23
  296. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +13 -13
  297. data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +3 -1
  298. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +194 -146
  299. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +55 -45
  300. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +6 -1
  301. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +387 -288
  302. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +111 -83
  303. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +9 -1
  304. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +575 -310
  305. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +129 -75
  306. data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +9 -1
  307. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +20 -15
  308. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +11 -9
  309. data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +3 -1
  310. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +612 -479
  311. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +160 -127
  312. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +12 -1
  313. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +558 -469
  314. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +127 -109
  315. data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +9 -1
  316. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +169 -79
  317. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +32 -40
  318. data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +3 -1
  319. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +49 -37
  320. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +20 -28
  321. data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +4 -1
  322. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +52 -41
  323. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +21 -15
  324. data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +3 -1
  325. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +337 -280
  326. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +101 -71
  327. data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +10 -1
  328. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +430 -359
  329. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +120 -78
  330. data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +12 -1
  331. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +662 -491
  332. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +185 -151
  333. data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +13 -1
  334. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +388 -328
  335. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +66 -74
  336. data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +5 -1
  337. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +3883 -3146
  338. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +991 -806
  339. data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +60 -1
  340. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +111 -92
  341. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +37 -23
  342. data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +5 -1
  343. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +538 -431
  344. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +162 -126
  345. data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +14 -1
  346. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +131 -25
  347. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +43 -12
  348. data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +5 -1
  349. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +27 -21
  350. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +13 -9
  351. data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +3 -1
  352. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +48 -37
  353. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +22 -16
  354. data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +4 -1
  355. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +62 -56
  356. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +17 -15
  357. data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +3 -1
  358. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +154 -137
  359. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +38 -32
  360. data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +3 -1
  361. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +82 -66
  362. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +23 -17
  363. data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +3 -1
  364. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +20 -15
  365. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +11 -9
  366. data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +3 -1
  367. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +75 -59
  368. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +27 -27
  369. data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +4 -1
  370. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +2 -1
  371. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +3 -1
  372. data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +2 -1
  373. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +74 -57
  374. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +27 -23
  375. data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +4 -1
  376. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +62 -51
  377. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +24 -18
  378. data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +3 -1
  379. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +1101 -833
  380. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +350 -295
  381. data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +18 -1
  382. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +37 -36
  383. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +10 -4
  384. data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +3 -1
  385. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +116 -89
  386. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +50 -28
  387. data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +7 -1
  388. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +245 -205
  389. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +63 -65
  390. data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +5 -1
  391. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +444 -0
  392. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +135 -0
  393. data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +38 -0
  394. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +110 -59
  395. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +34 -28
  396. data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +4 -1
  397. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +178 -154
  398. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +41 -33
  399. data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +4 -1
  400. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +57 -45
  401. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +25 -15
  402. data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +4 -1
  403. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1543 -1231
  404. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +403 -332
  405. data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +23 -1
  406. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +20 -15
  407. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +11 -9
  408. data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +3 -1
  409. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +75 -55
  410. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.c +21 -25
  411. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb_minitable.h +3 -1
  412. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +142 -109
  413. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +56 -42
  414. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +7 -1
  415. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +16 -13
  416. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +10 -4
  417. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +3 -1
  418. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +78 -59
  419. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +28 -22
  420. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +3 -1
  421. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +20 -15
  422. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +11 -9
  423. data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +3 -1
  424. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h +106 -0
  425. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +52 -0
  426. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.h +32 -0
  427. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +2 -1
  428. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c +3 -1
  429. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h +2 -1
  430. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +659 -495
  431. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +137 -117
  432. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +11 -1
  433. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +106 -81
  434. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +41 -33
  435. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +5 -1
  436. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +571 -458
  437. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +147 -131
  438. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +9 -1
  439. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +67 -56
  440. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +22 -14
  441. data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +4 -1
  442. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +245 -186
  443. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +71 -69
  444. data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +6 -1
  445. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +9 -7
  446. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +8 -2
  447. data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +3 -1
  448. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +849 -711
  449. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +209 -161
  450. data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +16 -1
  451. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +113 -99
  452. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +30 -20
  453. data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +4 -1
  454. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +352 -289
  455. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +95 -73
  456. data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +7 -1
  457. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +34 -27
  458. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +16 -10
  459. data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +3 -1
  460. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +88 -72
  461. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +34 -16
  462. data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +6 -1
  463. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +30 -23
  464. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +14 -8
  465. data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +3 -1
  466. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +72 -61
  467. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +38 -16
  468. data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +7 -1
  469. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +86 -72
  470. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +26 -16
  471. data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +4 -1
  472. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +53 -44
  473. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +15 -9
  474. data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +3 -1
  475. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +32 -25
  476. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +14 -8
  477. data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +3 -1
  478. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +23 -17
  479. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +12 -6
  480. data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +3 -1
  481. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +73 -57
  482. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +33 -23
  483. data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +5 -1
  484. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +16 -13
  485. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +13 -3
  486. data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +4 -1
  487. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +139 -90
  488. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +43 -22
  489. data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +4 -1
  490. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +72 -60
  491. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +22 -12
  492. data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +4 -1
  493. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +153 -122
  494. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +51 -33
  495. data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +6 -1
  496. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +150 -122
  497. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +59 -29
  498. data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +9 -1
  499. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +155 -123
  500. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +62 -40
  501. data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +7 -1
  502. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +55 -43
  503. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +27 -13
  504. data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +5 -1
  505. data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +2 -1
  506. data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c +3 -1
  507. data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h +2 -1
  508. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +16 -13
  509. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +10 -4
  510. data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +3 -1
  511. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +37 -31
  512. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +19 -9
  513. data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +4 -1
  514. data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +65 -55
  515. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +30 -16
  516. data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +5 -1
  517. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +64 -51
  518. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +26 -16
  519. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +4 -1
  520. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +2 -1
  521. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c +3 -1
  522. data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h +2 -1
  523. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +30 -25
  524. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +14 -8
  525. data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +3 -1
  526. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +38 -29
  527. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +15 -11
  528. data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +3 -1
  529. data/src/core/ext/upb-gen/google/api/annotations.upb.h +21 -9
  530. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +5 -2
  531. data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +2 -1
  532. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +681 -525
  533. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +190 -153
  534. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +15 -1
  535. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +1072 -544
  536. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +285 -167
  537. data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +20 -1
  538. data/src/core/ext/upb-gen/google/api/http.upb.h +190 -163
  539. data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +51 -37
  540. data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +5 -1
  541. data/src/core/ext/upb-gen/google/api/httpbody.upb.h +56 -48
  542. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +16 -10
  543. data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +3 -1
  544. data/src/core/ext/upb-gen/google/protobuf/any.upb.h +23 -19
  545. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +12 -6
  546. data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +3 -1
  547. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +2871 -2372
  548. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +599 -557
  549. data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +36 -1
  550. data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +23 -19
  551. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +12 -6
  552. data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +3 -1
  553. data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +9 -7
  554. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +8 -2
  555. data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +3 -1
  556. data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +157 -117
  557. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +50 -34
  558. data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +6 -1
  559. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +23 -19
  560. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +12 -6
  561. data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +3 -1
  562. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +128 -109
  563. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +66 -28
  564. data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +11 -1
  565. data/src/core/ext/upb-gen/google/rpc/status.upb.h +56 -48
  566. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +16 -10
  567. data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +3 -1
  568. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +115 -93
  569. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +47 -29
  570. data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +6 -1
  571. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +87 -62
  572. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +33 -23
  573. data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +4 -1
  574. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +637 -519
  575. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +180 -136
  576. data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +14 -1
  577. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +52 -41
  578. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +22 -18
  579. data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +4 -1
  580. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +30 -25
  581. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +17 -7
  582. data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +4 -1
  583. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +291 -239
  584. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +101 -69
  585. data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +11 -1
  586. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +104 -83
  587. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +35 -21
  588. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +5 -1
  589. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +550 -467
  590. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +124 -90
  591. data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +11 -1
  592. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +146 -83
  593. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +42 -23
  594. data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +5 -1
  595. data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +42 -27
  596. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +18 -11
  597. data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +3 -1
  598. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +12 -9
  599. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +5 -2
  600. data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +2 -1
  601. data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +42 -27
  602. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +18 -11
  603. data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +3 -1
  604. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +35 -21
  605. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +16 -9
  606. data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +3 -1
  607. data/src/core/ext/upb-gen/validate/validate.upb.h +2713 -2459
  608. data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +499 -545
  609. data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +25 -1
  610. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +146 -83
  611. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +42 -23
  612. data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +5 -1
  613. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +42 -27
  614. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +18 -11
  615. data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +3 -1
  616. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +12 -9
  617. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +5 -2
  618. data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +2 -1
  619. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +122 -79
  620. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +46 -25
  621. data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +6 -1
  622. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +35 -21
  623. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +16 -9
  624. data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +3 -1
  625. data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +16 -13
  626. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +10 -4
  627. data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +3 -1
  628. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +27 -21
  629. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +13 -9
  630. data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +3 -1
  631. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +66 -51
  632. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +28 -18
  633. data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +4 -1
  634. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +41 -24
  635. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +20 -10
  636. data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +4 -1
  637. data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +27 -21
  638. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +13 -9
  639. data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +3 -1
  640. data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +38 -29
  641. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +17 -11
  642. data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +3 -1
  643. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +114 -94
  644. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +34 -24
  645. data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +4 -1
  646. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +41 -33
  647. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +17 -15
  648. data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +3 -1
  649. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +147 -94
  650. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +54 -36
  651. data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +6 -1
  652. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +48 -44
  653. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +14 -8
  654. data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +3 -1
  655. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +27 -21
  656. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +14 -8
  657. data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +3 -1
  658. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +88 -79
  659. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +22 -14
  660. data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +4 -1
  661. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +9 -7
  662. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +8 -2
  663. data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +3 -1
  664. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +100 -85
  665. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +26 -16
  666. data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +4 -1
  667. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +384 -286
  668. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +127 -93
  669. data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +12 -1
  670. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +275 -235
  671. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +63 -43
  672. data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +8 -1
  673. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +37 -29
  674. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +19 -9
  675. data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +4 -1
  676. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +106 -90
  677. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +31 -21
  678. data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +4 -1
  679. data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +63 -47
  680. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +25 -21
  681. data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +4 -1
  682. data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +65 -55
  683. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +30 -16
  684. data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +5 -1
  685. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +27 -21
  686. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +13 -9
  687. data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +3 -1
  688. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +2 -1
  689. data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +4 -6
  690. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +2 -1
  691. data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +4 -6
  692. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +2 -1
  693. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +4 -6
  694. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +2 -1
  695. data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +4 -6
  696. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +2 -1
  697. data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +4 -6
  698. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +2 -1
  699. data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +4 -6
  700. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +2 -1
  701. data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +4 -6
  702. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +2 -1
  703. data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +4 -6
  704. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +2 -1
  705. data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +4 -6
  706. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +88 -82
  707. data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +4 -6
  708. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +2 -1
  709. data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +4 -6
  710. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +2 -1
  711. data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +4 -6
  712. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +2 -1
  713. data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +4 -6
  714. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +63 -61
  715. data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +4 -6
  716. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +223 -211
  717. data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +9 -6
  718. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +2 -1
  719. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +4 -6
  720. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +319 -298
  721. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +9 -6
  722. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +2 -1
  723. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +4 -6
  724. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +116 -106
  725. data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +4 -6
  726. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +2 -1
  727. data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +4 -6
  728. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +2 -1
  729. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +4 -6
  730. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +2 -1
  731. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +4 -6
  732. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +187 -141
  733. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +29 -6
  734. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +12 -12
  735. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +4 -6
  736. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +2 -1
  737. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +4 -6
  738. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +2 -1
  739. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +4 -6
  740. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +2 -1
  741. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +4 -6
  742. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +175 -165
  743. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +4 -6
  744. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +199 -188
  745. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +4 -6
  746. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +2 -1
  747. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +4 -6
  748. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +2 -1
  749. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +4 -6
  750. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +231 -223
  751. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +4 -6
  752. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +2 -1
  753. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +4 -6
  754. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +2 -1
  755. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +4 -6
  756. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +2 -1
  757. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +4 -6
  758. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +2 -1
  759. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +4 -6
  760. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +2 -1
  761. data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +4 -6
  762. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +2 -1
  763. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +4 -6
  764. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +41 -37
  765. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +4 -6
  766. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +124 -94
  767. data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +9 -6
  768. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +2 -1
  769. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +4 -6
  770. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +43 -40
  771. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +4 -6
  772. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +2 -1
  773. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +4 -6
  774. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +22 -13
  775. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +4 -6
  776. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +2 -1
  777. data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +4 -6
  778. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +2 -1
  779. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +4 -6
  780. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +2 -1
  781. data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +4 -6
  782. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +2 -1
  783. data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +4 -6
  784. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +71 -66
  785. data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +4 -6
  786. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +2 -1
  787. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +4 -6
  788. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +613 -605
  789. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +4 -6
  790. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +2 -1
  791. data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +4 -6
  792. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +2 -1
  793. data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +4 -6
  794. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +32 -21
  795. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +9 -6
  796. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +20 -18
  797. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +4 -6
  798. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +2 -1
  799. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +4 -6
  800. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +2 -1
  801. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +4 -6
  802. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +64 -60
  803. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +4 -6
  804. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +2 -1
  805. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +4 -6
  806. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +2 -1
  807. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +4 -6
  808. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +2 -1
  809. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +4 -6
  810. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +2 -1
  811. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +4 -6
  812. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +2 -1
  813. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +4 -6
  814. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +23 -21
  815. data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +4 -6
  816. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +147 -143
  817. data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +4 -6
  818. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +2 -1
  819. data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +4 -6
  820. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +2 -1
  821. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +4 -6
  822. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +2 -1
  823. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +4 -6
  824. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +87 -0
  825. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +48 -0
  826. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +38 -34
  827. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +4 -6
  828. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +2 -1
  829. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +4 -6
  830. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +2 -1
  831. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +4 -6
  832. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +292 -289
  833. data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +4 -6
  834. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +2 -1
  835. data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +4 -6
  836. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +53 -0
  837. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +33 -0
  838. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +2 -1
  839. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +4 -6
  840. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +84 -76
  841. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +9 -6
  842. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +2 -1
  843. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +4 -6
  844. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +2 -1
  845. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +4 -6
  846. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +2 -1
  847. data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +4 -6
  848. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +2 -1
  849. data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +4 -6
  850. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +2 -1
  851. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +4 -6
  852. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +2 -1
  853. data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +4 -6
  854. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +2 -1
  855. data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +4 -6
  856. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +2 -1
  857. data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +4 -6
  858. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +2 -1
  859. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +4 -6
  860. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +2 -1
  861. data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +4 -6
  862. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +2 -1
  863. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +4 -6
  864. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +2 -1
  865. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +4 -6
  866. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +2 -1
  867. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +4 -6
  868. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +2 -1
  869. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +4 -6
  870. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +2 -1
  871. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +4 -6
  872. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +2 -1
  873. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +4 -6
  874. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +2 -1
  875. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +4 -6
  876. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +2 -1
  877. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +4 -6
  878. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +41 -34
  879. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +4 -6
  880. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +2 -1
  881. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +4 -6
  882. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +2 -1
  883. data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +4 -6
  884. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +2 -1
  885. data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +4 -6
  886. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +2 -1
  887. data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +4 -6
  888. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +2 -1
  889. data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +4 -6
  890. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +2 -1
  891. data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +4 -6
  892. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +2 -1
  893. data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +4 -6
  894. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +2 -1
  895. data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +4 -6
  896. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +2 -1
  897. data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +4 -6
  898. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +2 -1
  899. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +4 -6
  900. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +2 -1
  901. data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +4 -6
  902. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +2 -1
  903. data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +4 -6
  904. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +2 -1
  905. data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +4 -6
  906. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +2 -1
  907. data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +4 -6
  908. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +110 -108
  909. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +4 -6
  910. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +103 -79
  911. data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +14 -6
  912. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +2 -1
  913. data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +4 -6
  914. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +2 -1
  915. data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +4 -6
  916. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +2 -1
  917. data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +4 -6
  918. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +412 -385
  919. data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +9 -6
  920. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +2 -1
  921. data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +4 -6
  922. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +2 -1
  923. data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +4 -6
  924. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +2 -1
  925. data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +4 -6
  926. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +2 -1
  927. data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +4 -6
  928. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +2 -1
  929. data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +4 -6
  930. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +2 -1
  931. data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +4 -6
  932. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +2 -1
  933. data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +4 -6
  934. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +2 -1
  935. data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +4 -6
  936. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +2 -1
  937. data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +4 -6
  938. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +2 -1
  939. data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +4 -6
  940. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +2 -1
  941. data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +4 -6
  942. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +2 -1
  943. data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +4 -6
  944. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +2 -1
  945. data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +4 -6
  946. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +2 -1
  947. data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +4 -6
  948. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +2 -1
  949. data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +4 -6
  950. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +2 -1
  951. data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +4 -6
  952. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +2 -1
  953. data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +4 -6
  954. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +2 -1
  955. data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +4 -6
  956. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +2 -1
  957. data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +4 -6
  958. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +2 -1
  959. data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +4 -6
  960. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +2 -1
  961. data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +4 -6
  962. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +2 -1
  963. data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +4 -6
  964. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +2 -1
  965. data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +4 -6
  966. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +2 -1
  967. data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +4 -6
  968. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +2 -1
  969. data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +4 -6
  970. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +2 -1
  971. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +4 -6
  972. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +2 -1
  973. data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +4 -6
  974. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +2 -1
  975. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +4 -6
  976. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +2 -1
  977. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +4 -6
  978. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +2 -1
  979. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +4 -6
  980. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +2 -1
  981. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +4 -6
  982. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +2 -1
  983. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +4 -6
  984. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +2 -1
  985. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +4 -6
  986. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +2 -1
  987. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +4 -6
  988. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +2 -1
  989. data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +4 -6
  990. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +2 -1
  991. data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +4 -6
  992. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +2 -1
  993. data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +4 -6
  994. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +2 -1
  995. data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +4 -6
  996. data/src/core/filter/blackboard.cc +33 -0
  997. data/src/core/filter/blackboard.h +70 -0
  998. data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +81 -0
  999. data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.h +37 -0
  1000. data/src/core/handshaker/handshaker.cc +199 -0
  1001. data/src/core/handshaker/handshaker.h +170 -0
  1002. data/src/core/handshaker/handshaker_factory.h +89 -0
  1003. data/src/core/handshaker/handshaker_registry.cc +60 -0
  1004. data/src/core/handshaker/handshaker_registry.h +69 -0
  1005. data/src/core/handshaker/http_connect/http_connect_handshaker.cc +353 -0
  1006. data/src/core/handshaker/http_connect/http_connect_handshaker.h +42 -0
  1007. data/src/core/handshaker/http_connect/http_proxy_mapper.cc +297 -0
  1008. data/src/core/handshaker/http_connect/http_proxy_mapper.h +52 -0
  1009. data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +57 -0
  1010. data/src/core/handshaker/http_connect/xds_http_proxy_mapper.h +46 -0
  1011. data/src/core/handshaker/proxy_mapper.h +52 -0
  1012. data/src/core/handshaker/proxy_mapper_registry.cc +71 -0
  1013. data/src/core/handshaker/proxy_mapper_registry.h +74 -0
  1014. data/src/core/handshaker/security/secure_endpoint.cc +578 -0
  1015. data/src/core/handshaker/security/secure_endpoint.h +41 -0
  1016. data/src/core/handshaker/security/security_handshaker.cc +628 -0
  1017. data/src/core/handshaker/security/security_handshaker.h +45 -0
  1018. data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +230 -0
  1019. data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.h +39 -0
  1020. data/src/core/lib/address_utils/parse_address.cc +41 -45
  1021. data/src/core/lib/address_utils/parse_address.h +1 -3
  1022. data/src/core/lib/address_utils/sockaddr_utils.cc +30 -20
  1023. data/src/core/lib/address_utils/sockaddr_utils.h +0 -2
  1024. data/src/core/lib/channel/call_finalization.h +1 -1
  1025. data/src/core/lib/channel/channel_args.cc +20 -26
  1026. data/src/core/lib/channel/channel_args.h +33 -20
  1027. data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
  1028. data/src/core/lib/channel/channel_args_preconditioning.h +1 -2
  1029. data/src/core/lib/channel/channel_stack.cc +21 -74
  1030. data/src/core/lib/channel/channel_stack.h +31 -62
  1031. data/src/core/lib/channel/channel_stack_builder.cc +2 -2
  1032. data/src/core/lib/channel/channel_stack_builder.h +1 -7
  1033. data/src/core/lib/channel/channel_stack_builder_impl.cc +18 -30
  1034. data/src/core/lib/channel/channel_stack_builder_impl.h +13 -3
  1035. data/src/core/lib/channel/connected_channel.cc +48 -708
  1036. data/src/core/lib/channel/promise_based_filter.cc +248 -323
  1037. data/src/core/lib/channel/promise_based_filter.h +267 -506
  1038. data/src/core/lib/channel/status_util.cc +2 -4
  1039. data/src/core/lib/channel/status_util.h +1 -2
  1040. data/src/core/lib/compression/compression.cc +7 -10
  1041. data/src/core/lib/compression/compression_internal.cc +39 -9
  1042. data/src/core/lib/compression/compression_internal.h +5 -5
  1043. data/src/core/lib/compression/message_compress.cc +16 -18
  1044. data/src/core/lib/compression/message_compress.h +1 -2
  1045. data/src/core/lib/config/config_vars.cc +15 -16
  1046. data/src/core/lib/config/config_vars.h +9 -8
  1047. data/src/core/lib/config/core_configuration.cc +9 -9
  1048. data/src/core/lib/config/core_configuration.h +7 -9
  1049. data/src/core/lib/config/load_config.cc +4 -6
  1050. data/src/core/lib/config/load_config.h +0 -1
  1051. data/src/core/lib/debug/trace.cc +47 -66
  1052. data/src/core/lib/debug/trace.h +2 -97
  1053. data/src/core/lib/debug/trace_flags.cc +242 -0
  1054. data/src/core/lib/debug/trace_flags.h +131 -0
  1055. data/src/core/lib/debug/trace_impl.h +125 -0
  1056. data/src/core/lib/event_engine/ares_resolver.cc +167 -92
  1057. data/src/core/lib/event_engine/ares_resolver.h +11 -18
  1058. data/src/core/lib/event_engine/cf_engine/cf_engine.cc +14 -15
  1059. data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
  1060. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +47 -34
  1061. data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +4 -6
  1062. data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +1 -1
  1063. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +21 -27
  1064. data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +5 -6
  1065. data/src/core/lib/event_engine/channel_args_endpoint_config.cc +3 -5
  1066. data/src/core/lib/event_engine/channel_args_endpoint_config.h +1 -3
  1067. data/src/core/lib/event_engine/common_closures.h +1 -2
  1068. data/src/core/lib/event_engine/default_event_engine.cc +12 -15
  1069. data/src/core/lib/event_engine/default_event_engine.h +2 -9
  1070. data/src/core/lib/event_engine/default_event_engine_factory.cc +3 -4
  1071. data/src/core/lib/event_engine/default_event_engine_factory.h +1 -2
  1072. data/src/core/lib/event_engine/event_engine.cc +35 -5
  1073. data/src/core/lib/event_engine/event_engine_context.h +32 -0
  1074. data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +64 -0
  1075. data/src/core/lib/event_engine/extensions/supports_fd.h +25 -2
  1076. data/src/core/lib/event_engine/extensions/tcp_trace.h +42 -0
  1077. data/src/core/lib/event_engine/forkable.cc +11 -12
  1078. data/src/core/lib/event_engine/forkable.h +0 -13
  1079. data/src/core/lib/event_engine/grpc_polled_fd.h +2 -4
  1080. data/src/core/lib/event_engine/handle_containers.h +1 -3
  1081. data/src/core/lib/event_engine/memory_allocator_factory.h +1 -3
  1082. data/src/core/lib/event_engine/poller.h +1 -2
  1083. data/src/core/lib/event_engine/posix.h +9 -2
  1084. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +28 -30
  1085. data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +6 -8
  1086. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +23 -27
  1087. data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +2 -4
  1088. data/src/core/lib/event_engine/posix_engine/event_poller.h +1 -3
  1089. data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +1 -2
  1090. data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +3 -6
  1091. data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +5 -6
  1092. data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +0 -1
  1093. data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +7 -9
  1094. data/src/core/lib/event_engine/posix_engine/lockfree_event.h +0 -1
  1095. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +3 -4
  1096. data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +0 -1
  1097. data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +96 -103
  1098. data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +22 -23
  1099. data/src/core/lib/event_engine/posix_engine/posix_engine.cc +83 -64
  1100. data/src/core/lib/event_engine/posix_engine/posix_engine.h +16 -13
  1101. data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +1 -2
  1102. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +27 -30
  1103. data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +13 -13
  1104. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +28 -33
  1105. data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +1 -3
  1106. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +53 -40
  1107. data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +10 -10
  1108. data/src/core/lib/event_engine/posix_engine/timer.cc +5 -6
  1109. data/src/core/lib/event_engine/posix_engine/timer.h +4 -7
  1110. data/src/core/lib/event_engine/posix_engine/timer_heap.cc +1 -2
  1111. data/src/core/lib/event_engine/posix_engine/timer_manager.cc +16 -25
  1112. data/src/core/lib/event_engine/posix_engine/timer_manager.h +4 -7
  1113. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +6 -9
  1114. data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +2 -5
  1115. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +3 -4
  1116. data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +0 -1
  1117. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +2 -3
  1118. data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +0 -1
  1119. data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +0 -1
  1120. data/src/core/lib/event_engine/query_extensions.h +3 -2
  1121. data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +2 -5
  1122. data/src/core/lib/event_engine/resolved_address.cc +8 -7
  1123. data/src/core/lib/event_engine/resolved_address_internal.h +1 -2
  1124. data/src/core/lib/event_engine/shim.cc +3 -3
  1125. data/src/core/lib/event_engine/slice.cc +5 -7
  1126. data/src/core/lib/event_engine/slice_buffer.cc +2 -4
  1127. data/src/core/lib/event_engine/tcp_socket_utils.cc +29 -21
  1128. data/src/core/lib/event_engine/tcp_socket_utils.h +3 -4
  1129. data/src/core/lib/event_engine/thread_local.cc +2 -2
  1130. data/src/core/lib/event_engine/thread_local.h +1 -1
  1131. data/src/core/lib/event_engine/thread_pool/thread_count.cc +5 -8
  1132. data/src/core/lib/event_engine/thread_pool/thread_count.h +4 -6
  1133. data/src/core/lib/event_engine/thread_pool/thread_pool.h +1 -4
  1134. data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +1 -2
  1135. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +45 -52
  1136. data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +9 -15
  1137. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +50 -23
  1138. data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +7 -7
  1139. data/src/core/lib/event_engine/time_util.cc +3 -4
  1140. data/src/core/lib/event_engine/time_util.h +1 -3
  1141. data/src/core/lib/event_engine/utils.cc +19 -6
  1142. data/src/core/lib/event_engine/utils.h +9 -4
  1143. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +158 -132
  1144. data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +4 -6
  1145. data/src/core/lib/event_engine/windows/iocp.cc +24 -22
  1146. data/src/core/lib/event_engine/windows/iocp.h +2 -3
  1147. data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +4 -6
  1148. data/src/core/lib/event_engine/windows/win_socket.cc +51 -36
  1149. data/src/core/lib/event_engine/windows/win_socket.h +11 -10
  1150. data/src/core/lib/event_engine/windows/windows_endpoint.cc +39 -39
  1151. data/src/core/lib/event_engine/windows/windows_engine.cc +265 -123
  1152. data/src/core/lib/event_engine/windows/windows_engine.h +143 -33
  1153. data/src/core/lib/event_engine/windows/windows_listener.cc +83 -49
  1154. data/src/core/lib/event_engine/windows/windows_listener.h +18 -5
  1155. data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +3 -3
  1156. data/src/core/lib/event_engine/work_queue/basic_work_queue.h +2 -5
  1157. data/src/core/lib/event_engine/work_queue/work_queue.h +1 -3
  1158. data/src/core/lib/experiments/config.cc +110 -65
  1159. data/src/core/lib/experiments/config.h +55 -2
  1160. data/src/core/lib/experiments/experiments.cc +177 -515
  1161. data/src/core/lib/experiments/experiments.h +103 -241
  1162. data/src/core/lib/iomgr/buffer_list.cc +6 -7
  1163. data/src/core/lib/iomgr/buffer_list.h +2 -4
  1164. data/src/core/lib/iomgr/call_combiner.cc +42 -68
  1165. data/src/core/lib/iomgr/call_combiner.h +11 -16
  1166. data/src/core/lib/iomgr/cfstream_handle.cc +14 -20
  1167. data/src/core/lib/iomgr/cfstream_handle.h +1 -1
  1168. data/src/core/lib/iomgr/closure.cc +2 -2
  1169. data/src/core/lib/iomgr/closure.h +14 -20
  1170. data/src/core/lib/iomgr/combiner.cc +38 -52
  1171. data/src/core/lib/iomgr/combiner.h +1 -5
  1172. data/src/core/lib/iomgr/endpoint.cc +1 -7
  1173. data/src/core/lib/iomgr/endpoint.h +4 -6
  1174. data/src/core/lib/iomgr/endpoint_cfstream.cc +45 -76
  1175. data/src/core/lib/iomgr/endpoint_pair_posix.cc +8 -10
  1176. data/src/core/lib/iomgr/endpoint_pair_windows.cc +16 -17
  1177. data/src/core/lib/iomgr/error.cc +24 -34
  1178. data/src/core/lib/iomgr/error.h +8 -11
  1179. data/src/core/lib/iomgr/error_cfstream.cc +1 -3
  1180. data/src/core/lib/iomgr/ev_apple.cc +15 -23
  1181. data/src/core/lib/iomgr/ev_epoll1_linux.cc +79 -124
  1182. data/src/core/lib/iomgr/ev_poll_posix.cc +62 -62
  1183. data/src/core/lib/iomgr/ev_posix.cc +67 -59
  1184. data/src/core/lib/iomgr/ev_posix.h +9 -12
  1185. data/src/core/lib/iomgr/event_engine_shims/closure.cc +11 -15
  1186. data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -3
  1187. data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +35 -53
  1188. data/src/core/lib/iomgr/event_engine_shims/endpoint.h +1 -2
  1189. data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +10 -15
  1190. data/src/core/lib/iomgr/event_engine_shims/tcp_client.h +1 -2
  1191. data/src/core/lib/iomgr/exec_ctx.cc +14 -18
  1192. data/src/core/lib/iomgr/exec_ctx.h +33 -23
  1193. data/src/core/lib/iomgr/executor.cc +60 -59
  1194. data/src/core/lib/iomgr/executor.h +2 -2
  1195. data/src/core/lib/iomgr/fork_posix.cc +11 -15
  1196. data/src/core/lib/iomgr/fork_windows.cc +3 -2
  1197. data/src/core/lib/iomgr/internal_errqueue.cc +5 -6
  1198. data/src/core/lib/iomgr/iocp_windows.cc +16 -15
  1199. data/src/core/lib/iomgr/iocp_windows.h +0 -1
  1200. data/src/core/lib/iomgr/iomgr.cc +18 -25
  1201. data/src/core/lib/iomgr/iomgr.h +0 -1
  1202. data/src/core/lib/iomgr/iomgr_internal.cc +1 -2
  1203. data/src/core/lib/iomgr/iomgr_internal.h +0 -1
  1204. data/src/core/lib/iomgr/iomgr_windows.cc +4 -5
  1205. data/src/core/lib/iomgr/lockfree_event.cc +12 -21
  1206. data/src/core/lib/iomgr/lockfree_event.h +1 -2
  1207. data/src/core/lib/iomgr/polling_entity.cc +17 -11
  1208. data/src/core/lib/iomgr/pollset.cc +2 -2
  1209. data/src/core/lib/iomgr/pollset.h +0 -3
  1210. data/src/core/lib/iomgr/pollset_set.cc +2 -2
  1211. data/src/core/lib/iomgr/pollset_set_windows.cc +0 -1
  1212. data/src/core/lib/iomgr/pollset_windows.cc +2 -6
  1213. data/src/core/lib/iomgr/pollset_windows.h +0 -1
  1214. data/src/core/lib/iomgr/port.h +5 -2
  1215. data/src/core/lib/iomgr/python_util.h +1 -2
  1216. data/src/core/lib/iomgr/resolve_address.cc +4 -7
  1217. data/src/core/lib/iomgr/resolve_address.h +3 -6
  1218. data/src/core/lib/iomgr/resolve_address_impl.h +0 -1
  1219. data/src/core/lib/iomgr/resolve_address_posix.cc +12 -21
  1220. data/src/core/lib/iomgr/resolve_address_windows.cc +9 -12
  1221. data/src/core/lib/iomgr/resolved_address.h +0 -1
  1222. data/src/core/lib/iomgr/sockaddr_utils_posix.cc +5 -6
  1223. data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
  1224. data/src/core/lib/iomgr/socket_factory_posix.h +1 -2
  1225. data/src/core/lib/iomgr/socket_mutator.cc +3 -5
  1226. data/src/core/lib/iomgr/socket_mutator.h +2 -4
  1227. data/src/core/lib/iomgr/socket_utils.h +0 -1
  1228. data/src/core/lib/iomgr/socket_utils_common_posix.cc +45 -52
  1229. data/src/core/lib/iomgr/socket_utils_linux.cc +1 -3
  1230. data/src/core/lib/iomgr/socket_utils_posix.cc +3 -6
  1231. data/src/core/lib/iomgr/socket_utils_posix.h +1 -2
  1232. data/src/core/lib/iomgr/socket_utils_windows.cc +1 -3
  1233. data/src/core/lib/iomgr/socket_windows.cc +11 -14
  1234. data/src/core/lib/iomgr/socket_windows.h +1 -2
  1235. data/src/core/lib/iomgr/tcp_client.cc +2 -2
  1236. data/src/core/lib/iomgr/tcp_client.h +1 -2
  1237. data/src/core/lib/iomgr/tcp_client_cfstream.cc +12 -20
  1238. data/src/core/lib/iomgr/tcp_client_posix.cc +22 -34
  1239. data/src/core/lib/iomgr/tcp_client_windows.cc +31 -15
  1240. data/src/core/lib/iomgr/tcp_posix.cc +166 -188
  1241. data/src/core/lib/iomgr/tcp_posix.h +0 -2
  1242. data/src/core/lib/iomgr/tcp_server.cc +2 -2
  1243. data/src/core/lib/iomgr/tcp_server.h +3 -4
  1244. data/src/core/lib/iomgr/tcp_server_posix.cc +152 -156
  1245. data/src/core/lib/iomgr/tcp_server_utils_posix.h +0 -1
  1246. data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +13 -17
  1247. data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +11 -12
  1248. data/src/core/lib/iomgr/tcp_server_windows.cc +91 -47
  1249. data/src/core/lib/iomgr/tcp_windows.cc +38 -66
  1250. data/src/core/lib/iomgr/timer.cc +2 -2
  1251. data/src/core/lib/iomgr/timer.h +2 -3
  1252. data/src/core/lib/iomgr/timer_generic.cc +72 -105
  1253. data/src/core/lib/iomgr/timer_generic.h +0 -1
  1254. data/src/core/lib/iomgr/timer_heap.cc +3 -5
  1255. data/src/core/lib/iomgr/timer_manager.cc +27 -44
  1256. data/src/core/lib/iomgr/timer_manager.h +0 -1
  1257. data/src/core/lib/iomgr/unix_sockets_posix.cc +18 -6
  1258. data/src/core/lib/iomgr/unix_sockets_posix.h +1 -3
  1259. data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +2 -4
  1260. data/src/core/lib/iomgr/vsock.cc +5 -8
  1261. data/src/core/lib/iomgr/vsock.h +1 -3
  1262. data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +2 -4
  1263. data/src/core/lib/iomgr/wakeup_fd_pipe.cc +5 -6
  1264. data/src/core/lib/promise/activity.cc +4 -5
  1265. data/src/core/lib/promise/activity.h +53 -21
  1266. data/src/core/lib/promise/all_ok.h +15 -9
  1267. data/src/core/lib/promise/arena_promise.h +1 -3
  1268. data/src/core/lib/promise/cancel_callback.h +34 -6
  1269. data/src/core/lib/promise/context.h +20 -11
  1270. data/src/core/lib/promise/detail/basic_seq.h +2 -3
  1271. data/src/core/lib/promise/detail/join_state.h +555 -760
  1272. data/src/core/lib/promise/detail/promise_factory.h +44 -28
  1273. data/src/core/lib/promise/detail/promise_like.h +27 -12
  1274. data/src/core/lib/promise/detail/seq_state.h +1314 -1977
  1275. data/src/core/lib/promise/detail/status.h +36 -14
  1276. data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +1 -2
  1277. data/src/core/lib/promise/for_each.h +97 -39
  1278. data/src/core/lib/promise/if.h +21 -17
  1279. data/src/core/lib/promise/interceptor_list.h +22 -36
  1280. data/src/core/lib/promise/latch.h +25 -40
  1281. data/src/core/lib/promise/loop.h +14 -10
  1282. data/src/core/lib/promise/map.h +25 -8
  1283. data/src/core/lib/promise/observable.h +181 -0
  1284. data/src/core/lib/promise/party.cc +302 -122
  1285. data/src/core/lib/promise/party.h +143 -367
  1286. data/src/core/lib/promise/pipe.h +34 -57
  1287. data/src/core/lib/promise/poll.h +104 -39
  1288. data/src/core/lib/promise/promise.h +12 -6
  1289. data/src/core/lib/promise/race.h +10 -5
  1290. data/src/core/lib/promise/seq.h +54 -38
  1291. data/src/core/lib/promise/sleep.cc +5 -6
  1292. data/src/core/lib/promise/sleep.h +2 -4
  1293. data/src/core/lib/promise/status_flag.h +158 -51
  1294. data/src/core/lib/promise/try_join.h +37 -20
  1295. data/src/core/lib/promise/try_seq.h +87 -49
  1296. data/src/core/lib/resource_quota/api.cc +4 -7
  1297. data/src/core/lib/resource_quota/api.h +2 -4
  1298. data/src/core/lib/resource_quota/arena.cc +64 -87
  1299. data/src/core/lib/resource_quota/arena.h +145 -215
  1300. data/src/core/lib/resource_quota/connection_quota.cc +69 -0
  1301. data/src/core/lib/resource_quota/connection_quota.h +60 -0
  1302. data/src/core/lib/resource_quota/memory_quota.cc +35 -47
  1303. data/src/core/lib/resource_quota/memory_quota.h +22 -20
  1304. data/src/core/lib/resource_quota/periodic_update.cc +4 -4
  1305. data/src/core/lib/resource_quota/periodic_update.h +1 -3
  1306. data/src/core/lib/resource_quota/resource_quota.cc +2 -2
  1307. data/src/core/lib/resource_quota/resource_quota.h +6 -8
  1308. data/src/core/lib/resource_quota/thread_quota.cc +4 -4
  1309. data/src/core/lib/resource_quota/thread_quota.h +3 -4
  1310. data/src/core/lib/security/authorization/audit_logging.cc +10 -12
  1311. data/src/core/lib/security/authorization/audit_logging.h +3 -5
  1312. data/src/core/lib/security/authorization/authorization_engine.h +1 -1
  1313. data/src/core/lib/security/authorization/authorization_policy_provider.h +5 -7
  1314. data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +3 -4
  1315. data/src/core/lib/security/authorization/evaluate_args.cc +16 -20
  1316. data/src/core/lib/security/authorization/evaluate_args.h +4 -6
  1317. data/src/core/lib/security/authorization/grpc_authorization_engine.cc +4 -5
  1318. data/src/core/lib/security/authorization/grpc_authorization_engine.h +1 -3
  1319. data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +29 -41
  1320. data/src/core/lib/security/authorization/grpc_server_authz_filter.h +11 -11
  1321. data/src/core/lib/security/authorization/matchers.cc +5 -8
  1322. data/src/core/lib/security/authorization/matchers.h +1 -3
  1323. data/src/core/lib/security/authorization/rbac_policy.cc +2 -2
  1324. data/src/core/lib/security/authorization/rbac_policy.h +2 -5
  1325. data/src/core/lib/security/authorization/stdout_logger.cc +7 -7
  1326. data/src/core/lib/security/authorization/stdout_logger.h +2 -3
  1327. data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +7 -8
  1328. data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +6 -6
  1329. data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +0 -1
  1330. data/src/core/lib/security/context/security_context.cc +51 -49
  1331. data/src/core/lib/security/context/security_context.h +38 -17
  1332. data/src/core/lib/security/credentials/alts/alts_credentials.cc +6 -7
  1333. data/src/core/lib/security/credentials/alts/alts_credentials.h +11 -7
  1334. data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +4 -5
  1335. data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +1 -2
  1336. data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +3 -5
  1337. data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +3 -5
  1338. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +5 -7
  1339. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +4 -5
  1340. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +2 -2
  1341. data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +1 -2
  1342. data/src/core/lib/security/credentials/call_creds_util.cc +8 -8
  1343. data/src/core/lib/security/credentials/call_creds_util.h +2 -2
  1344. data/src/core/lib/security/credentials/channel_creds_registry.h +5 -6
  1345. data/src/core/lib/security/credentials/channel_creds_registry_init.cc +13 -12
  1346. data/src/core/lib/security/credentials/composite/composite_credentials.cc +18 -21
  1347. data/src/core/lib/security/credentials/composite/composite_credentials.h +9 -8
  1348. data/src/core/lib/security/credentials/credentials.cc +20 -20
  1349. data/src/core/lib/security/credentials/credentials.h +13 -14
  1350. data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +336 -339
  1351. data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +58 -46
  1352. data/src/core/lib/security/credentials/external/aws_request_signer.cc +4 -5
  1353. data/src/core/lib/security/credentials/external/aws_request_signer.h +1 -1
  1354. data/src/core/lib/security/credentials/external/external_account_credentials.cc +409 -374
  1355. data/src/core/lib/security/credentials/external/external_account_credentials.h +127 -59
  1356. data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +90 -53
  1357. data/src/core/lib/security/credentials/external/file_external_account_credentials.h +30 -9
  1358. data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +103 -129
  1359. data/src/core/lib/security/credentials/external/url_external_account_credentials.h +20 -22
  1360. data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -4
  1361. data/src/core/lib/security/credentials/fake/fake_credentials.h +9 -8
  1362. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +195 -0
  1363. data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
  1364. data/src/core/lib/security/credentials/google_default/credentials_generic.cc +4 -6
  1365. data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +59 -76
  1366. data/src/core/lib/security/credentials/google_default/google_default_credentials.h +9 -7
  1367. data/src/core/lib/security/credentials/iam/iam_credentials.cc +9 -14
  1368. data/src/core/lib/security/credentials/iam/iam_credentials.h +6 -5
  1369. data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
  1370. data/src/core/lib/security/credentials/insecure/insecure_credentials.h +4 -4
  1371. data/src/core/lib/security/credentials/jwt/json_token.cc +35 -34
  1372. data/src/core/lib/security/credentials/jwt/json_token.h +2 -4
  1373. data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +24 -30
  1374. data/src/core/lib/security/credentials/jwt/jwt_credentials.h +9 -9
  1375. data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +89 -101
  1376. data/src/core/lib/security/credentials/jwt/jwt_verifier.h +3 -5
  1377. data/src/core/lib/security/credentials/local/local_credentials.cc +3 -4
  1378. data/src/core/lib/security/credentials/local/local_credentials.h +5 -5
  1379. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +202 -302
  1380. data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +48 -71
  1381. data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +22 -35
  1382. data/src/core/lib/security/credentials/plugin/plugin_credentials.h +11 -13
  1383. data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +47 -59
  1384. data/src/core/lib/security/credentials/ssl/ssl_credentials.h +8 -9
  1385. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +28 -28
  1386. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +2 -3
  1387. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +0 -2
  1388. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +107 -46
  1389. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +15 -14
  1390. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +8 -12
  1391. data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +9 -10
  1392. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +27 -29
  1393. data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +2 -1
  1394. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +23 -20
  1395. data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +13 -12
  1396. data/src/core/lib/security/credentials/tls/tls_credentials.cc +20 -24
  1397. data/src/core/lib/security/credentials/tls/tls_credentials.h +7 -5
  1398. data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -7
  1399. data/src/core/lib/security/credentials/tls/tls_utils.h +1 -2
  1400. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +298 -0
  1401. data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +175 -0
  1402. data/src/core/lib/security/credentials/xds/xds_credentials.cc +21 -19
  1403. data/src/core/lib/security/credentials/xds/xds_credentials.h +7 -9
  1404. data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +35 -40
  1405. data/src/core/lib/security/security_connector/alts/alts_security_connector.h +3 -3
  1406. data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +28 -28
  1407. data/src/core/lib/security/security_connector/fake/fake_security_connector.h +3 -3
  1408. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +8 -10
  1409. data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +5 -6
  1410. data/src/core/lib/security/security_connector/load_system_roots.h +4 -2
  1411. data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +3 -2
  1412. data/src/core/lib/security/security_connector/load_system_roots_supported.cc +7 -9
  1413. data/src/core/lib/security/security_connector/load_system_roots_supported.h +1 -2
  1414. data/src/core/lib/security/security_connector/load_system_roots_windows.cc +85 -0
  1415. data/src/core/lib/security/security_connector/local/local_security_connector.cc +35 -35
  1416. data/src/core/lib/security/security_connector/local/local_security_connector.h +3 -3
  1417. data/src/core/lib/security/security_connector/security_connector.cc +11 -15
  1418. data/src/core/lib/security/security_connector/security_connector.h +8 -11
  1419. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +28 -32
  1420. data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +4 -5
  1421. data/src/core/lib/security/security_connector/ssl_utils.cc +41 -41
  1422. data/src/core/lib/security/security_connector/ssl_utils.h +5 -8
  1423. data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +49 -62
  1424. data/src/core/lib/security/security_connector/tls/tls_security_connector.h +6 -7
  1425. data/src/core/lib/security/transport/auth_filters.h +17 -38
  1426. data/src/core/lib/security/transport/client_auth_filter.cc +19 -27
  1427. data/src/core/lib/security/transport/server_auth_filter.cc +23 -32
  1428. data/src/core/lib/security/util/json_util.cc +4 -6
  1429. data/src/core/lib/security/util/json_util.h +1 -1
  1430. data/src/core/lib/slice/percent_encoding.cc +4 -6
  1431. data/src/core/lib/slice/slice.cc +44 -20
  1432. data/src/core/lib/slice/slice.h +8 -11
  1433. data/src/core/lib/slice/slice_buffer.cc +66 -30
  1434. data/src/core/lib/slice/slice_buffer.h +16 -5
  1435. data/src/core/lib/slice/slice_internal.h +11 -7
  1436. data/src/core/lib/slice/slice_refcount.h +7 -15
  1437. data/src/core/lib/slice/slice_string_helpers.cc +3 -3
  1438. data/src/core/lib/slice/slice_string_helpers.h +1 -3
  1439. data/src/core/lib/surface/byte_buffer.cc +2 -4
  1440. data/src/core/lib/surface/byte_buffer_reader.cc +5 -7
  1441. data/src/core/lib/surface/call.cc +205 -3997
  1442. data/src/core/lib/surface/call.h +177 -101
  1443. data/src/core/lib/surface/call_details.cc +5 -5
  1444. data/src/core/lib/surface/call_log_batch.cc +7 -11
  1445. data/src/core/lib/surface/call_test_only.h +2 -4
  1446. data/src/core/lib/surface/call_utils.cc +231 -0
  1447. data/src/core/lib/surface/call_utils.h +482 -0
  1448. data/src/core/lib/surface/channel.cc +131 -340
  1449. data/src/core/lib/surface/channel.h +100 -118
  1450. data/src/core/lib/surface/channel_create.cc +125 -0
  1451. data/src/core/lib/surface/channel_create.h +42 -0
  1452. data/src/core/lib/surface/channel_init.cc +275 -271
  1453. data/src/core/lib/surface/channel_init.h +189 -114
  1454. data/src/core/lib/surface/channel_stack_type.cc +2 -2
  1455. data/src/core/lib/surface/client_call.cc +427 -0
  1456. data/src/core/lib/surface/client_call.h +179 -0
  1457. data/src/core/lib/surface/completion_queue.cc +126 -123
  1458. data/src/core/lib/surface/completion_queue.h +3 -13
  1459. data/src/core/lib/surface/completion_queue_factory.cc +8 -9
  1460. data/src/core/lib/surface/completion_queue_factory.h +1 -2
  1461. data/src/core/lib/surface/event_string.cc +2 -2
  1462. data/src/core/lib/surface/event_string.h +1 -2
  1463. data/src/core/lib/surface/filter_stack_call.cc +1156 -0
  1464. data/src/core/lib/surface/filter_stack_call.h +366 -0
  1465. data/src/core/lib/surface/init.cc +62 -31
  1466. data/src/core/lib/surface/init.h +5 -0
  1467. data/src/core/lib/surface/init_internally.cc +2 -2
  1468. data/src/core/lib/surface/lame_client.cc +22 -53
  1469. data/src/core/lib/surface/lame_client.h +16 -15
  1470. data/src/core/lib/surface/legacy_channel.cc +428 -0
  1471. data/src/core/lib/surface/legacy_channel.h +113 -0
  1472. data/src/core/lib/surface/metadata_array.cc +6 -7
  1473. data/src/core/lib/surface/server_call.cc +221 -0
  1474. data/src/core/lib/surface/server_call.h +168 -0
  1475. data/src/core/lib/surface/validate_metadata.cc +4 -6
  1476. data/src/core/lib/surface/validate_metadata.h +3 -6
  1477. data/src/core/lib/surface/version.cc +3 -4
  1478. data/src/core/lib/transport/bdp_estimator.cc +13 -19
  1479. data/src/core/lib/transport/bdp_estimator.h +12 -18
  1480. data/src/core/lib/transport/call_arena_allocator.cc +27 -0
  1481. data/src/core/lib/transport/call_arena_allocator.h +91 -0
  1482. data/src/core/lib/transport/call_destination.h +76 -0
  1483. data/src/core/lib/transport/call_filters.cc +79 -308
  1484. data/src/core/lib/transport/call_filters.h +875 -476
  1485. data/src/core/lib/transport/call_final_info.cc +2 -2
  1486. data/src/core/lib/transport/call_final_info.h +2 -3
  1487. data/src/core/lib/transport/call_spine.cc +103 -79
  1488. data/src/core/lib/transport/call_spine.h +254 -248
  1489. data/src/core/lib/transport/call_state.cc +39 -0
  1490. data/src/core/lib/transport/call_state.h +1061 -0
  1491. data/src/core/lib/transport/connectivity_state.cc +38 -47
  1492. data/src/core/lib/transport/connectivity_state.h +3 -7
  1493. data/src/core/lib/transport/error_utils.cc +3 -5
  1494. data/src/core/lib/transport/error_utils.h +2 -4
  1495. data/src/core/lib/transport/interception_chain.cc +147 -0
  1496. data/src/core/lib/transport/interception_chain.h +253 -0
  1497. data/src/core/lib/transport/message.cc +3 -4
  1498. data/src/core/lib/transport/message.h +5 -0
  1499. data/src/core/lib/transport/metadata.cc +29 -5
  1500. data/src/core/lib/transport/metadata.h +37 -2
  1501. data/src/core/lib/transport/metadata_batch.cc +67 -8
  1502. data/src/core/lib/transport/metadata_batch.h +107 -30
  1503. data/src/core/lib/transport/metadata_compression_traits.h +0 -1
  1504. data/src/core/lib/transport/metadata_info.cc +55 -0
  1505. data/src/core/lib/transport/metadata_info.h +85 -0
  1506. data/src/core/lib/transport/parsed_metadata.cc +2 -2
  1507. data/src/core/lib/transport/parsed_metadata.h +2 -5
  1508. data/src/core/lib/transport/simple_slice_based_metadata.h +0 -1
  1509. data/src/core/lib/transport/status_conversion.cc +2 -2
  1510. data/src/core/lib/transport/status_conversion.h +2 -3
  1511. data/src/core/lib/transport/timeout_encoding.cc +7 -8
  1512. data/src/core/lib/transport/timeout_encoding.h +1 -3
  1513. data/src/core/lib/transport/transport.cc +7 -13
  1514. data/src/core/lib/transport/transport.h +94 -88
  1515. data/src/core/lib/transport/transport_op_string.cc +2 -13
  1516. data/src/core/load_balancing/address_filtering.cc +3 -5
  1517. data/src/core/load_balancing/address_filtering.h +3 -4
  1518. data/src/core/load_balancing/backend_metric_parser.cc +94 -0
  1519. data/src/core/load_balancing/backend_metric_parser.h +45 -0
  1520. data/src/core/load_balancing/child_policy_handler.cc +42 -46
  1521. data/src/core/load_balancing/child_policy_handler.h +2 -3
  1522. data/src/core/load_balancing/delegating_helper.h +14 -8
  1523. data/src/core/load_balancing/endpoint_list.cc +17 -21
  1524. data/src/core/load_balancing/endpoint_list.h +20 -16
  1525. data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +38 -34
  1526. data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +23 -7
  1527. data/src/core/load_balancing/grpclb/grpclb.cc +215 -254
  1528. data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +2 -3
  1529. data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.h +1 -2
  1530. data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +3 -5
  1531. data/src/core/load_balancing/grpclb/grpclb_client_stats.h +5 -8
  1532. data/src/core/load_balancing/grpclb/load_balancer_api.cc +7 -11
  1533. data/src/core/load_balancing/grpclb/load_balancer_api.h +3 -6
  1534. data/src/core/load_balancing/health_check_client.cc +68 -89
  1535. data/src/core/load_balancing/health_check_client.h +1 -1
  1536. data/src/core/load_balancing/health_check_client_internal.h +10 -13
  1537. data/src/core/load_balancing/lb_policy.cc +7 -10
  1538. data/src/core/load_balancing/lb_policy.h +83 -41
  1539. data/src/core/load_balancing/lb_policy_factory.h +3 -4
  1540. data/src/core/load_balancing/lb_policy_registry.cc +7 -9
  1541. data/src/core/load_balancing/lb_policy_registry.h +5 -6
  1542. data/src/core/load_balancing/oob_backend_metric.cc +28 -35
  1543. data/src/core/load_balancing/oob_backend_metric.h +1 -1
  1544. data/src/core/load_balancing/oob_backend_metric_internal.h +12 -14
  1545. data/src/core/load_balancing/outlier_detection/outlier_detection.cc +170 -215
  1546. data/src/core/load_balancing/outlier_detection/outlier_detection.h +5 -7
  1547. data/src/core/load_balancing/pick_first/pick_first.cc +1231 -408
  1548. data/src/core/load_balancing/priority/priority.cc +114 -152
  1549. data/src/core/load_balancing/ring_hash/ring_hash.cc +93 -100
  1550. data/src/core/load_balancing/ring_hash/ring_hash.h +6 -7
  1551. data/src/core/load_balancing/rls/rls.cc +515 -390
  1552. data/src/core/load_balancing/rls/rls.h +26 -0
  1553. data/src/core/load_balancing/round_robin/round_robin.cc +87 -558
  1554. data/src/core/load_balancing/subchannel_interface.h +18 -7
  1555. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +5 -6
  1556. data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +1 -2
  1557. data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +239 -1041
  1558. data/src/core/load_balancing/weighted_target/weighted_target.cc +90 -123
  1559. data/src/core/load_balancing/weighted_target/weighted_target.h +28 -0
  1560. data/src/core/load_balancing/xds/cds.cc +69 -86
  1561. data/src/core/load_balancing/xds/xds_cluster_impl.cc +256 -187
  1562. data/src/core/load_balancing/xds/xds_cluster_manager.cc +58 -91
  1563. data/src/core/load_balancing/xds/xds_override_host.cc +137 -199
  1564. data/src/core/load_balancing/xds/xds_override_host.h +6 -7
  1565. data/src/core/load_balancing/xds/xds_wrr_locality.cc +44 -54
  1566. data/src/core/plugin_registry/grpc_plugin_registry.cc +27 -15
  1567. data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +6 -3
  1568. data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +95 -70
  1569. data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +0 -1
  1570. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +3 -5
  1571. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +8 -11
  1572. data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +156 -137
  1573. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +177 -162
  1574. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +3 -18
  1575. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +1 -1
  1576. data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -2
  1577. data/src/core/resolver/dns/dns_resolver_plugin.cc +11 -13
  1578. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +58 -65
  1579. data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +5 -4
  1580. data/src/core/resolver/dns/event_engine/service_config_helper.cc +8 -10
  1581. data/src/core/resolver/dns/native/dns_resolver.cc +23 -33
  1582. data/src/core/resolver/endpoint_addresses.cc +5 -8
  1583. data/src/core/resolver/endpoint_addresses.h +7 -5
  1584. data/src/core/resolver/fake/fake_resolver.cc +11 -13
  1585. data/src/core/resolver/fake/fake_resolver.h +7 -9
  1586. data/src/core/resolver/google_c2p/google_c2p_resolver.cc +37 -34
  1587. data/src/core/resolver/polling_resolver.cc +42 -58
  1588. data/src/core/resolver/polling_resolver.h +6 -8
  1589. data/src/core/resolver/resolver.cc +3 -7
  1590. data/src/core/resolver/resolver.h +2 -8
  1591. data/src/core/resolver/resolver_factory.h +2 -3
  1592. data/src/core/resolver/resolver_registry.cc +12 -14
  1593. data/src/core/resolver/resolver_registry.h +4 -5
  1594. data/src/core/resolver/sockaddr/sockaddr_resolver.cc +11 -13
  1595. data/src/core/resolver/xds/xds_config.cc +95 -0
  1596. data/src/core/resolver/xds/xds_config.h +108 -0
  1597. data/src/core/resolver/xds/xds_dependency_manager.cc +99 -182
  1598. data/src/core/resolver/xds/xds_dependency_manager.h +16 -81
  1599. data/src/core/resolver/xds/xds_resolver.cc +156 -141
  1600. data/src/core/resolver/xds/xds_resolver_attributes.h +7 -4
  1601. data/src/core/server/server.cc +1930 -0
  1602. data/src/core/server/server.h +570 -0
  1603. data/src/core/server/server_call_tracer_filter.cc +117 -0
  1604. data/src/core/server/server_call_tracer_filter.h +28 -0
  1605. data/src/core/server/server_config_selector.h +82 -0
  1606. data/src/core/server/server_config_selector_filter.cc +175 -0
  1607. data/src/core/server/server_config_selector_filter.h +33 -0
  1608. data/src/core/server/server_interface.h +45 -0
  1609. data/src/core/server/xds_channel_stack_modifier.cc +107 -0
  1610. data/src/core/server/xds_channel_stack_modifier.h +62 -0
  1611. data/src/core/server/xds_server_config_fetcher.cc +1384 -0
  1612. data/src/core/service_config/service_config.h +3 -6
  1613. data/src/core/service_config/service_config_call_data.h +20 -19
  1614. data/src/core/service_config/service_config_channel_arg_filter.cc +139 -0
  1615. data/src/core/service_config/service_config_impl.cc +8 -10
  1616. data/src/core/service_config/service_config_impl.h +6 -9
  1617. data/src/core/service_config/service_config_parser.cc +4 -9
  1618. data/src/core/service_config/service_config_parser.h +3 -5
  1619. data/src/core/telemetry/call_tracer.cc +386 -0
  1620. data/src/core/telemetry/call_tracer.h +263 -0
  1621. data/src/core/telemetry/histogram_view.cc +69 -0
  1622. data/src/core/telemetry/histogram_view.h +36 -0
  1623. data/src/core/telemetry/metrics.cc +177 -0
  1624. data/src/core/telemetry/metrics.h +565 -0
  1625. data/src/core/telemetry/stats.cc +67 -0
  1626. data/src/core/telemetry/stats.h +62 -0
  1627. data/src/core/telemetry/stats_data.cc +837 -0
  1628. data/src/core/telemetry/stats_data.h +644 -0
  1629. data/src/core/telemetry/tcp_tracer.h +143 -0
  1630. data/src/core/tsi/alts/crypt/aes_gcm.cc +4 -8
  1631. data/src/core/tsi/alts/crypt/gsec.cc +2 -4
  1632. data/src/core/tsi/alts/crypt/gsec.h +3 -5
  1633. data/src/core/tsi/alts/frame_protector/alts_counter.cc +2 -4
  1634. data/src/core/tsi/alts/frame_protector/alts_counter.h +1 -3
  1635. data/src/core/tsi/alts/frame_protector/alts_crypter.cc +2 -4
  1636. data/src/core/tsi/alts/frame_protector/alts_crypter.h +1 -3
  1637. data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +16 -19
  1638. data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +0 -1
  1639. data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +1 -2
  1640. data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +1 -2
  1641. data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +1 -2
  1642. data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +1 -2
  1643. data/src/core/tsi/alts/frame_protector/frame_handler.cc +11 -13
  1644. data/src/core/tsi/alts/frame_protector/frame_handler.h +0 -1
  1645. data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +84 -86
  1646. data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +1 -2
  1647. data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +5 -6
  1648. data/src/core/tsi/alts/handshaker/alts_shared_resource.h +2 -3
  1649. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +77 -76
  1650. data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -2
  1651. data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +6 -5
  1652. data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +1 -2
  1653. data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +17 -24
  1654. data/src/core/tsi/alts/handshaker/transport_security_common_api.h +2 -4
  1655. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +17 -19
  1656. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +0 -1
  1657. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +12 -14
  1658. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +0 -1
  1659. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +1 -2
  1660. data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +16 -14
  1661. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +3 -6
  1662. data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +0 -1
  1663. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +12 -15
  1664. data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +0 -1
  1665. data/src/core/tsi/fake_transport_security.cc +31 -34
  1666. data/src/core/tsi/local_transport_security.cc +9 -11
  1667. data/src/core/tsi/local_transport_security.h +1 -2
  1668. data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +14 -16
  1669. data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +7 -10
  1670. data/src/core/tsi/ssl/session_cache/ssl_session.h +3 -5
  1671. data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +16 -17
  1672. data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +8 -10
  1673. data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +4 -7
  1674. data/src/core/tsi/ssl_transport_security.cc +335 -191
  1675. data/src/core/tsi/ssl_transport_security.h +3 -6
  1676. data/src/core/tsi/ssl_transport_security_utils.cc +208 -27
  1677. data/src/core/tsi/ssl_transport_security_utils.h +39 -4
  1678. data/src/core/tsi/ssl_types.h +0 -1
  1679. data/src/core/tsi/transport_security.cc +3 -9
  1680. data/src/core/tsi/transport_security.h +0 -3
  1681. data/src/core/tsi/transport_security_grpc.cc +2 -2
  1682. data/src/core/tsi/transport_security_grpc.h +1 -2
  1683. data/src/core/tsi/transport_security_interface.h +0 -5
  1684. data/src/core/util/alloc.cc +69 -0
  1685. data/src/core/util/alloc.h +28 -0
  1686. data/src/core/util/atm.cc +34 -0
  1687. data/src/core/util/atomic_utils.h +47 -0
  1688. data/src/core/util/avl.h +324 -0
  1689. data/src/core/util/backoff.cc +46 -0
  1690. data/src/core/util/backoff.h +86 -0
  1691. data/src/core/util/bitset.h +224 -0
  1692. data/src/core/util/chunked_vector.h +256 -0
  1693. data/src/core/util/construct_destruct.h +41 -0
  1694. data/src/core/util/cpp_impl_of.h +49 -0
  1695. data/src/core/util/crash.cc +40 -0
  1696. data/src/core/util/crash.h +36 -0
  1697. data/src/core/util/debug_location.h +106 -0
  1698. data/src/core/util/directory_reader.h +48 -0
  1699. data/src/core/util/down_cast.h +48 -0
  1700. data/src/core/util/dual_ref_counted.h +376 -0
  1701. data/src/core/util/dump_args.cc +54 -0
  1702. data/src/core/util/dump_args.h +122 -0
  1703. data/src/core/util/env.h +53 -0
  1704. data/src/core/util/event_log.cc +87 -0
  1705. data/src/core/util/event_log.h +79 -0
  1706. data/src/core/util/examine_stack.cc +43 -0
  1707. data/src/core/util/examine_stack.h +45 -0
  1708. data/src/core/util/fork.cc +241 -0
  1709. data/src/core/util/fork.h +98 -0
  1710. data/src/core/util/gcp_metadata_query.cc +132 -0
  1711. data/src/core/util/gcp_metadata_query.h +86 -0
  1712. data/src/core/util/gethostname.h +26 -0
  1713. data/src/core/util/gethostname_fallback.cc +30 -0
  1714. data/src/core/util/gethostname_host_name_max.cc +39 -0
  1715. data/src/core/util/gethostname_sysconf.cc +39 -0
  1716. data/src/core/util/glob.cc +70 -0
  1717. data/src/core/util/glob.h +29 -0
  1718. data/src/core/util/gpr_time.cc +268 -0
  1719. data/src/core/util/grpc_if_nametoindex.h +29 -0
  1720. data/src/core/util/grpc_if_nametoindex_posix.cc +41 -0
  1721. data/src/core/util/grpc_if_nametoindex_unsupported.cc +36 -0
  1722. data/src/core/util/host_port.cc +114 -0
  1723. data/src/core/util/host_port.h +57 -0
  1724. data/src/core/util/http_client/format_request.cc +134 -0
  1725. data/src/core/util/http_client/format_request.h +37 -0
  1726. data/src/core/util/http_client/httpcli.cc +373 -0
  1727. data/src/core/util/http_client/httpcli.h +269 -0
  1728. data/src/core/util/http_client/httpcli_security_connector.cc +210 -0
  1729. data/src/core/util/http_client/httpcli_ssl_credentials.h +38 -0
  1730. data/src/core/util/http_client/parser.cc +447 -0
  1731. data/src/core/util/http_client/parser.h +126 -0
  1732. data/src/core/util/if_list.h +4530 -0
  1733. data/src/core/util/iphone/cpu.cc +43 -0
  1734. data/src/core/util/json/json.h +29 -0
  1735. data/src/core/util/json/json_args.h +34 -0
  1736. data/src/core/util/json/json_channel_args.h +41 -0
  1737. data/src/core/util/json/json_object_loader.cc +215 -0
  1738. data/src/core/util/json/json_object_loader.h +644 -0
  1739. data/src/core/util/json/json_reader.cc +953 -0
  1740. data/src/core/util/json/json_reader.h +33 -0
  1741. data/src/core/util/json/json_util.cc +101 -0
  1742. data/src/core/util/json/json_util.h +163 -0
  1743. data/src/core/util/json/json_writer.cc +337 -0
  1744. data/src/core/util/json/json_writer.h +33 -0
  1745. data/src/core/util/latent_see.cc +142 -0
  1746. data/src/core/util/latent_see.h +327 -0
  1747. data/src/core/util/linux/cpu.cc +86 -0
  1748. data/src/core/util/linux/env.cc +62 -0
  1749. data/src/core/util/load_file.cc +75 -0
  1750. data/src/core/util/load_file.h +33 -0
  1751. data/src/core/util/log.cc +127 -0
  1752. data/src/core/util/lru_cache.h +122 -0
  1753. data/src/core/util/manual_constructor.h +145 -0
  1754. data/src/core/util/match.h +74 -0
  1755. data/src/core/util/matchers.cc +337 -0
  1756. data/src/core/util/matchers.h +167 -0
  1757. data/src/core/util/memory.h +52 -0
  1758. data/src/core/util/mpscq.cc +108 -0
  1759. data/src/core/util/mpscq.h +98 -0
  1760. data/src/core/util/msys/tmpfile.cc +57 -0
  1761. data/src/core/util/no_destruct.h +95 -0
  1762. data/src/core/util/notification.h +66 -0
  1763. data/src/core/util/orphanable.h +153 -0
  1764. data/src/core/util/overload.h +59 -0
  1765. data/src/core/util/packed_table.h +40 -0
  1766. data/src/core/util/per_cpu.cc +34 -0
  1767. data/src/core/util/per_cpu.h +102 -0
  1768. data/src/core/util/posix/cpu.cc +83 -0
  1769. data/src/core/util/posix/directory_reader.cc +82 -0
  1770. data/src/core/util/posix/env.cc +47 -0
  1771. data/src/core/util/posix/stat.cc +54 -0
  1772. data/src/core/util/posix/string.cc +71 -0
  1773. data/src/core/util/posix/sync.cc +158 -0
  1774. data/src/core/util/posix/thd.cc +243 -0
  1775. data/src/core/util/posix/time.cc +123 -0
  1776. data/src/core/util/posix/tmpfile.cc +71 -0
  1777. data/src/core/util/random_early_detection.cc +33 -0
  1778. data/src/core/util/random_early_detection.h +61 -0
  1779. data/src/core/util/ref_counted.h +402 -0
  1780. data/src/core/util/ref_counted_ptr.h +443 -0
  1781. data/src/core/util/ref_counted_string.cc +42 -0
  1782. data/src/core/util/ref_counted_string.h +159 -0
  1783. data/src/core/util/ring_buffer.h +123 -0
  1784. data/src/core/util/single_set_ptr.h +89 -0
  1785. data/src/core/util/sorted_pack.h +89 -0
  1786. data/src/core/util/spinlock.h +51 -0
  1787. data/src/core/util/stat.h +35 -0
  1788. data/src/core/util/status_helper.cc +431 -0
  1789. data/src/core/util/status_helper.h +160 -0
  1790. data/src/core/util/strerror.cc +40 -0
  1791. data/src/core/util/strerror.h +29 -0
  1792. data/src/core/util/string.cc +341 -0
  1793. data/src/core/util/string.h +110 -0
  1794. data/src/core/util/sync.cc +123 -0
  1795. data/src/core/util/sync.h +199 -0
  1796. data/src/core/util/sync_abseil.cc +107 -0
  1797. data/src/core/util/table.h +486 -0
  1798. data/src/core/util/tchar.cc +49 -0
  1799. data/src/core/util/tchar.h +33 -0
  1800. data/src/core/util/thd.h +193 -0
  1801. data/src/core/util/time.cc +240 -0
  1802. data/src/core/util/time.h +385 -0
  1803. data/src/core/util/time_averaged_stats.cc +60 -0
  1804. data/src/core/util/time_averaged_stats.h +79 -0
  1805. data/src/core/util/time_precise.cc +168 -0
  1806. data/src/core/util/time_precise.h +68 -0
  1807. data/src/core/util/time_util.cc +80 -0
  1808. data/src/core/util/time_util.h +41 -0
  1809. data/src/core/util/tmpfile.h +31 -0
  1810. data/src/core/util/type_list.h +32 -0
  1811. data/src/core/util/unique_ptr_with_bitset.h +86 -0
  1812. data/src/core/util/unique_type_name.h +123 -0
  1813. data/src/core/util/upb_utils.h +43 -0
  1814. data/src/core/util/uri.cc +370 -0
  1815. data/src/core/util/uri.h +101 -0
  1816. data/src/core/util/useful.h +155 -0
  1817. data/src/core/util/uuid_v4.cc +37 -0
  1818. data/src/core/util/uuid_v4.h +35 -0
  1819. data/src/core/util/validation_errors.cc +73 -0
  1820. data/src/core/util/validation_errors.h +144 -0
  1821. data/src/core/util/windows/cpu.cc +34 -0
  1822. data/src/core/util/windows/directory_reader.cc +79 -0
  1823. data/src/core/util/windows/env.cc +56 -0
  1824. data/src/core/util/windows/stat.cc +50 -0
  1825. data/src/core/util/windows/string.cc +68 -0
  1826. data/src/core/util/windows/string_util.cc +53 -0
  1827. data/src/core/util/windows/sync.cc +122 -0
  1828. data/src/core/util/windows/thd.cc +182 -0
  1829. data/src/core/util/windows/time.cc +105 -0
  1830. data/src/core/util/windows/tmpfile.cc +66 -0
  1831. data/src/core/util/work_serializer.cc +538 -0
  1832. data/src/core/util/work_serializer.h +105 -0
  1833. data/src/core/util/xxhash_inline.h +29 -0
  1834. data/src/core/xds/grpc/certificate_provider_store.cc +153 -0
  1835. data/src/core/xds/grpc/certificate_provider_store.h +132 -0
  1836. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +136 -0
  1837. data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +80 -0
  1838. data/src/core/xds/grpc/xds_audit_logger_registry.cc +123 -0
  1839. data/src/core/xds/grpc/xds_audit_logger_registry.h +67 -0
  1840. data/src/core/xds/grpc/xds_bootstrap_grpc.cc +238 -0
  1841. data/src/core/xds/grpc/xds_bootstrap_grpc.h +167 -0
  1842. data/src/core/xds/grpc/xds_certificate_provider.cc +216 -0
  1843. data/src/core/xds/grpc/xds_certificate_provider.h +116 -0
  1844. data/src/core/xds/grpc/xds_client_grpc.cc +445 -0
  1845. data/src/core/xds/grpc/xds_client_grpc.h +115 -0
  1846. data/src/core/xds/grpc/xds_cluster.cc +79 -0
  1847. data/src/core/xds/grpc/xds_cluster.h +135 -0
  1848. data/src/core/xds/grpc/xds_cluster_parser.cc +772 -0
  1849. data/src/core/xds/grpc/xds_cluster_parser.h +61 -0
  1850. data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +137 -0
  1851. data/src/core/xds/grpc/xds_cluster_specifier_plugin.h +96 -0
  1852. data/src/core/xds/grpc/xds_common_types.cc +103 -0
  1853. data/src/core/xds/grpc/xds_common_types.h +90 -0
  1854. data/src/core/xds/grpc/xds_common_types_parser.cc +503 -0
  1855. data/src/core/xds/grpc/xds_common_types_parser.h +76 -0
  1856. data/src/core/xds/grpc/xds_endpoint.cc +97 -0
  1857. data/src/core/xds/grpc/xds_endpoint.h +128 -0
  1858. data/src/core/xds/grpc/xds_endpoint_parser.cc +444 -0
  1859. data/src/core/xds/grpc/xds_endpoint_parser.h +47 -0
  1860. data/src/core/xds/grpc/xds_health_status.cc +73 -0
  1861. data/src/core/xds/grpc/xds_health_status.h +88 -0
  1862. data/src/core/xds/grpc/xds_http_fault_filter.cc +249 -0
  1863. data/src/core/xds/grpc/xds_http_fault_filter.h +62 -0
  1864. data/src/core/xds/grpc/xds_http_filter.h +134 -0
  1865. data/src/core/xds/grpc/xds_http_filter_registry.cc +122 -0
  1866. data/src/core/xds/grpc/xds_http_filter_registry.h +104 -0
  1867. data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +141 -0
  1868. data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +60 -0
  1869. data/src/core/xds/grpc/xds_http_rbac_filter.cc +602 -0
  1870. data/src/core/xds/grpc/xds_http_rbac_filter.h +62 -0
  1871. data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +230 -0
  1872. data/src/core/xds/grpc/xds_http_stateful_session_filter.h +62 -0
  1873. data/src/core/xds/grpc/xds_lb_policy_registry.cc +365 -0
  1874. data/src/core/xds/grpc/xds_lb_policy_registry.h +70 -0
  1875. data/src/core/xds/grpc/xds_listener.cc +175 -0
  1876. data/src/core/xds/grpc/xds_listener.h +203 -0
  1877. data/src/core/xds/grpc/xds_listener_parser.cc +993 -0
  1878. data/src/core/xds/grpc/xds_listener_parser.h +59 -0
  1879. data/src/core/xds/grpc/xds_metadata.cc +62 -0
  1880. data/src/core/xds/grpc/xds_metadata.h +150 -0
  1881. data/src/core/xds/grpc/xds_metadata_parser.cc +184 -0
  1882. data/src/core/xds/grpc/xds_metadata_parser.h +35 -0
  1883. data/src/core/xds/grpc/xds_route_config.cc +281 -0
  1884. data/src/core/xds/grpc/xds_route_config.h +220 -0
  1885. data/src/core/xds/grpc/xds_route_config_parser.cc +962 -0
  1886. data/src/core/xds/grpc/xds_route_config_parser.h +77 -0
  1887. data/src/core/xds/grpc/xds_routing.cc +297 -0
  1888. data/src/core/xds/grpc/xds_routing.h +112 -0
  1889. data/src/core/xds/grpc/xds_server_grpc.cc +160 -0
  1890. data/src/core/xds/grpc/xds_server_grpc.h +63 -0
  1891. data/src/core/xds/grpc/xds_transport_grpc.cc +393 -0
  1892. data/src/core/xds/grpc/xds_transport_grpc.h +149 -0
  1893. data/src/core/xds/xds_client/lrs_client.cc +1292 -0
  1894. data/src/core/xds/xds_client/lrs_client.h +394 -0
  1895. data/src/core/xds/xds_client/xds_api.cc +353 -0
  1896. data/src/core/xds/xds_client/xds_api.h +166 -0
  1897. data/src/core/xds/xds_client/xds_backend_metric_propagation.cc +63 -0
  1898. data/src/core/xds/xds_client/xds_backend_metric_propagation.h +59 -0
  1899. data/src/core/xds/xds_client/xds_bootstrap.cc +37 -0
  1900. data/src/core/xds/xds_client/xds_bootstrap.h +88 -0
  1901. data/src/core/xds/xds_client/xds_channel_args.h +32 -0
  1902. data/src/core/xds/xds_client/xds_client.cc +1689 -0
  1903. data/src/core/xds/xds_client/xds_client.h +334 -0
  1904. data/src/core/xds/xds_client/xds_locality.h +102 -0
  1905. data/src/core/xds/xds_client/xds_metrics.h +41 -0
  1906. data/src/core/xds/xds_client/xds_resource_type.h +97 -0
  1907. data/src/core/xds/xds_client/xds_resource_type_impl.h +87 -0
  1908. data/src/core/xds/xds_client/xds_transport.h +104 -0
  1909. data/src/ruby/bin/math_pb.rb +1 -22
  1910. data/src/ruby/ext/grpc/extconf.rb +1 -4
  1911. data/src/ruby/ext/grpc/rb_byte_buffer.c +3 -3
  1912. data/src/ruby/ext/grpc/rb_call.c +15 -8
  1913. data/src/ruby/ext/grpc/rb_call_credentials.c +39 -32
  1914. data/src/ruby/ext/grpc/rb_call_credentials.h +1 -0
  1915. data/src/ruby/ext/grpc/rb_channel.c +42 -36
  1916. data/src/ruby/ext/grpc/rb_channel_args.c +4 -4
  1917. data/src/ruby/ext/grpc/rb_channel_credentials.c +5 -5
  1918. data/src/ruby/ext/grpc/rb_channel_credentials.h +1 -2
  1919. data/src/ruby/ext/grpc/rb_completion_queue.c +18 -36
  1920. data/src/ruby/ext/grpc/rb_completion_queue.h +7 -1
  1921. data/src/ruby/ext/grpc/rb_compression_options.c +9 -10
  1922. data/src/ruby/ext/grpc/rb_event_thread.c +9 -9
  1923. data/src/ruby/ext/grpc/rb_grpc.c +17 -16
  1924. data/src/ruby/ext/grpc/rb_grpc.h +7 -0
  1925. data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +136 -146
  1926. data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +205 -219
  1927. data/src/ruby/ext/grpc/rb_server.c +47 -27
  1928. data/src/ruby/ext/grpc/rb_server_credentials.c +4 -3
  1929. data/src/ruby/ext/grpc/rb_server_credentials.h +2 -2
  1930. data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +5 -5
  1931. data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +1 -2
  1932. data/src/ruby/ext/grpc/rb_xds_server_credentials.c +5 -4
  1933. data/src/ruby/ext/grpc/rb_xds_server_credentials.h +2 -2
  1934. data/src/ruby/lib/grpc/generic/active_call.rb +16 -7
  1935. data/src/ruby/lib/grpc/logconfig.rb +13 -0
  1936. data/src/ruby/lib/grpc/version.rb +1 -1
  1937. data/src/ruby/pb/grpc/health/v1/health_pb.rb +1 -22
  1938. data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +5 -5
  1939. data/src/ruby/pb/grpc/testing/metrics_pb.rb +10 -19
  1940. data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +5 -5
  1941. data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -22
  1942. data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +1 -22
  1943. data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -22
  1944. data/src/ruby/spec/call_spec.rb +53 -40
  1945. data/src/ruby/spec/channel_spec.rb +4 -2
  1946. data/src/ruby/spec/client_server_spec.rb +148 -507
  1947. data/src/ruby/spec/generic/active_call_spec.rb +64 -86
  1948. data/src/ruby/spec/generic/client_stub_spec.rb +20 -20
  1949. data/src/ruby/spec/generic/rpc_server_spec.rb +25 -0
  1950. data/src/ruby/spec/logconfig_spec.rb +30 -0
  1951. data/src/ruby/spec/support/services.rb +3 -0
  1952. data/third_party/abseil-cpp/absl/algorithm/container.h +57 -18
  1953. data/third_party/abseil-cpp/absl/base/attributes.h +84 -0
  1954. data/third_party/abseil-cpp/absl/base/config.h +32 -51
  1955. data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +0 -16
  1956. data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +3 -1
  1957. data/third_party/abseil-cpp/absl/base/internal/spinlock.h +13 -3
  1958. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -12
  1959. data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +4 -4
  1960. data/third_party/abseil-cpp/absl/base/macros.h +48 -0
  1961. data/third_party/abseil-cpp/absl/base/no_destructor.h +35 -40
  1962. data/third_party/abseil-cpp/absl/base/nullability.h +33 -7
  1963. data/third_party/abseil-cpp/absl/base/optimization.h +11 -0
  1964. data/third_party/abseil-cpp/absl/base/options.h +1 -1
  1965. data/third_party/abseil-cpp/absl/base/prefetch.h +1 -1
  1966. data/third_party/abseil-cpp/absl/container/flat_hash_map.h +68 -12
  1967. data/third_party/abseil-cpp/absl/container/flat_hash_set.h +60 -6
  1968. data/third_party/abseil-cpp/absl/container/hash_container_defaults.h +45 -0
  1969. data/third_party/abseil-cpp/absl/container/inlined_vector.h +13 -0
  1970. data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +20 -11
  1971. data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +15 -16
  1972. data/third_party/abseil-cpp/absl/container/internal/container_memory.h +34 -1
  1973. data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +68 -1
  1974. data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +50 -0
  1975. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +22 -7
  1976. data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +26 -8
  1977. data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +39 -35
  1978. data/third_party/abseil-cpp/absl/container/internal/layout.h +190 -74
  1979. data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +8 -6
  1980. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +334 -71
  1981. data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1299 -458
  1982. data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +19 -17
  1983. data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +4 -3
  1984. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +2 -1
  1985. data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +12 -8
  1986. data/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +1 -1
  1987. data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +11 -7
  1988. data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +18 -17
  1989. data/third_party/abseil-cpp/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
  1990. data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +258 -0
  1991. data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +55 -0
  1992. data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1057 -86
  1993. data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +3 -0
  1994. data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +925 -0
  1995. data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.h +42 -0
  1996. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +43 -16
  1997. data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +8 -7
  1998. data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc +320 -0
  1999. data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.h +64 -0
  2000. data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +10 -7
  2001. data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.cc +70 -0
  2002. data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.h +47 -0
  2003. data/third_party/abseil-cpp/absl/flags/commandlineflag.h +11 -0
  2004. data/third_party/abseil-cpp/absl/flags/flag.h +2 -0
  2005. data/third_party/abseil-cpp/absl/flags/internal/flag.cc +117 -30
  2006. data/third_party/abseil-cpp/absl/flags/internal/flag.h +192 -30
  2007. data/third_party/abseil-cpp/absl/flags/reflection.cc +10 -0
  2008. data/third_party/abseil-cpp/absl/functional/any_invocable.h +13 -3
  2009. data/third_party/abseil-cpp/absl/functional/bind_front.h +3 -2
  2010. data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +7 -7
  2011. data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +9 -9
  2012. data/third_party/abseil-cpp/absl/hash/internal/hash.cc +1 -1
  2013. data/third_party/abseil-cpp/absl/hash/internal/hash.h +13 -3
  2014. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +60 -28
  2015. data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +4 -0
  2016. data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +93 -0
  2017. data/third_party/abseil-cpp/absl/log/check.h +209 -0
  2018. data/third_party/abseil-cpp/absl/log/globals.cc +178 -0
  2019. data/third_party/abseil-cpp/absl/log/globals.h +231 -0
  2020. data/third_party/abseil-cpp/absl/log/internal/append_truncated.h +47 -0
  2021. data/third_party/abseil-cpp/absl/log/internal/check_impl.h +150 -0
  2022. data/third_party/abseil-cpp/absl/log/internal/check_op.cc +138 -0
  2023. data/third_party/abseil-cpp/absl/log/internal/check_op.h +462 -0
  2024. data/third_party/abseil-cpp/absl/log/internal/conditions.cc +83 -0
  2025. data/third_party/abseil-cpp/absl/log/internal/conditions.h +239 -0
  2026. data/third_party/abseil-cpp/absl/log/internal/config.h +45 -0
  2027. data/third_party/abseil-cpp/absl/log/internal/fnmatch.cc +73 -0
  2028. data/third_party/abseil-cpp/absl/log/internal/fnmatch.h +35 -0
  2029. data/third_party/abseil-cpp/absl/log/internal/globals.cc +145 -0
  2030. data/third_party/abseil-cpp/absl/log/internal/globals.h +101 -0
  2031. data/third_party/abseil-cpp/absl/log/internal/log_format.cc +205 -0
  2032. data/third_party/abseil-cpp/absl/log/internal/log_format.h +78 -0
  2033. data/third_party/abseil-cpp/absl/log/internal/log_impl.h +282 -0
  2034. data/third_party/abseil-cpp/absl/log/internal/log_message.cc +690 -0
  2035. data/third_party/abseil-cpp/absl/log/internal/log_message.h +394 -0
  2036. data/third_party/abseil-cpp/absl/log/internal/log_sink_set.cc +296 -0
  2037. data/third_party/abseil-cpp/absl/log/internal/log_sink_set.h +54 -0
  2038. data/third_party/abseil-cpp/absl/log/internal/nullguard.cc +35 -0
  2039. data/third_party/abseil-cpp/absl/log/internal/nullguard.h +88 -0
  2040. data/third_party/abseil-cpp/absl/log/internal/nullstream.h +127 -0
  2041. data/third_party/abseil-cpp/absl/log/internal/proto.cc +220 -0
  2042. data/third_party/abseil-cpp/absl/log/internal/proto.h +288 -0
  2043. data/third_party/abseil-cpp/absl/log/internal/strip.h +108 -0
  2044. data/third_party/abseil-cpp/absl/log/internal/vlog_config.cc +340 -0
  2045. data/third_party/abseil-cpp/absl/log/internal/vlog_config.h +163 -0
  2046. data/third_party/abseil-cpp/absl/log/internal/voidify.h +44 -0
  2047. data/third_party/abseil-cpp/absl/log/log.h +365 -0
  2048. data/third_party/abseil-cpp/absl/log/log_entry.cc +41 -0
  2049. data/third_party/abseil-cpp/absl/log/log_entry.h +221 -0
  2050. data/third_party/abseil-cpp/absl/log/log_sink.cc +23 -0
  2051. data/third_party/abseil-cpp/absl/log/log_sink.h +71 -0
  2052. data/third_party/abseil-cpp/absl/log/log_sink_registry.h +61 -0
  2053. data/third_party/abseil-cpp/absl/log/vlog_is_on.h +72 -0
  2054. data/third_party/abseil-cpp/absl/meta/type_traits.h +138 -42
  2055. data/third_party/abseil-cpp/absl/numeric/int128.cc +0 -3
  2056. data/third_party/abseil-cpp/absl/numeric/int128.h +35 -5
  2057. data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +14 -0
  2058. data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +18 -0
  2059. data/third_party/abseil-cpp/absl/numeric/internal/bits.h +6 -2
  2060. data/third_party/abseil-cpp/absl/random/beta_distribution.h +8 -8
  2061. data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +9 -7
  2062. data/third_party/abseil-cpp/absl/random/distributions.h +11 -11
  2063. data/third_party/abseil-cpp/absl/random/seed_sequences.h +2 -0
  2064. data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +61 -2
  2065. data/third_party/abseil-cpp/absl/status/status.cc +0 -4
  2066. data/third_party/abseil-cpp/absl/status/status.h +4 -4
  2067. data/third_party/abseil-cpp/absl/status/statusor.h +108 -142
  2068. data/third_party/abseil-cpp/absl/strings/ascii.cc +32 -71
  2069. data/third_party/abseil-cpp/absl/strings/cord.cc +20 -15
  2070. data/third_party/abseil-cpp/absl/strings/cord.h +68 -7
  2071. data/third_party/abseil-cpp/absl/strings/escaping.cc +96 -21
  2072. data/third_party/abseil-cpp/absl/strings/escaping.h +25 -8
  2073. data/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +1 -0
  2074. data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +10 -0
  2075. data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +29 -9
  2076. data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +2 -2
  2077. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +19 -13
  2078. data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +23 -13
  2079. data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +24 -24
  2080. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +12 -7
  2081. data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +9 -4
  2082. data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +5 -2
  2083. data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +23 -2
  2084. data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +5 -1
  2085. data/third_party/abseil-cpp/absl/strings/numbers.cc +107 -333
  2086. data/third_party/abseil-cpp/absl/strings/numbers.h +12 -151
  2087. data/third_party/abseil-cpp/absl/strings/str_cat.cc +49 -142
  2088. data/third_party/abseil-cpp/absl/strings/str_cat.h +70 -85
  2089. data/third_party/abseil-cpp/absl/strings/str_format.h +1 -1
  2090. data/third_party/abseil-cpp/absl/strings/str_join.h +19 -5
  2091. data/third_party/abseil-cpp/absl/strings/str_split.h +2 -2
  2092. data/third_party/abseil-cpp/absl/strings/string_view.h +3 -2
  2093. data/third_party/abseil-cpp/absl/strings/substitute.cc +4 -0
  2094. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -2
  2095. data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +5 -0
  2096. data/third_party/abseil-cpp/absl/synchronization/mutex.h +5 -4
  2097. data/third_party/abseil-cpp/absl/time/civil_time.h +2 -2
  2098. data/third_party/abseil-cpp/absl/time/clock.cc +15 -1
  2099. data/third_party/abseil-cpp/absl/time/duration.cc +58 -53
  2100. data/third_party/abseil-cpp/absl/time/format.cc +2 -1
  2101. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
  2102. data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +0 -29
  2103. data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +3 -3
  2104. data/third_party/abseil-cpp/absl/time/time.h +73 -29
  2105. data/third_party/abseil-cpp/absl/types/compare.h +505 -0
  2106. data/third_party/abseil-cpp/absl/types/internal/optional.h +2 -2
  2107. data/third_party/abseil-cpp/absl/types/internal/variant.h +55 -67
  2108. data/third_party/abseil-cpp/absl/types/optional.h +15 -18
  2109. data/third_party/abseil-cpp/absl/types/span.h +3 -2
  2110. data/third_party/abseil-cpp/absl/types/variant.h +19 -24
  2111. data/third_party/abseil-cpp/absl/utility/utility.h +3 -41
  2112. data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +1 -7
  2113. data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +50 -39
  2114. data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +4 -0
  2115. data/third_party/boringssl-with-bazel/src/crypto/bcm_support.h +113 -0
  2116. data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +15 -20
  2117. data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +25 -10
  2118. data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +3 -18
  2119. data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +3 -2
  2120. data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +1 -1
  2121. data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +19 -15
  2122. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +7 -0
  2123. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +63 -94
  2124. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +7 -3
  2125. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +20 -28
  2126. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +9 -4
  2127. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +43 -0
  2128. data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +2 -2
  2129. data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +66 -41
  2130. data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +4 -1
  2131. data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +71 -37
  2132. data/third_party/boringssl-with-bazel/src/crypto/crypto.c +8 -62
  2133. data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +7 -7
  2134. data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +1 -1
  2135. data/third_party/boringssl-with-bazel/src/crypto/des/des.c +45 -32
  2136. data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +24 -0
  2137. data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +1 -0
  2138. data/third_party/boringssl-with-bazel/src/crypto/dilithium/dilithium.c +1539 -0
  2139. data/third_party/boringssl-with-bazel/src/crypto/dilithium/internal.h +58 -0
  2140. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +36 -20
  2141. data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +3 -4
  2142. data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +2 -0
  2143. data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +160 -14
  2144. data/third_party/boringssl-with-bazel/src/crypto/err/err.c +81 -60
  2145. data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +41 -120
  2146. data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +13 -13
  2147. data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +7 -0
  2148. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.c +137 -0
  2149. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.c +120 -0
  2150. data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +30 -0
  2151. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +3 -4
  2152. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +30 -0
  2153. data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +1 -4
  2154. data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +30 -0
  2155. data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +1 -4
  2156. data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +6 -7
  2157. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c.inc +127 -0
  2158. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +33 -7
  2159. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +84 -80
  2160. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +89 -0
  2161. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c.inc +267 -0
  2162. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c.inc +876 -0
  2163. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c.inc +87 -0
  2164. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c.inc +1320 -0
  2165. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c.inc +331 -0
  2166. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +33 -23
  2167. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c.inc +222 -0
  2168. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c.inc +744 -0
  2169. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c.inc +1077 -0
  2170. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c.inc +354 -0
  2171. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c.inc +499 -0
  2172. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c.inc +1464 -0
  2173. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +0 -3
  2174. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c.inc +561 -0
  2175. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c.inc +734 -0
  2176. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +65 -8
  2177. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c.inc +173 -0
  2178. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c.inc +317 -0
  2179. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +28 -11
  2180. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +3 -6
  2181. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -80
  2182. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c.inc +479 -0
  2183. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c.inc +420 -0
  2184. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c.inc +1038 -0
  2185. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c.inc +1351 -0
  2186. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c.inc +121 -0
  2187. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c.inc +1038 -0
  2188. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +2 -2
  2189. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c.inc +328 -0
  2190. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +78 -29
  2191. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c.inc +439 -0
  2192. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c.inc +359 -0
  2193. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c.inc +543 -0
  2194. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c.inc +218 -0
  2195. data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +295 -2
  2196. data/third_party/boringssl-with-bazel/src/crypto/internal.h +143 -45
  2197. data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +1 -1
  2198. data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +2 -1
  2199. data/third_party/boringssl-with-bazel/src/crypto/mem.c +25 -12
  2200. data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +73 -0
  2201. data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +1687 -0
  2202. data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +90 -0
  2203. data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +1097 -0
  2204. data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +4 -1
  2205. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +19 -19
  2206. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +43 -41
  2207. data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +13 -12
  2208. data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +1 -0
  2209. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +9 -1
  2210. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fork_detect.c +195 -0
  2211. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +9 -1
  2212. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +9 -1
  2213. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +19 -3
  2214. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +26 -23
  2215. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +37 -0
  2216. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +9 -1
  2217. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/urandom.c +328 -0
  2218. data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +8 -1
  2219. data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +2 -0
  2220. data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +7 -6
  2221. data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +26 -33
  2222. data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +1 -1
  2223. data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +8 -5
  2224. data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +5 -1
  2225. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.c +9 -4
  2226. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.c +2 -2
  2227. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.c +1 -1
  2228. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.c +2 -0
  2229. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c +40 -61
  2230. data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +49 -16
  2231. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +24 -17
  2232. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +51 -78
  2233. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +12 -29
  2234. data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +13 -2
  2235. data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +2 -2
  2236. data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +1 -6
  2237. data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.c +1514 -0
  2238. data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +24 -11
  2239. data/third_party/boringssl-with-bazel/src/include/openssl/base.h +10 -2
  2240. data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +88 -45
  2241. data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
  2242. data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +12 -4
  2243. data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +10 -11
  2244. data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +17 -1
  2245. data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +10 -3
  2246. data/third_party/boringssl-with-bazel/src/include/openssl/err.h +13 -0
  2247. data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +25 -14
  2248. data/third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h +1 -0
  2249. data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +15 -3
  2250. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +129 -0
  2251. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +146 -0
  2252. data/third_party/boringssl-with-bazel/src/include/openssl/experimental/spx.h +90 -0
  2253. data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +8 -6
  2254. data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +136 -0
  2255. data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +246 -0
  2256. data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +3 -0
  2257. data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +2 -2
  2258. data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +66 -57
  2259. data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +6 -0
  2260. data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +19 -10
  2261. data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +19 -10
  2262. data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +2 -2
  2263. data/third_party/boringssl-with-bazel/src/include/openssl/span.h +62 -12
  2264. data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +409 -111
  2265. data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +10 -3
  2266. data/third_party/boringssl-with-bazel/src/include/openssl/target.h +13 -10
  2267. data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +2 -2
  2268. data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2927 -2394
  2269. data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +9 -12
  2270. data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +6 -0
  2271. data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +10 -5
  2272. data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +14 -2
  2273. data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +301 -66
  2274. data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +3 -9
  2275. data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +66 -58
  2276. data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +1 -1
  2277. data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +17 -7
  2278. data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +138 -54
  2279. data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +159 -117
  2280. data/third_party/boringssl-with-bazel/src/ssl/internal.h +349 -202
  2281. data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +45 -17
  2282. data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +0 -1
  2283. data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -1
  2284. data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +86 -1
  2285. data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +7 -4
  2286. data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +66 -385
  2287. data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +21 -19
  2288. data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +423 -0
  2289. data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +2 -2
  2290. data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +99 -4
  2291. data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +139 -83
  2292. data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +116 -93
  2293. data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +6 -14
  2294. data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +7 -1
  2295. data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +48 -116
  2296. data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +21 -27
  2297. data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +54 -7
  2298. data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +96 -34
  2299. data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +68 -23
  2300. data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +4 -24
  2301. data/third_party/upb/upb/base/descriptor_constants.h +29 -2
  2302. data/third_party/upb/upb/base/internal/endian.h +46 -0
  2303. data/third_party/upb/upb/base/status.h +1 -1
  2304. data/third_party/upb/upb/base/status.hpp +5 -1
  2305. data/third_party/upb/upb/base/string_view.h +7 -5
  2306. data/third_party/upb/upb/base/upcast.h +29 -0
  2307. data/third_party/upb/upb/generated_code_support.h +2 -1
  2308. data/third_party/upb/upb/json/decode.c +124 -56
  2309. data/third_party/upb/upb/json/decode.h +3 -26
  2310. data/third_party/upb/upb/json/encode.c +5 -28
  2311. data/third_party/upb/upb/json/encode.h +3 -26
  2312. data/third_party/upb/upb/lex/round_trip.c +10 -0
  2313. data/third_party/upb/upb/mem/arena.c +311 -108
  2314. data/third_party/upb/upb/mem/arena.h +27 -68
  2315. data/third_party/upb/upb/mem/arena.hpp +13 -5
  2316. data/third_party/upb/upb/mem/internal/arena.h +78 -57
  2317. data/third_party/upb/upb/message/accessors.c +17 -45
  2318. data/third_party/upb/upb/message/accessors.h +201 -314
  2319. data/third_party/upb/upb/message/array.c +78 -83
  2320. data/third_party/upb/upb/message/array.h +26 -30
  2321. data/third_party/upb/upb/message/compat.c +39 -0
  2322. data/third_party/upb/upb/message/compat.h +41 -0
  2323. data/third_party/upb/upb/message/copy.c +325 -0
  2324. data/third_party/upb/upb/message/copy.h +56 -0
  2325. data/third_party/upb/upb/message/internal/accessors.h +731 -176
  2326. data/third_party/upb/upb/message/internal/array.h +86 -79
  2327. data/third_party/upb/upb/message/internal/compare_unknown.c +289 -0
  2328. data/third_party/upb/upb/message/internal/compare_unknown.h +49 -0
  2329. data/third_party/upb/upb/message/internal/extension.c +63 -0
  2330. data/third_party/upb/upb/message/internal/extension.h +14 -17
  2331. data/third_party/upb/upb/message/internal/map.h +43 -41
  2332. data/third_party/upb/upb/message/internal/map_entry.h +14 -39
  2333. data/third_party/upb/upb/message/internal/map_sorter.h +19 -39
  2334. data/third_party/upb/upb/message/internal/message.c +75 -0
  2335. data/third_party/upb/upb/message/internal/message.h +36 -41
  2336. data/third_party/upb/upb/message/internal/tagged_ptr.h +56 -0
  2337. data/third_party/upb/upb/message/internal/types.h +46 -11
  2338. data/third_party/upb/upb/message/map.c +28 -26
  2339. data/third_party/upb/upb/message/map.h +16 -40
  2340. data/third_party/upb/upb/message/map_gencode_util.h +3 -26
  2341. data/third_party/upb/upb/message/map_sorter.c +22 -34
  2342. data/third_party/upb/upb/message/merge.c +38 -0
  2343. data/third_party/upb/upb/message/merge.h +26 -0
  2344. data/third_party/upb/upb/message/message.c +106 -103
  2345. data/third_party/upb/upb/message/message.h +19 -8
  2346. data/third_party/upb/upb/message/tagged_ptr.h +15 -36
  2347. data/third_party/upb/upb/message/value.h +29 -5
  2348. data/third_party/upb/upb/mini_descriptor/build_enum.c +23 -14
  2349. data/third_party/upb/upb/mini_descriptor/build_enum.h +6 -14
  2350. data/third_party/upb/upb/mini_descriptor/decode.c +145 -109
  2351. data/third_party/upb/upb/mini_descriptor/decode.h +3 -8
  2352. data/third_party/upb/upb/mini_descriptor/link.c +47 -33
  2353. data/third_party/upb/upb/mini_descriptor/link.h +1 -1
  2354. data/third_party/upb/upb/mini_table/enum.h +4 -8
  2355. data/third_party/upb/upb/mini_table/extension.h +29 -0
  2356. data/third_party/upb/upb/mini_table/extension_registry.c +27 -2
  2357. data/third_party/upb/upb/mini_table/extension_registry.h +17 -0
  2358. data/third_party/upb/upb/mini_table/field.h +28 -68
  2359. data/third_party/upb/upb/mini_table/file.h +31 -0
  2360. data/third_party/upb/upb/mini_table/internal/enum.h +19 -20
  2361. data/third_party/upb/upb/mini_table/internal/extension.h +43 -3
  2362. data/third_party/upb/upb/mini_table/internal/field.h +137 -28
  2363. data/third_party/upb/upb/mini_table/internal/file.h +47 -10
  2364. data/third_party/upb/upb/mini_table/internal/message.c +37 -9
  2365. data/third_party/upb/upb/mini_table/internal/message.h +138 -23
  2366. data/third_party/upb/upb/mini_table/internal/size_log2.h +77 -0
  2367. data/third_party/upb/upb/mini_table/internal/sub.h +44 -4
  2368. data/third_party/upb/upb/mini_table/message.c +18 -19
  2369. data/third_party/upb/upb/mini_table/message.h +35 -25
  2370. data/third_party/upb/upb/mini_table/sub.h +32 -1
  2371. data/third_party/upb/upb/port/def.inc +101 -6
  2372. data/third_party/upb/upb/port/undef.inc +8 -1
  2373. data/third_party/upb/upb/reflection/def.hpp +42 -3
  2374. data/third_party/upb/upb/reflection/def_pool.c +81 -2
  2375. data/third_party/upb/upb/reflection/def_pool.h +10 -2
  2376. data/third_party/upb/upb/reflection/enum_def.c +46 -19
  2377. data/third_party/upb/upb/reflection/enum_def.h +2 -0
  2378. data/third_party/upb/upb/reflection/enum_value_def.c +38 -14
  2379. data/third_party/upb/upb/reflection/enum_value_def.h +2 -0
  2380. data/third_party/upb/upb/reflection/extension_range.c +13 -5
  2381. data/third_party/upb/upb/reflection/extension_range.h +2 -0
  2382. data/third_party/upb/upb/reflection/field_def.c +225 -138
  2383. data/third_party/upb/upb/reflection/field_def.h +14 -1
  2384. data/third_party/upb/upb/reflection/file_def.c +124 -9
  2385. data/third_party/upb/upb/reflection/file_def.h +6 -0
  2386. data/third_party/upb/upb/reflection/internal/def_builder.c +85 -7
  2387. data/third_party/upb/upb/reflection/internal/def_builder.h +23 -0
  2388. data/third_party/upb/upb/reflection/internal/enum_def.h +5 -4
  2389. data/third_party/upb/upb/reflection/internal/enum_reserved_range.h +1 -1
  2390. data/third_party/upb/upb/reflection/internal/enum_value_def.h +2 -1
  2391. data/third_party/upb/upb/reflection/internal/extension_range.h +2 -2
  2392. data/third_party/upb/upb/reflection/internal/field_def.h +11 -10
  2393. data/third_party/upb/upb/reflection/internal/message_def.h +6 -3
  2394. data/third_party/upb/upb/reflection/internal/method_def.h +5 -3
  2395. data/third_party/upb/upb/reflection/internal/oneof_def.h +5 -3
  2396. data/third_party/upb/upb/reflection/internal/service_def.h +5 -3
  2397. data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +20 -0
  2398. data/third_party/upb/upb/reflection/message.c +52 -20
  2399. data/third_party/upb/upb/reflection/message.h +7 -7
  2400. data/third_party/upb/upb/reflection/message_def.c +68 -34
  2401. data/third_party/upb/upb/reflection/message_def.h +2 -0
  2402. data/third_party/upb/upb/reflection/method_def.c +20 -9
  2403. data/third_party/upb/upb/reflection/method_def.h +10 -7
  2404. data/third_party/upb/upb/reflection/oneof_def.c +20 -11
  2405. data/third_party/upb/upb/reflection/oneof_def.h +3 -1
  2406. data/third_party/upb/upb/reflection/service_def.c +25 -13
  2407. data/third_party/upb/upb/reflection/service_def.h +8 -5
  2408. data/third_party/upb/upb/text/encode.c +72 -311
  2409. data/third_party/upb/upb/text/encode.h +1 -11
  2410. data/third_party/upb/upb/text/internal/encode.c +180 -0
  2411. data/third_party/upb/upb/text/internal/encode.h +240 -0
  2412. data/third_party/upb/upb/text/options.h +22 -0
  2413. data/third_party/upb/upb/wire/decode.c +353 -269
  2414. data/third_party/upb/upb/wire/decode.h +24 -1
  2415. data/third_party/upb/upb/wire/encode.c +160 -105
  2416. data/third_party/upb/upb/wire/encode.h +16 -4
  2417. data/third_party/upb/upb/wire/eps_copy_input_stream.h +3 -3
  2418. data/third_party/upb/upb/wire/internal/decode_fast.c +1000 -0
  2419. data/third_party/upb/upb/wire/internal/decode_fast.h +148 -0
  2420. data/third_party/upb/upb/wire/internal/decoder.h +127 -0
  2421. data/third_party/upb/upb/wire/internal/reader.h +61 -0
  2422. data/third_party/upb/upb/wire/reader.c +10 -8
  2423. data/third_party/upb/upb/wire/reader.h +20 -53
  2424. data/third_party/utf8_range/utf8_range.c +467 -0
  2425. data/third_party/utf8_range/utf8_range.h +9 -8
  2426. metadata +528 -389
  2427. data/src/core/client_channel/backend_metric.cc +0 -95
  2428. data/src/core/client_channel/backend_metric.h +0 -47
  2429. data/src/core/client_channel/channel_connectivity.cc +0 -265
  2430. data/src/core/client_channel/client_channel_channelz.cc +0 -93
  2431. data/src/core/client_channel/client_channel_channelz.h +0 -85
  2432. data/src/core/client_channel/config_selector.cc +0 -60
  2433. data/src/core/client_channel/http_proxy_mapper.cc +0 -305
  2434. data/src/core/client_channel/http_proxy_mapper.h +0 -53
  2435. data/src/core/client_channel/service_config_channel_arg_filter.cc +0 -136
  2436. data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +0 -318
  2437. data/src/core/ext/filters/channel_idle/channel_idle_filter.h +0 -150
  2438. data/src/core/ext/filters/deadline/deadline_filter.cc +0 -407
  2439. data/src/core/ext/filters/deadline/deadline_filter.h +0 -85
  2440. data/src/core/ext/filters/http/message_compress/legacy_compression_filter.cc +0 -325
  2441. data/src/core/ext/filters/http/message_compress/legacy_compression_filter.h +0 -139
  2442. data/src/core/ext/filters/server_config_selector/server_config_selector.h +0 -83
  2443. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +0 -170
  2444. data/src/core/ext/filters/server_config_selector/server_config_selector_filter.h +0 -33
  2445. data/src/core/ext/gcp/metadata_query.cc +0 -136
  2446. data/src/core/ext/gcp/metadata_query.h +0 -87
  2447. data/src/core/ext/transport/chttp2/transport/http_trace.cc +0 -19
  2448. data/src/core/ext/transport/chttp2/transport/http_trace.h +0 -24
  2449. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -44
  2450. data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
  2451. data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -23
  2452. data/src/core/ext/xds/certificate_provider_store.cc +0 -155
  2453. data/src/core/ext/xds/certificate_provider_store.h +0 -133
  2454. data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +0 -138
  2455. data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +0 -82
  2456. data/src/core/ext/xds/upb_utils.h +0 -45
  2457. data/src/core/ext/xds/xds_api.cc +0 -572
  2458. data/src/core/ext/xds/xds_api.h +0 -189
  2459. data/src/core/ext/xds/xds_audit_logger_registry.cc +0 -122
  2460. data/src/core/ext/xds/xds_audit_logger_registry.h +0 -68
  2461. data/src/core/ext/xds/xds_bootstrap.cc +0 -38
  2462. data/src/core/ext/xds/xds_bootstrap.h +0 -90
  2463. data/src/core/ext/xds/xds_bootstrap_grpc.cc +0 -365
  2464. data/src/core/ext/xds/xds_bootstrap_grpc.h +0 -182
  2465. data/src/core/ext/xds/xds_certificate_provider.cc +0 -217
  2466. data/src/core/ext/xds/xds_certificate_provider.h +0 -116
  2467. data/src/core/ext/xds/xds_channel_args.h +0 -32
  2468. data/src/core/ext/xds/xds_channel_stack_modifier.cc +0 -107
  2469. data/src/core/ext/xds/xds_channel_stack_modifier.h +0 -63
  2470. data/src/core/ext/xds/xds_client.cc +0 -2123
  2471. data/src/core/ext/xds/xds_client.h +0 -358
  2472. data/src/core/ext/xds/xds_client_grpc.cc +0 -281
  2473. data/src/core/ext/xds/xds_client_grpc.h +0 -96
  2474. data/src/core/ext/xds/xds_client_stats.cc +0 -173
  2475. data/src/core/ext/xds/xds_client_stats.h +0 -251
  2476. data/src/core/ext/xds/xds_cluster.cc +0 -795
  2477. data/src/core/ext/xds/xds_cluster.h +0 -142
  2478. data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +0 -140
  2479. data/src/core/ext/xds/xds_cluster_specifier_plugin.h +0 -97
  2480. data/src/core/ext/xds/xds_common_types.cc +0 -509
  2481. data/src/core/ext/xds/xds_common_types.h +0 -108
  2482. data/src/core/ext/xds/xds_endpoint.cc +0 -516
  2483. data/src/core/ext/xds/xds_endpoint.h +0 -150
  2484. data/src/core/ext/xds/xds_health_status.cc +0 -75
  2485. data/src/core/ext/xds/xds_health_status.h +0 -91
  2486. data/src/core/ext/xds/xds_http_fault_filter.cc +0 -238
  2487. data/src/core/ext/xds/xds_http_fault_filter.h +0 -58
  2488. data/src/core/ext/xds/xds_http_filters.cc +0 -117
  2489. data/src/core/ext/xds/xds_http_filters.h +0 -182
  2490. data/src/core/ext/xds/xds_http_rbac_filter.cc +0 -588
  2491. data/src/core/ext/xds/xds_http_rbac_filter.h +0 -58
  2492. data/src/core/ext/xds/xds_http_stateful_session_filter.cc +0 -218
  2493. data/src/core/ext/xds/xds_http_stateful_session_filter.h +0 -58
  2494. data/src/core/ext/xds/xds_lb_policy_registry.cc +0 -371
  2495. data/src/core/ext/xds/xds_lb_policy_registry.h +0 -71
  2496. data/src/core/ext/xds/xds_listener.cc +0 -1142
  2497. data/src/core/ext/xds/xds_listener.h +0 -236
  2498. data/src/core/ext/xds/xds_resource_type.h +0 -98
  2499. data/src/core/ext/xds/xds_resource_type_impl.h +0 -88
  2500. data/src/core/ext/xds/xds_route_config.cc +0 -1198
  2501. data/src/core/ext/xds/xds_route_config.h +0 -253
  2502. data/src/core/ext/xds/xds_routing.cc +0 -264
  2503. data/src/core/ext/xds/xds_routing.h +0 -106
  2504. data/src/core/ext/xds/xds_server_config_fetcher.cc +0 -1392
  2505. data/src/core/ext/xds/xds_transport.h +0 -89
  2506. data/src/core/ext/xds/xds_transport_grpc.cc +0 -365
  2507. data/src/core/ext/xds/xds_transport_grpc.h +0 -139
  2508. data/src/core/lib/avl/avl.h +0 -325
  2509. data/src/core/lib/backoff/backoff.cc +0 -47
  2510. data/src/core/lib/backoff/backoff.h +0 -89
  2511. data/src/core/lib/backoff/random_early_detection.cc +0 -33
  2512. data/src/core/lib/backoff/random_early_detection.h +0 -62
  2513. data/src/core/lib/channel/call_tracer.cc +0 -365
  2514. data/src/core/lib/channel/call_tracer.h +0 -225
  2515. data/src/core/lib/channel/channel_stack_trace.cc +0 -19
  2516. data/src/core/lib/channel/channel_stack_trace.h +0 -24
  2517. data/src/core/lib/channel/channel_trace.cc +0 -187
  2518. data/src/core/lib/channel/channel_trace.h +0 -138
  2519. data/src/core/lib/channel/channelz.cc +0 -610
  2520. data/src/core/lib/channel/channelz.h +0 -381
  2521. data/src/core/lib/channel/channelz_registry.cc +0 -281
  2522. data/src/core/lib/channel/channelz_registry.h +0 -102
  2523. data/src/core/lib/channel/context.h +0 -77
  2524. data/src/core/lib/channel/server_call_tracer_filter.cc +0 -111
  2525. data/src/core/lib/channel/tcp_tracer.h +0 -140
  2526. data/src/core/lib/debug/event_log.cc +0 -88
  2527. data/src/core/lib/debug/event_log.h +0 -81
  2528. data/src/core/lib/debug/histogram_view.cc +0 -69
  2529. data/src/core/lib/debug/histogram_view.h +0 -37
  2530. data/src/core/lib/debug/stats.cc +0 -68
  2531. data/src/core/lib/debug/stats.h +0 -64
  2532. data/src/core/lib/debug/stats_data.cc +0 -509
  2533. data/src/core/lib/debug/stats_data.h +0 -403
  2534. data/src/core/lib/event_engine/trace.cc +0 -25
  2535. data/src/core/lib/event_engine/trace.h +0 -49
  2536. data/src/core/lib/gpr/alloc.cc +0 -71
  2537. data/src/core/lib/gpr/alloc.h +0 -28
  2538. data/src/core/lib/gpr/android/log.cc +0 -79
  2539. data/src/core/lib/gpr/atm.cc +0 -35
  2540. data/src/core/lib/gpr/iphone/cpu.cc +0 -44
  2541. data/src/core/lib/gpr/linux/cpu.cc +0 -87
  2542. data/src/core/lib/gpr/linux/log.cc +0 -114
  2543. data/src/core/lib/gpr/log.cc +0 -140
  2544. data/src/core/lib/gpr/log_internal.h +0 -55
  2545. data/src/core/lib/gpr/msys/tmpfile.cc +0 -59
  2546. data/src/core/lib/gpr/posix/cpu.cc +0 -84
  2547. data/src/core/lib/gpr/posix/log.cc +0 -111
  2548. data/src/core/lib/gpr/posix/string.cc +0 -72
  2549. data/src/core/lib/gpr/posix/sync.cc +0 -159
  2550. data/src/core/lib/gpr/posix/time.cc +0 -182
  2551. data/src/core/lib/gpr/posix/tmpfile.cc +0 -71
  2552. data/src/core/lib/gpr/spinlock.h +0 -53
  2553. data/src/core/lib/gpr/string.cc +0 -344
  2554. data/src/core/lib/gpr/string.h +0 -112
  2555. data/src/core/lib/gpr/sync.cc +0 -124
  2556. data/src/core/lib/gpr/sync_abseil.cc +0 -110
  2557. data/src/core/lib/gpr/time.cc +0 -269
  2558. data/src/core/lib/gpr/time_precise.cc +0 -168
  2559. data/src/core/lib/gpr/time_precise.h +0 -69
  2560. data/src/core/lib/gpr/tmpfile.h +0 -32
  2561. data/src/core/lib/gpr/useful.h +0 -184
  2562. data/src/core/lib/gpr/windows/cpu.cc +0 -35
  2563. data/src/core/lib/gpr/windows/log.cc +0 -116
  2564. data/src/core/lib/gpr/windows/string.cc +0 -69
  2565. data/src/core/lib/gpr/windows/string_util.cc +0 -55
  2566. data/src/core/lib/gpr/windows/sync.cc +0 -122
  2567. data/src/core/lib/gpr/windows/time.cc +0 -105
  2568. data/src/core/lib/gpr/windows/tmpfile.cc +0 -68
  2569. data/src/core/lib/gpr/wrap_memcpy.cc +0 -43
  2570. data/src/core/lib/gprpp/atomic_utils.h +0 -47
  2571. data/src/core/lib/gprpp/bitset.h +0 -225
  2572. data/src/core/lib/gprpp/chunked_vector.h +0 -257
  2573. data/src/core/lib/gprpp/construct_destruct.h +0 -40
  2574. data/src/core/lib/gprpp/cpp_impl_of.h +0 -49
  2575. data/src/core/lib/gprpp/crash.cc +0 -43
  2576. data/src/core/lib/gprpp/crash.h +0 -37
  2577. data/src/core/lib/gprpp/debug_location.h +0 -99
  2578. data/src/core/lib/gprpp/directory_reader.h +0 -48
  2579. data/src/core/lib/gprpp/down_cast.h +0 -49
  2580. data/src/core/lib/gprpp/dual_ref_counted.h +0 -356
  2581. data/src/core/lib/gprpp/env.h +0 -53
  2582. data/src/core/lib/gprpp/examine_stack.cc +0 -43
  2583. data/src/core/lib/gprpp/examine_stack.h +0 -45
  2584. data/src/core/lib/gprpp/fork.cc +0 -242
  2585. data/src/core/lib/gprpp/fork.h +0 -98
  2586. data/src/core/lib/gprpp/host_port.cc +0 -114
  2587. data/src/core/lib/gprpp/host_port.h +0 -57
  2588. data/src/core/lib/gprpp/if_list.h +0 -4530
  2589. data/src/core/lib/gprpp/linux/env.cc +0 -62
  2590. data/src/core/lib/gprpp/load_file.cc +0 -76
  2591. data/src/core/lib/gprpp/load_file.h +0 -34
  2592. data/src/core/lib/gprpp/manual_constructor.h +0 -146
  2593. data/src/core/lib/gprpp/match.h +0 -75
  2594. data/src/core/lib/gprpp/memory.h +0 -53
  2595. data/src/core/lib/gprpp/mpscq.cc +0 -108
  2596. data/src/core/lib/gprpp/mpscq.h +0 -99
  2597. data/src/core/lib/gprpp/no_destruct.h +0 -95
  2598. data/src/core/lib/gprpp/notification.h +0 -67
  2599. data/src/core/lib/gprpp/orphanable.h +0 -150
  2600. data/src/core/lib/gprpp/overload.h +0 -59
  2601. data/src/core/lib/gprpp/packed_table.h +0 -40
  2602. data/src/core/lib/gprpp/per_cpu.cc +0 -35
  2603. data/src/core/lib/gprpp/per_cpu.h +0 -104
  2604. data/src/core/lib/gprpp/posix/directory_reader.cc +0 -82
  2605. data/src/core/lib/gprpp/posix/env.cc +0 -47
  2606. data/src/core/lib/gprpp/posix/stat.cc +0 -54
  2607. data/src/core/lib/gprpp/posix/thd.cc +0 -247
  2608. data/src/core/lib/gprpp/ref_counted.h +0 -391
  2609. data/src/core/lib/gprpp/ref_counted_ptr.h +0 -444
  2610. data/src/core/lib/gprpp/ref_counted_string.cc +0 -44
  2611. data/src/core/lib/gprpp/ref_counted_string.h +0 -161
  2612. data/src/core/lib/gprpp/single_set_ptr.h +0 -87
  2613. data/src/core/lib/gprpp/sorted_pack.h +0 -89
  2614. data/src/core/lib/gprpp/stat.h +0 -36
  2615. data/src/core/lib/gprpp/status_helper.cc +0 -453
  2616. data/src/core/lib/gprpp/status_helper.h +0 -190
  2617. data/src/core/lib/gprpp/strerror.cc +0 -41
  2618. data/src/core/lib/gprpp/strerror.h +0 -29
  2619. data/src/core/lib/gprpp/sync.h +0 -200
  2620. data/src/core/lib/gprpp/table.h +0 -452
  2621. data/src/core/lib/gprpp/tchar.cc +0 -49
  2622. data/src/core/lib/gprpp/tchar.h +0 -33
  2623. data/src/core/lib/gprpp/thd.h +0 -195
  2624. data/src/core/lib/gprpp/time.cc +0 -242
  2625. data/src/core/lib/gprpp/time.h +0 -379
  2626. data/src/core/lib/gprpp/time_averaged_stats.cc +0 -60
  2627. data/src/core/lib/gprpp/time_averaged_stats.h +0 -79
  2628. data/src/core/lib/gprpp/time_util.cc +0 -81
  2629. data/src/core/lib/gprpp/time_util.h +0 -42
  2630. data/src/core/lib/gprpp/type_list.h +0 -32
  2631. data/src/core/lib/gprpp/unique_type_name.h +0 -104
  2632. data/src/core/lib/gprpp/validation_errors.cc +0 -65
  2633. data/src/core/lib/gprpp/validation_errors.h +0 -134
  2634. data/src/core/lib/gprpp/windows/directory_reader.cc +0 -81
  2635. data/src/core/lib/gprpp/windows/env.cc +0 -56
  2636. data/src/core/lib/gprpp/windows/stat.cc +0 -50
  2637. data/src/core/lib/gprpp/windows/thd.cc +0 -182
  2638. data/src/core/lib/gprpp/work_serializer.cc +0 -558
  2639. data/src/core/lib/gprpp/work_serializer.h +0 -107
  2640. data/src/core/lib/gprpp/xxhash_inline.h +0 -29
  2641. data/src/core/lib/handshaker/proxy_mapper.h +0 -53
  2642. data/src/core/lib/handshaker/proxy_mapper_registry.cc +0 -71
  2643. data/src/core/lib/handshaker/proxy_mapper_registry.h +0 -75
  2644. data/src/core/lib/http/format_request.cc +0 -137
  2645. data/src/core/lib/http/format_request.h +0 -38
  2646. data/src/core/lib/http/httpcli.cc +0 -392
  2647. data/src/core/lib/http/httpcli.h +0 -268
  2648. data/src/core/lib/http/httpcli_security_connector.cc +0 -213
  2649. data/src/core/lib/http/httpcli_ssl_credentials.h +0 -39
  2650. data/src/core/lib/http/parser.cc +0 -451
  2651. data/src/core/lib/http/parser.h +0 -130
  2652. data/src/core/lib/iomgr/ev_windows.cc +0 -30
  2653. data/src/core/lib/iomgr/gethostname.h +0 -26
  2654. data/src/core/lib/iomgr/gethostname_fallback.cc +0 -30
  2655. data/src/core/lib/iomgr/gethostname_host_name_max.cc +0 -40
  2656. data/src/core/lib/iomgr/gethostname_sysconf.cc +0 -40
  2657. data/src/core/lib/iomgr/grpc_if_nametoindex.h +0 -30
  2658. data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +0 -43
  2659. data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +0 -39
  2660. data/src/core/lib/json/json.h +0 -30
  2661. data/src/core/lib/json/json_args.h +0 -34
  2662. data/src/core/lib/json/json_channel_args.h +0 -42
  2663. data/src/core/lib/json/json_object_loader.cc +0 -216
  2664. data/src/core/lib/json/json_object_loader.h +0 -645
  2665. data/src/core/lib/json/json_reader.cc +0 -956
  2666. data/src/core/lib/json/json_reader.h +0 -34
  2667. data/src/core/lib/json/json_util.cc +0 -101
  2668. data/src/core/lib/json/json_util.h +0 -164
  2669. data/src/core/lib/json/json_writer.cc +0 -339
  2670. data/src/core/lib/json/json_writer.h +0 -33
  2671. data/src/core/lib/matchers/matchers.cc +0 -330
  2672. data/src/core/lib/matchers/matchers.h +0 -163
  2673. data/src/core/lib/promise/trace.cc +0 -20
  2674. data/src/core/lib/promise/trace.h +0 -24
  2675. data/src/core/lib/resource_quota/trace.cc +0 -19
  2676. data/src/core/lib/resource_quota/trace.h +0 -24
  2677. data/src/core/lib/security/transport/legacy_server_auth_filter.cc +0 -244
  2678. data/src/core/lib/security/transport/secure_endpoint.cc +0 -565
  2679. data/src/core/lib/security/transport/secure_endpoint.h +0 -43
  2680. data/src/core/lib/security/transport/security_handshaker.cc +0 -673
  2681. data/src/core/lib/security/transport/security_handshaker.h +0 -45
  2682. data/src/core/lib/security/transport/tsi_error.cc +0 -31
  2683. data/src/core/lib/security/transport/tsi_error.h +0 -30
  2684. data/src/core/lib/slice/b64.cc +0 -239
  2685. data/src/core/lib/slice/b64.h +0 -52
  2686. data/src/core/lib/slice/slice_refcount.cc +0 -20
  2687. data/src/core/lib/surface/api_trace.cc +0 -25
  2688. data/src/core/lib/surface/api_trace.h +0 -53
  2689. data/src/core/lib/surface/builtins.cc +0 -37
  2690. data/src/core/lib/surface/builtins.h +0 -26
  2691. data/src/core/lib/surface/call_trace.cc +0 -163
  2692. data/src/core/lib/surface/call_trace.h +0 -30
  2693. data/src/core/lib/surface/channel_ping.cc +0 -69
  2694. data/src/core/lib/surface/server.cc +0 -2045
  2695. data/src/core/lib/surface/server.h +0 -551
  2696. data/src/core/lib/surface/wait_for_cq_end_op.cc +0 -75
  2697. data/src/core/lib/surface/wait_for_cq_end_op.h +0 -72
  2698. data/src/core/lib/transport/batch_builder.cc +0 -179
  2699. data/src/core/lib/transport/batch_builder.h +0 -478
  2700. data/src/core/lib/transport/call_factory.cc +0 -41
  2701. data/src/core/lib/transport/call_factory.h +0 -56
  2702. data/src/core/lib/transport/call_size_estimator.cc +0 -41
  2703. data/src/core/lib/transport/call_size_estimator.h +0 -52
  2704. data/src/core/lib/transport/handshaker.cc +0 -229
  2705. data/src/core/lib/transport/handshaker.h +0 -165
  2706. data/src/core/lib/transport/handshaker_factory.h +0 -74
  2707. data/src/core/lib/transport/handshaker_registry.cc +0 -61
  2708. data/src/core/lib/transport/handshaker_registry.h +0 -69
  2709. data/src/core/lib/transport/http_connect_handshaker.cc +0 -400
  2710. data/src/core/lib/transport/http_connect_handshaker.h +0 -42
  2711. data/src/core/lib/transport/tcp_connect_handshaker.cc +0 -244
  2712. data/src/core/lib/transport/tcp_connect_handshaker.h +0 -39
  2713. data/src/core/lib/uri/uri_parser.cc +0 -372
  2714. data/src/core/lib/uri/uri_parser.h +0 -101
  2715. data/src/core/load_balancing/subchannel_list.h +0 -455
  2716. data/src/core/resolver/binder/binder_resolver.cc +0 -147
  2717. data/src/core/resolver/xds/xds_resolver_trace.cc +0 -25
  2718. data/src/core/resolver/xds/xds_resolver_trace.h +0 -30
  2719. data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +0 -44
  2720. data/third_party/boringssl-with-bazel/err_data.c +0 -1512
  2721. data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -122
  2722. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +0 -106
  2723. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +0 -267
  2724. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +0 -909
  2725. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +0 -87
  2726. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +0 -1276
  2727. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +0 -328
  2728. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +0 -222
  2729. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +0 -744
  2730. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +0 -1070
  2731. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +0 -355
  2732. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +0 -499
  2733. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +0 -1463
  2734. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +0 -553
  2735. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +0 -637
  2736. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +0 -169
  2737. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +0 -372
  2738. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +0 -197
  2739. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +0 -67
  2740. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +0 -493
  2741. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +0 -328
  2742. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +0 -423
  2743. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +0 -1038
  2744. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +0 -1337
  2745. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +0 -119
  2746. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +0 -1064
  2747. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +0 -331
  2748. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +0 -439
  2749. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +0 -359
  2750. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +0 -537
  2751. data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +0 -211
  2752. data/third_party/boringssl-with-bazel/src/crypto/spx/internal.h +0 -79
  2753. data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +0 -136
  2754. data/third_party/upb/upb/message/types.h +0 -15
  2755. data/third_party/upb/upb/wire/decode_fast.c +0 -996
  2756. data/third_party/upb/upb/wire/decode_fast.h +0 -147
  2757. data/third_party/upb/upb/wire/internal/decode.h +0 -143
  2758. data/third_party/upb/upb/wire/internal/swap.h +0 -45
  2759. data/third_party/utf8_range/naive.c +0 -92
  2760. data/third_party/utf8_range/range2-neon.c +0 -157
  2761. data/third_party/utf8_range/range2-sse.c +0 -170
  2762. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes_nohw.c → aes_nohw.c.inc} +0 -0
  2763. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{key_wrap.c → key_wrap.c.inc} +0 -0
  2764. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{mode_wrappers.c → mode_wrappers.c.inc} +0 -0
  2765. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{add.c → add.c.inc} +0 -0
  2766. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/{x86_64-gcc.c → x86_64-gcc.c.inc} +0 -0
  2767. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bn.c → bn.c.inc} +0 -0
  2768. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c → cmp.c.inc} +0 -0
  2769. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{ctx.c → ctx.c.inc} +0 -0
  2770. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd.c → gcd.c.inc} +0 -0
  2771. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c → generic.c.inc} +0 -0
  2772. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{jacobi.c → jacobi.c.inc} +0 -0
  2773. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery.c → montgomery.c.inc} +0 -0
  2774. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c → rsaz_exp.c.inc} +0 -0
  2775. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{shift.c → shift.c.inc} +0 -0
  2776. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{aead.c → aead.c.inc} +0 -0
  2777. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{cipher.c → cipher.c.inc} +0 -0
  2778. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c → e_aesccm.c.inc} +0 -0
  2779. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/{cmac.c → cmac.c.inc} +0 -0
  2780. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c → check.c.inc} +0 -0
  2781. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{dh.c → dh.c.inc} +0 -0
  2782. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digest.c → digest.c.inc} +0 -0
  2783. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digests.c → digests.c.inc} +0 -0
  2784. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/{digestsign.c → digestsign.c.inc} +0 -0
  2785. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec.c → ec.c.inc} +0 -0
  2786. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c → ec_montgomery.c.inc} +0 -0
  2787. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{felem.c → felem.c.inc} +0 -0
  2788. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{oct.c → oct.c.inc} +0 -0
  2789. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p224-64.c → p224-64.c.inc} +0 -0
  2790. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256.c → p256.c.inc} +0 -0
  2791. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c → simple.c.inc} +0 -0
  2792. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple_mul.c → simple_mul.c.inc} +0 -0
  2793. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{util.c → util.c.inc} +0 -0
  2794. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{wnaf.c → wnaf.c.inc} +0 -0
  2795. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/{ecdh.c → ecdh.c.inc} +0 -0
  2796. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/{hkdf.c → hkdf.c.inc} +0 -0
  2797. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/{hmac.c → hmac.c.inc} +0 -0
  2798. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/{md4.c → md4.c.inc} +0 -0
  2799. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/{md5.c → md5.c.inc} +0 -0
  2800. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cbc.c → cbc.c.inc} +0 -0
  2801. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cfb.c → cfb.c.inc} +0 -0
  2802. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ctr.c → ctr.c.inc} +0 -0
  2803. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm.c → gcm.c.inc} +0 -0
  2804. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm_nohw.c → gcm_nohw.c.inc} +0 -0
  2805. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ofb.c → ofb.c.inc} +0 -0
  2806. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{polyval.c → polyval.c.inc} +0 -0
  2807. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{ctrdrbg.c → ctrdrbg.c.inc} +0 -0
  2808. /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{blinding.c → blinding.c.inc} +0 -0
  2809. /data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/getrandom_fillin.h +0 -0
@@ -1,1064 +0,0 @@
1
- /* Copyright (c) 2017, Google Inc.
2
- *
3
- * Permission to use, copy, modify, and/or distribute this software for any
4
- * purpose with or without fee is hereby granted, provided that the above
5
- * copyright notice and this permission notice appear in all copies.
6
- *
7
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10
- * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12
- * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13
- * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
-
15
- #include <openssl/crypto.h>
16
-
17
- #include <stdio.h>
18
- #include <stdlib.h>
19
-
20
- #include <openssl/aead.h>
21
- #include <openssl/aes.h>
22
- #include <openssl/bn.h>
23
- #include <openssl/ctrdrbg.h>
24
- #include <openssl/dh.h>
25
- #include <openssl/digest.h>
26
- #include <openssl/ec.h>
27
- #include <openssl/ecdsa.h>
28
- #include <openssl/ec_key.h>
29
- #include <openssl/hkdf.h>
30
- #include <openssl/hmac.h>
31
- #include <openssl/nid.h>
32
- #include <openssl/rsa.h>
33
- #include <openssl/sha.h>
34
-
35
- #include "../../internal.h"
36
- #include "../dh/internal.h"
37
- #include "../ec/internal.h"
38
- #include "../ecdsa/internal.h"
39
- #include "../rand/internal.h"
40
- #include "../rsa/internal.h"
41
- #include "../service_indicator/internal.h"
42
- #include "../tls/internal.h"
43
-
44
-
45
- // MSVC wants to put a NUL byte at the end of non-char arrays and so cannot
46
- // compile the real logic.
47
- #if defined(_MSC_VER)
48
-
49
- int BORINGSSL_self_test(void) {
50
- return 0;
51
- }
52
-
53
- #else
54
-
55
- static void hexdump(const uint8_t *in, size_t len) {
56
- for (size_t i = 0; i < len; i++) {
57
- fprintf(stderr, "%02x", in[i]);
58
- }
59
- }
60
-
61
- static int check_test(const void *expected, const void *actual,
62
- size_t expected_len, const char *name) {
63
- if (OPENSSL_memcmp(actual, expected, expected_len) != 0) {
64
- fprintf(stderr, "%s failed.\nExpected: ", name);
65
- hexdump(expected, expected_len);
66
- fprintf(stderr, "\nCalculated: ");
67
- hexdump(actual, expected_len);
68
- fprintf(stderr, "\n");
69
- fflush(stderr);
70
- return 0;
71
- }
72
- return 1;
73
- }
74
-
75
- static int set_bignum(BIGNUM **out, const uint8_t *in, size_t len) {
76
- *out = BN_bin2bn(in, len, NULL);
77
- return *out != NULL;
78
- }
79
-
80
- static int serialize_ecdsa_sig(uint8_t *out, size_t out_len,
81
- const ECDSA_SIG *sig) {
82
- if ((out_len & 1) || //
83
- !BN_bn2bin_padded(out, out_len / 2, sig->r) ||
84
- !BN_bn2bin_padded(out + out_len / 2, out_len / 2, sig->s)) {
85
- return 0;
86
- }
87
- return 1;
88
- }
89
-
90
- static ECDSA_SIG *parse_ecdsa_sig(const uint8_t *in, size_t in_len) {
91
- ECDSA_SIG *ret = ECDSA_SIG_new();
92
- if (!ret || //
93
- (in_len & 1) ||
94
- BN_bin2bn(in, in_len/2, ret->r) == NULL ||
95
- BN_bin2bn(in + in_len/2, in_len/2, ret->s) == NULL) {
96
- ECDSA_SIG_free(ret);
97
- ret = NULL;
98
- }
99
- return ret;
100
- }
101
-
102
- static RSA *self_test_rsa_key(void) {
103
- static const uint8_t kN[] = {
104
- 0xd3, 0x3a, 0x62, 0x9f, 0x07, 0x77, 0xb0, 0x18, 0xf3, 0xff, 0xfe, 0xcc,
105
- 0xc9, 0xa2, 0xc2, 0x3a, 0xa6, 0x1d, 0xd8, 0xf0, 0x26, 0x5b, 0x38, 0x90,
106
- 0x17, 0x48, 0x15, 0xce, 0x21, 0xcd, 0xd6, 0x62, 0x99, 0xe2, 0xd7, 0xda,
107
- 0x40, 0x80, 0x3c, 0xad, 0x18, 0xb7, 0x26, 0xe9, 0x30, 0x8a, 0x23, 0x3f,
108
- 0x68, 0x9a, 0x9c, 0x31, 0x34, 0x91, 0x99, 0x06, 0x11, 0x36, 0xb2, 0x9e,
109
- 0x3a, 0xd0, 0xbc, 0xb9, 0x93, 0x4e, 0xb8, 0x72, 0xa1, 0x9f, 0xb6, 0x8c,
110
- 0xd5, 0x17, 0x1f, 0x7e, 0xaa, 0x75, 0xbb, 0xdf, 0xa1, 0x70, 0x48, 0xc4,
111
- 0xec, 0x9a, 0x51, 0xed, 0x41, 0xc9, 0x74, 0xc0, 0x3e, 0x1e, 0x85, 0x2f,
112
- 0xbe, 0x34, 0xc7, 0x65, 0x34, 0x8b, 0x4d, 0x55, 0x4b, 0xe1, 0x45, 0x54,
113
- 0x0d, 0x75, 0x7e, 0x89, 0x4d, 0x0c, 0xf6, 0x33, 0xe5, 0xfc, 0xfb, 0x56,
114
- 0x1b, 0xf2, 0x39, 0x9d, 0xe0, 0xff, 0x55, 0xcf, 0x02, 0x05, 0xb9, 0x74,
115
- 0xd2, 0x91, 0xfc, 0x87, 0xe1, 0xbb, 0x97, 0x2a, 0xe4, 0xdd, 0x20, 0xc0,
116
- 0x38, 0x47, 0xc0, 0x76, 0x3f, 0xa1, 0x9b, 0x5c, 0x20, 0xff, 0xff, 0xc7,
117
- 0x49, 0x3b, 0x4c, 0xaf, 0x99, 0xa6, 0x3e, 0x82, 0x5c, 0x58, 0x27, 0xce,
118
- 0x01, 0x03, 0xc3, 0x16, 0x35, 0x20, 0xe9, 0xf0, 0x15, 0x7a, 0x41, 0xd5,
119
- 0x1f, 0x52, 0xea, 0xdf, 0xad, 0x4c, 0xbb, 0x0d, 0xcb, 0x04, 0x91, 0xb0,
120
- 0x95, 0xa8, 0xce, 0x25, 0xfd, 0xd2, 0x62, 0x47, 0x77, 0xee, 0x13, 0xf1,
121
- 0x48, 0x72, 0x9e, 0xd9, 0x2d, 0xe6, 0x5f, 0xa4, 0xc6, 0x9e, 0x5a, 0xb2,
122
- 0xc6, 0xa2, 0xf7, 0x0a, 0x16, 0x17, 0xae, 0x6b, 0x1c, 0x30, 0x7c, 0x63,
123
- 0x08, 0x83, 0xe7, 0x43, 0xec, 0x54, 0x5e, 0x2c, 0x08, 0x0b, 0x5e, 0x46,
124
- 0xa7, 0x10, 0x93, 0x43, 0x53, 0x4e, 0xe3, 0x16, 0x73, 0x55, 0xce, 0xf2,
125
- 0x94, 0xc0, 0xbe, 0xb3,
126
- };
127
- static const uint8_t kE[] = {0x01, 0x00, 0x01}; // 65537
128
- static const uint8_t kD[] = {
129
- 0x2f, 0x2c, 0x1e, 0xd2, 0x3d, 0x2c, 0xb1, 0x9b, 0x21, 0x02, 0xce, 0xb8,
130
- 0x95, 0x5f, 0x4f, 0xd9, 0x21, 0x38, 0x11, 0x36, 0xb0, 0x9a, 0x36, 0xab,
131
- 0x97, 0x47, 0x75, 0xf7, 0x2e, 0xfd, 0x75, 0x1f, 0x58, 0x16, 0x9c, 0xf6,
132
- 0x14, 0xe9, 0x8e, 0xa3, 0x69, 0x9d, 0x9d, 0x86, 0xfe, 0x5c, 0x1b, 0x3b,
133
- 0x11, 0xf5, 0x55, 0x64, 0x77, 0xc4, 0xfc, 0x53, 0xaa, 0x8c, 0x78, 0x9f,
134
- 0x75, 0xab, 0x20, 0x3a, 0xa1, 0x77, 0x37, 0x22, 0x02, 0x8e, 0x54, 0x8a,
135
- 0x67, 0x1c, 0x5e, 0xe0, 0x3e, 0xd9, 0x44, 0x37, 0xd1, 0x29, 0xee, 0x56,
136
- 0x6c, 0x30, 0x9a, 0x93, 0x4d, 0xd9, 0xdb, 0xc5, 0x03, 0x1a, 0x75, 0xcc,
137
- 0x0f, 0xc2, 0x61, 0xb5, 0x6c, 0x62, 0x9f, 0xc6, 0xa8, 0xc7, 0x8a, 0x60,
138
- 0x17, 0x11, 0x62, 0x4c, 0xef, 0x74, 0x31, 0x97, 0xad, 0x89, 0x2d, 0xe8,
139
- 0x31, 0x1d, 0x8b, 0x58, 0x82, 0xe3, 0x03, 0x1a, 0x6b, 0xdf, 0x3f, 0x3e,
140
- 0xa4, 0x27, 0x19, 0xef, 0x46, 0x7a, 0x90, 0xdf, 0xa7, 0xe7, 0xc9, 0x66,
141
- 0xab, 0x41, 0x1d, 0x65, 0x78, 0x1c, 0x18, 0x40, 0x5c, 0xd6, 0x87, 0xb5,
142
- 0xea, 0x29, 0x44, 0xb3, 0xf5, 0xb3, 0xd2, 0x4f, 0xce, 0x88, 0x78, 0x49,
143
- 0x27, 0x4e, 0x0b, 0x30, 0x85, 0xfb, 0x73, 0xfd, 0x8b, 0x32, 0x15, 0xee,
144
- 0x1f, 0xc9, 0x0e, 0x89, 0xb9, 0x43, 0x2f, 0xe9, 0x60, 0x8d, 0xda, 0xae,
145
- 0x2b, 0x30, 0x99, 0xee, 0x88, 0x81, 0x20, 0x7b, 0x4a, 0xc3, 0x18, 0xf2,
146
- 0x94, 0x02, 0x79, 0x94, 0xaa, 0x65, 0xd9, 0x1b, 0x45, 0x2a, 0xac, 0x6e,
147
- 0x30, 0x48, 0x57, 0xea, 0xbe, 0x79, 0x7d, 0xfc, 0x67, 0xaa, 0x47, 0xc0,
148
- 0xf7, 0x52, 0xfd, 0x0b, 0x63, 0x4e, 0x3d, 0x2e, 0xcc, 0x36, 0xa0, 0xdb,
149
- 0x92, 0x0b, 0xa9, 0x1b, 0xeb, 0xc2, 0xd5, 0x08, 0xd3, 0x85, 0x87, 0xf8,
150
- 0x5d, 0x1a, 0xf6, 0xc1,
151
- };
152
- static const uint8_t kP[] = {
153
- 0xf7, 0x06, 0xa3, 0x98, 0x8a, 0x52, 0xf8, 0x63, 0x68, 0x27, 0x4f, 0x68,
154
- 0x7f, 0x34, 0xec, 0x8e, 0x5d, 0xf8, 0x30, 0x92, 0xb3, 0x62, 0x4c, 0xeb,
155
- 0xdb, 0x19, 0x6b, 0x09, 0xc5, 0xa3, 0xf0, 0xbb, 0xff, 0x0f, 0xc2, 0xd4,
156
- 0x9b, 0xc9, 0x54, 0x4f, 0xb9, 0xf9, 0xe1, 0x4c, 0xf0, 0xe3, 0x4c, 0x90,
157
- 0xda, 0x7a, 0x01, 0xc2, 0x9f, 0xc4, 0xc8, 0x8e, 0xb1, 0x1e, 0x93, 0x75,
158
- 0x75, 0xc6, 0x13, 0x25, 0xc3, 0xee, 0x3b, 0xcc, 0xb8, 0x72, 0x6c, 0x49,
159
- 0xb0, 0x09, 0xfb, 0xab, 0x44, 0xeb, 0x4d, 0x40, 0xf0, 0x61, 0x6b, 0xe5,
160
- 0xe6, 0xfe, 0x3e, 0x0a, 0x77, 0x26, 0x39, 0x76, 0x3d, 0x4c, 0x3e, 0x9b,
161
- 0x5b, 0xc0, 0xaf, 0xa2, 0x58, 0x76, 0xb0, 0xe9, 0xda, 0x7f, 0x0e, 0x78,
162
- 0xc9, 0x76, 0x49, 0x5c, 0xfa, 0xb3, 0xb0, 0x15, 0x4b, 0x41, 0xc7, 0x27,
163
- 0xa4, 0x75, 0x28, 0x5c, 0x30, 0x69, 0x50, 0x29,
164
- };
165
- static const uint8_t kQ[] = {
166
- 0xda, 0xe6, 0xd2, 0xbb, 0x44, 0xff, 0x4f, 0xdf, 0x57, 0xc1, 0x11, 0xa3,
167
- 0x51, 0xba, 0x17, 0x89, 0x4c, 0x01, 0xc0, 0x0c, 0x97, 0x34, 0x50, 0xcf,
168
- 0x32, 0x1e, 0xc0, 0xbd, 0x7b, 0x35, 0xb5, 0x6a, 0x26, 0xcc, 0xea, 0x4c,
169
- 0x8e, 0x87, 0x4a, 0x67, 0x8b, 0xd3, 0xe5, 0x4f, 0x3a, 0x60, 0x48, 0x59,
170
- 0x04, 0x93, 0x39, 0xd7, 0x7c, 0xfb, 0x19, 0x1a, 0x34, 0xd5, 0xe8, 0xaf,
171
- 0xe7, 0x22, 0x2c, 0x0d, 0xc2, 0x91, 0x69, 0xb6, 0xe9, 0x2a, 0xe9, 0x1c,
172
- 0x4c, 0x6e, 0x8f, 0x40, 0xf5, 0xa8, 0x3e, 0x82, 0x69, 0x69, 0xbe, 0x9f,
173
- 0x7d, 0x5c, 0x7f, 0x92, 0x78, 0x17, 0xa3, 0x6d, 0x41, 0x2d, 0x72, 0xed,
174
- 0x3f, 0x71, 0xfa, 0x97, 0xb4, 0x63, 0xe4, 0x4f, 0xd9, 0x46, 0x03, 0xfb,
175
- 0x00, 0xeb, 0x30, 0x70, 0xb9, 0x51, 0xd9, 0x0a, 0xd2, 0xf8, 0x50, 0xd4,
176
- 0xfb, 0x43, 0x84, 0xf8, 0xac, 0x58, 0xc3, 0x7b,
177
- };
178
- static const uint8_t kDModPMinusOne[] = {
179
- 0xf5, 0x50, 0x8f, 0x88, 0x7d, 0xdd, 0xb5, 0xb4, 0x2a, 0x8b, 0xd7, 0x4d,
180
- 0x23, 0xfe, 0xaf, 0xe9, 0x16, 0x22, 0xd2, 0x41, 0xed, 0x88, 0xf2, 0x70,
181
- 0xcb, 0x4d, 0xeb, 0xc1, 0x71, 0x97, 0xc4, 0x0b, 0x3e, 0x5a, 0x2d, 0x96,
182
- 0xab, 0xfa, 0xfd, 0x12, 0x8b, 0xd3, 0x3e, 0x4e, 0x05, 0x6f, 0x04, 0xeb,
183
- 0x59, 0x3c, 0x0e, 0xa1, 0x73, 0xbe, 0x9d, 0x99, 0x2f, 0x05, 0xf9, 0x54,
184
- 0x8d, 0x98, 0x1e, 0x0d, 0xc4, 0x0c, 0xc3, 0x30, 0x23, 0xff, 0xe5, 0xd0,
185
- 0x2b, 0xd5, 0x4e, 0x2b, 0xa0, 0xae, 0xb8, 0x32, 0x84, 0x45, 0x8b, 0x3c,
186
- 0x6d, 0xf0, 0x10, 0x36, 0x9e, 0x6a, 0xc4, 0x67, 0xca, 0xa9, 0xfc, 0x06,
187
- 0x96, 0xd0, 0xbc, 0xda, 0xd1, 0x55, 0x55, 0x8d, 0x77, 0x21, 0xf4, 0x82,
188
- 0x39, 0x37, 0x91, 0xd5, 0x97, 0x56, 0x78, 0xc8, 0x3c, 0xcb, 0x5e, 0xf6,
189
- 0xdc, 0x58, 0x48, 0xb3, 0x7c, 0x94, 0x29, 0x39,
190
- };
191
- static const uint8_t kDModQMinusOne[] = {
192
- 0x64, 0x65, 0xbd, 0x7d, 0x1a, 0x96, 0x26, 0xa1, 0xfe, 0xf3, 0x94, 0x0d,
193
- 0x5d, 0xec, 0x85, 0xe2, 0xf8, 0xb3, 0x4c, 0xcb, 0xf9, 0x85, 0x8b, 0x12,
194
- 0x9c, 0xa0, 0x32, 0x32, 0x35, 0x92, 0x5a, 0x94, 0x47, 0x1b, 0x70, 0xd2,
195
- 0x90, 0x04, 0x49, 0x01, 0xd8, 0xc5, 0xe4, 0xc4, 0x43, 0xb7, 0xe9, 0x36,
196
- 0xba, 0xbc, 0x73, 0xa8, 0xfb, 0xaf, 0x86, 0xc1, 0xd8, 0x3d, 0xcb, 0xac,
197
- 0xf1, 0xcb, 0x60, 0x7d, 0x27, 0x21, 0xde, 0x64, 0x7f, 0xe8, 0xa8, 0x65,
198
- 0xcc, 0x40, 0x60, 0xff, 0xa0, 0x2b, 0xfc, 0x0f, 0x80, 0x1d, 0x79, 0xca,
199
- 0x58, 0x8a, 0xd6, 0x0f, 0xed, 0x78, 0x9a, 0x02, 0x00, 0x04, 0xc2, 0x53,
200
- 0x41, 0xe8, 0x1a, 0xd0, 0xfd, 0x71, 0x5b, 0x43, 0xac, 0x19, 0x4a, 0xb6,
201
- 0x12, 0xa3, 0xcb, 0xe1, 0xc7, 0x7d, 0x5c, 0x98, 0x74, 0x4e, 0x63, 0x74,
202
- 0x6b, 0x91, 0x7a, 0x29, 0x3b, 0x92, 0xb2, 0x85,
203
- };
204
- static const uint8_t kQInverseModP[] = {
205
- 0xd0, 0xde, 0x19, 0xda, 0x1e, 0xa2, 0xd8, 0x8f, 0x1c, 0x92, 0x73, 0xb0,
206
- 0xc9, 0x90, 0xc7, 0xf5, 0xec, 0xc5, 0x89, 0x01, 0x05, 0x78, 0x11, 0x2d,
207
- 0x74, 0x34, 0x44, 0xad, 0xd5, 0xf7, 0xa4, 0xfe, 0x9f, 0x25, 0x4d, 0x0b,
208
- 0x92, 0xe3, 0xb8, 0x7d, 0xd3, 0xfd, 0xa5, 0xca, 0x95, 0x60, 0xa3, 0xf9,
209
- 0x55, 0x42, 0x14, 0xb2, 0x45, 0x51, 0x9f, 0x73, 0x88, 0x43, 0x8a, 0xd1,
210
- 0x65, 0x9e, 0xd1, 0xf7, 0x82, 0x2a, 0x2a, 0x8d, 0x70, 0x56, 0xe3, 0xef,
211
- 0xc9, 0x0e, 0x2a, 0x2c, 0x15, 0xaf, 0x7f, 0x97, 0x81, 0x66, 0xf3, 0xb5,
212
- 0x00, 0xa9, 0x26, 0xcc, 0x1e, 0xc2, 0x98, 0xdd, 0xd3, 0x37, 0x06, 0x79,
213
- 0xb3, 0x60, 0x58, 0x79, 0x99, 0x3f, 0xa3, 0x15, 0x1f, 0x31, 0xe3, 0x11,
214
- 0x88, 0x4c, 0x35, 0x57, 0xfa, 0x79, 0xd7, 0xd8, 0x72, 0xee, 0x73, 0x95,
215
- 0x89, 0x29, 0xc7, 0x05, 0x27, 0x68, 0x90, 0x15,
216
- };
217
-
218
- RSA *rsa = RSA_new();
219
- if (rsa == NULL ||
220
- !set_bignum(&rsa->n, kN, sizeof(kN)) ||
221
- !set_bignum(&rsa->e, kE, sizeof(kE)) ||
222
- !set_bignum(&rsa->d, kD, sizeof(kD)) ||
223
- !set_bignum(&rsa->p, kP, sizeof(kP)) ||
224
- !set_bignum(&rsa->q, kQ, sizeof(kQ)) ||
225
- !set_bignum(&rsa->dmp1, kDModPMinusOne, sizeof(kDModPMinusOne)) ||
226
- !set_bignum(&rsa->dmq1, kDModQMinusOne, sizeof(kDModQMinusOne)) ||
227
- !set_bignum(&rsa->iqmp, kQInverseModP, sizeof(kQInverseModP))) {
228
- RSA_free(rsa);
229
- return NULL;
230
- }
231
-
232
- return rsa;
233
- }
234
-
235
- static EC_KEY *self_test_ecdsa_key(void) {
236
- static const uint8_t kQx[] = {
237
- 0xc8, 0x15, 0x61, 0xec, 0xf2, 0xe5, 0x4e, 0xde, 0xfe, 0x66, 0x17,
238
- 0xdb, 0x1c, 0x7a, 0x34, 0xa7, 0x07, 0x44, 0xdd, 0xb2, 0x61, 0xf2,
239
- 0x69, 0xb8, 0x3d, 0xac, 0xfc, 0xd2, 0xad, 0xe5, 0xa6, 0x81,
240
- };
241
- static const uint8_t kQy[] = {
242
- 0xe0, 0xe2, 0xaf, 0xa3, 0xf9, 0xb6, 0xab, 0xe4, 0xc6, 0x98, 0xef,
243
- 0x64, 0x95, 0xf1, 0xbe, 0x49, 0xa3, 0x19, 0x6c, 0x50, 0x56, 0xac,
244
- 0xb3, 0x76, 0x3f, 0xe4, 0x50, 0x7e, 0xec, 0x59, 0x6e, 0x88,
245
- };
246
- static const uint8_t kD[] = {
247
- 0xc6, 0xc1, 0xaa, 0xda, 0x15, 0xb0, 0x76, 0x61, 0xf8, 0x14, 0x2c,
248
- 0x6c, 0xaf, 0x0f, 0xdb, 0x24, 0x1a, 0xff, 0x2e, 0xfe, 0x46, 0xc0,
249
- 0x93, 0x8b, 0x74, 0xf2, 0xbc, 0xc5, 0x30, 0x52, 0xb0, 0x77,
250
- };
251
-
252
- EC_KEY *ec_key = EC_KEY_new();
253
- BIGNUM *qx = BN_bin2bn(kQx, sizeof(kQx), NULL);
254
- BIGNUM *qy = BN_bin2bn(kQy, sizeof(kQy), NULL);
255
- BIGNUM *d = BN_bin2bn(kD, sizeof(kD), NULL);
256
- if (ec_key == NULL || qx == NULL || qy == NULL || d == NULL ||
257
- !EC_KEY_set_group(ec_key, EC_group_p256()) ||
258
- !EC_KEY_set_public_key_affine_coordinates(ec_key, qx, qy) ||
259
- !EC_KEY_set_private_key(ec_key, d)) {
260
- EC_KEY_free(ec_key);
261
- ec_key = NULL;
262
- }
263
-
264
- BN_free(qx);
265
- BN_free(qy);
266
- BN_free(d);
267
- return ec_key;
268
- }
269
-
270
- static DH *self_test_dh(void) {
271
- DH *dh = DH_get_rfc7919_2048();
272
- if (!dh) {
273
- return NULL;
274
- }
275
-
276
- BIGNUM *priv = BN_new();
277
- if (!priv) {
278
- goto err;
279
- }
280
-
281
- // kFFDHE2048PrivateKeyData is a 225-bit value. (225 because that's the
282
- // minimum private key size in
283
- // https://tools.ietf.org/html/rfc7919#appendix-A.1.)
284
- static const BN_ULONG kFFDHE2048PrivateKeyData[] = {
285
- TOBN(0x187be36b, 0xd38a4fa1),
286
- TOBN(0x0a152f39, 0x6458f3b8),
287
- TOBN(0x0570187e, 0xc422eeb7),
288
- TOBN(0x00000001, 0x91173f2a),
289
- };
290
-
291
- bn_set_static_words(priv, kFFDHE2048PrivateKeyData,
292
- OPENSSL_ARRAY_SIZE(kFFDHE2048PrivateKeyData));
293
-
294
- if (!DH_set0_key(dh, NULL, priv)) {
295
- goto err;
296
- }
297
- return dh;
298
-
299
- err:
300
- BN_free(priv);
301
- DH_free(dh);
302
- return NULL;
303
- }
304
-
305
-
306
- // Lazy self-tests
307
- //
308
- // Self tests that are slow are deferred until the corresponding algorithm is
309
- // actually exercised, in FIPS mode. (In non-FIPS mode these tests are only run
310
- // when requested by |BORINGSSL_self_test|.)
311
-
312
- static int boringssl_self_test_rsa(void) {
313
- int ret = 0;
314
- uint8_t output[256];
315
-
316
- RSA *const rsa_key = self_test_rsa_key();
317
- if (rsa_key == NULL) {
318
- fprintf(stderr, "RSA key construction failed\n");
319
- goto err;
320
- }
321
- // Disable blinding for the power-on tests because it's not needed and
322
- // triggers an entropy draw.
323
- rsa_key->flags |= RSA_FLAG_NO_BLINDING;
324
-
325
- // RSA Sign KAT
326
-
327
- static const uint8_t kRSASignDigest[32] = {
328
- 0xd2, 0xb5, 0x6e, 0x53, 0x30, 0x6f, 0x72, 0x0d, 0x79, 0x29, 0xd8,
329
- 0x70, 0x8b, 0xf4, 0x6f, 0x1c, 0x22, 0x30, 0x03, 0x05, 0x58, 0x2b,
330
- 0x11, 0x5b, 0xed, 0xca, 0xc7, 0x22, 0xd8, 0xaa, 0x5a, 0xb2,
331
- };
332
- static const uint8_t kRSASignSignature[256] = {
333
- 0x64, 0xce, 0xdd, 0x91, 0x27, 0xb0, 0x4f, 0xb9, 0x14, 0xea, 0xc0, 0xb4,
334
- 0xa2, 0x06, 0xc5, 0xd8, 0x40, 0x0f, 0x6c, 0x54, 0xac, 0xf7, 0x02, 0xde,
335
- 0x26, 0xbb, 0xfd, 0x33, 0xe5, 0x2f, 0x4d, 0xb1, 0x53, 0xc4, 0xff, 0xd0,
336
- 0x5f, 0xea, 0x15, 0x89, 0x83, 0x4c, 0xe3, 0x80, 0x0b, 0xe9, 0x13, 0x82,
337
- 0x1d, 0x71, 0x92, 0x1a, 0x03, 0x60, 0x2c, 0xaf, 0xe2, 0x16, 0xc7, 0x43,
338
- 0x3f, 0xde, 0x6b, 0x94, 0xfd, 0x6e, 0x08, 0x7b, 0x11, 0xf1, 0x34, 0x52,
339
- 0xe5, 0xc0, 0x97, 0x66, 0x4a, 0xe0, 0x91, 0x45, 0xc8, 0xb1, 0x3d, 0x6a,
340
- 0x54, 0xc1, 0x32, 0x0f, 0x32, 0xad, 0x25, 0x11, 0x3e, 0x49, 0xad, 0x41,
341
- 0xce, 0x7b, 0xca, 0x95, 0x6b, 0x54, 0x5e, 0x86, 0x1b, 0xce, 0xfa, 0x2a,
342
- 0x60, 0xe8, 0xfa, 0xbb, 0x23, 0xb2, 0x41, 0xbc, 0x7c, 0x98, 0xec, 0x73,
343
- 0x20, 0xed, 0xb3, 0xcf, 0xab, 0x07, 0x24, 0x85, 0x6a, 0x2a, 0x61, 0x76,
344
- 0x28, 0xf8, 0x00, 0x80, 0xeb, 0xd9, 0x3a, 0x63, 0xe2, 0x01, 0xb1, 0xee,
345
- 0x6d, 0xe9, 0x73, 0xe9, 0xb6, 0x75, 0x2e, 0xf9, 0x81, 0xd9, 0xa8, 0x79,
346
- 0xf6, 0x8f, 0xe3, 0x02, 0x7d, 0xf6, 0xea, 0xdc, 0x35, 0xe4, 0x62, 0x0d,
347
- 0x91, 0xba, 0x3e, 0x7d, 0x8b, 0x82, 0xbf, 0x15, 0x74, 0x6a, 0x4e, 0x29,
348
- 0xf8, 0x9b, 0x2c, 0x94, 0x8d, 0xa7, 0x00, 0x4d, 0x7b, 0xbf, 0x35, 0x07,
349
- 0xeb, 0xdd, 0x10, 0xef, 0xd5, 0x2f, 0xe6, 0x98, 0x4b, 0x7e, 0x24, 0x80,
350
- 0xe2, 0x01, 0xf2, 0x66, 0xb7, 0xd3, 0x93, 0xfe, 0x2a, 0xb3, 0x74, 0xed,
351
- 0xec, 0x4b, 0xb1, 0x5f, 0x5f, 0xee, 0x85, 0x44, 0xa7, 0x26, 0xdf, 0xc1,
352
- 0x2e, 0x7a, 0xf3, 0xa5, 0x8f, 0xf8, 0x64, 0xda, 0x65, 0xad, 0x91, 0xe2,
353
- 0x90, 0x94, 0x20, 0x16, 0xb8, 0x61, 0xa5, 0x0a, 0x7d, 0xb4, 0xbf, 0xc0,
354
- 0x10, 0xaf, 0x72, 0x67,
355
- };
356
-
357
- unsigned sig_len;
358
- if (!rsa_sign_no_self_test(NID_sha256, kRSASignDigest, sizeof(kRSASignDigest),
359
- output, &sig_len, rsa_key) ||
360
- !check_test(kRSASignSignature, output, sizeof(kRSASignSignature),
361
- "RSA-sign KAT")) {
362
- fprintf(stderr, "RSA signing test failed.\n");
363
- goto err;
364
- }
365
-
366
- // RSA Verify KAT
367
-
368
- static const uint8_t kRSAVerifyDigest[32] = {
369
- 0x09, 0x65, 0x2f, 0xd8, 0xed, 0x9d, 0xc2, 0x6d, 0xbc, 0xbf, 0xf2,
370
- 0xa7, 0xa5, 0xed, 0xe1, 0x37, 0x13, 0x78, 0x21, 0x36, 0xcf, 0x8d,
371
- 0x22, 0x3d, 0xab, 0x93, 0xb4, 0x12, 0xa8, 0xb5, 0x15, 0x53,
372
- };
373
- static const uint8_t kRSAVerifySignature[256] = {
374
- 0xab, 0xe2, 0xcb, 0xc1, 0x3d, 0x6b, 0xd3, 0x9d, 0x48, 0xdb, 0x53, 0x34,
375
- 0xdd, 0xbf, 0x8d, 0x07, 0x0a, 0x93, 0xbd, 0xcb, 0x10, 0x4e, 0x2c, 0xc5,
376
- 0xd0, 0xee, 0x48, 0x6e, 0xe2, 0x95, 0xf6, 0xb3, 0x1b, 0xda, 0x12, 0x6c,
377
- 0x41, 0x89, 0x0b, 0x98, 0xb7, 0x3e, 0x70, 0xe6, 0xb6, 0x5d, 0x82, 0xf9,
378
- 0x5c, 0x66, 0x31, 0x21, 0x75, 0x5a, 0x90, 0x74, 0x4c, 0x8d, 0x1c, 0x21,
379
- 0x14, 0x8a, 0x19, 0x60, 0xbe, 0x0e, 0xca, 0x44, 0x6e, 0x9f, 0xf4, 0x97,
380
- 0xf1, 0x34, 0x5c, 0x53, 0x7e, 0xf8, 0x11, 0x9b, 0x9a, 0x43, 0x98, 0xe9,
381
- 0x5c, 0x5c, 0x6d, 0xe2, 0xb1, 0xc9, 0x55, 0x90, 0x5c, 0x52, 0x99, 0xd8,
382
- 0xce, 0x7a, 0x3b, 0x6a, 0xb7, 0x63, 0x80, 0xd9, 0xba, 0xbd, 0xd1, 0x5f,
383
- 0x61, 0x02, 0x37, 0xe1, 0xf3, 0xf2, 0xaa, 0x1c, 0x1f, 0x1e, 0x77, 0x0b,
384
- 0x62, 0xfb, 0xb5, 0x96, 0x38, 0x1b, 0x2e, 0xbd, 0xd7, 0x7e, 0xce, 0xf9,
385
- 0xc9, 0x0d, 0x4c, 0x92, 0xf7, 0xb6, 0xb0, 0x5f, 0xed, 0x29, 0x36, 0x28,
386
- 0x5f, 0xa9, 0x48, 0x26, 0xe6, 0x20, 0x55, 0x32, 0x2a, 0x33, 0xb6, 0xf0,
387
- 0x4c, 0x74, 0xce, 0x69, 0xe5, 0xd8, 0xd7, 0x37, 0xfb, 0x83, 0x8b, 0x79,
388
- 0xd2, 0xd4, 0x8e, 0x3d, 0xaf, 0x71, 0x38, 0x75, 0x31, 0x88, 0x25, 0x31,
389
- 0xa9, 0x5a, 0xc9, 0x64, 0xd0, 0x2e, 0xa4, 0x13, 0xbf, 0x85, 0x95, 0x29,
390
- 0x82, 0xbb, 0xc0, 0x89, 0x52, 0x7d, 0xaf, 0xf5, 0xb8, 0x45, 0xc9, 0xa0,
391
- 0xf4, 0xd1, 0x4e, 0xf1, 0x95, 0x6d, 0x9c, 0x3a, 0xca, 0xe8, 0x82, 0xd1,
392
- 0x2d, 0xa6, 0x6d, 0xa0, 0xf3, 0x57, 0x94, 0xf5, 0xee, 0x32, 0x23, 0x23,
393
- 0x33, 0x51, 0x7d, 0xb9, 0x31, 0x52, 0x32, 0xa1, 0x83, 0xb9, 0x91, 0x65,
394
- 0x4d, 0xbe, 0xa4, 0x16, 0x15, 0x34, 0x5c, 0x88, 0x53, 0x25, 0x92, 0x67,
395
- 0x44, 0xa5, 0x39, 0x15,
396
- };
397
- if (!rsa_verify_no_self_test(NID_sha256, kRSAVerifyDigest,
398
- sizeof(kRSAVerifyDigest), kRSAVerifySignature,
399
- sizeof(kRSAVerifySignature), rsa_key)) {
400
- fprintf(stderr, "RSA-verify KAT failed.\n");
401
- goto err;
402
- }
403
-
404
- ret = 1;
405
-
406
- err:
407
- RSA_free(rsa_key);
408
-
409
- return ret;
410
- }
411
-
412
- static int boringssl_self_test_ecc(void) {
413
- int ret = 0;
414
- EC_KEY *ec_key = NULL;
415
- EC_POINT *ec_point_in = NULL;
416
- EC_POINT *ec_point_out = NULL;
417
- BIGNUM *ec_scalar = NULL;
418
- ECDSA_SIG *sig = NULL;
419
-
420
- ec_key = self_test_ecdsa_key();
421
- if (ec_key == NULL) {
422
- fprintf(stderr, "ECDSA KeyGen failed\n");
423
- goto err;
424
- }
425
-
426
- // ECDSA Sign/Verify KAT
427
-
428
- static const uint8_t kECDSASignDigest[32] = {
429
- 0x1e, 0x35, 0x93, 0x0b, 0xe8, 0x60, 0xd0, 0x94, 0x2c, 0xa7, 0xbb,
430
- 0xd6, 0xf6, 0xde, 0xd8, 0x7f, 0x15, 0x7e, 0x4d, 0xe2, 0x4f, 0x81,
431
- 0xed, 0x4b, 0x87, 0x5c, 0x0e, 0x01, 0x8e, 0x89, 0xa8, 0x1f,
432
- };
433
- static const uint8_t kECDSASignSig[64] = {
434
- 0x67, 0x80, 0xc5, 0xfc, 0x70, 0x27, 0x5e, 0x2c, 0x70, 0x61, 0xa0,
435
- 0xe7, 0x87, 0x7b, 0xb1, 0x74, 0xde, 0xad, 0xeb, 0x98, 0x87, 0x02,
436
- 0x7f, 0x3f, 0xa8, 0x36, 0x54, 0x15, 0x8b, 0xa7, 0xf5, 0x0c, 0x68,
437
- 0x04, 0x73, 0x40, 0x94, 0xb2, 0xd1, 0x90, 0xac, 0x2d, 0x0c, 0xd7,
438
- 0xa5, 0x7f, 0x2f, 0x2e, 0xb2, 0x62, 0xb0, 0x09, 0x16, 0xe1, 0xa6,
439
- 0x70, 0xb5, 0xbb, 0x0d, 0xfd, 0x8e, 0x0c, 0x02, 0x3f,
440
- };
441
-
442
- // The 'k' value for ECDSA is fixed to avoid an entropy draw.
443
- uint8_t ecdsa_k[32] = {0};
444
- ecdsa_k[31] = 42;
445
-
446
- sig = ecdsa_sign_with_nonce_for_known_answer_test(
447
- kECDSASignDigest, sizeof(kECDSASignDigest), ec_key, ecdsa_k,
448
- sizeof(ecdsa_k));
449
-
450
- uint8_t ecdsa_sign_output[64];
451
- if (sig == NULL ||
452
- !serialize_ecdsa_sig(ecdsa_sign_output, sizeof(ecdsa_sign_output), sig) ||
453
- !check_test(kECDSASignSig, ecdsa_sign_output, sizeof(ecdsa_sign_output),
454
- "ECDSA-sign signature")) {
455
- fprintf(stderr, "ECDSA-sign KAT failed.\n");
456
- goto err;
457
- }
458
-
459
- static const uint8_t kECDSAVerifyDigest[32] = {
460
- 0x78, 0x7c, 0x50, 0x5c, 0x60, 0xc9, 0xe4, 0x13, 0x6c, 0xe4, 0x48,
461
- 0xba, 0x93, 0xff, 0x71, 0xfa, 0x9c, 0x18, 0xf4, 0x17, 0x09, 0x4f,
462
- 0xdf, 0x5a, 0xe2, 0x75, 0xc0, 0xcc, 0xd2, 0x67, 0x97, 0xad,
463
- };
464
- static const uint8_t kECDSAVerifySig[64] = {
465
- 0x67, 0x80, 0xc5, 0xfc, 0x70, 0x27, 0x5e, 0x2c, 0x70, 0x61, 0xa0,
466
- 0xe7, 0x87, 0x7b, 0xb1, 0x74, 0xde, 0xad, 0xeb, 0x98, 0x87, 0x02,
467
- 0x7f, 0x3f, 0xa8, 0x36, 0x54, 0x15, 0x8b, 0xa7, 0xf5, 0x0c, 0x2d,
468
- 0x36, 0xe5, 0x79, 0x97, 0x90, 0xbf, 0xbe, 0x21, 0x83, 0xd3, 0x3e,
469
- 0x96, 0xf3, 0xc5, 0x1f, 0x6a, 0x23, 0x2f, 0x2a, 0x24, 0x48, 0x8c,
470
- 0x8e, 0x5f, 0x64, 0xc3, 0x7e, 0xa2, 0xcf, 0x05, 0x29,
471
- };
472
-
473
- ECDSA_SIG_free(sig);
474
- sig = parse_ecdsa_sig(kECDSAVerifySig, sizeof(kECDSAVerifySig));
475
- if (!sig ||
476
- !ecdsa_do_verify_no_self_test(kECDSAVerifyDigest,
477
- sizeof(kECDSAVerifyDigest), sig, ec_key)) {
478
- fprintf(stderr, "ECDSA-verify KAT failed.\n");
479
- goto err;
480
- }
481
-
482
- // Primitive Z Computation KAT (IG 9.6).
483
-
484
- // kP256Point is SHA256("Primitive Z Computation KAT")×G within P-256.
485
- static const uint8_t kP256Point[65] = {
486
- 0x04, 0x4e, 0xc1, 0x94, 0x8c, 0x5c, 0xf4, 0x37, 0x35, 0x0d, 0xa3,
487
- 0xf9, 0x55, 0xf9, 0x8b, 0x26, 0x23, 0x5c, 0x43, 0xe0, 0x83, 0x51,
488
- 0x2b, 0x0d, 0x4b, 0x56, 0x24, 0xc3, 0xe4, 0xa5, 0xa8, 0xe2, 0xe9,
489
- 0x95, 0xf2, 0xc4, 0xb9, 0xb7, 0x48, 0x7d, 0x2a, 0xae, 0xc5, 0xc0,
490
- 0x0a, 0xcc, 0x1b, 0xd0, 0xec, 0xb8, 0xdc, 0xbe, 0x0c, 0xbe, 0x52,
491
- 0x79, 0x93, 0x7c, 0x0b, 0x92, 0x2b, 0x7f, 0x17, 0xa5, 0x80,
492
- };
493
- // kP256Scalar is SHA256("Primitive Z Computation KAT scalar").
494
- static const uint8_t kP256Scalar[32] = {
495
- 0xe7, 0x60, 0x44, 0x91, 0x26, 0x9a, 0xfb, 0x5b, 0x10, 0x2d, 0x6e,
496
- 0xa5, 0x2c, 0xb5, 0x9f, 0xeb, 0x70, 0xae, 0xde, 0x6c, 0xe3, 0xbf,
497
- 0xb3, 0xe0, 0x10, 0x54, 0x85, 0xab, 0xd8, 0x61, 0xd7, 0x7b,
498
- };
499
- // kP256PointResult is |kP256Scalar|×|kP256Point|.
500
- static const uint8_t kP256PointResult[65] = {
501
- 0x04, 0xf1, 0x63, 0x00, 0x88, 0xc5, 0xd5, 0xe9, 0x05, 0x52, 0xac,
502
- 0xb6, 0xec, 0x68, 0x76, 0xb8, 0x73, 0x7f, 0x0f, 0x72, 0x34, 0xe6,
503
- 0xbb, 0x30, 0x32, 0x22, 0x37, 0xb6, 0x2a, 0x80, 0xe8, 0x9e, 0x6e,
504
- 0x6f, 0x36, 0x02, 0xe7, 0x21, 0xd2, 0x31, 0xdb, 0x94, 0x63, 0xb7,
505
- 0xd8, 0x19, 0x0e, 0xc2, 0xc0, 0xa7, 0x2f, 0x15, 0x49, 0x1a, 0xa2,
506
- 0x7c, 0x41, 0x8f, 0xaf, 0x9c, 0x40, 0xaf, 0x2e, 0x4a, 0x0c,
507
- };
508
-
509
- const EC_GROUP *ec_group = EC_group_p256();
510
- ec_point_in = EC_POINT_new(ec_group);
511
- ec_point_out = EC_POINT_new(ec_group);
512
- ec_scalar = BN_new();
513
- uint8_t z_comp_result[65];
514
- if (ec_point_in == NULL || ec_point_out == NULL || ec_scalar == NULL ||
515
- !EC_POINT_oct2point(ec_group, ec_point_in, kP256Point, sizeof(kP256Point),
516
- NULL) ||
517
- !BN_bin2bn(kP256Scalar, sizeof(kP256Scalar), ec_scalar) ||
518
- !ec_point_mul_no_self_test(ec_group, ec_point_out, NULL, ec_point_in,
519
- ec_scalar, NULL) ||
520
- !EC_POINT_point2oct(ec_group, ec_point_out, POINT_CONVERSION_UNCOMPRESSED,
521
- z_comp_result, sizeof(z_comp_result), NULL) ||
522
- !check_test(kP256PointResult, z_comp_result, sizeof(z_comp_result),
523
- "Z Computation Result")) {
524
- fprintf(stderr, "Z-computation KAT failed.\n");
525
- goto err;
526
- }
527
-
528
- ret = 1;
529
-
530
- err:
531
- EC_KEY_free(ec_key);
532
- EC_POINT_free(ec_point_in);
533
- EC_POINT_free(ec_point_out);
534
- BN_free(ec_scalar);
535
- ECDSA_SIG_free(sig);
536
-
537
- return ret;
538
- }
539
-
540
- static int boringssl_self_test_ffdh(void) {
541
- int ret = 0;
542
- DH *dh = NULL;
543
- BIGNUM *ffdhe2048_value = NULL;
544
-
545
- // FFC Diffie-Hellman KAT
546
-
547
- // kFFDHE2048PublicValueData is an arbitrary public value, mod
548
- // kFFDHE2048Data. (The private key happens to be 4096.)
549
- static const BN_ULONG kFFDHE2048PublicValueData[] = {
550
- TOBN(0x187be36b, 0xd38a4fa1), TOBN(0x0a152f39, 0x6458f3b8),
551
- TOBN(0x0570187e, 0xc422eeb7), TOBN(0x18af7482, 0x91173f2a),
552
- TOBN(0xe9fdac6a, 0xcff4eaaa), TOBN(0xf6afebb7, 0x6e589d6c),
553
- TOBN(0xf92f8e9a, 0xb7e33fb0), TOBN(0x70acf2aa, 0x4cf36ddd),
554
- TOBN(0x561ab426, 0xd07137fd), TOBN(0x5f57d037, 0x430ee91e),
555
- TOBN(0xe3e768c8, 0x60d10b8a), TOBN(0xb14884d8, 0xa18af8ce),
556
- TOBN(0xf8a98014, 0xa12b74e4), TOBN(0x748d407c, 0x3437b7a8),
557
- TOBN(0x627588c4, 0x9875d5a7), TOBN(0xdd24a127, 0x53c8f09d),
558
- TOBN(0x85a997d5, 0x0cd51aec), TOBN(0x44f0c619, 0xce348458),
559
- TOBN(0x9b894b24, 0x5f6b69a1), TOBN(0xae1302f2, 0xf6d4777e),
560
- TOBN(0xe6678eeb, 0x375db18e), TOBN(0x2674e1d6, 0x4fbcbdc8),
561
- TOBN(0xb297a823, 0x6fa93d28), TOBN(0x6a12fb70, 0x7c8c0510),
562
- TOBN(0x5c6d1aeb, 0xdb06f65b), TOBN(0xe8c2954e, 0x4c1804ca),
563
- TOBN(0x06bdeac1, 0xf5500fa7), TOBN(0x6a315604, 0x189cd76b),
564
- TOBN(0xbae7b0b3, 0x6e362dc0), TOBN(0xa57c73bd, 0xdc70fb82),
565
- TOBN(0xfaff50d2, 0x9d573457), TOBN(0x352bd399, 0xbe84058e),
566
- };
567
- static const uint8_t kDHOutput[2048 / 8] = {
568
- 0x2a, 0xe6, 0xd3, 0xa6, 0x13, 0x58, 0x8e, 0xce, 0x53, 0xaa, 0xf6, 0x5d,
569
- 0x9a, 0xae, 0x02, 0x12, 0xf5, 0x80, 0x3d, 0x06, 0x09, 0x76, 0xac, 0x57,
570
- 0x37, 0x9e, 0xab, 0x38, 0x62, 0x25, 0x05, 0x1d, 0xf3, 0xa9, 0x39, 0x60,
571
- 0xf6, 0xae, 0x90, 0xed, 0x1e, 0xad, 0x6e, 0xe9, 0xe3, 0xba, 0x27, 0xf6,
572
- 0xdb, 0x54, 0xdf, 0xe2, 0xbd, 0xbb, 0x7f, 0xf1, 0x81, 0xac, 0x1a, 0xfa,
573
- 0xdb, 0x87, 0x07, 0x98, 0x76, 0x90, 0x21, 0xf2, 0xae, 0xda, 0x0d, 0x84,
574
- 0x97, 0x64, 0x0b, 0xbf, 0xb8, 0x8d, 0x10, 0x46, 0xe2, 0xd5, 0xca, 0x1b,
575
- 0xbb, 0xe5, 0x37, 0xb2, 0x3b, 0x35, 0xd3, 0x1b, 0x65, 0xea, 0xae, 0xf2,
576
- 0x03, 0xe2, 0xb6, 0xde, 0x22, 0xb7, 0x86, 0x49, 0x79, 0xfe, 0xd7, 0x16,
577
- 0xf7, 0xdc, 0x9c, 0x59, 0xf5, 0xb7, 0x70, 0xc0, 0x53, 0x42, 0x6f, 0xb1,
578
- 0xd2, 0x4e, 0x00, 0x25, 0x4b, 0x2d, 0x5a, 0x9b, 0xd0, 0xe9, 0x27, 0x43,
579
- 0xcc, 0x00, 0x66, 0xea, 0x94, 0x7a, 0x0b, 0xb9, 0x89, 0x0c, 0x5e, 0x94,
580
- 0xb8, 0x3a, 0x78, 0x9c, 0x4d, 0x84, 0xe6, 0x32, 0x2c, 0x38, 0x7c, 0xf7,
581
- 0x43, 0x9c, 0xd8, 0xb8, 0x1c, 0xce, 0x24, 0x91, 0x20, 0x67, 0x7a, 0x54,
582
- 0x1f, 0x7e, 0x86, 0x7f, 0xa1, 0xc1, 0x03, 0x4e, 0x2c, 0x26, 0x71, 0xb2,
583
- 0x06, 0x30, 0xb3, 0x6c, 0x15, 0xcc, 0xac, 0x25, 0xe5, 0x37, 0x3f, 0x24,
584
- 0x8f, 0x2a, 0x89, 0x5e, 0x3d, 0x43, 0x94, 0xc9, 0x36, 0xae, 0x40, 0x00,
585
- 0x6a, 0x0d, 0xb0, 0x6e, 0x8b, 0x2e, 0x70, 0x57, 0xe1, 0x88, 0x53, 0xd6,
586
- 0x06, 0x80, 0x2a, 0x4e, 0x5a, 0xf0, 0x1e, 0xaa, 0xcb, 0xab, 0x06, 0x0e,
587
- 0x27, 0x0f, 0xd9, 0x88, 0xd9, 0x01, 0xe3, 0x07, 0xeb, 0xdf, 0xc3, 0x12,
588
- 0xe3, 0x40, 0x88, 0x7b, 0x5f, 0x59, 0x78, 0x6e, 0x26, 0x20, 0xc3, 0xdf,
589
- 0xc8, 0xe4, 0x5e, 0xb8,
590
- };
591
-
592
- ffdhe2048_value = BN_new();
593
- if (ffdhe2048_value) {
594
- bn_set_static_words(ffdhe2048_value, kFFDHE2048PublicValueData,
595
- OPENSSL_ARRAY_SIZE(kFFDHE2048PublicValueData));
596
- }
597
-
598
- dh = self_test_dh();
599
- uint8_t dh_out[sizeof(kDHOutput)];
600
- if (dh == NULL || ffdhe2048_value == NULL || sizeof(dh_out) != DH_size(dh) ||
601
- dh_compute_key_padded_no_self_test(dh_out, ffdhe2048_value, dh) !=
602
- sizeof(dh_out) ||
603
- !check_test(kDHOutput, dh_out, sizeof(dh_out), "FFC DH")) {
604
- fprintf(stderr, "FFDH failed.\n");
605
- goto err;
606
- }
607
-
608
- ret = 1;
609
-
610
- err:
611
- DH_free(dh);
612
- BN_free(ffdhe2048_value);
613
-
614
- return ret;
615
- }
616
-
617
- #if defined(BORINGSSL_FIPS)
618
-
619
- static void run_self_test_rsa(void) {
620
- FIPS_service_indicator_lock_state();
621
- if (!boringssl_self_test_rsa()) {
622
- BORINGSSL_FIPS_abort();
623
- }
624
- FIPS_service_indicator_unlock_state();
625
- }
626
-
627
- DEFINE_STATIC_ONCE(g_self_test_once_rsa);
628
-
629
- void boringssl_ensure_rsa_self_test(void) {
630
- CRYPTO_once(g_self_test_once_rsa_bss_get(), run_self_test_rsa);
631
- }
632
-
633
- static void run_self_test_ecc(void) {
634
- FIPS_service_indicator_lock_state();
635
- if (!boringssl_self_test_ecc()) {
636
- BORINGSSL_FIPS_abort();
637
- }
638
- FIPS_service_indicator_unlock_state();
639
- }
640
-
641
- DEFINE_STATIC_ONCE(g_self_test_once_ecc);
642
-
643
- void boringssl_ensure_ecc_self_test(void) {
644
- CRYPTO_once(g_self_test_once_ecc_bss_get(), run_self_test_ecc);
645
- }
646
-
647
- static void run_self_test_ffdh(void) {
648
- FIPS_service_indicator_lock_state();
649
- if (!boringssl_self_test_ffdh()) {
650
- BORINGSSL_FIPS_abort();
651
- }
652
- FIPS_service_indicator_unlock_state();
653
- }
654
-
655
- DEFINE_STATIC_ONCE(g_self_test_once_ffdh);
656
-
657
- void boringssl_ensure_ffdh_self_test(void) {
658
- CRYPTO_once(g_self_test_once_ffdh_bss_get(), run_self_test_ffdh);
659
- }
660
-
661
- #endif // BORINGSSL_FIPS
662
-
663
-
664
- // Startup self tests.
665
- //
666
- // These tests are run at process start when in FIPS mode.
667
-
668
- int boringssl_self_test_sha256(void) {
669
- static const uint8_t kInput[16] = {
670
- 0xff, 0x3b, 0x85, 0x7d, 0xa7, 0x23, 0x6a, 0x2b,
671
- 0xaa, 0x0f, 0x39, 0x6b, 0x51, 0x52, 0x22, 0x17,
672
- };
673
- static const uint8_t kPlaintextSHA256[32] = {
674
- 0x7f, 0xe4, 0xd5, 0xf1, 0xa1, 0xe3, 0x82, 0x87, 0xd9, 0x58, 0xf5,
675
- 0x11, 0xc7, 0x1d, 0x5e, 0x27, 0x5e, 0xcc, 0xd2, 0x66, 0xcf, 0xb9,
676
- 0xc8, 0xc6, 0x60, 0xd8, 0x92, 0x1e, 0x57, 0xfd, 0x46, 0x75,
677
- };
678
- uint8_t output[SHA256_DIGEST_LENGTH];
679
-
680
- // SHA-256 KAT
681
- SHA256(kInput, sizeof(kInput), output);
682
- return check_test(kPlaintextSHA256, output, sizeof(kPlaintextSHA256),
683
- "SHA-256 KAT");
684
- }
685
-
686
- int boringssl_self_test_sha512(void) {
687
- static const uint8_t kInput[16] = {
688
- 0x21, 0x25, 0x12, 0xf8, 0xd2, 0xad, 0x83, 0x22,
689
- 0x78, 0x1c, 0x6c, 0x4d, 0x69, 0xa9, 0xda, 0xa1,
690
- };
691
- static const uint8_t kPlaintextSHA512[64] = {
692
- 0x29, 0x3c, 0x94, 0x35, 0x4e, 0x98, 0x83, 0xe5, 0xc2, 0x78, 0x36,
693
- 0x7a, 0xe5, 0x18, 0x90, 0xbf, 0x35, 0x41, 0x01, 0x64, 0x19, 0x8d,
694
- 0x26, 0xeb, 0xe1, 0xf8, 0x2f, 0x04, 0x8e, 0xfa, 0x8b, 0x2b, 0xc6,
695
- 0xb2, 0x9d, 0x5d, 0x46, 0x76, 0x5a, 0xc8, 0xb5, 0x25, 0xa3, 0xea,
696
- 0x52, 0x84, 0x47, 0x6d, 0x6d, 0xf4, 0xc9, 0x71, 0xf3, 0x3d, 0x89,
697
- 0x4c, 0x3b, 0x20, 0x8c, 0x5b, 0x75, 0xe8, 0xf8, 0x7c,
698
- };
699
- uint8_t output[SHA512_DIGEST_LENGTH];
700
-
701
- // SHA-512 KAT
702
- SHA512(kInput, sizeof(kInput), output);
703
- return check_test(kPlaintextSHA512, output, sizeof(kPlaintextSHA512),
704
- "SHA-512 KAT");
705
- }
706
-
707
- int boringssl_self_test_hmac_sha256(void) {
708
- static const uint8_t kInput[16] = {
709
- 0xda, 0xd9, 0x12, 0x93, 0xdf, 0xcf, 0x2a, 0x7c,
710
- 0x8e, 0xcd, 0x13, 0xfe, 0x35, 0x3f, 0xa7, 0x5b,
711
- };
712
- static const uint8_t kPlaintextHMACSHA256[32] = {
713
- 0x36, 0x5f, 0x5b, 0xd5, 0xf5, 0xeb, 0xfd, 0xc7, 0x6e, 0x53, 0xa5,
714
- 0x73, 0x6d, 0x73, 0x20, 0x13, 0xaa, 0xd3, 0xbc, 0x86, 0x4b, 0xb8,
715
- 0x84, 0x94, 0x16, 0x46, 0x88, 0x9c, 0x48, 0xee, 0xa9, 0x0e,
716
- };
717
- uint8_t output[EVP_MAX_MD_SIZE];
718
-
719
- unsigned output_len;
720
- HMAC(EVP_sha256(), kInput, sizeof(kInput), kInput, sizeof(kInput), output,
721
- &output_len);
722
- return output_len == sizeof(kPlaintextHMACSHA256) &&
723
- check_test(kPlaintextHMACSHA256, output, sizeof(kPlaintextHMACSHA256),
724
- "HMAC-SHA-256 KAT");
725
- }
726
-
727
- static int boringssl_self_test_fast(void) {
728
- static const uint8_t kAESKey[16] = "BoringCrypto Key";
729
- static const uint8_t kAESIV[16] = {0};
730
-
731
- EVP_AEAD_CTX aead_ctx;
732
- EVP_AEAD_CTX_zero(&aead_ctx);
733
- int ret = 0;
734
-
735
- AES_KEY aes_key;
736
- uint8_t aes_iv[16];
737
- uint8_t output[256];
738
-
739
- // AES-CBC Encryption KAT
740
- static const uint8_t kAESCBCEncPlaintext[32] = {
741
- 0x07, 0x86, 0x09, 0xa6, 0xc5, 0xac, 0x25, 0x44, 0x69, 0x9a, 0xdf,
742
- 0x68, 0x2f, 0xa3, 0x77, 0xf9, 0xbe, 0x8a, 0xb6, 0xae, 0xf5, 0x63,
743
- 0xe8, 0xc5, 0x6a, 0x36, 0xb8, 0x4f, 0x55, 0x7f, 0xad, 0xd3,
744
- };
745
- static const uint8_t kAESCBCEncCiphertext[sizeof(kAESCBCEncPlaintext)] = {
746
- 0x56, 0x46, 0xc1, 0x41, 0xf4, 0x13, 0xd6, 0xff, 0x62, 0x92, 0x41,
747
- 0x7a, 0x26, 0xc6, 0x86, 0xbd, 0x30, 0x5f, 0xb6, 0x57, 0xa7, 0xd2,
748
- 0x50, 0x3a, 0xc5, 0x5e, 0x8e, 0x93, 0x40, 0xf2, 0x10, 0xd8,
749
- };
750
- memcpy(aes_iv, kAESIV, sizeof(kAESIV));
751
- if (AES_set_encrypt_key(kAESKey, 8 * sizeof(kAESKey), &aes_key) != 0) {
752
- fprintf(stderr, "AES_set_encrypt_key failed.\n");
753
- goto err;
754
- }
755
- AES_cbc_encrypt(kAESCBCEncPlaintext, output, sizeof(kAESCBCEncPlaintext),
756
- &aes_key, aes_iv, AES_ENCRYPT);
757
- if (!check_test(kAESCBCEncCiphertext, output, sizeof(kAESCBCEncCiphertext),
758
- "AES-CBC-encrypt KAT")) {
759
- goto err;
760
- }
761
-
762
- // AES-CBC Decryption KAT
763
- static const uint8_t kAESCBCDecCiphertext[32] = {
764
- 0x34, 0x7a, 0xa5, 0xa0, 0x24, 0xb2, 0x82, 0x57, 0xb3, 0x65, 0x10,
765
- 0xbe, 0x58, 0x3d, 0x4f, 0x47, 0xad, 0xb7, 0xbb, 0xee, 0xdc, 0x60,
766
- 0x05, 0xbb, 0xbd, 0x0d, 0x0a, 0x9f, 0x06, 0xbb, 0x7b, 0x10,
767
- };
768
- static const uint8_t kAESCBCDecPlaintext[sizeof(kAESCBCDecCiphertext)] = {
769
- 0x51, 0xa7, 0xa0, 0x1f, 0x6b, 0x79, 0x6c, 0xcd, 0x48, 0x03, 0xa1,
770
- 0x41, 0xdc, 0x56, 0xa6, 0xc2, 0x16, 0xb5, 0xd1, 0xd3, 0xb7, 0x06,
771
- 0xb2, 0x25, 0x6f, 0xa6, 0xd0, 0xd2, 0x0e, 0x6f, 0x19, 0xb5,
772
- };
773
- memcpy(aes_iv, kAESIV, sizeof(kAESIV));
774
- if (AES_set_decrypt_key(kAESKey, 8 * sizeof(kAESKey), &aes_key) != 0) {
775
- fprintf(stderr, "AES_set_decrypt_key failed.\n");
776
- goto err;
777
- }
778
- AES_cbc_encrypt(kAESCBCDecCiphertext, output, sizeof(kAESCBCDecCiphertext),
779
- &aes_key, aes_iv, AES_DECRYPT);
780
- if (!check_test(kAESCBCDecPlaintext, output, sizeof(kAESCBCDecPlaintext),
781
- "AES-CBC-decrypt KAT")) {
782
- goto err;
783
- }
784
-
785
- size_t out_len;
786
- uint8_t nonce[EVP_AEAD_MAX_NONCE_LENGTH];
787
- OPENSSL_memset(nonce, 0, sizeof(nonce));
788
- if (!EVP_AEAD_CTX_init(&aead_ctx, EVP_aead_aes_128_gcm(), kAESKey,
789
- sizeof(kAESKey), 0, NULL)) {
790
- fprintf(stderr, "EVP_AEAD_CTX_init for AES-128-GCM failed.\n");
791
- goto err;
792
- }
793
-
794
- // AES-GCM Encryption KAT
795
- static const uint8_t kAESGCMEncPlaintext[32] = {
796
- 0x8f, 0xcc, 0x40, 0x99, 0x80, 0x8e, 0x75, 0xca, 0xaf, 0xf5, 0x82,
797
- 0x89, 0x88, 0x48, 0xa8, 0x8d, 0x80, 0x8b, 0x55, 0xab, 0x4e, 0x93,
798
- 0x70, 0x79, 0x7d, 0x94, 0x0b, 0xe8, 0xcc, 0x1d, 0x78, 0x84,
799
- };
800
- static const uint8_t kAESGCMCiphertext[sizeof(kAESGCMEncPlaintext) + 16] = {
801
- 0x87, 0x7b, 0xd5, 0x8d, 0x96, 0x3e, 0x4b, 0xe6, 0x64, 0x94, 0x40, 0x2f,
802
- 0x61, 0x9b, 0x7e, 0x56, 0x52, 0x7d, 0xa4, 0x5a, 0xf9, 0xa6, 0xe2, 0xdb,
803
- 0x1c, 0x63, 0x2e, 0x97, 0x93, 0x0f, 0xfb, 0xed, 0xb5, 0x9e, 0x1c, 0x20,
804
- 0xb2, 0xb0, 0x58, 0xda, 0x48, 0x07, 0x2d, 0xbd, 0x96, 0x0d, 0x34, 0xc6,
805
- };
806
- if (!EVP_AEAD_CTX_seal(&aead_ctx, output, &out_len, sizeof(output), nonce,
807
- EVP_AEAD_nonce_length(EVP_aead_aes_128_gcm()),
808
- kAESGCMEncPlaintext, sizeof(kAESGCMEncPlaintext), NULL,
809
- 0) ||
810
- !check_test(kAESGCMCiphertext, output, sizeof(kAESGCMCiphertext),
811
- "AES-GCM-encrypt KAT")) {
812
- fprintf(stderr, "EVP_AEAD_CTX_seal for AES-128-GCM failed.\n");
813
- goto err;
814
- }
815
-
816
- // AES-GCM Decryption KAT
817
- static const uint8_t kAESGCMDecCiphertext[48] = {
818
- 0x35, 0xf3, 0x05, 0x8f, 0x87, 0x57, 0x60, 0xff, 0x09, 0xd3, 0x12, 0x0f,
819
- 0x70, 0xc4, 0xbc, 0x9e, 0xd7, 0xa8, 0x68, 0x72, 0xe1, 0x34, 0x52, 0x20,
820
- 0x21, 0x76, 0xf7, 0x37, 0x1a, 0xe0, 0x4f, 0xaa, 0xe1, 0xdd, 0x39, 0x19,
821
- 0x20, 0xf5, 0xd1, 0x39, 0x53, 0xd8, 0x96, 0x78, 0x59, 0x94, 0x82, 0x3c,
822
- };
823
- static const uint8_t kAESGCMDecPlaintext[sizeof(kAESGCMDecCiphertext) - 16] =
824
- {
825
- 0x3d, 0x44, 0x90, 0x9b, 0x91, 0xe7, 0x5e, 0xd3, 0xc2, 0xb2, 0xd0,
826
- 0xa9, 0x99, 0x17, 0x6a, 0x45, 0x05, 0x5e, 0x99, 0x83, 0x56, 0x01,
827
- 0xc0, 0x82, 0x40, 0x81, 0xd2, 0x48, 0x45, 0xf2, 0xcc, 0xc3,
828
- };
829
- if (!EVP_AEAD_CTX_open(&aead_ctx, output, &out_len, sizeof(output), nonce,
830
- EVP_AEAD_nonce_length(EVP_aead_aes_128_gcm()),
831
- kAESGCMDecCiphertext, sizeof(kAESGCMDecCiphertext),
832
- NULL, 0) ||
833
- !check_test(kAESGCMDecPlaintext, output, sizeof(kAESGCMDecPlaintext),
834
- "AES-GCM-decrypt KAT")) {
835
- fprintf(stderr,
836
- "AES-GCM-decrypt KAT failed because EVP_AEAD_CTX_open failed.\n");
837
- goto err;
838
- }
839
-
840
- // SHA-1 KAT
841
- static const uint8_t kSHA1Input[16] = {
842
- 0x13, 0x2f, 0xd9, 0xba, 0xd5, 0xc1, 0x82, 0x62,
843
- 0x63, 0xba, 0xfb, 0xb6, 0x99, 0xf7, 0x07, 0xa5,
844
- };
845
- static const uint8_t kSHA1Digest[20] = {
846
- 0x94, 0x19, 0x55, 0x93, 0x0a, 0x58, 0x29, 0x38, 0xeb, 0xf5,
847
- 0x09, 0x11, 0x6d, 0x1a, 0xfd, 0x0f, 0x1e, 0x11, 0xe3, 0xcb,
848
- };
849
- SHA1(kSHA1Input, sizeof(kSHA1Input), output);
850
- if (!check_test(kSHA1Digest, output, sizeof(kSHA1Digest),
851
- "SHA-1 KAT")) {
852
- goto err;
853
- }
854
-
855
- if (!boringssl_self_test_sha256() ||
856
- !boringssl_self_test_sha512() ||
857
- !boringssl_self_test_hmac_sha256()) {
858
- goto err;
859
- }
860
-
861
- // DBRG KAT
862
- static const uint8_t kDRBGEntropy[48] = {
863
- 0xc4, 0xda, 0x07, 0x40, 0xd5, 0x05, 0xf1, 0xee, 0x28, 0x0b, 0x95, 0xe5,
864
- 0x8c, 0x49, 0x31, 0xac, 0x6d, 0xe8, 0x46, 0xa0, 0x15, 0x2f, 0xbb, 0x4a,
865
- 0x3f, 0x17, 0x4c, 0xf4, 0x78, 0x7a, 0x4f, 0x1a, 0x40, 0xc2, 0xb5, 0x0b,
866
- 0xab, 0xe1, 0x4a, 0xae, 0x53, 0x0b, 0xe5, 0x88, 0x6d, 0x91, 0x0a, 0x27,
867
- };
868
- static const uint8_t kDRBGPersonalization[18] = "BCMPersonalization";
869
- static const uint8_t kDRBGAD[16] = "BCM DRBG KAT AD ";
870
- static const uint8_t kDRBGOutput[64] = {
871
- 0x19, 0x1f, 0x2b, 0x49, 0x76, 0x85, 0xfd, 0x51, 0xb6, 0x56, 0xbc,
872
- 0x1c, 0x7d, 0xd5, 0xdd, 0x44, 0x76, 0xa3, 0x5e, 0x17, 0x9b, 0x8e,
873
- 0xb8, 0x98, 0x65, 0x12, 0xca, 0x35, 0x6c, 0xa0, 0x6f, 0xa0, 0x22,
874
- 0xe4, 0xf6, 0xd8, 0x43, 0xed, 0x4e, 0x2d, 0x97, 0x39, 0x43, 0x3b,
875
- 0x57, 0xfc, 0x23, 0x3f, 0x71, 0x0a, 0xe0, 0xed, 0xfe, 0xd5, 0xb8,
876
- 0x67, 0x7a, 0x00, 0x39, 0xb2, 0x6e, 0xa9, 0x25, 0x97,
877
- };
878
- static const uint8_t kDRBGEntropy2[48] = {
879
- 0xc7, 0x16, 0x1c, 0xa3, 0x6c, 0x23, 0x09, 0xb7, 0x16, 0xe9, 0x85, 0x9b,
880
- 0xb9, 0x6c, 0x6d, 0x49, 0xbd, 0xc8, 0x35, 0x21, 0x03, 0xa1, 0x8c, 0xd2,
881
- 0x4e, 0xf4, 0x2e, 0xc9, 0x7e, 0xf4, 0x6b, 0xf4, 0x46, 0xeb, 0x1a, 0x45,
882
- 0x76, 0xc1, 0x86, 0xe9, 0x35, 0x18, 0x03, 0x76, 0x3a, 0x79, 0x12, 0xfe,
883
- };
884
- static const uint8_t kDRBGReseedOutput[64] = {
885
- 0x00, 0xf2, 0x05, 0xaa, 0xfd, 0x11, 0x6c, 0x77, 0xbc, 0x81, 0x86,
886
- 0x99, 0xca, 0x51, 0xcf, 0x80, 0x15, 0x9f, 0x02, 0x9e, 0x0b, 0xcd,
887
- 0x26, 0xc8, 0x4b, 0x87, 0x8a, 0x15, 0x1a, 0xdd, 0xf2, 0xf3, 0xeb,
888
- 0x94, 0x0b, 0x08, 0xc8, 0xc9, 0x57, 0xa4, 0x0b, 0x4b, 0x0f, 0x13,
889
- 0xde, 0x7c, 0x0c, 0x6a, 0xac, 0x34, 0x4a, 0x9a, 0xf2, 0xd0, 0x83,
890
- 0x02, 0x05, 0x17, 0xc9, 0x81, 0x8f, 0x2a, 0x81, 0x92,
891
- };
892
- CTR_DRBG_STATE drbg;
893
- if (!CTR_DRBG_init(&drbg, kDRBGEntropy, kDRBGPersonalization,
894
- sizeof(kDRBGPersonalization)) ||
895
- !CTR_DRBG_generate(&drbg, output, sizeof(kDRBGOutput), kDRBGAD,
896
- sizeof(kDRBGAD)) ||
897
- !check_test(kDRBGOutput, output, sizeof(kDRBGOutput),
898
- "DRBG Generate KAT") ||
899
- !CTR_DRBG_reseed(&drbg, kDRBGEntropy2, kDRBGAD, sizeof(kDRBGAD)) ||
900
- !CTR_DRBG_generate(&drbg, output, sizeof(kDRBGReseedOutput), kDRBGAD,
901
- sizeof(kDRBGAD)) ||
902
- !check_test(kDRBGReseedOutput, output, sizeof(kDRBGReseedOutput),
903
- "DRBG-reseed KAT")) {
904
- fprintf(stderr, "CTR-DRBG failed.\n");
905
- goto err;
906
- }
907
- CTR_DRBG_clear(&drbg);
908
-
909
- CTR_DRBG_STATE kZeroDRBG;
910
- memset(&kZeroDRBG, 0, sizeof(kZeroDRBG));
911
- if (!check_test(&kZeroDRBG, &drbg, sizeof(drbg), "DRBG Clear KAT")) {
912
- goto err;
913
- }
914
-
915
- // TLS KDF KAT
916
- static const char kTLSLabel[] = "FIPS self test";
917
- static const uint8_t kTLSSeed1[16] = {
918
- 0x8f, 0x0d, 0xe8, 0xb6, 0x90, 0x8f, 0xb1, 0xd2,
919
- 0x6d, 0x51, 0xf4, 0x79, 0x18, 0x63, 0x51, 0x65,
920
- };
921
- static const uint8_t kTLSSeed2[16] = {
922
- 0x7d, 0x24, 0x1a, 0x9d, 0x3c, 0x59, 0xbf, 0x3c,
923
- 0x31, 0x1e, 0x2b, 0x21, 0x41, 0x8d, 0x32, 0x81,
924
- };
925
-
926
- static const uint8_t kTLS10Secret[32] = {
927
- 0xab, 0xc3, 0x65, 0x7b, 0x09, 0x4c, 0x76, 0x28, 0xa0, 0xb2, 0x82,
928
- 0x99, 0x6f, 0xe7, 0x5a, 0x75, 0xf4, 0x98, 0x4f, 0xd9, 0x4d, 0x4e,
929
- 0xcc, 0x2f, 0xcf, 0x53, 0xa2, 0xc4, 0x69, 0xa3, 0xf7, 0x31,
930
- };
931
- static const uint8_t kTLS10Output[32] = {
932
- 0x69, 0x7c, 0x4e, 0x2c, 0xee, 0x82, 0xb1, 0xd2, 0x8b, 0xac, 0x90,
933
- 0x7a, 0xa1, 0x8a, 0x81, 0xfe, 0xc5, 0x58, 0x45, 0x57, 0x61, 0x2f,
934
- 0x7a, 0x8d, 0x80, 0xfb, 0x44, 0xd8, 0x81, 0x60, 0xe5, 0xf8,
935
- };
936
- uint8_t tls10_output[sizeof(kTLS10Output)];
937
- if (!CRYPTO_tls1_prf(EVP_md5_sha1(), tls10_output, sizeof(tls10_output),
938
- kTLS10Secret, sizeof(kTLS10Secret), kTLSLabel,
939
- sizeof(kTLSLabel), kTLSSeed1, sizeof(kTLSSeed1),
940
- kTLSSeed2, sizeof(kTLSSeed2)) ||
941
- !check_test(kTLS10Output, tls10_output, sizeof(kTLS10Output),
942
- "TLS10-KDF KAT")) {
943
- fprintf(stderr, "TLS KDF failed.\n");
944
- goto err;
945
- }
946
-
947
- static const uint8_t kTLS12Secret[32] = {
948
- 0xc5, 0x43, 0x8e, 0xe2, 0x6f, 0xd4, 0xac, 0xbd, 0x25, 0x9f, 0xc9,
949
- 0x18, 0x55, 0xdc, 0x69, 0xbf, 0x88, 0x4e, 0xe2, 0x93, 0x22, 0xfc,
950
- 0xbf, 0xd2, 0x96, 0x6a, 0x46, 0x23, 0xd4, 0x2e, 0xc7, 0x81,
951
- };
952
- static const uint8_t kTLS12Output[32] = {
953
- 0xee, 0x4a, 0xcd, 0x3f, 0xa3, 0xd3, 0x55, 0x89, 0x9e, 0x6f, 0xf1,
954
- 0x38, 0x46, 0x9d, 0x2b, 0x33, 0xaa, 0x7f, 0xc4, 0x7f, 0x51, 0x85,
955
- 0x8a, 0xf3, 0x13, 0x84, 0xbf, 0x53, 0x6a, 0x65, 0x37, 0x51,
956
- };
957
- uint8_t tls12_output[sizeof(kTLS12Output)];
958
- if (!CRYPTO_tls1_prf(EVP_sha256(), tls12_output, sizeof(tls12_output),
959
- kTLS12Secret, sizeof(kTLS12Secret), kTLSLabel,
960
- sizeof(kTLSLabel), kTLSSeed1, sizeof(kTLSSeed1),
961
- kTLSSeed2, sizeof(kTLSSeed2)) ||
962
- !check_test(kTLS12Output, tls12_output, sizeof(kTLS12Output),
963
- "TLS12-KDF KAT")) {
964
- fprintf(stderr, "TLS KDF failed.\n");
965
- goto err;
966
- }
967
-
968
- // TLS v1.3: derives a dummy client-early-traffic secret.
969
- static const uint8_t kTLS13Secret[32] = {
970
- 0x02, 0x4a, 0x0d, 0x80, 0xf3, 0x57, 0xf2, 0x49, 0x9a, 0x12, 0x44,
971
- 0xda, 0xc2, 0x6d, 0xab, 0x66, 0xfc, 0x13, 0xed, 0x85, 0xfc, 0xa7,
972
- 0x1d, 0xac, 0xe1, 0x46, 0x21, 0x11, 0x19, 0x52, 0x58, 0x74,
973
- };
974
- static const uint8_t kTLS13Salt[16] = {
975
- 0x54, 0x61, 0x11, 0x36, 0x75, 0x91, 0xf0, 0xf8,
976
- 0x92, 0xec, 0x70, 0xbd, 0x78, 0x2a, 0xef, 0x61,
977
- };
978
- static const uint8_t kTLS13Label[] = "c e traffic";
979
- static const uint8_t kTLS13ClientHelloHash[32] = {
980
- 0x1d, 0xe8, 0x67, 0xed, 0x93, 0x6a, 0x73, 0x65, 0x9b, 0x05, 0xcf,
981
- 0x8a, 0x22, 0x77, 0xb7, 0x37, 0x29, 0xf2, 0x44, 0x94, 0x81, 0x6a,
982
- 0x83, 0x33, 0x7f, 0x09, 0xbb, 0x6c, 0xc2, 0x6f, 0x48, 0x9c,
983
- };
984
- static const uint8_t kTLS13ExpandLabelOutput[32] = {
985
- 0x62, 0x91, 0x52, 0x90, 0x2e, 0xc9, 0xcf, 0x9c, 0x5f, 0x1e, 0x0a,
986
- 0xb7, 0x00, 0x33, 0x42, 0x24, 0xc4, 0xe3, 0xba, 0x01, 0x40, 0x32,
987
- 0x06, 0xab, 0x09, 0x23, 0x8a, 0xdd, 0x01, 0xa4, 0x05, 0xcd,
988
- };
989
- uint8_t tls13_extract_output[32];
990
- size_t tls13_extract_output_len;
991
- uint8_t tls13_expand_label_output[32];
992
- if (!HKDF_extract(tls13_extract_output, &tls13_extract_output_len,
993
- EVP_sha256(), kTLS13Secret, sizeof(kTLS13Secret),
994
- kTLS13Salt, sizeof(kTLS13Salt)) ||
995
- tls13_extract_output_len != sizeof(tls13_extract_output) ||
996
- !CRYPTO_tls13_hkdf_expand_label(
997
- tls13_expand_label_output, sizeof(tls13_expand_label_output),
998
- EVP_sha256(), tls13_extract_output, sizeof(tls13_extract_output),
999
- kTLS13Label, sizeof(kTLS13Label) - 1, kTLS13ClientHelloHash,
1000
- sizeof(kTLS13ClientHelloHash)) ||
1001
- !check_test(kTLS13ExpandLabelOutput, tls13_expand_label_output,
1002
- sizeof(kTLS13ExpandLabelOutput),
1003
- "CRYPTO_tls13_hkdf_expand_label")) {
1004
- fprintf(stderr, "TLS13-KDF failed.\n");
1005
- goto err;
1006
- }
1007
-
1008
- // HKDF
1009
- static const uint8_t kHKDFSecret[32] = {
1010
- 0x68, 0x67, 0x85, 0x04, 0xb9, 0xb3, 0xad, 0xd1, 0x7d, 0x59, 0x67,
1011
- 0xa1, 0xa7, 0xbd, 0x37, 0x99, 0x3f, 0xd8, 0xa3, 0x3c, 0xe7, 0x30,
1012
- 0x30, 0x71, 0xf3, 0x9c, 0x09, 0x6d, 0x16, 0x35, 0xb3, 0xc9,
1013
- };
1014
- static const uint8_t kHKDFSalt[32] = {
1015
- 0x8a, 0xab, 0x18, 0xb4, 0x9b, 0x0a, 0x17, 0xf9, 0xe8, 0xe6, 0x97,
1016
- 0x1a, 0x3d, 0xff, 0xda, 0x9b, 0x26, 0x8b, 0x3d, 0x17, 0x78, 0x0a,
1017
- 0xb3, 0xea, 0x65, 0xdb, 0x2a, 0xc0, 0x29, 0x9c, 0xfa, 0x72,
1018
- };
1019
- static const uint8_t kHKDFInfo[32] = {
1020
- 0xe5, 0x6f, 0xf9, 0xe1, 0x18, 0x5e, 0x64, 0x8c, 0x6c, 0x8f, 0xee,
1021
- 0xc6, 0x93, 0x5a, 0xc5, 0x14, 0x8c, 0xf3, 0xd9, 0x78, 0xd2, 0x3a,
1022
- 0x86, 0xdd, 0x01, 0xdf, 0xb9, 0xe9, 0x5e, 0xe5, 0x1a, 0x56,
1023
- };
1024
- static const uint8_t kHKDFOutput[32] = {
1025
- 0xa6, 0x29, 0xb4, 0xd7, 0xf4, 0xc1, 0x16, 0x64, 0x71, 0x5e, 0xa4,
1026
- 0xa8, 0xe6, 0x60, 0x8c, 0xf3, 0xc1, 0xa5, 0x03, 0xe2, 0x22, 0xf9,
1027
- 0x89, 0xe2, 0x12, 0x18, 0xbe, 0xef, 0x16, 0x86, 0xe0, 0xec,
1028
- };
1029
- uint8_t hkdf_output[sizeof(kHKDFOutput)];
1030
- if (!HKDF(hkdf_output, sizeof(hkdf_output), EVP_sha256(), kHKDFSecret,
1031
- sizeof(kHKDFSecret), kHKDFSalt, sizeof(kHKDFSalt), kHKDFInfo,
1032
- sizeof(kHKDFInfo)) ||
1033
- !check_test(kHKDFOutput, hkdf_output, sizeof(kHKDFOutput), "HKDF")) {
1034
- fprintf(stderr, "HKDF failed.\n");
1035
- goto err;
1036
- }
1037
-
1038
- ret = 1;
1039
-
1040
- err:
1041
- EVP_AEAD_CTX_cleanup(&aead_ctx);
1042
-
1043
- return ret;
1044
- }
1045
-
1046
- int BORINGSSL_self_test(void) {
1047
- if (!boringssl_self_test_fast() ||
1048
- // When requested to run self tests, also run the lazy tests.
1049
- !boringssl_self_test_rsa() ||
1050
- !boringssl_self_test_ecc() ||
1051
- !boringssl_self_test_ffdh()) {
1052
- return 0;
1053
- }
1054
-
1055
- return 1;
1056
- }
1057
-
1058
- #if defined(BORINGSSL_FIPS)
1059
- int boringssl_self_test_startup(void) {
1060
- return boringssl_self_test_fast();
1061
- }
1062
- #endif
1063
-
1064
- #endif // !_MSC_VER