grpc 1.47.0 → 1.53.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of grpc might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/Makefile +386 -162
- data/include/grpc/byte_buffer.h +76 -1
- data/include/grpc/byte_buffer_reader.h +19 -1
- data/include/grpc/compression.h +2 -2
- data/include/grpc/event_engine/endpoint_config.h +11 -5
- data/include/grpc/event_engine/event_engine.h +87 -32
- data/include/grpc/event_engine/internal/memory_allocator_impl.h +1 -1
- data/include/grpc/event_engine/internal/slice_cast.h +67 -0
- data/include/grpc/event_engine/memory_allocator.h +1 -1
- data/include/grpc/event_engine/slice.h +24 -4
- data/include/grpc/event_engine/slice_buffer.h +52 -5
- data/include/grpc/fork.h +25 -1
- data/include/grpc/grpc.h +4 -14
- data/include/grpc/grpc_posix.h +1 -1
- data/include/grpc/impl/codegen/atm.h +3 -71
- data/include/grpc/impl/codegen/atm_gcc_atomic.h +3 -67
- data/include/grpc/impl/codegen/atm_gcc_sync.h +3 -61
- data/include/grpc/impl/codegen/atm_windows.h +3 -108
- data/include/grpc/impl/codegen/byte_buffer.h +4 -78
- data/include/grpc/impl/codegen/byte_buffer_reader.h +4 -19
- data/include/grpc/impl/codegen/compression_types.h +5 -83
- data/include/grpc/impl/codegen/connectivity_state.h +5 -21
- data/include/grpc/impl/codegen/fork.h +4 -25
- data/include/grpc/impl/codegen/gpr_types.h +4 -35
- data/include/grpc/impl/codegen/grpc_types.h +5 -791
- data/include/grpc/impl/codegen/log.h +3 -86
- data/include/grpc/impl/codegen/port_platform.h +3 -763
- data/include/grpc/impl/codegen/propagation_bits.h +3 -28
- data/include/grpc/impl/codegen/slice.h +3 -106
- data/include/grpc/impl/codegen/status.h +4 -131
- data/include/grpc/impl/codegen/sync.h +3 -42
- data/include/grpc/impl/codegen/sync_abseil.h +3 -12
- data/include/grpc/impl/codegen/sync_custom.h +3 -14
- data/include/grpc/impl/codegen/sync_generic.h +3 -25
- data/include/grpc/impl/codegen/sync_posix.h +3 -28
- data/include/grpc/impl/codegen/sync_windows.h +3 -16
- data/include/grpc/impl/compression_types.h +109 -0
- data/include/grpc/impl/connectivity_state.h +47 -0
- data/include/grpc/impl/grpc_types.h +827 -0
- data/include/grpc/impl/propagation_bits.h +54 -0
- data/include/grpc/impl/slice_type.h +112 -0
- data/include/grpc/load_reporting.h +1 -1
- data/include/grpc/module.modulemap +5 -1
- data/include/grpc/slice.h +1 -1
- data/include/grpc/status.h +131 -1
- data/include/grpc/support/atm.h +70 -1
- data/include/grpc/support/atm_gcc_atomic.h +59 -1
- data/include/grpc/support/atm_gcc_sync.h +58 -1
- data/include/grpc/support/atm_windows.h +105 -1
- data/include/grpc/support/log.h +87 -1
- data/include/grpc/support/log_windows.h +1 -1
- data/include/grpc/support/port_platform.h +767 -1
- data/include/grpc/support/string_util.h +1 -1
- data/include/grpc/support/sync.h +35 -2
- data/include/grpc/support/sync_abseil.h +11 -1
- data/include/grpc/support/sync_custom.h +13 -1
- data/include/grpc/support/sync_generic.h +24 -1
- data/include/grpc/support/sync_posix.h +27 -1
- data/include/grpc/support/sync_windows.h +15 -1
- data/include/grpc/support/time.h +31 -6
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.cc +148 -0
- data/src/core/ext/filters/backend_metrics/backend_metric_filter.h +52 -0
- data/src/core/ext/filters/backend_metrics/backend_metric_provider.h +29 -0
- data/src/core/ext/filters/census/grpc_context.cc +19 -17
- data/src/core/ext/filters/channel_idle/channel_idle_filter.cc +49 -31
- data/src/core/ext/filters/channel_idle/channel_idle_filter.h +22 -5
- data/src/core/ext/filters/channel_idle/idle_filter_state.h +6 -4
- data/src/core/ext/filters/client_channel/backend_metric.cc +2 -0
- data/src/core/ext/filters/client_channel/backend_metric.h +3 -3
- data/src/core/ext/filters/client_channel/backup_poller.cc +30 -30
- data/src/core/ext/filters/client_channel/backup_poller.h +24 -24
- data/src/core/ext/filters/client_channel/channel_connectivity.cc +52 -29
- data/src/core/ext/filters/client_channel/client_channel.cc +348 -441
- data/src/core/ext/filters/client_channel/client_channel.h +46 -24
- data/src/core/ext/filters/client_channel/client_channel_channelz.cc +17 -19
- data/src/core/ext/filters/client_channel/client_channel_channelz.h +22 -22
- data/src/core/ext/filters/client_channel/client_channel_factory.cc +17 -46
- data/src/core/ext/filters/client_channel/client_channel_factory.h +5 -13
- data/src/core/ext/filters/client_channel/client_channel_plugin.cc +18 -34
- data/src/core/ext/filters/client_channel/client_channel_service_config.cc +153 -0
- data/src/core/ext/filters/client_channel/{resolver_result_parsing.h → client_channel_service_config.h} +26 -26
- data/src/core/ext/filters/client_channel/config_selector.h +27 -23
- data/src/core/ext/filters/client_channel/connector.h +13 -10
- data/src/core/ext/filters/client_channel/dynamic_filters.cc +29 -54
- data/src/core/ext/filters/client_channel/dynamic_filters.h +10 -11
- data/src/core/ext/filters/client_channel/global_subchannel_pool.h +21 -21
- data/src/core/ext/filters/client_channel/health/health_check_client.cc +4 -5
- data/src/core/ext/filters/client_channel/health/health_check_client.h +3 -3
- data/src/core/ext/filters/client_channel/http_proxy.cc +90 -110
- data/src/core/ext/filters/client_channel/http_proxy.h +36 -32
- data/src/core/ext/filters/client_channel/lb_call_state_internal.h +39 -0
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.cc +4 -5
- data/src/core/ext/filters/client_channel/lb_policy/address_filtering.h +3 -3
- data/src/core/ext/filters/client_channel/lb_policy/backend_metric_data.h +21 -21
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.cc +27 -18
- data/src/core/ext/filters/client_channel/lb_policy/child_policy_handler.h +14 -14
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.cc +66 -132
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/client_load_reporting_filter.h +41 -24
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.cc +361 -366
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb.h +26 -27
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.cc +12 -4
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_balancer_addresses.h +9 -7
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.cc +18 -20
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/grpclb_client_stats.h +21 -22
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.cc +19 -19
- data/src/core/ext/filters/client_channel/lb_policy/grpclb/load_balancer_api.h +22 -24
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.cc +28 -98
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric.h +5 -5
- data/src/core/ext/filters/client_channel/lb_policy/oob_backend_metric_internal.h +117 -0
- data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.cc +418 -327
- data/src/core/ext/filters/client_channel/lb_policy/outlier_detection/outlier_detection.h +46 -6
- data/src/core/ext/filters/client_channel/lb_policy/pick_first/pick_first.cc +140 -154
- data/src/core/ext/filters/client_channel/lb_policy/priority/priority.cc +304 -387
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.cc +388 -363
- data/src/core/ext/filters/client_channel/lb_policy/ring_hash/ring_hash.h +19 -11
- data/src/core/ext/filters/client_channel/lb_policy/rls/rls.cc +578 -628
- data/src/core/ext/filters/client_channel/lb_policy/round_robin/round_robin.cc +154 -138
- data/src/core/ext/filters/client_channel/lb_policy/subchannel_list.h +134 -115
- data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/static_stride_scheduler.cc +128 -0
- data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/static_stride_scheduler.h +71 -0
- data/src/core/ext/filters/client_channel/lb_policy/weighted_round_robin/weighted_round_robin.cc +972 -0
- data/src/core/ext/filters/client_channel/lb_policy/weighted_target/weighted_target.cc +202 -224
- data/src/core/ext/filters/client_channel/lb_policy/xds/cds.cc +124 -139
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_attributes.cc +42 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/{xds.h → xds_attributes.h} +15 -17
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_channel_args.h +3 -3
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_impl.cc +154 -258
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_manager.cc +183 -214
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_cluster_resolver.cc +361 -411
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.cc +819 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_override_host.h +67 -0
- data/src/core/ext/filters/client_channel/lb_policy/xds/xds_wrr_locality.cc +369 -0
- data/src/core/ext/filters/client_channel/local_subchannel_pool.h +21 -21
- data/src/core/ext/filters/client_channel/resolver/binder/binder_resolver.cc +15 -18
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/dns_resolver_ares.cc +452 -175
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver.h +42 -43
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_posix.cc +22 -23
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_ev_driver_windows.cc +88 -83
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.cc +276 -202
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper.h +69 -57
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_posix.cc +18 -18
- data/src/core/ext/filters/client_channel/resolver/dns/c_ares/grpc_ares_wrapper_windows.cc +18 -18
- data/src/core/ext/filters/client_channel/resolver/dns/dns_resolver_selection.h +20 -21
- data/src/core/ext/filters/client_channel/resolver/dns/native/dns_resolver.cc +32 -23
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.cc +9 -21
- data/src/core/ext/filters/client_channel/resolver/fake/fake_resolver.h +15 -4
- data/src/core/ext/filters/client_channel/resolver/google_c2p/google_c2p_resolver.cc +83 -57
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.cc +123 -67
- data/src/core/ext/filters/client_channel/resolver/polling_resolver.h +25 -17
- data/src/core/ext/filters/client_channel/resolver/sockaddr/sockaddr_resolver.cc +9 -19
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.cc +293 -286
- data/src/core/ext/filters/client_channel/resolver/xds/xds_resolver.h +6 -4
- data/src/core/ext/filters/client_channel/retry_filter.cc +135 -172
- data/src/core/ext/filters/client_channel/retry_filter.h +4 -3
- data/src/core/ext/filters/client_channel/retry_service_config.cc +193 -224
- data/src/core/ext/filters/client_channel/retry_service_config.h +22 -28
- data/src/core/ext/filters/client_channel/retry_throttle.cc +27 -29
- data/src/core/ext/filters/client_channel/retry_throttle.h +29 -28
- data/src/core/ext/filters/client_channel/service_config_channel_arg_filter.cc +13 -13
- data/src/core/ext/filters/client_channel/subchannel.cc +275 -323
- data/src/core/ext/filters/client_channel/subchannel.h +45 -75
- data/src/core/ext/filters/client_channel/subchannel_interface_internal.h +4 -4
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.cc +6 -76
- data/src/core/ext/filters/client_channel/subchannel_pool_interface.h +37 -46
- data/src/core/ext/filters/client_channel/subchannel_stream_client.cc +23 -111
- data/src/core/ext/filters/client_channel/subchannel_stream_client.h +8 -12
- data/src/core/ext/filters/deadline/deadline_filter.cc +90 -76
- data/src/core/ext/filters/deadline/deadline_filter.h +14 -12
- data/src/core/ext/filters/fault_injection/fault_injection_filter.cc +43 -18
- data/src/core/ext/filters/fault_injection/fault_injection_filter.h +20 -11
- data/src/core/ext/filters/fault_injection/fault_injection_service_config_parser.cc +118 -0
- data/src/core/ext/filters/fault_injection/{service_config_parser.h → fault_injection_service_config_parser.h} +34 -13
- data/src/core/ext/filters/http/client/http_client_filter.cc +61 -48
- data/src/core/ext/filters/http/client/http_client_filter.h +29 -22
- data/src/core/ext/filters/http/client_authority_filter.cc +28 -28
- data/src/core/ext/filters/http/client_authority_filter.h +27 -24
- data/src/core/ext/filters/http/http_filters_plugin.cc +43 -51
- data/src/core/ext/filters/http/message_compress/compression_filter.cc +307 -0
- data/src/core/ext/filters/http/message_compress/compression_filter.h +139 -0
- data/src/core/ext/filters/http/server/http_server_filter.cc +63 -56
- data/src/core/ext/filters/http/server/http_server_filter.h +28 -23
- data/src/core/ext/filters/message_size/message_size_filter.cc +109 -123
- data/src/core/ext/filters/message_size/message_size_filter.h +34 -17
- data/src/core/ext/filters/rbac/rbac_filter.cc +28 -16
- data/src/core/ext/filters/rbac/rbac_filter.h +11 -3
- data/src/core/ext/filters/rbac/rbac_service_config_parser.cc +736 -523
- data/src/core/ext/filters/rbac/rbac_service_config_parser.h +18 -7
- data/src/core/ext/filters/server_config_selector/server_config_selector.h +20 -8
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.cc +28 -12
- data/src/core/ext/filters/server_config_selector/server_config_selector_filter.h +4 -3
- data/src/core/ext/filters/stateful_session/stateful_session_filter.cc +219 -0
- data/src/core/ext/filters/stateful_session/stateful_session_filter.h +66 -0
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.cc +82 -0
- data/src/core/ext/filters/stateful_session/stateful_session_service_config_parser.h +93 -0
- data/src/core/ext/transport/chttp2/alpn/alpn.cc +18 -18
- data/src/core/ext/transport/chttp2/alpn/alpn.h +24 -24
- data/src/core/ext/transport/chttp2/client/chttp2_connector.cc +109 -131
- data/src/core/ext/transport/chttp2/client/chttp2_connector.h +30 -24
- data/src/core/ext/transport/chttp2/server/chttp2_server.cc +167 -203
- data/src/core/ext/transport/chttp2/server/chttp2_server.h +25 -27
- data/src/core/ext/transport/chttp2/transport/bin_decoder.cc +22 -22
- data/src/core/ext/transport/chttp2/transport/bin_decoder.h +33 -33
- data/src/core/ext/transport/chttp2/transport/bin_encoder.cc +30 -30
- data/src/core/ext/transport/chttp2/transport/bin_encoder.h +29 -29
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.cc +714 -1060
- data/src/core/ext/transport/chttp2/transport/chttp2_transport.h +24 -24
- data/src/core/ext/transport/chttp2/transport/context_list.cc +19 -19
- data/src/core/ext/transport/chttp2/transport/context_list.h +28 -28
- data/src/core/ext/transport/chttp2/transport/decode_huff.cc +251 -0
- data/src/core/ext/transport/chttp2/transport/decode_huff.h +971 -0
- data/src/core/ext/transport/chttp2/transport/flow_control.cc +347 -301
- data/src/core/ext/transport/chttp2/transport/flow_control.h +245 -326
- data/src/core/ext/transport/chttp2/transport/frame.h +21 -21
- data/src/core/ext/transport/chttp2/transport/frame_data.cc +84 -239
- data/src/core/ext/transport/chttp2/transport/frame_data.h +36 -62
- data/src/core/ext/transport/chttp2/transport/frame_goaway.cc +38 -36
- data/src/core/ext/transport/chttp2/transport/frame_goaway.h +20 -20
- data/src/core/ext/transport/chttp2/transport/frame_ping.cc +27 -26
- data/src/core/ext/transport/chttp2/transport/frame_ping.h +22 -22
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.cc +30 -25
- data/src/core/ext/transport/chttp2/transport/frame_rst_stream.h +21 -21
- data/src/core/ext/transport/chttp2/transport/frame_settings.cc +35 -77
- data/src/core/ext/transport/chttp2/transport/frame_settings.h +22 -22
- data/src/core/ext/transport/chttp2/transport/frame_window_update.cc +31 -33
- data/src/core/ext/transport/chttp2/transport/frame_window_update.h +21 -21
- data/src/core/ext/transport/chttp2/transport/hpack_constants.h +10 -4
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.cc +159 -208
- data/src/core/ext/transport/chttp2/transport/hpack_encoder.h +46 -61
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.cc +2 -2
- data/src/core/ext/transport/chttp2/transport/hpack_encoder_table.h +11 -5
- data/src/core/ext/transport/chttp2/transport/hpack_parser.cc +96 -542
- data/src/core/ext/transport/chttp2/transport/hpack_parser.h +23 -23
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.cc +28 -38
- data/src/core/ext/transport/chttp2/transport/hpack_parser_table.h +32 -27
- data/src/core/ext/transport/chttp2/transport/http2_settings.cc +21 -19
- data/src/core/ext/transport/chttp2/transport/http2_settings.h +39 -37
- data/src/core/ext/transport/chttp2/transport/http_trace.cc +19 -0
- data/src/core/ext/transport/chttp2/transport/http_trace.h +24 -0
- data/src/core/ext/transport/chttp2/transport/huffsyms.cc +20 -20
- data/src/core/ext/transport/chttp2/transport/huffsyms.h +21 -21
- data/src/core/ext/transport/chttp2/transport/internal.h +225 -296
- data/src/core/ext/transport/chttp2/transport/parsing.cc +333 -129
- data/src/core/ext/transport/chttp2/transport/stream_lists.cc +19 -23
- data/src/core/ext/transport/chttp2/transport/stream_map.cc +23 -23
- data/src/core/ext/transport/chttp2/transport/stream_map.h +33 -33
- data/src/core/ext/transport/chttp2/transport/varint.cc +19 -20
- data/src/core/ext/transport/chttp2/transport/varint.h +37 -34
- data/src/core/ext/transport/chttp2/transport/writing.cc +85 -94
- data/src/core/ext/transport/inproc/inproc_plugin.cc +17 -18
- data/src/core/ext/transport/inproc/inproc_transport.cc +223 -273
- data/src/core/ext/transport/inproc/inproc_transport.h +23 -21
- data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/admin/v3/certs.upb.h +30 -10
- data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.c +6 -5
- data/src/core/ext/upb-generated/envoy/admin/v3/clusters.upb.h +33 -8
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.c +8 -327
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump.upb.h +83 -1723
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.c +388 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/config_dump_shared.upb.h +1953 -0
- data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/admin/v3/init_dump.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.c +6 -4
- data/src/core/ext/upb-generated/envoy/admin/v3/listeners.upb.h +33 -4
- data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/admin/v3/memory.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/admin/v3/metrics.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/admin/v3/mutex_stats.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/admin/v3/server_info.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/admin/v3/tap.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/annotations/resource.upb.h +7 -3
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.c +14 -14
- data/src/core/ext/upb-generated/envoy/config/accesslog/v3/accesslog.upb.h +90 -30
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.c +25 -19
- data/src/core/ext/upb-generated/envoy/config/bootstrap/v3/bootstrap.upb.h +168 -34
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/circuit_breaker.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.c +35 -43
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/cluster.upb.h +195 -116
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/filter.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/cluster/v3/outlier_detection.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.c +11 -11
- data/src/core/ext/upb-generated/envoy/config/common/matcher/v3/matcher.upb.h +84 -28
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.c +35 -12
- data/src/core/ext/upb-generated/envoy/config/core/v3/address.upb.h +179 -14
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/backoff.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.c +25 -23
- data/src/core/ext/upb-generated/envoy/config/core/v3/base.upb.h +156 -48
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/config/core/v3/config_source.upb.h +42 -14
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/event_service_config.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/extension.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_method_list.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.c +12 -12
- data/src/core/ext/upb-generated/envoy/config/core/v3/grpc_service.upb.h +78 -26
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.c +23 -20
- data/src/core/ext/upb-generated/envoy/config/core/v3/health_check.upb.h +137 -69
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/http_uri.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.c +23 -21
- data/src/core/ext/upb-generated/envoy/config/core/v3/protocol.upb.h +132 -44
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/proxy_protocol.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/resolver.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.c +17 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/socket_option.upb.h +67 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/substitution_format_string.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/core/v3/udp_socket_config.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.c +15 -9
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/endpoint_components.upb.h +73 -18
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/config/endpoint/v3/load_report.upb.h +30 -10
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/listener/v3/api_listener.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.c +39 -13
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener.upb.h +194 -15
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/config/listener/v3/listener_components.upb.h +42 -14
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.c +5 -3
- data/src/core/ext/upb-generated/envoy/config/listener/v3/quic_config.upb.h +28 -2
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.c +7 -4
- data/src/core/ext/upb-generated/envoy/config/listener/v3/udp_listener_config.upb.h +36 -4
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/metrics_service.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.c +6 -6
- data/src/core/ext/upb-generated/envoy/config/metrics/v3/stats.upb.h +48 -16
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.c +8 -8
- data/src/core/ext/upb-generated/envoy/config/overload/v3/overload.upb.h +54 -18
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.c +26 -11
- data/src/core/ext/upb-generated/envoy/config/rbac/v3/rbac.upb.h +124 -14
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.c +19 -15
- data/src/core/ext/upb-generated/envoy/config/route/v3/route.upb.h +78 -69
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.c +168 -82
- data/src/core/ext/upb-generated/envoy/config/route/v3/route_components.upb.h +887 -166
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/config/route/v3/scoped_route.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.c +34 -15
- data/src/core/ext/upb-generated/envoy/config/tap/v3/common.upb.h +161 -22
- data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.c +3 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/datadog.upb.h +15 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/trace/v3/dynamic_ot.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/http_tracer.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/trace/v3/lightstep.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opencensus.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.c +47 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/opentelemetry.upb.h +107 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/config/trace/v3/service.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/skywalking.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.c +1 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/trace.upb.h +1 -0
- data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/config/trace/v3/xray.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.c +7 -6
- data/src/core/ext/upb-generated/envoy/config/trace/v3/zipkin.upb.h +27 -14
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/extensions/clusters/aggregate/v3/cluster.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/extensions/filters/common/fault/v3/fault.upb.h +30 -10
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/fault/v3/fault.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.c +11 -4
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/rbac/v3/rbac.upb.h +58 -4
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.c +6 -3
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/router/v3/router.upb.h +29 -2
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.c +62 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upb.h +179 -0
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.c +38 -27
- data/src/core/ext/upb-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h +207 -52
- data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.c +46 -0
- data/src/core/ext/upb-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upb.h +98 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.c +54 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/client_side_weighted_round_robin/v3/client_side_weighted_round_robin.upb.h +188 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.c +111 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/common/v3/common.upb.h +444 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.c +56 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/ring_hash/v3/ring_hash.upb.h +192 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.c +46 -0
- data/src/core/ext/upb-generated/envoy/extensions/load_balancing_policies/wrr_locality/v3/wrr_locality.upb.h +98 -0
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.c +10 -8
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/common.upb.h +66 -14
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/secret.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.c +13 -11
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls.upb.h +73 -23
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/extensions/transport_sockets/tls/v3/tls_spiffe_validator_config.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/ads.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.c +133 -16
- data/src/core/ext/upb-generated/envoy/service/discovery/v3/discovery.upb.h +656 -12
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/service/load_stats/v3/lrs.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/service/status/v3/csds.upb.h +30 -10
- data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/http/v3/cookie.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.c +4 -4
- data/src/core/ext/upb-generated/envoy/type/http/v3/path_transformation.upb.h +24 -8
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.c +47 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/filter_state.upb.h +113 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.c +4 -4
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/http_inputs.upb.h +24 -8
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/metadata.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/node.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/number.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/path.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/regex.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.c +43 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/status_code_input.upb.h +114 -0
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/string.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/struct.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/type/matcher/v3/value.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.c +7 -7
- data/src/core/ext/upb-generated/envoy/type/metadata/v3/metadata.upb.h +42 -14
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.c +5 -5
- data/src/core/ext/upb-generated/envoy/type/tracing/v3/custom_tag.upb.h +30 -10
- data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.c +3 -3
- data/src/core/ext/upb-generated/envoy/type/v3/hash_policy.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/v3/http_status.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/type/v3/percent.upb.h +12 -4
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.c +2 -2
- data/src/core/ext/upb-generated/envoy/type/v3/range.upb.h +18 -6
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.c +63 -0
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_strategy.upb.h +202 -0
- data/src/core/ext/upb-generated/envoy/type/v3/ratelimit_unit.upb.h +3 -1
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.c +1 -1
- data/src/core/ext/upb-generated/envoy/type/v3/semantic_version.upb.h +6 -2
- data/src/core/ext/upb-generated/envoy/type/v3/token_bucket.upb.h +6 -2
- data/src/core/ext/upb-generated/google/api/annotations.upb.h +1 -1
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.c +11 -11
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/checked.upb.h +66 -22
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.c +9 -9
- data/src/core/ext/upb-generated/google/api/expr/v1alpha1/syntax.upb.h +72 -24
- data/src/core/ext/upb-generated/google/api/http.upb.c +3 -3
- data/src/core/ext/upb-generated/google/api/http.upb.h +18 -6
- data/src/core/ext/upb-generated/google/api/httpbody.upb.c +1 -1
- data/src/core/ext/upb-generated/google/api/httpbody.upb.h +6 -2
- data/src/core/ext/upb-generated/google/protobuf/any.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/any.upb.h +6 -2
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.c +44 -43
- data/src/core/ext/upb-generated/google/protobuf/descriptor.upb.h +177 -55
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/duration.upb.h +6 -2
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/empty.upb.h +6 -2
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.c +2 -2
- data/src/core/ext/upb-generated/google/protobuf/struct.upb.h +18 -6
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.c +1 -1
- data/src/core/ext/upb-generated/google/protobuf/timestamp.upb.h +6 -2
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.c +6 -6
- data/src/core/ext/upb-generated/google/protobuf/wrappers.upb.h +54 -18
- data/src/core/ext/upb-generated/google/rpc/status.upb.c +1 -1
- data/src/core/ext/upb-generated/google/rpc/status.upb.h +6 -2
- data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.c +2 -2
- data/src/core/ext/upb-generated/opencensus/proto/trace/v1/trace_config.upb.h +24 -8
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/altscontext.upb.h +6 -2
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.c +7 -7
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/handshaker.upb.h +60 -20
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.c +1 -1
- data/src/core/ext/upb-generated/src/proto/grpc/gcp/transport_security_common.upb.h +12 -4
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.c +2 -2
- data/src/core/ext/upb-generated/src/proto/grpc/health/v1/health.upb.h +12 -4
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.c +6 -6
- data/src/core/ext/upb-generated/src/proto/grpc/lb/v1/load_balancer.upb.h +54 -18
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.c +2 -2
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls.upb.h +12 -4
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.c +7 -7
- data/src/core/ext/upb-generated/src/proto/grpc/lookup/v1/rls_config.upb.h +42 -14
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.c +3 -3
- data/src/core/ext/upb-generated/udpa/annotations/migrate.upb.h +23 -11
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.c +1 -1
- data/src/core/ext/upb-generated/udpa/annotations/security.upb.h +7 -3
- data/src/core/ext/upb-generated/udpa/annotations/status.upb.h +7 -3
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.c +1 -1
- data/src/core/ext/upb-generated/udpa/annotations/versioning.upb.h +7 -3
- data/src/core/ext/upb-generated/validate/validate.upb.c +22 -22
- data/src/core/ext/upb-generated/validate/validate.upb.h +139 -47
- data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.c +3 -3
- data/src/core/ext/upb-generated/xds/annotations/v3/migrate.upb.h +23 -11
- data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/annotations/v3/security.upb.h +7 -3
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.c +3 -3
- data/src/core/ext/upb-generated/xds/annotations/v3/status.upb.h +27 -11
- data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/annotations/v3/versioning.upb.h +7 -3
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/authority.upb.h +6 -2
- data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.c +47 -0
- data/src/core/ext/upb-generated/xds/core/v3/cidr.upb.h +107 -0
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.c +2 -2
- data/src/core/ext/upb-generated/xds/core/v3/collection_entry.upb.h +12 -4
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/context_params.upb.h +6 -2
- data/src/core/ext/upb-generated/xds/core/v3/extension.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/extension.upb.h +6 -2
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/resource.upb.h +6 -2
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/resource_locator.upb.h +12 -4
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/core/v3/resource_name.upb.h +6 -2
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.c +3 -2
- data/src/core/ext/upb-generated/xds/data/orca/v3/orca_load_report.upb.h +15 -2
- data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.c +1 -2
- data/src/core/ext/upb-generated/xds/service/orca/v3/orca.upb.h +6 -2
- data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.c +46 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/cel.upb.h +98 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.c +62 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/domain.upb.h +174 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.c +36 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/http_inputs.upb.h +74 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.c +65 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/ip.upb.h +191 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.c +6 -6
- data/src/core/ext/upb-generated/xds/type/matcher/v3/matcher.upb.h +54 -18
- data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.c +127 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/range.upb.h +474 -0
- data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.c +2 -2
- data/src/core/ext/upb-generated/xds/type/matcher/v3/regex.upb.h +12 -4
- data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.c +1 -1
- data/src/core/ext/upb-generated/xds/type/matcher/v3/string.upb.h +12 -4
- data/src/core/ext/upb-generated/xds/type/v3/cel.upb.c +67 -0
- data/src/core/ext/upb-generated/xds/type/v3/cel.upb.h +214 -0
- data/src/core/ext/upb-generated/xds/type/v3/range.upb.c +64 -0
- data/src/core/ext/upb-generated/xds/type/v3/range.upb.h +208 -0
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.c +1 -2
- data/src/core/ext/upb-generated/xds/type/v3/typed_struct.upb.h +6 -2
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/clusters.upbdefs.c +54 -53
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.c +67 -274
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump.upbdefs.h +0 -85
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.c +277 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/config_dump_shared.upbdefs.h +125 -0
- data/src/core/ext/upbdefs-generated/envoy/admin/v3/listeners.upbdefs.c +14 -11
- data/src/core/ext/upbdefs-generated/envoy/config/accesslog/v3/accesslog.upbdefs.c +107 -107
- data/src/core/ext/upbdefs-generated/envoy/config/bootstrap/v3/bootstrap.upbdefs.c +199 -187
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.c +232 -222
- data/src/core/ext/upbdefs-generated/envoy/config/cluster/v3/cluster.upbdefs.h +0 -5
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.c +95 -75
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/address.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/base.upbdefs.c +187 -183
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/health_check.upbdefs.c +81 -75
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/protocol.upbdefs.c +190 -186
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.c +7 -3
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/socket_option.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/core/v3/substitution_format_string.upbdefs.c +16 -16
- data/src/core/ext/upbdefs-generated/envoy/config/endpoint/v3/endpoint_components.upbdefs.c +71 -66
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.c +164 -137
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/listener.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/quic_config.upbdefs.c +16 -12
- data/src/core/ext/upbdefs-generated/envoy/config/listener/v3/udp_listener_config.upbdefs.c +39 -31
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.c +140 -129
- data/src/core/ext/upbdefs-generated/envoy/config/rbac/v3/rbac.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.c +82 -74
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route.upbdefs.h +2 -2
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.c +740 -667
- data/src/core/ext/upbdefs-generated/envoy/config/route/v3/route_components.upbdefs.h +20 -0
- data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.c +150 -139
- data/src/core/ext/upbdefs-generated/envoy/config/tap/v3/common.upbdefs.h +5 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/datadog.upbdefs.c +16 -14
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.c +48 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/opentelemetry.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/trace.upbdefs.c +16 -12
- data/src/core/ext/upbdefs-generated/envoy/config/trace/v3/zipkin.upbdefs.c +20 -18
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/rbac/v3/rbac.upbdefs.c +46 -25
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/router/v3/router.upbdefs.c +53 -42
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.c +60 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/http/stateful_session/v3/stateful_session.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.c +485 -467
- data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.c +50 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/http/stateful_session/cookie/v3/cookie.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/common.upbdefs.c +21 -18
- data/src/core/ext/upbdefs-generated/envoy/extensions/transport_sockets/tls/v3/tls.upbdefs.c +149 -145
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.c +156 -84
- data/src/core/ext/upbdefs-generated/envoy/service/discovery/v3/discovery.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/service/status/v3/csds.upbdefs.c +113 -113
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.c +48 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/filter_state.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/regex.upbdefs.c +29 -28
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.c +40 -0
- data/src/core/ext/upbdefs-generated/envoy/type/matcher/v3/status_code_input.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.c +69 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_strategy.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/envoy/type/v3/ratelimit_unit.upbdefs.c +10 -9
- data/src/core/ext/upbdefs-generated/google/protobuf/descriptor.upbdefs.c +92 -90
- data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.c +45 -0
- data/src/core/ext/upbdefs-generated/xds/core/v3/cidr.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.c +43 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/cel.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.c +51 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/domain.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.c +36 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/http_inputs.upbdefs.h +35 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.c +55 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/ip.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/matcher.upbdefs.c +9 -9
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.c +71 -0
- data/src/core/ext/upbdefs-generated/xds/type/matcher/v3/range.upbdefs.h +60 -0
- data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.c +60 -0
- data/src/core/ext/upbdefs-generated/xds/type/v3/cel.upbdefs.h +40 -0
- data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.c +36 -0
- data/src/core/ext/upbdefs-generated/xds/type/v3/range.upbdefs.h +45 -0
- data/src/core/ext/upbdefs-generated/xds/type/v3/typed_struct.upbdefs.c +4 -7
- data/src/core/ext/xds/certificate_provider_store.cc +65 -3
- data/src/core/ext/xds/certificate_provider_store.h +21 -4
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.cc +17 -10
- data/src/core/ext/xds/file_watcher_certificate_provider_factory.h +12 -4
- data/src/core/ext/xds/upb_utils.h +3 -25
- data/src/core/ext/xds/xds_api.cc +90 -196
- data/src/core/ext/xds/xds_api.h +41 -39
- data/src/core/ext/xds/xds_bootstrap.cc +5 -537
- data/src/core/ext/xds/xds_bootstrap.h +41 -96
- data/src/core/ext/xds/xds_bootstrap_grpc.cc +362 -0
- data/src/core/ext/xds/xds_bootstrap_grpc.h +184 -0
- data/src/core/ext/xds/xds_certificate_provider.cc +31 -25
- data/src/core/ext/xds/xds_certificate_provider.h +28 -4
- data/src/core/ext/xds/xds_channel_args.h +3 -3
- data/src/core/ext/xds/xds_channel_stack_modifier.cc +15 -5
- data/src/core/ext/xds/xds_channel_stack_modifier.h +16 -4
- data/src/core/ext/xds/xds_client.cc +833 -1324
- data/src/core/ext/xds/xds_client.h +57 -61
- data/src/core/ext/xds/xds_client_grpc.cc +235 -0
- data/src/core/ext/xds/xds_client_grpc.h +79 -0
- data/src/core/ext/xds/xds_client_stats.cc +24 -25
- data/src/core/ext/xds/xds_client_stats.h +26 -24
- data/src/core/ext/xds/xds_cluster.cc +413 -245
- data/src/core/ext/xds/xds_cluster.h +66 -40
- data/src/core/ext/xds/xds_cluster_specifier_plugin.cc +67 -77
- data/src/core/ext/xds/xds_cluster_specifier_plugin.h +47 -29
- data/src/core/ext/xds/xds_common_types.cc +238 -123
- data/src/core/ext/xds/xds_common_types.h +29 -16
- data/src/core/ext/xds/xds_endpoint.cc +265 -162
- data/src/core/ext/xds/xds_endpoint.h +19 -15
- data/src/core/ext/xds/xds_health_status.cc +80 -0
- data/src/core/ext/xds/xds_health_status.h +109 -0
- data/src/core/ext/xds/xds_http_fault_filter.cc +66 -57
- data/src/core/ext/xds/xds_http_fault_filter.h +19 -25
- data/src/core/ext/xds/xds_http_filters.cc +70 -71
- data/src/core/ext/xds/xds_http_filters.h +73 -25
- data/src/core/ext/xds/xds_http_rbac_filter.cc +168 -225
- data/src/core/ext/xds/xds_http_rbac_filter.h +22 -18
- data/src/core/ext/xds/xds_http_stateful_session_filter.cc +218 -0
- data/src/core/ext/xds/xds_http_stateful_session_filter.h +58 -0
- data/src/core/ext/xds/xds_lb_policy_registry.cc +334 -0
- data/src/core/ext/xds/xds_lb_policy_registry.h +71 -0
- data/src/core/ext/xds/xds_listener.cc +557 -475
- data/src/core/ext/xds/xds_listener.h +57 -51
- data/src/core/ext/xds/xds_resource_type.h +28 -22
- data/src/core/ext/xds/xds_resource_type_impl.h +18 -17
- data/src/core/ext/xds/xds_route_config.cc +592 -570
- data/src/core/ext/xds/xds_route_config.h +74 -40
- data/src/core/ext/xds/xds_routing.cc +21 -7
- data/src/core/ext/xds/xds_routing.h +17 -12
- data/src/core/ext/xds/xds_server_config_fetcher.cc +227 -179
- data/src/core/ext/xds/xds_transport.h +86 -0
- data/src/core/ext/xds/xds_transport_grpc.cc +356 -0
- data/src/core/ext/xds/xds_transport_grpc.h +135 -0
- data/src/core/lib/address_utils/parse_address.cc +52 -52
- data/src/core/lib/address_utils/parse_address.h +46 -42
- data/src/core/lib/address_utils/sockaddr_utils.cc +38 -35
- data/src/core/lib/address_utils/sockaddr_utils.h +38 -36
- data/src/core/lib/avl/avl.h +54 -32
- data/src/core/lib/backoff/backoff.cc +19 -21
- data/src/core/lib/backoff/backoff.h +21 -21
- data/src/core/lib/channel/call_finalization.h +4 -6
- data/src/core/lib/channel/call_tracer.h +17 -8
- data/src/core/lib/channel/channel_args.cc +108 -39
- data/src/core/lib/channel/channel_args.h +285 -111
- data/src/core/lib/channel/channel_args_preconditioning.cc +1 -0
- data/src/core/lib/channel/channel_args_preconditioning.h +4 -4
- data/src/core/lib/channel/channel_fwd.h +26 -0
- data/src/core/lib/channel/channel_stack.cc +60 -58
- data/src/core/lib/channel/channel_stack.h +149 -146
- data/src/core/lib/channel/channel_stack_builder.cc +21 -24
- data/src/core/lib/channel/channel_stack_builder.h +19 -14
- data/src/core/lib/channel/channel_stack_builder_impl.cc +55 -26
- data/src/core/lib/channel/channel_stack_builder_impl.h +6 -3
- data/src/core/lib/channel/channel_trace.cc +24 -26
- data/src/core/lib/channel/channel_trace.h +22 -22
- data/src/core/lib/channel/channelz.cc +44 -54
- data/src/core/lib/channel/channelz.h +40 -32
- data/src/core/lib/channel/channelz_registry.cc +21 -22
- data/src/core/lib/channel/channelz_registry.h +21 -21
- data/src/core/lib/channel/connected_channel.cc +1264 -65
- data/src/core/lib/channel/connected_channel.h +21 -24
- data/src/core/lib/channel/context.h +25 -21
- data/src/core/lib/channel/promise_based_filter.cc +1544 -280
- data/src/core/lib/channel/promise_based_filter.h +466 -99
- data/src/core/lib/channel/status_util.cc +62 -17
- data/src/core/lib/channel/status_util.h +39 -22
- data/src/core/lib/compression/compression.cc +24 -19
- data/src/core/lib/compression/compression_internal.cc +43 -53
- data/src/core/lib/compression/compression_internal.h +27 -26
- data/src/core/lib/compression/message_compress.cc +28 -26
- data/src/core/lib/compression/message_compress.h +28 -29
- data/src/core/lib/config/core_configuration.cc +5 -1
- data/src/core/lib/config/core_configuration.h +84 -38
- data/src/core/lib/debug/event_log.cc +88 -0
- data/src/core/lib/debug/event_log.h +81 -0
- data/src/core/lib/debug/histogram_view.cc +69 -0
- data/src/core/lib/debug/histogram_view.h +37 -0
- data/src/core/lib/debug/stats.cc +48 -152
- data/src/core/lib/debug/stats.h +50 -57
- data/src/core/lib/debug/stats_data.cc +302 -645
- data/src/core/lib/debug/stats_data.h +293 -545
- data/src/core/lib/debug/trace.cc +18 -20
- data/src/core/lib/debug/trace.h +27 -48
- data/src/core/lib/event_engine/channel_args_endpoint_config.cc +15 -18
- data/src/core/lib/event_engine/channel_args_endpoint_config.h +16 -10
- data/src/core/lib/event_engine/common_closures.h +71 -0
- data/src/core/lib/event_engine/default_event_engine.cc +99 -0
- data/src/core/lib/event_engine/default_event_engine.h +73 -0
- data/src/core/lib/event_engine/default_event_engine_factory.cc +20 -5
- data/src/core/lib/event_engine/{event_engine_factory.h → default_event_engine_factory.h} +4 -12
- data/src/core/lib/event_engine/event_engine.cc +3 -40
- data/src/core/lib/event_engine/executor/executor.h +38 -0
- data/src/core/lib/event_engine/forkable.cc +106 -0
- data/src/core/lib/event_engine/forkable.h +61 -0
- data/src/core/lib/event_engine/handle_containers.h +10 -3
- data/src/core/lib/event_engine/memory_allocator.cc +1 -1
- data/src/core/lib/event_engine/poller.h +62 -0
- data/src/core/lib/event_engine/posix.h +158 -0
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.cc +642 -0
- data/src/core/lib/event_engine/posix_engine/ev_epoll1_linux.h +139 -0
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.cc +899 -0
- data/src/core/lib/event_engine/posix_engine/ev_poll_posix.h +97 -0
- data/src/core/lib/event_engine/posix_engine/event_poller.h +111 -0
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.cc +74 -0
- data/src/core/lib/event_engine/posix_engine/event_poller_posix_default.h +33 -0
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.cc +77 -0
- data/src/core/lib/event_engine/posix_engine/internal_errqueue.h +179 -0
- data/src/core/lib/event_engine/posix_engine/lockfree_event.cc +265 -0
- data/src/core/lib/event_engine/posix_engine/lockfree_event.h +73 -0
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.cc +1305 -0
- data/src/core/lib/event_engine/posix_engine/posix_endpoint.h +717 -0
- data/src/core/lib/event_engine/posix_engine/posix_engine.cc +640 -0
- data/src/core/lib/event_engine/posix_engine/posix_engine.h +259 -0
- data/src/core/lib/event_engine/posix_engine/posix_engine_closure.h +80 -0
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.cc +289 -0
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener.h +279 -0
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.cc +379 -0
- data/src/core/lib/event_engine/posix_engine/posix_engine_listener_utils.h +91 -0
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.cc +853 -0
- data/src/core/lib/event_engine/posix_engine/tcp_socket_utils.h +316 -0
- data/src/core/lib/event_engine/posix_engine/timer.cc +311 -0
- data/src/core/lib/event_engine/posix_engine/timer.h +194 -0
- data/src/core/lib/event_engine/posix_engine/timer_heap.cc +107 -0
- data/src/core/lib/event_engine/posix_engine/timer_heap.h +56 -0
- data/src/core/lib/event_engine/posix_engine/timer_manager.cc +173 -0
- data/src/core/lib/event_engine/posix_engine/timer_manager.h +114 -0
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.cc +332 -0
- data/src/core/lib/event_engine/posix_engine/traced_buffer_list.h +185 -0
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.cc +127 -0
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_eventfd.h +45 -0
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.cc +150 -0
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_pipe.h +45 -0
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix.h +76 -0
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.cc +67 -0
- data/src/core/lib/event_engine/posix_engine/wakeup_fd_posix_default.h +37 -0
- data/src/core/lib/event_engine/resolved_address.cc +19 -0
- data/src/core/lib/event_engine/resolved_address_internal.h +34 -0
- data/src/core/lib/event_engine/shim.cc +56 -0
- data/src/core/lib/event_engine/shim.h +33 -0
- data/src/core/lib/event_engine/slice.cc +8 -7
- data/src/core/lib/event_engine/slice_buffer.cc +2 -2
- data/src/core/lib/event_engine/tcp_socket_utils.cc +389 -0
- data/src/core/lib/event_engine/tcp_socket_utils.h +90 -0
- data/src/core/lib/event_engine/thread_local.cc +29 -0
- data/src/core/lib/event_engine/thread_local.h +32 -0
- data/src/core/lib/event_engine/thread_pool.cc +253 -0
- data/src/core/lib/event_engine/thread_pool.h +141 -0
- data/src/core/lib/event_engine/time_util.cc +30 -0
- data/src/core/lib/event_engine/time_util.h +32 -0
- data/src/core/lib/event_engine/trace.cc +6 -0
- data/src/core/lib/event_engine/trace.h +16 -3
- data/src/core/lib/event_engine/utils.cc +44 -0
- data/src/core/lib/event_engine/utils.h +44 -0
- data/src/core/lib/event_engine/windows/iocp.cc +140 -0
- data/src/core/lib/event_engine/windows/iocp.h +69 -0
- data/src/core/lib/event_engine/windows/win_socket.cc +219 -0
- data/src/core/lib/event_engine/windows/win_socket.h +129 -0
- data/src/core/lib/event_engine/windows/windows_endpoint.cc +331 -0
- data/src/core/lib/event_engine/windows/windows_endpoint.h +103 -0
- data/src/core/lib/event_engine/windows/windows_engine.cc +388 -0
- data/src/core/lib/event_engine/windows/windows_engine.h +163 -0
- data/src/core/lib/experiments/config.cc +161 -0
- data/src/core/lib/experiments/config.h +53 -0
- data/src/core/lib/experiments/experiments.cc +81 -0
- data/src/core/lib/experiments/experiments.h +117 -0
- data/src/core/lib/gpr/alloc.cc +19 -25
- data/src/core/lib/gpr/alloc.h +20 -20
- data/src/core/lib/gpr/atm.cc +17 -17
- data/src/core/lib/gpr/cpu_iphone.cc +24 -24
- data/src/core/lib/gpr/cpu_linux.cc +28 -23
- data/src/core/lib/gpr/cpu_posix.cc +23 -22
- data/src/core/lib/gpr/cpu_windows.cc +20 -18
- data/src/core/lib/gpr/log.cc +27 -19
- data/src/core/lib/gpr/log_android.cc +22 -20
- data/src/core/lib/gpr/log_linux.cc +24 -24
- data/src/core/lib/gpr/log_posix.cc +20 -19
- data/src/core/lib/gpr/log_windows.cc +25 -25
- data/src/core/lib/gpr/spinlock.h +20 -20
- data/src/core/lib/gpr/string.cc +25 -24
- data/src/core/lib/gpr/string.h +61 -61
- data/src/core/lib/gpr/string_posix.cc +24 -24
- data/src/core/lib/gpr/string_util_windows.cc +25 -52
- data/src/core/lib/gpr/string_windows.cc +24 -24
- data/src/core/lib/gpr/sync.cc +25 -25
- data/src/core/lib/gpr/sync_abseil.cc +36 -40
- data/src/core/lib/gpr/sync_posix.cc +22 -34
- data/src/core/lib/gpr/sync_windows.cc +29 -27
- data/src/core/lib/gpr/time.cc +34 -30
- data/src/core/lib/gpr/time_posix.cc +41 -45
- data/src/core/lib/gpr/time_precise.cc +22 -22
- data/src/core/lib/gpr/time_precise.h +21 -22
- data/src/core/lib/gpr/time_windows.cc +35 -29
- data/src/core/lib/gpr/tmpfile.h +24 -24
- data/src/core/lib/gpr/tmpfile_msys.cc +21 -20
- data/src/core/lib/gpr/tmpfile_posix.cc +22 -20
- data/src/core/lib/gpr/tmpfile_windows.cc +28 -29
- data/src/core/lib/gpr/useful.h +83 -30
- data/src/core/lib/gpr/wrap_memcpy.cc +23 -23
- data/src/core/lib/gprpp/atomic_utils.h +20 -20
- data/src/core/lib/gprpp/bitset.h +30 -16
- data/src/core/lib/gprpp/chunked_vector.h +3 -3
- data/src/core/lib/gprpp/construct_destruct.h +3 -3
- data/src/core/lib/gprpp/cpp_impl_of.h +3 -3
- data/src/core/{ext/xds/xds_resource_type.cc → lib/gprpp/crash.cc} +12 -12
- data/src/core/lib/gprpp/crash.h +34 -0
- data/src/core/lib/gprpp/debug_location.h +60 -31
- data/src/core/lib/gprpp/dual_ref_counted.h +3 -3
- data/src/core/lib/gprpp/env.h +53 -0
- data/src/core/lib/gprpp/env_linux.cc +80 -0
- data/src/core/lib/gprpp/env_posix.cc +47 -0
- data/src/core/lib/gprpp/env_windows.cc +56 -0
- data/src/core/lib/gprpp/examine_stack.cc +17 -17
- data/src/core/lib/gprpp/examine_stack.h +21 -21
- data/src/core/lib/gprpp/fork.cc +56 -48
- data/src/core/lib/gprpp/fork.h +29 -35
- data/src/core/lib/gprpp/global_config.h +20 -20
- data/src/core/lib/gprpp/global_config_custom.h +20 -20
- data/src/core/lib/gprpp/global_config_env.cc +25 -23
- data/src/core/lib/gprpp/global_config_env.h +26 -26
- data/src/core/lib/gprpp/global_config_generic.h +21 -21
- data/src/core/lib/gprpp/host_port.cc +28 -26
- data/src/core/lib/gprpp/host_port.h +32 -31
- data/src/core/lib/gprpp/load_file.cc +75 -0
- data/src/core/lib/gprpp/load_file.h +33 -0
- data/src/core/lib/gprpp/manual_constructor.h +21 -88
- data/src/core/lib/gprpp/match.h +3 -3
- data/src/core/lib/gprpp/memory.h +21 -21
- data/src/core/lib/gprpp/mpscq.cc +17 -17
- data/src/core/lib/gprpp/mpscq.h +21 -21
- data/src/core/lib/gprpp/no_destruct.h +95 -0
- data/src/core/lib/gprpp/notification.h +67 -0
- data/src/core/lib/gprpp/orphanable.h +21 -21
- data/src/core/lib/gprpp/overload.h +3 -3
- data/src/core/lib/gprpp/packed_table.h +40 -0
- data/src/core/lib/gprpp/per_cpu.h +46 -0
- data/src/core/lib/gprpp/ref_counted.h +21 -21
- data/src/core/lib/gprpp/ref_counted_ptr.h +41 -54
- data/src/core/lib/gprpp/single_set_ptr.h +3 -3
- data/src/core/lib/gprpp/sorted_pack.h +98 -0
- data/src/core/lib/gprpp/stat.h +3 -3
- data/src/core/lib/gprpp/stat_posix.cc +5 -4
- data/src/core/lib/gprpp/stat_windows.cc +4 -2
- data/src/core/lib/gprpp/status_helper.cc +49 -33
- data/src/core/lib/gprpp/status_helper.h +9 -5
- data/src/core/lib/gprpp/strerror.cc +43 -0
- data/src/core/lib/gprpp/strerror.h +29 -0
- data/src/core/lib/gprpp/sync.h +23 -23
- data/src/core/lib/gprpp/table.h +12 -4
- data/src/core/lib/gprpp/tchar.cc +49 -0
- data/src/core/lib/gprpp/tchar.h +33 -0
- data/src/core/lib/gprpp/thd.h +23 -23
- data/src/core/lib/gprpp/thd_posix.cc +30 -31
- data/src/core/lib/gprpp/thd_windows.cc +26 -26
- data/src/core/lib/gprpp/time.cc +44 -9
- data/src/core/lib/gprpp/time.h +73 -4
- data/src/core/lib/gprpp/time_averaged_stats.cc +60 -0
- data/src/core/lib/gprpp/time_averaged_stats.h +79 -0
- data/src/core/lib/gprpp/time_util.h +4 -4
- data/src/core/lib/gprpp/unique_type_name.h +21 -21
- data/src/core/lib/gprpp/validation_errors.cc +61 -0
- data/src/core/lib/gprpp/validation_errors.h +127 -0
- data/src/core/lib/{iomgr → gprpp}/work_serializer.cc +34 -18
- data/src/core/lib/{iomgr → gprpp}/work_serializer.h +21 -28
- data/src/core/lib/handshaker/proxy_mapper.h +53 -0
- data/src/core/lib/handshaker/proxy_mapper_registry.cc +71 -0
- data/src/core/lib/handshaker/proxy_mapper_registry.h +75 -0
- data/src/core/lib/http/format_request.cc +24 -22
- data/src/core/lib/http/format_request.h +21 -21
- data/src/core/lib/http/httpcli.cc +79 -88
- data/src/core/lib/http/httpcli.h +47 -31
- data/src/core/lib/http/httpcli_security_connector.cc +47 -38
- data/src/core/lib/http/httpcli_ssl_credentials.h +6 -4
- data/src/core/lib/http/parser.cc +78 -90
- data/src/core/lib/http/parser.h +38 -35
- data/src/core/lib/iomgr/block_annotate.h +23 -23
- data/src/core/lib/iomgr/buffer_list.cc +156 -136
- data/src/core/lib/iomgr/buffer_list.h +123 -101
- data/src/core/lib/iomgr/call_combiner.cc +32 -64
- data/src/core/lib/iomgr/call_combiner.h +24 -25
- data/src/core/lib/iomgr/cfstream_handle.cc +33 -36
- data/src/core/lib/iomgr/cfstream_handle.h +25 -25
- data/src/core/lib/iomgr/closure.cc +27 -0
- data/src/core/lib/iomgr/closure.h +95 -58
- data/src/core/lib/iomgr/combiner.cc +20 -39
- data/src/core/lib/iomgr/combiner.h +20 -20
- data/src/core/lib/iomgr/dualstack_socket_posix.cc +21 -21
- data/src/core/lib/iomgr/dynamic_annotations.h +22 -22
- data/src/core/lib/iomgr/endpoint.cc +17 -17
- data/src/core/lib/iomgr/endpoint.h +49 -49
- data/src/core/lib/iomgr/endpoint_cfstream.cc +44 -43
- data/src/core/lib/iomgr/endpoint_cfstream.h +32 -32
- data/src/core/lib/iomgr/endpoint_pair.h +20 -20
- data/src/core/lib/iomgr/endpoint_pair_posix.cc +34 -28
- data/src/core/lib/iomgr/endpoint_pair_windows.cc +30 -21
- data/src/core/lib/iomgr/error.cc +51 -834
- data/src/core/lib/iomgr/error.h +45 -317
- data/src/core/lib/iomgr/error_cfstream.cc +18 -23
- data/src/core/lib/iomgr/error_cfstream.h +21 -21
- data/src/core/lib/iomgr/ev_apple.cc +21 -21
- data/src/core/lib/iomgr/ev_apple.h +21 -21
- data/src/core/lib/iomgr/ev_epoll1_linux.cc +263 -248
- data/src/core/lib/iomgr/ev_epoll1_linux.h +21 -21
- data/src/core/lib/iomgr/ev_poll_posix.cc +296 -271
- data/src/core/lib/iomgr/ev_poll_posix.h +22 -22
- data/src/core/lib/iomgr/ev_posix.cc +87 -117
- data/src/core/lib/iomgr/ev_posix.h +93 -87
- data/src/core/lib/iomgr/ev_windows.cc +18 -18
- data/src/core/lib/iomgr/event_engine_shims/closure.cc +62 -0
- data/src/core/lib/iomgr/event_engine_shims/closure.h +39 -0
- data/src/core/lib/iomgr/event_engine_shims/endpoint.cc +430 -0
- data/src/core/lib/iomgr/event_engine_shims/endpoint.h +43 -0
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.cc +91 -0
- data/src/core/lib/iomgr/event_engine_shims/tcp_client.h +44 -0
- data/src/core/lib/iomgr/exec_ctx.cc +34 -56
- data/src/core/lib/iomgr/exec_ctx.h +151 -175
- data/src/core/lib/iomgr/executor.cc +21 -31
- data/src/core/lib/iomgr/executor.h +27 -30
- data/src/core/lib/iomgr/fork_posix.cc +30 -27
- data/src/core/lib/iomgr/fork_windows.cc +21 -21
- data/src/core/lib/iomgr/gethostname.h +20 -20
- data/src/core/lib/iomgr/gethostname_fallback.cc +17 -17
- data/src/core/lib/iomgr/gethostname_host_name_max.cc +17 -17
- data/src/core/lib/iomgr/gethostname_sysconf.cc +17 -17
- data/src/core/lib/iomgr/grpc_if_nametoindex.h +22 -22
- data/src/core/lib/iomgr/grpc_if_nametoindex_posix.cc +20 -19
- data/src/core/lib/iomgr/grpc_if_nametoindex_unsupported.cc +20 -19
- data/src/core/lib/iomgr/internal_errqueue.cc +4 -2
- data/src/core/lib/iomgr/internal_errqueue.h +83 -83
- data/src/core/lib/iomgr/iocp_windows.cc +23 -23
- data/src/core/lib/iomgr/iocp_windows.h +21 -21
- data/src/core/lib/iomgr/iomgr.cc +25 -19
- data/src/core/lib/iomgr/iomgr.h +35 -35
- data/src/core/lib/iomgr/iomgr_fwd.h +4 -3
- data/src/core/lib/iomgr/iomgr_internal.cc +17 -17
- data/src/core/lib/iomgr/iomgr_internal.h +28 -28
- data/src/core/lib/iomgr/iomgr_posix.cc +21 -20
- data/src/core/lib/iomgr/iomgr_posix_cfstream.cc +21 -19
- data/src/core/lib/iomgr/iomgr_windows.cc +24 -22
- data/src/core/lib/iomgr/load_file.cc +24 -27
- data/src/core/lib/iomgr/load_file.h +22 -22
- data/src/core/lib/iomgr/lockfree_event.cc +114 -131
- data/src/core/lib/iomgr/lockfree_event.h +23 -23
- data/src/core/lib/iomgr/nameser.h +86 -86
- data/src/core/lib/iomgr/polling_entity.cc +25 -21
- data/src/core/lib/iomgr/polling_entity.h +29 -29
- data/src/core/lib/iomgr/pollset.cc +17 -17
- data/src/core/lib/iomgr/pollset.h +55 -55
- data/src/core/lib/iomgr/pollset_set.cc +17 -17
- data/src/core/lib/iomgr/pollset_set.h +25 -26
- data/src/core/lib/iomgr/pollset_set_windows.cc +18 -18
- data/src/core/lib/iomgr/pollset_set_windows.h +20 -20
- data/src/core/lib/iomgr/pollset_windows.cc +32 -31
- data/src/core/lib/iomgr/pollset_windows.h +24 -24
- data/src/core/lib/iomgr/port.h +34 -31
- data/src/core/lib/iomgr/python_util.h +24 -24
- data/src/core/lib/iomgr/resolve_address.cc +26 -20
- data/src/core/lib/iomgr/resolve_address.h +54 -31
- data/src/core/lib/iomgr/resolve_address_impl.h +5 -4
- data/src/core/lib/iomgr/resolve_address_posix.cc +74 -49
- data/src/core/lib/iomgr/resolve_address_posix.h +23 -10
- data/src/core/lib/iomgr/resolve_address_windows.cc +59 -26
- data/src/core/lib/iomgr/resolve_address_windows.h +23 -10
- data/src/core/lib/iomgr/resolved_address.h +3 -3
- data/src/core/lib/iomgr/sockaddr.h +23 -23
- data/src/core/lib/iomgr/sockaddr_posix.h +21 -21
- data/src/core/lib/iomgr/sockaddr_utils_posix.cc +20 -18
- data/src/core/lib/iomgr/sockaddr_windows.h +21 -21
- data/src/core/lib/iomgr/socket_factory_posix.cc +18 -18
- data/src/core/lib/iomgr/socket_factory_posix.h +32 -32
- data/src/core/lib/iomgr/socket_mutator.cc +19 -18
- data/src/core/lib/iomgr/socket_mutator.h +39 -39
- data/src/core/lib/iomgr/socket_utils.h +27 -27
- data/src/core/lib/iomgr/socket_utils_common_posix.cc +80 -100
- data/src/core/lib/iomgr/socket_utils_linux.cc +18 -17
- data/src/core/lib/iomgr/socket_utils_posix.cc +103 -19
- data/src/core/lib/iomgr/socket_utils_posix.h +176 -84
- data/src/core/lib/iomgr/socket_utils_windows.cc +20 -19
- data/src/core/lib/iomgr/socket_windows.cc +37 -36
- data/src/core/lib/iomgr/socket_windows.h +59 -61
- data/src/core/lib/iomgr/systemd_utils.cc +116 -0
- data/src/core/lib/iomgr/systemd_utils.h +33 -0
- data/src/core/lib/iomgr/tcp_client.cc +28 -24
- data/src/core/lib/iomgr/tcp_client.h +49 -38
- data/src/core/lib/iomgr/tcp_client_cfstream.cc +39 -36
- data/src/core/lib/iomgr/tcp_client_posix.cc +236 -105
- data/src/core/lib/iomgr/tcp_client_posix.h +55 -52
- data/src/core/lib/iomgr/tcp_client_windows.cc +64 -51
- data/src/core/lib/iomgr/tcp_posix.cc +502 -341
- data/src/core/lib/iomgr/tcp_posix.h +32 -30
- data/src/core/lib/iomgr/tcp_server.cc +33 -24
- data/src/core/lib/iomgr/tcp_server.h +78 -69
- data/src/core/lib/iomgr/tcp_server_posix.cc +358 -124
- data/src/core/lib/iomgr/tcp_server_utils_posix.h +68 -55
- data/src/core/lib/iomgr/tcp_server_utils_posix_common.cc +93 -58
- data/src/core/lib/iomgr/tcp_server_utils_posix_ifaddrs.cc +40 -40
- data/src/core/lib/iomgr/tcp_server_utils_posix_noifaddrs.cc +19 -19
- data/src/core/lib/iomgr/tcp_server_windows.cc +106 -116
- data/src/core/lib/iomgr/tcp_windows.cc +109 -94
- data/src/core/lib/iomgr/tcp_windows.h +34 -35
- data/src/core/lib/iomgr/timer.cc +17 -17
- data/src/core/lib/iomgr/timer.h +68 -68
- data/src/core/lib/iomgr/timer_generic.cc +125 -134
- data/src/core/lib/iomgr/timer_generic.h +21 -21
- data/src/core/lib/iomgr/timer_heap.cc +25 -25
- data/src/core/lib/iomgr/timer_heap.h +22 -22
- data/src/core/lib/iomgr/timer_manager.cc +31 -31
- data/src/core/lib/iomgr/timer_manager.h +27 -27
- data/src/core/lib/iomgr/unix_sockets_posix.cc +20 -21
- data/src/core/lib/iomgr/unix_sockets_posix.h +21 -21
- data/src/core/lib/iomgr/unix_sockets_posix_noop.cc +19 -17
- data/src/core/lib/iomgr/wakeup_fd_eventfd.cc +23 -23
- data/src/core/lib/iomgr/wakeup_fd_nospecial.cc +23 -23
- data/src/core/lib/iomgr/wakeup_fd_pipe.cc +29 -26
- data/src/core/lib/iomgr/wakeup_fd_pipe.h +20 -20
- data/src/core/lib/iomgr/wakeup_fd_posix.cc +33 -30
- data/src/core/lib/iomgr/wakeup_fd_posix.h +52 -54
- data/src/core/lib/json/json.h +22 -25
- data/src/core/{ext/filters/http/message_compress/message_decompress_filter.h → lib/json/json_args.h} +13 -10
- data/src/core/lib/json/json_channel_args.h +42 -0
- data/src/core/lib/json/json_object_loader.cc +217 -0
- data/src/core/lib/json/json_object_loader.h +634 -0
- data/src/core/lib/json/json_reader.cc +115 -90
- data/src/core/lib/json/json_util.cc +14 -41
- data/src/core/lib/json/json_util.h +7 -7
- data/src/core/lib/json/json_writer.cc +56 -56
- data/src/core/{ext/filters/client_channel → lib/load_balancing}/lb_policy.cc +26 -58
- data/src/core/{ext/filters/client_channel → lib/load_balancing}/lb_policy.h +32 -41
- data/src/core/lib/load_balancing/lb_policy_factory.h +49 -0
- data/src/core/lib/load_balancing/lb_policy_registry.cc +142 -0
- data/src/core/lib/load_balancing/lb_policy_registry.h +82 -0
- data/src/core/{ext/filters/client_channel → lib/load_balancing}/subchannel_interface.h +18 -31
- data/src/core/lib/matchers/matchers.cc +12 -7
- data/src/core/lib/matchers/matchers.h +5 -3
- data/src/core/lib/promise/activity.cc +22 -7
- data/src/core/lib/promise/activity.h +110 -52
- data/src/core/lib/promise/arena_promise.h +105 -72
- data/src/core/lib/promise/context.h +17 -10
- data/src/core/lib/promise/detail/basic_join.h +197 -0
- data/src/core/lib/promise/detail/basic_seq.h +27 -32
- data/src/core/lib/promise/detail/promise_factory.h +61 -13
- data/src/core/lib/promise/detail/promise_like.h +3 -3
- data/src/core/lib/promise/detail/status.h +31 -3
- data/src/core/lib/promise/detail/switch.h +21 -21
- data/src/core/lib/promise/exec_ctx_wakeup_scheduler.h +23 -15
- data/src/core/lib/promise/if.h +195 -0
- data/src/core/lib/promise/interceptor_list.h +308 -0
- data/src/core/lib/promise/intra_activity_waiter.h +9 -3
- data/src/core/lib/promise/latch.h +110 -22
- data/src/core/lib/promise/loop.h +12 -9
- data/src/core/lib/promise/map.h +4 -6
- data/src/core/lib/promise/pipe.h +608 -0
- data/src/core/lib/promise/poll.h +129 -11
- data/src/core/lib/promise/promise.h +5 -5
- data/src/core/lib/promise/race.h +6 -9
- data/src/core/lib/promise/seq.h +32 -12
- data/src/core/lib/promise/sleep.cc +56 -42
- data/src/core/lib/promise/sleep.h +40 -32
- data/src/core/lib/promise/trace.cc +20 -0
- data/src/core/lib/promise/trace.h +24 -0
- data/src/core/lib/promise/try_join.h +82 -0
- data/src/core/lib/promise/try_seq.h +39 -21
- data/src/core/lib/resolver/resolver.cc +17 -59
- data/src/core/lib/resolver/resolver.h +21 -18
- data/src/core/lib/resolver/resolver_factory.h +10 -8
- data/src/core/lib/resolver/resolver_registry.cc +17 -9
- data/src/core/lib/resolver/resolver_registry.h +15 -5
- data/src/core/lib/resolver/server_address.cc +38 -32
- data/src/core/lib/resolver/server_address.h +32 -31
- data/src/core/lib/resource_quota/api.cc +10 -2
- data/src/core/lib/resource_quota/api.h +10 -4
- data/src/core/lib/resource_quota/arena.cc +85 -21
- data/src/core/lib/resource_quota/arena.h +196 -23
- data/src/core/lib/resource_quota/memory_quota.cc +287 -108
- data/src/core/lib/resource_quota/memory_quota.h +175 -59
- data/src/core/lib/resource_quota/periodic_update.cc +78 -0
- data/src/core/lib/resource_quota/periodic_update.h +71 -0
- data/src/core/lib/resource_quota/resource_quota.h +4 -4
- data/src/core/lib/resource_quota/thread_quota.h +3 -3
- data/src/core/lib/resource_quota/trace.h +3 -3
- data/src/core/lib/security/authorization/authorization_engine.h +3 -3
- data/src/core/lib/security/authorization/authorization_policy_provider.h +10 -3
- data/src/core/lib/security/authorization/authorization_policy_provider_vtable.cc +3 -0
- data/src/core/lib/security/authorization/evaluate_args.cc +17 -8
- data/src/core/lib/security/authorization/evaluate_args.h +9 -6
- data/src/core/lib/security/authorization/grpc_authorization_engine.cc +5 -1
- data/src/core/lib/security/authorization/grpc_authorization_engine.h +10 -3
- data/src/core/lib/security/authorization/grpc_server_authz_filter.cc +16 -3
- data/src/core/lib/security/authorization/grpc_server_authz_filter.h +16 -5
- data/src/core/lib/security/authorization/matchers.cc +44 -30
- data/src/core/lib/security/authorization/matchers.h +10 -3
- data/src/core/lib/security/authorization/rbac_policy.cc +6 -2
- data/src/core/lib/security/authorization/rbac_policy.h +10 -3
- data/src/core/{ext/xds → lib/security/certificate_provider}/certificate_provider_factory.h +9 -4
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.cc +60 -0
- data/src/core/lib/security/certificate_provider/certificate_provider_registry.h +70 -0
- data/src/core/lib/security/context/security_context.cc +27 -25
- data/src/core/lib/security/context/security_context.h +56 -34
- data/src/core/lib/security/credentials/alts/alts_credentials.cc +23 -22
- data/src/core/lib/security/credentials/alts/alts_credentials.h +61 -57
- data/src/core/lib/security/credentials/alts/check_gcp_environment.cc +19 -19
- data/src/core/lib/security/credentials/alts/check_gcp_environment.h +43 -43
- data/src/core/lib/security/credentials/alts/check_gcp_environment_linux.cc +17 -17
- data/src/core/lib/security/credentials/alts/check_gcp_environment_no_op.cc +18 -17
- data/src/core/lib/security/credentials/alts/check_gcp_environment_windows.cc +18 -17
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_client_options.cc +20 -22
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.cc +18 -18
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_options.h +38 -39
- data/src/core/lib/security/credentials/alts/grpc_alts_credentials_server_options.cc +19 -22
- data/src/core/lib/security/credentials/call_creds_util.cc +8 -0
- data/src/core/lib/security/credentials/call_creds_util.h +4 -3
- data/src/core/lib/security/credentials/channel_creds_registry.h +9 -4
- data/src/core/lib/security/credentials/channel_creds_registry_init.cc +13 -3
- data/src/core/lib/security/credentials/composite/composite_credentials.cc +27 -31
- data/src/core/lib/security/credentials/composite/composite_credentials.h +40 -29
- data/src/core/lib/security/credentials/credentials.cc +23 -26
- data/src/core/lib/security/credentials/credentials.h +62 -55
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.cc +123 -76
- data/src/core/lib/security/credentials/external/aws_external_account_credentials.h +13 -3
- data/src/core/lib/security/credentials/external/aws_request_signer.cc +14 -3
- data/src/core/lib/security/credentials/external/aws_request_signer.h +3 -3
- data/src/core/lib/security/credentials/external/external_account_credentials.cc +83 -68
- data/src/core/lib/security/credentials/external/external_account_credentials.h +14 -3
- data/src/core/lib/security/credentials/external/file_external_account_credentials.cc +29 -26
- data/src/core/lib/security/credentials/external/file_external_account_credentials.h +9 -3
- data/src/core/lib/security/credentials/external/url_external_account_credentials.cc +42 -31
- data/src/core/lib/security/credentials/external/url_external_account_credentials.h +13 -3
- data/src/core/lib/security/credentials/fake/fake_credentials.cc +30 -36
- data/src/core/lib/security/credentials/fake/fake_credentials.h +49 -42
- data/src/core/lib/security/credentials/google_default/credentials_generic.cc +23 -25
- data/src/core/lib/security/credentials/google_default/google_default_credentials.cc +129 -107
- data/src/core/lib/security/credentials/google_default/google_default_credentials.h +31 -25
- data/src/core/lib/security/credentials/iam/iam_credentials.cc +27 -20
- data/src/core/lib/security/credentials/iam/iam_credentials.h +31 -21
- data/src/core/lib/security/credentials/insecure/insecure_credentials.cc +7 -3
- data/src/core/lib/security/credentials/insecure/insecure_credentials.h +10 -6
- data/src/core/lib/security/credentials/jwt/json_token.cc +40 -29
- data/src/core/lib/security/credentials/jwt/json_token.h +36 -36
- data/src/core/lib/security/credentials/jwt/jwt_credentials.cc +29 -27
- data/src/core/lib/security/credentials/jwt/jwt_credentials.h +35 -21
- data/src/core/lib/security/credentials/jwt/jwt_verifier.cc +113 -89
- data/src/core/lib/security/credentials/jwt/jwt_verifier.h +49 -47
- data/src/core/lib/security/credentials/local/local_credentials.cc +24 -24
- data/src/core/lib/security/credentials/local/local_credentials.h +32 -26
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.cc +85 -81
- data/src/core/lib/security/credentials/oauth2/oauth2_credentials.h +42 -21
- data/src/core/lib/security/credentials/plugin/plugin_credentials.cc +31 -30
- data/src/core/lib/security/credentials/plugin/plugin_credentials.h +47 -23
- data/src/core/lib/security/credentials/ssl/ssl_credentials.cc +36 -40
- data/src/core/lib/security/credentials/ssl/ssl_credentials.h +35 -23
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.cc +22 -30
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_distributor.h +16 -17
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.cc +55 -48
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_provider.h +22 -9
- data/src/core/lib/security/credentials/tls/grpc_tls_certificate_verifier.cc +10 -3
- 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 +22 -23
- data/src/core/lib/security/credentials/tls/grpc_tls_credentials_options.h +3 -3
- data/src/core/lib/security/credentials/tls/tls_credentials.cc +36 -44
- data/src/core/lib/security/credentials/tls/tls_credentials.h +28 -25
- data/src/core/lib/security/credentials/tls/tls_utils.cc +5 -1
- data/src/core/lib/security/credentials/tls/tls_utils.h +4 -4
- data/src/core/lib/security/credentials/xds/xds_credentials.cc +21 -32
- data/src/core/lib/security/credentials/xds/xds_credentials.h +19 -5
- data/src/core/lib/security/security_connector/alts/alts_security_connector.cc +60 -54
- data/src/core/lib/security/security_connector/alts/alts_security_connector.h +49 -47
- data/src/core/lib/security/security_connector/fake/fake_security_connector.cc +74 -78
- data/src/core/lib/security/security_connector/fake/fake_security_connector.h +25 -26
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.cc +15 -6
- data/src/core/lib/security/security_connector/insecure/insecure_security_connector.h +26 -15
- data/src/core/lib/security/security_connector/load_system_roots.h +20 -20
- data/src/core/lib/security/security_connector/load_system_roots_fallback.cc +22 -20
- data/src/core/lib/security/security_connector/{load_system_roots_linux.cc → load_system_roots_supported.cc} +43 -38
- data/src/core/lib/security/security_connector/load_system_roots_supported.h +45 -0
- data/src/core/lib/security/security_connector/local/local_security_connector.cc +64 -47
- data/src/core/lib/security/security_connector/local/local_security_connector.h +49 -46
- data/src/core/lib/security/security_connector/security_connector.cc +37 -35
- data/src/core/lib/security/security_connector/security_connector.h +57 -44
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.cc +54 -45
- data/src/core/lib/security/security_connector/ssl/ssl_security_connector.h +44 -43
- data/src/core/lib/security/security_connector/ssl_utils.cc +47 -39
- data/src/core/lib/security/security_connector/ssl_utils.h +45 -42
- data/src/core/lib/security/security_connector/ssl_utils_config.cc +22 -22
- data/src/core/lib/security/security_connector/ssl_utils_config.h +21 -22
- data/src/core/lib/security/security_connector/tls/tls_security_connector.cc +58 -56
- data/src/core/lib/security/security_connector/tls/tls_security_connector.h +48 -28
- data/src/core/lib/security/transport/auth_filters.h +53 -24
- data/src/core/lib/security/transport/client_auth_filter.cc +51 -32
- data/src/core/lib/security/transport/secure_endpoint.cc +112 -68
- data/src/core/lib/security/transport/secure_endpoint.h +28 -27
- data/src/core/lib/security/transport/security_handshaker.cc +139 -109
- data/src/core/lib/security/transport/security_handshaker.h +27 -22
- data/src/core/lib/security/transport/server_auth_filter.cc +157 -267
- data/src/core/lib/security/transport/tsi_error.cc +23 -20
- data/src/core/lib/security/transport/tsi_error.h +20 -20
- data/src/core/lib/security/util/json_util.cc +24 -24
- data/src/core/lib/security/util/json_util.h +21 -23
- data/src/core/lib/service_config/service_config.h +15 -4
- data/src/core/lib/service_config/service_config_call_data.h +11 -4
- data/src/core/lib/service_config/service_config_impl.cc +107 -153
- data/src/core/lib/service_config/service_config_impl.h +19 -26
- data/src/core/lib/service_config/service_config_parser.cc +10 -30
- data/src/core/lib/service_config/service_config_parser.h +13 -21
- data/src/core/lib/slice/b64.cc +26 -26
- data/src/core/lib/slice/b64.h +32 -32
- data/src/core/lib/slice/percent_encoding.cc +21 -30
- data/src/core/lib/slice/percent_encoding.h +28 -28
- data/src/core/lib/slice/slice.cc +57 -45
- data/src/core/lib/slice/slice.h +57 -18
- data/src/core/lib/slice/slice_buffer.cc +93 -60
- data/src/core/lib/slice/slice_buffer.h +72 -10
- data/src/core/lib/slice/slice_internal.h +34 -42
- data/src/core/lib/slice/slice_refcount.cc +3 -18
- data/src/core/lib/slice/slice_refcount.h +53 -18
- data/src/core/lib/slice/slice_string_helpers.cc +17 -37
- data/src/core/lib/slice/slice_string_helpers.h +21 -25
- data/src/core/lib/surface/api_trace.cc +17 -17
- data/src/core/lib/surface/api_trace.h +25 -25
- data/src/core/lib/surface/builtins.h +3 -3
- data/src/core/lib/surface/byte_buffer.cc +22 -23
- data/src/core/lib/surface/byte_buffer_reader.cc +23 -23
- data/src/core/lib/surface/call.cc +2205 -471
- data/src/core/lib/surface/call.h +121 -42
- data/src/core/lib/surface/call_details.cc +20 -21
- data/src/core/lib/surface/call_log_batch.cc +19 -18
- data/src/core/lib/surface/call_test_only.h +33 -33
- data/src/core/lib/surface/call_trace.cc +123 -0
- data/src/core/lib/surface/call_trace.h +30 -0
- data/src/core/lib/surface/channel.cc +65 -69
- data/src/core/lib/surface/channel.h +45 -35
- data/src/core/lib/surface/channel_init.cc +17 -17
- data/src/core/lib/surface/channel_init.h +20 -20
- data/src/core/lib/surface/channel_ping.cc +20 -20
- data/src/core/lib/surface/channel_stack_type.cc +21 -17
- data/src/core/lib/surface/channel_stack_type.h +22 -20
- data/src/core/lib/surface/completion_queue.cc +188 -218
- data/src/core/lib/surface/completion_queue.h +39 -41
- data/src/core/lib/surface/completion_queue_factory.cc +33 -28
- data/src/core/lib/surface/completion_queue_factory.h +22 -22
- data/src/core/lib/surface/event_string.cc +18 -17
- data/src/core/lib/surface/event_string.h +22 -22
- data/src/core/lib/surface/init.cc +44 -73
- data/src/core/lib/surface/init.h +20 -20
- data/src/core/lib/surface/init_internally.cc +25 -0
- data/src/core/lib/surface/init_internally.h +37 -0
- data/src/core/lib/surface/lame_client.cc +33 -30
- data/src/core/lib/surface/lame_client.h +23 -23
- data/src/core/lib/surface/metadata_array.cc +17 -18
- data/src/core/lib/surface/server.cc +349 -130
- data/src/core/lib/surface/server.h +24 -22
- data/src/core/lib/surface/validate_metadata.cc +32 -43
- data/src/core/lib/surface/validate_metadata.h +21 -21
- data/src/core/lib/surface/version.cc +21 -21
- data/src/core/lib/transport/bdp_estimator.cc +18 -20
- data/src/core/lib/transport/bdp_estimator.h +21 -22
- data/src/core/lib/transport/connectivity_state.cc +19 -20
- data/src/core/lib/transport/connectivity_state.h +23 -23
- data/src/core/lib/transport/error_utils.cc +54 -78
- data/src/core/lib/transport/error_utils.h +24 -24
- data/src/core/lib/transport/handshaker.cc +66 -54
- data/src/core/lib/transport/handshaker.h +51 -47
- data/src/core/lib/transport/handshaker_factory.h +49 -24
- data/src/core/lib/transport/handshaker_registry.cc +27 -20
- data/src/core/lib/transport/handshaker_registry.h +25 -28
- data/src/core/lib/transport/http2_errors.h +22 -22
- data/src/core/lib/transport/http_connect_handshaker.cc +56 -57
- data/src/core/lib/transport/http_connect_handshaker.h +21 -21
- data/src/core/lib/transport/metadata_batch.cc +22 -4
- data/src/core/lib/transport/metadata_batch.h +129 -35
- data/src/core/lib/transport/parsed_metadata.cc +2 -6
- data/src/core/lib/transport/parsed_metadata.h +7 -5
- data/src/core/lib/transport/pid_controller.cc +20 -20
- data/src/core/lib/transport/pid_controller.h +27 -27
- data/src/core/lib/transport/status_conversion.cc +23 -25
- data/src/core/lib/transport/status_conversion.h +22 -22
- data/src/core/lib/transport/tcp_connect_handshaker.cc +34 -42
- data/src/core/lib/transport/tcp_connect_handshaker.h +3 -3
- data/src/core/lib/transport/timeout_encoding.cc +22 -22
- data/src/core/lib/transport/timeout_encoding.h +20 -20
- data/src/core/lib/transport/transport.cc +85 -46
- data/src/core/lib/transport/transport.h +219 -215
- data/src/core/lib/transport/transport_fwd.h +20 -0
- data/src/core/lib/transport/transport_impl.h +46 -46
- data/src/core/lib/transport/transport_op_string.cc +32 -30
- data/src/core/lib/uri/uri_parser.cc +1 -1
- data/src/core/lib/uri/uri_parser.h +3 -3
- data/src/core/plugin_registry/grpc_plugin_registry.cc +53 -73
- data/src/core/plugin_registry/grpc_plugin_registry_extra.cc +20 -39
- data/src/core/tsi/alts/crypt/aes_gcm.cc +20 -20
- data/src/core/tsi/alts/crypt/gsec.cc +26 -26
- data/src/core/tsi/alts/crypt/gsec.h +336 -336
- data/src/core/tsi/alts/frame_protector/alts_counter.cc +23 -23
- data/src/core/tsi/alts/frame_protector/alts_counter.h +68 -68
- data/src/core/tsi/alts/frame_protector/alts_crypter.cc +19 -19
- data/src/core/tsi/alts/frame_protector/alts_crypter.h +209 -209
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.cc +72 -71
- data/src/core/tsi/alts/frame_protector/alts_frame_protector.h +40 -40
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.cc +18 -18
- data/src/core/tsi/alts/frame_protector/alts_record_protocol_crypter_common.h +82 -83
- data/src/core/tsi/alts/frame_protector/alts_seal_privacy_integrity_crypter.cc +22 -22
- data/src/core/tsi/alts/frame_protector/alts_unseal_privacy_integrity_crypter.cc +22 -22
- data/src/core/tsi/alts/frame_protector/frame_handler.cc +26 -25
- data/src/core/tsi/alts/frame_protector/frame_handler.h +169 -169
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.cc +117 -97
- data/src/core/tsi/alts/handshaker/alts_handshaker_client.h +104 -104
- data/src/core/tsi/alts/handshaker/alts_shared_resource.cc +18 -17
- data/src/core/tsi/alts/handshaker/alts_shared_resource.h +43 -44
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.cc +51 -43
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker.h +60 -60
- data/src/core/tsi/alts/handshaker/alts_tsi_handshaker_private.h +24 -24
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.cc +21 -20
- data/src/core/tsi/alts/handshaker/alts_tsi_utils.h +38 -38
- data/src/core/tsi/alts/handshaker/transport_security_common_api.cc +19 -19
- data/src/core/tsi/alts/handshaker/transport_security_common_api.h +105 -104
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.cc +45 -44
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_integrity_only_record_protocol.h +40 -41
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.cc +38 -36
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_privacy_integrity_record_protocol.h +35 -36
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol.h +67 -68
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.cc +32 -31
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_grpc_record_protocol_common.h +55 -56
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.cc +54 -53
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_iovec_record_protocol.h +141 -142
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.cc +67 -58
- data/src/core/tsi/alts/zero_copy_frame_protector/alts_zero_copy_grpc_protector.h +43 -44
- data/src/core/tsi/fake_transport_security.cc +146 -110
- data/src/core/tsi/fake_transport_security.h +36 -30
- data/src/core/tsi/local_transport_security.cc +43 -38
- data/src/core/tsi/local_transport_security.h +33 -33
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.cc +9 -4
- data/src/core/tsi/ssl/key_logging/ssl_key_logging.h +3 -3
- data/src/core/tsi/ssl/session_cache/ssl_session.h +21 -21
- data/src/core/tsi/ssl/session_cache/ssl_session_boringssl.cc +19 -19
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.cc +18 -17
- data/src/core/tsi/ssl/session_cache/ssl_session_cache.h +31 -22
- data/src/core/tsi/ssl/session_cache/ssl_session_openssl.cc +25 -20
- data/src/core/tsi/ssl_transport_security.cc +299 -370
- data/src/core/tsi/ssl_transport_security.h +206 -203
- data/src/core/tsi/ssl_transport_security_utils.cc +250 -0
- data/src/core/tsi/ssl_transport_security_utils.h +147 -0
- data/src/core/tsi/ssl_types.h +27 -27
- data/src/core/tsi/transport_security.cc +44 -32
- data/src/core/tsi/transport_security.h +49 -48
- data/src/core/tsi/transport_security_grpc.cc +23 -22
- data/src/core/tsi/transport_security_grpc.h +44 -41
- data/src/core/tsi/transport_security_interface.h +344 -332
- data/src/ruby/ext/grpc/ext-export-truffleruby-with-ruby-abi-version.clang +2 -0
- data/src/ruby/ext/grpc/ext-export-truffleruby-with-ruby-abi-version.gcc +7 -0
- data/src/ruby/ext/grpc/ext-export-with-ruby-abi-version.clang +2 -0
- data/src/ruby/ext/grpc/ext-export-with-ruby-abi-version.gcc +7 -0
- data/src/ruby/ext/grpc/ext-export.gcc +1 -1
- data/src/ruby/ext/grpc/extconf.rb +97 -19
- data/src/ruby/ext/grpc/rb_call.c +1 -0
- data/src/ruby/ext/grpc/rb_channel.c +1 -0
- data/src/ruby/ext/grpc/rb_channel_args.c +1 -0
- data/src/ruby/ext/grpc/rb_compression_options.c +1 -1
- data/src/ruby/ext/grpc/rb_grpc.c +1 -0
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.c +38 -38
- data/src/ruby/ext/grpc/rb_grpc_imports.generated.h +60 -60
- data/src/ruby/ext/grpc/rb_loader.c +6 -2
- data/src/ruby/lib/grpc/errors.rb +1 -1
- data/src/ruby/lib/grpc/generic/bidi_call.rb +2 -0
- data/src/ruby/lib/grpc/version.rb +1 -1
- data/src/ruby/pb/generate_proto_ruby.sh +0 -6
- data/src/ruby/pb/src/proto/grpc/testing/messages_pb.rb +4 -0
- data/src/ruby/spec/channel_spec.rb +5 -43
- data/src/ruby/spec/client_server_spec.rb +20 -8
- data/src/ruby/spec/generic/active_call_spec.rb +12 -3
- data/src/ruby/spec/generic/client_stub_spec.rb +23 -23
- data/src/ruby/spec/generic/server_interceptors_spec.rb +1 -1
- data/src/ruby/spec/user_agent_spec.rb +1 -1
- data/third_party/abseil-cpp/absl/algorithm/container.h +57 -58
- data/third_party/abseil-cpp/absl/base/attributes.h +88 -41
- data/third_party/abseil-cpp/absl/base/casts.h +61 -68
- data/third_party/abseil-cpp/absl/base/config.h +221 -39
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.cc +12 -42
- data/third_party/abseil-cpp/absl/base/internal/cycleclock.h +52 -2
- data/third_party/abseil-cpp/absl/base/internal/cycleclock_config.h +55 -0
- data/third_party/abseil-cpp/absl/base/internal/direct_mmap.h +5 -4
- data/third_party/abseil-cpp/absl/base/internal/endian.h +17 -62
- data/third_party/abseil-cpp/absl/base/internal/fast_type_id.h +2 -0
- data/third_party/abseil-cpp/absl/base/internal/inline_variable.h +3 -3
- data/third_party/abseil-cpp/absl/base/internal/invoke.h +54 -0
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.cc +2 -2
- data/third_party/abseil-cpp/absl/base/internal/low_level_alloc.h +1 -1
- data/third_party/abseil-cpp/absl/base/internal/prefetch.h +138 -0
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.cc +39 -28
- data/third_party/abseil-cpp/absl/base/internal/raw_logging.h +36 -36
- data/third_party/abseil-cpp/absl/base/internal/spinlock.cc +6 -3
- data/third_party/abseil-cpp/absl/base/internal/spinlock.h +10 -6
- data/third_party/abseil-cpp/absl/base/internal/spinlock_linux.inc +2 -5
- data/third_party/abseil-cpp/absl/base/internal/spinlock_win32.inc +4 -1
- data/third_party/abseil-cpp/absl/base/internal/strerror.cc +88 -0
- data/third_party/abseil-cpp/absl/base/internal/strerror.h +39 -0
- data/third_party/abseil-cpp/absl/base/internal/sysinfo.cc +14 -11
- data/third_party/abseil-cpp/absl/base/internal/thread_annotations.h +9 -0
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.cc +2 -1
- data/third_party/abseil-cpp/absl/base/internal/thread_identity.h +4 -0
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.cc +6 -7
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock.h +12 -40
- data/third_party/abseil-cpp/absl/base/internal/unscaledcycleclock_config.h +62 -0
- data/third_party/abseil-cpp/absl/base/log_severity.cc +28 -0
- data/third_party/abseil-cpp/absl/base/log_severity.h +51 -0
- data/third_party/abseil-cpp/absl/base/macros.h +4 -21
- data/third_party/abseil-cpp/absl/base/optimization.h +76 -16
- data/third_party/abseil-cpp/absl/base/options.h +1 -7
- data/third_party/abseil-cpp/absl/base/policy_checks.h +15 -13
- data/third_party/abseil-cpp/absl/base/thread_annotations.h +2 -2
- data/third_party/abseil-cpp/absl/container/fixed_array.h +9 -5
- data/third_party/abseil-cpp/absl/container/flat_hash_map.h +11 -4
- data/third_party/abseil-cpp/absl/container/flat_hash_set.h +15 -16
- data/third_party/abseil-cpp/absl/container/inlined_vector.h +84 -25
- data/third_party/abseil-cpp/absl/container/internal/common.h +9 -8
- data/third_party/abseil-cpp/absl/container/internal/common_policy_traits.h +132 -0
- data/third_party/abseil-cpp/absl/container/internal/container_memory.h +23 -29
- data/third_party/abseil-cpp/absl/container/internal/hash_policy_traits.h +4 -55
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.cc +116 -23
- data/third_party/abseil-cpp/absl/container/internal/hashtablez_sampler.h +40 -54
- data/third_party/abseil-cpp/absl/container/internal/inlined_vector.h +165 -66
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.cc +159 -4
- data/third_party/abseil-cpp/absl/container/internal/raw_hash_set.h +1121 -470
- data/third_party/abseil-cpp/absl/crc/crc32c.cc +99 -0
- data/third_party/abseil-cpp/absl/crc/crc32c.h +183 -0
- data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.cc +256 -0
- data/third_party/abseil-cpp/absl/crc/internal/cpu_detect.h +57 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc.cc +468 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc.h +91 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc32_x86_arm_combined_simd.h +269 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc32c.h +39 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc32c_inline.h +72 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.cc +130 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc_cord_state.h +159 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc_internal.h +179 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy.h +119 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_fallback.cc +75 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc_memcpy_x86_64.cc +434 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc_non_temporal_memcpy.cc +93 -0
- data/third_party/abseil-cpp/absl/crc/internal/crc_x86_arm_combined.cc +725 -0
- data/third_party/abseil-cpp/absl/crc/internal/non_temporal_arm_intrinsics.h +79 -0
- data/third_party/abseil-cpp/absl/crc/internal/non_temporal_memcpy.h +180 -0
- data/third_party/abseil-cpp/absl/debugging/internal/address_is_readable.cc +45 -88
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.cc +67 -38
- data/third_party/abseil-cpp/absl/debugging/internal/demangle.h +1 -1
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.cc +16 -13
- data/third_party/abseil-cpp/absl/debugging/internal/elf_mem_image.h +3 -2
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_aarch64-inl.inc +19 -12
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_arm-inl.inc +8 -3
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_config.h +2 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_generic-inl.inc +1 -1
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_powerpc-inl.inc +8 -3
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_riscv-inl.inc +59 -102
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_win32-inl.inc +5 -4
- data/third_party/abseil-cpp/absl/debugging/internal/stacktrace_x86-inl.inc +41 -11
- data/third_party/abseil-cpp/absl/debugging/internal/vdso_support.cc +18 -4
- data/third_party/abseil-cpp/absl/debugging/symbolize.cc +6 -1
- data/third_party/abseil-cpp/absl/debugging/symbolize_darwin.inc +3 -2
- data/third_party/abseil-cpp/absl/debugging/symbolize_elf.inc +164 -101
- data/third_party/abseil-cpp/absl/debugging/symbolize_win32.inc +7 -6
- data/third_party/abseil-cpp/absl/functional/any_invocable.h +316 -0
- data/third_party/abseil-cpp/absl/functional/bind_front.h +10 -1
- data/third_party/abseil-cpp/absl/functional/function_ref.h +2 -1
- data/third_party/abseil-cpp/absl/functional/internal/any_invocable.h +878 -0
- data/third_party/abseil-cpp/absl/hash/hash.h +82 -8
- data/third_party/abseil-cpp/absl/hash/internal/city.cc +10 -10
- data/third_party/abseil-cpp/absl/hash/internal/hash.h +235 -26
- data/third_party/abseil-cpp/absl/hash/internal/low_level_hash.cc +3 -14
- data/third_party/abseil-cpp/absl/memory/memory.h +26 -447
- data/third_party/abseil-cpp/absl/meta/type_traits.h +104 -12
- data/third_party/abseil-cpp/absl/numeric/bits.h +1 -1
- data/third_party/abseil-cpp/absl/numeric/int128.cc +14 -10
- data/third_party/abseil-cpp/absl/numeric/int128.h +2 -2
- data/third_party/abseil-cpp/absl/profiling/internal/sample_recorder.h +33 -10
- data/third_party/abseil-cpp/absl/random/bernoulli_distribution.h +4 -4
- data/third_party/abseil-cpp/absl/random/distributions.h +3 -3
- data/third_party/abseil-cpp/absl/random/internal/distribution_caller.h +3 -0
- data/third_party/abseil-cpp/absl/random/internal/fast_uniform_bits.h +4 -2
- data/third_party/abseil-cpp/absl/random/internal/generate_real.h +2 -2
- data/third_party/abseil-cpp/absl/random/internal/nonsecure_base.h +59 -48
- data/third_party/abseil-cpp/absl/random/internal/pcg_engine.h +3 -24
- data/third_party/abseil-cpp/absl/random/internal/pool_urbg.cc +9 -9
- data/third_party/abseil-cpp/absl/random/internal/randen.h +5 -11
- data/third_party/abseil-cpp/absl/random/internal/randen_detect.cc +6 -2
- data/third_party/abseil-cpp/absl/random/internal/randen_engine.h +48 -23
- data/third_party/abseil-cpp/absl/random/internal/salted_seed_seq.h +24 -26
- data/third_party/abseil-cpp/absl/random/internal/seed_material.cc +2 -2
- data/third_party/abseil-cpp/absl/random/internal/traits.h +53 -5
- data/third_party/abseil-cpp/absl/random/internal/uniform_helper.h +5 -5
- data/third_party/abseil-cpp/absl/random/internal/wide_multiply.h +33 -48
- data/third_party/abseil-cpp/absl/random/log_uniform_int_distribution.h +9 -10
- data/third_party/abseil-cpp/absl/random/poisson_distribution.h +7 -4
- data/third_party/abseil-cpp/absl/random/random.h +6 -6
- data/third_party/abseil-cpp/absl/random/seed_sequences.h +1 -0
- data/third_party/abseil-cpp/absl/random/uniform_int_distribution.h +2 -2
- data/third_party/abseil-cpp/absl/random/uniform_real_distribution.h +1 -1
- data/third_party/abseil-cpp/absl/random/zipf_distribution.h +4 -3
- data/third_party/abseil-cpp/absl/status/internal/status_internal.h +18 -0
- data/third_party/abseil-cpp/absl/status/status.cc +193 -14
- data/third_party/abseil-cpp/absl/status/status.h +24 -14
- data/third_party/abseil-cpp/absl/status/statusor.h +9 -3
- data/third_party/abseil-cpp/absl/strings/ascii.cc +5 -5
- data/third_party/abseil-cpp/absl/strings/ascii.h +4 -4
- data/third_party/abseil-cpp/absl/strings/charconv.cc +534 -96
- data/third_party/abseil-cpp/absl/strings/cord.cc +257 -924
- data/third_party/abseil-cpp/absl/strings/cord.h +268 -156
- data/third_party/abseil-cpp/absl/strings/cord_analysis.cc +188 -0
- data/third_party/abseil-cpp/absl/strings/cord_analysis.h +44 -0
- data/third_party/abseil-cpp/absl/strings/cord_buffer.cc +30 -0
- data/third_party/abseil-cpp/absl/strings/cord_buffer.h +575 -0
- data/third_party/abseil-cpp/absl/strings/escaping.cc +73 -62
- data/third_party/abseil-cpp/absl/strings/escaping.h +24 -19
- data/third_party/abseil-cpp/absl/strings/internal/char_map.h +14 -12
- data/third_party/abseil-cpp/absl/strings/internal/charconv_bigint.cc +4 -4
- data/third_party/abseil-cpp/absl/strings/internal/charconv_parse.cc +2 -2
- data/third_party/abseil-cpp/absl/strings/internal/cord_data_edge.h +63 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.cc +20 -32
- data/third_party/abseil-cpp/absl/strings/internal/cord_internal.h +441 -150
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.cc +157 -53
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree.h +70 -73
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.cc +8 -6
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_navigator.h +4 -2
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.cc +3 -2
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_btree_reader.h +5 -4
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_consume.cc +7 -74
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.cc +56 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_crc.h +103 -0
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_flat.h +58 -17
- data/third_party/abseil-cpp/absl/strings/internal/cord_rep_ring.cc +13 -11
- data/third_party/abseil-cpp/absl/strings/internal/cordz_functions.h +7 -15
- data/third_party/abseil-cpp/absl/strings/internal/cordz_handle.h +3 -3
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.cc +19 -43
- data/third_party/abseil-cpp/absl/strings/internal/cordz_info.h +7 -7
- data/third_party/abseil-cpp/absl/strings/internal/cordz_statistics.h +5 -4
- data/third_party/abseil-cpp/absl/strings/internal/cordz_update_tracker.h +4 -2
- data/third_party/abseil-cpp/absl/strings/internal/damerau_levenshtein_distance.cc +93 -0
- data/third_party/abseil-cpp/absl/strings/internal/damerau_levenshtein_distance.h +34 -0
- data/third_party/abseil-cpp/absl/strings/internal/escaping.cc +18 -15
- data/third_party/abseil-cpp/absl/strings/internal/escaping.h +7 -9
- data/third_party/abseil-cpp/absl/strings/internal/has_absl_stringify.h +55 -0
- data/third_party/abseil-cpp/absl/strings/internal/memutil.cc +9 -6
- data/third_party/abseil-cpp/absl/strings/internal/ostringstream.cc +14 -7
- data/third_party/abseil-cpp/absl/strings/internal/ostringstream.h +35 -10
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.cc +113 -46
- data/third_party/abseil-cpp/absl/strings/internal/str_format/arg.h +127 -30
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.cc +3 -2
- data/third_party/abseil-cpp/absl/strings/internal/str_format/bind.h +42 -10
- data/third_party/abseil-cpp/absl/strings/internal/str_format/checker.h +56 -289
- data/third_party/abseil-cpp/absl/strings/internal/str_format/constexpr_parser.h +351 -0
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.cc +6 -6
- data/third_party/abseil-cpp/absl/strings/internal/str_format/extension.h +9 -4
- data/third_party/abseil-cpp/absl/strings/internal/str_format/float_conversion.cc +215 -181
- data/third_party/abseil-cpp/absl/strings/internal/str_format/output.h +2 -1
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.cc +10 -209
- data/third_party/abseil-cpp/absl/strings/internal/str_format/parser.h +14 -103
- data/third_party/abseil-cpp/absl/strings/internal/str_join_internal.h +9 -6
- data/third_party/abseil-cpp/absl/strings/internal/str_split_internal.h +2 -1
- data/third_party/abseil-cpp/absl/strings/internal/string_constant.h +10 -2
- data/third_party/abseil-cpp/absl/strings/internal/stringify_sink.cc +28 -0
- data/third_party/abseil-cpp/absl/strings/internal/stringify_sink.h +57 -0
- data/third_party/abseil-cpp/absl/strings/internal/utf8.cc +9 -9
- data/third_party/abseil-cpp/absl/strings/numbers.cc +42 -39
- data/third_party/abseil-cpp/absl/strings/numbers.h +26 -23
- data/third_party/abseil-cpp/absl/strings/str_cat.cc +9 -6
- data/third_party/abseil-cpp/absl/strings/str_cat.h +70 -16
- data/third_party/abseil-cpp/absl/strings/str_format.h +71 -9
- data/third_party/abseil-cpp/absl/strings/str_join.h +9 -15
- data/third_party/abseil-cpp/absl/strings/str_split.h +1 -2
- data/third_party/abseil-cpp/absl/strings/string_view.cc +8 -19
- data/third_party/abseil-cpp/absl/strings/string_view.h +6 -12
- data/third_party/abseil-cpp/absl/strings/strip.h +8 -6
- data/third_party/abseil-cpp/absl/strings/substitute.cc +8 -6
- data/third_party/abseil-cpp/absl/strings/substitute.h +55 -21
- data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.cc +9 -6
- data/third_party/abseil-cpp/absl/synchronization/internal/create_thread_identity.h +0 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/futex.h +20 -17
- data/third_party/abseil-cpp/absl/synchronization/internal/graphcycles.cc +37 -31
- data/third_party/abseil-cpp/absl/synchronization/internal/kernel_timeout.h +22 -8
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.cc +0 -4
- data/third_party/abseil-cpp/absl/synchronization/internal/per_thread_sem.h +1 -6
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.cc +0 -25
- data/third_party/abseil-cpp/absl/synchronization/internal/waiter.h +10 -4
- data/third_party/abseil-cpp/absl/synchronization/mutex.cc +172 -88
- data/third_party/abseil-cpp/absl/synchronization/mutex.h +102 -55
- data/third_party/abseil-cpp/absl/synchronization/notification.cc +0 -1
- data/third_party/abseil-cpp/absl/synchronization/notification.h +3 -3
- data/third_party/abseil-cpp/absl/time/civil_time.cc +26 -0
- data/third_party/abseil-cpp/absl/time/civil_time.h +25 -0
- data/third_party/abseil-cpp/absl/time/clock.cc +17 -11
- data/third_party/abseil-cpp/absl/time/duration.cc +12 -11
- data/third_party/abseil-cpp/absl/time/format.cc +2 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/civil_time_detail.h +11 -7
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_format.cc +1 -1
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_info.cc +26 -5
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/time_zone_lookup.cc +7 -6
- data/third_party/abseil-cpp/absl/time/internal/cctz/src/zone_info_source.cc +36 -35
- data/third_party/abseil-cpp/absl/time/time.cc +2 -2
- data/third_party/abseil-cpp/absl/time/time.h +268 -169
- data/third_party/abseil-cpp/absl/types/internal/optional.h +8 -0
- data/third_party/abseil-cpp/absl/types/internal/span.h +30 -19
- data/third_party/abseil-cpp/absl/types/internal/variant.h +28 -40
- data/third_party/abseil-cpp/absl/types/optional.h +17 -14
- data/third_party/abseil-cpp/absl/types/span.h +31 -8
- data/third_party/boringssl-with-bazel/src/crypto/x509v3/v3_genn.c +1 -1
- data/third_party/boringssl-with-bazel/src/include/openssl/x509v3.h +1 -2
- data/third_party/re2/re2/bitstate.cc +3 -3
- data/third_party/re2/re2/dfa.cc +13 -13
- data/third_party/re2/re2/nfa.cc +4 -4
- data/third_party/re2/re2/onepass.cc +2 -2
- data/third_party/re2/re2/prefilter_tree.cc +27 -59
- data/third_party/re2/re2/prefilter_tree.h +3 -2
- data/third_party/re2/re2/prog.cc +11 -2
- data/third_party/re2/re2/prog.h +17 -5
- data/third_party/re2/re2/re2.cc +6 -11
- data/third_party/re2/re2/re2.h +1 -1
- data/third_party/re2/re2/regexp.cc +1 -2
- data/third_party/re2/re2/stringpiece.h +10 -7
- data/third_party/re2/re2/unicode_casefold.cc +25 -11
- data/third_party/re2/re2/unicode_groups.cc +319 -151
- data/third_party/re2/re2/walker-inl.h +3 -2
- data/third_party/re2/util/mutex.h +4 -4
- data/third_party/upb/third_party/utf8_range/utf8_range.h +1 -1
- data/third_party/upb/upb/arena.c +277 -0
- data/third_party/upb/upb/arena.h +225 -0
- data/third_party/upb/upb/array.c +114 -0
- data/third_party/upb/upb/array.h +83 -0
- data/third_party/upb/upb/collections.h +36 -0
- data/third_party/upb/upb/decode.c +161 -65
- data/third_party/upb/upb/decode.h +1 -0
- data/third_party/upb/upb/decode_fast.c +1 -1
- data/third_party/upb/upb/def.c +10 -2
- data/third_party/upb/upb/def.h +8 -1
- data/third_party/upb/upb/def.hpp +7 -4
- data/third_party/upb/upb/encode.c +29 -20
- data/third_party/upb/upb/encode.h +16 -6
- data/third_party/upb/upb/extension_registry.c +93 -0
- data/third_party/upb/upb/extension_registry.h +84 -0
- data/third_party/upb/upb/{decode_internal.h → internal/decode.h} +5 -5
- data/third_party/upb/upb/internal/table.h +385 -0
- data/third_party/upb/upb/{upb_internal.h → internal/upb.h} +3 -3
- data/third_party/upb/upb/internal/vsnprintf_compat.h +52 -0
- data/third_party/upb/upb/json_decode.c +1512 -0
- data/third_party/upb/upb/json_decode.h +47 -0
- data/third_party/upb/upb/json_encode.c +7 -3
- data/third_party/upb/upb/json_encode.h +6 -3
- data/third_party/upb/upb/map.c +108 -0
- data/third_party/upb/upb/map.h +117 -0
- data/third_party/upb/upb/message_value.h +66 -0
- data/third_party/upb/upb/mini_table.c +1147 -0
- data/third_party/upb/upb/mini_table.h +189 -0
- data/third_party/upb/upb/mini_table.hpp +112 -0
- data/third_party/upb/upb/msg.c +2 -62
- data/third_party/upb/upb/msg.h +2 -45
- data/third_party/upb/upb/msg_internal.h +28 -22
- data/third_party/upb/upb/port_def.inc +2 -1
- data/third_party/upb/upb/port_undef.inc +1 -0
- data/third_party/upb/upb/reflection.c +2 -159
- data/third_party/upb/upb/reflection.h +2 -112
- data/third_party/upb/upb/status.c +86 -0
- data/third_party/upb/upb/status.h +66 -0
- data/third_party/upb/upb/table.c +2 -2
- data/third_party/upb/upb/table_internal.h +3 -352
- data/third_party/upb/upb/text_encode.c +3 -2
- data/third_party/upb/upb/upb.c +4 -290
- data/third_party/upb/upb/upb.h +7 -196
- data/third_party/zlib/compress.c +3 -3
- data/third_party/zlib/crc32.c +21 -12
- data/third_party/zlib/deflate.c +112 -106
- data/third_party/zlib/deflate.h +2 -2
- data/third_party/zlib/gzlib.c +1 -1
- data/third_party/zlib/gzread.c +3 -5
- data/third_party/zlib/gzwrite.c +1 -1
- data/third_party/zlib/infback.c +10 -7
- data/third_party/zlib/inflate.c +5 -2
- data/third_party/zlib/inftrees.c +2 -2
- data/third_party/zlib/inftrees.h +1 -1
- data/third_party/zlib/trees.c +61 -62
- data/third_party/zlib/uncompr.c +2 -2
- data/third_party/zlib/zconf.h +16 -3
- data/third_party/zlib/zlib.h +10 -10
- data/third_party/zlib/zutil.c +9 -7
- data/third_party/zlib/zutil.h +1 -0
- metadata +339 -78
- data/include/grpc/impl/codegen/gpr_slice.h +0 -71
- data/src/core/ext/filters/client_channel/lb_policy_factory.h +0 -50
- data/src/core/ext/filters/client_channel/lb_policy_registry.cc +0 -192
- data/src/core/ext/filters/client_channel/lb_policy_registry.h +0 -70
- data/src/core/ext/filters/client_channel/proxy_mapper.h +0 -54
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.cc +0 -91
- data/src/core/ext/filters/client_channel/proxy_mapper_registry.h +0 -55
- data/src/core/ext/filters/client_channel/resolver_result_parsing.cc +0 -180
- data/src/core/ext/filters/fault_injection/service_config_parser.cc +0 -179
- data/src/core/ext/filters/http/message_compress/message_compress_filter.cc +0 -457
- data/src/core/ext/filters/http/message_compress/message_compress_filter.h +0 -53
- data/src/core/ext/filters/http/message_compress/message_decompress_filter.cc +0 -388
- data/src/core/ext/filters/server_config_selector/server_config_selector.cc +0 -61
- data/src/core/ext/xds/certificate_provider_registry.cc +0 -103
- data/src/core/ext/xds/certificate_provider_registry.h +0 -57
- data/src/core/lib/event_engine/iomgr_engine.cc +0 -206
- data/src/core/lib/event_engine/iomgr_engine.h +0 -118
- data/src/core/lib/gpr/env.h +0 -40
- data/src/core/lib/gpr/env_linux.cc +0 -75
- data/src/core/lib/gpr/env_posix.cc +0 -46
- data/src/core/lib/gpr/env_windows.cc +0 -74
- data/src/core/lib/gpr/murmur_hash.cc +0 -82
- data/src/core/lib/gpr/murmur_hash.h +0 -29
- data/src/core/lib/gpr/string_windows.h +0 -32
- data/src/core/lib/gpr/tls.h +0 -156
- data/src/core/lib/iomgr/error_internal.h +0 -66
- data/src/core/lib/iomgr/executor/mpmcqueue.cc +0 -182
- data/src/core/lib/iomgr/executor/mpmcqueue.h +0 -171
- data/src/core/lib/iomgr/executor/threadpool.cc +0 -136
- data/src/core/lib/iomgr/executor/threadpool.h +0 -150
- data/src/core/lib/iomgr/time_averaged_stats.cc +0 -64
- data/src/core/lib/iomgr/time_averaged_stats.h +0 -72
- data/src/core/lib/profiling/basic_timers.cc +0 -295
- data/src/core/lib/profiling/stap_timers.cc +0 -50
- data/src/core/lib/profiling/timers.h +0 -94
- data/src/core/lib/promise/call_push_pull.h +0 -148
- data/src/core/lib/security/security_connector/load_system_roots_linux.h +0 -46
- data/src/core/lib/slice/slice_api.cc +0 -39
- data/src/core/lib/slice/slice_buffer_api.cc +0 -35
- data/src/core/lib/slice/slice_refcount_base.h +0 -60
- data/src/core/lib/slice/slice_split.cc +0 -103
- data/src/core/lib/slice/slice_split.h +0 -36
- data/src/core/lib/transport/byte_stream.cc +0 -165
- data/src/core/lib/transport/byte_stream.h +0 -170
- data/third_party/abseil-cpp/absl/container/internal/have_sse.h +0 -50
@@ -18,10 +18,17 @@
|
|
18
18
|
|
19
19
|
#include "src/core/ext/xds/xds_listener.h"
|
20
20
|
|
21
|
+
#include <stdint.h>
|
22
|
+
|
23
|
+
#include <initializer_list>
|
24
|
+
#include <set>
|
25
|
+
#include <utility>
|
26
|
+
|
27
|
+
#include "absl/status/status.h"
|
28
|
+
#include "absl/status/statusor.h"
|
21
29
|
#include "absl/strings/str_cat.h"
|
22
30
|
#include "absl/strings/str_format.h"
|
23
31
|
#include "absl/strings/str_join.h"
|
24
|
-
#include "absl/strings/str_split.h"
|
25
32
|
#include "envoy/config/core/v3/address.upb.h"
|
26
33
|
#include "envoy/config/core/v3/base.upb.h"
|
27
34
|
#include "envoy/config/core/v3/config_source.upb.h"
|
@@ -30,52 +37,50 @@
|
|
30
37
|
#include "envoy/config/listener/v3/listener.upb.h"
|
31
38
|
#include "envoy/config/listener/v3/listener.upbdefs.h"
|
32
39
|
#include "envoy/config/listener/v3/listener_components.upb.h"
|
40
|
+
#include "envoy/config/route/v3/route.upb.h"
|
33
41
|
#include "envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upb.h"
|
34
42
|
#include "envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.upbdefs.h"
|
43
|
+
#include "envoy/extensions/transport_sockets/tls/v3/tls.upb.h"
|
44
|
+
#include "google/protobuf/any.upb.h"
|
45
|
+
#include "google/protobuf/duration.upb.h"
|
35
46
|
#include "google/protobuf/wrappers.upb.h"
|
36
47
|
#include "upb/text_encode.h"
|
37
48
|
#include "upb/upb.h"
|
38
|
-
#include "upb/upb.hpp"
|
39
49
|
|
50
|
+
#include <grpc/support/log.h>
|
51
|
+
|
52
|
+
#include "src/core/ext/xds/upb_utils.h"
|
40
53
|
#include "src/core/ext/xds/xds_common_types.h"
|
54
|
+
#include "src/core/ext/xds/xds_resource_type.h"
|
41
55
|
#include "src/core/lib/address_utils/parse_address.h"
|
42
56
|
#include "src/core/lib/address_utils/sockaddr_utils.h"
|
57
|
+
#include "src/core/lib/debug/trace.h"
|
43
58
|
#include "src/core/lib/gprpp/host_port.h"
|
59
|
+
#include "src/core/lib/gprpp/match.h"
|
60
|
+
#include "src/core/lib/gprpp/validation_errors.h"
|
44
61
|
#include "src/core/lib/iomgr/sockaddr.h"
|
45
62
|
|
46
63
|
namespace grpc_core {
|
47
64
|
|
48
|
-
//
|
49
|
-
// XdsListenerResource::DownstreamTlsContext
|
50
|
-
//
|
51
|
-
|
52
|
-
std::string XdsListenerResource::DownstreamTlsContext::ToString() const {
|
53
|
-
return absl::StrFormat("common_tls_context=%s, require_client_certificate=%s",
|
54
|
-
common_tls_context.ToString(),
|
55
|
-
require_client_certificate ? "true" : "false");
|
56
|
-
}
|
57
|
-
|
58
|
-
bool XdsListenerResource::DownstreamTlsContext::Empty() const {
|
59
|
-
return common_tls_context.Empty();
|
60
|
-
}
|
61
|
-
|
62
65
|
//
|
63
66
|
// XdsListenerResource::HttpConnectionManager
|
64
67
|
//
|
65
68
|
|
66
69
|
std::string XdsListenerResource::HttpConnectionManager::ToString() const {
|
67
|
-
|
68
|
-
contents.push_back(
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
70
|
+
std::vector<std::string> contents;
|
71
|
+
contents.push_back(Match(
|
72
|
+
route_config,
|
73
|
+
[](const std::string& rds_name) {
|
74
|
+
return absl::StrCat("rds_name=", rds_name);
|
75
|
+
},
|
76
|
+
[](const XdsRouteConfigResource& route_config) {
|
77
|
+
return absl::StrCat("route_config=", route_config.ToString());
|
78
|
+
}));
|
79
|
+
contents.push_back(absl::StrCat("http_max_stream_duration=",
|
80
|
+
http_max_stream_duration.ToString()));
|
77
81
|
if (!http_filters.empty()) {
|
78
82
|
std::vector<std::string> filter_strings;
|
83
|
+
filter_strings.reserve(http_filters.size());
|
79
84
|
for (const auto& http_filter : http_filters) {
|
80
85
|
filter_strings.push_back(http_filter.ToString());
|
81
86
|
}
|
@@ -86,7 +91,7 @@ std::string XdsListenerResource::HttpConnectionManager::ToString() const {
|
|
86
91
|
}
|
87
92
|
|
88
93
|
//
|
89
|
-
// XdsListenerResource::HttpFilter
|
94
|
+
// XdsListenerResource::HttpConnectionManager::HttpFilter
|
90
95
|
//
|
91
96
|
|
92
97
|
std::string XdsListenerResource::HttpConnectionManager::HttpFilter::ToString()
|
@@ -94,6 +99,20 @@ std::string XdsListenerResource::HttpConnectionManager::HttpFilter::ToString()
|
|
94
99
|
return absl::StrCat("{name=", name, ", config=", config.ToString(), "}");
|
95
100
|
}
|
96
101
|
|
102
|
+
//
|
103
|
+
// XdsListenerResource::DownstreamTlsContext
|
104
|
+
//
|
105
|
+
|
106
|
+
std::string XdsListenerResource::DownstreamTlsContext::ToString() const {
|
107
|
+
return absl::StrFormat("common_tls_context=%s, require_client_certificate=%s",
|
108
|
+
common_tls_context.ToString(),
|
109
|
+
require_client_certificate ? "true" : "false");
|
110
|
+
}
|
111
|
+
|
112
|
+
bool XdsListenerResource::DownstreamTlsContext::Empty() const {
|
113
|
+
return common_tls_context.Empty();
|
114
|
+
}
|
115
|
+
|
97
116
|
//
|
98
117
|
// XdsListenerResource::FilterChainData
|
99
118
|
//
|
@@ -140,12 +159,13 @@ struct FilterChain {
|
|
140
159
|
};
|
141
160
|
|
142
161
|
std::string FilterChain::FilterChainMatch::ToString() const {
|
143
|
-
|
162
|
+
std::vector<std::string> contents;
|
144
163
|
if (destination_port != 0) {
|
145
164
|
contents.push_back(absl::StrCat("destination_port=", destination_port));
|
146
165
|
}
|
147
166
|
if (!prefix_ranges.empty()) {
|
148
167
|
std::vector<std::string> prefix_ranges_content;
|
168
|
+
prefix_ranges_content.reserve(prefix_ranges.size());
|
149
169
|
for (const auto& range : prefix_ranges) {
|
150
170
|
prefix_ranges_content.push_back(range.ToString());
|
151
171
|
}
|
@@ -161,6 +181,7 @@ std::string FilterChain::FilterChainMatch::ToString() const {
|
|
161
181
|
}
|
162
182
|
if (!source_prefix_ranges.empty()) {
|
163
183
|
std::vector<std::string> source_prefix_ranges_content;
|
184
|
+
source_prefix_ranges_content.reserve(source_prefix_ranges.size());
|
164
185
|
for (const auto& range : source_prefix_ranges) {
|
165
186
|
source_prefix_ranges_content.push_back(range.ToString());
|
166
187
|
}
|
@@ -225,26 +246,36 @@ std::string XdsListenerResource::FilterChainMap::ToString() const {
|
|
225
246
|
}
|
226
247
|
|
227
248
|
//
|
228
|
-
// XdsListenerResource
|
249
|
+
// XdsListenerResource::TcpListener
|
229
250
|
//
|
230
251
|
|
231
|
-
std::string XdsListenerResource::ToString() const {
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
default_filter_chain->ToString()));
|
240
|
-
}
|
241
|
-
} else if (type == ListenerType::kHttpApiListener) {
|
242
|
-
contents.push_back(absl::StrFormat("http_connection_manager=%s",
|
243
|
-
http_connection_manager.ToString()));
|
252
|
+
std::string XdsListenerResource::TcpListener::ToString() const {
|
253
|
+
std::vector<std::string> contents;
|
254
|
+
contents.push_back(absl::StrCat("address=", address));
|
255
|
+
contents.push_back(
|
256
|
+
absl::StrCat("filter_chain_map=", filter_chain_map.ToString()));
|
257
|
+
if (default_filter_chain.has_value()) {
|
258
|
+
contents.push_back(absl::StrCat("default_filter_chain=",
|
259
|
+
default_filter_chain->ToString()));
|
244
260
|
}
|
245
261
|
return absl::StrCat("{", absl::StrJoin(contents, ", "), "}");
|
246
262
|
}
|
247
263
|
|
264
|
+
//
|
265
|
+
// XdsListenerResource
|
266
|
+
//
|
267
|
+
|
268
|
+
std::string XdsListenerResource::ToString() const {
|
269
|
+
return Match(
|
270
|
+
listener,
|
271
|
+
[](const HttpConnectionManager& hcm) {
|
272
|
+
return absl::StrCat("{http_connection_manager=", hcm.ToString(), "}");
|
273
|
+
},
|
274
|
+
[](const TcpListener& tcp) {
|
275
|
+
return absl::StrCat("{tcp_listener=", tcp.ToString(), "}");
|
276
|
+
});
|
277
|
+
}
|
278
|
+
|
248
279
|
//
|
249
280
|
// XdsListenerResourceType
|
250
281
|
//
|
@@ -252,7 +283,7 @@ std::string XdsListenerResource::ToString() const {
|
|
252
283
|
namespace {
|
253
284
|
|
254
285
|
void MaybeLogHttpConnectionManager(
|
255
|
-
const
|
286
|
+
const XdsResourceType::DecodeContext& context,
|
256
287
|
const envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager*
|
257
288
|
http_connection_manager_config) {
|
258
289
|
if (GRPC_TRACE_FLAG_ENABLED(*context.tracer) &&
|
@@ -268,116 +299,144 @@ void MaybeLogHttpConnectionManager(
|
|
268
299
|
}
|
269
300
|
}
|
270
301
|
|
271
|
-
|
272
|
-
bool is_client, const
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
302
|
+
XdsListenerResource::HttpConnectionManager HttpConnectionManagerParse(
|
303
|
+
bool is_client, const XdsResourceType::DecodeContext& context,
|
304
|
+
XdsExtension extension, ValidationErrors* errors) {
|
305
|
+
if (extension.type !=
|
306
|
+
"envoy.extensions.filters.network.http_connection_manager.v3"
|
307
|
+
".HttpConnectionManager") {
|
308
|
+
errors->AddError("unsupported filter type");
|
309
|
+
return {};
|
310
|
+
}
|
311
|
+
auto* serialized_hcm_config =
|
312
|
+
absl::get_if<absl::string_view>(&extension.value);
|
313
|
+
if (serialized_hcm_config == nullptr) {
|
314
|
+
errors->AddError("could not parse HttpConnectionManager config");
|
315
|
+
return {};
|
316
|
+
}
|
317
|
+
const auto* http_connection_manager_proto =
|
318
|
+
envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_parse(
|
319
|
+
serialized_hcm_config->data(), serialized_hcm_config->size(),
|
320
|
+
context.arena);
|
321
|
+
if (http_connection_manager_proto == nullptr) {
|
322
|
+
errors->AddError("could not parse HttpConnectionManager config");
|
323
|
+
return {};
|
324
|
+
}
|
277
325
|
MaybeLogHttpConnectionManager(context, http_connection_manager_proto);
|
278
|
-
|
279
|
-
//
|
326
|
+
XdsListenerResource::HttpConnectionManager http_connection_manager;
|
327
|
+
// xff_num_trusted_hops -- must be zero as per
|
280
328
|
// https://github.com/grpc/proposal/blob/master/A41-xds-rbac.md
|
281
329
|
if (envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_xff_num_trusted_hops(
|
282
330
|
http_connection_manager_proto) != 0) {
|
283
|
-
|
284
|
-
|
331
|
+
ValidationErrors::ScopedField field(errors, ".xff_num_trusted_hops");
|
332
|
+
errors->AddError("must be zero");
|
285
333
|
}
|
334
|
+
// original_ip_detection_extensions -- must be empty as per
|
335
|
+
// https://github.com/grpc/proposal/blob/master/A41-xds-rbac.md
|
286
336
|
if (envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_original_ip_detection_extensions(
|
287
337
|
http_connection_manager_proto)) {
|
288
|
-
|
289
|
-
|
338
|
+
ValidationErrors::ScopedField field(errors,
|
339
|
+
".original_ip_detection_extensions");
|
340
|
+
errors->AddError("must be empty");
|
290
341
|
}
|
291
|
-
//
|
342
|
+
// common_http_protocol_options
|
292
343
|
const envoy_config_core_v3_HttpProtocolOptions* options =
|
293
344
|
envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_common_http_protocol_options(
|
294
345
|
http_connection_manager_proto);
|
295
346
|
if (options != nullptr) {
|
347
|
+
// max_stream_duration
|
296
348
|
const google_protobuf_Duration* duration =
|
297
349
|
envoy_config_core_v3_HttpProtocolOptions_max_stream_duration(options);
|
298
350
|
if (duration != nullptr) {
|
299
|
-
|
300
|
-
|
351
|
+
ValidationErrors::ScopedField field(
|
352
|
+
errors, ".common_http_protocol_options.max_stream_duration");
|
353
|
+
http_connection_manager.http_max_stream_duration =
|
354
|
+
ParseDuration(duration, errors);
|
301
355
|
}
|
302
356
|
}
|
303
|
-
//
|
304
|
-
|
357
|
+
// http_filters
|
358
|
+
{
|
359
|
+
ValidationErrors::ScopedField field(errors, ".http_filters");
|
360
|
+
const auto& http_filter_registry =
|
361
|
+
static_cast<const GrpcXdsBootstrap&>(context.client->bootstrap())
|
362
|
+
.http_filter_registry();
|
305
363
|
size_t num_filters = 0;
|
306
364
|
const auto* http_filters =
|
307
365
|
envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_http_filters(
|
308
366
|
http_connection_manager_proto, &num_filters);
|
309
367
|
std::set<absl::string_view> names_seen;
|
368
|
+
const size_t original_error_size = errors->size();
|
310
369
|
for (size_t i = 0; i < num_filters; ++i) {
|
370
|
+
ValidationErrors::ScopedField field(errors, absl::StrCat("[", i, "]"));
|
311
371
|
const auto* http_filter = http_filters[i];
|
372
|
+
// name
|
312
373
|
absl::string_view name = UpbStringToAbsl(
|
313
374
|
envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_name(
|
314
375
|
http_filter));
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
376
|
+
{
|
377
|
+
ValidationErrors::ScopedField field(errors, ".name");
|
378
|
+
if (name.empty()) {
|
379
|
+
errors->AddError("empty filter name");
|
380
|
+
continue;
|
381
|
+
}
|
382
|
+
if (names_seen.find(name) != names_seen.end()) {
|
383
|
+
errors->AddError(absl::StrCat("duplicate HTTP filter name: ", name));
|
384
|
+
continue;
|
385
|
+
}
|
322
386
|
}
|
323
387
|
names_seen.insert(name);
|
388
|
+
// is_optional
|
324
389
|
const bool is_optional =
|
325
390
|
envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_is_optional(
|
326
391
|
http_filter);
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
absl::StrCat("
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
return GRPC_ERROR_CREATE_FROM_CPP_STRING(absl::StrCat(
|
358
|
-
"filter config for type ", filter_type,
|
359
|
-
" failed to parse: ", StatusToString(filter_config.status())));
|
392
|
+
// typed_config
|
393
|
+
{
|
394
|
+
ValidationErrors::ScopedField field(errors, ".typed_config");
|
395
|
+
const google_protobuf_Any* typed_config =
|
396
|
+
envoy_extensions_filters_network_http_connection_manager_v3_HttpFilter_typed_config(
|
397
|
+
http_filter);
|
398
|
+
auto extension = ExtractXdsExtension(context, typed_config, errors);
|
399
|
+
if (!extension.has_value()) continue;
|
400
|
+
const XdsHttpFilterImpl* filter_impl =
|
401
|
+
http_filter_registry.GetFilterForType(extension->type);
|
402
|
+
if (filter_impl == nullptr) {
|
403
|
+
if (!is_optional) errors->AddError("unsupported filter type");
|
404
|
+
continue;
|
405
|
+
}
|
406
|
+
if ((is_client && !filter_impl->IsSupportedOnClients()) ||
|
407
|
+
(!is_client && !filter_impl->IsSupportedOnServers())) {
|
408
|
+
if (!is_optional) {
|
409
|
+
errors->AddError(absl::StrCat("filter is not supported on ",
|
410
|
+
is_client ? "clients" : "servers"));
|
411
|
+
}
|
412
|
+
continue;
|
413
|
+
}
|
414
|
+
absl::optional<XdsHttpFilterImpl::FilterConfig> filter_config =
|
415
|
+
filter_impl->GenerateFilterConfig(context, std::move(*extension),
|
416
|
+
errors);
|
417
|
+
if (filter_config.has_value()) {
|
418
|
+
http_connection_manager.http_filters.emplace_back(
|
419
|
+
XdsListenerResource::HttpConnectionManager::HttpFilter{
|
420
|
+
std::string(name), std::move(*filter_config)});
|
421
|
+
}
|
360
422
|
}
|
361
|
-
http_connection_manager->http_filters.emplace_back(
|
362
|
-
XdsListenerResource::HttpConnectionManager::HttpFilter{
|
363
|
-
std::string(name), std::move(*filter_config)});
|
364
423
|
}
|
365
|
-
if (
|
366
|
-
|
367
|
-
|
424
|
+
if (errors->size() == original_error_size &&
|
425
|
+
http_connection_manager.http_filters.empty()) {
|
426
|
+
errors->AddError("expected at least one HTTP filter");
|
368
427
|
}
|
369
428
|
// Make sure that the last filter is terminal and non-last filters are
|
370
429
|
// non-terminal. Note that this check is being performed in a separate loop
|
371
430
|
// to take care of the case where there are two terminal filters in the list
|
372
431
|
// out of which only one gets added in the final list.
|
373
|
-
for (const auto& http_filter : http_connection_manager
|
432
|
+
for (const auto& http_filter : http_connection_manager.http_filters) {
|
374
433
|
const XdsHttpFilterImpl* filter_impl =
|
375
|
-
|
434
|
+
http_filter_registry.GetFilterForType(
|
376
435
|
http_filter.config.config_proto_type_name);
|
377
|
-
if (&http_filter != &http_connection_manager
|
436
|
+
if (&http_filter != &http_connection_manager.http_filters.back()) {
|
378
437
|
// Filters before the last filter must not be terminal.
|
379
438
|
if (filter_impl->IsTerminalFilter()) {
|
380
|
-
|
439
|
+
errors->AddError(
|
381
440
|
absl::StrCat("terminal filter for config type ",
|
382
441
|
http_filter.config.config_proto_type_name,
|
383
442
|
" must be the last filter in the chain"));
|
@@ -385,340 +444,348 @@ grpc_error_handle HttpConnectionManagerParse(
|
|
385
444
|
} else {
|
386
445
|
// The last filter must be terminal.
|
387
446
|
if (!filter_impl->IsTerminalFilter()) {
|
388
|
-
|
447
|
+
errors->AddError(
|
389
448
|
absl::StrCat("non-terminal filter for config type ",
|
390
449
|
http_filter.config.config_proto_type_name,
|
391
450
|
" is the last filter in the chain"));
|
392
451
|
}
|
393
452
|
}
|
394
453
|
}
|
454
|
+
}
|
455
|
+
// Found inlined route_config. Parse it to find the cluster_name.
|
456
|
+
if (envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_route_config(
|
457
|
+
http_connection_manager_proto)) {
|
458
|
+
const envoy_config_route_v3_RouteConfiguration* route_config =
|
459
|
+
envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_route_config(
|
460
|
+
http_connection_manager_proto);
|
461
|
+
ValidationErrors::ScopedField field(errors, ".route_config");
|
462
|
+
http_connection_manager.route_config =
|
463
|
+
XdsRouteConfigResource::Parse(context, route_config, errors);
|
395
464
|
} else {
|
396
|
-
// If using a v2 config, we just hard-code a list containing only the
|
397
|
-
// router filter without actually looking at the config. This ensures
|
398
|
-
// that the right thing happens in the xds resolver without having
|
399
|
-
// to expose whether the resource we received was v2 or v3.
|
400
|
-
http_connection_manager->http_filters.emplace_back(
|
401
|
-
XdsListenerResource::HttpConnectionManager::HttpFilter{
|
402
|
-
"router", {kXdsHttpRouterFilterConfigName, Json()}});
|
403
|
-
}
|
404
|
-
// Guarding parsing of RouteConfig on the server side with the environmental
|
405
|
-
// variable since that's the first feature on the server side that will be
|
406
|
-
// using this.
|
407
|
-
if (is_client || XdsRbacEnabled()) {
|
408
|
-
// Found inlined route_config. Parse it to find the cluster_name.
|
409
|
-
if (envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_has_route_config(
|
410
|
-
http_connection_manager_proto)) {
|
411
|
-
const envoy_config_route_v3_RouteConfiguration* route_config =
|
412
|
-
envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_route_config(
|
413
|
-
http_connection_manager_proto);
|
414
|
-
XdsRouteConfigResource rds_update;
|
415
|
-
grpc_error_handle error =
|
416
|
-
XdsRouteConfigResource::Parse(context, route_config, &rds_update);
|
417
|
-
if (error != GRPC_ERROR_NONE) return error;
|
418
|
-
http_connection_manager->rds_update = std::move(rds_update);
|
419
|
-
return GRPC_ERROR_NONE;
|
420
|
-
}
|
421
465
|
// Validate that RDS must be used to get the route_config dynamically.
|
422
466
|
const envoy_extensions_filters_network_http_connection_manager_v3_Rds* rds =
|
423
467
|
envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_rds(
|
424
468
|
http_connection_manager_proto);
|
425
469
|
if (rds == nullptr) {
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
470
|
+
errors->AddError("neither route_config nor rds fields are present");
|
471
|
+
} else {
|
472
|
+
// Get the route_config_name.
|
473
|
+
http_connection_manager.route_config = UpbStringToStdString(
|
474
|
+
envoy_extensions_filters_network_http_connection_manager_v3_Rds_route_config_name(
|
475
|
+
rds));
|
476
|
+
// Check that the ConfigSource specifies ADS.
|
477
|
+
const envoy_config_core_v3_ConfigSource* config_source =
|
478
|
+
envoy_extensions_filters_network_http_connection_manager_v3_Rds_config_source(
|
479
|
+
rds);
|
480
|
+
ValidationErrors::ScopedField field(errors, ".rds.config_source");
|
481
|
+
if (config_source == nullptr) {
|
482
|
+
errors->AddError("field not present");
|
483
|
+
} else if (!envoy_config_core_v3_ConfigSource_has_ads(config_source) &&
|
484
|
+
!envoy_config_core_v3_ConfigSource_has_self(config_source)) {
|
485
|
+
errors->AddError("ConfigSource does not specify ADS or SELF");
|
486
|
+
}
|
442
487
|
}
|
443
|
-
// Get the route_config_name.
|
444
|
-
http_connection_manager->route_config_name = UpbStringToStdString(
|
445
|
-
envoy_extensions_filters_network_http_connection_manager_v3_Rds_route_config_name(
|
446
|
-
rds));
|
447
488
|
}
|
448
|
-
return
|
489
|
+
return http_connection_manager;
|
449
490
|
}
|
450
491
|
|
451
|
-
|
452
|
-
const
|
453
|
-
const envoy_config_listener_v3_ApiListener* api_listener
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
return
|
466
|
-
http_connection_manager, is_v2,
|
467
|
-
&lds_update->http_connection_manager);
|
492
|
+
absl::StatusOr<XdsListenerResource> LdsResourceParseClient(
|
493
|
+
const XdsResourceType::DecodeContext& context,
|
494
|
+
const envoy_config_listener_v3_ApiListener* api_listener) {
|
495
|
+
XdsListenerResource lds_update;
|
496
|
+
ValidationErrors errors;
|
497
|
+
ValidationErrors::ScopedField field(&errors, "api_listener.api_listener");
|
498
|
+
auto* api_listener_field =
|
499
|
+
envoy_config_listener_v3_ApiListener_api_listener(api_listener);
|
500
|
+
auto extension = ExtractXdsExtension(context, api_listener_field, &errors);
|
501
|
+
if (extension.has_value()) {
|
502
|
+
lds_update.listener = HttpConnectionManagerParse(
|
503
|
+
/*is_client=*/true, context, std::move(*extension), &errors);
|
504
|
+
}
|
505
|
+
if (!errors.ok()) return errors.status("errors validating ApiListener");
|
506
|
+
return std::move(lds_update);
|
468
507
|
}
|
469
508
|
|
470
|
-
|
471
|
-
const
|
509
|
+
XdsListenerResource::DownstreamTlsContext DownstreamTlsContextParse(
|
510
|
+
const XdsResourceType::DecodeContext& context,
|
472
511
|
const envoy_config_core_v3_TransportSocket* transport_socket,
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
if (name != "envoy.transport_sockets.tls") {
|
477
|
-
return GRPC_ERROR_CREATE_FROM_CPP_STRING(
|
478
|
-
absl::StrCat("Unrecognized transport socket: ", name));
|
479
|
-
}
|
480
|
-
auto* typed_config =
|
512
|
+
ValidationErrors* errors) {
|
513
|
+
ValidationErrors::ScopedField field(errors, ".typed_config");
|
514
|
+
const auto* typed_config =
|
481
515
|
envoy_config_core_v3_TransportSocket_typed_config(transport_socket);
|
482
|
-
|
483
|
-
if (
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
}
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
downstream_tls_context_proto) !=
|
520
|
-
envoy_extensions_transport_sockets_tls_v3_DownstreamTlsContext_LENIENT_STAPLING) {
|
521
|
-
errors.push_back(GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
522
|
-
"ocsp_staple_policy: Only LENIENT_STAPLING supported"));
|
516
|
+
auto extension = ExtractXdsExtension(context, typed_config, errors);
|
517
|
+
if (!extension.has_value()) return {};
|
518
|
+
if (extension->type !=
|
519
|
+
"envoy.extensions.transport_sockets.tls.v3.DownstreamTlsContext") {
|
520
|
+
ValidationErrors::ScopedField field(errors, ".type_url");
|
521
|
+
errors->AddError("unsupported transport socket type");
|
522
|
+
return {};
|
523
|
+
}
|
524
|
+
absl::string_view* serialized_downstream_tls_context =
|
525
|
+
absl::get_if<absl::string_view>(&extension->value);
|
526
|
+
if (serialized_downstream_tls_context == nullptr) {
|
527
|
+
errors->AddError("can't decode DownstreamTlsContext");
|
528
|
+
return {};
|
529
|
+
}
|
530
|
+
const auto* downstream_tls_context_proto =
|
531
|
+
envoy_extensions_transport_sockets_tls_v3_DownstreamTlsContext_parse(
|
532
|
+
serialized_downstream_tls_context->data(),
|
533
|
+
serialized_downstream_tls_context->size(), context.arena);
|
534
|
+
if (downstream_tls_context_proto == nullptr) {
|
535
|
+
errors->AddError("can't decode DownstreamTlsContext");
|
536
|
+
return {};
|
537
|
+
}
|
538
|
+
XdsListenerResource::DownstreamTlsContext downstream_tls_context;
|
539
|
+
auto* common_tls_context =
|
540
|
+
envoy_extensions_transport_sockets_tls_v3_DownstreamTlsContext_common_tls_context(
|
541
|
+
downstream_tls_context_proto);
|
542
|
+
if (common_tls_context != nullptr) {
|
543
|
+
ValidationErrors::ScopedField field(errors, ".common_tls_context");
|
544
|
+
downstream_tls_context.common_tls_context =
|
545
|
+
CommonTlsContext::Parse(context, common_tls_context, errors);
|
546
|
+
// Note: We can't be more specific about the field name for this
|
547
|
+
// error, because we don't know which fields they were found in
|
548
|
+
// inside of CommonTlsContext, so we make the error message a bit
|
549
|
+
// more verbose to compensate.
|
550
|
+
if (!downstream_tls_context.common_tls_context
|
551
|
+
.certificate_validation_context.match_subject_alt_names.empty()) {
|
552
|
+
errors->AddError("match_subject_alt_names not supported on servers");
|
523
553
|
}
|
524
554
|
}
|
525
|
-
|
555
|
+
// Note: We can't be more specific about the field name for this
|
556
|
+
// error, because we don't know which fields they were found in
|
557
|
+
// inside of CommonTlsContext, so we make the error message a bit
|
558
|
+
// more verbose to compensate.
|
559
|
+
if (downstream_tls_context.common_tls_context
|
526
560
|
.tls_certificate_provider_instance.instance_name.empty()) {
|
527
|
-
errors
|
561
|
+
errors->AddError(
|
528
562
|
"TLS configuration provided but no "
|
529
|
-
"tls_certificate_provider_instance found
|
530
|
-
}
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
563
|
+
"tls_certificate_provider_instance found");
|
564
|
+
}
|
565
|
+
auto* require_client_certificate =
|
566
|
+
envoy_extensions_transport_sockets_tls_v3_DownstreamTlsContext_require_client_certificate(
|
567
|
+
downstream_tls_context_proto);
|
568
|
+
if (require_client_certificate != nullptr) {
|
569
|
+
downstream_tls_context.require_client_certificate =
|
570
|
+
google_protobuf_BoolValue_value(require_client_certificate);
|
571
|
+
if (downstream_tls_context.require_client_certificate &&
|
572
|
+
downstream_tls_context.common_tls_context.certificate_validation_context
|
573
|
+
.ca_certificate_provider_instance.instance_name.empty()) {
|
574
|
+
ValidationErrors::ScopedField field(errors,
|
575
|
+
".require_client_certificate");
|
576
|
+
errors->AddError(
|
577
|
+
"client certificate required but no certificate "
|
578
|
+
"provider instance specified for validation");
|
579
|
+
}
|
580
|
+
}
|
581
|
+
auto* require_sni =
|
582
|
+
envoy_extensions_transport_sockets_tls_v3_DownstreamTlsContext_require_sni(
|
583
|
+
downstream_tls_context_proto);
|
584
|
+
if (require_sni != nullptr && google_protobuf_BoolValue_value(require_sni)) {
|
585
|
+
ValidationErrors::ScopedField field(errors, ".require_sni");
|
586
|
+
errors->AddError("field unsupported");
|
587
|
+
}
|
588
|
+
if (envoy_extensions_transport_sockets_tls_v3_DownstreamTlsContext_ocsp_staple_policy(
|
589
|
+
downstream_tls_context_proto) !=
|
590
|
+
envoy_extensions_transport_sockets_tls_v3_DownstreamTlsContext_LENIENT_STAPLING) {
|
591
|
+
ValidationErrors::ScopedField field(errors, ".ocsp_staple_policy");
|
592
|
+
errors->AddError("value must be LENIENT_STAPLING");
|
593
|
+
}
|
594
|
+
return downstream_tls_context;
|
545
595
|
}
|
546
596
|
|
547
|
-
|
597
|
+
absl::optional<XdsListenerResource::FilterChainMap::CidrRange> CidrRangeParse(
|
548
598
|
const envoy_config_core_v3_CidrRange* cidr_range_proto,
|
549
|
-
|
599
|
+
ValidationErrors* errors) {
|
600
|
+
ValidationErrors::ScopedField field(errors, ".address_prefix");
|
601
|
+
XdsListenerResource::FilterChainMap::CidrRange cidr_range;
|
550
602
|
std::string address_prefix = UpbStringToStdString(
|
551
603
|
envoy_config_core_v3_CidrRange_address_prefix(cidr_range_proto));
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
604
|
+
auto address = StringToSockaddr(address_prefix, /*port=*/0);
|
605
|
+
if (!address.ok()) {
|
606
|
+
errors->AddError(address.status().message());
|
607
|
+
return absl::nullopt;
|
608
|
+
}
|
609
|
+
cidr_range.address = *address;
|
610
|
+
cidr_range.prefix_len = 0;
|
556
611
|
auto* prefix_len_proto =
|
557
612
|
envoy_config_core_v3_CidrRange_prefix_len(cidr_range_proto);
|
558
613
|
if (prefix_len_proto != nullptr) {
|
559
|
-
cidr_range
|
614
|
+
cidr_range.prefix_len = std::min(
|
560
615
|
google_protobuf_UInt32Value_value(prefix_len_proto),
|
561
|
-
(reinterpret_cast<const grpc_sockaddr*>(cidr_range
|
616
|
+
(reinterpret_cast<const grpc_sockaddr*>(cidr_range.address.addr))
|
562
617
|
->sa_family == GRPC_AF_INET
|
563
|
-
? uint32_t
|
564
|
-
: uint32_t
|
618
|
+
? uint32_t{32}
|
619
|
+
: uint32_t{128});
|
565
620
|
}
|
566
621
|
// Normalize the network address by masking it with prefix_len
|
567
|
-
grpc_sockaddr_mask_bits(&cidr_range
|
568
|
-
return
|
622
|
+
grpc_sockaddr_mask_bits(&cidr_range.address, cidr_range.prefix_len);
|
623
|
+
return cidr_range;
|
569
624
|
}
|
570
625
|
|
571
|
-
|
626
|
+
absl::optional<FilterChain::FilterChainMatch> FilterChainMatchParse(
|
572
627
|
const envoy_config_listener_v3_FilterChainMatch* filter_chain_match_proto,
|
573
|
-
|
628
|
+
ValidationErrors* errors) {
|
629
|
+
FilterChain::FilterChainMatch filter_chain_match;
|
630
|
+
const size_t original_error_size = errors->size();
|
631
|
+
// destination_port
|
574
632
|
auto* destination_port =
|
575
633
|
envoy_config_listener_v3_FilterChainMatch_destination_port(
|
576
634
|
filter_chain_match_proto);
|
577
635
|
if (destination_port != nullptr) {
|
578
|
-
filter_chain_match
|
636
|
+
filter_chain_match.destination_port =
|
579
637
|
google_protobuf_UInt32Value_value(destination_port);
|
580
638
|
}
|
639
|
+
// prefix_ranges
|
581
640
|
size_t size = 0;
|
582
641
|
auto* prefix_ranges = envoy_config_listener_v3_FilterChainMatch_prefix_ranges(
|
583
642
|
filter_chain_match_proto, &size);
|
584
|
-
filter_chain_match
|
643
|
+
filter_chain_match.prefix_ranges.reserve(size);
|
585
644
|
for (size_t i = 0; i < size; i++) {
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
645
|
+
ValidationErrors::ScopedField field(
|
646
|
+
errors, absl::StrCat(".prefix_ranges[", i, "]"));
|
647
|
+
auto cidr_range = CidrRangeParse(prefix_ranges[i], errors);
|
648
|
+
if (cidr_range.has_value()) {
|
649
|
+
filter_chain_match.prefix_ranges.push_back(*cidr_range);
|
650
|
+
}
|
590
651
|
}
|
591
|
-
|
652
|
+
// source_type
|
653
|
+
filter_chain_match.source_type =
|
592
654
|
static_cast<XdsListenerResource::FilterChainMap::ConnectionSourceType>(
|
593
655
|
envoy_config_listener_v3_FilterChainMatch_source_type(
|
594
656
|
filter_chain_match_proto));
|
657
|
+
// source_prefix_ranges
|
595
658
|
auto* source_prefix_ranges =
|
596
659
|
envoy_config_listener_v3_FilterChainMatch_source_prefix_ranges(
|
597
660
|
filter_chain_match_proto, &size);
|
598
|
-
filter_chain_match
|
661
|
+
filter_chain_match.source_prefix_ranges.reserve(size);
|
599
662
|
for (size_t i = 0; i < size; i++) {
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
if (
|
604
|
-
|
663
|
+
ValidationErrors::ScopedField field(
|
664
|
+
errors, absl::StrCat(".source_prefix_ranges[", i, "]"));
|
665
|
+
auto cidr_range = CidrRangeParse(source_prefix_ranges[i], errors);
|
666
|
+
if (cidr_range.has_value()) {
|
667
|
+
filter_chain_match.source_prefix_ranges.push_back(*cidr_range);
|
668
|
+
}
|
605
669
|
}
|
670
|
+
// source_ports
|
606
671
|
auto* source_ports = envoy_config_listener_v3_FilterChainMatch_source_ports(
|
607
672
|
filter_chain_match_proto, &size);
|
608
|
-
filter_chain_match
|
673
|
+
filter_chain_match.source_ports.reserve(size);
|
609
674
|
for (size_t i = 0; i < size; i++) {
|
610
|
-
filter_chain_match
|
675
|
+
filter_chain_match.source_ports.push_back(source_ports[i]);
|
611
676
|
}
|
677
|
+
// server_names
|
612
678
|
auto* server_names = envoy_config_listener_v3_FilterChainMatch_server_names(
|
613
679
|
filter_chain_match_proto, &size);
|
614
680
|
for (size_t i = 0; i < size; i++) {
|
615
|
-
filter_chain_match
|
681
|
+
filter_chain_match.server_names.push_back(
|
616
682
|
UpbStringToStdString(server_names[i]));
|
617
683
|
}
|
618
|
-
|
684
|
+
// transport_protocol
|
685
|
+
filter_chain_match.transport_protocol = UpbStringToStdString(
|
619
686
|
envoy_config_listener_v3_FilterChainMatch_transport_protocol(
|
620
687
|
filter_chain_match_proto));
|
688
|
+
// application_protocols
|
621
689
|
auto* application_protocols =
|
622
690
|
envoy_config_listener_v3_FilterChainMatch_application_protocols(
|
623
691
|
filter_chain_match_proto, &size);
|
624
692
|
for (size_t i = 0; i < size; i++) {
|
625
|
-
filter_chain_match
|
693
|
+
filter_chain_match.application_protocols.push_back(
|
626
694
|
UpbStringToStdString(application_protocols[i]));
|
627
695
|
}
|
628
|
-
|
696
|
+
// Return result.
|
697
|
+
if (errors->size() != original_error_size) return absl::nullopt;
|
698
|
+
return filter_chain_match;
|
629
699
|
}
|
630
700
|
|
631
|
-
|
632
|
-
const
|
633
|
-
const envoy_config_listener_v3_FilterChain* filter_chain_proto,
|
634
|
-
|
635
|
-
|
701
|
+
absl::optional<FilterChain> FilterChainParse(
|
702
|
+
const XdsResourceType::DecodeContext& context,
|
703
|
+
const envoy_config_listener_v3_FilterChain* filter_chain_proto,
|
704
|
+
ValidationErrors* errors) {
|
705
|
+
FilterChain filter_chain;
|
706
|
+
const size_t original_error_size = errors->size();
|
707
|
+
// filter_chain_match
|
636
708
|
auto* filter_chain_match =
|
637
709
|
envoy_config_listener_v3_FilterChain_filter_chain_match(
|
638
710
|
filter_chain_proto);
|
639
711
|
if (filter_chain_match != nullptr) {
|
640
|
-
|
641
|
-
|
642
|
-
if (
|
712
|
+
ValidationErrors::ScopedField field(errors, ".filter_chain_match");
|
713
|
+
auto match = FilterChainMatchParse(filter_chain_match, errors);
|
714
|
+
if (match.has_value()) {
|
715
|
+
filter_chain.filter_chain_match = std::move(*match);
|
716
|
+
}
|
643
717
|
}
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
absl::StrCat("Unsupported filter type ", type_url)));
|
669
|
-
} else {
|
670
|
-
const upb_StringView encoded_http_connection_manager =
|
671
|
-
google_protobuf_Any_value(typed_config);
|
672
|
-
const auto* http_connection_manager =
|
673
|
-
envoy_extensions_filters_network_http_connection_manager_v3_HttpConnectionManager_parse(
|
674
|
-
encoded_http_connection_manager.data,
|
675
|
-
encoded_http_connection_manager.size, context.arena);
|
676
|
-
if (http_connection_manager == nullptr) {
|
677
|
-
errors.push_back(GRPC_ERROR_CREATE_FROM_STATIC_STRING(
|
678
|
-
"Could not parse HttpConnectionManager config from filter "
|
679
|
-
"typed_config"));
|
680
|
-
} else {
|
681
|
-
grpc_error_handle error = HttpConnectionManagerParse(
|
682
|
-
false /* is_client */, context, http_connection_manager, is_v2,
|
683
|
-
&filter_chain->filter_chain_data->http_connection_manager);
|
684
|
-
if (error != GRPC_ERROR_NONE) errors.push_back(error);
|
685
|
-
}
|
718
|
+
// filters
|
719
|
+
{
|
720
|
+
ValidationErrors::ScopedField field(errors, ".filters");
|
721
|
+
filter_chain.filter_chain_data =
|
722
|
+
std::make_shared<XdsListenerResource::FilterChainData>();
|
723
|
+
size_t size = 0;
|
724
|
+
auto* filters =
|
725
|
+
envoy_config_listener_v3_FilterChain_filters(filter_chain_proto, &size);
|
726
|
+
if (size != 1) {
|
727
|
+
errors->AddError(
|
728
|
+
"must have exactly one filter (HttpConnectionManager -- "
|
729
|
+
"no other filter is supported at the moment)");
|
730
|
+
}
|
731
|
+
// entries in filters list
|
732
|
+
for (size_t i = 0; i < size; ++i) {
|
733
|
+
ValidationErrors::ScopedField field(
|
734
|
+
errors, absl::StrCat("[", i, "].typed_config"));
|
735
|
+
auto* typed_config =
|
736
|
+
envoy_config_listener_v3_Filter_typed_config(filters[i]);
|
737
|
+
auto extension = ExtractXdsExtension(context, typed_config, errors);
|
738
|
+
if (extension.has_value()) {
|
739
|
+
filter_chain.filter_chain_data->http_connection_manager =
|
740
|
+
HttpConnectionManagerParse(/*is_client=*/false, context,
|
741
|
+
std::move(*extension), errors);
|
686
742
|
}
|
687
743
|
}
|
688
744
|
}
|
745
|
+
// transport_socket
|
689
746
|
auto* transport_socket =
|
690
747
|
envoy_config_listener_v3_FilterChain_transport_socket(filter_chain_proto);
|
691
748
|
if (transport_socket != nullptr) {
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
if (error != GRPC_ERROR_NONE) errors.push_back(error);
|
749
|
+
ValidationErrors::ScopedField field(errors, ".transport_socket");
|
750
|
+
filter_chain.filter_chain_data->downstream_tls_context =
|
751
|
+
DownstreamTlsContextParse(context, transport_socket, errors);
|
696
752
|
}
|
697
|
-
|
753
|
+
// Return result.
|
754
|
+
if (errors->size() != original_error_size) return absl::nullopt;
|
755
|
+
return filter_chain;
|
698
756
|
}
|
699
757
|
|
700
|
-
|
701
|
-
const envoy_config_core_v3_Address* address_proto,
|
758
|
+
absl::optional<std::string> AddressParse(
|
759
|
+
const envoy_config_core_v3_Address* address_proto,
|
760
|
+
ValidationErrors* errors) {
|
761
|
+
if (address_proto == nullptr) {
|
762
|
+
errors->AddError("field not present");
|
763
|
+
return absl::nullopt;
|
764
|
+
}
|
765
|
+
ValidationErrors::ScopedField field(errors, ".socket_address");
|
702
766
|
const auto* socket_address =
|
703
767
|
envoy_config_core_v3_Address_socket_address(address_proto);
|
704
768
|
if (socket_address == nullptr) {
|
705
|
-
|
706
|
-
|
769
|
+
errors->AddError("field not present");
|
770
|
+
return absl::nullopt;
|
707
771
|
}
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
772
|
+
{
|
773
|
+
ValidationErrors::ScopedField field(errors, ".protocol");
|
774
|
+
if (envoy_config_core_v3_SocketAddress_protocol(socket_address) !=
|
775
|
+
envoy_config_core_v3_SocketAddress_TCP) {
|
776
|
+
errors->AddError("value must be TCP");
|
777
|
+
}
|
712
778
|
}
|
779
|
+
ValidationErrors::ScopedField field2(errors, ".port_value");
|
713
780
|
uint32_t port = envoy_config_core_v3_SocketAddress_port_value(socket_address);
|
714
781
|
if (port > 65535) {
|
715
|
-
|
782
|
+
errors->AddError("invalid port");
|
783
|
+
return absl::nullopt;
|
716
784
|
}
|
717
|
-
|
785
|
+
return JoinHostPort(
|
718
786
|
UpbStringToAbsl(
|
719
787
|
envoy_config_core_v3_SocketAddress_address(socket_address)),
|
720
788
|
port);
|
721
|
-
return GRPC_ERROR_NONE;
|
722
789
|
}
|
723
790
|
|
724
791
|
// An intermediate map for filter chains that we create to validate the list of
|
@@ -737,50 +804,51 @@ struct InternalFilterChainMap {
|
|
737
804
|
DestinationIpMap destination_ip_map;
|
738
805
|
};
|
739
806
|
|
740
|
-
|
741
|
-
const FilterChain& filter_chain,
|
807
|
+
void AddFilterChainDataForSourcePort(
|
808
|
+
const FilterChain& filter_chain, uint32_t port,
|
742
809
|
XdsListenerResource::FilterChainMap::SourcePortsMap* ports_map,
|
743
|
-
|
810
|
+
ValidationErrors* errors) {
|
744
811
|
auto insert_result = ports_map->emplace(
|
745
812
|
port, XdsListenerResource::FilterChainMap::FilterChainDataSharedPtr{
|
746
813
|
filter_chain.filter_chain_data});
|
747
814
|
if (!insert_result.second) {
|
748
|
-
|
749
|
-
"
|
815
|
+
errors->AddError(absl::StrCat(
|
816
|
+
"duplicate matching rules detected when adding filter chain: ",
|
750
817
|
filter_chain.filter_chain_match.ToString()));
|
751
818
|
}
|
752
|
-
return GRPC_ERROR_NONE;
|
753
819
|
}
|
754
820
|
|
755
|
-
|
821
|
+
void AddFilterChainDataForSourcePorts(
|
756
822
|
const FilterChain& filter_chain,
|
757
|
-
XdsListenerResource::FilterChainMap::SourcePortsMap* ports_map
|
823
|
+
XdsListenerResource::FilterChainMap::SourcePortsMap* ports_map,
|
824
|
+
ValidationErrors* errors) {
|
758
825
|
if (filter_chain.filter_chain_match.source_ports.empty()) {
|
759
|
-
|
826
|
+
AddFilterChainDataForSourcePort(filter_chain, 0, ports_map, errors);
|
760
827
|
} else {
|
761
828
|
for (uint32_t port : filter_chain.filter_chain_match.source_ports) {
|
762
|
-
|
763
|
-
AddFilterChainDataForSourcePort(filter_chain, ports_map, port);
|
764
|
-
if (error != GRPC_ERROR_NONE) return error;
|
829
|
+
AddFilterChainDataForSourcePort(filter_chain, port, ports_map, errors);
|
765
830
|
}
|
766
831
|
}
|
767
|
-
return GRPC_ERROR_NONE;
|
768
832
|
}
|
769
833
|
|
770
|
-
|
834
|
+
void AddFilterChainDataForSourceIpRange(
|
771
835
|
const FilterChain& filter_chain,
|
772
|
-
InternalFilterChainMap::SourceIpMap* source_ip_map
|
836
|
+
InternalFilterChainMap::SourceIpMap* source_ip_map,
|
837
|
+
ValidationErrors* errors) {
|
773
838
|
if (filter_chain.filter_chain_match.source_prefix_ranges.empty()) {
|
774
839
|
auto insert_result = source_ip_map->emplace(
|
775
840
|
"", XdsListenerResource::FilterChainMap::SourceIp());
|
776
|
-
|
777
|
-
filter_chain, &insert_result.first->second.ports_map);
|
841
|
+
AddFilterChainDataForSourcePorts(
|
842
|
+
filter_chain, &insert_result.first->second.ports_map, errors);
|
778
843
|
} else {
|
779
844
|
for (const auto& prefix_range :
|
780
845
|
filter_chain.filter_chain_match.source_prefix_ranges) {
|
781
846
|
auto addr_str = grpc_sockaddr_to_string(&prefix_range.address, false);
|
782
847
|
if (!addr_str.ok()) {
|
783
|
-
|
848
|
+
errors->AddError(absl::StrCat(
|
849
|
+
"error parsing source IP sockaddr (should not happen): ",
|
850
|
+
addr_str.status().message()));
|
851
|
+
continue;
|
784
852
|
}
|
785
853
|
auto insert_result = source_ip_map->emplace(
|
786
854
|
absl::StrCat(*addr_str, "/", prefix_range.prefix_len),
|
@@ -788,49 +856,51 @@ grpc_error_handle AddFilterChainDataForSourceIpRange(
|
|
788
856
|
if (insert_result.second) {
|
789
857
|
insert_result.first->second.prefix_range.emplace(prefix_range);
|
790
858
|
}
|
791
|
-
|
792
|
-
filter_chain, &insert_result.first->second.ports_map);
|
793
|
-
if (error != GRPC_ERROR_NONE) return error;
|
859
|
+
AddFilterChainDataForSourcePorts(
|
860
|
+
filter_chain, &insert_result.first->second.ports_map, errors);
|
794
861
|
}
|
795
862
|
}
|
796
|
-
return GRPC_ERROR_NONE;
|
797
863
|
}
|
798
864
|
|
799
|
-
|
865
|
+
void AddFilterChainDataForSourceType(
|
800
866
|
const FilterChain& filter_chain,
|
801
|
-
InternalFilterChainMap::DestinationIp* destination_ip
|
867
|
+
InternalFilterChainMap::DestinationIp* destination_ip,
|
868
|
+
ValidationErrors* errors) {
|
802
869
|
GPR_ASSERT(static_cast<unsigned int>(
|
803
870
|
filter_chain.filter_chain_match.source_type) < 3);
|
804
|
-
|
805
|
-
filter_chain,
|
806
|
-
|
871
|
+
AddFilterChainDataForSourceIpRange(
|
872
|
+
filter_chain,
|
873
|
+
&destination_ip->source_types_array[static_cast<int>(
|
874
|
+
filter_chain.filter_chain_match.source_type)],
|
875
|
+
errors);
|
807
876
|
}
|
808
877
|
|
809
|
-
|
878
|
+
void AddFilterChainDataForApplicationProtocols(
|
810
879
|
const FilterChain& filter_chain,
|
811
|
-
InternalFilterChainMap::DestinationIp* destination_ip
|
880
|
+
InternalFilterChainMap::DestinationIp* destination_ip,
|
881
|
+
ValidationErrors* errors) {
|
812
882
|
// Only allow filter chains that do not mention application protocols
|
813
|
-
if (
|
814
|
-
|
883
|
+
if (filter_chain.filter_chain_match.application_protocols.empty()) {
|
884
|
+
AddFilterChainDataForSourceType(filter_chain, destination_ip, errors);
|
815
885
|
}
|
816
|
-
return AddFilterChainDataForSourceType(filter_chain, destination_ip);
|
817
886
|
}
|
818
887
|
|
819
|
-
|
888
|
+
void AddFilterChainDataForTransportProtocol(
|
820
889
|
const FilterChain& filter_chain,
|
821
|
-
InternalFilterChainMap::DestinationIp* destination_ip
|
890
|
+
InternalFilterChainMap::DestinationIp* destination_ip,
|
891
|
+
ValidationErrors* errors) {
|
822
892
|
const std::string& transport_protocol =
|
823
893
|
filter_chain.filter_chain_match.transport_protocol;
|
824
894
|
// Only allow filter chains with no transport protocol or "raw_buffer"
|
825
895
|
if (!transport_protocol.empty() && transport_protocol != "raw_buffer") {
|
826
|
-
return
|
896
|
+
return;
|
827
897
|
}
|
828
898
|
// If for this configuration, we've already seen filter chains that mention
|
829
899
|
// the transport protocol as "raw_buffer", we will never match filter chains
|
830
900
|
// that do not mention it.
|
831
901
|
if (destination_ip->transport_protocol_raw_buffer_provided &&
|
832
902
|
transport_protocol.empty()) {
|
833
|
-
return
|
903
|
+
return;
|
834
904
|
}
|
835
905
|
if (!transport_protocol.empty() &&
|
836
906
|
!destination_ip->transport_protocol_raw_buffer_provided) {
|
@@ -840,34 +910,39 @@ grpc_error_handle AddFilterChainDataForTransportProtocol(
|
|
840
910
|
destination_ip->source_types_array =
|
841
911
|
InternalFilterChainMap::ConnectionSourceTypesArray();
|
842
912
|
}
|
843
|
-
|
844
|
-
|
913
|
+
AddFilterChainDataForApplicationProtocols(filter_chain, destination_ip,
|
914
|
+
errors);
|
845
915
|
}
|
846
916
|
|
847
|
-
|
917
|
+
void AddFilterChainDataForServerNames(
|
848
918
|
const FilterChain& filter_chain,
|
849
|
-
InternalFilterChainMap::DestinationIp* destination_ip
|
919
|
+
InternalFilterChainMap::DestinationIp* destination_ip,
|
920
|
+
ValidationErrors* errors) {
|
850
921
|
// Don't continue adding filter chains with server names mentioned
|
851
|
-
if (
|
852
|
-
|
922
|
+
if (filter_chain.filter_chain_match.server_names.empty()) {
|
923
|
+
AddFilterChainDataForTransportProtocol(filter_chain, destination_ip,
|
924
|
+
errors);
|
853
925
|
}
|
854
|
-
return AddFilterChainDataForTransportProtocol(filter_chain, destination_ip);
|
855
926
|
}
|
856
927
|
|
857
|
-
|
928
|
+
void AddFilterChainDataForDestinationIpRange(
|
858
929
|
const FilterChain& filter_chain,
|
859
|
-
InternalFilterChainMap::DestinationIpMap* destination_ip_map
|
930
|
+
InternalFilterChainMap::DestinationIpMap* destination_ip_map,
|
931
|
+
ValidationErrors* errors) {
|
860
932
|
if (filter_chain.filter_chain_match.prefix_ranges.empty()) {
|
861
933
|
auto insert_result = destination_ip_map->emplace(
|
862
934
|
"", InternalFilterChainMap::DestinationIp());
|
863
|
-
|
864
|
-
|
935
|
+
AddFilterChainDataForServerNames(filter_chain, &insert_result.first->second,
|
936
|
+
errors);
|
865
937
|
} else {
|
866
938
|
for (const auto& prefix_range :
|
867
939
|
filter_chain.filter_chain_match.prefix_ranges) {
|
868
940
|
auto addr_str = grpc_sockaddr_to_string(&prefix_range.address, false);
|
869
941
|
if (!addr_str.ok()) {
|
870
|
-
|
942
|
+
errors->AddError(absl::StrCat(
|
943
|
+
"error parsing destination IP sockaddr (should not happen): ",
|
944
|
+
addr_str.status().message()));
|
945
|
+
continue;
|
871
946
|
}
|
872
947
|
auto insert_result = destination_ip_map->emplace(
|
873
948
|
absl::StrCat(*addr_str, "/", prefix_range.prefix_len),
|
@@ -875,12 +950,10 @@ grpc_error_handle AddFilterChainDataForDestinationIpRange(
|
|
875
950
|
if (insert_result.second) {
|
876
951
|
insert_result.first->second.prefix_range.emplace(prefix_range);
|
877
952
|
}
|
878
|
-
|
879
|
-
|
880
|
-
if (error != GRPC_ERROR_NONE) return error;
|
953
|
+
AddFilterChainDataForServerNames(filter_chain,
|
954
|
+
&insert_result.first->second, errors);
|
881
955
|
}
|
882
956
|
}
|
883
|
-
return GRPC_ERROR_NONE;
|
884
957
|
}
|
885
958
|
|
886
959
|
XdsListenerResource::FilterChainMap BuildFromInternalFilterChainMap(
|
@@ -902,75 +975,86 @@ XdsListenerResource::FilterChainMap BuildFromInternalFilterChainMap(
|
|
902
975
|
return filter_chain_map;
|
903
976
|
}
|
904
977
|
|
905
|
-
|
906
|
-
const std::vector<FilterChain>& filter_chains,
|
907
|
-
XdsListenerResource::FilterChainMap* filter_chain_map) {
|
978
|
+
XdsListenerResource::FilterChainMap BuildFilterChainMap(
|
979
|
+
const std::vector<FilterChain>& filter_chains, ValidationErrors* errors) {
|
908
980
|
InternalFilterChainMap internal_filter_chain_map;
|
909
981
|
for (const auto& filter_chain : filter_chains) {
|
910
982
|
// Discard filter chain entries that specify destination port
|
911
983
|
if (filter_chain.filter_chain_match.destination_port != 0) continue;
|
912
|
-
|
913
|
-
filter_chain, &internal_filter_chain_map.destination_ip_map);
|
914
|
-
if (error != GRPC_ERROR_NONE) return error;
|
984
|
+
AddFilterChainDataForDestinationIpRange(
|
985
|
+
filter_chain, &internal_filter_chain_map.destination_ip_map, errors);
|
915
986
|
}
|
916
|
-
|
917
|
-
BuildFromInternalFilterChainMap(&internal_filter_chain_map);
|
918
|
-
return GRPC_ERROR_NONE;
|
987
|
+
return BuildFromInternalFilterChainMap(&internal_filter_chain_map);
|
919
988
|
}
|
920
989
|
|
921
|
-
|
922
|
-
const
|
923
|
-
const envoy_config_listener_v3_Listener* listener
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
990
|
+
absl::StatusOr<XdsListenerResource> LdsResourceParseServer(
|
991
|
+
const XdsResourceType::DecodeContext& context,
|
992
|
+
const envoy_config_listener_v3_Listener* listener) {
|
993
|
+
ValidationErrors errors;
|
994
|
+
XdsListenerResource::TcpListener tcp_listener;
|
995
|
+
// address
|
996
|
+
{
|
997
|
+
ValidationErrors::ScopedField field(&errors, "address");
|
998
|
+
auto address = AddressParse(
|
999
|
+
envoy_config_listener_v3_Listener_address(listener), &errors);
|
1000
|
+
if (address.has_value()) tcp_listener.address = std::move(*address);
|
1001
|
+
}
|
1002
|
+
// use_original_dst
|
1003
|
+
{
|
1004
|
+
ValidationErrors::ScopedField field(&errors, "use_original_dst");
|
1005
|
+
const auto* use_original_dst =
|
1006
|
+
envoy_config_listener_v3_Listener_use_original_dst(listener);
|
1007
|
+
if (use_original_dst != nullptr &&
|
1008
|
+
google_protobuf_BoolValue_value(use_original_dst)) {
|
1009
|
+
errors.AddError("field not supported");
|
936
1010
|
}
|
937
1011
|
}
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
FilterChain
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
auto* default_filter_chain =
|
953
|
-
envoy_config_listener_v3_Listener_default_filter_chain(listener);
|
954
|
-
if (default_filter_chain != nullptr) {
|
955
|
-
FilterChain filter_chain;
|
956
|
-
error =
|
957
|
-
FilterChainParse(context, default_filter_chain, is_v2, &filter_chain);
|
958
|
-
if (error != GRPC_ERROR_NONE) return error;
|
959
|
-
if (filter_chain.filter_chain_data != nullptr) {
|
960
|
-
lds_update->default_filter_chain =
|
961
|
-
std::move(*filter_chain.filter_chain_data);
|
1012
|
+
// filter_chains
|
1013
|
+
size_t num_filter_chains = 0;
|
1014
|
+
{
|
1015
|
+
ValidationErrors::ScopedField field(&errors, "filter_chains");
|
1016
|
+
auto* filter_chains = envoy_config_listener_v3_Listener_filter_chains(
|
1017
|
+
listener, &num_filter_chains);
|
1018
|
+
std::vector<FilterChain> parsed_filter_chains;
|
1019
|
+
parsed_filter_chains.reserve(num_filter_chains);
|
1020
|
+
for (size_t i = 0; i < num_filter_chains; i++) {
|
1021
|
+
ValidationErrors::ScopedField field(&errors, absl::StrCat("[", i, "]"));
|
1022
|
+
auto filter_chain = FilterChainParse(context, filter_chains[i], &errors);
|
1023
|
+
if (filter_chain.has_value()) {
|
1024
|
+
parsed_filter_chains.push_back(std::move(*filter_chain));
|
1025
|
+
}
|
962
1026
|
}
|
1027
|
+
tcp_listener.filter_chain_map =
|
1028
|
+
BuildFilterChainMap(parsed_filter_chains, &errors);
|
963
1029
|
}
|
964
|
-
|
965
|
-
|
1030
|
+
// default_filter_chain
|
1031
|
+
{
|
1032
|
+
ValidationErrors::ScopedField field(&errors, "default_filter_chain");
|
1033
|
+
auto* default_filter_chain =
|
1034
|
+
envoy_config_listener_v3_Listener_default_filter_chain(listener);
|
1035
|
+
if (default_filter_chain != nullptr) {
|
1036
|
+
auto filter_chain =
|
1037
|
+
FilterChainParse(context, default_filter_chain, &errors);
|
1038
|
+
if (filter_chain.has_value() &&
|
1039
|
+
filter_chain->filter_chain_data != nullptr) {
|
1040
|
+
tcp_listener.default_filter_chain =
|
1041
|
+
std::move(*filter_chain->filter_chain_data);
|
1042
|
+
}
|
1043
|
+
} else if (num_filter_chains == 0) {
|
1044
|
+
// Make sure that there is at least one filter chain to use.
|
1045
|
+
errors.AddError("must be set if filter_chains is unset");
|
1046
|
+
}
|
966
1047
|
}
|
967
|
-
|
1048
|
+
// Return result.
|
1049
|
+
if (!errors.ok()) return errors.status("errors validating server Listener");
|
1050
|
+
XdsListenerResource lds_update;
|
1051
|
+
lds_update.listener = std::move(tcp_listener);
|
1052
|
+
return lds_update;
|
968
1053
|
}
|
969
1054
|
|
970
|
-
|
971
|
-
const
|
972
|
-
const envoy_config_listener_v3_Listener* listener
|
973
|
-
XdsListenerResource* lds_update) {
|
1055
|
+
absl::StatusOr<XdsListenerResource> LdsResourceParse(
|
1056
|
+
const XdsResourceType::DecodeContext& context,
|
1057
|
+
const envoy_config_listener_v3_Listener* listener) {
|
974
1058
|
// Check whether it's a client or server listener.
|
975
1059
|
const envoy_config_listener_v3_ApiListener* api_listener =
|
976
1060
|
envoy_config_listener_v3_Listener_api_listener(listener);
|
@@ -979,24 +1063,22 @@ grpc_error_handle LdsResourceParse(
|
|
979
1063
|
// TODO(roth): Re-enable the following check once
|
980
1064
|
// github.com/istio/istio/issues/38914 is resolved.
|
981
1065
|
// if (api_listener != nullptr && address != nullptr) {
|
982
|
-
// return
|
1066
|
+
// return absl::InvalidArgumentError(
|
983
1067
|
// "Listener has both address and ApiListener");
|
984
1068
|
// }
|
985
1069
|
if (api_listener == nullptr && address == nullptr) {
|
986
|
-
return
|
1070
|
+
return absl::InvalidArgumentError(
|
987
1071
|
"Listener has neither address nor ApiListener");
|
988
1072
|
}
|
989
|
-
//
|
990
|
-
|
1073
|
+
// If api_listener is present, it's for a client; otherwise, it's
|
1074
|
+
// for a server.
|
991
1075
|
if (api_listener != nullptr) {
|
992
|
-
|
993
|
-
} else {
|
994
|
-
error = LdsResourceParseServer(context, listener, is_v2, lds_update);
|
1076
|
+
return LdsResourceParseClient(context, api_listener);
|
995
1077
|
}
|
996
|
-
return
|
1078
|
+
return LdsResourceParseServer(context, listener);
|
997
1079
|
}
|
998
1080
|
|
999
|
-
void MaybeLogListener(const
|
1081
|
+
void MaybeLogListener(const XdsResourceType::DecodeContext& context,
|
1000
1082
|
const envoy_config_listener_v3_Listener* listener) {
|
1001
1083
|
if (GRPC_TRACE_FLAG_ENABLED(*context.tracer) &&
|
1002
1084
|
gpr_should_log(GPR_LOG_SEVERITY_DEBUG)) {
|
@@ -1010,40 +1092,40 @@ void MaybeLogListener(const XdsEncodingContext& context,
|
|
1010
1092
|
|
1011
1093
|
} // namespace
|
1012
1094
|
|
1013
|
-
|
1014
|
-
const
|
1015
|
-
|
1095
|
+
XdsResourceType::DecodeResult XdsListenerResourceType::Decode(
|
1096
|
+
const XdsResourceType::DecodeContext& context,
|
1097
|
+
absl::string_view serialized_resource) const {
|
1098
|
+
DecodeResult result;
|
1016
1099
|
// Parse serialized proto.
|
1017
1100
|
auto* resource = envoy_config_listener_v3_Listener_parse(
|
1018
1101
|
serialized_resource.data(), serialized_resource.size(), context.arena);
|
1019
1102
|
if (resource == nullptr) {
|
1020
|
-
|
1103
|
+
result.resource =
|
1104
|
+
absl::InvalidArgumentError("Can't parse Listener resource.");
|
1105
|
+
return result;
|
1021
1106
|
}
|
1022
1107
|
MaybeLogListener(context, resource);
|
1023
1108
|
// Validate resource.
|
1024
|
-
DecodeResult result;
|
1025
1109
|
result.name =
|
1026
1110
|
UpbStringToStdString(envoy_config_listener_v3_Listener_name(resource));
|
1027
|
-
auto
|
1028
|
-
|
1029
|
-
LdsResourceParse(context, resource, is_v2, &listener_data->resource);
|
1030
|
-
if (error != GRPC_ERROR_NONE) {
|
1031
|
-
std::string error_str = grpc_error_std_string(error);
|
1032
|
-
GRPC_ERROR_UNREF(error);
|
1111
|
+
auto listener = LdsResourceParse(context, resource);
|
1112
|
+
if (!listener.ok()) {
|
1033
1113
|
if (GRPC_TRACE_FLAG_ENABLED(*context.tracer)) {
|
1034
1114
|
gpr_log(GPR_ERROR, "[xds_client %p] invalid Listener %s: %s",
|
1035
|
-
context.client, result.name
|
1115
|
+
context.client, result.name->c_str(),
|
1116
|
+
listener.status().ToString().c_str());
|
1036
1117
|
}
|
1037
|
-
result.resource =
|
1118
|
+
result.resource = listener.status();
|
1038
1119
|
} else {
|
1039
1120
|
if (GRPC_TRACE_FLAG_ENABLED(*context.tracer)) {
|
1040
1121
|
gpr_log(GPR_INFO, "[xds_client %p] parsed Listener %s: %s",
|
1041
|
-
context.client, result.name
|
1042
|
-
|
1122
|
+
context.client, result.name->c_str(),
|
1123
|
+
listener->ToString().c_str());
|
1043
1124
|
}
|
1044
|
-
result.resource =
|
1125
|
+
result.resource =
|
1126
|
+
std::make_unique<XdsListenerResource>(std::move(*listener));
|
1045
1127
|
}
|
1046
|
-
return
|
1128
|
+
return result;
|
1047
1129
|
}
|
1048
1130
|
|
1049
1131
|
} // namespace grpc_core
|