grpc 1.62.0 → 1.68.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Makefile +549 -2065
- data/include/grpc/byte_buffer.h +1 -2
- data/include/grpc/census.h +1 -2
- data/include/grpc/compression.h +2 -4
- data/include/grpc/credentials.h +1221 -0
- data/include/grpc/event_engine/README.md +1 -1
- data/include/grpc/event_engine/event_engine.h +35 -12
- data/include/grpc/event_engine/extensible.h +3 -0
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +2 -3
- data/include/grpc/event_engine/internal/slice_cast.h +1 -1
- data/include/grpc/event_engine/memory_allocator.h +2 -4
- data/include/grpc/event_engine/memory_request.h +18 -1
- data/include/grpc/event_engine/slice.h +2 -5
- data/include/grpc/event_engine/slice_buffer.h +5 -8
- data/include/grpc/grpc.h +9 -10
- data/include/grpc/grpc_audit_logging.h +1 -2
- data/include/grpc/grpc_crl_provider.h +4 -3
- data/include/grpc/grpc_cronet.h +1 -2
- data/include/grpc/grpc_posix.h +2 -4
- data/include/grpc/grpc_security.h +2 -1175
- data/include/grpc/impl/call.h +1 -2
- data/include/grpc/impl/channel_arg_names.h +12 -7
- data/include/grpc/impl/grpc_types.h +2 -4
- data/include/grpc/impl/slice_type.h +0 -1
- data/include/grpc/module.modulemap +3 -0
- data/include/grpc/passive_listener.h +62 -0
- data/include/grpc/slice.h +1 -2
- data/include/grpc/slice_buffer.h +1 -2
- data/include/grpc/support/alloc.h +0 -1
- data/include/grpc/support/json.h +0 -1
- data/include/grpc/support/log.h +36 -63
- data/include/grpc/support/metrics.h +66 -0
- data/include/grpc/support/port_platform.h +31 -1
- data/include/grpc/support/string_util.h +0 -1
- data/include/grpc/support/sync.h +0 -1
- data/include/grpc/support/sync_abseil.h +0 -1
- data/include/grpc/support/sync_custom.h +0 -1
- data/include/grpc/support/sync_generic.h +3 -6
- data/include/grpc/support/sync_posix.h +1 -3
- data/include/grpc/support/time.h +0 -1
- data/src/core/channelz/channel_trace.cc +180 -0
- data/src/core/channelz/channel_trace.h +138 -0
- data/src/core/channelz/channelz.cc +670 -0
- data/src/core/channelz/channelz.h +421 -0
- data/src/core/channelz/channelz_registry.cc +281 -0
- data/src/core/channelz/channelz_registry.h +101 -0
- data/src/core/client_channel/backup_poller.cc +24 -15
- data/src/core/client_channel/client_channel.cc +1426 -0
- data/src/core/client_channel/client_channel.h +245 -0
- data/src/core/client_channel/client_channel_factory.cc +2 -2
- data/src/core/client_channel/client_channel_factory.h +1 -2
- data/src/core/client_channel/client_channel_filter.cc +434 -941
- data/src/core/client_channel/client_channel_filter.h +30 -93
- data/src/core/client_channel/client_channel_internal.h +27 -12
- data/src/core/client_channel/client_channel_plugin.cc +2 -17
- data/src/core/client_channel/client_channel_service_config.cc +2 -3
- data/src/core/client_channel/client_channel_service_config.h +11 -12
- data/src/core/client_channel/config_selector.h +26 -26
- data/src/core/client_channel/connector.h +4 -4
- data/src/core/client_channel/direct_channel.cc +83 -0
- data/src/core/client_channel/direct_channel.h +101 -0
- data/src/core/client_channel/dynamic_filters.cc +19 -16
- data/src/core/client_channel/dynamic_filters.h +10 -11
- data/src/core/client_channel/global_subchannel_pool.cc +2 -2
- data/src/core/client_channel/global_subchannel_pool.h +2 -3
- data/src/core/client_channel/lb_metadata.cc +120 -0
- data/src/core/client_channel/lb_metadata.h +55 -0
- data/src/core/client_channel/load_balanced_call_destination.cc +273 -0
- data/src/core/client_channel/load_balanced_call_destination.h +48 -0
- data/src/core/client_channel/local_subchannel_pool.cc +6 -7
- data/src/core/client_channel/local_subchannel_pool.h +1 -1
- data/src/core/client_channel/retry_filter.cc +8 -17
- data/src/core/client_channel/retry_filter.h +10 -18
- data/src/core/client_channel/retry_filter_legacy_call_data.cc +212 -323
- data/src/core/client_channel/retry_filter_legacy_call_data.h +18 -23
- data/src/core/client_channel/retry_service_config.cc +9 -12
- data/src/core/client_channel/retry_service_config.h +8 -10
- data/src/core/client_channel/retry_throttle.cc +3 -4
- data/src/core/client_channel/retry_throttle.h +7 -9
- data/src/core/client_channel/subchannel.cc +294 -175
- data/src/core/client_channel/subchannel.h +53 -46
- data/src/core/client_channel/subchannel_interface_internal.h +1 -1
- data/src/core/client_channel/subchannel_pool_interface.cc +1 -5
- data/src/core/client_channel/subchannel_pool_interface.h +5 -8
- data/src/core/client_channel/subchannel_stream_client.cc +47 -65
- data/src/core/client_channel/subchannel_stream_client.h +12 -16
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +29 -79
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +5 -15
- data/src/core/ext/filters/backend_metrics/backend_metric_provider.h +7 -0
- data/src/core/ext/filters/census/grpc_context.cc +7 -10
- data/src/core/ext/filters/channel_idle/idle_filter_state.cc +1 -2
- data/src/core/ext/filters/channel_idle/idle_filter_state.h +0 -1
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.cc +46 -55
- data/src/core/ext/filters/channel_idle/legacy_channel_idle_filter.h +22 -19
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +24 -28
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +8 -7
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +2 -3
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.h +6 -9
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.cc +205 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_filter.h +97 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.cc +80 -0
- data/src/core/ext/filters/gcp_authentication/gcp_authentication_service_config_parser.h +86 -0
- data/src/core/ext/filters/http/client/http_client_filter.cc +19 -12
- data/src/core/ext/filters/http/client/http_client_filter.h +8 -6
- data/src/core/ext/filters/http/client_authority_filter.cc +12 -10
- data/src/core/ext/filters/http/client_authority_filter.h +8 -5
- data/src/core/ext/filters/http/http_filters_plugin.cc +15 -36
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +65 -59
- data/src/core/ext/filters/http/message_compress/compression_filter.h +18 -13
- data/src/core/ext/filters/http/server/http_server_filter.cc +19 -16
- data/src/core/ext/filters/http/server/http_server_filter.h +8 -6
- data/src/core/ext/filters/message_size/message_size_filter.cc +50 -54
- data/src/core/ext/filters/message_size/message_size_filter.h +19 -15
- data/src/core/ext/filters/rbac/rbac_filter.cc +13 -18
- data/src/core/ext/filters/rbac/rbac_filter.h +8 -7
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +18 -12
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +2 -4
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +25 -27
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +8 -6
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +2 -3
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +5 -7
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +4 -5
- data/src/core/ext/transport/chttp2/alpn/alpn.h +0 -1
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +82 -117
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +5 -12
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +464 -315
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +34 -1
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +24 -37
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +1 -3
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +7 -9
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +1 -3
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.cc +53 -0
- data/src/core/ext/transport/chttp2/transport/call_tracer_wrapper.h +72 -0
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +617 -619
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +37 -20
- data/src/core/ext/transport/chttp2/transport/context_list_entry.h +14 -12
- data/src/core/ext/transport/chttp2/transport/decode_huff.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +9 -14
- data/src/core/ext/transport/chttp2/transport/flow_control.h +4 -9
- data/src/core/ext/transport/chttp2/transport/frame.cc +5 -8
- data/src/core/ext/transport/chttp2/transport/frame.h +0 -1
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +9 -15
- data/src/core/ext/transport/chttp2/transport/frame_data.h +3 -5
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +7 -10
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +1 -3
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +16 -21
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +1 -3
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +19 -20
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +6 -6
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +20 -21
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +2 -4
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +13 -10
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +4 -4
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +16 -17
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +15 -12
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +10 -10
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +0 -1
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.cc +4 -5
- data/src/core/ext/transport/chttp2/transport/hpack_parse_result.h +5 -8
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +79 -122
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +5 -8
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +45 -20
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +28 -9
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +3 -4
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +1 -3
- data/src/core/ext/transport/chttp2/transport/huffsyms.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/internal.h +48 -81
- data/src/core/ext/transport/chttp2/transport/parsing.cc +118 -131
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.cc +3 -4
- data/src/core/ext/transport/chttp2/transport/ping_abuse_policy.h +1 -1
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.cc +4 -7
- data/src/core/ext/transport/chttp2/transport/ping_callbacks.h +2 -7
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.cc +33 -19
- data/src/core/ext/transport/chttp2/transport/ping_rate_policy.h +6 -7
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +19 -21
- data/src/core/ext/transport/chttp2/transport/stream_lists.h +65 -0
- data/src/core/ext/transport/chttp2/transport/varint.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/varint.h +2 -3
- data/src/core/ext/transport/chttp2/transport/write_size_policy.cc +4 -4
- data/src/core/ext/transport/chttp2/transport/write_size_policy.h +1 -2
- data/src/core/ext/transport/chttp2/transport/writing.cc +196 -155
- data/src/core/ext/transport/inproc/inproc_transport.cc +154 -70
- data/src/core/ext/transport/inproc/inproc_transport.h +2 -5
- data/src/core/ext/transport/inproc/legacy_inproc_transport.cc +135 -136
- data/src/core/ext/transport/inproc/legacy_inproc_transport.h +1 -4
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb.h +275 -231
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.c +69 -53
- data/src/core/ext/upb-gen/envoy/admin/v3/certs.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb.h +322 -266
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.c +84 -74
- data/src/core/ext/upb-gen/envoy/admin/v3/clusters.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb.h +274 -227
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.c +70 -56
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb.h +1071 -883
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.c +280 -228
- data/src/core/ext/upb-gen/envoy/admin/v3/config_dump_shared.upb_minitable.h +21 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb.h +84 -77
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.c +21 -11
- data/src/core/ext/upb-gen/envoy/admin/v3/init_dump.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb.h +100 -85
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.c +26 -16
- data/src/core/ext/upb-gen/envoy/admin/v3/listeners.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb.h +51 -43
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.c +20 -14
- data/src/core/ext/upb-gen/envoy/admin/v3/memory.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb.h +30 -25
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.c +14 -8
- data/src/core/ext/upb-gen/envoy/admin/v3/metrics.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb.h +30 -25
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.c +14 -8
- data/src/core/ext/upb-gen/envoy/admin/v3/mutex_stats.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb.h +404 -318
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.c +102 -90
- data/src/core/ext/upb-gen/envoy/admin/v3/server_info.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb.h +27 -21
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.c +13 -9
- data/src/core/ext/upb-gen/envoy/admin/v3/tap.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb.h +42 -33
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.c +11 -5
- data/src/core/ext/upb-gen/envoy/annotations/deprecation.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb.h +35 -21
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.c +16 -9
- data/src/core/ext/upb-gen/envoy/annotations/resource.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb.h +575 -474
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.c +183 -137
- data/src/core/ext/upb-gen/envoy/config/accesslog/v3/accesslog.upb_minitable.h +18 -1
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb.h +1498 -1109
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.c +401 -313
- data/src/core/ext/upb-gen/envoy/config/bootstrap/v3/bootstrap.upb_minitable.h +26 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb.h +191 -153
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.c +47 -47
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/circuit_breaker.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb.h +1624 -1138
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.c +430 -375
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/cluster.upb_minitable.h +28 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb.h +38 -29
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.c +15 -11
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/filter.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb.h +357 -189
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.c +83 -72
- data/src/core/ext/upb-gen/envoy/config/cluster/v3/outlier_detection.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb.h +657 -509
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.c +200 -146
- data/src/core/ext/upb-gen/envoy/config/common/matcher/v3/matcher.upb_minitable.h +17 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb.h +381 -310
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.c +109 -89
- data/src/core/ext/upb-gen/envoy/config/core/v3/address.upb_minitable.h +10 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb.h +31 -23
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.c +13 -13
- data/src/core/ext/upb-gen/envoy/config/core/v3/backoff.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb.h +1470 -689
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.c +434 -207
- data/src/core/ext/upb-gen/envoy/config/core/v3/base.upb_minitable.h +36 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb.h +410 -344
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.c +108 -86
- data/src/core/ext/upb-gen/envoy/config/core/v3/config_source.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb.h +23 -17
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.c +12 -6
- data/src/core/ext/upb-gen/envoy/config/core/v3/event_service_config.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb.h +27 -21
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.c +13 -9
- data/src/core/ext/upb-gen/envoy/config/core/v3/extension.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb.h +84 -77
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.c +21 -11
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_method_list.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb.h +678 -471
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.c +204 -153
- data/src/core/ext/upb-gen/envoy/config/core/v3/grpc_service.upb_minitable.h +16 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb.h +805 -631
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.c +187 -145
- data/src/core/ext/upb-gen/envoy/config/core/v3/health_check.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb.h +53 -44
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.c +15 -9
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_service.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb.h +39 -31
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.c +16 -10
- data/src/core/ext/upb-gen/envoy/config/core/v3/http_uri.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb.h +869 -638
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.c +255 -225
- data/src/core/ext/upb-gen/envoy/config/core/v3/protocol.upb_minitable.h +18 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb.h +69 -62
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.c +22 -14
- data/src/core/ext/upb-gen/envoy/config/core/v3/proxy_protocol.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb.h +74 -62
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.c +23 -15
- data/src/core/ext/upb-gen/envoy/config/core/v3/resolver.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb.h +98 -84
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.c +29 -19
- data/src/core/ext/upb-gen/envoy/config/core/v3/socket_option.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb.h +115 -94
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.c +34 -24
- data/src/core/ext/upb-gen/envoy/config/core/v3/substitution_format_string.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb.h +31 -23
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.c +13 -13
- data/src/core/ext/upb-gen/envoy/config/core/v3/udp_socket_config.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb.h +194 -146
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.c +55 -45
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb.h +387 -288
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.c +111 -83
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/endpoint_components.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb.h +575 -310
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.c +129 -75
- data/src/core/ext/upb-gen/envoy/config/endpoint/v3/load_report.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb.h +20 -15
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.c +11 -9
- data/src/core/ext/upb-gen/envoy/config/listener/v3/api_listener.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb.h +612 -479
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.c +160 -127
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener.upb_minitable.h +12 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb.h +558 -469
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.c +127 -109
- data/src/core/ext/upb-gen/envoy/config/listener/v3/listener_components.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb.h +169 -79
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.c +32 -40
- data/src/core/ext/upb-gen/envoy/config/listener/v3/quic_config.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb.h +49 -37
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.c +20 -28
- data/src/core/ext/upb-gen/envoy/config/listener/v3/udp_listener_config.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb.h +52 -41
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.c +21 -15
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/metrics_service.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb.h +337 -280
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.c +101 -71
- data/src/core/ext/upb-gen/envoy/config/metrics/v3/stats.upb_minitable.h +10 -1
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb.h +430 -359
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.c +120 -78
- data/src/core/ext/upb-gen/envoy/config/overload/v3/overload.upb_minitable.h +12 -1
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb.h +662 -491
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.c +185 -151
- data/src/core/ext/upb-gen/envoy/config/rbac/v3/rbac.upb_minitable.h +13 -1
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb.h +388 -328
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.c +66 -74
- data/src/core/ext/upb-gen/envoy/config/route/v3/route.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb.h +3883 -3146
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.c +991 -806
- data/src/core/ext/upb-gen/envoy/config/route/v3/route_components.upb_minitable.h +60 -1
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb.h +111 -92
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.c +37 -23
- data/src/core/ext/upb-gen/envoy/config/route/v3/scoped_route.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb.h +538 -431
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.c +162 -126
- data/src/core/ext/upb-gen/envoy/config/tap/v3/common.upb_minitable.h +14 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb.h +131 -25
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.c +43 -12
- data/src/core/ext/upb-gen/envoy/config/trace/v3/datadog.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb.h +27 -21
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.c +13 -9
- data/src/core/ext/upb-gen/envoy/config/trace/v3/dynamic_ot.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb.h +48 -37
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.c +22 -16
- data/src/core/ext/upb-gen/envoy/config/trace/v3/http_tracer.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb.h +62 -56
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.c +17 -15
- data/src/core/ext/upb-gen/envoy/config/trace/v3/lightstep.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb.h +154 -137
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.c +38 -32
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opencensus.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb.h +82 -66
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.c +23 -17
- data/src/core/ext/upb-gen/envoy/config/trace/v3/opentelemetry.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb.h +20 -15
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.c +11 -9
- data/src/core/ext/upb-gen/envoy/config/trace/v3/service.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb.h +75 -59
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.c +27 -27
- data/src/core/ext/upb-gen/envoy/config/trace/v3/skywalking.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/trace.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb.h +74 -57
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.c +27 -23
- data/src/core/ext/upb-gen/envoy/config/trace/v3/xray.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb.h +62 -51
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.c +24 -18
- data/src/core/ext/upb-gen/envoy/config/trace/v3/zipkin.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb.h +1101 -833
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.c +350 -295
- data/src/core/ext/upb-gen/envoy/data/accesslog/v3/accesslog.upb_minitable.h +18 -1
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +37 -36
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/extensions/clusters/aggregate/v3/cluster.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb.h +116 -89
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.c +50 -28
- data/src/core/ext/upb-gen/envoy/extensions/filters/common/fault/v3/fault.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb.h +245 -205
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.c +63 -65
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/fault/v3/fault.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb.h +444 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.c +135 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upb_minitable.h +38 -0
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +110 -59
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.c +34 -28
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/rbac/v3/rbac.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb.h +178 -154
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.c +41 -33
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/router/v3/router.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +57 -45
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.c +25 -15
- data/src/core/ext/upb-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +1543 -1231
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.c +403 -332
- data/src/core/ext/upb-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb_minitable.h +23 -1
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +20 -15
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.c +11 -9
- data/src/core/ext/upb-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb_minitable.h +3 -1
- 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
- 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
- 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
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +142 -109
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.c +56 -42
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/common/v3/common.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb.h +16 -13
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/pick_first/v3/pick_first.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +78 -59
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.c +28 -22
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +20 -15
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.c +11 -9
- data/src/core/ext/upb-gen/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb.h +106 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.c +52 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upb_minitable.h +32 -0
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/cert.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb.h +659 -495
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.c +137 -117
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/common.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +106 -81
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.c +41 -33
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/secret.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +571 -458
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.c +147 -131
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +67 -56
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.c +22 -14
- data/src/core/ext/upb-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb.h +245 -186
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.c +71 -69
- data/src/core/ext/upb-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb.h +9 -7
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.c +8 -2
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/ads.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb.h +849 -711
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.c +209 -161
- data/src/core/ext/upb-gen/envoy/service/discovery/v3/discovery.upb_minitable.h +16 -1
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb.h +113 -99
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.c +30 -20
- data/src/core/ext/upb-gen/envoy/service/load_stats/v3/lrs.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb.h +352 -289
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.c +95 -73
- data/src/core/ext/upb-gen/envoy/service/status/v3/csds.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb.h +34 -27
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.c +16 -10
- data/src/core/ext/upb-gen/envoy/type/http/v3/cookie.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb.h +88 -72
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.c +34 -16
- data/src/core/ext/upb-gen/envoy/type/http/v3/path_transformation.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb.h +30 -23
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.c +14 -8
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/filter_state.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb.h +72 -61
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.c +38 -16
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/http_inputs.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb.h +86 -72
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.c +26 -16
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/metadata.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb.h +53 -44
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.c +15 -9
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/node.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb.h +32 -25
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.c +14 -8
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/number.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb.h +23 -17
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.c +12 -6
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/path.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb.h +73 -57
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.c +33 -23
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/regex.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb.h +16 -13
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.c +13 -3
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/status_code_input.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb.h +139 -90
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.c +43 -22
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/string.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb.h +72 -60
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.c +22 -12
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/struct.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb.h +153 -122
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.c +51 -33
- data/src/core/ext/upb-gen/envoy/type/matcher/v3/value.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb.h +150 -122
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.c +59 -29
- data/src/core/ext/upb-gen/envoy/type/metadata/v3/metadata.upb_minitable.h +9 -1
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb.h +155 -123
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.c +62 -40
- data/src/core/ext/upb-gen/envoy/type/tracing/v3/custom_tag.upb_minitable.h +7 -1
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb.h +55 -43
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.c +27 -13
- data/src/core/ext/upb-gen/envoy/type/v3/hash_policy.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb.h +16 -13
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/envoy/type/v3/http_status.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb.h +37 -31
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.c +19 -9
- data/src/core/ext/upb-gen/envoy/type/v3/percent.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb.h +65 -55
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.c +30 -16
- data/src/core/ext/upb-gen/envoy/type/v3/range.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb.h +64 -51
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.c +26 -16
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_strategy.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.c +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/ratelimit_unit.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb.h +30 -25
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.c +14 -8
- data/src/core/ext/upb-gen/envoy/type/v3/semantic_version.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb.h +38 -29
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.c +15 -11
- data/src/core/ext/upb-gen/envoy/type/v3/token_bucket.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/api/annotations.upb.h +21 -9
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.c +5 -2
- data/src/core/ext/upb-gen/google/api/annotations.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb.h +681 -525
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.c +190 -153
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/checked.upb_minitable.h +15 -1
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb.h +1072 -544
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.c +285 -167
- data/src/core/ext/upb-gen/google/api/expr/v1alpha1/syntax.upb_minitable.h +20 -1
- data/src/core/ext/upb-gen/google/api/http.upb.h +190 -163
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.c +51 -37
- data/src/core/ext/upb-gen/google/api/http.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/google/api/httpbody.upb.h +56 -48
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.c +16 -10
- data/src/core/ext/upb-gen/google/api/httpbody.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/any.upb.h +23 -19
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.c +12 -6
- data/src/core/ext/upb-gen/google/protobuf/any.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb.h +2871 -2372
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.c +599 -557
- data/src/core/ext/upb-gen/google/protobuf/descriptor.upb_minitable.h +36 -1
- data/src/core/ext/upb-gen/google/protobuf/duration.upb.h +23 -19
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.c +12 -6
- data/src/core/ext/upb-gen/google/protobuf/duration.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/empty.upb.h +9 -7
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.c +8 -2
- data/src/core/ext/upb-gen/google/protobuf/empty.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/struct.upb.h +157 -117
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.c +50 -34
- data/src/core/ext/upb-gen/google/protobuf/struct.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb.h +23 -19
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.c +12 -6
- data/src/core/ext/upb-gen/google/protobuf/timestamp.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb.h +128 -109
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.c +66 -28
- data/src/core/ext/upb-gen/google/protobuf/wrappers.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/google/rpc/status.upb.h +56 -48
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.c +16 -10
- data/src/core/ext/upb-gen/google/rpc/status.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb.h +115 -93
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.c +47 -29
- data/src/core/ext/upb-gen/opencensus/proto/trace/v1/trace_config.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb.h +87 -62
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.c +33 -23
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/altscontext.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb.h +637 -519
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.c +180 -136
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/handshaker.upb_minitable.h +14 -1
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb.h +52 -41
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.c +22 -18
- data/src/core/ext/upb-gen/src/proto/grpc/gcp/transport_security_common.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb.h +30 -25
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.c +17 -7
- data/src/core/ext/upb-gen/src/proto/grpc/health/v1/health.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb.h +291 -239
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.c +101 -69
- data/src/core/ext/upb-gen/src/proto/grpc/lb/v1/load_balancer.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb.h +104 -83
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.c +35 -21
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb.h +550 -467
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.c +124 -90
- data/src/core/ext/upb-gen/src/proto/grpc/lookup/v1/rls_config.upb_minitable.h +11 -1
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb.h +146 -83
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.c +42 -23
- data/src/core/ext/upb-gen/udpa/annotations/migrate.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/udpa/annotations/security.upb.h +42 -27
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.c +18 -11
- data/src/core/ext/upb-gen/udpa/annotations/security.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb.h +12 -9
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.c +5 -2
- data/src/core/ext/upb-gen/udpa/annotations/sensitive.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/udpa/annotations/status.upb.h +42 -27
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.c +18 -11
- data/src/core/ext/upb-gen/udpa/annotations/status.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb.h +35 -21
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.c +16 -9
- data/src/core/ext/upb-gen/udpa/annotations/versioning.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/validate/validate.upb.h +2713 -2459
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.c +499 -545
- data/src/core/ext/upb-gen/validate/validate.upb_minitable.h +25 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb.h +146 -83
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.c +42 -23
- data/src/core/ext/upb-gen/xds/annotations/v3/migrate.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb.h +42 -27
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.c +18 -11
- data/src/core/ext/upb-gen/xds/annotations/v3/security.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb.h +12 -9
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.c +5 -2
- data/src/core/ext/upb-gen/xds/annotations/v3/sensitive.upb_minitable.h +2 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb.h +122 -79
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.c +46 -25
- data/src/core/ext/upb-gen/xds/annotations/v3/status.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb.h +35 -21
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.c +16 -9
- data/src/core/ext/upb-gen/xds/annotations/v3/versioning.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb.h +16 -13
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.c +10 -4
- data/src/core/ext/upb-gen/xds/core/v3/authority.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb.h +27 -21
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.c +13 -9
- data/src/core/ext/upb-gen/xds/core/v3/cidr.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb.h +66 -51
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.c +28 -18
- data/src/core/ext/upb-gen/xds/core/v3/collection_entry.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb.h +41 -24
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.c +20 -10
- data/src/core/ext/upb-gen/xds/core/v3/context_params.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb.h +27 -21
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.c +13 -9
- data/src/core/ext/upb-gen/xds/core/v3/extension.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb.h +38 -29
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.c +17 -11
- data/src/core/ext/upb-gen/xds/core/v3/resource.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb.h +114 -94
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.c +34 -24
- data/src/core/ext/upb-gen/xds/core/v3/resource_locator.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb.h +41 -33
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.c +17 -15
- data/src/core/ext/upb-gen/xds/core/v3/resource_name.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb.h +147 -94
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.c +54 -36
- data/src/core/ext/upb-gen/xds/data/orca/v3/orca_load_report.upb_minitable.h +6 -1
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb.h +48 -44
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.c +14 -8
- data/src/core/ext/upb-gen/xds/service/orca/v3/orca.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb.h +27 -21
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.c +14 -8
- data/src/core/ext/upb-gen/xds/type/matcher/v3/cel.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb.h +88 -79
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.c +22 -14
- data/src/core/ext/upb-gen/xds/type/matcher/v3/domain.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb.h +9 -7
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.c +8 -2
- data/src/core/ext/upb-gen/xds/type/matcher/v3/http_inputs.upb_minitable.h +3 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb.h +100 -85
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.c +26 -16
- data/src/core/ext/upb-gen/xds/type/matcher/v3/ip.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb.h +384 -286
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.c +127 -93
- data/src/core/ext/upb-gen/xds/type/matcher/v3/matcher.upb_minitable.h +12 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb.h +275 -235
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.c +63 -43
- data/src/core/ext/upb-gen/xds/type/matcher/v3/range.upb_minitable.h +8 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb.h +37 -29
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.c +19 -9
- data/src/core/ext/upb-gen/xds/type/matcher/v3/regex.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb.h +106 -90
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.c +31 -21
- data/src/core/ext/upb-gen/xds/type/matcher/v3/string.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb.h +63 -47
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.c +25 -21
- data/src/core/ext/upb-gen/xds/type/v3/cel.upb_minitable.h +4 -1
- data/src/core/ext/upb-gen/xds/type/v3/range.upb.h +65 -55
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.c +30 -16
- data/src/core/ext/upb-gen/xds/type/v3/range.upb_minitable.h +5 -1
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb.h +27 -21
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.c +13 -9
- data/src/core/ext/upb-gen/xds/type/v3/typed_struct.upb_minitable.h +3 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/certs.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/clusters.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/config_dump_shared.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/init_dump.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/listeners.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/memory.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/metrics.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/mutex_stats.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.c +88 -82
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/server_info.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/admin/v3/tap.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/deprecation.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/annotations/resource.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.c +63 -61
- data/src/core/ext/upbdefs-gen/envoy/config/accesslog/v3/accesslog.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +223 -211
- data/src/core/ext/upbdefs-gen/envoy/config/bootstrap/v3/bootstrap.upbdefs.h +9 -6
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/circuit_breaker.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.c +319 -298
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/cluster.upbdefs.h +9 -6
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/filter.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.c +116 -106
- data/src/core/ext/upbdefs-gen/envoy/config/cluster/v3/outlier_detection.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/common/matcher/v3/matcher.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/address.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/backoff.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.c +187 -141
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/base.upbdefs.h +29 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.c +12 -12
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/config_source.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/event_service_config.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/extension.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_method_list.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.c +175 -165
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/grpc_service.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.c +199 -188
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/health_check.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_service.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/http_uri.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.c +231 -223
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/protocol.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/proxy_protocol.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/resolver.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/socket_option.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/substitution_format_string.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/core/v3/udp_socket_config.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +41 -37
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/endpoint_components.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.c +124 -94
- data/src/core/ext/upbdefs-gen/envoy/config/endpoint/v3/load_report.upbdefs.h +9 -6
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/api_listener.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.c +43 -40
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/listener_components.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.c +22 -13
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/quic_config.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/listener/v3/udp_listener_config.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/metrics_service.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/metrics/v3/stats.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/overload/v3/overload.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.c +71 -66
- data/src/core/ext/upbdefs-gen/envoy/config/rbac/v3/rbac.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.c +613 -605
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/route_components.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/route/v3/scoped_route.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/tap/v3/common.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.c +32 -21
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/datadog.upbdefs.h +9 -6
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.c +20 -18
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/dynamic_ot.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/http_tracer.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/lightstep.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.c +64 -60
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opencensus.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/opentelemetry.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/service.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/skywalking.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/trace.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/xray.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.c +23 -21
- data/src/core/ext/upbdefs-gen/envoy/config/trace/v3/zipkin.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.c +147 -143
- data/src/core/ext/upbdefs-gen/envoy/data/accesslog/v3/accesslog.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/clusters/aggregate/v3/cluster.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/common/fault/v3/fault.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/fault/v3/fault.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.c +87 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/gcp_authn/v3/gcp_authn.upbdefs.h +48 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +38 -34
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/router/v3/router.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +292 -289
- data/src/core/ext/upbdefs-gen/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.c +53 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/http_11_proxy/v3/upstream_http_11_connect.upbdefs.h +33 -0
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/cert.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +84 -76
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.h +9 -6
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/secret.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/extensions/upstreams/http/v3/http_protocol_options.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/ads.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/discovery/v3/discovery.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/load_stats/v3/lrs.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/service/status/v3/csds.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/cookie.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/http/v3/path_transformation.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/filter_state.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/http_inputs.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/metadata.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/node.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/number.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/path.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/regex.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/status_code_input.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.c +41 -34
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/string.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/struct.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/matcher/v3/value.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/metadata/v3/metadata.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/tracing/v3/custom_tag.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/hash_policy.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/http_status.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/percent.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/range.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_strategy.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/ratelimit_unit.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/semantic_version.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/envoy/type/v3/token_bucket.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/annotations.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.c +110 -108
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/checked.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.c +103 -79
- data/src/core/ext/upbdefs-gen/google/api/expr/v1alpha1/syntax.upbdefs.h +14 -6
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/http.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/api/httpbody.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/any.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.c +412 -385
- data/src/core/ext/upbdefs-gen/google/protobuf/descriptor.upbdefs.h +9 -6
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/duration.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/empty.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/struct.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/timestamp.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/protobuf/wrappers.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/google/rpc/status.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/opencensus/proto/trace/v1/trace_config.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/src/proto/grpc/lookup/v1/rls_config.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/migrate.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/security.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/sensitive.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/status.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/udpa/annotations/versioning.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/validate/validate.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/migrate.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/security.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/sensitive.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/status.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/annotations/v3/versioning.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/authority.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/cidr.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/collection_entry.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/context_params.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/extension.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_locator.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/core/v3/resource_name.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/cel.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/domain.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/http_inputs.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/ip.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/matcher.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/range.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/regex.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/matcher/v3/string.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/cel.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/range.upbdefs.h +4 -6
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.c +2 -1
- data/src/core/ext/upbdefs-gen/xds/type/v3/typed_struct.upbdefs.h +4 -6
- data/src/core/filter/blackboard.cc +33 -0
- data/src/core/filter/blackboard.h +70 -0
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.cc +81 -0
- data/src/core/handshaker/endpoint_info/endpoint_info_handshaker.h +37 -0
- data/src/core/handshaker/handshaker.cc +199 -0
- data/src/core/handshaker/handshaker.h +170 -0
- data/src/core/handshaker/handshaker_factory.h +89 -0
- data/src/core/handshaker/handshaker_registry.cc +60 -0
- data/src/core/handshaker/handshaker_registry.h +69 -0
- data/src/core/handshaker/http_connect/http_connect_handshaker.cc +353 -0
- data/src/core/handshaker/http_connect/http_connect_handshaker.h +42 -0
- data/src/core/handshaker/http_connect/http_proxy_mapper.cc +297 -0
- data/src/core/handshaker/http_connect/http_proxy_mapper.h +52 -0
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.cc +57 -0
- data/src/core/handshaker/http_connect/xds_http_proxy_mapper.h +46 -0
- data/src/core/handshaker/proxy_mapper.h +52 -0
- data/src/core/handshaker/proxy_mapper_registry.cc +71 -0
- data/src/core/handshaker/proxy_mapper_registry.h +74 -0
- data/src/core/handshaker/security/secure_endpoint.cc +578 -0
- data/src/core/handshaker/security/secure_endpoint.h +41 -0
- data/src/core/handshaker/security/security_handshaker.cc +628 -0
- data/src/core/handshaker/security/security_handshaker.h +45 -0
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.cc +230 -0
- data/src/core/handshaker/tcp_connect/tcp_connect_handshaker.h +39 -0
- data/src/core/lib/address_utils/parse_address.cc +41 -45
- data/src/core/lib/address_utils/parse_address.h +1 -3
- data/src/core/lib/address_utils/sockaddr_utils.cc +30 -20
- data/src/core/lib/address_utils/sockaddr_utils.h +0 -2
- data/src/core/lib/channel/call_finalization.h +1 -1
- data/src/core/lib/channel/channel_args.cc +20 -26
- data/src/core/lib/channel/channel_args.h +33 -20
- data/src/core/lib/channel/channel_args_preconditioning.cc +2 -2
- data/src/core/lib/channel/channel_args_preconditioning.h +1 -2
- data/src/core/lib/channel/channel_stack.cc +21 -74
- data/src/core/lib/channel/channel_stack.h +31 -62
- data/src/core/lib/channel/channel_stack_builder.cc +2 -2
- data/src/core/lib/channel/channel_stack_builder.h +1 -7
- data/src/core/lib/channel/channel_stack_builder_impl.cc +18 -30
- data/src/core/lib/channel/channel_stack_builder_impl.h +13 -3
- data/src/core/lib/channel/connected_channel.cc +48 -708
- data/src/core/lib/channel/promise_based_filter.cc +248 -323
- data/src/core/lib/channel/promise_based_filter.h +267 -506
- data/src/core/lib/channel/status_util.cc +2 -4
- data/src/core/lib/channel/status_util.h +1 -2
- data/src/core/lib/compression/compression.cc +7 -10
- data/src/core/lib/compression/compression_internal.cc +39 -9
- data/src/core/lib/compression/compression_internal.h +5 -5
- data/src/core/lib/compression/message_compress.cc +16 -18
- data/src/core/lib/compression/message_compress.h +1 -2
- data/src/core/lib/config/config_vars.cc +15 -16
- data/src/core/lib/config/config_vars.h +9 -8
- data/src/core/lib/config/core_configuration.cc +9 -9
- data/src/core/lib/config/core_configuration.h +7 -9
- data/src/core/lib/config/load_config.cc +4 -6
- data/src/core/lib/config/load_config.h +0 -1
- data/src/core/lib/debug/trace.cc +47 -66
- data/src/core/lib/debug/trace.h +2 -97
- data/src/core/lib/debug/trace_flags.cc +242 -0
- data/src/core/lib/debug/trace_flags.h +131 -0
- data/src/core/lib/debug/trace_impl.h +125 -0
- data/src/core/lib/event_engine/ares_resolver.cc +167 -92
- data/src/core/lib/event_engine/ares_resolver.h +11 -18
- data/src/core/lib/event_engine/cf_engine/cf_engine.cc +14 -15
- data/src/core/lib/event_engine/cf_engine/cf_engine.h +1 -1
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.cc +47 -34
- data/src/core/lib/event_engine/cf_engine/cfstream_endpoint.h +4 -6
- data/src/core/lib/event_engine/cf_engine/cftype_unique_ref.h +1 -1
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.cc +21 -27
- data/src/core/lib/event_engine/cf_engine/dns_service_resolver.h +5 -6
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +3 -5
- data/src/core/lib/event_engine/channel_args_endpoint_config.h +1 -3
- data/src/core/lib/event_engine/common_closures.h +1 -2
- data/src/core/lib/event_engine/default_event_engine.cc +12 -15
- data/src/core/lib/event_engine/default_event_engine.h +2 -9
- data/src/core/lib/event_engine/default_event_engine_factory.cc +3 -4
- data/src/core/lib/event_engine/default_event_engine_factory.h +1 -2
- data/src/core/lib/event_engine/event_engine.cc +35 -5
- data/src/core/lib/event_engine/event_engine_context.h +32 -0
- data/src/core/lib/event_engine/extensions/chaotic_good_extension.h +64 -0
- data/src/core/lib/event_engine/extensions/supports_fd.h +25 -2
- data/src/core/lib/event_engine/extensions/tcp_trace.h +42 -0
- data/src/core/lib/event_engine/forkable.cc +11 -12
- data/src/core/lib/event_engine/forkable.h +0 -13
- data/src/core/lib/event_engine/grpc_polled_fd.h +2 -4
- data/src/core/lib/event_engine/handle_containers.h +1 -3
- data/src/core/lib/event_engine/memory_allocator_factory.h +1 -3
- data/src/core/lib/event_engine/poller.h +1 -2
- data/src/core/lib/event_engine/posix.h +9 -2
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +28 -30
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +6 -8
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +23 -27
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +2 -4
- data/src/core/lib/event_engine/posix_engine/event_poller.h +1 -3
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +1 -2
- data/src/core/lib/event_engine/posix_engine/grpc_polled_fd_posix.h +3 -6
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +5 -6
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +0 -1
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +7 -9
- data/src/core/lib/event_engine/posix_engine/lockfree_event.h +0 -1
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.cc +3 -4
- data/src/core/lib/event_engine/posix_engine/native_posix_dns_resolver.h +0 -1
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +96 -103
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +22 -23
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +83 -64
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +16 -13
- data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +1 -2
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +27 -30
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +13 -13
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +28 -33
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +1 -3
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +53 -40
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +10 -10
- data/src/core/lib/event_engine/posix_engine/timer.cc +5 -6
- data/src/core/lib/event_engine/posix_engine/timer.h +4 -7
- data/src/core/lib/event_engine/posix_engine/timer_heap.cc +1 -2
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +16 -25
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +4 -7
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +6 -9
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +2 -5
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +3 -4
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +0 -1
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +2 -3
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +0 -1
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +0 -1
- data/src/core/lib/event_engine/query_extensions.h +3 -2
- data/src/core/lib/event_engine/ref_counted_dns_resolver_interface.h +2 -5
- data/src/core/lib/event_engine/resolved_address.cc +8 -7
- data/src/core/lib/event_engine/resolved_address_internal.h +1 -2
- data/src/core/lib/event_engine/shim.cc +3 -3
- data/src/core/lib/event_engine/slice.cc +5 -7
- data/src/core/lib/event_engine/slice_buffer.cc +2 -4
- data/src/core/lib/event_engine/tcp_socket_utils.cc +29 -21
- data/src/core/lib/event_engine/tcp_socket_utils.h +3 -4
- data/src/core/lib/event_engine/thread_local.cc +2 -2
- data/src/core/lib/event_engine/thread_local.h +1 -1
- data/src/core/lib/event_engine/thread_pool/thread_count.cc +5 -8
- data/src/core/lib/event_engine/thread_pool/thread_count.h +4 -6
- data/src/core/lib/event_engine/thread_pool/thread_pool.h +1 -4
- data/src/core/lib/event_engine/thread_pool/thread_pool_factory.cc +1 -2
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.cc +45 -52
- data/src/core/lib/event_engine/thread_pool/work_stealing_thread_pool.h +9 -15
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.cc +50 -23
- data/src/core/lib/event_engine/thready_event_engine/thready_event_engine.h +7 -7
- data/src/core/lib/event_engine/time_util.cc +3 -4
- data/src/core/lib/event_engine/time_util.h +1 -3
- data/src/core/lib/event_engine/utils.cc +19 -6
- data/src/core/lib/event_engine/utils.h +9 -4
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.cc +158 -132
- data/src/core/lib/event_engine/windows/grpc_polled_fd_windows.h +4 -6
- data/src/core/lib/event_engine/windows/iocp.cc +24 -22
- data/src/core/lib/event_engine/windows/iocp.h +2 -3
- data/src/core/lib/event_engine/windows/native_windows_dns_resolver.cc +4 -6
- data/src/core/lib/event_engine/windows/win_socket.cc +51 -36
- data/src/core/lib/event_engine/windows/win_socket.h +11 -10
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +39 -39
- data/src/core/lib/event_engine/windows/windows_engine.cc +265 -123
- data/src/core/lib/event_engine/windows/windows_engine.h +143 -33
- data/src/core/lib/event_engine/windows/windows_listener.cc +83 -49
- data/src/core/lib/event_engine/windows/windows_listener.h +18 -5
- data/src/core/lib/event_engine/work_queue/basic_work_queue.cc +3 -3
- data/src/core/lib/event_engine/work_queue/basic_work_queue.h +2 -5
- data/src/core/lib/event_engine/work_queue/work_queue.h +1 -3
- data/src/core/lib/experiments/config.cc +110 -65
- data/src/core/lib/experiments/config.h +55 -2
- data/src/core/lib/experiments/experiments.cc +177 -515
- data/src/core/lib/experiments/experiments.h +103 -241
- data/src/core/lib/iomgr/buffer_list.cc +6 -7
- data/src/core/lib/iomgr/buffer_list.h +2 -4
- data/src/core/lib/iomgr/call_combiner.cc +42 -68
- data/src/core/lib/iomgr/call_combiner.h +11 -16
- data/src/core/lib/iomgr/cfstream_handle.cc +14 -20
- data/src/core/lib/iomgr/cfstream_handle.h +1 -1
- data/src/core/lib/iomgr/closure.cc +2 -2
- data/src/core/lib/iomgr/closure.h +14 -20
- data/src/core/lib/iomgr/combiner.cc +38 -52
- data/src/core/lib/iomgr/combiner.h +1 -5
- data/src/core/lib/iomgr/endpoint.cc +1 -7
- data/src/core/lib/iomgr/endpoint.h +4 -6
- data/src/core/lib/iomgr/endpoint_cfstream.cc +45 -76
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +8 -10
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +16 -17
- data/src/core/lib/iomgr/error.cc +24 -34
- data/src/core/lib/iomgr/error.h +8 -11
- data/src/core/lib/iomgr/error_cfstream.cc +1 -3
- data/src/core/lib/iomgr/ev_apple.cc +15 -23
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +79 -124
- data/src/core/lib/iomgr/ev_poll_posix.cc +62 -62
- data/src/core/lib/iomgr/ev_posix.cc +67 -59
- data/src/core/lib/iomgr/ev_posix.h +9 -12
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +11 -15
- data/src/core/lib/iomgr/event_engine_shims/closure.h +1 -3
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +35 -53
- data/src/core/lib/iomgr/event_engine_shims/endpoint.h +1 -2
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +10 -15
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.h +1 -2
- data/src/core/lib/iomgr/exec_ctx.cc +14 -18
- data/src/core/lib/iomgr/exec_ctx.h +33 -23
- data/src/core/lib/iomgr/executor.cc +60 -59
- data/src/core/lib/iomgr/executor.h +2 -2
- data/src/core/lib/iomgr/fork_posix.cc +11 -15
- data/src/core/lib/iomgr/fork_windows.cc +3 -2
- data/src/core/lib/iomgr/internal_errqueue.cc +5 -6
- data/src/core/lib/iomgr/iocp_windows.cc +16 -15
- data/src/core/lib/iomgr/iocp_windows.h +0 -1
- data/src/core/lib/iomgr/iomgr.cc +18 -25
- data/src/core/lib/iomgr/iomgr.h +0 -1
- data/src/core/lib/iomgr/iomgr_internal.cc +1 -2
- data/src/core/lib/iomgr/iomgr_internal.h +0 -1
- data/src/core/lib/iomgr/iomgr_windows.cc +4 -5
- data/src/core/lib/iomgr/lockfree_event.cc +12 -21
- data/src/core/lib/iomgr/lockfree_event.h +1 -2
- data/src/core/lib/iomgr/polling_entity.cc +17 -11
- data/src/core/lib/iomgr/pollset.cc +2 -2
- data/src/core/lib/iomgr/pollset.h +0 -3
- data/src/core/lib/iomgr/pollset_set.cc +2 -2
- data/src/core/lib/iomgr/pollset_set_windows.cc +0 -1
- data/src/core/lib/iomgr/pollset_windows.cc +2 -6
- data/src/core/lib/iomgr/pollset_windows.h +0 -1
- data/src/core/lib/iomgr/port.h +5 -2
- data/src/core/lib/iomgr/python_util.h +1 -2
- data/src/core/lib/iomgr/resolve_address.cc +4 -7
- data/src/core/lib/iomgr/resolve_address.h +3 -6
- data/src/core/lib/iomgr/resolve_address_impl.h +0 -1
- data/src/core/lib/iomgr/resolve_address_posix.cc +12 -21
- data/src/core/lib/iomgr/resolve_address_windows.cc +9 -12
- data/src/core/lib/iomgr/resolved_address.h +0 -1
- data/src/core/lib/iomgr/sockaddr_utils_posix.cc +5 -6
- data/src/core/lib/iomgr/socket_factory_posix.cc +1 -1
- data/src/core/lib/iomgr/socket_factory_posix.h +1 -2
- data/src/core/lib/iomgr/socket_mutator.cc +3 -5
- data/src/core/lib/iomgr/socket_mutator.h +2 -4
- data/src/core/lib/iomgr/socket_utils.h +0 -1
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +45 -52
- data/src/core/lib/iomgr/socket_utils_linux.cc +1 -3
- data/src/core/lib/iomgr/socket_utils_posix.cc +3 -6
- data/src/core/lib/iomgr/socket_utils_posix.h +1 -2
- data/src/core/lib/iomgr/socket_utils_windows.cc +1 -3
- data/src/core/lib/iomgr/socket_windows.cc +11 -14
- data/src/core/lib/iomgr/socket_windows.h +1 -2
- data/src/core/lib/iomgr/tcp_client.cc +2 -2
- data/src/core/lib/iomgr/tcp_client.h +1 -2
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +12 -20
- data/src/core/lib/iomgr/tcp_client_posix.cc +22 -34
- data/src/core/lib/iomgr/tcp_client_windows.cc +31 -15
- data/src/core/lib/iomgr/tcp_posix.cc +166 -188
- data/src/core/lib/iomgr/tcp_posix.h +0 -2
- data/src/core/lib/iomgr/tcp_server.cc +2 -2
- data/src/core/lib/iomgr/tcp_server.h +3 -4
- data/src/core/lib/iomgr/tcp_server_posix.cc +152 -156
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +0 -1
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +13 -17
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +11 -12
- data/src/core/lib/iomgr/tcp_server_windows.cc +91 -47
- data/src/core/lib/iomgr/tcp_windows.cc +38 -66
- data/src/core/lib/iomgr/timer.cc +2 -2
- data/src/core/lib/iomgr/timer.h +2 -3
- data/src/core/lib/iomgr/timer_generic.cc +72 -105
- data/src/core/lib/iomgr/timer_generic.h +0 -1
- data/src/core/lib/iomgr/timer_heap.cc +3 -5
- data/src/core/lib/iomgr/timer_manager.cc +27 -44
- data/src/core/lib/iomgr/timer_manager.h +0 -1
- data/src/core/lib/iomgr/unix_sockets_posix.cc +18 -6
- data/src/core/lib/iomgr/unix_sockets_posix.h +1 -3
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +2 -4
- data/src/core/lib/iomgr/vsock.cc +5 -8
- data/src/core/lib/iomgr/vsock.h +1 -3
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +2 -4
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +5 -6
- data/src/core/lib/promise/activity.cc +4 -5
- data/src/core/lib/promise/activity.h +53 -21
- data/src/core/lib/promise/all_ok.h +15 -9
- data/src/core/lib/promise/arena_promise.h +1 -3
- data/src/core/lib/promise/cancel_callback.h +34 -6
- data/src/core/lib/promise/context.h +20 -11
- data/src/core/lib/promise/detail/basic_seq.h +2 -3
- data/src/core/lib/promise/detail/join_state.h +555 -760
- data/src/core/lib/promise/detail/promise_factory.h +44 -28
- data/src/core/lib/promise/detail/promise_like.h +27 -12
- data/src/core/lib/promise/detail/seq_state.h +1314 -1977
- data/src/core/lib/promise/detail/status.h +36 -14
- data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +1 -2
- data/src/core/lib/promise/for_each.h +97 -39
- data/src/core/lib/promise/if.h +21 -17
- data/src/core/lib/promise/interceptor_list.h +22 -36
- data/src/core/lib/promise/latch.h +25 -40
- data/src/core/lib/promise/loop.h +14 -10
- data/src/core/lib/promise/map.h +25 -8
- data/src/core/lib/promise/observable.h +181 -0
- data/src/core/lib/promise/party.cc +302 -122
- data/src/core/lib/promise/party.h +143 -367
- data/src/core/lib/promise/pipe.h +34 -57
- data/src/core/lib/promise/poll.h +104 -39
- data/src/core/lib/promise/promise.h +12 -6
- data/src/core/lib/promise/race.h +10 -5
- data/src/core/lib/promise/seq.h +54 -38
- data/src/core/lib/promise/sleep.cc +5 -6
- data/src/core/lib/promise/sleep.h +2 -4
- data/src/core/lib/promise/status_flag.h +158 -51
- data/src/core/lib/promise/try_join.h +37 -20
- data/src/core/lib/promise/try_seq.h +87 -49
- data/src/core/lib/resource_quota/api.cc +4 -7
- data/src/core/lib/resource_quota/api.h +2 -4
- data/src/core/lib/resource_quota/arena.cc +64 -87
- data/src/core/lib/resource_quota/arena.h +145 -215
- data/src/core/lib/resource_quota/connection_quota.cc +69 -0
- data/src/core/lib/resource_quota/connection_quota.h +60 -0
- data/src/core/lib/resource_quota/memory_quota.cc +35 -47
- data/src/core/lib/resource_quota/memory_quota.h +22 -20
- data/src/core/lib/resource_quota/periodic_update.cc +4 -4
- data/src/core/lib/resource_quota/periodic_update.h +1 -3
- data/src/core/lib/resource_quota/resource_quota.cc +2 -2
- data/src/core/lib/resource_quota/resource_quota.h +6 -8
- data/src/core/lib/resource_quota/thread_quota.cc +4 -4
- data/src/core/lib/resource_quota/thread_quota.h +3 -4
- data/src/core/lib/security/authorization/audit_logging.cc +10 -12
- data/src/core/lib/security/authorization/audit_logging.h +3 -5
- data/src/core/lib/security/authorization/authorization_engine.h +1 -1
- data/src/core/lib/security/authorization/authorization_policy_provider.h +5 -7
- data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +3 -4
- data/src/core/lib/security/authorization/evaluate_args.cc +16 -20
- data/src/core/lib/security/authorization/evaluate_args.h +4 -6
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +4 -5
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +1 -3
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +29 -41
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +11 -11
- data/src/core/lib/security/authorization/matchers.cc +5 -8
- data/src/core/lib/security/authorization/matchers.h +1 -3
- data/src/core/lib/security/authorization/rbac_policy.cc +2 -2
- data/src/core/lib/security/authorization/rbac_policy.h +2 -5
- data/src/core/lib/security/authorization/stdout_logger.cc +7 -7
- data/src/core/lib/security/authorization/stdout_logger.h +2 -3
- data/src/core/lib/security/certificate_provider/certificate_provider_factory.h +7 -8
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +6 -6
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +0 -1
- data/src/core/lib/security/context/security_context.cc +51 -49
- data/src/core/lib/security/context/security_context.h +38 -17
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +6 -7
- data/src/core/lib/security/credentials/alts/alts_credentials.h +11 -7
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +4 -5
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +1 -2
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +3 -5
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +3 -5
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +5 -7
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +4 -5
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +2 -2
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +1 -2
- data/src/core/lib/security/credentials/call_creds_util.cc +8 -8
- data/src/core/lib/security/credentials/call_creds_util.h +2 -2
- data/src/core/lib/security/credentials/channel_creds_registry.h +5 -6
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +13 -12
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +18 -21
- data/src/core/lib/security/credentials/composite/composite_credentials.h +9 -8
- data/src/core/lib/security/credentials/credentials.cc +20 -20
- data/src/core/lib/security/credentials/credentials.h +13 -14
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +336 -339
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +58 -46
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +4 -5
- data/src/core/lib/security/credentials/external/aws_request_signer.h +1 -1
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +409 -374
- data/src/core/lib/security/credentials/external/external_account_credentials.h +127 -59
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +90 -53
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +30 -9
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +103 -129
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +20 -22
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +2 -4
- data/src/core/lib/security/credentials/fake/fake_credentials.h +9 -8
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.cc +195 -0
- data/src/core/lib/security/credentials/gcp_service_account_identity/gcp_service_account_identity_credentials.h +90 -0
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +4 -6
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +59 -76
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +9 -7
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +9 -14
- data/src/core/lib/security/credentials/iam/iam_credentials.h +6 -5
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +2 -2
- data/src/core/lib/security/credentials/insecure/insecure_credentials.h +4 -4
- data/src/core/lib/security/credentials/jwt/json_token.cc +35 -34
- data/src/core/lib/security/credentials/jwt/json_token.h +2 -4
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +24 -30
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +9 -9
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +89 -101
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +3 -5
- data/src/core/lib/security/credentials/local/local_credentials.cc +3 -4
- data/src/core/lib/security/credentials/local/local_credentials.h +5 -5
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +202 -302
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +48 -71
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +22 -35
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +11 -13
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +47 -59
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +8 -9
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +28 -28
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +2 -3
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_match.cc +0 -2
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +107 -46
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +15 -14
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +8 -12
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.h +9 -10
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.cc +27 -29
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +2 -1
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.cc +23 -20
- data/src/core/lib/security/credentials/tls/grpc_tls_crl_provider.h +13 -12
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +20 -24
- data/src/core/lib/security/credentials/tls/tls_credentials.h +7 -5
- data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -7
- data/src/core/lib/security/credentials/tls/tls_utils.h +1 -2
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.cc +298 -0
- data/src/core/lib/security/credentials/token_fetcher/token_fetcher_credentials.h +175 -0
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +21 -19
- data/src/core/lib/security/credentials/xds/xds_credentials.h +7 -9
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +35 -40
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +3 -3
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +28 -28
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +3 -3
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +8 -10
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +5 -6
- data/src/core/lib/security/security_connector/load_system_roots.h +4 -2
- data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +3 -2
- data/src/core/lib/security/security_connector/load_system_roots_supported.cc +7 -9
- data/src/core/lib/security/security_connector/load_system_roots_supported.h +1 -2
- data/src/core/lib/security/security_connector/load_system_roots_windows.cc +85 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +35 -35
- data/src/core/lib/security/security_connector/local/local_security_connector.h +3 -3
- data/src/core/lib/security/security_connector/security_connector.cc +11 -15
- data/src/core/lib/security/security_connector/security_connector.h +8 -11
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +28 -32
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +4 -5
- data/src/core/lib/security/security_connector/ssl_utils.cc +41 -41
- data/src/core/lib/security/security_connector/ssl_utils.h +5 -8
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +49 -62
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +6 -7
- data/src/core/lib/security/transport/auth_filters.h +17 -38
- data/src/core/lib/security/transport/client_auth_filter.cc +19 -27
- data/src/core/lib/security/transport/server_auth_filter.cc +23 -32
- data/src/core/lib/security/util/json_util.cc +4 -6
- data/src/core/lib/security/util/json_util.h +1 -1
- data/src/core/lib/slice/percent_encoding.cc +4 -6
- data/src/core/lib/slice/slice.cc +44 -20
- data/src/core/lib/slice/slice.h +8 -11
- data/src/core/lib/slice/slice_buffer.cc +66 -30
- data/src/core/lib/slice/slice_buffer.h +16 -5
- data/src/core/lib/slice/slice_internal.h +11 -7
- data/src/core/lib/slice/slice_refcount.h +7 -15
- data/src/core/lib/slice/slice_string_helpers.cc +3 -3
- data/src/core/lib/slice/slice_string_helpers.h +1 -3
- data/src/core/lib/surface/byte_buffer.cc +2 -4
- data/src/core/lib/surface/byte_buffer_reader.cc +5 -7
- data/src/core/lib/surface/call.cc +205 -3997
- data/src/core/lib/surface/call.h +177 -101
- data/src/core/lib/surface/call_details.cc +5 -5
- data/src/core/lib/surface/call_log_batch.cc +7 -11
- data/src/core/lib/surface/call_test_only.h +2 -4
- data/src/core/lib/surface/call_utils.cc +231 -0
- data/src/core/lib/surface/call_utils.h +482 -0
- data/src/core/lib/surface/channel.cc +131 -340
- data/src/core/lib/surface/channel.h +100 -118
- data/src/core/lib/surface/channel_create.cc +125 -0
- data/src/core/lib/surface/channel_create.h +42 -0
- data/src/core/lib/surface/channel_init.cc +275 -271
- data/src/core/lib/surface/channel_init.h +189 -114
- data/src/core/lib/surface/channel_stack_type.cc +2 -2
- data/src/core/lib/surface/client_call.cc +427 -0
- data/src/core/lib/surface/client_call.h +179 -0
- data/src/core/lib/surface/completion_queue.cc +126 -123
- data/src/core/lib/surface/completion_queue.h +3 -13
- data/src/core/lib/surface/completion_queue_factory.cc +8 -9
- data/src/core/lib/surface/completion_queue_factory.h +1 -2
- data/src/core/lib/surface/event_string.cc +2 -2
- data/src/core/lib/surface/event_string.h +1 -2
- data/src/core/lib/surface/filter_stack_call.cc +1156 -0
- data/src/core/lib/surface/filter_stack_call.h +366 -0
- data/src/core/lib/surface/init.cc +62 -31
- data/src/core/lib/surface/init.h +5 -0
- data/src/core/lib/surface/init_internally.cc +2 -2
- data/src/core/lib/surface/lame_client.cc +22 -53
- data/src/core/lib/surface/lame_client.h +16 -15
- data/src/core/lib/surface/legacy_channel.cc +428 -0
- data/src/core/lib/surface/legacy_channel.h +113 -0
- data/src/core/lib/surface/metadata_array.cc +6 -7
- data/src/core/lib/surface/server_call.cc +221 -0
- data/src/core/lib/surface/server_call.h +168 -0
- data/src/core/lib/surface/validate_metadata.cc +4 -6
- data/src/core/lib/surface/validate_metadata.h +3 -6
- data/src/core/lib/surface/version.cc +3 -4
- data/src/core/lib/transport/bdp_estimator.cc +13 -19
- data/src/core/lib/transport/bdp_estimator.h +12 -18
- data/src/core/lib/transport/call_arena_allocator.cc +27 -0
- data/src/core/lib/transport/call_arena_allocator.h +91 -0
- data/src/core/lib/transport/call_destination.h +76 -0
- data/src/core/lib/transport/call_filters.cc +79 -308
- data/src/core/lib/transport/call_filters.h +875 -476
- data/src/core/lib/transport/call_final_info.cc +2 -2
- data/src/core/lib/transport/call_final_info.h +2 -3
- data/src/core/lib/transport/call_spine.cc +103 -79
- data/src/core/lib/transport/call_spine.h +254 -248
- data/src/core/lib/transport/call_state.cc +39 -0
- data/src/core/lib/transport/call_state.h +1061 -0
- data/src/core/lib/transport/connectivity_state.cc +38 -47
- data/src/core/lib/transport/connectivity_state.h +3 -7
- data/src/core/lib/transport/error_utils.cc +3 -5
- data/src/core/lib/transport/error_utils.h +2 -4
- data/src/core/lib/transport/interception_chain.cc +147 -0
- data/src/core/lib/transport/interception_chain.h +253 -0
- data/src/core/lib/transport/message.cc +3 -4
- data/src/core/lib/transport/message.h +5 -0
- data/src/core/lib/transport/metadata.cc +29 -5
- data/src/core/lib/transport/metadata.h +37 -2
- data/src/core/lib/transport/metadata_batch.cc +67 -8
- data/src/core/lib/transport/metadata_batch.h +107 -30
- data/src/core/lib/transport/metadata_compression_traits.h +0 -1
- data/src/core/lib/transport/metadata_info.cc +55 -0
- data/src/core/lib/transport/metadata_info.h +85 -0
- data/src/core/lib/transport/parsed_metadata.cc +2 -2
- data/src/core/lib/transport/parsed_metadata.h +2 -5
- data/src/core/lib/transport/simple_slice_based_metadata.h +0 -1
- data/src/core/lib/transport/status_conversion.cc +2 -2
- data/src/core/lib/transport/status_conversion.h +2 -3
- data/src/core/lib/transport/timeout_encoding.cc +7 -8
- data/src/core/lib/transport/timeout_encoding.h +1 -3
- data/src/core/lib/transport/transport.cc +7 -13
- data/src/core/lib/transport/transport.h +94 -88
- data/src/core/lib/transport/transport_op_string.cc +2 -13
- data/src/core/load_balancing/address_filtering.cc +3 -5
- data/src/core/load_balancing/address_filtering.h +3 -4
- data/src/core/load_balancing/backend_metric_parser.cc +94 -0
- data/src/core/load_balancing/backend_metric_parser.h +45 -0
- data/src/core/load_balancing/child_policy_handler.cc +42 -46
- data/src/core/load_balancing/child_policy_handler.h +2 -3
- data/src/core/load_balancing/delegating_helper.h +14 -8
- data/src/core/load_balancing/endpoint_list.cc +17 -21
- data/src/core/load_balancing/endpoint_list.h +20 -16
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.cc +38 -34
- data/src/core/load_balancing/grpclb/client_load_reporting_filter.h +23 -7
- data/src/core/load_balancing/grpclb/grpclb.cc +215 -254
- data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.cc +2 -3
- data/src/core/load_balancing/grpclb/grpclb_balancer_addresses.h +1 -2
- data/src/core/load_balancing/grpclb/grpclb_client_stats.cc +3 -5
- data/src/core/load_balancing/grpclb/grpclb_client_stats.h +5 -8
- data/src/core/load_balancing/grpclb/load_balancer_api.cc +7 -11
- data/src/core/load_balancing/grpclb/load_balancer_api.h +3 -6
- data/src/core/load_balancing/health_check_client.cc +68 -89
- data/src/core/load_balancing/health_check_client.h +1 -1
- data/src/core/load_balancing/health_check_client_internal.h +10 -13
- data/src/core/load_balancing/lb_policy.cc +7 -10
- data/src/core/load_balancing/lb_policy.h +83 -41
- data/src/core/load_balancing/lb_policy_factory.h +3 -4
- data/src/core/load_balancing/lb_policy_registry.cc +7 -9
- data/src/core/load_balancing/lb_policy_registry.h +5 -6
- data/src/core/load_balancing/oob_backend_metric.cc +28 -35
- data/src/core/load_balancing/oob_backend_metric.h +1 -1
- data/src/core/load_balancing/oob_backend_metric_internal.h +12 -14
- data/src/core/load_balancing/outlier_detection/outlier_detection.cc +170 -215
- data/src/core/load_balancing/outlier_detection/outlier_detection.h +5 -7
- data/src/core/load_balancing/pick_first/pick_first.cc +1231 -408
- data/src/core/load_balancing/priority/priority.cc +114 -152
- data/src/core/load_balancing/ring_hash/ring_hash.cc +93 -100
- data/src/core/load_balancing/ring_hash/ring_hash.h +6 -7
- data/src/core/load_balancing/rls/rls.cc +515 -390
- data/src/core/load_balancing/rls/rls.h +26 -0
- data/src/core/load_balancing/round_robin/round_robin.cc +87 -558
- data/src/core/load_balancing/subchannel_interface.h +18 -7
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.cc +5 -6
- data/src/core/load_balancing/weighted_round_robin/static_stride_scheduler.h +1 -2
- data/src/core/load_balancing/weighted_round_robin/weighted_round_robin.cc +239 -1041
- data/src/core/load_balancing/weighted_target/weighted_target.cc +90 -123
- data/src/core/load_balancing/weighted_target/weighted_target.h +28 -0
- data/src/core/load_balancing/xds/cds.cc +69 -86
- data/src/core/load_balancing/xds/xds_cluster_impl.cc +256 -187
- data/src/core/load_balancing/xds/xds_cluster_manager.cc +58 -91
- data/src/core/load_balancing/xds/xds_override_host.cc +137 -199
- data/src/core/load_balancing/xds/xds_override_host.h +6 -7
- data/src/core/load_balancing/xds/xds_wrr_locality.cc +44 -54
- data/src/core/plugin_registry/grpc_plugin_registry.cc +27 -15
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +6 -3
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.cc +95 -70
- data/src/core/resolver/dns/c_ares/dns_resolver_ares.h +0 -1
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver.h +3 -5
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +8 -11
- data/src/core/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +156 -137
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.cc +177 -162
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper.h +3 -18
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +1 -1
- data/src/core/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +2 -2
- data/src/core/resolver/dns/dns_resolver_plugin.cc +11 -13
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.cc +58 -65
- data/src/core/resolver/dns/event_engine/event_engine_client_channel_resolver.h +5 -4
- data/src/core/resolver/dns/event_engine/service_config_helper.cc +8 -10
- data/src/core/resolver/dns/native/dns_resolver.cc +23 -33
- data/src/core/resolver/endpoint_addresses.cc +5 -8
- data/src/core/resolver/endpoint_addresses.h +7 -5
- data/src/core/resolver/fake/fake_resolver.cc +11 -13
- data/src/core/resolver/fake/fake_resolver.h +7 -9
- data/src/core/resolver/google_c2p/google_c2p_resolver.cc +37 -34
- data/src/core/resolver/polling_resolver.cc +42 -58
- data/src/core/resolver/polling_resolver.h +6 -8
- data/src/core/resolver/resolver.cc +3 -7
- data/src/core/resolver/resolver.h +2 -8
- data/src/core/resolver/resolver_factory.h +2 -3
- data/src/core/resolver/resolver_registry.cc +12 -14
- data/src/core/resolver/resolver_registry.h +4 -5
- data/src/core/resolver/sockaddr/sockaddr_resolver.cc +11 -13
- data/src/core/resolver/xds/xds_config.cc +95 -0
- data/src/core/resolver/xds/xds_config.h +108 -0
- data/src/core/resolver/xds/xds_dependency_manager.cc +99 -182
- data/src/core/resolver/xds/xds_dependency_manager.h +16 -81
- data/src/core/resolver/xds/xds_resolver.cc +156 -141
- data/src/core/resolver/xds/xds_resolver_attributes.h +7 -4
- data/src/core/server/server.cc +1930 -0
- data/src/core/server/server.h +570 -0
- data/src/core/server/server_call_tracer_filter.cc +117 -0
- data/src/core/server/server_call_tracer_filter.h +28 -0
- data/src/core/server/server_config_selector.h +82 -0
- data/src/core/server/server_config_selector_filter.cc +175 -0
- data/src/core/server/server_config_selector_filter.h +33 -0
- data/src/core/server/server_interface.h +45 -0
- data/src/core/server/xds_channel_stack_modifier.cc +107 -0
- data/src/core/server/xds_channel_stack_modifier.h +62 -0
- data/src/core/server/xds_server_config_fetcher.cc +1384 -0
- data/src/core/service_config/service_config.h +3 -6
- data/src/core/service_config/service_config_call_data.h +20 -19
- data/src/core/service_config/service_config_channel_arg_filter.cc +139 -0
- data/src/core/service_config/service_config_impl.cc +8 -10
- data/src/core/service_config/service_config_impl.h +6 -9
- data/src/core/service_config/service_config_parser.cc +4 -9
- data/src/core/service_config/service_config_parser.h +3 -5
- data/src/core/telemetry/call_tracer.cc +386 -0
- data/src/core/telemetry/call_tracer.h +263 -0
- data/src/core/telemetry/histogram_view.cc +69 -0
- data/src/core/telemetry/histogram_view.h +36 -0
- data/src/core/telemetry/metrics.cc +177 -0
- data/src/core/telemetry/metrics.h +565 -0
- data/src/core/telemetry/stats.cc +67 -0
- data/src/core/telemetry/stats.h +62 -0
- data/src/core/telemetry/stats_data.cc +837 -0
- data/src/core/telemetry/stats_data.h +644 -0
- data/src/core/telemetry/tcp_tracer.h +143 -0
- data/src/core/tsi/alts/crypt/aes_gcm.cc +4 -8
- data/src/core/tsi/alts/crypt/gsec.cc +2 -4
- data/src/core/tsi/alts/crypt/gsec.h +3 -5
- data/src/core/tsi/alts/frame_protector/alts_counter.cc +2 -4
- data/src/core/tsi/alts/frame_protector/alts_counter.h +1 -3
- data/src/core/tsi/alts/frame_protector/alts_crypter.cc +2 -4
- data/src/core/tsi/alts/frame_protector/alts_crypter.h +1 -3
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +16 -19
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +0 -1
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +1 -2
- data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +1 -2
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +1 -2
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +11 -13
- data/src/core/tsi/alts/frame_protector/frame_handler.h +0 -1
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +84 -86
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +1 -2
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +5 -6
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +2 -3
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +77 -76
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +1 -2
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +6 -5
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +1 -2
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +17 -24
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +2 -4
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +17 -19
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +12 -14
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +1 -2
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +16 -14
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +3 -6
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +0 -1
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +12 -15
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +0 -1
- data/src/core/tsi/fake_transport_security.cc +31 -34
- data/src/core/tsi/local_transport_security.cc +9 -11
- data/src/core/tsi/local_transport_security.h +1 -2
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +14 -16
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +7 -10
- data/src/core/tsi/ssl/session_cache/ssl_session.h +3 -5
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +16 -17
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +8 -10
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +4 -7
- data/src/core/tsi/ssl_transport_security.cc +335 -191
- data/src/core/tsi/ssl_transport_security.h +3 -6
- data/src/core/tsi/ssl_transport_security_utils.cc +208 -27
- data/src/core/tsi/ssl_transport_security_utils.h +39 -4
- data/src/core/tsi/ssl_types.h +0 -1
- data/src/core/tsi/transport_security.cc +3 -9
- data/src/core/tsi/transport_security.h +0 -3
- data/src/core/tsi/transport_security_grpc.cc +2 -2
- data/src/core/tsi/transport_security_grpc.h +1 -2
- data/src/core/tsi/transport_security_interface.h +0 -5
- data/src/core/util/alloc.cc +69 -0
- data/src/core/util/alloc.h +28 -0
- data/src/core/util/atm.cc +34 -0
- data/src/core/util/atomic_utils.h +47 -0
- data/src/core/util/avl.h +324 -0
- data/src/core/util/backoff.cc +46 -0
- data/src/core/util/backoff.h +86 -0
- data/src/core/util/bitset.h +224 -0
- data/src/core/util/chunked_vector.h +256 -0
- data/src/core/util/construct_destruct.h +41 -0
- data/src/core/util/cpp_impl_of.h +49 -0
- data/src/core/util/crash.cc +40 -0
- data/src/core/util/crash.h +36 -0
- data/src/core/util/debug_location.h +106 -0
- data/src/core/util/directory_reader.h +48 -0
- data/src/core/util/down_cast.h +48 -0
- data/src/core/util/dual_ref_counted.h +376 -0
- data/src/core/util/dump_args.cc +54 -0
- data/src/core/util/dump_args.h +122 -0
- data/src/core/util/env.h +53 -0
- data/src/core/util/event_log.cc +87 -0
- data/src/core/util/event_log.h +79 -0
- data/src/core/util/examine_stack.cc +43 -0
- data/src/core/util/examine_stack.h +45 -0
- data/src/core/util/fork.cc +241 -0
- data/src/core/util/fork.h +98 -0
- data/src/core/util/gcp_metadata_query.cc +132 -0
- data/src/core/util/gcp_metadata_query.h +86 -0
- data/src/core/util/gethostname.h +26 -0
- data/src/core/util/gethostname_fallback.cc +30 -0
- data/src/core/util/gethostname_host_name_max.cc +39 -0
- data/src/core/util/gethostname_sysconf.cc +39 -0
- data/src/core/util/glob.cc +70 -0
- data/src/core/util/glob.h +29 -0
- data/src/core/util/gpr_time.cc +268 -0
- data/src/core/util/grpc_if_nametoindex.h +29 -0
- data/src/core/util/grpc_if_nametoindex_posix.cc +41 -0
- data/src/core/util/grpc_if_nametoindex_unsupported.cc +36 -0
- data/src/core/util/host_port.cc +114 -0
- data/src/core/util/host_port.h +57 -0
- data/src/core/util/http_client/format_request.cc +134 -0
- data/src/core/util/http_client/format_request.h +37 -0
- data/src/core/util/http_client/httpcli.cc +373 -0
- data/src/core/util/http_client/httpcli.h +269 -0
- data/src/core/util/http_client/httpcli_security_connector.cc +210 -0
- data/src/core/util/http_client/httpcli_ssl_credentials.h +38 -0
- data/src/core/util/http_client/parser.cc +447 -0
- data/src/core/util/http_client/parser.h +126 -0
- data/src/core/util/if_list.h +4530 -0
- data/src/core/util/iphone/cpu.cc +43 -0
- data/src/core/util/json/json.h +29 -0
- data/src/core/util/json/json_args.h +34 -0
- data/src/core/util/json/json_channel_args.h +41 -0
- data/src/core/util/json/json_object_loader.cc +215 -0
- data/src/core/util/json/json_object_loader.h +644 -0
- data/src/core/util/json/json_reader.cc +953 -0
- data/src/core/util/json/json_reader.h +33 -0
- data/src/core/util/json/json_util.cc +101 -0
- data/src/core/util/json/json_util.h +163 -0
- data/src/core/util/json/json_writer.cc +337 -0
- data/src/core/util/json/json_writer.h +33 -0
- data/src/core/util/latent_see.cc +142 -0
- data/src/core/util/latent_see.h +327 -0
- data/src/core/util/linux/cpu.cc +86 -0
- data/src/core/util/linux/env.cc +62 -0
- data/src/core/util/load_file.cc +75 -0
- data/src/core/util/load_file.h +33 -0
- data/src/core/util/log.cc +127 -0
- data/src/core/util/lru_cache.h +122 -0
- data/src/core/util/manual_constructor.h +145 -0
- data/src/core/util/match.h +74 -0
- data/src/core/util/matchers.cc +337 -0
- data/src/core/util/matchers.h +167 -0
- data/src/core/util/memory.h +52 -0
- data/src/core/util/mpscq.cc +108 -0
- data/src/core/util/mpscq.h +98 -0
- data/src/core/util/msys/tmpfile.cc +57 -0
- data/src/core/util/no_destruct.h +95 -0
- data/src/core/util/notification.h +66 -0
- data/src/core/util/orphanable.h +153 -0
- data/src/core/util/overload.h +59 -0
- data/src/core/util/packed_table.h +40 -0
- data/src/core/util/per_cpu.cc +34 -0
- data/src/core/util/per_cpu.h +102 -0
- data/src/core/util/posix/cpu.cc +83 -0
- data/src/core/util/posix/directory_reader.cc +82 -0
- data/src/core/util/posix/env.cc +47 -0
- data/src/core/util/posix/stat.cc +54 -0
- data/src/core/util/posix/string.cc +71 -0
- data/src/core/util/posix/sync.cc +158 -0
- data/src/core/util/posix/thd.cc +243 -0
- data/src/core/util/posix/time.cc +123 -0
- data/src/core/util/posix/tmpfile.cc +71 -0
- data/src/core/util/random_early_detection.cc +33 -0
- data/src/core/util/random_early_detection.h +61 -0
- data/src/core/util/ref_counted.h +402 -0
- data/src/core/util/ref_counted_ptr.h +443 -0
- data/src/core/util/ref_counted_string.cc +42 -0
- data/src/core/util/ref_counted_string.h +159 -0
- data/src/core/util/ring_buffer.h +123 -0
- data/src/core/util/single_set_ptr.h +89 -0
- data/src/core/util/sorted_pack.h +89 -0
- data/src/core/util/spinlock.h +51 -0
- data/src/core/util/stat.h +35 -0
- data/src/core/util/status_helper.cc +431 -0
- data/src/core/util/status_helper.h +160 -0
- data/src/core/util/strerror.cc +40 -0
- data/src/core/util/strerror.h +29 -0
- data/src/core/util/string.cc +341 -0
- data/src/core/util/string.h +110 -0
- data/src/core/util/sync.cc +123 -0
- data/src/core/util/sync.h +199 -0
- data/src/core/util/sync_abseil.cc +107 -0
- data/src/core/util/table.h +486 -0
- data/src/core/util/tchar.cc +49 -0
- data/src/core/util/tchar.h +33 -0
- data/src/core/util/thd.h +193 -0
- data/src/core/util/time.cc +240 -0
- data/src/core/util/time.h +385 -0
- data/src/core/util/time_averaged_stats.cc +60 -0
- data/src/core/util/time_averaged_stats.h +79 -0
- data/src/core/util/time_precise.cc +168 -0
- data/src/core/util/time_precise.h +68 -0
- data/src/core/util/time_util.cc +80 -0
- data/src/core/util/time_util.h +41 -0
- data/src/core/util/tmpfile.h +31 -0
- data/src/core/util/type_list.h +32 -0
- data/src/core/util/unique_ptr_with_bitset.h +86 -0
- data/src/core/util/unique_type_name.h +123 -0
- data/src/core/util/upb_utils.h +43 -0
- data/src/core/util/uri.cc +370 -0
- data/src/core/util/uri.h +101 -0
- data/src/core/util/useful.h +155 -0
- data/src/core/util/uuid_v4.cc +37 -0
- data/src/core/util/uuid_v4.h +35 -0
- data/src/core/util/validation_errors.cc +73 -0
- data/src/core/util/validation_errors.h +144 -0
- data/src/core/util/windows/cpu.cc +34 -0
- data/src/core/util/windows/directory_reader.cc +79 -0
- data/src/core/util/windows/env.cc +56 -0
- data/src/core/util/windows/stat.cc +50 -0
- data/src/core/util/windows/string.cc +68 -0
- data/src/core/util/windows/string_util.cc +53 -0
- data/src/core/util/windows/sync.cc +122 -0
- data/src/core/util/windows/thd.cc +182 -0
- data/src/core/util/windows/time.cc +105 -0
- data/src/core/util/windows/tmpfile.cc +66 -0
- data/src/core/util/work_serializer.cc +538 -0
- data/src/core/util/work_serializer.h +105 -0
- data/src/core/util/xxhash_inline.h +29 -0
- data/src/core/xds/grpc/certificate_provider_store.cc +153 -0
- data/src/core/xds/grpc/certificate_provider_store.h +132 -0
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.cc +136 -0
- data/src/core/xds/grpc/file_watcher_certificate_provider_factory.h +80 -0
- data/src/core/xds/grpc/xds_audit_logger_registry.cc +123 -0
- data/src/core/xds/grpc/xds_audit_logger_registry.h +67 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.cc +238 -0
- data/src/core/xds/grpc/xds_bootstrap_grpc.h +167 -0
- data/src/core/xds/grpc/xds_certificate_provider.cc +216 -0
- data/src/core/xds/grpc/xds_certificate_provider.h +116 -0
- data/src/core/xds/grpc/xds_client_grpc.cc +445 -0
- data/src/core/xds/grpc/xds_client_grpc.h +115 -0
- data/src/core/xds/grpc/xds_cluster.cc +79 -0
- data/src/core/xds/grpc/xds_cluster.h +135 -0
- data/src/core/xds/grpc/xds_cluster_parser.cc +772 -0
- data/src/core/xds/grpc/xds_cluster_parser.h +61 -0
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.cc +137 -0
- data/src/core/xds/grpc/xds_cluster_specifier_plugin.h +96 -0
- data/src/core/xds/grpc/xds_common_types.cc +103 -0
- data/src/core/xds/grpc/xds_common_types.h +90 -0
- data/src/core/xds/grpc/xds_common_types_parser.cc +503 -0
- data/src/core/xds/grpc/xds_common_types_parser.h +76 -0
- data/src/core/xds/grpc/xds_endpoint.cc +97 -0
- data/src/core/xds/grpc/xds_endpoint.h +128 -0
- data/src/core/xds/grpc/xds_endpoint_parser.cc +444 -0
- data/src/core/xds/grpc/xds_endpoint_parser.h +47 -0
- data/src/core/xds/grpc/xds_health_status.cc +73 -0
- data/src/core/xds/grpc/xds_health_status.h +88 -0
- data/src/core/xds/grpc/xds_http_fault_filter.cc +249 -0
- data/src/core/xds/grpc/xds_http_fault_filter.h +62 -0
- data/src/core/xds/grpc/xds_http_filter.h +134 -0
- data/src/core/xds/grpc/xds_http_filter_registry.cc +122 -0
- data/src/core/xds/grpc/xds_http_filter_registry.h +104 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.cc +141 -0
- data/src/core/xds/grpc/xds_http_gcp_authn_filter.h +60 -0
- data/src/core/xds/grpc/xds_http_rbac_filter.cc +602 -0
- data/src/core/xds/grpc/xds_http_rbac_filter.h +62 -0
- data/src/core/xds/grpc/xds_http_stateful_session_filter.cc +230 -0
- data/src/core/xds/grpc/xds_http_stateful_session_filter.h +62 -0
- data/src/core/xds/grpc/xds_lb_policy_registry.cc +365 -0
- data/src/core/xds/grpc/xds_lb_policy_registry.h +70 -0
- data/src/core/xds/grpc/xds_listener.cc +175 -0
- data/src/core/xds/grpc/xds_listener.h +203 -0
- data/src/core/xds/grpc/xds_listener_parser.cc +993 -0
- data/src/core/xds/grpc/xds_listener_parser.h +59 -0
- data/src/core/xds/grpc/xds_metadata.cc +62 -0
- data/src/core/xds/grpc/xds_metadata.h +150 -0
- data/src/core/xds/grpc/xds_metadata_parser.cc +184 -0
- data/src/core/xds/grpc/xds_metadata_parser.h +35 -0
- data/src/core/xds/grpc/xds_route_config.cc +281 -0
- data/src/core/xds/grpc/xds_route_config.h +220 -0
- data/src/core/xds/grpc/xds_route_config_parser.cc +962 -0
- data/src/core/xds/grpc/xds_route_config_parser.h +77 -0
- data/src/core/xds/grpc/xds_routing.cc +297 -0
- data/src/core/xds/grpc/xds_routing.h +112 -0
- data/src/core/xds/grpc/xds_server_grpc.cc +160 -0
- data/src/core/xds/grpc/xds_server_grpc.h +63 -0
- data/src/core/xds/grpc/xds_transport_grpc.cc +393 -0
- data/src/core/xds/grpc/xds_transport_grpc.h +149 -0
- data/src/core/xds/xds_client/lrs_client.cc +1292 -0
- data/src/core/xds/xds_client/lrs_client.h +394 -0
- data/src/core/xds/xds_client/xds_api.cc +353 -0
- data/src/core/xds/xds_client/xds_api.h +166 -0
- data/src/core/xds/xds_client/xds_backend_metric_propagation.cc +63 -0
- data/src/core/xds/xds_client/xds_backend_metric_propagation.h +59 -0
- data/src/core/xds/xds_client/xds_bootstrap.cc +37 -0
- data/src/core/xds/xds_client/xds_bootstrap.h +88 -0
- data/src/core/xds/xds_client/xds_channel_args.h +32 -0
- data/src/core/xds/xds_client/xds_client.cc +1689 -0
- data/src/core/xds/xds_client/xds_client.h +334 -0
- data/src/core/xds/xds_client/xds_locality.h +102 -0
- data/src/core/xds/xds_client/xds_metrics.h +41 -0
- data/src/core/xds/xds_client/xds_resource_type.h +97 -0
- data/src/core/xds/xds_client/xds_resource_type_impl.h +87 -0
- data/src/core/xds/xds_client/xds_transport.h +104 -0
- data/src/ruby/bin/math_pb.rb +1 -22
- data/src/ruby/ext/grpc/extconf.rb +1 -4
- data/src/ruby/ext/grpc/rb_byte_buffer.c +3 -3
- data/src/ruby/ext/grpc/rb_call.c +15 -8
- data/src/ruby/ext/grpc/rb_call_credentials.c +39 -32
- data/src/ruby/ext/grpc/rb_call_credentials.h +1 -0
- data/src/ruby/ext/grpc/rb_channel.c +42 -36
- data/src/ruby/ext/grpc/rb_channel_args.c +4 -4
- data/src/ruby/ext/grpc/rb_channel_credentials.c +5 -5
- data/src/ruby/ext/grpc/rb_channel_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_completion_queue.c +18 -36
- data/src/ruby/ext/grpc/rb_completion_queue.h +7 -1
- data/src/ruby/ext/grpc/rb_compression_options.c +9 -10
- data/src/ruby/ext/grpc/rb_event_thread.c +9 -9
- data/src/ruby/ext/grpc/rb_grpc.c +17 -16
- data/src/ruby/ext/grpc/rb_grpc.h +7 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +136 -146
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +205 -219
- data/src/ruby/ext/grpc/rb_server.c +47 -27
- data/src/ruby/ext/grpc/rb_server_credentials.c +4 -3
- data/src/ruby/ext/grpc/rb_server_credentials.h +2 -2
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.c +5 -5
- data/src/ruby/ext/grpc/rb_xds_channel_credentials.h +1 -2
- data/src/ruby/ext/grpc/rb_xds_server_credentials.c +5 -4
- data/src/ruby/ext/grpc/rb_xds_server_credentials.h +2 -2
- data/src/ruby/lib/grpc/generic/active_call.rb +16 -7
- data/src/ruby/lib/grpc/logconfig.rb +13 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/grpc/health/v1/health_pb.rb +1 -22
- data/src/ruby/pb/grpc/testing/duplicate/echo_duplicate_services_pb.rb +5 -5
- data/src/ruby/pb/grpc/testing/metrics_pb.rb +10 -19
- data/src/ruby/pb/grpc/testing/metrics_services_pb.rb +5 -5
- data/src/ruby/pb/src/proto/grpc/testing/empty_pb.rb +1 -22
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +1 -22
- data/src/ruby/pb/src/proto/grpc/testing/test_pb.rb +1 -22
- data/src/ruby/spec/call_spec.rb +53 -40
- data/src/ruby/spec/channel_spec.rb +4 -2
- data/src/ruby/spec/client_server_spec.rb +148 -507
- data/src/ruby/spec/generic/active_call_spec.rb +64 -86
- data/src/ruby/spec/generic/client_stub_spec.rb +20 -20
- data/src/ruby/spec/generic/rpc_server_spec.rb +25 -0
- data/src/ruby/spec/logconfig_spec.rb +30 -0
- data/src/ruby/spec/support/services.rb +3 -0
- data/third_party/abseil-cpp/absl/algorithm/container.h +57 -18
- data/third_party/abseil-cpp/absl/base/attributes.h +84 -0
- data/third_party/abseil-cpp/absl/base/config.h +32 -51
- data/third_party/abseil-cpp/absl/base/dynamic_annotations.h +0 -16
- data/third_party/abseil-cpp/absl/base/internal/nullability_impl.h +3 -1
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +13 -3
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +0 -12
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +4 -4
- data/third_party/abseil-cpp/absl/base/macros.h +48 -0
- data/third_party/abseil-cpp/absl/base/no_destructor.h +35 -40
- data/third_party/abseil-cpp/absl/base/nullability.h +33 -7
- data/third_party/abseil-cpp/absl/base/optimization.h +11 -0
- data/third_party/abseil-cpp/absl/base/options.h +1 -1
- data/third_party/abseil-cpp/absl/base/prefetch.h +1 -1
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +68 -12
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +60 -6
- data/third_party/abseil-cpp/absl/container/hash_container_defaults.h +45 -0
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +13 -0
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +20 -11
- data/third_party/abseil-cpp/absl/container/internal/compressed_tuple.h +15 -16
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +34 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_function_defaults.h +68 -1
- data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +50 -0
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +22 -7
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +26 -8
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +39 -35
- data/third_party/abseil-cpp/absl/container/internal/layout.h +190 -74
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_map.h +8 -6
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +334 -71
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1299 -458
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +19 -17
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +4 -3
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +2 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_arm_combined.cc +12 -8
- data/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +1 -1
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +11 -7
- data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +18 -17
- data/third_party/abseil-cpp/absl/debugging/internal/bounded_utf8_length_sequence.h +126 -0
- data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.cc +258 -0
- data/third_party/abseil-cpp/absl/debugging/internal/decode_rust_punycode.h +55 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +1057 -86
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +3 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.cc +925 -0
- data/third_party/abseil-cpp/absl/debugging/internal/demangle_rust.h +42 -0
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +43 -16
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +8 -7
- data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.cc +320 -0
- data/third_party/abseil-cpp/absl/debugging/internal/examine_stack.h +64 -0
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +10 -7
- data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.cc +70 -0
- data/third_party/abseil-cpp/absl/debugging/internal/utf8_for_code_point.h +47 -0
- data/third_party/abseil-cpp/absl/flags/commandlineflag.h +11 -0
- data/third_party/abseil-cpp/absl/flags/flag.h +2 -0
- data/third_party/abseil-cpp/absl/flags/internal/flag.cc +117 -30
- data/third_party/abseil-cpp/absl/flags/internal/flag.h +192 -30
- data/third_party/abseil-cpp/absl/flags/reflection.cc +10 -0
- data/third_party/abseil-cpp/absl/functional/any_invocable.h +13 -3
- data/third_party/abseil-cpp/absl/functional/bind_front.h +3 -2
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +7 -7
- data/third_party/abseil-cpp/absl/functional/internal/front_binder.h +9 -9
- data/third_party/abseil-cpp/absl/hash/internal/hash.cc +1 -1
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +13 -3
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +60 -28
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.h +4 -0
- data/third_party/abseil-cpp/absl/log/absl_vlog_is_on.h +93 -0
- data/third_party/abseil-cpp/absl/log/check.h +209 -0
- data/third_party/abseil-cpp/absl/log/globals.cc +178 -0
- data/third_party/abseil-cpp/absl/log/globals.h +231 -0
- data/third_party/abseil-cpp/absl/log/internal/append_truncated.h +47 -0
- data/third_party/abseil-cpp/absl/log/internal/check_impl.h +150 -0
- data/third_party/abseil-cpp/absl/log/internal/check_op.cc +138 -0
- data/third_party/abseil-cpp/absl/log/internal/check_op.h +462 -0
- data/third_party/abseil-cpp/absl/log/internal/conditions.cc +83 -0
- data/third_party/abseil-cpp/absl/log/internal/conditions.h +239 -0
- data/third_party/abseil-cpp/absl/log/internal/config.h +45 -0
- data/third_party/abseil-cpp/absl/log/internal/fnmatch.cc +73 -0
- data/third_party/abseil-cpp/absl/log/internal/fnmatch.h +35 -0
- data/third_party/abseil-cpp/absl/log/internal/globals.cc +145 -0
- data/third_party/abseil-cpp/absl/log/internal/globals.h +101 -0
- data/third_party/abseil-cpp/absl/log/internal/log_format.cc +205 -0
- data/third_party/abseil-cpp/absl/log/internal/log_format.h +78 -0
- data/third_party/abseil-cpp/absl/log/internal/log_impl.h +282 -0
- data/third_party/abseil-cpp/absl/log/internal/log_message.cc +690 -0
- data/third_party/abseil-cpp/absl/log/internal/log_message.h +394 -0
- data/third_party/abseil-cpp/absl/log/internal/log_sink_set.cc +296 -0
- data/third_party/abseil-cpp/absl/log/internal/log_sink_set.h +54 -0
- data/third_party/abseil-cpp/absl/log/internal/nullguard.cc +35 -0
- data/third_party/abseil-cpp/absl/log/internal/nullguard.h +88 -0
- data/third_party/abseil-cpp/absl/log/internal/nullstream.h +127 -0
- data/third_party/abseil-cpp/absl/log/internal/proto.cc +220 -0
- data/third_party/abseil-cpp/absl/log/internal/proto.h +288 -0
- data/third_party/abseil-cpp/absl/log/internal/strip.h +108 -0
- data/third_party/abseil-cpp/absl/log/internal/vlog_config.cc +340 -0
- data/third_party/abseil-cpp/absl/log/internal/vlog_config.h +163 -0
- data/third_party/abseil-cpp/absl/log/internal/voidify.h +44 -0
- data/third_party/abseil-cpp/absl/log/log.h +365 -0
- data/third_party/abseil-cpp/absl/log/log_entry.cc +41 -0
- data/third_party/abseil-cpp/absl/log/log_entry.h +221 -0
- data/third_party/abseil-cpp/absl/log/log_sink.cc +23 -0
- data/third_party/abseil-cpp/absl/log/log_sink.h +71 -0
- data/third_party/abseil-cpp/absl/log/log_sink_registry.h +61 -0
- data/third_party/abseil-cpp/absl/log/vlog_is_on.h +72 -0
- data/third_party/abseil-cpp/absl/meta/type_traits.h +138 -42
- data/third_party/abseil-cpp/absl/numeric/int128.cc +0 -3
- data/third_party/abseil-cpp/absl/numeric/int128.h +35 -5
- data/third_party/abseil-cpp/absl/numeric/int128_have_intrinsic.inc +14 -0
- data/third_party/abseil-cpp/absl/numeric/int128_no_intrinsic.inc +18 -0
- data/third_party/abseil-cpp/absl/numeric/internal/bits.h +6 -2
- data/third_party/abseil-cpp/absl/random/beta_distribution.h +8 -8
- data/third_party/abseil-cpp/absl/random/bit_gen_ref.h +9 -7
- data/third_party/abseil-cpp/absl/random/distributions.h +11 -11
- data/third_party/abseil-cpp/absl/random/seed_sequences.h +2 -0
- data/third_party/abseil-cpp/absl/status/internal/statusor_internal.h +61 -2
- data/third_party/abseil-cpp/absl/status/status.cc +0 -4
- data/third_party/abseil-cpp/absl/status/status.h +4 -4
- data/third_party/abseil-cpp/absl/status/statusor.h +108 -142
- data/third_party/abseil-cpp/absl/strings/ascii.cc +32 -71
- data/third_party/abseil-cpp/absl/strings/cord.cc +20 -15
- data/third_party/abseil-cpp/absl/strings/cord.h +68 -7
- data/third_party/abseil-cpp/absl/strings/escaping.cc +96 -21
- data/third_party/abseil-cpp/absl/strings/escaping.h +25 -8
- data/third_party/abseil-cpp/absl/strings/has_absl_stringify.h +1 -0
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.h +10 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +29 -9
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.cc +19 -13
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +23 -13
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.cc +24 -24
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +12 -7
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +9 -4
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +5 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +23 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +5 -1
- data/third_party/abseil-cpp/absl/strings/numbers.cc +107 -333
- data/third_party/abseil-cpp/absl/strings/numbers.h +12 -151
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +49 -142
- data/third_party/abseil-cpp/absl/strings/str_cat.h +70 -85
- data/third_party/abseil-cpp/absl/strings/str_format.h +1 -1
- data/third_party/abseil-cpp/absl/strings/str_join.h +19 -5
- data/third_party/abseil-cpp/absl/strings/str_split.h +2 -2
- data/third_party/abseil-cpp/absl/strings/string_view.h +3 -2
- data/third_party/abseil-cpp/absl/strings/substitute.cc +4 -0
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +11 -2
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.h +5 -0
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +5 -4
- data/third_party/abseil-cpp/absl/time/civil_time.h +2 -2
- data/third_party/abseil-cpp/absl/time/clock.cc +15 -1
- data/third_party/abseil-cpp/absl/time/duration.cc +58 -53
- data/third_party/abseil-cpp/absl/time/format.cc +2 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_libc.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +0 -29
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/tzfile.h +3 -3
- data/third_party/abseil-cpp/absl/time/time.h +73 -29
- data/third_party/abseil-cpp/absl/types/compare.h +505 -0
- data/third_party/abseil-cpp/absl/types/internal/optional.h +2 -2
- data/third_party/abseil-cpp/absl/types/internal/variant.h +55 -67
- data/third_party/abseil-cpp/absl/types/optional.h +15 -18
- data/third_party/abseil-cpp/absl/types/span.h +3 -2
- data/third_party/abseil-cpp/absl/types/variant.h +19 -24
- data/third_party/abseil-cpp/absl/utility/utility.h +3 -41
- data/third_party/boringssl-with-bazel/src/crypto/asn1/internal.h +1 -7
- data/third_party/boringssl-with-bazel/src/crypto/asn1/posix_time.c +50 -39
- data/third_party/boringssl-with-bazel/src/crypto/base64/base64.c +4 -0
- data/third_party/boringssl-with-bazel/src/crypto/bcm_support.h +113 -0
- data/third_party/boringssl-with-bazel/src/crypto/bio/bio.c +15 -20
- data/third_party/boringssl-with-bazel/src/crypto/bio/file.c +25 -10
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/cbs.c +3 -18
- data/third_party/boringssl-with-bazel/src/crypto/bytestring/unicode.c +3 -2
- data/third_party/boringssl-with-bazel/src/crypto/chacha/chacha.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/chacha/internal.h +19 -15
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_chacha20poly1305.c +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_des.c +63 -94
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_null.c +7 -3
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc2.c +20 -28
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/e_rc4.c +9 -4
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/internal.h +43 -0
- data/third_party/boringssl-with-bazel/src/crypto/cipher_extra/tls_cbc.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf.c +66 -41
- data/third_party/boringssl-with-bazel/src/crypto/cpu_arm_linux.c +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/cpu_intel.c +71 -37
- data/third_party/boringssl-with-bazel/src/crypto/crypto.c +8 -62
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/curve25519.c +7 -7
- data/third_party/boringssl-with-bazel/src/crypto/curve25519/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/des/des.c +45 -32
- data/third_party/boringssl-with-bazel/src/crypto/des/internal.h +24 -0
- data/third_party/boringssl-with-bazel/src/crypto/digest_extra/digest_extra.c +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/dilithium/dilithium.c +1539 -0
- data/third_party/boringssl-with-bazel/src/crypto/dilithium/internal.h +58 -0
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa.c +36 -20
- data/third_party/boringssl-with-bazel/src/crypto/dsa/dsa_asn1.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/dsa/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/ecdsa_extra/ecdsa_asn1.c +160 -14
- data/third_party/boringssl-with-bazel/src/crypto/err/err.c +81 -60
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp.c +41 -120
- data/third_party/boringssl-with-bazel/src/crypto/evp/evp_asn1.c +13 -13
- data/third_party/boringssl-with-bazel/src/crypto/evp/internal.h +7 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh.c +137 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dh_asn1.c +120 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_dsa_asn1.c +30 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec.c +3 -4
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ec_asn1.c +30 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_ed25519.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_rsa_asn1.c +30 -0
- data/third_party/boringssl-with-bazel/src/crypto/evp/p_x25519.c +1 -4
- data/third_party/boringssl-with-bazel/src/crypto/ex_data.c +6 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c.inc +127 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/internal.h +33 -7
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm.c +84 -80
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bcm_interface.h +89 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c.inc +267 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c.inc +876 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c.inc +87 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c.inc +1320 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c.inc +331 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/internal.h +33 -23
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c.inc +222 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c.inc +744 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c.inc +1077 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c.inc +354 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c.inc +499 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c.inc +1464 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/internal.h +0 -3
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c.inc +561 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c.inc +734 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.h +65 -8
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c.inc +173 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c.inc +317 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/internal.h +28 -11
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/fips_shared_support.c +3 -6
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/internal.h +1 -80
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c.inc +479 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c.inc +420 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c.inc +1038 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c.inc +1351 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c.inc +121 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c.inc +1038 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/internal.h +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c.inc +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/internal.h +78 -29
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c.inc +439 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c.inc +359 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c.inc +543 -0
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c.inc +218 -0
- data/third_party/boringssl-with-bazel/src/crypto/hpke/hpke.c +295 -2
- data/third_party/boringssl-with-bazel/src/crypto/internal.h +143 -45
- data/third_party/boringssl-with-bazel/src/crypto/kyber/internal.h +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/kyber/kyber.c +2 -1
- data/third_party/boringssl-with-bazel/src/crypto/mem.c +25 -12
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/internal.h +73 -0
- data/third_party/boringssl-with-bazel/src/crypto/mldsa/mldsa.c +1687 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/internal.h +90 -0
- data/third_party/boringssl-with-bazel/src/crypto/mlkem/mlkem.cc +1097 -0
- data/third_party/boringssl-with-bazel/src/crypto/obj/obj_dat.h +4 -1
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_lib.c +19 -19
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pk8.c +43 -41
- data/third_party/boringssl-with-bazel/src/crypto/pem/pem_pkey.c +13 -12
- data/third_party/boringssl-with-bazel/src/crypto/pkcs8/internal.h +1 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/deterministic.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/fork_detect.c +195 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/getentropy.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/ios.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/passive.c +19 -3
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/rand_extra.c +26 -23
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/sysrand_internal.h +37 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/trusty.c +9 -1
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/urandom.c +328 -0
- data/third_party/boringssl-with-bazel/src/crypto/rand_extra/windows.c +8 -1
- data/third_party/boringssl-with-bazel/src/crypto/rsa_extra/internal.h +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/spx/spx.c +7 -6
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_dir.c +26 -33
- data/third_party/boringssl-with-bazel/src/crypto/x509/by_file.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/internal.h +8 -5
- data/third_party/boringssl-with-bazel/src/crypto/x509/rsa_pss.c +5 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_cpols.c +9 -4
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_crld.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_info.c +1 -1
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_lib.c +2 -0
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_purp.c +40 -61
- data/third_party/boringssl-with-bazel/src/crypto/x509/v3_utl.c +49 -16
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_lu.c +24 -17
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_trs.c +51 -78
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vfy.c +12 -29
- data/third_party/boringssl-with-bazel/src/crypto/x509/x509_vpm.c +13 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_algor.c +2 -2
- data/third_party/boringssl-with-bazel/src/crypto/x509/x_x509.c +1 -6
- data/third_party/boringssl-with-bazel/src/gen/crypto/err_data.c +1514 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/asn1.h +24 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/base.h +10 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/bio.h +88 -45
- data/third_party/boringssl-with-bazel/src/include/openssl/bn.h +14 -9
- data/third_party/boringssl-with-bazel/src/include/openssl/bytestring.h +12 -4
- data/third_party/boringssl-with-bazel/src/include/openssl/crypto.h +10 -11
- data/third_party/boringssl-with-bazel/src/include/openssl/dh.h +17 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/dsa.h +10 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/err.h +13 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/evp.h +25 -14
- data/third_party/boringssl-with-bazel/src/include/openssl/evp_errors.h +1 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/ex_data.h +15 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/dilithium.h +129 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/kyber.h +146 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/experimental/spx.h +90 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/hpke.h +8 -6
- data/third_party/boringssl-with-bazel/src/include/openssl/mldsa.h +136 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/mlkem.h +246 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/nid.h +3 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/obj.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/pem.h +66 -57
- data/third_party/boringssl-with-bazel/src/include/openssl/posix_time.h +6 -0
- data/third_party/boringssl-with-bazel/src/include/openssl/rand.h +19 -10
- data/third_party/boringssl-with-bazel/src/include/openssl/rsa.h +19 -10
- data/third_party/boringssl-with-bazel/src/include/openssl/service_indicator.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/span.h +62 -12
- data/third_party/boringssl-with-bazel/src/include/openssl/ssl.h +409 -111
- data/third_party/boringssl-with-bazel/src/include/openssl/stack.h +10 -3
- data/third_party/boringssl-with-bazel/src/include/openssl/target.h +13 -10
- data/third_party/boringssl-with-bazel/src/include/openssl/tls1.h +2 -2
- data/third_party/boringssl-with-bazel/src/include/openssl/x509.h +2927 -2394
- data/third_party/boringssl-with-bazel/src/ssl/d1_both.cc +9 -12
- data/third_party/boringssl-with-bazel/src/ssl/d1_lib.cc +6 -0
- data/third_party/boringssl-with-bazel/src/ssl/d1_pkt.cc +10 -5
- data/third_party/boringssl-with-bazel/src/ssl/dtls_method.cc +14 -2
- data/third_party/boringssl-with-bazel/src/ssl/dtls_record.cc +301 -66
- data/third_party/boringssl-with-bazel/src/ssl/encrypted_client_hello.cc +3 -9
- data/third_party/boringssl-with-bazel/src/ssl/extensions.cc +66 -58
- data/third_party/boringssl-with-bazel/src/ssl/handoff.cc +1 -1
- data/third_party/boringssl-with-bazel/src/ssl/handshake.cc +17 -7
- data/third_party/boringssl-with-bazel/src/ssl/handshake_client.cc +138 -54
- data/third_party/boringssl-with-bazel/src/ssl/handshake_server.cc +159 -117
- data/third_party/boringssl-with-bazel/src/ssl/internal.h +349 -202
- data/third_party/boringssl-with-bazel/src/ssl/s3_both.cc +45 -17
- data/third_party/boringssl-with-bazel/src/ssl/s3_lib.cc +0 -1
- data/third_party/boringssl-with-bazel/src/ssl/s3_pkt.cc +21 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_aead_ctx.cc +86 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_buffer.cc +7 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cert.cc +66 -385
- data/third_party/boringssl-with-bazel/src/ssl/ssl_cipher.cc +21 -19
- data/third_party/boringssl-with-bazel/src/ssl/ssl_credential.cc +423 -0
- data/third_party/boringssl-with-bazel/src/ssl/ssl_file.cc +2 -2
- data/third_party/boringssl-with-bazel/src/ssl/ssl_key_share.cc +99 -4
- data/third_party/boringssl-with-bazel/src/ssl/ssl_lib.cc +139 -83
- data/third_party/boringssl-with-bazel/src/ssl/ssl_privkey.cc +116 -93
- data/third_party/boringssl-with-bazel/src/ssl/ssl_session.cc +6 -14
- data/third_party/boringssl-with-bazel/src/ssl/ssl_versions.cc +7 -1
- data/third_party/boringssl-with-bazel/src/ssl/ssl_x509.cc +48 -116
- data/third_party/boringssl-with-bazel/src/ssl/tls13_both.cc +21 -27
- data/third_party/boringssl-with-bazel/src/ssl/tls13_client.cc +54 -7
- data/third_party/boringssl-with-bazel/src/ssl/tls13_enc.cc +96 -34
- data/third_party/boringssl-with-bazel/src/ssl/tls13_server.cc +68 -23
- data/third_party/boringssl-with-bazel/src/ssl/tls_record.cc +4 -24
- data/third_party/upb/upb/base/descriptor_constants.h +29 -2
- data/third_party/upb/upb/base/internal/endian.h +46 -0
- data/third_party/upb/upb/base/status.h +1 -1
- data/third_party/upb/upb/base/status.hpp +5 -1
- data/third_party/upb/upb/base/string_view.h +7 -5
- data/third_party/upb/upb/base/upcast.h +29 -0
- data/third_party/upb/upb/generated_code_support.h +2 -1
- data/third_party/upb/upb/json/decode.c +124 -56
- data/third_party/upb/upb/json/decode.h +3 -26
- data/third_party/upb/upb/json/encode.c +5 -28
- data/third_party/upb/upb/json/encode.h +3 -26
- data/third_party/upb/upb/lex/round_trip.c +10 -0
- data/third_party/upb/upb/mem/arena.c +311 -108
- data/third_party/upb/upb/mem/arena.h +27 -68
- data/third_party/upb/upb/mem/arena.hpp +13 -5
- data/third_party/upb/upb/mem/internal/arena.h +78 -57
- data/third_party/upb/upb/message/accessors.c +17 -45
- data/third_party/upb/upb/message/accessors.h +201 -314
- data/third_party/upb/upb/message/array.c +78 -83
- data/third_party/upb/upb/message/array.h +26 -30
- data/third_party/upb/upb/message/compat.c +39 -0
- data/third_party/upb/upb/message/compat.h +41 -0
- data/third_party/upb/upb/message/copy.c +325 -0
- data/third_party/upb/upb/message/copy.h +56 -0
- data/third_party/upb/upb/message/internal/accessors.h +731 -176
- data/third_party/upb/upb/message/internal/array.h +86 -79
- data/third_party/upb/upb/message/internal/compare_unknown.c +289 -0
- data/third_party/upb/upb/message/internal/compare_unknown.h +49 -0
- data/third_party/upb/upb/message/internal/extension.c +63 -0
- data/third_party/upb/upb/message/internal/extension.h +14 -17
- data/third_party/upb/upb/message/internal/map.h +43 -41
- data/third_party/upb/upb/message/internal/map_entry.h +14 -39
- data/third_party/upb/upb/message/internal/map_sorter.h +19 -39
- data/third_party/upb/upb/message/internal/message.c +75 -0
- data/third_party/upb/upb/message/internal/message.h +36 -41
- data/third_party/upb/upb/message/internal/tagged_ptr.h +56 -0
- data/third_party/upb/upb/message/internal/types.h +46 -11
- data/third_party/upb/upb/message/map.c +28 -26
- data/third_party/upb/upb/message/map.h +16 -40
- data/third_party/upb/upb/message/map_gencode_util.h +3 -26
- data/third_party/upb/upb/message/map_sorter.c +22 -34
- data/third_party/upb/upb/message/merge.c +38 -0
- data/third_party/upb/upb/message/merge.h +26 -0
- data/third_party/upb/upb/message/message.c +106 -103
- data/third_party/upb/upb/message/message.h +19 -8
- data/third_party/upb/upb/message/tagged_ptr.h +15 -36
- data/third_party/upb/upb/message/value.h +29 -5
- data/third_party/upb/upb/mini_descriptor/build_enum.c +23 -14
- data/third_party/upb/upb/mini_descriptor/build_enum.h +6 -14
- data/third_party/upb/upb/mini_descriptor/decode.c +145 -109
- data/third_party/upb/upb/mini_descriptor/decode.h +3 -8
- data/third_party/upb/upb/mini_descriptor/link.c +47 -33
- data/third_party/upb/upb/mini_descriptor/link.h +1 -1
- data/third_party/upb/upb/mini_table/enum.h +4 -8
- data/third_party/upb/upb/mini_table/extension.h +29 -0
- data/third_party/upb/upb/mini_table/extension_registry.c +27 -2
- data/third_party/upb/upb/mini_table/extension_registry.h +17 -0
- data/third_party/upb/upb/mini_table/field.h +28 -68
- data/third_party/upb/upb/mini_table/file.h +31 -0
- data/third_party/upb/upb/mini_table/internal/enum.h +19 -20
- data/third_party/upb/upb/mini_table/internal/extension.h +43 -3
- data/third_party/upb/upb/mini_table/internal/field.h +137 -28
- data/third_party/upb/upb/mini_table/internal/file.h +47 -10
- data/third_party/upb/upb/mini_table/internal/message.c +37 -9
- data/third_party/upb/upb/mini_table/internal/message.h +138 -23
- data/third_party/upb/upb/mini_table/internal/size_log2.h +77 -0
- data/third_party/upb/upb/mini_table/internal/sub.h +44 -4
- data/third_party/upb/upb/mini_table/message.c +18 -19
- data/third_party/upb/upb/mini_table/message.h +35 -25
- data/third_party/upb/upb/mini_table/sub.h +32 -1
- data/third_party/upb/upb/port/def.inc +101 -6
- data/third_party/upb/upb/port/undef.inc +8 -1
- data/third_party/upb/upb/reflection/def.hpp +42 -3
- data/third_party/upb/upb/reflection/def_pool.c +81 -2
- data/third_party/upb/upb/reflection/def_pool.h +10 -2
- data/third_party/upb/upb/reflection/enum_def.c +46 -19
- data/third_party/upb/upb/reflection/enum_def.h +2 -0
- data/third_party/upb/upb/reflection/enum_value_def.c +38 -14
- data/third_party/upb/upb/reflection/enum_value_def.h +2 -0
- data/third_party/upb/upb/reflection/extension_range.c +13 -5
- data/third_party/upb/upb/reflection/extension_range.h +2 -0
- data/third_party/upb/upb/reflection/field_def.c +225 -138
- data/third_party/upb/upb/reflection/field_def.h +14 -1
- data/third_party/upb/upb/reflection/file_def.c +124 -9
- data/third_party/upb/upb/reflection/file_def.h +6 -0
- data/third_party/upb/upb/reflection/internal/def_builder.c +85 -7
- data/third_party/upb/upb/reflection/internal/def_builder.h +23 -0
- data/third_party/upb/upb/reflection/internal/enum_def.h +5 -4
- data/third_party/upb/upb/reflection/internal/enum_reserved_range.h +1 -1
- data/third_party/upb/upb/reflection/internal/enum_value_def.h +2 -1
- data/third_party/upb/upb/reflection/internal/extension_range.h +2 -2
- data/third_party/upb/upb/reflection/internal/field_def.h +11 -10
- data/third_party/upb/upb/reflection/internal/message_def.h +6 -3
- data/third_party/upb/upb/reflection/internal/method_def.h +5 -3
- data/third_party/upb/upb/reflection/internal/oneof_def.h +5 -3
- data/third_party/upb/upb/reflection/internal/service_def.h +5 -3
- data/third_party/upb/upb/reflection/internal/upb_edition_defaults.h +20 -0
- data/third_party/upb/upb/reflection/message.c +52 -20
- data/third_party/upb/upb/reflection/message.h +7 -7
- data/third_party/upb/upb/reflection/message_def.c +68 -34
- data/third_party/upb/upb/reflection/message_def.h +2 -0
- data/third_party/upb/upb/reflection/method_def.c +20 -9
- data/third_party/upb/upb/reflection/method_def.h +10 -7
- data/third_party/upb/upb/reflection/oneof_def.c +20 -11
- data/third_party/upb/upb/reflection/oneof_def.h +3 -1
- data/third_party/upb/upb/reflection/service_def.c +25 -13
- data/third_party/upb/upb/reflection/service_def.h +8 -5
- data/third_party/upb/upb/text/encode.c +72 -311
- data/third_party/upb/upb/text/encode.h +1 -11
- data/third_party/upb/upb/text/internal/encode.c +180 -0
- data/third_party/upb/upb/text/internal/encode.h +240 -0
- data/third_party/upb/upb/text/options.h +22 -0
- data/third_party/upb/upb/wire/decode.c +353 -269
- data/third_party/upb/upb/wire/decode.h +24 -1
- data/third_party/upb/upb/wire/encode.c +160 -105
- data/third_party/upb/upb/wire/encode.h +16 -4
- data/third_party/upb/upb/wire/eps_copy_input_stream.h +3 -3
- data/third_party/upb/upb/wire/internal/decode_fast.c +1000 -0
- data/third_party/upb/upb/wire/internal/decode_fast.h +148 -0
- data/third_party/upb/upb/wire/internal/decoder.h +127 -0
- data/third_party/upb/upb/wire/internal/reader.h +61 -0
- data/third_party/upb/upb/wire/reader.c +10 -8
- data/third_party/upb/upb/wire/reader.h +20 -53
- data/third_party/utf8_range/utf8_range.c +467 -0
- data/third_party/utf8_range/utf8_range.h +9 -8
- metadata +528 -389
- data/src/core/client_channel/backend_metric.cc +0 -95
- data/src/core/client_channel/backend_metric.h +0 -47
- data/src/core/client_channel/channel_connectivity.cc +0 -265
- data/src/core/client_channel/client_channel_channelz.cc +0 -93
- data/src/core/client_channel/client_channel_channelz.h +0 -85
- data/src/core/client_channel/config_selector.cc +0 -60
- data/src/core/client_channel/http_proxy_mapper.cc +0 -305
- data/src/core/client_channel/http_proxy_mapper.h +0 -53
- data/src/core/client_channel/service_config_channel_arg_filter.cc +0 -136
- data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +0 -318
- data/src/core/ext/filters/channel_idle/channel_idle_filter.h +0 -150
- data/src/core/ext/filters/deadline/deadline_filter.cc +0 -407
- data/src/core/ext/filters/deadline/deadline_filter.h +0 -85
- data/src/core/ext/filters/http/message_compress/legacy_compression_filter.cc +0 -325
- data/src/core/ext/filters/http/message_compress/legacy_compression_filter.h +0 -139
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +0 -83
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +0 -170
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.h +0 -33
- data/src/core/ext/gcp/metadata_query.cc +0 -136
- data/src/core/ext/gcp/metadata_query.h +0 -87
- data/src/core/ext/transport/chttp2/transport/http_trace.cc +0 -19
- data/src/core/ext/transport/chttp2/transport/http_trace.h +0 -24
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc +0 -44
- data/src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h +0 -67
- data/src/core/ext/transport/inproc/inproc_plugin.cc +0 -23
- data/src/core/ext/xds/certificate_provider_store.cc +0 -155
- data/src/core/ext/xds/certificate_provider_store.h +0 -133
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +0 -138
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +0 -82
- data/src/core/ext/xds/upb_utils.h +0 -45
- data/src/core/ext/xds/xds_api.cc +0 -572
- data/src/core/ext/xds/xds_api.h +0 -189
- data/src/core/ext/xds/xds_audit_logger_registry.cc +0 -122
- data/src/core/ext/xds/xds_audit_logger_registry.h +0 -68
- data/src/core/ext/xds/xds_bootstrap.cc +0 -38
- data/src/core/ext/xds/xds_bootstrap.h +0 -90
- data/src/core/ext/xds/xds_bootstrap_grpc.cc +0 -365
- data/src/core/ext/xds/xds_bootstrap_grpc.h +0 -182
- data/src/core/ext/xds/xds_certificate_provider.cc +0 -217
- data/src/core/ext/xds/xds_certificate_provider.h +0 -116
- data/src/core/ext/xds/xds_channel_args.h +0 -32
- data/src/core/ext/xds/xds_channel_stack_modifier.cc +0 -107
- data/src/core/ext/xds/xds_channel_stack_modifier.h +0 -63
- data/src/core/ext/xds/xds_client.cc +0 -2123
- data/src/core/ext/xds/xds_client.h +0 -358
- data/src/core/ext/xds/xds_client_grpc.cc +0 -281
- data/src/core/ext/xds/xds_client_grpc.h +0 -96
- data/src/core/ext/xds/xds_client_stats.cc +0 -173
- data/src/core/ext/xds/xds_client_stats.h +0 -251
- data/src/core/ext/xds/xds_cluster.cc +0 -795
- data/src/core/ext/xds/xds_cluster.h +0 -142
- data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +0 -140
- data/src/core/ext/xds/xds_cluster_specifier_plugin.h +0 -97
- data/src/core/ext/xds/xds_common_types.cc +0 -509
- data/src/core/ext/xds/xds_common_types.h +0 -108
- data/src/core/ext/xds/xds_endpoint.cc +0 -516
- data/src/core/ext/xds/xds_endpoint.h +0 -150
- data/src/core/ext/xds/xds_health_status.cc +0 -75
- data/src/core/ext/xds/xds_health_status.h +0 -91
- data/src/core/ext/xds/xds_http_fault_filter.cc +0 -238
- data/src/core/ext/xds/xds_http_fault_filter.h +0 -58
- data/src/core/ext/xds/xds_http_filters.cc +0 -117
- data/src/core/ext/xds/xds_http_filters.h +0 -182
- data/src/core/ext/xds/xds_http_rbac_filter.cc +0 -588
- data/src/core/ext/xds/xds_http_rbac_filter.h +0 -58
- data/src/core/ext/xds/xds_http_stateful_session_filter.cc +0 -218
- data/src/core/ext/xds/xds_http_stateful_session_filter.h +0 -58
- data/src/core/ext/xds/xds_lb_policy_registry.cc +0 -371
- data/src/core/ext/xds/xds_lb_policy_registry.h +0 -71
- data/src/core/ext/xds/xds_listener.cc +0 -1142
- data/src/core/ext/xds/xds_listener.h +0 -236
- data/src/core/ext/xds/xds_resource_type.h +0 -98
- data/src/core/ext/xds/xds_resource_type_impl.h +0 -88
- data/src/core/ext/xds/xds_route_config.cc +0 -1198
- data/src/core/ext/xds/xds_route_config.h +0 -253
- data/src/core/ext/xds/xds_routing.cc +0 -264
- data/src/core/ext/xds/xds_routing.h +0 -106
- data/src/core/ext/xds/xds_server_config_fetcher.cc +0 -1392
- data/src/core/ext/xds/xds_transport.h +0 -89
- data/src/core/ext/xds/xds_transport_grpc.cc +0 -365
- data/src/core/ext/xds/xds_transport_grpc.h +0 -139
- data/src/core/lib/avl/avl.h +0 -325
- data/src/core/lib/backoff/backoff.cc +0 -47
- data/src/core/lib/backoff/backoff.h +0 -89
- data/src/core/lib/backoff/random_early_detection.cc +0 -33
- data/src/core/lib/backoff/random_early_detection.h +0 -62
- data/src/core/lib/channel/call_tracer.cc +0 -365
- data/src/core/lib/channel/call_tracer.h +0 -225
- data/src/core/lib/channel/channel_stack_trace.cc +0 -19
- data/src/core/lib/channel/channel_stack_trace.h +0 -24
- data/src/core/lib/channel/channel_trace.cc +0 -187
- data/src/core/lib/channel/channel_trace.h +0 -138
- data/src/core/lib/channel/channelz.cc +0 -610
- data/src/core/lib/channel/channelz.h +0 -381
- data/src/core/lib/channel/channelz_registry.cc +0 -281
- data/src/core/lib/channel/channelz_registry.h +0 -102
- data/src/core/lib/channel/context.h +0 -77
- data/src/core/lib/channel/server_call_tracer_filter.cc +0 -111
- data/src/core/lib/channel/tcp_tracer.h +0 -140
- data/src/core/lib/debug/event_log.cc +0 -88
- data/src/core/lib/debug/event_log.h +0 -81
- data/src/core/lib/debug/histogram_view.cc +0 -69
- data/src/core/lib/debug/histogram_view.h +0 -37
- data/src/core/lib/debug/stats.cc +0 -68
- data/src/core/lib/debug/stats.h +0 -64
- data/src/core/lib/debug/stats_data.cc +0 -509
- data/src/core/lib/debug/stats_data.h +0 -403
- data/src/core/lib/event_engine/trace.cc +0 -25
- data/src/core/lib/event_engine/trace.h +0 -49
- data/src/core/lib/gpr/alloc.cc +0 -71
- data/src/core/lib/gpr/alloc.h +0 -28
- data/src/core/lib/gpr/android/log.cc +0 -79
- data/src/core/lib/gpr/atm.cc +0 -35
- data/src/core/lib/gpr/iphone/cpu.cc +0 -44
- data/src/core/lib/gpr/linux/cpu.cc +0 -87
- data/src/core/lib/gpr/linux/log.cc +0 -114
- data/src/core/lib/gpr/log.cc +0 -140
- data/src/core/lib/gpr/log_internal.h +0 -55
- data/src/core/lib/gpr/msys/tmpfile.cc +0 -59
- data/src/core/lib/gpr/posix/cpu.cc +0 -84
- data/src/core/lib/gpr/posix/log.cc +0 -111
- data/src/core/lib/gpr/posix/string.cc +0 -72
- data/src/core/lib/gpr/posix/sync.cc +0 -159
- data/src/core/lib/gpr/posix/time.cc +0 -182
- data/src/core/lib/gpr/posix/tmpfile.cc +0 -71
- data/src/core/lib/gpr/spinlock.h +0 -53
- data/src/core/lib/gpr/string.cc +0 -344
- data/src/core/lib/gpr/string.h +0 -112
- data/src/core/lib/gpr/sync.cc +0 -124
- data/src/core/lib/gpr/sync_abseil.cc +0 -110
- data/src/core/lib/gpr/time.cc +0 -269
- data/src/core/lib/gpr/time_precise.cc +0 -168
- data/src/core/lib/gpr/time_precise.h +0 -69
- data/src/core/lib/gpr/tmpfile.h +0 -32
- data/src/core/lib/gpr/useful.h +0 -184
- data/src/core/lib/gpr/windows/cpu.cc +0 -35
- data/src/core/lib/gpr/windows/log.cc +0 -116
- data/src/core/lib/gpr/windows/string.cc +0 -69
- data/src/core/lib/gpr/windows/string_util.cc +0 -55
- data/src/core/lib/gpr/windows/sync.cc +0 -122
- data/src/core/lib/gpr/windows/time.cc +0 -105
- data/src/core/lib/gpr/windows/tmpfile.cc +0 -68
- data/src/core/lib/gpr/wrap_memcpy.cc +0 -43
- data/src/core/lib/gprpp/atomic_utils.h +0 -47
- data/src/core/lib/gprpp/bitset.h +0 -225
- data/src/core/lib/gprpp/chunked_vector.h +0 -257
- data/src/core/lib/gprpp/construct_destruct.h +0 -40
- data/src/core/lib/gprpp/cpp_impl_of.h +0 -49
- data/src/core/lib/gprpp/crash.cc +0 -43
- data/src/core/lib/gprpp/crash.h +0 -37
- data/src/core/lib/gprpp/debug_location.h +0 -99
- data/src/core/lib/gprpp/directory_reader.h +0 -48
- data/src/core/lib/gprpp/down_cast.h +0 -49
- data/src/core/lib/gprpp/dual_ref_counted.h +0 -356
- data/src/core/lib/gprpp/env.h +0 -53
- data/src/core/lib/gprpp/examine_stack.cc +0 -43
- data/src/core/lib/gprpp/examine_stack.h +0 -45
- data/src/core/lib/gprpp/fork.cc +0 -242
- data/src/core/lib/gprpp/fork.h +0 -98
- data/src/core/lib/gprpp/host_port.cc +0 -114
- data/src/core/lib/gprpp/host_port.h +0 -57
- data/src/core/lib/gprpp/if_list.h +0 -4530
- data/src/core/lib/gprpp/linux/env.cc +0 -62
- data/src/core/lib/gprpp/load_file.cc +0 -76
- data/src/core/lib/gprpp/load_file.h +0 -34
- data/src/core/lib/gprpp/manual_constructor.h +0 -146
- data/src/core/lib/gprpp/match.h +0 -75
- data/src/core/lib/gprpp/memory.h +0 -53
- data/src/core/lib/gprpp/mpscq.cc +0 -108
- data/src/core/lib/gprpp/mpscq.h +0 -99
- data/src/core/lib/gprpp/no_destruct.h +0 -95
- data/src/core/lib/gprpp/notification.h +0 -67
- data/src/core/lib/gprpp/orphanable.h +0 -150
- data/src/core/lib/gprpp/overload.h +0 -59
- data/src/core/lib/gprpp/packed_table.h +0 -40
- data/src/core/lib/gprpp/per_cpu.cc +0 -35
- data/src/core/lib/gprpp/per_cpu.h +0 -104
- data/src/core/lib/gprpp/posix/directory_reader.cc +0 -82
- data/src/core/lib/gprpp/posix/env.cc +0 -47
- data/src/core/lib/gprpp/posix/stat.cc +0 -54
- data/src/core/lib/gprpp/posix/thd.cc +0 -247
- data/src/core/lib/gprpp/ref_counted.h +0 -391
- data/src/core/lib/gprpp/ref_counted_ptr.h +0 -444
- data/src/core/lib/gprpp/ref_counted_string.cc +0 -44
- data/src/core/lib/gprpp/ref_counted_string.h +0 -161
- data/src/core/lib/gprpp/single_set_ptr.h +0 -87
- data/src/core/lib/gprpp/sorted_pack.h +0 -89
- data/src/core/lib/gprpp/stat.h +0 -36
- data/src/core/lib/gprpp/status_helper.cc +0 -453
- data/src/core/lib/gprpp/status_helper.h +0 -190
- data/src/core/lib/gprpp/strerror.cc +0 -41
- data/src/core/lib/gprpp/strerror.h +0 -29
- data/src/core/lib/gprpp/sync.h +0 -200
- data/src/core/lib/gprpp/table.h +0 -452
- data/src/core/lib/gprpp/tchar.cc +0 -49
- data/src/core/lib/gprpp/tchar.h +0 -33
- data/src/core/lib/gprpp/thd.h +0 -195
- data/src/core/lib/gprpp/time.cc +0 -242
- data/src/core/lib/gprpp/time.h +0 -379
- data/src/core/lib/gprpp/time_averaged_stats.cc +0 -60
- data/src/core/lib/gprpp/time_averaged_stats.h +0 -79
- data/src/core/lib/gprpp/time_util.cc +0 -81
- data/src/core/lib/gprpp/time_util.h +0 -42
- data/src/core/lib/gprpp/type_list.h +0 -32
- data/src/core/lib/gprpp/unique_type_name.h +0 -104
- data/src/core/lib/gprpp/validation_errors.cc +0 -65
- data/src/core/lib/gprpp/validation_errors.h +0 -134
- data/src/core/lib/gprpp/windows/directory_reader.cc +0 -81
- data/src/core/lib/gprpp/windows/env.cc +0 -56
- data/src/core/lib/gprpp/windows/stat.cc +0 -50
- data/src/core/lib/gprpp/windows/thd.cc +0 -182
- data/src/core/lib/gprpp/work_serializer.cc +0 -558
- data/src/core/lib/gprpp/work_serializer.h +0 -107
- data/src/core/lib/gprpp/xxhash_inline.h +0 -29
- data/src/core/lib/handshaker/proxy_mapper.h +0 -53
- data/src/core/lib/handshaker/proxy_mapper_registry.cc +0 -71
- data/src/core/lib/handshaker/proxy_mapper_registry.h +0 -75
- data/src/core/lib/http/format_request.cc +0 -137
- data/src/core/lib/http/format_request.h +0 -38
- data/src/core/lib/http/httpcli.cc +0 -392
- data/src/core/lib/http/httpcli.h +0 -268
- data/src/core/lib/http/httpcli_security_connector.cc +0 -213
- data/src/core/lib/http/httpcli_ssl_credentials.h +0 -39
- data/src/core/lib/http/parser.cc +0 -451
- data/src/core/lib/http/parser.h +0 -130
- data/src/core/lib/iomgr/ev_windows.cc +0 -30
- data/src/core/lib/iomgr/gethostname.h +0 -26
- data/src/core/lib/iomgr/gethostname_fallback.cc +0 -30
- data/src/core/lib/iomgr/gethostname_host_name_max.cc +0 -40
- data/src/core/lib/iomgr/gethostname_sysconf.cc +0 -40
- data/src/core/lib/iomgr/grpc_if_nametoindex.h +0 -30
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +0 -43
- data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +0 -39
- data/src/core/lib/json/json.h +0 -30
- data/src/core/lib/json/json_args.h +0 -34
- data/src/core/lib/json/json_channel_args.h +0 -42
- data/src/core/lib/json/json_object_loader.cc +0 -216
- data/src/core/lib/json/json_object_loader.h +0 -645
- data/src/core/lib/json/json_reader.cc +0 -956
- data/src/core/lib/json/json_reader.h +0 -34
- data/src/core/lib/json/json_util.cc +0 -101
- data/src/core/lib/json/json_util.h +0 -164
- data/src/core/lib/json/json_writer.cc +0 -339
- data/src/core/lib/json/json_writer.h +0 -33
- data/src/core/lib/matchers/matchers.cc +0 -330
- data/src/core/lib/matchers/matchers.h +0 -163
- data/src/core/lib/promise/trace.cc +0 -20
- data/src/core/lib/promise/trace.h +0 -24
- data/src/core/lib/resource_quota/trace.cc +0 -19
- data/src/core/lib/resource_quota/trace.h +0 -24
- data/src/core/lib/security/transport/legacy_server_auth_filter.cc +0 -244
- data/src/core/lib/security/transport/secure_endpoint.cc +0 -565
- data/src/core/lib/security/transport/secure_endpoint.h +0 -43
- data/src/core/lib/security/transport/security_handshaker.cc +0 -673
- data/src/core/lib/security/transport/security_handshaker.h +0 -45
- data/src/core/lib/security/transport/tsi_error.cc +0 -31
- data/src/core/lib/security/transport/tsi_error.h +0 -30
- data/src/core/lib/slice/b64.cc +0 -239
- data/src/core/lib/slice/b64.h +0 -52
- data/src/core/lib/slice/slice_refcount.cc +0 -20
- data/src/core/lib/surface/api_trace.cc +0 -25
- data/src/core/lib/surface/api_trace.h +0 -53
- data/src/core/lib/surface/builtins.cc +0 -37
- data/src/core/lib/surface/builtins.h +0 -26
- data/src/core/lib/surface/call_trace.cc +0 -163
- data/src/core/lib/surface/call_trace.h +0 -30
- data/src/core/lib/surface/channel_ping.cc +0 -69
- data/src/core/lib/surface/server.cc +0 -2045
- data/src/core/lib/surface/server.h +0 -551
- data/src/core/lib/surface/wait_for_cq_end_op.cc +0 -75
- data/src/core/lib/surface/wait_for_cq_end_op.h +0 -72
- data/src/core/lib/transport/batch_builder.cc +0 -179
- data/src/core/lib/transport/batch_builder.h +0 -478
- data/src/core/lib/transport/call_factory.cc +0 -41
- data/src/core/lib/transport/call_factory.h +0 -56
- data/src/core/lib/transport/call_size_estimator.cc +0 -41
- data/src/core/lib/transport/call_size_estimator.h +0 -52
- data/src/core/lib/transport/handshaker.cc +0 -229
- data/src/core/lib/transport/handshaker.h +0 -165
- data/src/core/lib/transport/handshaker_factory.h +0 -74
- data/src/core/lib/transport/handshaker_registry.cc +0 -61
- data/src/core/lib/transport/handshaker_registry.h +0 -69
- data/src/core/lib/transport/http_connect_handshaker.cc +0 -400
- data/src/core/lib/transport/http_connect_handshaker.h +0 -42
- data/src/core/lib/transport/tcp_connect_handshaker.cc +0 -244
- data/src/core/lib/transport/tcp_connect_handshaker.h +0 -39
- data/src/core/lib/uri/uri_parser.cc +0 -372
- data/src/core/lib/uri/uri_parser.h +0 -101
- data/src/core/load_balancing/subchannel_list.h +0 -455
- data/src/core/resolver/binder/binder_resolver.cc +0 -147
- data/src/core/resolver/xds/xds_resolver_trace.cc +0 -25
- data/src/core/resolver/xds/xds_resolver_trace.h +0 -30
- data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +0 -44
- data/third_party/boringssl-with-bazel/err_data.c +0 -1512
- data/third_party/boringssl-with-bazel/src/crypto/conf/conf_def.h +0 -122
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/aes.c +0 -106
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/bytes.c +0 -267
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div.c +0 -909
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/div_extra.c +0 -87
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/exponentiation.c +0 -1276
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/gcd_extra.c +0 -328
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/montgomery_inv.c +0 -222
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/mul.c +0 -744
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/prime.c +0 -1070
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/random.c +0 -355
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/sqrt.c +0 -499
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/e_aes.c +0 -1463
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/ec_key.c +0 -553
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/p256-nistz.c +0 -637
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/scalar.c +0 -169
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdsa/ecdsa.c +0 -372
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.c +0 -197
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/fork_detect.h +0 -67
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/rand.c +0 -493
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/urandom.c +0 -328
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/padding.c +0 -423
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa.c +0 -1038
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/rsa_impl.c +0 -1337
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/fips.c +0 -119
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/self_check/self_check.c +0 -1064
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/service_indicator/service_indicator.c +0 -331
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha1.c +0 -439
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha256.c +0 -359
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/sha/sha512.c +0 -537
- data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/tls/kdf.c +0 -211
- data/third_party/boringssl-with-bazel/src/crypto/spx/internal.h +0 -79
- data/third_party/boringssl-with-bazel/src/include/openssl/kyber.h +0 -136
- data/third_party/upb/upb/message/types.h +0 -15
- data/third_party/upb/upb/wire/decode_fast.c +0 -996
- data/third_party/upb/upb/wire/decode_fast.h +0 -147
- data/third_party/upb/upb/wire/internal/decode.h +0 -143
- data/third_party/upb/upb/wire/internal/swap.h +0 -45
- data/third_party/utf8_range/naive.c +0 -92
- data/third_party/utf8_range/range2-neon.c +0 -157
- data/third_party/utf8_range/range2-sse.c +0 -170
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{aes_nohw.c → aes_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{key_wrap.c → key_wrap.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/aes/{mode_wrappers.c → mode_wrappers.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{add.c → add.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/asm/{x86_64-gcc.c → x86_64-gcc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{bn.c → bn.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{cmp.c → cmp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{ctx.c → ctx.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{gcd.c → gcd.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{generic.c → generic.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{jacobi.c → jacobi.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{montgomery.c → montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{rsaz_exp.c → rsaz_exp.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/bn/{shift.c → shift.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{aead.c → aead.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{cipher.c → cipher.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cipher/{e_aesccm.c → e_aesccm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/cmac/{cmac.c → cmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{check.c → check.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/dh/{dh.c → dh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digest.c → digest.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digest/{digests.c → digests.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/digestsign/{digestsign.c → digestsign.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec.c → ec.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{ec_montgomery.c → ec_montgomery.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{felem.c → felem.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{oct.c → oct.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p224-64.c → p224-64.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{p256.c → p256.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple.c → simple.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{simple_mul.c → simple_mul.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{util.c → util.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ec/{wnaf.c → wnaf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/ecdh/{ecdh.c → ecdh.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hkdf/{hkdf.c → hkdf.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/hmac/{hmac.c → hmac.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md4/{md4.c → md4.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/md5/{md5.c → md5.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cbc.c → cbc.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{cfb.c → cfb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ctr.c → ctr.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm.c → gcm.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{gcm_nohw.c → gcm_nohw.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{ofb.c → ofb.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/modes/{polyval.c → polyval.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rand/{ctrdrbg.c → ctrdrbg.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/fipsmodule/rsa/{blinding.c → blinding.c.inc} +0 -0
- /data/third_party/boringssl-with-bazel/src/crypto/{fipsmodule/rand → rand_extra}/getrandom_fillin.h +0 -0
@@ -0,0 +1,1351 @@
|
|
1
|
+
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
2
|
+
* All rights reserved.
|
3
|
+
*
|
4
|
+
* This package is an SSL implementation written
|
5
|
+
* by Eric Young (eay@cryptsoft.com).
|
6
|
+
* The implementation was written so as to conform with Netscapes SSL.
|
7
|
+
*
|
8
|
+
* This library is free for commercial and non-commercial use as long as
|
9
|
+
* the following conditions are aheared to. The following conditions
|
10
|
+
* apply to all code found in this distribution, be it the RC4, RSA,
|
11
|
+
* lhash, DES, etc., code; not just the SSL code. The SSL documentation
|
12
|
+
* included with this distribution is covered by the same copyright terms
|
13
|
+
* except that the holder is Tim Hudson (tjh@cryptsoft.com).
|
14
|
+
*
|
15
|
+
* Copyright remains Eric Young's, and as such any Copyright notices in
|
16
|
+
* the code are not to be removed.
|
17
|
+
* If this package is used in a product, Eric Young should be given attribution
|
18
|
+
* as the author of the parts of the library used.
|
19
|
+
* This can be in the form of a textual message at program startup or
|
20
|
+
* in documentation (online or textual) provided with the package.
|
21
|
+
*
|
22
|
+
* Redistribution and use in source and binary forms, with or without
|
23
|
+
* modification, are permitted provided that the following conditions
|
24
|
+
* are met:
|
25
|
+
* 1. Redistributions of source code must retain the copyright
|
26
|
+
* notice, this list of conditions and the following disclaimer.
|
27
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
28
|
+
* notice, this list of conditions and the following disclaimer in the
|
29
|
+
* documentation and/or other materials provided with the distribution.
|
30
|
+
* 3. All advertising materials mentioning features or use of this software
|
31
|
+
* must display the following acknowledgement:
|
32
|
+
* "This product includes cryptographic software written by
|
33
|
+
* Eric Young (eay@cryptsoft.com)"
|
34
|
+
* The word 'cryptographic' can be left out if the rouines from the library
|
35
|
+
* being used are not cryptographic related :-).
|
36
|
+
* 4. If you include any Windows specific code (or a derivative thereof) from
|
37
|
+
* the apps directory (application code) you must include an acknowledgement:
|
38
|
+
* "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
39
|
+
*
|
40
|
+
* THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
|
41
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
42
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
43
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
44
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
45
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
46
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
47
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
48
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
49
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
50
|
+
* SUCH DAMAGE.
|
51
|
+
*
|
52
|
+
* The licence and distribution terms for any publically available version or
|
53
|
+
* derivative of this code cannot be changed. i.e. this code cannot simply be
|
54
|
+
* copied and put under another distribution licence
|
55
|
+
* [including the GNU Public Licence.] */
|
56
|
+
|
57
|
+
#include <openssl/rsa.h>
|
58
|
+
|
59
|
+
#include <assert.h>
|
60
|
+
#include <limits.h>
|
61
|
+
#include <string.h>
|
62
|
+
|
63
|
+
#include <openssl/bn.h>
|
64
|
+
#include <openssl/err.h>
|
65
|
+
#include <openssl/mem.h>
|
66
|
+
#include <openssl/thread.h>
|
67
|
+
|
68
|
+
#include "../../bcm_support.h"
|
69
|
+
#include "../../internal.h"
|
70
|
+
#include "../bn/internal.h"
|
71
|
+
#include "../delocate.h"
|
72
|
+
#include "../service_indicator/internal.h"
|
73
|
+
#include "internal.h"
|
74
|
+
|
75
|
+
|
76
|
+
int rsa_check_public_key(const RSA *rsa) {
|
77
|
+
if (rsa->n == NULL) {
|
78
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_VALUE_MISSING);
|
79
|
+
return 0;
|
80
|
+
}
|
81
|
+
|
82
|
+
// TODO(davidben): 16384-bit RSA is huge. Can we bring this down to a limit of
|
83
|
+
// 8192-bit?
|
84
|
+
unsigned n_bits = BN_num_bits(rsa->n);
|
85
|
+
if (n_bits > 16 * 1024) {
|
86
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_MODULUS_TOO_LARGE);
|
87
|
+
return 0;
|
88
|
+
}
|
89
|
+
|
90
|
+
// TODO(crbug.com/boringssl/607): Raise this limit. 512-bit RSA was factored
|
91
|
+
// in 1999.
|
92
|
+
if (n_bits < 512) {
|
93
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_KEY_SIZE_TOO_SMALL);
|
94
|
+
return 0;
|
95
|
+
}
|
96
|
+
|
97
|
+
// RSA moduli must be positive and odd. In addition to being necessary for RSA
|
98
|
+
// in general, we cannot setup Montgomery reduction with even moduli.
|
99
|
+
if (!BN_is_odd(rsa->n) || BN_is_negative(rsa->n)) {
|
100
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_BAD_RSA_PARAMETERS);
|
101
|
+
return 0;
|
102
|
+
}
|
103
|
+
|
104
|
+
static const unsigned kMaxExponentBits = 33;
|
105
|
+
if (rsa->e != NULL) {
|
106
|
+
// Reject e = 1, negative e, and even e. e must be odd to be relatively
|
107
|
+
// prime with phi(n).
|
108
|
+
unsigned e_bits = BN_num_bits(rsa->e);
|
109
|
+
if (e_bits < 2 || BN_is_negative(rsa->e) || !BN_is_odd(rsa->e)) {
|
110
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_BAD_E_VALUE);
|
111
|
+
return 0;
|
112
|
+
}
|
113
|
+
if (rsa->flags & RSA_FLAG_LARGE_PUBLIC_EXPONENT) {
|
114
|
+
// The caller has requested disabling DoS protections. Still, e must be
|
115
|
+
// less than n.
|
116
|
+
if (BN_ucmp(rsa->n, rsa->e) <= 0) {
|
117
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_BAD_E_VALUE);
|
118
|
+
return 0;
|
119
|
+
}
|
120
|
+
} else {
|
121
|
+
// Mitigate DoS attacks by limiting the exponent size. 33 bits was chosen
|
122
|
+
// as the limit based on the recommendations in [1] and [2]. Windows
|
123
|
+
// CryptoAPI doesn't support values larger than 32 bits [3], so it is
|
124
|
+
// unlikely that exponents larger than 32 bits are being used for anything
|
125
|
+
// Windows commonly does.
|
126
|
+
//
|
127
|
+
// [1] https://www.imperialviolet.org/2012/03/16/rsae.html
|
128
|
+
// [2] https://www.imperialviolet.org/2012/03/17/rsados.html
|
129
|
+
// [3] https://msdn.microsoft.com/en-us/library/aa387685(VS.85).aspx
|
130
|
+
if (e_bits > kMaxExponentBits) {
|
131
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_BAD_E_VALUE);
|
132
|
+
return 0;
|
133
|
+
}
|
134
|
+
|
135
|
+
// The upper bound on |e_bits| and lower bound on |n_bits| imply e is
|
136
|
+
// bounded by n.
|
137
|
+
assert(BN_ucmp(rsa->n, rsa->e) > 0);
|
138
|
+
}
|
139
|
+
} else if (!(rsa->flags & RSA_FLAG_NO_PUBLIC_EXPONENT)) {
|
140
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_VALUE_MISSING);
|
141
|
+
return 0;
|
142
|
+
}
|
143
|
+
|
144
|
+
return 1;
|
145
|
+
}
|
146
|
+
|
147
|
+
static int ensure_fixed_copy(BIGNUM **out, const BIGNUM *in, int width) {
|
148
|
+
if (*out != NULL) {
|
149
|
+
return 1;
|
150
|
+
}
|
151
|
+
BIGNUM *copy = BN_dup(in);
|
152
|
+
if (copy == NULL ||
|
153
|
+
!bn_resize_words(copy, width)) {
|
154
|
+
BN_free(copy);
|
155
|
+
return 0;
|
156
|
+
}
|
157
|
+
*out = copy;
|
158
|
+
bn_secret(copy);
|
159
|
+
|
160
|
+
return 1;
|
161
|
+
}
|
162
|
+
|
163
|
+
// freeze_private_key finishes initializing |rsa|'s private key components.
|
164
|
+
// After this function has returned, |rsa| may not be changed. This is needed
|
165
|
+
// because |RSA| is a public struct and, additionally, OpenSSL 1.1.0 opaquified
|
166
|
+
// it wrong (see https://github.com/openssl/openssl/issues/5158).
|
167
|
+
static int freeze_private_key(RSA *rsa, BN_CTX *ctx) {
|
168
|
+
CRYPTO_MUTEX_lock_read(&rsa->lock);
|
169
|
+
int frozen = rsa->private_key_frozen;
|
170
|
+
CRYPTO_MUTEX_unlock_read(&rsa->lock);
|
171
|
+
if (frozen) {
|
172
|
+
return 1;
|
173
|
+
}
|
174
|
+
|
175
|
+
int ret = 0;
|
176
|
+
CRYPTO_MUTEX_lock_write(&rsa->lock);
|
177
|
+
if (rsa->private_key_frozen) {
|
178
|
+
ret = 1;
|
179
|
+
goto err;
|
180
|
+
}
|
181
|
+
|
182
|
+
// Check the public components are within DoS bounds.
|
183
|
+
if (!rsa_check_public_key(rsa)) {
|
184
|
+
goto err;
|
185
|
+
}
|
186
|
+
|
187
|
+
// Pre-compute various intermediate values, as well as copies of private
|
188
|
+
// exponents with correct widths. Note that other threads may concurrently
|
189
|
+
// read from |rsa->n|, |rsa->e|, etc., so any fixes must be in separate
|
190
|
+
// copies. We use |mont_n->N|, |mont_p->N|, and |mont_q->N| as copies of |n|,
|
191
|
+
// |p|, and |q| with the correct minimal widths.
|
192
|
+
|
193
|
+
if (rsa->mont_n == NULL) {
|
194
|
+
rsa->mont_n = BN_MONT_CTX_new_for_modulus(rsa->n, ctx);
|
195
|
+
if (rsa->mont_n == NULL) {
|
196
|
+
goto err;
|
197
|
+
}
|
198
|
+
}
|
199
|
+
const BIGNUM *n_fixed = &rsa->mont_n->N;
|
200
|
+
|
201
|
+
// The only public upper-bound of |rsa->d| is the bit length of |rsa->n|. The
|
202
|
+
// ASN.1 serialization of RSA private keys unfortunately leaks the byte length
|
203
|
+
// of |rsa->d|, but normalize it so we only leak it once, rather than per
|
204
|
+
// operation.
|
205
|
+
if (rsa->d != NULL &&
|
206
|
+
!ensure_fixed_copy(&rsa->d_fixed, rsa->d, n_fixed->width)) {
|
207
|
+
goto err;
|
208
|
+
}
|
209
|
+
|
210
|
+
if (rsa->e != NULL && rsa->p != NULL && rsa->q != NULL) {
|
211
|
+
// TODO: p and q are also CONSTTIME_SECRET but not yet marked as such
|
212
|
+
// because the Montgomery code does things like test whether or not values
|
213
|
+
// are zero. So the secret marking probably needs to happen inside that
|
214
|
+
// code.
|
215
|
+
|
216
|
+
if (rsa->mont_p == NULL) {
|
217
|
+
rsa->mont_p = BN_MONT_CTX_new_consttime(rsa->p, ctx);
|
218
|
+
if (rsa->mont_p == NULL) {
|
219
|
+
goto err;
|
220
|
+
}
|
221
|
+
}
|
222
|
+
const BIGNUM *p_fixed = &rsa->mont_p->N;
|
223
|
+
|
224
|
+
if (rsa->mont_q == NULL) {
|
225
|
+
rsa->mont_q = BN_MONT_CTX_new_consttime(rsa->q, ctx);
|
226
|
+
if (rsa->mont_q == NULL) {
|
227
|
+
goto err;
|
228
|
+
}
|
229
|
+
}
|
230
|
+
const BIGNUM *q_fixed = &rsa->mont_q->N;
|
231
|
+
|
232
|
+
if (rsa->dmp1 != NULL && rsa->dmq1 != NULL) {
|
233
|
+
// Key generation relies on this function to compute |iqmp|.
|
234
|
+
if (rsa->iqmp == NULL) {
|
235
|
+
BIGNUM *iqmp = BN_new();
|
236
|
+
if (iqmp == NULL ||
|
237
|
+
!bn_mod_inverse_secret_prime(iqmp, rsa->q, rsa->p, ctx,
|
238
|
+
rsa->mont_p)) {
|
239
|
+
BN_free(iqmp);
|
240
|
+
goto err;
|
241
|
+
}
|
242
|
+
rsa->iqmp = iqmp;
|
243
|
+
}
|
244
|
+
|
245
|
+
// CRT components are only publicly bounded by their corresponding
|
246
|
+
// moduli's bit lengths.
|
247
|
+
if (!ensure_fixed_copy(&rsa->dmp1_fixed, rsa->dmp1, p_fixed->width) ||
|
248
|
+
!ensure_fixed_copy(&rsa->dmq1_fixed, rsa->dmq1, q_fixed->width)) {
|
249
|
+
goto err;
|
250
|
+
}
|
251
|
+
|
252
|
+
// Compute |iqmp_mont|, which is |iqmp| in Montgomery form and with the
|
253
|
+
// correct bit width.
|
254
|
+
if (rsa->iqmp_mont == NULL) {
|
255
|
+
BIGNUM *iqmp_mont = BN_new();
|
256
|
+
if (iqmp_mont == NULL ||
|
257
|
+
!BN_to_montgomery(iqmp_mont, rsa->iqmp, rsa->mont_p, ctx)) {
|
258
|
+
BN_free(iqmp_mont);
|
259
|
+
goto err;
|
260
|
+
}
|
261
|
+
rsa->iqmp_mont = iqmp_mont;
|
262
|
+
bn_secret(rsa->iqmp_mont);
|
263
|
+
}
|
264
|
+
}
|
265
|
+
}
|
266
|
+
|
267
|
+
rsa->private_key_frozen = 1;
|
268
|
+
ret = 1;
|
269
|
+
|
270
|
+
err:
|
271
|
+
CRYPTO_MUTEX_unlock_write(&rsa->lock);
|
272
|
+
return ret;
|
273
|
+
}
|
274
|
+
|
275
|
+
void rsa_invalidate_key(RSA *rsa) {
|
276
|
+
rsa->private_key_frozen = 0;
|
277
|
+
|
278
|
+
BN_MONT_CTX_free(rsa->mont_n);
|
279
|
+
rsa->mont_n = NULL;
|
280
|
+
BN_MONT_CTX_free(rsa->mont_p);
|
281
|
+
rsa->mont_p = NULL;
|
282
|
+
BN_MONT_CTX_free(rsa->mont_q);
|
283
|
+
rsa->mont_q = NULL;
|
284
|
+
|
285
|
+
BN_free(rsa->d_fixed);
|
286
|
+
rsa->d_fixed = NULL;
|
287
|
+
BN_free(rsa->dmp1_fixed);
|
288
|
+
rsa->dmp1_fixed = NULL;
|
289
|
+
BN_free(rsa->dmq1_fixed);
|
290
|
+
rsa->dmq1_fixed = NULL;
|
291
|
+
BN_free(rsa->iqmp_mont);
|
292
|
+
rsa->iqmp_mont = NULL;
|
293
|
+
|
294
|
+
for (size_t i = 0; i < rsa->num_blindings; i++) {
|
295
|
+
BN_BLINDING_free(rsa->blindings[i]);
|
296
|
+
}
|
297
|
+
OPENSSL_free(rsa->blindings);
|
298
|
+
rsa->blindings = NULL;
|
299
|
+
rsa->num_blindings = 0;
|
300
|
+
OPENSSL_free(rsa->blindings_inuse);
|
301
|
+
rsa->blindings_inuse = NULL;
|
302
|
+
rsa->blinding_fork_generation = 0;
|
303
|
+
}
|
304
|
+
|
305
|
+
size_t rsa_default_size(const RSA *rsa) {
|
306
|
+
return BN_num_bytes(rsa->n);
|
307
|
+
}
|
308
|
+
|
309
|
+
// MAX_BLINDINGS_PER_RSA defines the maximum number of cached BN_BLINDINGs per
|
310
|
+
// RSA*. Then this limit is exceeded, BN_BLINDING objects will be created and
|
311
|
+
// destroyed as needed.
|
312
|
+
#if defined(OPENSSL_TSAN)
|
313
|
+
// Smaller under TSAN so that the edge case can be hit with fewer threads.
|
314
|
+
#define MAX_BLINDINGS_PER_RSA 2
|
315
|
+
#else
|
316
|
+
#define MAX_BLINDINGS_PER_RSA 1024
|
317
|
+
#endif
|
318
|
+
|
319
|
+
// rsa_blinding_get returns a BN_BLINDING to use with |rsa|. It does this by
|
320
|
+
// allocating one of the cached BN_BLINDING objects in |rsa->blindings|. If
|
321
|
+
// none are free, the cache will be extended by a extra element and the new
|
322
|
+
// BN_BLINDING is returned.
|
323
|
+
//
|
324
|
+
// On success, the index of the assigned BN_BLINDING is written to
|
325
|
+
// |*index_used| and must be passed to |rsa_blinding_release| when finished.
|
326
|
+
static BN_BLINDING *rsa_blinding_get(RSA *rsa, size_t *index_used,
|
327
|
+
BN_CTX *ctx) {
|
328
|
+
assert(ctx != NULL);
|
329
|
+
assert(rsa->mont_n != NULL);
|
330
|
+
|
331
|
+
BN_BLINDING *ret = NULL;
|
332
|
+
const uint64_t fork_generation = CRYPTO_get_fork_generation();
|
333
|
+
CRYPTO_MUTEX_lock_write(&rsa->lock);
|
334
|
+
|
335
|
+
// Wipe the blinding cache on |fork|.
|
336
|
+
if (rsa->blinding_fork_generation != fork_generation) {
|
337
|
+
for (size_t i = 0; i < rsa->num_blindings; i++) {
|
338
|
+
// The inuse flag must be zero unless we were forked from a
|
339
|
+
// multi-threaded process, in which case calling back into BoringSSL is
|
340
|
+
// forbidden.
|
341
|
+
assert(rsa->blindings_inuse[i] == 0);
|
342
|
+
BN_BLINDING_invalidate(rsa->blindings[i]);
|
343
|
+
}
|
344
|
+
rsa->blinding_fork_generation = fork_generation;
|
345
|
+
}
|
346
|
+
|
347
|
+
uint8_t *const free_inuse_flag =
|
348
|
+
OPENSSL_memchr(rsa->blindings_inuse, 0, rsa->num_blindings);
|
349
|
+
if (free_inuse_flag != NULL) {
|
350
|
+
*free_inuse_flag = 1;
|
351
|
+
*index_used = free_inuse_flag - rsa->blindings_inuse;
|
352
|
+
ret = rsa->blindings[*index_used];
|
353
|
+
goto out;
|
354
|
+
}
|
355
|
+
|
356
|
+
if (rsa->num_blindings >= MAX_BLINDINGS_PER_RSA) {
|
357
|
+
// No |BN_BLINDING| is free and nor can the cache be extended. This index
|
358
|
+
// value is magic and indicates to |rsa_blinding_release| that a
|
359
|
+
// |BN_BLINDING| was not inserted into the array.
|
360
|
+
*index_used = MAX_BLINDINGS_PER_RSA;
|
361
|
+
ret = BN_BLINDING_new();
|
362
|
+
goto out;
|
363
|
+
}
|
364
|
+
|
365
|
+
// Double the length of the cache.
|
366
|
+
static_assert(MAX_BLINDINGS_PER_RSA < UINT_MAX / 2,
|
367
|
+
"MAX_BLINDINGS_PER_RSA too large");
|
368
|
+
size_t new_num_blindings = rsa->num_blindings * 2;
|
369
|
+
if (new_num_blindings == 0) {
|
370
|
+
new_num_blindings = 1;
|
371
|
+
}
|
372
|
+
if (new_num_blindings > MAX_BLINDINGS_PER_RSA) {
|
373
|
+
new_num_blindings = MAX_BLINDINGS_PER_RSA;
|
374
|
+
}
|
375
|
+
assert(new_num_blindings > rsa->num_blindings);
|
376
|
+
|
377
|
+
BN_BLINDING **new_blindings =
|
378
|
+
OPENSSL_calloc(new_num_blindings, sizeof(BN_BLINDING *));
|
379
|
+
uint8_t *new_blindings_inuse = OPENSSL_malloc(new_num_blindings);
|
380
|
+
if (new_blindings == NULL || new_blindings_inuse == NULL) {
|
381
|
+
goto err;
|
382
|
+
}
|
383
|
+
|
384
|
+
OPENSSL_memcpy(new_blindings, rsa->blindings,
|
385
|
+
sizeof(BN_BLINDING *) * rsa->num_blindings);
|
386
|
+
OPENSSL_memcpy(new_blindings_inuse, rsa->blindings_inuse, rsa->num_blindings);
|
387
|
+
|
388
|
+
for (size_t i = rsa->num_blindings; i < new_num_blindings; i++) {
|
389
|
+
new_blindings[i] = BN_BLINDING_new();
|
390
|
+
if (new_blindings[i] == NULL) {
|
391
|
+
for (size_t j = rsa->num_blindings; j < i; j++) {
|
392
|
+
BN_BLINDING_free(new_blindings[j]);
|
393
|
+
}
|
394
|
+
goto err;
|
395
|
+
}
|
396
|
+
}
|
397
|
+
memset(&new_blindings_inuse[rsa->num_blindings], 0,
|
398
|
+
new_num_blindings - rsa->num_blindings);
|
399
|
+
|
400
|
+
new_blindings_inuse[rsa->num_blindings] = 1;
|
401
|
+
*index_used = rsa->num_blindings;
|
402
|
+
assert(*index_used != MAX_BLINDINGS_PER_RSA);
|
403
|
+
ret = new_blindings[rsa->num_blindings];
|
404
|
+
|
405
|
+
OPENSSL_free(rsa->blindings);
|
406
|
+
rsa->blindings = new_blindings;
|
407
|
+
OPENSSL_free(rsa->blindings_inuse);
|
408
|
+
rsa->blindings_inuse = new_blindings_inuse;
|
409
|
+
rsa->num_blindings = new_num_blindings;
|
410
|
+
|
411
|
+
goto out;
|
412
|
+
|
413
|
+
err:
|
414
|
+
OPENSSL_free(new_blindings_inuse);
|
415
|
+
OPENSSL_free(new_blindings);
|
416
|
+
|
417
|
+
out:
|
418
|
+
CRYPTO_MUTEX_unlock_write(&rsa->lock);
|
419
|
+
return ret;
|
420
|
+
}
|
421
|
+
|
422
|
+
// rsa_blinding_release marks the cached BN_BLINDING at the given index as free
|
423
|
+
// for other threads to use.
|
424
|
+
static void rsa_blinding_release(RSA *rsa, BN_BLINDING *blinding,
|
425
|
+
size_t blinding_index) {
|
426
|
+
if (blinding_index == MAX_BLINDINGS_PER_RSA) {
|
427
|
+
// This blinding wasn't cached.
|
428
|
+
BN_BLINDING_free(blinding);
|
429
|
+
return;
|
430
|
+
}
|
431
|
+
|
432
|
+
CRYPTO_MUTEX_lock_write(&rsa->lock);
|
433
|
+
rsa->blindings_inuse[blinding_index] = 0;
|
434
|
+
CRYPTO_MUTEX_unlock_write(&rsa->lock);
|
435
|
+
}
|
436
|
+
|
437
|
+
// signing
|
438
|
+
int rsa_default_sign_raw(RSA *rsa, size_t *out_len, uint8_t *out,
|
439
|
+
size_t max_out, const uint8_t *in, size_t in_len,
|
440
|
+
int padding) {
|
441
|
+
const unsigned rsa_size = RSA_size(rsa);
|
442
|
+
uint8_t *buf = NULL;
|
443
|
+
int i, ret = 0;
|
444
|
+
|
445
|
+
if (max_out < rsa_size) {
|
446
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_OUTPUT_BUFFER_TOO_SMALL);
|
447
|
+
return 0;
|
448
|
+
}
|
449
|
+
|
450
|
+
buf = OPENSSL_malloc(rsa_size);
|
451
|
+
if (buf == NULL) {
|
452
|
+
goto err;
|
453
|
+
}
|
454
|
+
|
455
|
+
switch (padding) {
|
456
|
+
case RSA_PKCS1_PADDING:
|
457
|
+
i = RSA_padding_add_PKCS1_type_1(buf, rsa_size, in, in_len);
|
458
|
+
break;
|
459
|
+
case RSA_NO_PADDING:
|
460
|
+
i = RSA_padding_add_none(buf, rsa_size, in, in_len);
|
461
|
+
break;
|
462
|
+
default:
|
463
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_UNKNOWN_PADDING_TYPE);
|
464
|
+
goto err;
|
465
|
+
}
|
466
|
+
|
467
|
+
if (i <= 0) {
|
468
|
+
goto err;
|
469
|
+
}
|
470
|
+
|
471
|
+
if (!rsa_private_transform_no_self_test(rsa, out, buf, rsa_size)) {
|
472
|
+
goto err;
|
473
|
+
}
|
474
|
+
|
475
|
+
CONSTTIME_DECLASSIFY(out, rsa_size);
|
476
|
+
*out_len = rsa_size;
|
477
|
+
ret = 1;
|
478
|
+
|
479
|
+
err:
|
480
|
+
OPENSSL_free(buf);
|
481
|
+
|
482
|
+
return ret;
|
483
|
+
}
|
484
|
+
|
485
|
+
|
486
|
+
static int mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx);
|
487
|
+
|
488
|
+
int rsa_verify_raw_no_self_test(RSA *rsa, size_t *out_len, uint8_t *out,
|
489
|
+
size_t max_out, const uint8_t *in,
|
490
|
+
size_t in_len, int padding) {
|
491
|
+
if (rsa->n == NULL || rsa->e == NULL) {
|
492
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_VALUE_MISSING);
|
493
|
+
return 0;
|
494
|
+
}
|
495
|
+
|
496
|
+
if (!rsa_check_public_key(rsa)) {
|
497
|
+
return 0;
|
498
|
+
}
|
499
|
+
|
500
|
+
const unsigned rsa_size = RSA_size(rsa);
|
501
|
+
BIGNUM *f, *result;
|
502
|
+
|
503
|
+
if (max_out < rsa_size) {
|
504
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_OUTPUT_BUFFER_TOO_SMALL);
|
505
|
+
return 0;
|
506
|
+
}
|
507
|
+
|
508
|
+
if (in_len != rsa_size) {
|
509
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_DATA_LEN_NOT_EQUAL_TO_MOD_LEN);
|
510
|
+
return 0;
|
511
|
+
}
|
512
|
+
|
513
|
+
BN_CTX *ctx = BN_CTX_new();
|
514
|
+
if (ctx == NULL) {
|
515
|
+
return 0;
|
516
|
+
}
|
517
|
+
|
518
|
+
int ret = 0;
|
519
|
+
uint8_t *buf = NULL;
|
520
|
+
|
521
|
+
BN_CTX_start(ctx);
|
522
|
+
f = BN_CTX_get(ctx);
|
523
|
+
result = BN_CTX_get(ctx);
|
524
|
+
if (f == NULL || result == NULL) {
|
525
|
+
goto err;
|
526
|
+
}
|
527
|
+
|
528
|
+
if (padding == RSA_NO_PADDING) {
|
529
|
+
buf = out;
|
530
|
+
} else {
|
531
|
+
// Allocate a temporary buffer to hold the padded plaintext.
|
532
|
+
buf = OPENSSL_malloc(rsa_size);
|
533
|
+
if (buf == NULL) {
|
534
|
+
goto err;
|
535
|
+
}
|
536
|
+
}
|
537
|
+
|
538
|
+
if (BN_bin2bn(in, in_len, f) == NULL) {
|
539
|
+
goto err;
|
540
|
+
}
|
541
|
+
|
542
|
+
if (BN_ucmp(f, rsa->n) >= 0) {
|
543
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_DATA_TOO_LARGE_FOR_MODULUS);
|
544
|
+
goto err;
|
545
|
+
}
|
546
|
+
|
547
|
+
if (!BN_MONT_CTX_set_locked(&rsa->mont_n, &rsa->lock, rsa->n, ctx) ||
|
548
|
+
!BN_mod_exp_mont(result, f, rsa->e, &rsa->mont_n->N, ctx, rsa->mont_n)) {
|
549
|
+
goto err;
|
550
|
+
}
|
551
|
+
|
552
|
+
if (!BN_bn2bin_padded(buf, rsa_size, result)) {
|
553
|
+
OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR);
|
554
|
+
goto err;
|
555
|
+
}
|
556
|
+
|
557
|
+
switch (padding) {
|
558
|
+
case RSA_PKCS1_PADDING:
|
559
|
+
ret =
|
560
|
+
RSA_padding_check_PKCS1_type_1(out, out_len, rsa_size, buf, rsa_size);
|
561
|
+
break;
|
562
|
+
case RSA_NO_PADDING:
|
563
|
+
ret = 1;
|
564
|
+
*out_len = rsa_size;
|
565
|
+
break;
|
566
|
+
default:
|
567
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_UNKNOWN_PADDING_TYPE);
|
568
|
+
goto err;
|
569
|
+
}
|
570
|
+
|
571
|
+
if (!ret) {
|
572
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_PADDING_CHECK_FAILED);
|
573
|
+
goto err;
|
574
|
+
}
|
575
|
+
|
576
|
+
err:
|
577
|
+
BN_CTX_end(ctx);
|
578
|
+
BN_CTX_free(ctx);
|
579
|
+
if (buf != out) {
|
580
|
+
OPENSSL_free(buf);
|
581
|
+
}
|
582
|
+
return ret;
|
583
|
+
}
|
584
|
+
|
585
|
+
int RSA_verify_raw(RSA *rsa, size_t *out_len, uint8_t *out,
|
586
|
+
size_t max_out, const uint8_t *in,
|
587
|
+
size_t in_len, int padding) {
|
588
|
+
boringssl_ensure_rsa_self_test();
|
589
|
+
return rsa_verify_raw_no_self_test(rsa, out_len, out, max_out, in, in_len,
|
590
|
+
padding);
|
591
|
+
}
|
592
|
+
|
593
|
+
int rsa_default_private_transform(RSA *rsa, uint8_t *out, const uint8_t *in,
|
594
|
+
size_t len) {
|
595
|
+
if (rsa->n == NULL || rsa->d == NULL) {
|
596
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_VALUE_MISSING);
|
597
|
+
return 0;
|
598
|
+
}
|
599
|
+
|
600
|
+
BIGNUM *f, *result;
|
601
|
+
BN_CTX *ctx = NULL;
|
602
|
+
size_t blinding_index = 0;
|
603
|
+
BN_BLINDING *blinding = NULL;
|
604
|
+
int ret = 0;
|
605
|
+
|
606
|
+
ctx = BN_CTX_new();
|
607
|
+
if (ctx == NULL) {
|
608
|
+
goto err;
|
609
|
+
}
|
610
|
+
BN_CTX_start(ctx);
|
611
|
+
f = BN_CTX_get(ctx);
|
612
|
+
result = BN_CTX_get(ctx);
|
613
|
+
|
614
|
+
if (f == NULL || result == NULL) {
|
615
|
+
goto err;
|
616
|
+
}
|
617
|
+
|
618
|
+
// The caller should have ensured this.
|
619
|
+
assert(len == BN_num_bytes(rsa->n));
|
620
|
+
if (BN_bin2bn(in, len, f) == NULL) {
|
621
|
+
goto err;
|
622
|
+
}
|
623
|
+
|
624
|
+
// The input to the RSA private transform may be secret, but padding is
|
625
|
+
// expected to construct a value within range, so we can leak this comparison.
|
626
|
+
if (constant_time_declassify_int(BN_ucmp(f, rsa->n) >= 0)) {
|
627
|
+
// Usually the padding functions would catch this.
|
628
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_DATA_TOO_LARGE_FOR_MODULUS);
|
629
|
+
goto err;
|
630
|
+
}
|
631
|
+
|
632
|
+
if (!freeze_private_key(rsa, ctx)) {
|
633
|
+
OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR);
|
634
|
+
goto err;
|
635
|
+
}
|
636
|
+
|
637
|
+
const int do_blinding =
|
638
|
+
(rsa->flags & (RSA_FLAG_NO_BLINDING | RSA_FLAG_NO_PUBLIC_EXPONENT)) == 0;
|
639
|
+
|
640
|
+
if (rsa->e == NULL && do_blinding) {
|
641
|
+
// We cannot do blinding or verification without |e|, and continuing without
|
642
|
+
// those countermeasures is dangerous. However, the Java/Android RSA API
|
643
|
+
// requires support for keys where only |d| and |n| (and not |e|) are known.
|
644
|
+
// The callers that require that bad behavior must set
|
645
|
+
// |RSA_FLAG_NO_BLINDING| or use |RSA_new_private_key_no_e|.
|
646
|
+
//
|
647
|
+
// TODO(davidben): Update this comment when Conscrypt is updated to use
|
648
|
+
// |RSA_new_private_key_no_e|.
|
649
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_NO_PUBLIC_EXPONENT);
|
650
|
+
goto err;
|
651
|
+
}
|
652
|
+
|
653
|
+
if (do_blinding) {
|
654
|
+
blinding = rsa_blinding_get(rsa, &blinding_index, ctx);
|
655
|
+
if (blinding == NULL) {
|
656
|
+
OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR);
|
657
|
+
goto err;
|
658
|
+
}
|
659
|
+
if (!BN_BLINDING_convert(f, blinding, rsa->e, rsa->mont_n, ctx)) {
|
660
|
+
goto err;
|
661
|
+
}
|
662
|
+
}
|
663
|
+
|
664
|
+
if (rsa->p != NULL && rsa->q != NULL && rsa->e != NULL && rsa->dmp1 != NULL &&
|
665
|
+
rsa->dmq1 != NULL && rsa->iqmp != NULL &&
|
666
|
+
// Require that we can reduce |f| by |rsa->p| and |rsa->q| in constant
|
667
|
+
// time, which requires primes be the same size, rounded to the Montgomery
|
668
|
+
// coefficient. (See |mod_montgomery|.) This is not required by RFC 8017,
|
669
|
+
// but it is true for keys generated by us and all common implementations.
|
670
|
+
bn_less_than_montgomery_R(rsa->q, rsa->mont_p) &&
|
671
|
+
bn_less_than_montgomery_R(rsa->p, rsa->mont_q)) {
|
672
|
+
if (!mod_exp(result, f, rsa, ctx)) {
|
673
|
+
goto err;
|
674
|
+
}
|
675
|
+
} else if (!BN_mod_exp_mont_consttime(result, f, rsa->d_fixed, rsa->n, ctx,
|
676
|
+
rsa->mont_n)) {
|
677
|
+
goto err;
|
678
|
+
}
|
679
|
+
|
680
|
+
// Verify the result to protect against fault attacks as described in the
|
681
|
+
// 1997 paper "On the Importance of Checking Cryptographic Protocols for
|
682
|
+
// Faults" by Dan Boneh, Richard A. DeMillo, and Richard J. Lipton. Some
|
683
|
+
// implementations do this only when the CRT is used, but we do it in all
|
684
|
+
// cases. Section 6 of the aforementioned paper describes an attack that
|
685
|
+
// works when the CRT isn't used. That attack is much less likely to succeed
|
686
|
+
// than the CRT attack, but there have likely been improvements since 1997.
|
687
|
+
//
|
688
|
+
// This check is cheap assuming |e| is small, which we require in
|
689
|
+
// |rsa_check_public_key|.
|
690
|
+
if (rsa->e != NULL) {
|
691
|
+
BIGNUM *vrfy = BN_CTX_get(ctx);
|
692
|
+
if (vrfy == NULL ||
|
693
|
+
!BN_mod_exp_mont(vrfy, result, rsa->e, rsa->n, ctx, rsa->mont_n) ||
|
694
|
+
!constant_time_declassify_int(BN_equal_consttime(vrfy, f))) {
|
695
|
+
OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR);
|
696
|
+
goto err;
|
697
|
+
}
|
698
|
+
}
|
699
|
+
|
700
|
+
if (do_blinding &&
|
701
|
+
!BN_BLINDING_invert(result, blinding, rsa->mont_n, ctx)) {
|
702
|
+
goto err;
|
703
|
+
}
|
704
|
+
|
705
|
+
// The computation should have left |result| as a maximally-wide number, so
|
706
|
+
// that it and serializing does not leak information about the magnitude of
|
707
|
+
// the result.
|
708
|
+
//
|
709
|
+
// See Falko Strenzke, "Manger's Attack revisited", ICICS 2010.
|
710
|
+
assert(result->width == rsa->mont_n->N.width);
|
711
|
+
bn_assert_fits_in_bytes(result, len);
|
712
|
+
if (!BN_bn2bin_padded(out, len, result)) {
|
713
|
+
OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR);
|
714
|
+
goto err;
|
715
|
+
}
|
716
|
+
|
717
|
+
ret = 1;
|
718
|
+
|
719
|
+
err:
|
720
|
+
if (ctx != NULL) {
|
721
|
+
BN_CTX_end(ctx);
|
722
|
+
BN_CTX_free(ctx);
|
723
|
+
}
|
724
|
+
if (blinding != NULL) {
|
725
|
+
rsa_blinding_release(rsa, blinding, blinding_index);
|
726
|
+
}
|
727
|
+
|
728
|
+
return ret;
|
729
|
+
}
|
730
|
+
|
731
|
+
// mod_montgomery sets |r| to |I| mod |p|. |I| must already be fully reduced
|
732
|
+
// modulo |p| times |q|. It returns one on success and zero on error.
|
733
|
+
static int mod_montgomery(BIGNUM *r, const BIGNUM *I, const BIGNUM *p,
|
734
|
+
const BN_MONT_CTX *mont_p, const BIGNUM *q,
|
735
|
+
BN_CTX *ctx) {
|
736
|
+
// Reducing in constant-time with Montgomery reduction requires I <= p * R. We
|
737
|
+
// have I < p * q, so this follows if q < R. The caller should have checked
|
738
|
+
// this already.
|
739
|
+
if (!bn_less_than_montgomery_R(q, mont_p)) {
|
740
|
+
OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR);
|
741
|
+
return 0;
|
742
|
+
}
|
743
|
+
|
744
|
+
if (// Reduce mod p with Montgomery reduction. This computes I * R^-1 mod p.
|
745
|
+
!BN_from_montgomery(r, I, mont_p, ctx) ||
|
746
|
+
// Multiply by R^2 and do another Montgomery reduction to compute
|
747
|
+
// I * R^-1 * R^2 * R^-1 = I mod p.
|
748
|
+
!BN_to_montgomery(r, r, mont_p, ctx)) {
|
749
|
+
return 0;
|
750
|
+
}
|
751
|
+
|
752
|
+
// By precomputing R^3 mod p (normally |BN_MONT_CTX| only uses R^2 mod p) and
|
753
|
+
// adjusting the API for |BN_mod_exp_mont_consttime|, we could instead compute
|
754
|
+
// I * R mod p here and save a reduction per prime. But this would require
|
755
|
+
// changing the RSAZ code and may not be worth it. Note that the RSAZ code
|
756
|
+
// uses a different radix, so it uses R' = 2^1044. There we'd actually want
|
757
|
+
// R^2 * R', and would futher benefit from a precomputed R'^2. It currently
|
758
|
+
// converts |mont_p->RR| to R'^2.
|
759
|
+
return 1;
|
760
|
+
}
|
761
|
+
|
762
|
+
static int mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx) {
|
763
|
+
assert(ctx != NULL);
|
764
|
+
|
765
|
+
assert(rsa->n != NULL);
|
766
|
+
assert(rsa->e != NULL);
|
767
|
+
assert(rsa->d != NULL);
|
768
|
+
assert(rsa->p != NULL);
|
769
|
+
assert(rsa->q != NULL);
|
770
|
+
assert(rsa->dmp1 != NULL);
|
771
|
+
assert(rsa->dmq1 != NULL);
|
772
|
+
assert(rsa->iqmp != NULL);
|
773
|
+
|
774
|
+
BIGNUM *r1, *m1;
|
775
|
+
int ret = 0;
|
776
|
+
|
777
|
+
BN_CTX_start(ctx);
|
778
|
+
r1 = BN_CTX_get(ctx);
|
779
|
+
m1 = BN_CTX_get(ctx);
|
780
|
+
if (r1 == NULL ||
|
781
|
+
m1 == NULL) {
|
782
|
+
goto err;
|
783
|
+
}
|
784
|
+
|
785
|
+
if (!freeze_private_key(rsa, ctx)) {
|
786
|
+
goto err;
|
787
|
+
}
|
788
|
+
|
789
|
+
// Use the minimal-width versions of |n|, |p|, and |q|. Either works, but if
|
790
|
+
// someone gives us non-minimal values, these will be slightly more efficient
|
791
|
+
// on the non-Montgomery operations.
|
792
|
+
const BIGNUM *n = &rsa->mont_n->N;
|
793
|
+
const BIGNUM *p = &rsa->mont_p->N;
|
794
|
+
const BIGNUM *q = &rsa->mont_q->N;
|
795
|
+
|
796
|
+
// This is a pre-condition for |mod_montgomery|. It was already checked by the
|
797
|
+
// caller.
|
798
|
+
declassify_assert(BN_ucmp(I, n) < 0);
|
799
|
+
|
800
|
+
if (// |m1| is the result modulo |q|.
|
801
|
+
!mod_montgomery(r1, I, q, rsa->mont_q, p, ctx) ||
|
802
|
+
!BN_mod_exp_mont_consttime(m1, r1, rsa->dmq1_fixed, q, ctx,
|
803
|
+
rsa->mont_q) ||
|
804
|
+
// |r0| is the result modulo |p|.
|
805
|
+
!mod_montgomery(r1, I, p, rsa->mont_p, q, ctx) ||
|
806
|
+
!BN_mod_exp_mont_consttime(r0, r1, rsa->dmp1_fixed, p, ctx,
|
807
|
+
rsa->mont_p) ||
|
808
|
+
// Compute r0 = r0 - m1 mod p. |m1| is reduced mod |q|, not |p|, so we
|
809
|
+
// just run |mod_montgomery| again for simplicity. This could be more
|
810
|
+
// efficient with more cases: if |p > q|, |m1| is already reduced. If
|
811
|
+
// |p < q| but they have the same bit width, |bn_reduce_once| suffices.
|
812
|
+
// However, compared to over 2048 Montgomery multiplications above, this
|
813
|
+
// difference is not measurable.
|
814
|
+
!mod_montgomery(r1, m1, p, rsa->mont_p, q, ctx) ||
|
815
|
+
!bn_mod_sub_consttime(r0, r0, r1, p, ctx) ||
|
816
|
+
// r0 = r0 * iqmp mod p. We use Montgomery multiplication to compute this
|
817
|
+
// in constant time. |iqmp_mont| is in Montgomery form and r0 is not, so
|
818
|
+
// the result is taken out of Montgomery form.
|
819
|
+
!BN_mod_mul_montgomery(r0, r0, rsa->iqmp_mont, rsa->mont_p, ctx) ||
|
820
|
+
// r0 = r0 * q + m1 gives the final result. Reducing modulo q gives m1, so
|
821
|
+
// it is correct mod p. Reducing modulo p gives (r0-m1)*iqmp*q + m1 = r0,
|
822
|
+
// so it is correct mod q. Finally, the result is bounded by [m1, n + m1),
|
823
|
+
// and the result is at least |m1|, so this must be the unique answer in
|
824
|
+
// [0, n).
|
825
|
+
!bn_mul_consttime(r0, r0, q, ctx) || //
|
826
|
+
!bn_uadd_consttime(r0, r0, m1)) {
|
827
|
+
goto err;
|
828
|
+
}
|
829
|
+
|
830
|
+
// The result should be bounded by |n|, but fixed-width operations may
|
831
|
+
// bound the width slightly higher, so fix it. This trips constant-time checks
|
832
|
+
// because a naive data flow analysis does not realize the excess words are
|
833
|
+
// publicly zero.
|
834
|
+
declassify_assert(BN_cmp(r0, n) < 0);
|
835
|
+
bn_assert_fits_in_bytes(r0, BN_num_bytes(n));
|
836
|
+
if (!bn_resize_words(r0, n->width)) {
|
837
|
+
goto err;
|
838
|
+
}
|
839
|
+
|
840
|
+
ret = 1;
|
841
|
+
|
842
|
+
err:
|
843
|
+
BN_CTX_end(ctx);
|
844
|
+
return ret;
|
845
|
+
}
|
846
|
+
|
847
|
+
static int ensure_bignum(BIGNUM **out) {
|
848
|
+
if (*out == NULL) {
|
849
|
+
*out = BN_new();
|
850
|
+
}
|
851
|
+
return *out != NULL;
|
852
|
+
}
|
853
|
+
|
854
|
+
// kBoringSSLRSASqrtTwo is the BIGNUM representation of ⌊2²⁰⁴⁷×√2⌋. This is
|
855
|
+
// chosen to give enough precision for 4096-bit RSA, the largest key size FIPS
|
856
|
+
// specifies. Key sizes beyond this will round up.
|
857
|
+
//
|
858
|
+
// To calculate, use the following Haskell code:
|
859
|
+
//
|
860
|
+
// import Text.Printf (printf)
|
861
|
+
// import Data.List (intercalate)
|
862
|
+
//
|
863
|
+
// pow2 = 4095
|
864
|
+
// target = 2^pow2
|
865
|
+
//
|
866
|
+
// f x = x*x - (toRational target)
|
867
|
+
//
|
868
|
+
// fprime x = 2*x
|
869
|
+
//
|
870
|
+
// newtonIteration x = x - (f x) / (fprime x)
|
871
|
+
//
|
872
|
+
// converge x =
|
873
|
+
// let n = floor x in
|
874
|
+
// if n*n - target < 0 && (n+1)*(n+1) - target > 0
|
875
|
+
// then n
|
876
|
+
// else converge (newtonIteration x)
|
877
|
+
//
|
878
|
+
// divrem bits x = (x `div` (2^bits), x `rem` (2^bits))
|
879
|
+
//
|
880
|
+
// bnWords :: Integer -> [Integer]
|
881
|
+
// bnWords x =
|
882
|
+
// if x == 0
|
883
|
+
// then []
|
884
|
+
// else let (high, low) = divrem 64 x in low : bnWords high
|
885
|
+
//
|
886
|
+
// showWord x = let (high, low) = divrem 32 x in printf "TOBN(0x%08x, 0x%08x)" high low
|
887
|
+
//
|
888
|
+
// output :: String
|
889
|
+
// output = intercalate ", " $ map showWord $ bnWords $ converge (2 ^ (pow2 `div` 2))
|
890
|
+
//
|
891
|
+
// To verify this number, check that n² < 2⁴⁰⁹⁵ < (n+1)², where n is value
|
892
|
+
// represented here. Note the components are listed in little-endian order. Here
|
893
|
+
// is some sample Python code to check:
|
894
|
+
//
|
895
|
+
// >>> TOBN = lambda a, b: a << 32 | b
|
896
|
+
// >>> l = [ <paste the contents of kSqrtTwo> ]
|
897
|
+
// >>> n = sum(a * 2**(64*i) for i, a in enumerate(l))
|
898
|
+
// >>> n**2 < 2**4095 < (n+1)**2
|
899
|
+
// True
|
900
|
+
const BN_ULONG kBoringSSLRSASqrtTwo[] = {
|
901
|
+
TOBN(0x4d7c60a5, 0xe633e3e1), TOBN(0x5fcf8f7b, 0xca3ea33b),
|
902
|
+
TOBN(0xc246785e, 0x92957023), TOBN(0xf9acce41, 0x797f2805),
|
903
|
+
TOBN(0xfdfe170f, 0xd3b1f780), TOBN(0xd24f4a76, 0x3facb882),
|
904
|
+
TOBN(0x18838a2e, 0xaff5f3b2), TOBN(0xc1fcbdde, 0xa2f7dc33),
|
905
|
+
TOBN(0xdea06241, 0xf7aa81c2), TOBN(0xf6a1be3f, 0xca221307),
|
906
|
+
TOBN(0x332a5e9f, 0x7bda1ebf), TOBN(0x0104dc01, 0xfe32352f),
|
907
|
+
TOBN(0xb8cf341b, 0x6f8236c7), TOBN(0x4264dabc, 0xd528b651),
|
908
|
+
TOBN(0xf4d3a02c, 0xebc93e0c), TOBN(0x81394ab6, 0xd8fd0efd),
|
909
|
+
TOBN(0xeaa4a089, 0x9040ca4a), TOBN(0xf52f120f, 0x836e582e),
|
910
|
+
TOBN(0xcb2a6343, 0x31f3c84d), TOBN(0xc6d5a8a3, 0x8bb7e9dc),
|
911
|
+
TOBN(0x460abc72, 0x2f7c4e33), TOBN(0xcab1bc91, 0x1688458a),
|
912
|
+
TOBN(0x53059c60, 0x11bc337b), TOBN(0xd2202e87, 0x42af1f4e),
|
913
|
+
TOBN(0x78048736, 0x3dfa2768), TOBN(0x0f74a85e, 0x439c7b4a),
|
914
|
+
TOBN(0xa8b1fe6f, 0xdc83db39), TOBN(0x4afc8304, 0x3ab8a2c3),
|
915
|
+
TOBN(0xed17ac85, 0x83339915), TOBN(0x1d6f60ba, 0x893ba84c),
|
916
|
+
TOBN(0x597d89b3, 0x754abe9f), TOBN(0xb504f333, 0xf9de6484),
|
917
|
+
};
|
918
|
+
const size_t kBoringSSLRSASqrtTwoLen = OPENSSL_ARRAY_SIZE(kBoringSSLRSASqrtTwo);
|
919
|
+
|
920
|
+
// generate_prime sets |out| to a prime with length |bits| such that |out|-1 is
|
921
|
+
// relatively prime to |e|. If |p| is non-NULL, |out| will also not be close to
|
922
|
+
// |p|. |sqrt2| must be ⌊2^(bits-1)×√2⌋ (or a slightly overestimate for large
|
923
|
+
// sizes), and |pow2_bits_100| must be 2^(bits-100).
|
924
|
+
//
|
925
|
+
// This function fails with probability around 2^-21.
|
926
|
+
static int generate_prime(BIGNUM *out, int bits, const BIGNUM *e,
|
927
|
+
const BIGNUM *p, const BIGNUM *sqrt2,
|
928
|
+
const BIGNUM *pow2_bits_100, BN_CTX *ctx,
|
929
|
+
BN_GENCB *cb) {
|
930
|
+
if (bits < 128 || (bits % BN_BITS2) != 0) {
|
931
|
+
OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR);
|
932
|
+
return 0;
|
933
|
+
}
|
934
|
+
assert(BN_is_pow2(pow2_bits_100));
|
935
|
+
assert(BN_is_bit_set(pow2_bits_100, bits - 100));
|
936
|
+
|
937
|
+
// See FIPS 186-4 appendix B.3.3, steps 4 and 5. Note |bits| here is nlen/2.
|
938
|
+
|
939
|
+
// Use the limit from steps 4.7 and 5.8 for most values of |e|. When |e| is 3,
|
940
|
+
// the 186-4 limit is too low, so we use a higher one. Note this case is not
|
941
|
+
// reachable from |RSA_generate_key_fips|.
|
942
|
+
//
|
943
|
+
// |limit| determines the failure probability. We must find a prime that is
|
944
|
+
// not 1 mod |e|. By the prime number theorem, we'll find one with probability
|
945
|
+
// p = (e-1)/e * 2/(ln(2)*bits). Note the second term is doubled because we
|
946
|
+
// discard even numbers.
|
947
|
+
//
|
948
|
+
// The failure probability is thus (1-p)^limit. To convert that to a power of
|
949
|
+
// two, we take logs. -log_2((1-p)^limit) = -limit * ln(1-p) / ln(2).
|
950
|
+
//
|
951
|
+
// >>> def f(bits, e, limit):
|
952
|
+
// ... p = (e-1.0)/e * 2.0/(math.log(2)*bits)
|
953
|
+
// ... return -limit * math.log(1 - p) / math.log(2)
|
954
|
+
// ...
|
955
|
+
// >>> f(1024, 65537, 5*1024)
|
956
|
+
// 20.842750558272634
|
957
|
+
// >>> f(1536, 65537, 5*1536)
|
958
|
+
// 20.83294549602474
|
959
|
+
// >>> f(2048, 65537, 5*2048)
|
960
|
+
// 20.828047576234948
|
961
|
+
// >>> f(1024, 3, 8*1024)
|
962
|
+
// 22.222147925962307
|
963
|
+
// >>> f(1536, 3, 8*1536)
|
964
|
+
// 22.21518251065506
|
965
|
+
// >>> f(2048, 3, 8*2048)
|
966
|
+
// 22.211701985875937
|
967
|
+
if (bits >= INT_MAX/32) {
|
968
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_MODULUS_TOO_LARGE);
|
969
|
+
return 0;
|
970
|
+
}
|
971
|
+
int limit = BN_is_word(e, 3) ? bits * 8 : bits * 5;
|
972
|
+
|
973
|
+
int ret = 0, tries = 0, rand_tries = 0;
|
974
|
+
BN_CTX_start(ctx);
|
975
|
+
BIGNUM *tmp = BN_CTX_get(ctx);
|
976
|
+
if (tmp == NULL) {
|
977
|
+
goto err;
|
978
|
+
}
|
979
|
+
|
980
|
+
for (;;) {
|
981
|
+
// Generate a random number of length |bits| where the bottom bit is set
|
982
|
+
// (steps 4.2, 4.3, 5.2 and 5.3) and the top bit is set (implied by the
|
983
|
+
// bound checked below in steps 4.4 and 5.5).
|
984
|
+
if (!BN_rand(out, bits, BN_RAND_TOP_ONE, BN_RAND_BOTTOM_ODD) ||
|
985
|
+
!BN_GENCB_call(cb, BN_GENCB_GENERATED, rand_tries++)) {
|
986
|
+
goto err;
|
987
|
+
}
|
988
|
+
|
989
|
+
if (p != NULL) {
|
990
|
+
// If |p| and |out| are too close, try again (step 5.4).
|
991
|
+
if (!bn_abs_sub_consttime(tmp, out, p, ctx)) {
|
992
|
+
goto err;
|
993
|
+
}
|
994
|
+
if (BN_cmp(tmp, pow2_bits_100) <= 0) {
|
995
|
+
continue;
|
996
|
+
}
|
997
|
+
}
|
998
|
+
|
999
|
+
// If out < 2^(bits-1)×√2, try again (steps 4.4 and 5.5). This is equivalent
|
1000
|
+
// to out <= ⌊2^(bits-1)×√2⌋, or out <= sqrt2 for FIPS key sizes.
|
1001
|
+
//
|
1002
|
+
// For larger keys, the comparison is approximate, leaning towards
|
1003
|
+
// retrying. That is, we reject a negligible fraction of primes that are
|
1004
|
+
// within the FIPS bound, but we will never accept a prime outside the
|
1005
|
+
// bound, ensuring the resulting RSA key is the right size.
|
1006
|
+
//
|
1007
|
+
// Values over the threshold are discarded, so it is safe to leak this
|
1008
|
+
// comparison.
|
1009
|
+
if (constant_time_declassify_int(BN_cmp(out, sqrt2) <= 0)) {
|
1010
|
+
continue;
|
1011
|
+
}
|
1012
|
+
|
1013
|
+
// RSA key generation's bottleneck is discarding composites. If it fails
|
1014
|
+
// trial division, do not bother computing a GCD or performing Miller-Rabin.
|
1015
|
+
if (!bn_odd_number_is_obviously_composite(out)) {
|
1016
|
+
// Check gcd(out-1, e) is one (steps 4.5 and 5.6). Leaking the final
|
1017
|
+
// result of this comparison is safe because, if not relatively prime, the
|
1018
|
+
// value will be discarded.
|
1019
|
+
int relatively_prime;
|
1020
|
+
if (!bn_usub_consttime(tmp, out, BN_value_one()) ||
|
1021
|
+
!bn_is_relatively_prime(&relatively_prime, tmp, e, ctx)) {
|
1022
|
+
goto err;
|
1023
|
+
}
|
1024
|
+
if (constant_time_declassify_int(relatively_prime)) {
|
1025
|
+
// Test |out| for primality (steps 4.5.1 and 5.6.1).
|
1026
|
+
int is_probable_prime;
|
1027
|
+
if (!BN_primality_test(&is_probable_prime, out,
|
1028
|
+
BN_prime_checks_for_generation, ctx, 0, cb)) {
|
1029
|
+
goto err;
|
1030
|
+
}
|
1031
|
+
if (is_probable_prime) {
|
1032
|
+
ret = 1;
|
1033
|
+
goto err;
|
1034
|
+
}
|
1035
|
+
}
|
1036
|
+
}
|
1037
|
+
|
1038
|
+
// If we've tried too many times to find a prime, abort (steps 4.7 and
|
1039
|
+
// 5.8).
|
1040
|
+
tries++;
|
1041
|
+
if (tries >= limit) {
|
1042
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_TOO_MANY_ITERATIONS);
|
1043
|
+
goto err;
|
1044
|
+
}
|
1045
|
+
if (!BN_GENCB_call(cb, 2, tries)) {
|
1046
|
+
goto err;
|
1047
|
+
}
|
1048
|
+
}
|
1049
|
+
|
1050
|
+
err:
|
1051
|
+
BN_CTX_end(ctx);
|
1052
|
+
return ret;
|
1053
|
+
}
|
1054
|
+
|
1055
|
+
// rsa_generate_key_impl generates an RSA key using a generalized version of
|
1056
|
+
// FIPS 186-4 appendix B.3. |RSA_generate_key_fips| performs additional checks
|
1057
|
+
// for FIPS-compliant key generation.
|
1058
|
+
//
|
1059
|
+
// This function returns one on success and zero on failure. It has a failure
|
1060
|
+
// probability of about 2^-20.
|
1061
|
+
static int rsa_generate_key_impl(RSA *rsa, int bits, const BIGNUM *e_value,
|
1062
|
+
BN_GENCB *cb) {
|
1063
|
+
// See FIPS 186-4 appendix B.3. This function implements a generalized version
|
1064
|
+
// of the FIPS algorithm. |RSA_generate_key_fips| performs additional checks
|
1065
|
+
// for FIPS-compliant key generation.
|
1066
|
+
|
1067
|
+
// Always generate RSA keys which are a multiple of 128 bits. Round |bits|
|
1068
|
+
// down as needed.
|
1069
|
+
bits &= ~127;
|
1070
|
+
|
1071
|
+
// Reject excessively small keys.
|
1072
|
+
if (bits < 256) {
|
1073
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_KEY_SIZE_TOO_SMALL);
|
1074
|
+
return 0;
|
1075
|
+
}
|
1076
|
+
|
1077
|
+
// Reject excessively large public exponents. Windows CryptoAPI and Go don't
|
1078
|
+
// support values larger than 32 bits, so match their limits for generating
|
1079
|
+
// keys. (|rsa_check_public_key| uses a slightly more conservative value, but
|
1080
|
+
// we don't need to support generating such keys.)
|
1081
|
+
// https://github.com/golang/go/issues/3161
|
1082
|
+
// https://msdn.microsoft.com/en-us/library/aa387685(VS.85).aspx
|
1083
|
+
if (BN_num_bits(e_value) > 32) {
|
1084
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_BAD_E_VALUE);
|
1085
|
+
return 0;
|
1086
|
+
}
|
1087
|
+
|
1088
|
+
int ret = 0;
|
1089
|
+
int prime_bits = bits / 2;
|
1090
|
+
BN_CTX *ctx = BN_CTX_new();
|
1091
|
+
if (ctx == NULL) {
|
1092
|
+
goto bn_err;
|
1093
|
+
}
|
1094
|
+
BN_CTX_start(ctx);
|
1095
|
+
BIGNUM *totient = BN_CTX_get(ctx);
|
1096
|
+
BIGNUM *pm1 = BN_CTX_get(ctx);
|
1097
|
+
BIGNUM *qm1 = BN_CTX_get(ctx);
|
1098
|
+
BIGNUM *sqrt2 = BN_CTX_get(ctx);
|
1099
|
+
BIGNUM *pow2_prime_bits_100 = BN_CTX_get(ctx);
|
1100
|
+
BIGNUM *pow2_prime_bits = BN_CTX_get(ctx);
|
1101
|
+
if (totient == NULL || pm1 == NULL || qm1 == NULL || sqrt2 == NULL ||
|
1102
|
+
pow2_prime_bits_100 == NULL || pow2_prime_bits == NULL ||
|
1103
|
+
!BN_set_bit(pow2_prime_bits_100, prime_bits - 100) ||
|
1104
|
+
!BN_set_bit(pow2_prime_bits, prime_bits)) {
|
1105
|
+
goto bn_err;
|
1106
|
+
}
|
1107
|
+
|
1108
|
+
// We need the RSA components non-NULL.
|
1109
|
+
if (!ensure_bignum(&rsa->n) ||
|
1110
|
+
!ensure_bignum(&rsa->d) ||
|
1111
|
+
!ensure_bignum(&rsa->e) ||
|
1112
|
+
!ensure_bignum(&rsa->p) ||
|
1113
|
+
!ensure_bignum(&rsa->q) ||
|
1114
|
+
!ensure_bignum(&rsa->dmp1) ||
|
1115
|
+
!ensure_bignum(&rsa->dmq1)) {
|
1116
|
+
goto bn_err;
|
1117
|
+
}
|
1118
|
+
|
1119
|
+
if (!BN_copy(rsa->e, e_value)) {
|
1120
|
+
goto bn_err;
|
1121
|
+
}
|
1122
|
+
|
1123
|
+
// Compute sqrt2 >= ⌊2^(prime_bits-1)×√2⌋.
|
1124
|
+
if (!bn_set_words(sqrt2, kBoringSSLRSASqrtTwo, kBoringSSLRSASqrtTwoLen)) {
|
1125
|
+
goto bn_err;
|
1126
|
+
}
|
1127
|
+
int sqrt2_bits = kBoringSSLRSASqrtTwoLen * BN_BITS2;
|
1128
|
+
assert(sqrt2_bits == (int)BN_num_bits(sqrt2));
|
1129
|
+
if (sqrt2_bits > prime_bits) {
|
1130
|
+
// For key sizes up to 4096 (prime_bits = 2048), this is exactly
|
1131
|
+
// ⌊2^(prime_bits-1)×√2⌋.
|
1132
|
+
if (!BN_rshift(sqrt2, sqrt2, sqrt2_bits - prime_bits)) {
|
1133
|
+
goto bn_err;
|
1134
|
+
}
|
1135
|
+
} else if (prime_bits > sqrt2_bits) {
|
1136
|
+
// For key sizes beyond 4096, this is approximate. We err towards retrying
|
1137
|
+
// to ensure our key is the right size and round up.
|
1138
|
+
if (!BN_add_word(sqrt2, 1) ||
|
1139
|
+
!BN_lshift(sqrt2, sqrt2, prime_bits - sqrt2_bits)) {
|
1140
|
+
goto bn_err;
|
1141
|
+
}
|
1142
|
+
}
|
1143
|
+
assert(prime_bits == (int)BN_num_bits(sqrt2));
|
1144
|
+
|
1145
|
+
do {
|
1146
|
+
// Generate p and q, each of size |prime_bits|, using the steps outlined in
|
1147
|
+
// appendix FIPS 186-4 appendix B.3.3.
|
1148
|
+
//
|
1149
|
+
// Each call to |generate_prime| fails with probability p = 2^-21. The
|
1150
|
+
// probability that either call fails is 1 - (1-p)^2, which is around 2^-20.
|
1151
|
+
if (!generate_prime(rsa->p, prime_bits, rsa->e, NULL, sqrt2,
|
1152
|
+
pow2_prime_bits_100, ctx, cb) ||
|
1153
|
+
!BN_GENCB_call(cb, 3, 0) ||
|
1154
|
+
!generate_prime(rsa->q, prime_bits, rsa->e, rsa->p, sqrt2,
|
1155
|
+
pow2_prime_bits_100, ctx, cb) ||
|
1156
|
+
!BN_GENCB_call(cb, 3, 1)) {
|
1157
|
+
goto bn_err;
|
1158
|
+
}
|
1159
|
+
|
1160
|
+
if (BN_cmp(rsa->p, rsa->q) < 0) {
|
1161
|
+
BIGNUM *tmp = rsa->p;
|
1162
|
+
rsa->p = rsa->q;
|
1163
|
+
rsa->q = tmp;
|
1164
|
+
}
|
1165
|
+
|
1166
|
+
// Calculate d = e^(-1) (mod lcm(p-1, q-1)), per FIPS 186-4. This differs
|
1167
|
+
// from typical RSA implementations which use (p-1)*(q-1).
|
1168
|
+
//
|
1169
|
+
// Note this means the size of d might reveal information about p-1 and
|
1170
|
+
// q-1. However, we do operations with Chinese Remainder Theorem, so we only
|
1171
|
+
// use d (mod p-1) and d (mod q-1) as exponents. Using a minimal totient
|
1172
|
+
// does not affect those two values.
|
1173
|
+
int no_inverse;
|
1174
|
+
if (!bn_usub_consttime(pm1, rsa->p, BN_value_one()) ||
|
1175
|
+
!bn_usub_consttime(qm1, rsa->q, BN_value_one()) ||
|
1176
|
+
!bn_lcm_consttime(totient, pm1, qm1, ctx) ||
|
1177
|
+
!bn_mod_inverse_consttime(rsa->d, &no_inverse, rsa->e, totient, ctx)) {
|
1178
|
+
goto bn_err;
|
1179
|
+
}
|
1180
|
+
|
1181
|
+
// Retry if |rsa->d| <= 2^|prime_bits|. See appendix B.3.1's guidance on
|
1182
|
+
// values for d. When we retry, p and q are discarded, so it is safe to leak
|
1183
|
+
// this comparison.
|
1184
|
+
} while (constant_time_declassify_int(BN_cmp(rsa->d, pow2_prime_bits) <= 0));
|
1185
|
+
|
1186
|
+
assert(BN_num_bits(pm1) == (unsigned)prime_bits);
|
1187
|
+
assert(BN_num_bits(qm1) == (unsigned)prime_bits);
|
1188
|
+
if (// Calculate n.
|
1189
|
+
!bn_mul_consttime(rsa->n, rsa->p, rsa->q, ctx) ||
|
1190
|
+
// Calculate d mod (p-1).
|
1191
|
+
!bn_div_consttime(NULL, rsa->dmp1, rsa->d, pm1, prime_bits, ctx) ||
|
1192
|
+
// Calculate d mod (q-1)
|
1193
|
+
!bn_div_consttime(NULL, rsa->dmq1, rsa->d, qm1, prime_bits, ctx)) {
|
1194
|
+
goto bn_err;
|
1195
|
+
}
|
1196
|
+
bn_set_minimal_width(rsa->n);
|
1197
|
+
|
1198
|
+
// |rsa->n| is computed from the private key, but is public.
|
1199
|
+
bn_declassify(rsa->n);
|
1200
|
+
|
1201
|
+
// Sanity-check that |rsa->n| has the specified size. This is implied by
|
1202
|
+
// |generate_prime|'s bounds.
|
1203
|
+
if (BN_num_bits(rsa->n) != (unsigned)bits) {
|
1204
|
+
OPENSSL_PUT_ERROR(RSA, ERR_R_INTERNAL_ERROR);
|
1205
|
+
goto err;
|
1206
|
+
}
|
1207
|
+
|
1208
|
+
// Call |freeze_private_key| to compute the inverse of q mod p, by way of
|
1209
|
+
// |rsa->mont_p|.
|
1210
|
+
if (!freeze_private_key(rsa, ctx)) {
|
1211
|
+
goto bn_err;
|
1212
|
+
}
|
1213
|
+
|
1214
|
+
// The key generation process is complex and thus error-prone. It could be
|
1215
|
+
// disastrous to generate and then use a bad key so double-check that the key
|
1216
|
+
// makes sense.
|
1217
|
+
if (!RSA_check_key(rsa)) {
|
1218
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_INTERNAL_ERROR);
|
1219
|
+
goto err;
|
1220
|
+
}
|
1221
|
+
|
1222
|
+
ret = 1;
|
1223
|
+
|
1224
|
+
bn_err:
|
1225
|
+
if (!ret) {
|
1226
|
+
OPENSSL_PUT_ERROR(RSA, ERR_LIB_BN);
|
1227
|
+
}
|
1228
|
+
err:
|
1229
|
+
if (ctx != NULL) {
|
1230
|
+
BN_CTX_end(ctx);
|
1231
|
+
BN_CTX_free(ctx);
|
1232
|
+
}
|
1233
|
+
return ret;
|
1234
|
+
}
|
1235
|
+
|
1236
|
+
static void replace_bignum(BIGNUM **out, BIGNUM **in) {
|
1237
|
+
BN_free(*out);
|
1238
|
+
*out = *in;
|
1239
|
+
*in = NULL;
|
1240
|
+
}
|
1241
|
+
|
1242
|
+
static void replace_bn_mont_ctx(BN_MONT_CTX **out, BN_MONT_CTX **in) {
|
1243
|
+
BN_MONT_CTX_free(*out);
|
1244
|
+
*out = *in;
|
1245
|
+
*in = NULL;
|
1246
|
+
}
|
1247
|
+
|
1248
|
+
static int RSA_generate_key_ex_maybe_fips(RSA *rsa, int bits,
|
1249
|
+
const BIGNUM *e_value, BN_GENCB *cb,
|
1250
|
+
int check_fips) {
|
1251
|
+
boringssl_ensure_rsa_self_test();
|
1252
|
+
|
1253
|
+
if (rsa == NULL) {
|
1254
|
+
OPENSSL_PUT_ERROR(EC, ERR_R_PASSED_NULL_PARAMETER);
|
1255
|
+
return 0;
|
1256
|
+
}
|
1257
|
+
|
1258
|
+
RSA *tmp = NULL;
|
1259
|
+
uint32_t err;
|
1260
|
+
int ret = 0;
|
1261
|
+
|
1262
|
+
// |rsa_generate_key_impl|'s 2^-20 failure probability is too high at scale,
|
1263
|
+
// so we run the FIPS algorithm four times, bringing it down to 2^-80. We
|
1264
|
+
// should just adjust the retry limit, but FIPS 186-4 prescribes that value
|
1265
|
+
// and thus results in unnecessary complexity.
|
1266
|
+
int failures = 0;
|
1267
|
+
do {
|
1268
|
+
ERR_clear_error();
|
1269
|
+
// Generate into scratch space, to avoid leaving partial work on failure.
|
1270
|
+
tmp = RSA_new();
|
1271
|
+
if (tmp == NULL) {
|
1272
|
+
goto out;
|
1273
|
+
}
|
1274
|
+
|
1275
|
+
if (rsa_generate_key_impl(tmp, bits, e_value, cb)) {
|
1276
|
+
break;
|
1277
|
+
}
|
1278
|
+
|
1279
|
+
err = ERR_peek_error();
|
1280
|
+
RSA_free(tmp);
|
1281
|
+
tmp = NULL;
|
1282
|
+
failures++;
|
1283
|
+
|
1284
|
+
// Only retry on |RSA_R_TOO_MANY_ITERATIONS|. This is so a caller-induced
|
1285
|
+
// failure in |BN_GENCB_call| is still fatal.
|
1286
|
+
} while (failures < 4 && ERR_GET_LIB(err) == ERR_LIB_RSA &&
|
1287
|
+
ERR_GET_REASON(err) == RSA_R_TOO_MANY_ITERATIONS);
|
1288
|
+
|
1289
|
+
if (tmp == NULL || (check_fips && !RSA_check_fips(tmp))) {
|
1290
|
+
goto out;
|
1291
|
+
}
|
1292
|
+
|
1293
|
+
rsa_invalidate_key(rsa);
|
1294
|
+
replace_bignum(&rsa->n, &tmp->n);
|
1295
|
+
replace_bignum(&rsa->e, &tmp->e);
|
1296
|
+
replace_bignum(&rsa->d, &tmp->d);
|
1297
|
+
replace_bignum(&rsa->p, &tmp->p);
|
1298
|
+
replace_bignum(&rsa->q, &tmp->q);
|
1299
|
+
replace_bignum(&rsa->dmp1, &tmp->dmp1);
|
1300
|
+
replace_bignum(&rsa->dmq1, &tmp->dmq1);
|
1301
|
+
replace_bignum(&rsa->iqmp, &tmp->iqmp);
|
1302
|
+
replace_bn_mont_ctx(&rsa->mont_n, &tmp->mont_n);
|
1303
|
+
replace_bn_mont_ctx(&rsa->mont_p, &tmp->mont_p);
|
1304
|
+
replace_bn_mont_ctx(&rsa->mont_q, &tmp->mont_q);
|
1305
|
+
replace_bignum(&rsa->d_fixed, &tmp->d_fixed);
|
1306
|
+
replace_bignum(&rsa->dmp1_fixed, &tmp->dmp1_fixed);
|
1307
|
+
replace_bignum(&rsa->dmq1_fixed, &tmp->dmq1_fixed);
|
1308
|
+
replace_bignum(&rsa->iqmp_mont, &tmp->iqmp_mont);
|
1309
|
+
rsa->private_key_frozen = tmp->private_key_frozen;
|
1310
|
+
ret = 1;
|
1311
|
+
|
1312
|
+
out:
|
1313
|
+
RSA_free(tmp);
|
1314
|
+
return ret;
|
1315
|
+
}
|
1316
|
+
|
1317
|
+
int RSA_generate_key_ex(RSA *rsa, int bits, const BIGNUM *e_value,
|
1318
|
+
BN_GENCB *cb) {
|
1319
|
+
return RSA_generate_key_ex_maybe_fips(rsa, bits, e_value, cb,
|
1320
|
+
/*check_fips=*/0);
|
1321
|
+
}
|
1322
|
+
|
1323
|
+
int RSA_generate_key_fips(RSA *rsa, int bits, BN_GENCB *cb) {
|
1324
|
+
// FIPS 186-4 allows 2048-bit and 3072-bit RSA keys (1024-bit and 1536-bit
|
1325
|
+
// primes, respectively) with the prime generation method we use.
|
1326
|
+
// Subsequently, IG A.14 stated that larger modulus sizes can be used and ACVP
|
1327
|
+
// testing supports 4096 bits.
|
1328
|
+
if (bits != 2048 && bits != 3072 && bits != 4096) {
|
1329
|
+
OPENSSL_PUT_ERROR(RSA, RSA_R_BAD_RSA_PARAMETERS);
|
1330
|
+
return 0;
|
1331
|
+
}
|
1332
|
+
|
1333
|
+
BIGNUM *e = BN_new();
|
1334
|
+
int ret = e != NULL &&
|
1335
|
+
BN_set_word(e, RSA_F4) &&
|
1336
|
+
RSA_generate_key_ex_maybe_fips(rsa, bits, e, cb, /*check_fips=*/1);
|
1337
|
+
BN_free(e);
|
1338
|
+
|
1339
|
+
if (ret) {
|
1340
|
+
FIPS_service_indicator_update_state();
|
1341
|
+
}
|
1342
|
+
return ret;
|
1343
|
+
}
|
1344
|
+
|
1345
|
+
DEFINE_METHOD_FUNCTION(RSA_METHOD, RSA_default_method) {
|
1346
|
+
// All of the methods are NULL to make it easier for the compiler/linker to
|
1347
|
+
// drop unused functions. The wrapper functions will select the appropriate
|
1348
|
+
// |rsa_default_*| implementation.
|
1349
|
+
OPENSSL_memset(out, 0, sizeof(RSA_METHOD));
|
1350
|
+
out->common.is_static = 1;
|
1351
|
+
}
|